@promoboxx/graphql-gateway-types 1.371.0 → 1.373.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 +36 -0
- package/index.d.ts +3 -0
- package/package.json +1 -1
- package/schema.graphql +3 -0
package/graphql.schema.json
CHANGED
|
@@ -20654,6 +20654,18 @@
|
|
|
20654
20654
|
"isDeprecated": false,
|
|
20655
20655
|
"deprecationReason": null
|
|
20656
20656
|
},
|
|
20657
|
+
{
|
|
20658
|
+
"name": "retailer_url_override",
|
|
20659
|
+
"description": null,
|
|
20660
|
+
"type": {
|
|
20661
|
+
"kind": "SCALAR",
|
|
20662
|
+
"name": "String",
|
|
20663
|
+
"ofType": null
|
|
20664
|
+
},
|
|
20665
|
+
"defaultValue": null,
|
|
20666
|
+
"isDeprecated": false,
|
|
20667
|
+
"deprecationReason": null
|
|
20668
|
+
},
|
|
20657
20669
|
{
|
|
20658
20670
|
"name": "scheduled_for",
|
|
20659
20671
|
"description": null,
|
|
@@ -21319,6 +21331,18 @@
|
|
|
21319
21331
|
"isDeprecated": false,
|
|
21320
21332
|
"deprecationReason": null
|
|
21321
21333
|
},
|
|
21334
|
+
{
|
|
21335
|
+
"name": "retailer_url_override",
|
|
21336
|
+
"description": null,
|
|
21337
|
+
"type": {
|
|
21338
|
+
"kind": "SCALAR",
|
|
21339
|
+
"name": "String",
|
|
21340
|
+
"ofType": null
|
|
21341
|
+
},
|
|
21342
|
+
"defaultValue": null,
|
|
21343
|
+
"isDeprecated": false,
|
|
21344
|
+
"deprecationReason": null
|
|
21345
|
+
},
|
|
21322
21346
|
{
|
|
21323
21347
|
"name": "scheduled_for",
|
|
21324
21348
|
"description": null,
|
|
@@ -89665,6 +89689,18 @@
|
|
|
89665
89689
|
"isDeprecated": false,
|
|
89666
89690
|
"deprecationReason": null
|
|
89667
89691
|
},
|
|
89692
|
+
{
|
|
89693
|
+
"name": "retailer_url_override",
|
|
89694
|
+
"description": null,
|
|
89695
|
+
"type": {
|
|
89696
|
+
"kind": "SCALAR",
|
|
89697
|
+
"name": "String",
|
|
89698
|
+
"ofType": null
|
|
89699
|
+
},
|
|
89700
|
+
"defaultValue": null,
|
|
89701
|
+
"isDeprecated": false,
|
|
89702
|
+
"deprecationReason": null
|
|
89703
|
+
},
|
|
89668
89704
|
{
|
|
89669
89705
|
"name": "scheduled_for",
|
|
89670
89706
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -2217,6 +2217,7 @@ export type CreateShareFacebookShare = {
|
|
|
2217
2217
|
multi_share_optimized?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2218
2218
|
picture?: InputMaybe<Scalars['String']['input']>;
|
|
2219
2219
|
retailer_id: Scalars['ID']['input'];
|
|
2220
|
+
retailer_url_override?: InputMaybe<Scalars['String']['input']>;
|
|
2220
2221
|
scheduled_for?: InputMaybe<Scalars['String']['input']>;
|
|
2221
2222
|
share_mode?: InputMaybe<Scalars['String']['input']>;
|
|
2222
2223
|
share_setting_id: Scalars['ID']['input'];
|
|
@@ -2280,6 +2281,7 @@ export type CreateShareTwitterShare = {
|
|
|
2280
2281
|
link?: InputMaybe<Scalars['String']['input']>;
|
|
2281
2282
|
picture?: InputMaybe<Scalars['String']['input']>;
|
|
2282
2283
|
retailer_id: Scalars['ID']['input'];
|
|
2284
|
+
retailer_url_override?: InputMaybe<Scalars['String']['input']>;
|
|
2283
2285
|
scheduled_for?: InputMaybe<Scalars['String']['input']>;
|
|
2284
2286
|
share_mode?: InputMaybe<Scalars['String']['input']>;
|
|
2285
2287
|
share_setting_id: Scalars['ID']['input'];
|
|
@@ -11448,6 +11450,7 @@ export type UpdateShareFacebookShare = {
|
|
|
11448
11450
|
message?: InputMaybe<Scalars['String']['input']>;
|
|
11449
11451
|
picture?: InputMaybe<Scalars['String']['input']>;
|
|
11450
11452
|
retailer_id: Scalars['ID']['input'];
|
|
11453
|
+
retailer_url_override?: InputMaybe<Scalars['String']['input']>;
|
|
11451
11454
|
scheduled_for?: InputMaybe<Scalars['String']['input']>;
|
|
11452
11455
|
share_setting_id: Scalars['ID']['input'];
|
|
11453
11456
|
title?: InputMaybe<Scalars['String']['input']>;
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -2128,6 +2128,7 @@ input CreateShareFacebookShare {
|
|
|
2128
2128
|
multi_share_optimized: Boolean
|
|
2129
2129
|
picture: String
|
|
2130
2130
|
retailer_id: ID!
|
|
2131
|
+
retailer_url_override: String
|
|
2131
2132
|
scheduled_for: String
|
|
2132
2133
|
share_mode: String
|
|
2133
2134
|
share_setting_id: ID!
|
|
@@ -2191,6 +2192,7 @@ input CreateShareTwitterShare {
|
|
|
2191
2192
|
link: String
|
|
2192
2193
|
picture: String
|
|
2193
2194
|
retailer_id: ID!
|
|
2195
|
+
retailer_url_override: String
|
|
2194
2196
|
scheduled_for: String
|
|
2195
2197
|
share_mode: String
|
|
2196
2198
|
share_setting_id: ID!
|
|
@@ -10527,6 +10529,7 @@ input UpdateShareFacebookShare {
|
|
|
10527
10529
|
message: String
|
|
10528
10530
|
picture: String
|
|
10529
10531
|
retailer_id: ID!
|
|
10532
|
+
retailer_url_override: String
|
|
10530
10533
|
scheduled_for: String
|
|
10531
10534
|
share_setting_id: ID!
|
|
10532
10535
|
title: String
|