@promoboxx/graphql-gateway-types 1.773.0 → 1.775.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 +12 -0
- package/index.d.ts +1 -0
- package/package.json +1 -1
- package/schema.graphql +1 -0
package/graphql.schema.json
CHANGED
|
@@ -46177,6 +46177,18 @@
|
|
|
46177
46177
|
"isDeprecated": false,
|
|
46178
46178
|
"deprecationReason": null
|
|
46179
46179
|
},
|
|
46180
|
+
{
|
|
46181
|
+
"name": "retailer_share_image_url",
|
|
46182
|
+
"description": null,
|
|
46183
|
+
"args": [],
|
|
46184
|
+
"type": {
|
|
46185
|
+
"kind": "SCALAR",
|
|
46186
|
+
"name": "String",
|
|
46187
|
+
"ofType": null
|
|
46188
|
+
},
|
|
46189
|
+
"isDeprecated": false,
|
|
46190
|
+
"deprecationReason": null
|
|
46191
|
+
},
|
|
46180
46192
|
{
|
|
46181
46193
|
"name": "source_id",
|
|
46182
46194
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -5042,6 +5042,7 @@ export type Media = {
|
|
|
5042
5042
|
/** @deprecated This crop format is not well supported by GraphQL schema */
|
|
5043
5043
|
image_crops?: Maybe<ImageCrops>;
|
|
5044
5044
|
media_type: Scalars['String']['output'];
|
|
5045
|
+
retailer_share_image_url?: Maybe<Scalars['String']['output']>;
|
|
5045
5046
|
source_id: Scalars['ID']['output'];
|
|
5046
5047
|
source_type: Scalars['String']['output'];
|
|
5047
5048
|
};
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -4834,6 +4834,7 @@ type Media {
|
|
|
4834
4834
|
image_crop_list: [ImageCrop!]
|
|
4835
4835
|
image_crops: ImageCrops @deprecated(reason: "This crop format is not well supported by GraphQL schema")
|
|
4836
4836
|
media_type: String!
|
|
4837
|
+
retailer_share_image_url: String
|
|
4837
4838
|
source_id: ID!
|
|
4838
4839
|
source_type: String!
|
|
4839
4840
|
}
|