@promoboxx/graphql-gateway-types 1.923.0 → 1.925.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.
@@ -10419,19 +10419,15 @@
10419
10419
  "name": "members",
10420
10420
  "description": null,
10421
10421
  "type": {
10422
- "kind": "NON_NULL",
10422
+ "kind": "LIST",
10423
10423
  "name": null,
10424
10424
  "ofType": {
10425
- "kind": "LIST",
10425
+ "kind": "NON_NULL",
10426
10426
  "name": null,
10427
10427
  "ofType": {
10428
- "kind": "NON_NULL",
10429
- "name": null,
10430
- "ofType": {
10431
- "kind": "INPUT_OBJECT",
10432
- "name": "CASvcResourceGroupMemberInput",
10433
- "ofType": null
10434
- }
10428
+ "kind": "INPUT_OBJECT",
10429
+ "name": "CASvcResourceGroupMemberInput",
10430
+ "ofType": null
10435
10431
  }
10436
10432
  }
10437
10433
  },
@@ -10454,6 +10450,18 @@
10454
10450
  "defaultValue": null,
10455
10451
  "isDeprecated": false,
10456
10452
  "deprecationReason": null
10453
+ },
10454
+ {
10455
+ "name": "resourceGroupId",
10456
+ "description": null,
10457
+ "type": {
10458
+ "kind": "SCALAR",
10459
+ "name": "ID",
10460
+ "ofType": null
10461
+ },
10462
+ "defaultValue": null,
10463
+ "isDeprecated": false,
10464
+ "deprecationReason": null
10457
10465
  }
10458
10466
  ],
10459
10467
  "interfaces": null,
package/index.d.ts CHANGED
@@ -1154,8 +1154,9 @@ export type CaSvcAnalysisRun = {
1154
1154
  };
1155
1155
 
1156
1156
  export type CaSvcAnalysisRunGroupInput = {
1157
- members: Array<CaSvcResourceGroupMemberInput>;
1157
+ members?: InputMaybe<Array<CaSvcResourceGroupMemberInput>>;
1158
1158
  promptName: Scalars['String']['input'];
1159
+ resourceGroupId?: InputMaybe<Scalars['ID']['input']>;
1159
1160
  };
1160
1161
 
1161
1162
  export type CaSvcAnalysisRunInput = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.923.0",
3
+ "version": "1.925.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -1121,8 +1121,9 @@ type CASvcAnalysisRun {
1121
1121
  }
1122
1122
 
1123
1123
  input CASvcAnalysisRunGroupInput {
1124
- members: [CASvcResourceGroupMemberInput!]!
1124
+ members: [CASvcResourceGroupMemberInput!]
1125
1125
  promptName: String!
1126
+ resourceGroupId: ID
1126
1127
  }
1127
1128
 
1128
1129
  input CASvcAnalysisRunInput {