mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-21 11:49:59 +00:00
feat(Azure Cosmos DB Node): New node (#14156)
Co-authored-by: feelgood-interface <feelgood.interface@gmail.com>
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
export interface ICosmosDbCredentials {
|
||||
account: string;
|
||||
key: string;
|
||||
database: string;
|
||||
baseUrl: string;
|
||||
}
|
||||
|
||||
export interface IErrorResponse {
|
||||
code: string;
|
||||
message: string;
|
||||
}
|
||||
|
||||
export interface IContainer {
|
||||
partitionKey: {
|
||||
paths: string[];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user