@promoboxx/graphql-gateway-types 1.398.0 → 1.400.0
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/graphql.schema.json +24 -0
- package/index.d.ts +2 -0
- package/package.json +1 -1
- package/schema.graphql +2 -0
package/graphql.schema.json
CHANGED
|
@@ -90039,6 +90039,30 @@
|
|
|
90039
90039
|
"isDeprecated": false,
|
|
90040
90040
|
"deprecationReason": null
|
|
90041
90041
|
},
|
|
90042
|
+
{
|
|
90043
|
+
"name": "password",
|
|
90044
|
+
"description": null,
|
|
90045
|
+
"type": {
|
|
90046
|
+
"kind": "SCALAR",
|
|
90047
|
+
"name": "String",
|
|
90048
|
+
"ofType": null
|
|
90049
|
+
},
|
|
90050
|
+
"defaultValue": null,
|
|
90051
|
+
"isDeprecated": false,
|
|
90052
|
+
"deprecationReason": null
|
|
90053
|
+
},
|
|
90054
|
+
{
|
|
90055
|
+
"name": "password_confirmation",
|
|
90056
|
+
"description": null,
|
|
90057
|
+
"type": {
|
|
90058
|
+
"kind": "SCALAR",
|
|
90059
|
+
"name": "String",
|
|
90060
|
+
"ofType": null
|
|
90061
|
+
},
|
|
90062
|
+
"defaultValue": null,
|
|
90063
|
+
"isDeprecated": false,
|
|
90064
|
+
"deprecationReason": null
|
|
90065
|
+
},
|
|
90042
90066
|
{
|
|
90043
90067
|
"name": "promoboxx_sales_team_member",
|
|
90044
90068
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -11494,6 +11494,8 @@ export type UpdateUserInput = {
|
|
|
11494
11494
|
last_name?: InputMaybe<Scalars['String']['input']>;
|
|
11495
11495
|
mobile_phone_number?: InputMaybe<Scalars['String']['input']>;
|
|
11496
11496
|
mobile_phone_number_extension?: InputMaybe<Scalars['String']['input']>;
|
|
11497
|
+
password?: InputMaybe<Scalars['String']['input']>;
|
|
11498
|
+
password_confirmation?: InputMaybe<Scalars['String']['input']>;
|
|
11497
11499
|
promoboxx_sales_team_member?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11498
11500
|
time_zone?: InputMaybe<Scalars['String']['input']>;
|
|
11499
11501
|
title?: InputMaybe<Scalars['String']['input']>;
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -10525,6 +10525,8 @@ input UpdateUserInput {
|
|
|
10525
10525
|
last_name: String
|
|
10526
10526
|
mobile_phone_number: String
|
|
10527
10527
|
mobile_phone_number_extension: String
|
|
10528
|
+
password: String
|
|
10529
|
+
password_confirmation: String
|
|
10528
10530
|
promoboxx_sales_team_member: Boolean
|
|
10529
10531
|
time_zone: String
|
|
10530
10532
|
title: String
|