@droz-js/sdk 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/sdks/droznexo.d.ts +4 -0
package/package.json
CHANGED
package/src/sdks/droznexo.d.ts
CHANGED
|
@@ -92,7 +92,9 @@ export declare enum AppInstanceStatus {
|
|
|
92
92
|
Inactive = "Inactive"
|
|
93
93
|
}
|
|
94
94
|
export type CreateDrozNexoConnectionInput = {
|
|
95
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
95
96
|
destinationDrn: Scalars['DRN']['input'];
|
|
97
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
96
98
|
triggerDrn: Scalars['DRN']['input'];
|
|
97
99
|
};
|
|
98
100
|
export type DrozNexoApp = {
|
|
@@ -111,8 +113,10 @@ export type DrozNexoAppInstance = {
|
|
|
111
113
|
updatedAt: Scalars['DateTime']['output'];
|
|
112
114
|
};
|
|
113
115
|
export type DrozNexoConnection = {
|
|
116
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
114
117
|
destination: DrozNexoAppAndAppInstance;
|
|
115
118
|
id: Scalars['ID']['output'];
|
|
119
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
116
120
|
trigger: DrozNexoAppAndAppInstance;
|
|
117
121
|
versionId: Scalars['ID']['output'];
|
|
118
122
|
};
|