@promoboxx/graphql-gateway-types 1.1080.0 → 1.1082.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 +25 -9
- package/index.d.ts +2 -1
- package/package.json +1 -1
- package/schema.graphql +2 -1
package/graphql.schema.json
CHANGED
|
@@ -39220,19 +39220,35 @@
|
|
|
39220
39220
|
"name": "by_ids",
|
|
39221
39221
|
"description": null,
|
|
39222
39222
|
"type": {
|
|
39223
|
-
"kind": "
|
|
39223
|
+
"kind": "LIST",
|
|
39224
39224
|
"name": null,
|
|
39225
39225
|
"ofType": {
|
|
39226
|
-
"kind": "
|
|
39226
|
+
"kind": "NON_NULL",
|
|
39227
39227
|
"name": null,
|
|
39228
39228
|
"ofType": {
|
|
39229
|
-
"kind": "
|
|
39230
|
-
"name":
|
|
39231
|
-
"ofType":
|
|
39232
|
-
|
|
39233
|
-
|
|
39234
|
-
|
|
39235
|
-
|
|
39229
|
+
"kind": "SCALAR",
|
|
39230
|
+
"name": "ID",
|
|
39231
|
+
"ofType": null
|
|
39232
|
+
}
|
|
39233
|
+
}
|
|
39234
|
+
},
|
|
39235
|
+
"defaultValue": null,
|
|
39236
|
+
"isDeprecated": false,
|
|
39237
|
+
"deprecationReason": null
|
|
39238
|
+
},
|
|
39239
|
+
{
|
|
39240
|
+
"name": "by_uuids",
|
|
39241
|
+
"description": null,
|
|
39242
|
+
"type": {
|
|
39243
|
+
"kind": "LIST",
|
|
39244
|
+
"name": null,
|
|
39245
|
+
"ofType": {
|
|
39246
|
+
"kind": "NON_NULL",
|
|
39247
|
+
"name": null,
|
|
39248
|
+
"ofType": {
|
|
39249
|
+
"kind": "SCALAR",
|
|
39250
|
+
"name": "ID",
|
|
39251
|
+
"ofType": null
|
|
39236
39252
|
}
|
|
39237
39253
|
}
|
|
39238
39254
|
},
|
package/index.d.ts
CHANGED
|
@@ -4148,7 +4148,8 @@ export type GetBrandRequestsResponse = {
|
|
|
4148
4148
|
};
|
|
4149
4149
|
|
|
4150
4150
|
export type GetBrandsBulkFilters = {
|
|
4151
|
-
by_ids
|
|
4151
|
+
by_ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4152
|
+
by_uuids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4152
4153
|
};
|
|
4153
4154
|
|
|
4154
4155
|
export type GetBrandsBulkParams = {
|
package/package.json
CHANGED