@promoboxx/graphql-gateway-types 1.62.0 → 1.63.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 +12 -0
- package/index.d.ts +1 -0
- package/package.json +1 -1
- package/schema.graphql +1 -0
package/graphql.schema.json
CHANGED
|
@@ -62433,6 +62433,18 @@
|
|
|
62433
62433
|
"description": null,
|
|
62434
62434
|
"fields": null,
|
|
62435
62435
|
"inputFields": [
|
|
62436
|
+
{
|
|
62437
|
+
"name": "clickwrap_accepted_at",
|
|
62438
|
+
"description": null,
|
|
62439
|
+
"type": {
|
|
62440
|
+
"kind": "SCALAR",
|
|
62441
|
+
"name": "String",
|
|
62442
|
+
"ofType": null
|
|
62443
|
+
},
|
|
62444
|
+
"defaultValue": null,
|
|
62445
|
+
"isDeprecated": false,
|
|
62446
|
+
"deprecationReason": null
|
|
62447
|
+
},
|
|
62436
62448
|
{
|
|
62437
62449
|
"name": "company",
|
|
62438
62450
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -7458,6 +7458,7 @@ export type UpdateStripePaymentIntent = {
|
|
|
7458
7458
|
};
|
|
7459
7459
|
|
|
7460
7460
|
export type UpdateUserInput = {
|
|
7461
|
+
clickwrap_accepted_at?: InputMaybe<Scalars['String']['input']>;
|
|
7461
7462
|
company?: InputMaybe<Scalars['String']['input']>;
|
|
7462
7463
|
email?: InputMaybe<Scalars['String']['input']>;
|
|
7463
7464
|
first_name?: InputMaybe<Scalars['String']['input']>;
|
package/package.json
CHANGED