@promoboxx/graphql-gateway-types 1.708.0 → 1.709.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.
@@ -55909,6 +55909,18 @@
55909
55909
  "isDeprecated": false,
55910
55910
  "deprecationReason": null
55911
55911
  },
55912
+ {
55913
+ "name": "current_password",
55914
+ "description": null,
55915
+ "type": {
55916
+ "kind": "SCALAR",
55917
+ "name": "String",
55918
+ "ofType": null
55919
+ },
55920
+ "defaultValue": null,
55921
+ "isDeprecated": false,
55922
+ "deprecationReason": null
55923
+ },
55912
55924
  {
55913
55925
  "name": "expiry",
55914
55926
  "description": null,
package/index.d.ts CHANGED
@@ -7202,6 +7202,7 @@ export type MutationUpdatePaidAdArgs = {
7202
7202
  export type MutationUpdatePasswordArgs = {
7203
7203
  accessToken: Scalars['String']['input'];
7204
7204
  client: Scalars['String']['input'];
7205
+ current_password?: InputMaybe<Scalars['String']['input']>;
7205
7206
  expiry: Scalars['String']['input'];
7206
7207
  password: Scalars['String']['input'];
7207
7208
  password_confirmation: Scalars['String']['input'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.708.0",
3
+ "version": "1.709.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -5668,7 +5668,7 @@ type Mutation {
5668
5668
  updateLocations(ids: [ID!]!, location: LocationInput!): [Location]!
5669
5669
  updateLogo(id: ID!, logo: CreateOrUpdateLogoData!): SubBrandLogo!
5670
5670
  updatePaidAd(params: UpdatePaidAdParams!): ID
5671
- updatePassword(accessToken: String!, client: String!, expiry: String!, password: String!, password_confirmation: String!, tokenType: String!, uid: String!): UpdatePasswordResponse!
5671
+ updatePassword(accessToken: String!, client: String!, current_password: String, expiry: String!, password: String!, password_confirmation: String!, tokenType: String!, uid: String!): UpdatePasswordResponse!
5672
5672
  updatePaymentIntent(data: UpdateStripePaymentIntent!): StripePaymentIntent
5673
5673
  updateRetailer(id: ID!, retailer: UpdateRetailerParams!): Retailer!
5674
5674
  updateRetailerAccount(args: UpdateRetailerAccountArgs, id: ID!, params: UpdateRetailerAccountParams!): RetailerAccount!