@promoboxx/graphql-gateway-types 1.1063.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.
- package/graphql.schema.json +72 -0
- package/index.d.ts +6 -0
- package/package.json +1 -1
- package/schema.graphql +6 -0
package/graphql.schema.json
CHANGED
|
@@ -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,
|
|
@@ -15732,6 +15780,30 @@
|
|
|
15732
15780
|
"defaultValue": null,
|
|
15733
15781
|
"isDeprecated": false,
|
|
15734
15782
|
"deprecationReason": null
|
|
15783
|
+
},
|
|
15784
|
+
{
|
|
15785
|
+
"name": "resource_id",
|
|
15786
|
+
"description": null,
|
|
15787
|
+
"type": {
|
|
15788
|
+
"kind": "SCALAR",
|
|
15789
|
+
"name": "ID",
|
|
15790
|
+
"ofType": null
|
|
15791
|
+
},
|
|
15792
|
+
"defaultValue": null,
|
|
15793
|
+
"isDeprecated": false,
|
|
15794
|
+
"deprecationReason": null
|
|
15795
|
+
},
|
|
15796
|
+
{
|
|
15797
|
+
"name": "resource_type",
|
|
15798
|
+
"description": null,
|
|
15799
|
+
"type": {
|
|
15800
|
+
"kind": "SCALAR",
|
|
15801
|
+
"name": "String",
|
|
15802
|
+
"ofType": null
|
|
15803
|
+
},
|
|
15804
|
+
"defaultValue": null,
|
|
15805
|
+
"isDeprecated": false,
|
|
15806
|
+
"deprecationReason": null
|
|
15735
15807
|
}
|
|
15736
15808
|
],
|
|
15737
15809
|
"interfaces": 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
|
|
|
@@ -1670,6 +1674,8 @@ export type CampaignInvitationResourceType =
|
|
|
1670
1674
|
|
|
1671
1675
|
export type CampaignParams = {
|
|
1672
1676
|
fields?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1677
|
+
resource_id?: InputMaybe<Scalars['ID']['input']>;
|
|
1678
|
+
resource_type?: InputMaybe<Scalars['String']['input']>;
|
|
1673
1679
|
};
|
|
1674
1680
|
|
|
1675
1681
|
export type CampaignResourceType =
|
package/package.json
CHANGED
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
|
|
|
@@ -1578,6 +1582,8 @@ enum CampaignInvitationResourceType {
|
|
|
1578
1582
|
|
|
1579
1583
|
input CampaignParams {
|
|
1580
1584
|
fields: [String!]
|
|
1585
|
+
resource_id: ID
|
|
1586
|
+
resource_type: String
|
|
1581
1587
|
}
|
|
1582
1588
|
|
|
1583
1589
|
enum CampaignResourceType {
|