@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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@droz-js/sdk",
3
3
  "description": "Droz SDK",
4
- "version": "0.3.0",
4
+ "version": "0.3.1",
5
5
  "private": false,
6
6
  "exports": {
7
7
  ".": "./src/index.js",
@@ -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
  };