@promoboxx/graphql-gateway-types 1.590.0 → 1.591.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.
@@ -43242,6 +43242,39 @@
43242
43242
  "isDeprecated": false,
43243
43243
  "deprecationReason": null
43244
43244
  },
43245
+ {
43246
+ "name": "confirmUser",
43247
+ "description": null,
43248
+ "args": [
43249
+ {
43250
+ "name": "token",
43251
+ "description": null,
43252
+ "type": {
43253
+ "kind": "NON_NULL",
43254
+ "name": null,
43255
+ "ofType": {
43256
+ "kind": "SCALAR",
43257
+ "name": "String",
43258
+ "ofType": null
43259
+ }
43260
+ },
43261
+ "defaultValue": null,
43262
+ "isDeprecated": false,
43263
+ "deprecationReason": null
43264
+ }
43265
+ ],
43266
+ "type": {
43267
+ "kind": "NON_NULL",
43268
+ "name": null,
43269
+ "ofType": {
43270
+ "kind": "OBJECT",
43271
+ "name": "User",
43272
+ "ofType": null
43273
+ }
43274
+ },
43275
+ "isDeprecated": false,
43276
+ "deprecationReason": null
43277
+ },
43245
43278
  {
43246
43279
  "name": "copyPermissionsFromUser",
43247
43280
  "description": null,
package/index.d.ts CHANGED
@@ -4644,6 +4644,7 @@ export type Mutation = {
4644
4644
  cancelPaymentIntent?: Maybe<Scalars['Boolean']['output']>;
4645
4645
  claimRetailer: Scalars['ID']['output'];
4646
4646
  closeAccessInvitation: Scalars['ID']['output'];
4647
+ confirmUser: User;
4647
4648
  copyPermissionsFromUser: Scalars['String']['output'];
4648
4649
  createAccessInvitation?: Maybe<AccessInvitation>;
4649
4650
  createAccessRequest: AccessRequest;
@@ -5297,6 +5298,12 @@ export type MutationCloseAccessInvitationArgs = {
5297
5298
  };
5298
5299
 
5299
5300
 
5301
+ /** mutation root */
5302
+ export type MutationConfirmUserArgs = {
5303
+ token: Scalars['String']['input'];
5304
+ };
5305
+
5306
+
5300
5307
  /** mutation root */
5301
5308
  export type MutationCopyPermissionsFromUserArgs = {
5302
5309
  existing_user_id: Scalars['ID']['input'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.590.0",
3
+ "version": "1.591.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -4478,6 +4478,7 @@ type Mutation {
4478
4478
  cancelPaymentIntent(id: ID!): Boolean
4479
4479
  claimRetailer(id: ID!): ID!
4480
4480
  closeAccessInvitation(id: ID!): ID!
4481
+ confirmUser(token: String!): User!
4481
4482
  copyPermissionsFromUser(existing_user_id: ID!, user_id: ID!): String!
4482
4483
  createAccessInvitation(params: CreateAccessInvitationParams!): AccessInvitation
4483
4484
  createAccessRequest(access_request: CreateAccessRequestInput!, fields: [String!]): AccessRequest!