@droz-js/sdk 0.9.33 → 0.9.34
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
|
@@ -251,6 +251,7 @@ export type CognitoConfig = {
|
|
|
251
251
|
userPoolWebClientId: Scalars['String']['output'];
|
|
252
252
|
};
|
|
253
253
|
export type CreateAgentInput = {
|
|
254
|
+
bio?: InputMaybe<Scalars['String']['input']>;
|
|
254
255
|
email: Scalars['EmailAddress']['input'];
|
|
255
256
|
name: Scalars['String']['input'];
|
|
256
257
|
picture?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1040,6 +1041,7 @@ export type UnregisterAppInstanceInput = {
|
|
|
1040
1041
|
drn: Scalars['DRN']['input'];
|
|
1041
1042
|
};
|
|
1042
1043
|
export type UpdateAgentInput = {
|
|
1044
|
+
bio?: InputMaybe<Scalars['String']['input']>;
|
|
1043
1045
|
email?: InputMaybe<Scalars['EmailAddress']['input']>;
|
|
1044
1046
|
id: Scalars['ID']['input'];
|
|
1045
1047
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1060,6 +1062,7 @@ export type UpdateCronJobInput = {
|
|
|
1060
1062
|
times?: InputMaybe<Scalars['Float']['input']>;
|
|
1061
1063
|
};
|
|
1062
1064
|
export type UpdateMyProfileInput = {
|
|
1065
|
+
bio?: InputMaybe<Scalars['String']['input']>;
|
|
1063
1066
|
email?: InputMaybe<Scalars['EmailAddress']['input']>;
|
|
1064
1067
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
1065
1068
|
picture?: InputMaybe<Scalars['String']['input']>;
|