@promoboxx/graphql-gateway-types 1.92.0 → 1.94.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.
@@ -18908,6 +18908,18 @@
18908
18908
  "isDeprecated": false,
18909
18909
  "deprecationReason": null
18910
18910
  },
18911
+ {
18912
+ "name": "country_code",
18913
+ "description": null,
18914
+ "type": {
18915
+ "kind": "SCALAR",
18916
+ "name": "String",
18917
+ "ofType": null
18918
+ },
18919
+ "defaultValue": null,
18920
+ "isDeprecated": false,
18921
+ "deprecationReason": null
18922
+ },
18911
18923
  {
18912
18924
  "name": "currency",
18913
18925
  "description": null,
@@ -58472,6 +58484,22 @@
58472
58484
  "isDeprecated": false,
58473
58485
  "deprecationReason": null
58474
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
+ },
58475
58503
  {
58476
58504
  "name": "created_at",
58477
58505
  "description": null,
@@ -62962,13 +62990,21 @@
62962
62990
  "name": "amount_cents",
62963
62991
  "description": null,
62964
62992
  "type": {
62965
- "kind": "NON_NULL",
62966
- "name": null,
62967
- "ofType": {
62968
- "kind": "SCALAR",
62969
- "name": "String",
62970
- "ofType": null
62971
- }
62993
+ "kind": "SCALAR",
62994
+ "name": "String",
62995
+ "ofType": null
62996
+ },
62997
+ "defaultValue": null,
62998
+ "isDeprecated": false,
62999
+ "deprecationReason": null
63000
+ },
63001
+ {
63002
+ "name": "country_code",
63003
+ "description": null,
63004
+ "type": {
63005
+ "kind": "SCALAR",
63006
+ "name": "String",
63007
+ "ofType": null
62972
63008
  },
62973
63009
  "defaultValue": null,
62974
63010
  "isDeprecated": false,
package/index.d.ts CHANGED
@@ -2032,6 +2032,7 @@ export type CreateShareSettingCarouselShareSettingParams = {
2032
2032
 
2033
2033
  export type CreateStripePaymentIntentInput = {
2034
2034
  amount_cents: Scalars['String']['input'];
2035
+ country_code?: InputMaybe<Scalars['String']['input']>;
2035
2036
  currency: Scalars['String']['input'];
2036
2037
  payment_type: Scalars['String']['input'];
2037
2038
  type: Scalars['String']['input'];
@@ -7038,6 +7039,7 @@ export type StripePaymentIntent = {
7038
7039
  /** @deprecated deprecated in favor of final_charge_amount */
7039
7040
  amount_stripe_fee: Scalars['String']['output'];
7040
7041
  client_secret: Scalars['String']['output'];
7042
+ country_code: Scalars['String']['output'];
7041
7043
  created_at: Scalars['String']['output'];
7042
7044
  final_charge_amount: Scalars['String']['output'];
7043
7045
  id: Scalars['ID']['output'];
@@ -7519,7 +7521,8 @@ export type UpdatePasswordResponse = {
7519
7521
  };
7520
7522
 
7521
7523
  export type UpdateStripePaymentIntent = {
7522
- amount_cents: Scalars['String']['input'];
7524
+ amount_cents?: InputMaybe<Scalars['String']['input']>;
7525
+ country_code?: InputMaybe<Scalars['String']['input']>;
7523
7526
  id: Scalars['ID']['input'];
7524
7527
  };
7525
7528
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.92.0",
3
+ "version": "1.94.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -1956,6 +1956,7 @@ input CreateShareSettingCarouselShareSettingParams {
1956
1956
 
1957
1957
  input CreateStripePaymentIntentInput {
1958
1958
  amount_cents: String!
1959
+ country_code: String
1959
1960
  currency: String!
1960
1961
  payment_type: String!
1961
1962
  type: String!
@@ -5370,6 +5371,7 @@ type StripePaymentIntent {
5370
5371
  amount: String!
5371
5372
  amount_stripe_fee: String! @deprecated(reason: "deprecated in favor of final_charge_amount")
5372
5373
  client_secret: String!
5374
+ country_code: String!
5373
5375
  created_at: String!
5374
5376
  final_charge_amount: String!
5375
5377
  id: ID!
@@ -5839,7 +5841,8 @@ type UpdatePasswordResponse {
5839
5841
  }
5840
5842
 
5841
5843
  input UpdateStripePaymentIntent {
5842
- amount_cents: String!
5844
+ amount_cents: String
5845
+ country_code: String
5843
5846
  id: ID!
5844
5847
  }
5845
5848