@promoboxx/graphql-gateway-types 1.981.0 → 1.982.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 +11 -3
- package/index.d.ts +1 -1
- package/package.json +1 -1
- package/schema.graphql +1 -1
package/graphql.schema.json
CHANGED
|
@@ -41532,9 +41532,17 @@
|
|
|
41532
41532
|
"name": "share_type",
|
|
41533
41533
|
"description": null,
|
|
41534
41534
|
"type": {
|
|
41535
|
-
"kind": "
|
|
41536
|
-
"name":
|
|
41537
|
-
"ofType":
|
|
41535
|
+
"kind": "LIST",
|
|
41536
|
+
"name": null,
|
|
41537
|
+
"ofType": {
|
|
41538
|
+
"kind": "NON_NULL",
|
|
41539
|
+
"name": null,
|
|
41540
|
+
"ofType": {
|
|
41541
|
+
"kind": "SCALAR",
|
|
41542
|
+
"name": "String",
|
|
41543
|
+
"ofType": null
|
|
41544
|
+
}
|
|
41545
|
+
}
|
|
41538
41546
|
},
|
|
41539
41547
|
"defaultValue": null,
|
|
41540
41548
|
"isDeprecated": false,
|
package/index.d.ts
CHANGED
|
@@ -4425,7 +4425,7 @@ export type GetRetailersParams = {
|
|
|
4425
4425
|
};
|
|
4426
4426
|
|
|
4427
4427
|
export type GetShareSettingsRetailerFilters = {
|
|
4428
|
-
share_type?: InputMaybe<Scalars['String']['input']
|
|
4428
|
+
share_type?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4429
4429
|
};
|
|
4430
4430
|
|
|
4431
4431
|
export type GetSharesByResourceTypeResponse = {
|
package/package.json
CHANGED