@promoboxx/graphql-gateway-types 1.804.0 → 1.806.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
|
@@ -83173,6 +83173,18 @@
|
|
|
83173
83173
|
"isDeprecated": false,
|
|
83174
83174
|
"deprecationReason": null
|
|
83175
83175
|
},
|
|
83176
|
+
{
|
|
83177
|
+
"name": "score",
|
|
83178
|
+
"description": null,
|
|
83179
|
+
"args": [],
|
|
83180
|
+
"type": {
|
|
83181
|
+
"kind": "SCALAR",
|
|
83182
|
+
"name": "Float",
|
|
83183
|
+
"ofType": null
|
|
83184
|
+
},
|
|
83185
|
+
"isDeprecated": false,
|
|
83186
|
+
"deprecationReason": null
|
|
83187
|
+
},
|
|
83176
83188
|
{
|
|
83177
83189
|
"name": "share_data",
|
|
83178
83190
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -10680,6 +10680,7 @@ export type ShareSetting = {
|
|
|
10680
10680
|
retailer_subject?: Maybe<Scalars['String']['output']>;
|
|
10681
10681
|
retailer_text_body?: Maybe<Scalars['String']['output']>;
|
|
10682
10682
|
retailer_title?: Maybe<Scalars['String']['output']>;
|
|
10683
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
10683
10684
|
share_data?: Maybe<ShareData>;
|
|
10684
10685
|
share_image_content_type?: Maybe<Scalars['String']['output']>;
|
|
10685
10686
|
share_image_file_name?: Maybe<Scalars['String']['output']>;
|
package/package.json
CHANGED
package/schema.graphql
CHANGED