@promoboxx/graphql-gateway-types 1.613.0 → 1.614.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.
@@ -15806,6 +15806,49 @@
15806
15806
  "enumValues": null,
15807
15807
  "possibleTypes": null
15808
15808
  },
15809
+ {
15810
+ "kind": "OBJECT",
15811
+ "name": "ConfirmUserResponse",
15812
+ "description": null,
15813
+ "fields": [
15814
+ {
15815
+ "name": "jwt",
15816
+ "description": null,
15817
+ "args": [],
15818
+ "type": {
15819
+ "kind": "NON_NULL",
15820
+ "name": null,
15821
+ "ofType": {
15822
+ "kind": "SCALAR",
15823
+ "name": "String",
15824
+ "ofType": null
15825
+ }
15826
+ },
15827
+ "isDeprecated": false,
15828
+ "deprecationReason": null
15829
+ },
15830
+ {
15831
+ "name": "user",
15832
+ "description": null,
15833
+ "args": [],
15834
+ "type": {
15835
+ "kind": "NON_NULL",
15836
+ "name": null,
15837
+ "ofType": {
15838
+ "kind": "OBJECT",
15839
+ "name": "User",
15840
+ "ofType": null
15841
+ }
15842
+ },
15843
+ "isDeprecated": false,
15844
+ "deprecationReason": null
15845
+ }
15846
+ ],
15847
+ "inputFields": null,
15848
+ "interfaces": [],
15849
+ "enumValues": null,
15850
+ "possibleTypes": null
15851
+ },
15809
15852
  {
15810
15853
  "kind": "OBJECT",
15811
15854
  "name": "ConsumerImpressions",
@@ -43268,7 +43311,7 @@
43268
43311
  "name": null,
43269
43312
  "ofType": {
43270
43313
  "kind": "OBJECT",
43271
- "name": "User",
43314
+ "name": "ConfirmUserResponse",
43272
43315
  "ofType": null
43273
43316
  }
43274
43317
  },
package/index.d.ts CHANGED
@@ -1715,6 +1715,12 @@ export type CommunicationStats = {
1715
1715
  users_emailed_count?: Maybe<Scalars['Int']['output']>;
1716
1716
  };
1717
1717
 
1718
+ export type ConfirmUserResponse = {
1719
+ __typename?: 'ConfirmUserResponse';
1720
+ jwt: Scalars['String']['output'];
1721
+ user: User;
1722
+ };
1723
+
1718
1724
  export type ConsumerImpressions = {
1719
1725
  __typename?: 'ConsumerImpressions';
1720
1726
  ads_paid_impressions?: Maybe<Scalars['Int']['output']>;
@@ -4644,7 +4650,7 @@ export type Mutation = {
4644
4650
  cancelPaymentIntent?: Maybe<Scalars['Boolean']['output']>;
4645
4651
  claimRetailer: Scalars['ID']['output'];
4646
4652
  closeAccessInvitation: Scalars['ID']['output'];
4647
- confirmUser: User;
4653
+ confirmUser: ConfirmUserResponse;
4648
4654
  copyPermissionsFromUser: Scalars['String']['output'];
4649
4655
  createAccessInvitation?: Maybe<AccessInvitation>;
4650
4656
  createAccessRequest: AccessRequest;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.613.0",
3
+ "version": "1.614.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -1632,6 +1632,11 @@ type CommunicationStats {
1632
1632
  users_emailed_count: Int
1633
1633
  }
1634
1634
 
1635
+ type ConfirmUserResponse {
1636
+ jwt: String!
1637
+ user: User!
1638
+ }
1639
+
1635
1640
  type ConsumerImpressions {
1636
1641
  ads_paid_impressions: Int
1637
1642
  share_organic_impressions: Int
@@ -4478,7 +4483,7 @@ type Mutation {
4478
4483
  cancelPaymentIntent(id: ID!): Boolean
4479
4484
  claimRetailer(id: ID!): ID!
4480
4485
  closeAccessInvitation(id: ID!): ID!
4481
- confirmUser(token: String!): User!
4486
+ confirmUser(token: String!): ConfirmUserResponse!
4482
4487
  copyPermissionsFromUser(existing_user_id: ID!, user_id: ID!): String!
4483
4488
  createAccessInvitation(params: CreateAccessInvitationParams!): AccessInvitation
4484
4489
  createAccessRequest(access_request: CreateAccessRequestInput!, fields: [String!]): AccessRequest!