@promoboxx/graphql-gateway-types 1.60.0 → 1.61.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.
@@ -42987,6 +42987,135 @@
42987
42987
  "isDeprecated": false,
42988
42988
  "deprecationReason": null
42989
42989
  },
42990
+ {
42991
+ "name": "updatePassword",
42992
+ "description": null,
42993
+ "args": [
42994
+ {
42995
+ "name": "accessToken",
42996
+ "description": null,
42997
+ "type": {
42998
+ "kind": "NON_NULL",
42999
+ "name": null,
43000
+ "ofType": {
43001
+ "kind": "SCALAR",
43002
+ "name": "String",
43003
+ "ofType": null
43004
+ }
43005
+ },
43006
+ "defaultValue": null,
43007
+ "isDeprecated": false,
43008
+ "deprecationReason": null
43009
+ },
43010
+ {
43011
+ "name": "client",
43012
+ "description": null,
43013
+ "type": {
43014
+ "kind": "NON_NULL",
43015
+ "name": null,
43016
+ "ofType": {
43017
+ "kind": "SCALAR",
43018
+ "name": "String",
43019
+ "ofType": null
43020
+ }
43021
+ },
43022
+ "defaultValue": null,
43023
+ "isDeprecated": false,
43024
+ "deprecationReason": null
43025
+ },
43026
+ {
43027
+ "name": "expiry",
43028
+ "description": null,
43029
+ "type": {
43030
+ "kind": "NON_NULL",
43031
+ "name": null,
43032
+ "ofType": {
43033
+ "kind": "SCALAR",
43034
+ "name": "String",
43035
+ "ofType": null
43036
+ }
43037
+ },
43038
+ "defaultValue": null,
43039
+ "isDeprecated": false,
43040
+ "deprecationReason": null
43041
+ },
43042
+ {
43043
+ "name": "password",
43044
+ "description": null,
43045
+ "type": {
43046
+ "kind": "NON_NULL",
43047
+ "name": null,
43048
+ "ofType": {
43049
+ "kind": "SCALAR",
43050
+ "name": "String",
43051
+ "ofType": null
43052
+ }
43053
+ },
43054
+ "defaultValue": null,
43055
+ "isDeprecated": false,
43056
+ "deprecationReason": null
43057
+ },
43058
+ {
43059
+ "name": "password_confirmation",
43060
+ "description": null,
43061
+ "type": {
43062
+ "kind": "NON_NULL",
43063
+ "name": null,
43064
+ "ofType": {
43065
+ "kind": "SCALAR",
43066
+ "name": "String",
43067
+ "ofType": null
43068
+ }
43069
+ },
43070
+ "defaultValue": null,
43071
+ "isDeprecated": false,
43072
+ "deprecationReason": null
43073
+ },
43074
+ {
43075
+ "name": "tokenType",
43076
+ "description": null,
43077
+ "type": {
43078
+ "kind": "NON_NULL",
43079
+ "name": null,
43080
+ "ofType": {
43081
+ "kind": "SCALAR",
43082
+ "name": "String",
43083
+ "ofType": null
43084
+ }
43085
+ },
43086
+ "defaultValue": null,
43087
+ "isDeprecated": false,
43088
+ "deprecationReason": null
43089
+ },
43090
+ {
43091
+ "name": "uid",
43092
+ "description": null,
43093
+ "type": {
43094
+ "kind": "NON_NULL",
43095
+ "name": null,
43096
+ "ofType": {
43097
+ "kind": "SCALAR",
43098
+ "name": "String",
43099
+ "ofType": null
43100
+ }
43101
+ },
43102
+ "defaultValue": null,
43103
+ "isDeprecated": false,
43104
+ "deprecationReason": null
43105
+ }
43106
+ ],
43107
+ "type": {
43108
+ "kind": "NON_NULL",
43109
+ "name": null,
43110
+ "ofType": {
43111
+ "kind": "OBJECT",
43112
+ "name": "UpdatePasswordResponse",
43113
+ "ofType": null
43114
+ }
43115
+ },
43116
+ "isDeprecated": false,
43117
+ "deprecationReason": null
43118
+ },
42990
43119
  {
42991
43120
  "name": "updatePaymentIntent",
42992
43121
  "description": null,
@@ -62128,6 +62257,33 @@
62128
62257
  "enumValues": null,
62129
62258
  "possibleTypes": null
62130
62259
  },
62260
+ {
62261
+ "kind": "OBJECT",
62262
+ "name": "UpdatePasswordResponse",
62263
+ "description": null,
62264
+ "fields": [
62265
+ {
62266
+ "name": "user",
62267
+ "description": null,
62268
+ "args": [],
62269
+ "type": {
62270
+ "kind": "NON_NULL",
62271
+ "name": null,
62272
+ "ofType": {
62273
+ "kind": "OBJECT",
62274
+ "name": "User",
62275
+ "ofType": null
62276
+ }
62277
+ },
62278
+ "isDeprecated": false,
62279
+ "deprecationReason": null
62280
+ }
62281
+ ],
62282
+ "inputFields": null,
62283
+ "interfaces": [],
62284
+ "enumValues": null,
62285
+ "possibleTypes": null
62286
+ },
62131
62287
  {
62132
62288
  "kind": "INPUT_OBJECT",
62133
62289
  "name": "UpdateStripePaymentIntent",
package/index.d.ts CHANGED
@@ -4266,6 +4266,7 @@ export type Mutation = {
4266
4266
  updateLocation?: Maybe<Location>;
4267
4267
  updateLogo: SubBrandLogo;
4268
4268
  updatePaidAd?: Maybe<Scalars['ID']['output']>;
4269
+ updatePassword: UpdatePasswordResponse;
4269
4270
  updatePaymentIntent?: Maybe<StripePaymentIntent>;
4270
4271
  updateSsoConnection: SsoConnection;
4271
4272
  updateUser: UpdateUserResponse;
@@ -5094,6 +5095,17 @@ export type MutationUpdatePaidAdArgs = {
5094
5095
  };
5095
5096
 
5096
5097
 
5098
+ export type MutationUpdatePasswordArgs = {
5099
+ accessToken: Scalars['String']['input'];
5100
+ client: Scalars['String']['input'];
5101
+ expiry: Scalars['String']['input'];
5102
+ password: Scalars['String']['input'];
5103
+ password_confirmation: Scalars['String']['input'];
5104
+ tokenType: Scalars['String']['input'];
5105
+ uid: Scalars['String']['input'];
5106
+ };
5107
+
5108
+
5097
5109
  export type MutationUpdatePaymentIntentArgs = {
5098
5110
  data: UpdateStripePaymentIntent;
5099
5111
  };
@@ -7422,6 +7434,11 @@ export type UpdatePaidAdParams = {
7422
7434
  data: UpdatePaidAdData;
7423
7435
  };
7424
7436
 
7437
+ export type UpdatePasswordResponse = {
7438
+ __typename?: 'UpdatePasswordResponse';
7439
+ user: User;
7440
+ };
7441
+
7425
7442
  export type UpdateStripePaymentIntent = {
7426
7443
  amount_cents: Scalars['String']['input'];
7427
7444
  id: Scalars['ID']['input'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.60.0",
3
+ "version": "1.61.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -4132,6 +4132,7 @@ type Mutation {
4132
4132
  updateLocation(id: ID!, location: LocationInput!): Location
4133
4133
  updateLogo(id: ID!, logo: CreateOrUpdateLogoData!): SubBrandLogo!
4134
4134
  updatePaidAd(params: UpdatePaidAdParams!): ID
4135
+ updatePassword(accessToken: String!, client: String!, expiry: String!, password: String!, password_confirmation: String!, tokenType: String!, uid: String!): UpdatePasswordResponse!
4135
4136
  updatePaymentIntent(data: UpdateStripePaymentIntent!): StripePaymentIntent
4136
4137
  updateSsoConnection(id: ID!, sso_connection: SsoConnectionInput!, user_id: ID!): SsoConnection!
4137
4138
  updateUser(user: UpdateUserInput!): UpdateUserResponse!
@@ -5811,6 +5812,10 @@ input UpdatePaidAdParams {
5811
5812
  data: UpdatePaidAdData!
5812
5813
  }
5813
5814
 
5815
+ type UpdatePasswordResponse {
5816
+ user: User!
5817
+ }
5818
+
5814
5819
  input UpdateStripePaymentIntent {
5815
5820
  amount_cents: String!
5816
5821
  id: ID!