@promoboxx/graphql-gateway-types 1.50.0 → 1.52.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.
@@ -57513,8 +57513,8 @@
57513
57513
  "ofType": null
57514
57514
  }
57515
57515
  },
57516
- "isDeprecated": false,
57517
- "deprecationReason": null
57516
+ "isDeprecated": true,
57517
+ "deprecationReason": "deprecated in favor of final_charge_amount"
57518
57518
  },
57519
57519
  {
57520
57520
  "name": "client_secret",
@@ -57548,6 +57548,22 @@
57548
57548
  "isDeprecated": false,
57549
57549
  "deprecationReason": null
57550
57550
  },
57551
+ {
57552
+ "name": "final_charge_amount",
57553
+ "description": null,
57554
+ "args": [],
57555
+ "type": {
57556
+ "kind": "NON_NULL",
57557
+ "name": null,
57558
+ "ofType": {
57559
+ "kind": "SCALAR",
57560
+ "name": "String",
57561
+ "ofType": null
57562
+ }
57563
+ },
57564
+ "isDeprecated": false,
57565
+ "deprecationReason": null
57566
+ },
57551
57567
  {
57552
57568
  "name": "id",
57553
57569
  "description": null,
package/index.d.ts CHANGED
@@ -6924,9 +6924,11 @@ export type StatsType =
6924
6924
  export type StripePaymentIntent = {
6925
6925
  __typename?: 'StripePaymentIntent';
6926
6926
  amount: Scalars['String']['output'];
6927
+ /** @deprecated deprecated in favor of final_charge_amount */
6927
6928
  amount_stripe_fee: Scalars['String']['output'];
6928
6929
  client_secret: Scalars['String']['output'];
6929
6930
  created_at: Scalars['String']['output'];
6931
+ final_charge_amount: Scalars['String']['output'];
6930
6932
  id: Scalars['ID']['output'];
6931
6933
  payment_intent_id: Scalars['String']['output'];
6932
6934
  status: Scalars['String']['output'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.50.0",
3
+ "version": "1.52.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -5332,9 +5332,10 @@ enum StatsType {
5332
5332
 
5333
5333
  type StripePaymentIntent {
5334
5334
  amount: String!
5335
- amount_stripe_fee: String!
5335
+ amount_stripe_fee: String! @deprecated(reason: "deprecated in favor of final_charge_amount")
5336
5336
  client_secret: String!
5337
5337
  created_at: String!
5338
+ final_charge_amount: String!
5338
5339
  id: ID!
5339
5340
  payment_intent_id: String!
5340
5341
  status: String!