@promoboxx/graphql-gateway-types 1.58.0 → 1.60.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.
@@ -36309,6 +36309,116 @@
36309
36309
  ],
36310
36310
  "possibleTypes": null
36311
36311
  },
36312
+ {
36313
+ "kind": "OBJECT",
36314
+ "name": "LoginMethodDescriptor",
36315
+ "description": null,
36316
+ "fields": [
36317
+ {
36318
+ "name": "auth0_connection_type",
36319
+ "description": null,
36320
+ "args": [],
36321
+ "type": {
36322
+ "kind": "SCALAR",
36323
+ "name": "String",
36324
+ "ofType": null
36325
+ },
36326
+ "isDeprecated": false,
36327
+ "deprecationReason": null
36328
+ },
36329
+ {
36330
+ "name": "brand_slug",
36331
+ "description": null,
36332
+ "args": [],
36333
+ "type": {
36334
+ "kind": "SCALAR",
36335
+ "name": "String",
36336
+ "ofType": null
36337
+ },
36338
+ "isDeprecated": false,
36339
+ "deprecationReason": null
36340
+ },
36341
+ {
36342
+ "name": "icon",
36343
+ "description": null,
36344
+ "args": [],
36345
+ "type": {
36346
+ "kind": "SCALAR",
36347
+ "name": "String",
36348
+ "ofType": null
36349
+ },
36350
+ "isDeprecated": false,
36351
+ "deprecationReason": null
36352
+ },
36353
+ {
36354
+ "name": "method",
36355
+ "description": null,
36356
+ "args": [],
36357
+ "type": {
36358
+ "kind": "NON_NULL",
36359
+ "name": null,
36360
+ "ofType": {
36361
+ "kind": "SCALAR",
36362
+ "name": "String",
36363
+ "ofType": null
36364
+ }
36365
+ },
36366
+ "isDeprecated": false,
36367
+ "deprecationReason": null
36368
+ },
36369
+ {
36370
+ "name": "name",
36371
+ "description": null,
36372
+ "args": [],
36373
+ "type": {
36374
+ "kind": "SCALAR",
36375
+ "name": "String",
36376
+ "ofType": null
36377
+ },
36378
+ "isDeprecated": false,
36379
+ "deprecationReason": null
36380
+ }
36381
+ ],
36382
+ "inputFields": null,
36383
+ "interfaces": [],
36384
+ "enumValues": null,
36385
+ "possibleTypes": null
36386
+ },
36387
+ {
36388
+ "kind": "OBJECT",
36389
+ "name": "LoginMethodsResponse",
36390
+ "description": null,
36391
+ "fields": [
36392
+ {
36393
+ "name": "login_method_descriptor",
36394
+ "description": null,
36395
+ "args": [],
36396
+ "type": {
36397
+ "kind": "NON_NULL",
36398
+ "name": null,
36399
+ "ofType": {
36400
+ "kind": "LIST",
36401
+ "name": null,
36402
+ "ofType": {
36403
+ "kind": "NON_NULL",
36404
+ "name": null,
36405
+ "ofType": {
36406
+ "kind": "OBJECT",
36407
+ "name": "LoginMethodDescriptor",
36408
+ "ofType": null
36409
+ }
36410
+ }
36411
+ }
36412
+ },
36413
+ "isDeprecated": false,
36414
+ "deprecationReason": null
36415
+ }
36416
+ ],
36417
+ "inputFields": null,
36418
+ "interfaces": [],
36419
+ "enumValues": null,
36420
+ "possibleTypes": null
36421
+ },
36312
36422
  {
36313
36423
  "kind": "OBJECT",
36314
36424
  "name": "Logo",
@@ -40436,6 +40546,39 @@
40436
40546
  "isDeprecated": false,
40437
40547
  "deprecationReason": null
40438
40548
  },
40549
+ {
40550
+ "name": "loginMethods",
40551
+ "description": null,
40552
+ "args": [
40553
+ {
40554
+ "name": "email",
40555
+ "description": null,
40556
+ "type": {
40557
+ "kind": "NON_NULL",
40558
+ "name": null,
40559
+ "ofType": {
40560
+ "kind": "SCALAR",
40561
+ "name": "String",
40562
+ "ofType": null
40563
+ }
40564
+ },
40565
+ "defaultValue": null,
40566
+ "isDeprecated": false,
40567
+ "deprecationReason": null
40568
+ }
40569
+ ],
40570
+ "type": {
40571
+ "kind": "NON_NULL",
40572
+ "name": null,
40573
+ "ofType": {
40574
+ "kind": "OBJECT",
40575
+ "name": "LoginMethodsResponse",
40576
+ "ofType": null
40577
+ }
40578
+ },
40579
+ "isDeprecated": false,
40580
+ "deprecationReason": null
40581
+ },
40439
40582
  {
40440
40583
  "name": "make_deposit",
40441
40584
  "description": "Make a deposit to a source account\ninternal only",
package/index.d.ts CHANGED
@@ -4028,6 +4028,20 @@ export type LocationableType =
4028
4028
  | 'Retailer'
4029
4029
  | 'RetailerAccount';
4030
4030
 
4031
+ export type LoginMethodDescriptor = {
4032
+ __typename?: 'LoginMethodDescriptor';
4033
+ auth0_connection_type?: Maybe<Scalars['String']['output']>;
4034
+ brand_slug?: Maybe<Scalars['String']['output']>;
4035
+ icon?: Maybe<Scalars['String']['output']>;
4036
+ method: Scalars['String']['output'];
4037
+ name?: Maybe<Scalars['String']['output']>;
4038
+ };
4039
+
4040
+ export type LoginMethodsResponse = {
4041
+ __typename?: 'LoginMethodsResponse';
4042
+ login_method_descriptor: Array<LoginMethodDescriptor>;
4043
+ };
4044
+
4031
4045
  export type Logo = {
4032
4046
  __typename?: 'Logo';
4033
4047
  external_video_url?: Maybe<Scalars['String']['output']>;
@@ -4183,6 +4197,7 @@ export type Mutation = {
4183
4197
  inviteRetailers?: Maybe<Scalars['ID']['output']>;
4184
4198
  inviteRetailersAndPublishPaidAd: Scalars['ID']['output'];
4185
4199
  joinRetailer: Permission;
4200
+ loginMethods: LoginMethodsResponse;
4186
4201
  /**
4187
4202
  * Make a deposit to a source account
4188
4203
  * internal only
@@ -4754,6 +4769,11 @@ export type MutationJoinRetailerArgs = {
4754
4769
  };
4755
4770
 
4756
4771
 
4772
+ export type MutationLoginMethodsArgs = {
4773
+ email: Scalars['String']['input'];
4774
+ };
4775
+
4776
+
4757
4777
  export type MutationMake_DepositArgs = {
4758
4778
  data: MakeDepositData;
4759
4779
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.58.0",
3
+ "version": "1.60.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -3890,6 +3890,18 @@ enum LocationableType {
3890
3890
  RetailerAccount
3891
3891
  }
3892
3892
 
3893
+ type LoginMethodDescriptor {
3894
+ auth0_connection_type: String
3895
+ brand_slug: String
3896
+ icon: String
3897
+ method: String!
3898
+ name: String
3899
+ }
3900
+
3901
+ type LoginMethodsResponse {
3902
+ login_method_descriptor: [LoginMethodDescriptor!]!
3903
+ }
3904
+
3893
3905
  type Logo {
3894
3906
  external_video_url: String
3895
3907
  file: File
@@ -4043,6 +4055,7 @@ type Mutation {
4043
4055
  inviteRetailers(params: InviteRetailersParams!): ID
4044
4056
  inviteRetailersAndPublishPaidAd(inviteParams: InviteRetailersParams!, publishParams: PublishPaidAdParams!): ID!
4045
4057
  joinRetailer(brandId: ID!, linkId: ID!): Permission!
4058
+ loginMethods(email: String!): LoginMethodsResponse!
4046
4059
 
4047
4060
  """
4048
4061
  Make a deposit to a source account