@promoboxx/graphql-gateway-types 1.99.0 → 1.100.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.
@@ -27390,6 +27390,53 @@
27390
27390
  "enumValues": null,
27391
27391
  "possibleTypes": null
27392
27392
  },
27393
+ {
27394
+ "kind": "OBJECT",
27395
+ "name": "FacebookTokenResponse",
27396
+ "description": null,
27397
+ "fields": [
27398
+ {
27399
+ "name": "access_token",
27400
+ "description": null,
27401
+ "args": [],
27402
+ "type": {
27403
+ "kind": "SCALAR",
27404
+ "name": "String",
27405
+ "ofType": null
27406
+ },
27407
+ "isDeprecated": false,
27408
+ "deprecationReason": null
27409
+ },
27410
+ {
27411
+ "name": "expires_in",
27412
+ "description": null,
27413
+ "args": [],
27414
+ "type": {
27415
+ "kind": "SCALAR",
27416
+ "name": "Int",
27417
+ "ofType": null
27418
+ },
27419
+ "isDeprecated": false,
27420
+ "deprecationReason": null
27421
+ },
27422
+ {
27423
+ "name": "token_type",
27424
+ "description": null,
27425
+ "args": [],
27426
+ "type": {
27427
+ "kind": "SCALAR",
27428
+ "name": "String",
27429
+ "ofType": null
27430
+ },
27431
+ "isDeprecated": false,
27432
+ "deprecationReason": null
27433
+ }
27434
+ ],
27435
+ "inputFields": null,
27436
+ "interfaces": [],
27437
+ "enumValues": null,
27438
+ "possibleTypes": null
27439
+ },
27393
27440
  {
27394
27441
  "kind": "OBJECT",
27395
27442
  "name": "FacebookUserAndRole",
@@ -50939,6 +50986,35 @@
50939
50986
  "isDeprecated": false,
50940
50987
  "deprecationReason": null
50941
50988
  },
50989
+ {
50990
+ "name": "getTokenFromCode",
50991
+ "description": null,
50992
+ "args": [
50993
+ {
50994
+ "name": "code",
50995
+ "description": null,
50996
+ "type": {
50997
+ "kind": "NON_NULL",
50998
+ "name": null,
50999
+ "ofType": {
51000
+ "kind": "SCALAR",
51001
+ "name": "String",
51002
+ "ofType": null
51003
+ }
51004
+ },
51005
+ "defaultValue": null,
51006
+ "isDeprecated": false,
51007
+ "deprecationReason": null
51008
+ }
51009
+ ],
51010
+ "type": {
51011
+ "kind": "OBJECT",
51012
+ "name": "FacebookTokenResponse",
51013
+ "ofType": null
51014
+ },
51015
+ "isDeprecated": false,
51016
+ "deprecationReason": null
51017
+ },
50942
51018
  {
50943
51019
  "name": "getTwitterAccount",
50944
51020
  "description": null,
package/index.d.ts CHANGED
@@ -2978,6 +2978,13 @@ export type FacebookShare = {
2978
2978
  updated_by_id?: Maybe<Scalars['ID']['output']>;
2979
2979
  };
2980
2980
 
2981
+ export type FacebookTokenResponse = {
2982
+ __typename?: 'FacebookTokenResponse';
2983
+ access_token?: Maybe<Scalars['String']['output']>;
2984
+ expires_in?: Maybe<Scalars['Int']['output']>;
2985
+ token_type?: Maybe<Scalars['String']['output']>;
2986
+ };
2987
+
2981
2988
  export type FacebookUserAndRole = {
2982
2989
  __typename?: 'FacebookUserAndRole';
2983
2990
  id?: Maybe<Scalars['ID']['output']>;
@@ -5537,6 +5544,7 @@ export type Query = {
5537
5544
  /** Gets the specific stripe payment intent with the given ID */
5538
5545
  getStripePaymentIntents?: Maybe<Array<StripePaymentIntent>>;
5539
5546
  getSupportedLocales?: Maybe<Array<Scalars['String']['output']>>;
5547
+ getTokenFromCode?: Maybe<FacebookTokenResponse>;
5540
5548
  getTwitterAccount: TwitterAccount;
5541
5549
  getTwitterAccounts: Array<TwitterAccount>;
5542
5550
  getUser: User;
@@ -6210,6 +6218,11 @@ export type QueryGetStripePaymentIntentsArgs = {
6210
6218
  };
6211
6219
 
6212
6220
 
6221
+ export type QueryGetTokenFromCodeArgs = {
6222
+ code: Scalars['String']['input'];
6223
+ };
6224
+
6225
+
6213
6226
  export type QueryGetTwitterAccountArgs = {
6214
6227
  id: Scalars['ID']['input'];
6215
6228
  params?: InputMaybe<TwitterAccountParams>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.99.0",
3
+ "version": "1.100.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -2878,6 +2878,12 @@ type FacebookShare {
2878
2878
  updated_by_id: ID
2879
2879
  }
2880
2880
 
2881
+ type FacebookTokenResponse {
2882
+ access_token: String
2883
+ expires_in: Int
2884
+ token_type: String
2885
+ }
2886
+
2881
2887
  type FacebookUserAndRole {
2882
2888
  id: ID
2883
2889
  is_active: Boolean
@@ -4604,6 +4610,7 @@ type Query {
4604
4610
  """Gets the specific stripe payment intent with the given ID"""
4605
4611
  getStripePaymentIntents(typeId: ID!, walletType: String!): [StripePaymentIntent!]
4606
4612
  getSupportedLocales: [String!]
4613
+ getTokenFromCode(code: String!): FacebookTokenResponse
4607
4614
  getTwitterAccount(id: ID!, params: TwitterAccountParams): TwitterAccount!
4608
4615
  getTwitterAccounts(params: TwitterAccountParams, resourceId: ID!, resourceType: String!): [TwitterAccount!]!
4609
4616
  getUser(fields: [String!], id: ID!): User!