@promoboxx/graphql-gateway-types 1.92.0 → 1.93.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,
@@ -62962,13 +62974,21 @@
62962
62974
  "name": "amount_cents",
62963
62975
  "description": null,
62964
62976
  "type": {
62965
- "kind": "NON_NULL",
62966
- "name": null,
62967
- "ofType": {
62968
- "kind": "SCALAR",
62969
- "name": "String",
62970
- "ofType": null
62971
- }
62977
+ "kind": "SCALAR",
62978
+ "name": "String",
62979
+ "ofType": null
62980
+ },
62981
+ "defaultValue": null,
62982
+ "isDeprecated": false,
62983
+ "deprecationReason": null
62984
+ },
62985
+ {
62986
+ "name": "country_code",
62987
+ "description": null,
62988
+ "type": {
62989
+ "kind": "SCALAR",
62990
+ "name": "String",
62991
+ "ofType": null
62972
62992
  },
62973
62993
  "defaultValue": null,
62974
62994
  "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'];
@@ -7519,7 +7520,8 @@ export type UpdatePasswordResponse = {
7519
7520
  };
7520
7521
 
7521
7522
  export type UpdateStripePaymentIntent = {
7522
- amount_cents: Scalars['String']['input'];
7523
+ amount_cents?: InputMaybe<Scalars['String']['input']>;
7524
+ country_code?: InputMaybe<Scalars['String']['input']>;
7523
7525
  id: Scalars['ID']['input'];
7524
7526
  };
7525
7527
 
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.93.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!
@@ -5839,7 +5840,8 @@ type UpdatePasswordResponse {
5839
5840
  }
5840
5841
 
5841
5842
  input UpdateStripePaymentIntent {
5842
- amount_cents: String!
5843
+ amount_cents: String
5844
+ country_code: String
5843
5845
  id: ID!
5844
5846
  }
5845
5847