@promoboxx/graphql-gateway-types 1.1064.0 → 1.1065.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.
@@ -12434,6 +12434,30 @@
12434
12434
  "isDeprecated": false,
12435
12435
  "deprecationReason": null
12436
12436
  },
12437
+ {
12438
+ "name": "llm_family",
12439
+ "description": null,
12440
+ "args": [],
12441
+ "type": {
12442
+ "kind": "SCALAR",
12443
+ "name": "String",
12444
+ "ofType": null
12445
+ },
12446
+ "isDeprecated": false,
12447
+ "deprecationReason": null
12448
+ },
12449
+ {
12450
+ "name": "llm_model",
12451
+ "description": null,
12452
+ "args": [],
12453
+ "type": {
12454
+ "kind": "SCALAR",
12455
+ "name": "String",
12456
+ "ofType": null
12457
+ },
12458
+ "isDeprecated": false,
12459
+ "deprecationReason": null
12460
+ },
12437
12461
  {
12438
12462
  "name": "resourceGroupMember",
12439
12463
  "description": null,
@@ -12519,6 +12543,30 @@
12519
12543
  "isDeprecated": false,
12520
12544
  "deprecationReason": null
12521
12545
  },
12546
+ {
12547
+ "name": "llm_family",
12548
+ "description": null,
12549
+ "type": {
12550
+ "kind": "SCALAR",
12551
+ "name": "String",
12552
+ "ofType": null
12553
+ },
12554
+ "defaultValue": null,
12555
+ "isDeprecated": false,
12556
+ "deprecationReason": null
12557
+ },
12558
+ {
12559
+ "name": "llm_model",
12560
+ "description": null,
12561
+ "type": {
12562
+ "kind": "SCALAR",
12563
+ "name": "String",
12564
+ "ofType": null
12565
+ },
12566
+ "defaultValue": null,
12567
+ "isDeprecated": false,
12568
+ "deprecationReason": null
12569
+ },
12522
12570
  {
12523
12571
  "name": "resourceGroupMemberId",
12524
12572
  "description": null,
package/index.d.ts CHANGED
@@ -1357,6 +1357,8 @@ export type CaSvcResult = {
1357
1357
  fragment?: Maybe<CaSvcFragment>;
1358
1358
  fragmentId?: Maybe<Scalars['ID']['output']>;
1359
1359
  id: Scalars['ID']['output'];
1360
+ llm_family?: Maybe<Scalars['String']['output']>;
1361
+ llm_model?: Maybe<Scalars['String']['output']>;
1360
1362
  resourceGroupMember?: Maybe<CaSvcResourceGroupMember>;
1361
1363
  resourceGroupMemberId?: Maybe<Scalars['ID']['output']>;
1362
1364
  };
@@ -1365,6 +1367,8 @@ export type CaSvcResultInput = {
1365
1367
  analysisRunId: Scalars['ID']['input'];
1366
1368
  data: Scalars['String']['input'];
1367
1369
  fragmentId: Scalars['ID']['input'];
1370
+ llm_family?: InputMaybe<Scalars['String']['input']>;
1371
+ llm_model?: InputMaybe<Scalars['String']['input']>;
1368
1372
  resourceGroupMemberId: Scalars['ID']['input'];
1369
1373
  };
1370
1374
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.1064.0",
3
+ "version": "1.1065.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -1312,6 +1312,8 @@ type CASvcResult {
1312
1312
  fragment: CASvcFragment
1313
1313
  fragmentId: ID
1314
1314
  id: ID!
1315
+ llm_family: String
1316
+ llm_model: String
1315
1317
  resourceGroupMember: CASvcResourceGroupMember
1316
1318
  resourceGroupMemberId: ID
1317
1319
  }
@@ -1320,6 +1322,8 @@ input CASvcResultInput {
1320
1322
  analysisRunId: ID!
1321
1323
  data: String!
1322
1324
  fragmentId: ID!
1325
+ llm_family: String
1326
+ llm_model: String
1323
1327
  resourceGroupMemberId: ID!
1324
1328
  }
1325
1329