@promoboxx/graphql-gateway-types 1.935.0 → 1.936.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.
@@ -10543,13 +10543,21 @@
10543
10543
  "name": "promptId",
10544
10544
  "description": null,
10545
10545
  "type": {
10546
- "kind": "NON_NULL",
10547
- "name": null,
10548
- "ofType": {
10549
- "kind": "SCALAR",
10550
- "name": "ID",
10551
- "ofType": null
10552
- }
10546
+ "kind": "SCALAR",
10547
+ "name": "ID",
10548
+ "ofType": null
10549
+ },
10550
+ "defaultValue": null,
10551
+ "isDeprecated": false,
10552
+ "deprecationReason": null
10553
+ },
10554
+ {
10555
+ "name": "promptName",
10556
+ "description": null,
10557
+ "type": {
10558
+ "kind": "SCALAR",
10559
+ "name": "String",
10560
+ "ofType": null
10553
10561
  },
10554
10562
  "defaultValue": null,
10555
10563
  "isDeprecated": false,
package/index.d.ts CHANGED
@@ -1166,7 +1166,8 @@ export type CaSvcAnalysisRun = {
1166
1166
 
1167
1167
  export type CaSvcAnalysisRunGroupInput = {
1168
1168
  members?: InputMaybe<Array<CaSvcAnalysisRunGroupMemberInput>>;
1169
- promptId: Scalars['ID']['input'];
1169
+ promptId?: InputMaybe<Scalars['ID']['input']>;
1170
+ promptName?: InputMaybe<Scalars['String']['input']>;
1170
1171
  resourceGroupId?: InputMaybe<Scalars['ID']['input']>;
1171
1172
  };
1172
1173
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.935.0",
3
+ "version": "1.936.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -1133,7 +1133,8 @@ type CASvcAnalysisRun {
1133
1133
 
1134
1134
  input CASvcAnalysisRunGroupInput {
1135
1135
  members: [CASvcAnalysisRunGroupMemberInput!]
1136
- promptId: ID!
1136
+ promptId: ID
1137
+ promptName: String
1137
1138
  resourceGroupId: ID
1138
1139
  }
1139
1140