@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.
- package/graphql.schema.json +17 -9
- package/index.d.ts +2 -1
- package/package.json +1 -1
- package/schema.graphql +2 -1
package/graphql.schema.json
CHANGED
|
@@ -10419,19 +10419,15 @@
|
|
|
10419
10419
|
"name": "members",
|
|
10420
10420
|
"description": null,
|
|
10421
10421
|
"type": {
|
|
10422
|
-
"kind": "
|
|
10422
|
+
"kind": "LIST",
|
|
10423
10423
|
"name": null,
|
|
10424
10424
|
"ofType": {
|
|
10425
|
-
"kind": "
|
|
10425
|
+
"kind": "NON_NULL",
|
|
10426
10426
|
"name": null,
|
|
10427
10427
|
"ofType": {
|
|
10428
|
-
"kind": "
|
|
10429
|
-
"name":
|
|
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
|
|
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
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 {
|