@promoboxx/graphql-gateway-types 1.834.0 → 1.835.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.
@@ -59543,13 +59543,9 @@
59543
59543
  "name": "accessToken",
59544
59544
  "description": null,
59545
59545
  "type": {
59546
- "kind": "NON_NULL",
59547
- "name": null,
59548
- "ofType": {
59549
- "kind": "SCALAR",
59550
- "name": "String",
59551
- "ofType": null
59552
- }
59546
+ "kind": "SCALAR",
59547
+ "name": "String",
59548
+ "ofType": null
59553
59549
  },
59554
59550
  "defaultValue": null,
59555
59551
  "isDeprecated": false,
@@ -59559,13 +59555,9 @@
59559
59555
  "name": "client",
59560
59556
  "description": null,
59561
59557
  "type": {
59562
- "kind": "NON_NULL",
59563
- "name": null,
59564
- "ofType": {
59565
- "kind": "SCALAR",
59566
- "name": "String",
59567
- "ofType": null
59568
- }
59558
+ "kind": "SCALAR",
59559
+ "name": "String",
59560
+ "ofType": null
59569
59561
  },
59570
59562
  "defaultValue": null,
59571
59563
  "isDeprecated": false,
@@ -59587,13 +59579,9 @@
59587
59579
  "name": "expiry",
59588
59580
  "description": null,
59589
59581
  "type": {
59590
- "kind": "NON_NULL",
59591
- "name": null,
59592
- "ofType": {
59593
- "kind": "SCALAR",
59594
- "name": "String",
59595
- "ofType": null
59596
- }
59582
+ "kind": "SCALAR",
59583
+ "name": "String",
59584
+ "ofType": null
59597
59585
  },
59598
59586
  "defaultValue": null,
59599
59587
  "isDeprecated": false,
@@ -59631,17 +59619,25 @@
59631
59619
  "isDeprecated": false,
59632
59620
  "deprecationReason": null
59633
59621
  },
59622
+ {
59623
+ "name": "reset_password_token",
59624
+ "description": null,
59625
+ "type": {
59626
+ "kind": "SCALAR",
59627
+ "name": "String",
59628
+ "ofType": null
59629
+ },
59630
+ "defaultValue": null,
59631
+ "isDeprecated": false,
59632
+ "deprecationReason": null
59633
+ },
59634
59634
  {
59635
59635
  "name": "tokenType",
59636
59636
  "description": null,
59637
59637
  "type": {
59638
- "kind": "NON_NULL",
59639
- "name": null,
59640
- "ofType": {
59641
- "kind": "SCALAR",
59642
- "name": "String",
59643
- "ofType": null
59644
- }
59638
+ "kind": "SCALAR",
59639
+ "name": "String",
59640
+ "ofType": null
59645
59641
  },
59646
59642
  "defaultValue": null,
59647
59643
  "isDeprecated": false,
@@ -59651,13 +59647,9 @@
59651
59647
  "name": "uid",
59652
59648
  "description": null,
59653
59649
  "type": {
59654
- "kind": "NON_NULL",
59655
- "name": null,
59656
- "ofType": {
59657
- "kind": "SCALAR",
59658
- "name": "String",
59659
- "ofType": null
59660
- }
59650
+ "kind": "SCALAR",
59651
+ "name": "String",
59652
+ "ofType": null
59661
59653
  },
59662
59654
  "defaultValue": null,
59663
59655
  "isDeprecated": false,
package/index.d.ts CHANGED
@@ -7650,14 +7650,15 @@ export type MutationUpdatePaidAdArgs = {
7650
7650
 
7651
7651
  /** mutation root */
7652
7652
  export type MutationUpdatePasswordArgs = {
7653
- accessToken: Scalars['String']['input'];
7654
- client: Scalars['String']['input'];
7653
+ accessToken?: InputMaybe<Scalars['String']['input']>;
7654
+ client?: InputMaybe<Scalars['String']['input']>;
7655
7655
  current_password?: InputMaybe<Scalars['String']['input']>;
7656
- expiry: Scalars['String']['input'];
7656
+ expiry?: InputMaybe<Scalars['String']['input']>;
7657
7657
  password: Scalars['String']['input'];
7658
7658
  password_confirmation: Scalars['String']['input'];
7659
- tokenType: Scalars['String']['input'];
7660
- uid: Scalars['String']['input'];
7659
+ reset_password_token?: InputMaybe<Scalars['String']['input']>;
7660
+ tokenType?: InputMaybe<Scalars['String']['input']>;
7661
+ uid?: InputMaybe<Scalars['String']['input']>;
7661
7662
  };
7662
7663
 
7663
7664
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.834.0",
3
+ "version": "1.835.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -5950,7 +5950,7 @@ type Mutation {
5950
5950
  updateLocations(ids: [ID!]!, location: LocationInput!): [Location]!
5951
5951
  updateLogo(id: ID!, logo: CreateOrUpdateLogoData!): SubBrandLogo!
5952
5952
  updatePaidAd(params: UpdatePaidAdParams!): ID
5953
- updatePassword(accessToken: String!, client: String!, current_password: String, expiry: String!, password: String!, password_confirmation: String!, tokenType: String!, uid: String!): UpdatePasswordResponse!
5953
+ updatePassword(accessToken: String, client: String, current_password: String, expiry: String, password: String!, password_confirmation: String!, reset_password_token: String, tokenType: String, uid: String): UpdatePasswordResponse!
5954
5954
  updatePaymentIntent(data: UpdateStripePaymentIntent!): StripePaymentIntent
5955
5955
  updateRetailer(id: ID!, retailer: UpdateRetailerParams!): Retailer!
5956
5956
  updateRetailerAccount(args: UpdateRetailerAccountArgs, id: ID!, params: UpdateRetailerAccountParams!): RetailerAccount!