@promoboxx/graphql-gateway-types 1.33.0 → 1.34.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.
- package/graphql.schema.json +1 -44
- package/index.d.ts +2 -8
- package/package.json +1 -1
- package/schema.graphql +1 -6
package/graphql.schema.json
CHANGED
|
@@ -49839,7 +49839,7 @@
|
|
|
49839
49839
|
"deprecationReason": null
|
|
49840
49840
|
},
|
|
49841
49841
|
{
|
|
49842
|
-
"name": "
|
|
49842
|
+
"name": "getStripePaymentIntentByID",
|
|
49843
49843
|
"description": "Gets the specific stripe payment intent with the given ID",
|
|
49844
49844
|
"args": [
|
|
49845
49845
|
{
|
|
@@ -57377,49 +57377,6 @@
|
|
|
57377
57377
|
"enumValues": null,
|
|
57378
57378
|
"possibleTypes": null
|
|
57379
57379
|
},
|
|
57380
|
-
{
|
|
57381
|
-
"kind": "OBJECT",
|
|
57382
|
-
"name": "StripePaymentClientSecretResponse",
|
|
57383
|
-
"description": null,
|
|
57384
|
-
"fields": [
|
|
57385
|
-
{
|
|
57386
|
-
"name": "client_secret",
|
|
57387
|
-
"description": null,
|
|
57388
|
-
"args": [],
|
|
57389
|
-
"type": {
|
|
57390
|
-
"kind": "NON_NULL",
|
|
57391
|
-
"name": null,
|
|
57392
|
-
"ofType": {
|
|
57393
|
-
"kind": "SCALAR",
|
|
57394
|
-
"name": "String",
|
|
57395
|
-
"ofType": null
|
|
57396
|
-
}
|
|
57397
|
-
},
|
|
57398
|
-
"isDeprecated": false,
|
|
57399
|
-
"deprecationReason": null
|
|
57400
|
-
},
|
|
57401
|
-
{
|
|
57402
|
-
"name": "id",
|
|
57403
|
-
"description": null,
|
|
57404
|
-
"args": [],
|
|
57405
|
-
"type": {
|
|
57406
|
-
"kind": "NON_NULL",
|
|
57407
|
-
"name": null,
|
|
57408
|
-
"ofType": {
|
|
57409
|
-
"kind": "SCALAR",
|
|
57410
|
-
"name": "String",
|
|
57411
|
-
"ofType": null
|
|
57412
|
-
}
|
|
57413
|
-
},
|
|
57414
|
-
"isDeprecated": false,
|
|
57415
|
-
"deprecationReason": null
|
|
57416
|
-
}
|
|
57417
|
-
],
|
|
57418
|
-
"inputFields": null,
|
|
57419
|
-
"interfaces": [],
|
|
57420
|
-
"enumValues": null,
|
|
57421
|
-
"possibleTypes": null
|
|
57422
|
-
},
|
|
57423
57380
|
{
|
|
57424
57381
|
"kind": "OBJECT",
|
|
57425
57382
|
"name": "StripePaymentIntent",
|
package/index.d.ts
CHANGED
|
@@ -5453,7 +5453,7 @@ export type Query = {
|
|
|
5453
5453
|
getSsoConnectionsForUser: Array<SsoConnection>;
|
|
5454
5454
|
getStats: StatsResponse;
|
|
5455
5455
|
/** Gets the specific stripe payment intent with the given ID */
|
|
5456
|
-
|
|
5456
|
+
getStripePaymentIntentByID: StripePaymentIntent;
|
|
5457
5457
|
getSupportedLocales?: Maybe<Array<Scalars['String']['output']>>;
|
|
5458
5458
|
getTwitterAccount: TwitterAccount;
|
|
5459
5459
|
getTwitterAccounts: Array<TwitterAccount>;
|
|
@@ -6079,7 +6079,7 @@ export type QueryGetStatsArgs = {
|
|
|
6079
6079
|
};
|
|
6080
6080
|
|
|
6081
6081
|
|
|
6082
|
-
export type
|
|
6082
|
+
export type QueryGetStripePaymentIntentByIdArgs = {
|
|
6083
6083
|
id: Scalars['ID']['input'];
|
|
6084
6084
|
};
|
|
6085
6085
|
|
|
@@ -6907,12 +6907,6 @@ export type StatsType =
|
|
|
6907
6907
|
| 'accelerate_retailer_campaign'
|
|
6908
6908
|
| 'retailer_campaigns';
|
|
6909
6909
|
|
|
6910
|
-
export type StripePaymentClientSecretResponse = {
|
|
6911
|
-
__typename?: 'StripePaymentClientSecretResponse';
|
|
6912
|
-
client_secret: Scalars['String']['output'];
|
|
6913
|
-
id: Scalars['String']['output'];
|
|
6914
|
-
};
|
|
6915
|
-
|
|
6916
6910
|
export type StripePaymentIntent = {
|
|
6917
6911
|
__typename?: 'StripePaymentIntent';
|
|
6918
6912
|
amount: Scalars['String']['output'];
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -4562,7 +4562,7 @@ type Query {
|
|
|
4562
4562
|
getStats(params: GetStatsParams!, stats_type: StatsType!): StatsResponse!
|
|
4563
4563
|
|
|
4564
4564
|
"""Gets the specific stripe payment intent with the given ID"""
|
|
4565
|
-
|
|
4565
|
+
getStripePaymentIntentByID(id: ID!): StripePaymentIntent!
|
|
4566
4566
|
getSupportedLocales: [String!]
|
|
4567
4567
|
getTwitterAccount(id: ID!, params: TwitterAccountParams): TwitterAccount!
|
|
4568
4568
|
getTwitterAccounts(params: TwitterAccountParams, resourceId: ID!, resourceType: String!): [TwitterAccount!]!
|
|
@@ -5328,11 +5328,6 @@ enum StatsType {
|
|
|
5328
5328
|
retailer_campaigns
|
|
5329
5329
|
}
|
|
5330
5330
|
|
|
5331
|
-
type StripePaymentClientSecretResponse {
|
|
5332
|
-
client_secret: String!
|
|
5333
|
-
id: String!
|
|
5334
|
-
}
|
|
5335
|
-
|
|
5336
5331
|
type StripePaymentIntent {
|
|
5337
5332
|
amount: String!
|
|
5338
5333
|
amount_stripe_fee: String!
|