@promoboxx/graphql-gateway-types 1.91.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.
- package/graphql.schema.json +39 -7
- package/index.d.ts +4 -1
- package/package.json +1 -1
- package/schema.graphql +4 -1
package/graphql.schema.json
CHANGED
|
@@ -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,
|
|
@@ -22335,6 +22347,18 @@
|
|
|
22335
22347
|
"isDeprecated": false,
|
|
22336
22348
|
"deprecationReason": null
|
|
22337
22349
|
},
|
|
22350
|
+
{
|
|
22351
|
+
"name": "brand",
|
|
22352
|
+
"description": null,
|
|
22353
|
+
"args": [],
|
|
22354
|
+
"type": {
|
|
22355
|
+
"kind": "OBJECT",
|
|
22356
|
+
"name": "Brand",
|
|
22357
|
+
"ofType": null
|
|
22358
|
+
},
|
|
22359
|
+
"isDeprecated": false,
|
|
22360
|
+
"deprecationReason": null
|
|
22361
|
+
},
|
|
22338
22362
|
{
|
|
22339
22363
|
"name": "brand_id",
|
|
22340
22364
|
"description": null,
|
|
@@ -62950,13 +62974,21 @@
|
|
|
62950
62974
|
"name": "amount_cents",
|
|
62951
62975
|
"description": null,
|
|
62952
62976
|
"type": {
|
|
62953
|
-
"kind": "
|
|
62954
|
-
"name":
|
|
62955
|
-
"ofType":
|
|
62956
|
-
|
|
62957
|
-
|
|
62958
|
-
|
|
62959
|
-
|
|
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
|
|
62960
62992
|
},
|
|
62961
62993
|
"defaultValue": null,
|
|
62962
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'];
|
|
@@ -2411,6 +2412,7 @@ export type Division = {
|
|
|
2411
2412
|
access_invitations?: Maybe<Array<AccessInvitation>>;
|
|
2412
2413
|
active_campaigns?: Maybe<Array<Campaign>>;
|
|
2413
2414
|
active_users?: Maybe<Array<User>>;
|
|
2415
|
+
brand?: Maybe<Brand>;
|
|
2414
2416
|
brand_id?: Maybe<Scalars['ID']['output']>;
|
|
2415
2417
|
brand_slug?: Maybe<Scalars['String']['output']>;
|
|
2416
2418
|
campaign_alias?: Maybe<Scalars['String']['output']>;
|
|
@@ -7518,7 +7520,8 @@ export type UpdatePasswordResponse = {
|
|
|
7518
7520
|
};
|
|
7519
7521
|
|
|
7520
7522
|
export type UpdateStripePaymentIntent = {
|
|
7521
|
-
amount_cents
|
|
7523
|
+
amount_cents?: InputMaybe<Scalars['String']['input']>;
|
|
7524
|
+
country_code?: InputMaybe<Scalars['String']['input']>;
|
|
7522
7525
|
id: Scalars['ID']['input'];
|
|
7523
7526
|
};
|
|
7524
7527
|
|
package/package.json
CHANGED
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!
|
|
@@ -2313,6 +2314,7 @@ type Division {
|
|
|
2313
2314
|
access_invitations: [AccessInvitation!]
|
|
2314
2315
|
active_campaigns: [Campaign!]
|
|
2315
2316
|
active_users: [User!]
|
|
2317
|
+
brand: Brand
|
|
2316
2318
|
brand_id: ID
|
|
2317
2319
|
brand_slug: String
|
|
2318
2320
|
campaign_alias: String
|
|
@@ -5838,7 +5840,8 @@ type UpdatePasswordResponse {
|
|
|
5838
5840
|
}
|
|
5839
5841
|
|
|
5840
5842
|
input UpdateStripePaymentIntent {
|
|
5841
|
-
amount_cents: String
|
|
5843
|
+
amount_cents: String
|
|
5844
|
+
country_code: String
|
|
5842
5845
|
id: ID!
|
|
5843
5846
|
}
|
|
5844
5847
|
|