@promoboxx/graphql-gateway-types 1.93.0 → 1.95.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.
@@ -58484,6 +58484,22 @@
58484
58484
  "isDeprecated": false,
58485
58485
  "deprecationReason": null
58486
58486
  },
58487
+ {
58488
+ "name": "country_code",
58489
+ "description": null,
58490
+ "args": [],
58491
+ "type": {
58492
+ "kind": "NON_NULL",
58493
+ "name": null,
58494
+ "ofType": {
58495
+ "kind": "SCALAR",
58496
+ "name": "String",
58497
+ "ofType": null
58498
+ }
58499
+ },
58500
+ "isDeprecated": false,
58501
+ "deprecationReason": null
58502
+ },
58487
58503
  {
58488
58504
  "name": "created_at",
58489
58505
  "description": null,
package/index.d.ts CHANGED
@@ -7039,6 +7039,7 @@ export type StripePaymentIntent = {
7039
7039
  /** @deprecated deprecated in favor of final_charge_amount */
7040
7040
  amount_stripe_fee: Scalars['String']['output'];
7041
7041
  client_secret: Scalars['String']['output'];
7042
+ country_code: Scalars['String']['output'];
7042
7043
  created_at: Scalars['String']['output'];
7043
7044
  final_charge_amount: Scalars['String']['output'];
7044
7045
  id: Scalars['ID']['output'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.93.0",
3
+ "version": "1.95.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -5371,6 +5371,7 @@ type StripePaymentIntent {
5371
5371
  amount: String!
5372
5372
  amount_stripe_fee: String! @deprecated(reason: "deprecated in favor of final_charge_amount")
5373
5373
  client_secret: String!
5374
+ country_code: String!
5374
5375
  created_at: String!
5375
5376
  final_charge_amount: String!
5376
5377
  id: ID!