@promoboxx/graphql-gateway-types 1.1080.0 → 1.1081.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.
@@ -39220,19 +39220,35 @@
39220
39220
  "name": "by_ids",
39221
39221
  "description": null,
39222
39222
  "type": {
39223
- "kind": "NON_NULL",
39223
+ "kind": "LIST",
39224
39224
  "name": null,
39225
39225
  "ofType": {
39226
- "kind": "LIST",
39226
+ "kind": "NON_NULL",
39227
39227
  "name": null,
39228
39228
  "ofType": {
39229
- "kind": "NON_NULL",
39230
- "name": null,
39231
- "ofType": {
39232
- "kind": "SCALAR",
39233
- "name": "ID",
39234
- "ofType": null
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: Array<Scalars['ID']['input']>;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.1080.0",
3
+ "version": "1.1081.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -3968,7 +3968,8 @@ type GetBrandRequestsResponse {
3968
3968
  }
3969
3969
 
3970
3970
  input GetBrandsBulkFilters {
3971
- by_ids: [ID!]!
3971
+ by_ids: [ID!]
3972
+ by_uuids: [ID!]
3972
3973
  }
3973
3974
 
3974
3975
  input GetBrandsBulkParams {