@droz-js/sdk 0.9.34 → 0.9.35
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/nucleus.d.ts +3 -0
package/package.json
CHANGED
package/src/sdks/nucleus.d.ts
CHANGED
|
@@ -252,6 +252,7 @@ export type CognitoConfig = {
|
|
|
252
252
|
};
|
|
253
253
|
export type CreateAgentInput = {
|
|
254
254
|
bio?: InputMaybe<Scalars['String']['input']>;
|
|
255
|
+
department?: InputMaybe<Scalars['String']['input']>;
|
|
255
256
|
email: Scalars['EmailAddress']['input'];
|
|
256
257
|
name: Scalars['String']['input'];
|
|
257
258
|
picture?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1042,6 +1043,7 @@ export type UnregisterAppInstanceInput = {
|
|
|
1042
1043
|
};
|
|
1043
1044
|
export type UpdateAgentInput = {
|
|
1044
1045
|
bio?: InputMaybe<Scalars['String']['input']>;
|
|
1046
|
+
department?: InputMaybe<Scalars['String']['input']>;
|
|
1045
1047
|
email?: InputMaybe<Scalars['EmailAddress']['input']>;
|
|
1046
1048
|
id: Scalars['ID']['input'];
|
|
1047
1049
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1063,6 +1065,7 @@ export type UpdateCronJobInput = {
|
|
|
1063
1065
|
};
|
|
1064
1066
|
export type UpdateMyProfileInput = {
|
|
1065
1067
|
bio?: InputMaybe<Scalars['String']['input']>;
|
|
1068
|
+
department?: InputMaybe<Scalars['String']['input']>;
|
|
1066
1069
|
email?: InputMaybe<Scalars['EmailAddress']['input']>;
|
|
1067
1070
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
1068
1071
|
picture?: InputMaybe<Scalars['String']['input']>;
|