@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.
- package/graphql.schema.json +15 -7
- package/index.d.ts +2 -1
- package/package.json +1 -1
- package/schema.graphql +2 -1
package/graphql.schema.json
CHANGED
|
@@ -10543,13 +10543,21 @@
|
|
|
10543
10543
|
"name": "promptId",
|
|
10544
10544
|
"description": null,
|
|
10545
10545
|
"type": {
|
|
10546
|
-
"kind": "
|
|
10547
|
-
"name":
|
|
10548
|
-
"ofType":
|
|
10549
|
-
|
|
10550
|
-
|
|
10551
|
-
|
|
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
|
|
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
package/schema.graphql
CHANGED