@promoboxx/graphql-gateway-types 1.1178.0 → 1.1179.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.
@@ -12313,6 +12313,38 @@
12313
12313
  "isOneOf": false,
12314
12314
  "fields": null,
12315
12315
  "inputFields": [
12316
+ {
12317
+ "name": "brandId",
12318
+ "description": null,
12319
+ "type": {
12320
+ "kind": "NON_NULL",
12321
+ "name": null,
12322
+ "ofType": {
12323
+ "kind": "SCALAR",
12324
+ "name": "ID",
12325
+ "ofType": null
12326
+ }
12327
+ },
12328
+ "defaultValue": null,
12329
+ "isDeprecated": false,
12330
+ "deprecationReason": null
12331
+ },
12332
+ {
12333
+ "name": "name",
12334
+ "description": null,
12335
+ "type": {
12336
+ "kind": "NON_NULL",
12337
+ "name": null,
12338
+ "ofType": {
12339
+ "kind": "SCALAR",
12340
+ "name": "String",
12341
+ "ofType": null
12342
+ }
12343
+ },
12344
+ "defaultValue": null,
12345
+ "isDeprecated": false,
12346
+ "deprecationReason": null
12347
+ },
12316
12348
  {
12317
12349
  "name": "resources",
12318
12350
  "description": null,
package/index.d.ts CHANGED
@@ -1340,6 +1340,8 @@ export type CaSvcResourceGroup = {
1340
1340
  };
1341
1341
 
1342
1342
  export type CaSvcResourceGroupInput = {
1343
+ brandId: Scalars['ID']['input'];
1344
+ name: Scalars['String']['input'];
1343
1345
  resources: Array<CaSvcResourceInput>;
1344
1346
  };
1345
1347
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.1178.0",
3
+ "version": "1.1179.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -1299,6 +1299,8 @@ type CASvcResourceGroup {
1299
1299
  }
1300
1300
 
1301
1301
  input CASvcResourceGroupInput {
1302
+ brandId: ID!
1303
+ name: String!
1302
1304
  resources: [CASvcResourceInput!]!
1303
1305
  }
1304
1306