@promoboxx/graphql-gateway-types 1.46.0 → 1.48.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.
@@ -41122,6 +41122,55 @@
41122
41122
  "isDeprecated": false,
41123
41123
  "deprecationReason": null
41124
41124
  },
41125
+ {
41126
+ "name": "requestPasswordReset",
41127
+ "description": null,
41128
+ "args": [
41129
+ {
41130
+ "name": "email",
41131
+ "description": null,
41132
+ "type": {
41133
+ "kind": "NON_NULL",
41134
+ "name": null,
41135
+ "ofType": {
41136
+ "kind": "SCALAR",
41137
+ "name": "String",
41138
+ "ofType": null
41139
+ }
41140
+ },
41141
+ "defaultValue": null,
41142
+ "isDeprecated": false,
41143
+ "deprecationReason": null
41144
+ },
41145
+ {
41146
+ "name": "redirect_url",
41147
+ "description": null,
41148
+ "type": {
41149
+ "kind": "NON_NULL",
41150
+ "name": null,
41151
+ "ofType": {
41152
+ "kind": "SCALAR",
41153
+ "name": "String",
41154
+ "ofType": null
41155
+ }
41156
+ },
41157
+ "defaultValue": null,
41158
+ "isDeprecated": false,
41159
+ "deprecationReason": null
41160
+ }
41161
+ ],
41162
+ "type": {
41163
+ "kind": "NON_NULL",
41164
+ "name": null,
41165
+ "ofType": {
41166
+ "kind": "SCALAR",
41167
+ "name": "String",
41168
+ "ofType": null
41169
+ }
41170
+ },
41171
+ "isDeprecated": false,
41172
+ "deprecationReason": null
41173
+ },
41125
41174
  {
41126
41175
  "name": "resendAccessInvitation",
41127
41176
  "description": null,
package/index.d.ts CHANGED
@@ -4211,6 +4211,7 @@ export type Mutation = {
4211
4211
  refreshFacebookPageToken?: Maybe<Scalars['ID']['output']>;
4212
4212
  refreshFacebookPageTokens?: Maybe<Array<Scalars['ID']['output']>>;
4213
4213
  rejectBrandRequest: BrandRequest;
4214
+ requestPasswordReset: Scalars['String']['output'];
4214
4215
  resendAccessInvitation: Scalars['ID']['output'];
4215
4216
  resetInvitations: Array<Invitations>;
4216
4217
  /** Reset a transfer given an idempotency key */
@@ -4850,6 +4851,12 @@ export type MutationRejectBrandRequestArgs = {
4850
4851
  };
4851
4852
 
4852
4853
 
4854
+ export type MutationRequestPasswordResetArgs = {
4855
+ email: Scalars['String']['input'];
4856
+ redirect_url: Scalars['String']['input'];
4857
+ };
4858
+
4859
+
4853
4860
  export type MutationResendAccessInvitationArgs = {
4854
4861
  id: Scalars['ID']['input'];
4855
4862
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.46.0",
3
+ "version": "1.48.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -4075,6 +4075,7 @@ type Mutation {
4075
4075
  refreshFacebookPageToken(id: ID!): ID
4076
4076
  refreshFacebookPageTokens(ids: [ID!]!): [ID!]
4077
4077
  rejectBrandRequest(brand_request: RejectBrandRequestBrandRequest, id: ID!): BrandRequest!
4078
+ requestPasswordReset(email: String!, redirect_url: String!): String!
4078
4079
  resendAccessInvitation(id: ID!): ID!
4079
4080
  resetInvitations(params: ResetInvitationsParams!): [Invitations!]!
4080
4081