@promoboxx/graphql-gateway-types 1.1046.0 → 1.1047.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 +24 -0
- package/index.d.ts +2 -0
- package/package.json +1 -1
- package/schema.graphql +2 -0
package/graphql.schema.json
CHANGED
|
@@ -17189,6 +17189,18 @@
|
|
|
17189
17189
|
"isDeprecated": false,
|
|
17190
17190
|
"deprecationReason": null
|
|
17191
17191
|
},
|
|
17192
|
+
{
|
|
17193
|
+
"name": "crop_attributes",
|
|
17194
|
+
"description": null,
|
|
17195
|
+
"args": [],
|
|
17196
|
+
"type": {
|
|
17197
|
+
"kind": "OBJECT",
|
|
17198
|
+
"name": "CropAttributes",
|
|
17199
|
+
"ofType": null
|
|
17200
|
+
},
|
|
17201
|
+
"isDeprecated": false,
|
|
17202
|
+
"deprecationReason": null
|
|
17203
|
+
},
|
|
17192
17204
|
{
|
|
17193
17205
|
"name": "custom_share_url_id",
|
|
17194
17206
|
"description": null,
|
|
@@ -17426,6 +17438,18 @@
|
|
|
17426
17438
|
"isDeprecated": false,
|
|
17427
17439
|
"deprecationReason": null
|
|
17428
17440
|
},
|
|
17441
|
+
{
|
|
17442
|
+
"name": "crop_attributes",
|
|
17443
|
+
"description": null,
|
|
17444
|
+
"type": {
|
|
17445
|
+
"kind": "INPUT_OBJECT",
|
|
17446
|
+
"name": "ShareSettingBrandCropInput",
|
|
17447
|
+
"ofType": null
|
|
17448
|
+
},
|
|
17449
|
+
"defaultValue": null,
|
|
17450
|
+
"isDeprecated": false,
|
|
17451
|
+
"deprecationReason": null
|
|
17452
|
+
},
|
|
17429
17453
|
{
|
|
17430
17454
|
"name": "custom_share_url_id",
|
|
17431
17455
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -1827,6 +1827,7 @@ export type ChildAttachment = {
|
|
|
1827
1827
|
__typename?: 'ChildAttachment';
|
|
1828
1828
|
allow_retailer_url_override?: Maybe<Scalars['Boolean']['output']>;
|
|
1829
1829
|
call_to_action?: Maybe<Scalars['String']['output']>;
|
|
1830
|
+
crop_attributes?: Maybe<CropAttributes>;
|
|
1830
1831
|
custom_share_url_id?: Maybe<Scalars['Int']['output']>;
|
|
1831
1832
|
description?: Maybe<Scalars['String']['output']>;
|
|
1832
1833
|
id: Scalars['ID']['output'];
|
|
@@ -1851,6 +1852,7 @@ export type ChildAttachmentCustomization = {
|
|
|
1851
1852
|
export type ChildAttachmentParams = {
|
|
1852
1853
|
allow_retailer_url_override?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1853
1854
|
call_to_action?: InputMaybe<Scalars['String']['input']>;
|
|
1855
|
+
crop_attributes?: InputMaybe<ShareSettingBrandCropInput>;
|
|
1854
1856
|
custom_share_url_id?: InputMaybe<Scalars['Int']['input']>;
|
|
1855
1857
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
1856
1858
|
link?: InputMaybe<Scalars['String']['input']>;
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -1734,6 +1734,7 @@ union ChartData = Plotly
|
|
|
1734
1734
|
type ChildAttachment {
|
|
1735
1735
|
allow_retailer_url_override: Boolean
|
|
1736
1736
|
call_to_action: String
|
|
1737
|
+
crop_attributes: CropAttributes
|
|
1737
1738
|
custom_share_url_id: Int
|
|
1738
1739
|
description: String
|
|
1739
1740
|
id: ID!
|
|
@@ -1757,6 +1758,7 @@ type ChildAttachmentCustomization {
|
|
|
1757
1758
|
input ChildAttachmentParams {
|
|
1758
1759
|
allow_retailer_url_override: Boolean
|
|
1759
1760
|
call_to_action: String
|
|
1761
|
+
crop_attributes: ShareSettingBrandCropInput
|
|
1760
1762
|
custom_share_url_id: Int
|
|
1761
1763
|
description: String
|
|
1762
1764
|
link: String
|