@promoboxx/graphql-gateway-types 1.996.0 → 1.998.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 +30 -14
- package/index.d.ts +4 -2
- package/package.json +1 -1
- package/schema.graphql +4 -2
package/graphql.schema.json
CHANGED
|
@@ -10590,18 +10590,38 @@
|
|
|
10590
10590
|
"isDeprecated": false,
|
|
10591
10591
|
"deprecationReason": null
|
|
10592
10592
|
},
|
|
10593
|
+
{
|
|
10594
|
+
"name": "modelVersion",
|
|
10595
|
+
"description": null,
|
|
10596
|
+
"args": [],
|
|
10597
|
+
"type": {
|
|
10598
|
+
"kind": "SCALAR",
|
|
10599
|
+
"name": "String",
|
|
10600
|
+
"ofType": null
|
|
10601
|
+
},
|
|
10602
|
+
"isDeprecated": false,
|
|
10603
|
+
"deprecationReason": null
|
|
10604
|
+
},
|
|
10605
|
+
{
|
|
10606
|
+
"name": "prompt",
|
|
10607
|
+
"description": null,
|
|
10608
|
+
"args": [],
|
|
10609
|
+
"type": {
|
|
10610
|
+
"kind": "OBJECT",
|
|
10611
|
+
"name": "CASvcPrompt",
|
|
10612
|
+
"ofType": null
|
|
10613
|
+
},
|
|
10614
|
+
"isDeprecated": false,
|
|
10615
|
+
"deprecationReason": null
|
|
10616
|
+
},
|
|
10593
10617
|
{
|
|
10594
10618
|
"name": "promptId",
|
|
10595
10619
|
"description": null,
|
|
10596
10620
|
"args": [],
|
|
10597
10621
|
"type": {
|
|
10598
|
-
"kind": "
|
|
10599
|
-
"name":
|
|
10600
|
-
"ofType":
|
|
10601
|
-
"kind": "SCALAR",
|
|
10602
|
-
"name": "ID",
|
|
10603
|
-
"ofType": null
|
|
10604
|
-
}
|
|
10622
|
+
"kind": "SCALAR",
|
|
10623
|
+
"name": "ID",
|
|
10624
|
+
"ofType": null
|
|
10605
10625
|
},
|
|
10606
10626
|
"isDeprecated": false,
|
|
10607
10627
|
"deprecationReason": null
|
|
@@ -10623,13 +10643,9 @@
|
|
|
10623
10643
|
"description": null,
|
|
10624
10644
|
"args": [],
|
|
10625
10645
|
"type": {
|
|
10626
|
-
"kind": "
|
|
10627
|
-
"name":
|
|
10628
|
-
"ofType":
|
|
10629
|
-
"kind": "SCALAR",
|
|
10630
|
-
"name": "ID",
|
|
10631
|
-
"ofType": null
|
|
10632
|
-
}
|
|
10646
|
+
"kind": "SCALAR",
|
|
10647
|
+
"name": "ID",
|
|
10648
|
+
"ofType": null
|
|
10633
10649
|
},
|
|
10634
10650
|
"isDeprecated": false,
|
|
10635
10651
|
"deprecationReason": null
|
package/index.d.ts
CHANGED
|
@@ -1168,9 +1168,11 @@ export type CaSvcAnalysisRun = {
|
|
|
1168
1168
|
createdAt: Scalars['String']['output'];
|
|
1169
1169
|
fragmentGroup?: Maybe<CaSvcPrompt>;
|
|
1170
1170
|
id: Scalars['ID']['output'];
|
|
1171
|
-
|
|
1171
|
+
modelVersion?: Maybe<Scalars['String']['output']>;
|
|
1172
|
+
prompt?: Maybe<CaSvcPrompt>;
|
|
1173
|
+
promptId?: Maybe<Scalars['ID']['output']>;
|
|
1172
1174
|
resourceGroup?: Maybe<CaSvcResourceGroup>;
|
|
1173
|
-
resourceGroupId
|
|
1175
|
+
resourceGroupId?: Maybe<Scalars['ID']['output']>;
|
|
1174
1176
|
};
|
|
1175
1177
|
|
|
1176
1178
|
export type CaSvcAnalysisRunGroupInput = {
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -1135,9 +1135,11 @@ type CASvcAnalysisRun {
|
|
|
1135
1135
|
createdAt: String!
|
|
1136
1136
|
fragmentGroup: CASvcPrompt
|
|
1137
1137
|
id: ID!
|
|
1138
|
-
|
|
1138
|
+
modelVersion: String
|
|
1139
|
+
prompt: CASvcPrompt
|
|
1140
|
+
promptId: ID
|
|
1139
1141
|
resourceGroup: CASvcResourceGroup
|
|
1140
|
-
resourceGroupId: ID
|
|
1142
|
+
resourceGroupId: ID
|
|
1141
1143
|
}
|
|
1142
1144
|
|
|
1143
1145
|
input CASvcAnalysisRunGroupInput {
|