graphlit-client 1.0.20250104001 → 1.0.20250108001

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/dist/client.d.ts CHANGED
@@ -99,6 +99,7 @@ declare class Graphlit {
99
99
  deleteAllSpecifications(): Promise<Types.DeleteAllSpecificationsMutation>;
100
100
  getSpecification(id: string): Promise<Types.GetSpecificationQuery>;
101
101
  querySpecifications(filter?: Types.SpecificationFilter): Promise<Types.QuerySpecificationsQuery>;
102
+ queryModels(filter?: Types.ModelFilter): Promise<Types.QueryModelsQuery>;
102
103
  createWorkflow(workflow: Types.WorkflowInput): Promise<Types.CreateWorkflowMutation>;
103
104
  updateWorkflow(workflow: Types.WorkflowUpdateInput): Promise<Types.UpdateWorkflowMutation>;
104
105
  deleteWorkflow(id: string): Promise<Types.DeleteWorkflowMutation>;
@@ -106,6 +107,13 @@ declare class Graphlit {
106
107
  deleteAllWorkflows(): Promise<Types.DeleteAllWorkflowsMutation>;
107
108
  getWorkflow(id: string): Promise<Types.GetWorkflowQuery>;
108
109
  queryWorkflows(filter?: Types.WorkflowFilter): Promise<Types.QueryWorkflowsQuery>;
110
+ createUser(user: Types.UserInput): Promise<Types.CreateUserMutation>;
111
+ updateUser(user: Types.UserUpdateInput): Promise<Types.UpdateUserMutation>;
112
+ deleteUser(id: string): Promise<Types.DeleteUserMutation>;
113
+ getUser(): Promise<Types.GetUserQuery>;
114
+ queryUsers(filter?: Types.UserFilter): Promise<Types.QueryUsersQuery>;
115
+ enableUser(id: string): Promise<Types.EnableUserMutation>;
116
+ disableUser(id: string): Promise<Types.DeleteUserMutation>;
109
117
  createCategory(category: Types.CategoryInput): Promise<Types.CreateCategoryMutation>;
110
118
  updateCategory(category: Types.CategoryUpdateInput): Promise<Types.UpdateCategoryMutation>;
111
119
  deleteCategory(id: string): Promise<Types.DeleteCategoryMutation>;
package/dist/client.js CHANGED
@@ -553,6 +553,11 @@ class Graphlit {
553
553
  return this.queryAndCheckError(Documents.QuerySpecifications, { filter: filter });
554
554
  });
555
555
  }
556
+ queryModels(filter) {
557
+ return __awaiter(this, void 0, void 0, function* () {
558
+ return this.queryAndCheckError(Documents.QueryModels, { filter: filter });
559
+ });
560
+ }
556
561
  createWorkflow(workflow) {
557
562
  return __awaiter(this, void 0, void 0, function* () {
558
563
  return this.mutateAndCheckError(Documents.CreateWorkflow, { workflow: workflow });
@@ -588,6 +593,41 @@ class Graphlit {
588
593
  return this.queryAndCheckError(Documents.QueryWorkflows, { filter: filter });
589
594
  });
590
595
  }
596
+ createUser(user) {
597
+ return __awaiter(this, void 0, void 0, function* () {
598
+ return this.mutateAndCheckError(Documents.CreateUser, { user: user });
599
+ });
600
+ }
601
+ updateUser(user) {
602
+ return __awaiter(this, void 0, void 0, function* () {
603
+ return this.mutateAndCheckError(Documents.UpdateUser, { user: user });
604
+ });
605
+ }
606
+ deleteUser(id) {
607
+ return __awaiter(this, void 0, void 0, function* () {
608
+ return this.mutateAndCheckError(Documents.DeleteUser, { id: id });
609
+ });
610
+ }
611
+ getUser() {
612
+ return __awaiter(this, void 0, void 0, function* () {
613
+ return this.queryAndCheckError(Documents.GetUser, {});
614
+ });
615
+ }
616
+ queryUsers(filter) {
617
+ return __awaiter(this, void 0, void 0, function* () {
618
+ return this.queryAndCheckError(Documents.QueryUsers, { filter: filter });
619
+ });
620
+ }
621
+ enableUser(id) {
622
+ return __awaiter(this, void 0, void 0, function* () {
623
+ return this.mutateAndCheckError(Documents.EnableUser, { id: id });
624
+ });
625
+ }
626
+ disableUser(id) {
627
+ return __awaiter(this, void 0, void 0, function* () {
628
+ return this.mutateAndCheckError(Documents.DisableUser, { id: id });
629
+ });
630
+ }
591
631
  createCategory(category) {
592
632
  return __awaiter(this, void 0, void 0, function* () {
593
633
  return this.mutateAndCheckError(Documents.CreateCategory, { category: category });
@@ -262,6 +262,14 @@ export declare const PromptSpecifications: import("graphql").DocumentNode;
262
262
  export declare const QueryModels: import("graphql").DocumentNode;
263
263
  export declare const QuerySpecifications: import("graphql").DocumentNode;
264
264
  export declare const UpdateSpecification: import("graphql").DocumentNode;
265
+ export declare const CountUsers: import("graphql").DocumentNode;
266
+ export declare const CreateUser: import("graphql").DocumentNode;
267
+ export declare const DeleteUser: import("graphql").DocumentNode;
268
+ export declare const DisableUser: import("graphql").DocumentNode;
269
+ export declare const EnableUser: import("graphql").DocumentNode;
270
+ export declare const GetUser: import("graphql").DocumentNode;
271
+ export declare const QueryUsers: import("graphql").DocumentNode;
272
+ export declare const UpdateUser: import("graphql").DocumentNode;
265
273
  export declare const CountWorkflows: import("graphql").DocumentNode;
266
274
  export declare const CreateWorkflow: import("graphql").DocumentNode;
267
275
  export declare const DeleteAllWorkflows: import("graphql").DocumentNode;
@@ -8,7 +8,7 @@ exports.CountLabels = exports.UpdateFeed = exports.QuerySharePointLibraries = ex
8
8
  exports.DeleteAllMedicalGuidelines = exports.CreateMedicalGuideline = exports.CountMedicalGuidelines = exports.UpdateMedicalDrugClass = exports.QueryMedicalDrugClasses = exports.GetMedicalDrugClass = exports.DeleteMedicalDrugClasses = exports.DeleteMedicalDrugClass = exports.DeleteAllMedicalDrugClasses = exports.CreateMedicalDrugClass = exports.CountMedicalDrugClasses = exports.UpdateMedicalDrug = exports.QueryMedicalDrugs = exports.GetMedicalDrug = exports.DeleteMedicalDrugs = exports.DeleteMedicalDrug = exports.DeleteAllMedicalDrugs = exports.CreateMedicalDrug = exports.CountMedicalDrugs = exports.UpdateMedicalDevice = exports.QueryMedicalDevices = exports.GetMedicalDevice = exports.DeleteMedicalDevices = exports.DeleteMedicalDevice = exports.DeleteAllMedicalDevices = exports.CreateMedicalDevice = exports.CountMedicalDevices = exports.UpdateMedicalContraindication = exports.QueryMedicalContraindications = exports.GetMedicalContraindication = exports.DeleteMedicalContraindications = exports.DeleteMedicalContraindication = exports.DeleteAllMedicalContraindications = exports.CreateMedicalContraindication = exports.CountMedicalContraindications = exports.UpdateMedicalCondition = exports.QueryMedicalConditions = exports.GetMedicalCondition = exports.DeleteMedicalConditions = exports.DeleteMedicalCondition = exports.DeleteAllMedicalConditions = exports.CreateMedicalCondition = exports.CountMedicalConditions = exports.UpdateLabel = exports.QueryLabels = exports.GetLabel = exports.DeleteLabels = exports.DeleteLabel = exports.DeleteAllLabels = exports.CreateLabel = void 0;
9
9
  exports.CreateOrganization = exports.CountOrganizations = exports.UpdateObservation = exports.DeleteObservation = exports.CreateObservation = exports.UpdateMedicalTherapy = exports.QueryMedicalTherapies = exports.GetMedicalTherapy = exports.DeleteMedicalTherapy = exports.DeleteMedicalTherapies = exports.DeleteAllMedicalTherapies = exports.CreateMedicalTherapy = exports.CountMedicalTherapies = exports.UpdateMedicalTest = exports.QueryMedicalTests = exports.GetMedicalTest = exports.DeleteMedicalTests = exports.DeleteMedicalTest = exports.DeleteAllMedicalTests = exports.CreateMedicalTest = exports.CountMedicalTests = exports.UpdateMedicalStudy = exports.QueryMedicalStudies = exports.GetMedicalStudy = exports.DeleteMedicalStudy = exports.DeleteMedicalStudies = exports.DeleteAllMedicalStudies = exports.CreateMedicalStudy = exports.CountMedicalStudies = exports.UpdateMedicalProcedure = exports.QueryMedicalProcedures = exports.GetMedicalProcedure = exports.DeleteMedicalProcedures = exports.DeleteMedicalProcedure = exports.DeleteAllMedicalProcedures = exports.CreateMedicalProcedure = exports.CountMedicalProcedures = exports.UpdateMedicalIndication = exports.QueryMedicalIndications = exports.GetMedicalIndication = exports.DeleteMedicalIndications = exports.DeleteMedicalIndication = exports.DeleteAllMedicalIndications = exports.CreateMedicalIndication = exports.CountMedicalIndications = exports.UpdateMedicalGuideline = exports.QueryMedicalGuidelines = exports.GetMedicalGuideline = exports.DeleteMedicalGuidelines = exports.DeleteMedicalGuideline = void 0;
10
10
  exports.DeleteSoftware = exports.DeleteAllSoftwares = exports.CreateSoftware = exports.CountSoftwares = exports.SearchWeb = exports.MapWeb = exports.UpdateRepo = exports.QueryRepos = exports.GetRepo = exports.DeleteRepos = exports.DeleteRepo = exports.DeleteAllRepos = exports.CreateRepo = exports.CountRepos = exports.UpdateProject = exports.QueryUsage = exports.QueryCredits = exports.LookupUsage = exports.LookupCredits = exports.GetProject = exports.UpdateProduct = exports.QueryProducts = exports.GetProduct = exports.DeleteProducts = exports.DeleteProduct = exports.DeleteAllProducts = exports.CreateProduct = exports.CountProducts = exports.UpdatePlace = exports.QueryPlaces = exports.GetPlace = exports.DeletePlaces = exports.DeletePlace = exports.DeleteAllPlaces = exports.CreatePlace = exports.CountPlaces = exports.UpdatePerson = exports.QueryPersons = exports.GetPerson = exports.DeletePersons = exports.DeletePerson = exports.DeleteAllPersons = exports.CreatePerson = exports.CountPersons = exports.UpdateOrganization = exports.QueryOrganizations = exports.GetOrganization = exports.DeleteOrganizations = exports.DeleteOrganization = exports.DeleteAllOrganizations = void 0;
11
- exports.UpdateWorkflow = exports.QueryWorkflows = exports.GetWorkflow = exports.DeleteWorkflows = exports.DeleteWorkflow = exports.DeleteAllWorkflows = exports.CreateWorkflow = exports.CountWorkflows = exports.UpdateSpecification = exports.QuerySpecifications = exports.QueryModels = exports.PromptSpecifications = exports.GetSpecification = exports.DeleteSpecifications = exports.DeleteSpecification = exports.DeleteAllSpecifications = exports.CreateSpecification = exports.CountSpecifications = exports.UpdateSoftware = exports.QuerySoftwares = exports.GetSoftware = exports.DeleteSoftwares = void 0;
11
+ exports.UpdateWorkflow = exports.QueryWorkflows = exports.GetWorkflow = exports.DeleteWorkflows = exports.DeleteWorkflow = exports.DeleteAllWorkflows = exports.CreateWorkflow = exports.CountWorkflows = exports.UpdateUser = exports.QueryUsers = exports.GetUser = exports.EnableUser = exports.DisableUser = exports.DeleteUser = exports.CreateUser = exports.CountUsers = exports.UpdateSpecification = exports.QuerySpecifications = exports.QueryModels = exports.PromptSpecifications = exports.GetSpecification = exports.DeleteSpecifications = exports.DeleteSpecification = exports.DeleteAllSpecifications = exports.CreateSpecification = exports.CountSpecifications = exports.UpdateSoftware = exports.QuerySoftwares = exports.GetSoftware = exports.DeleteSoftwares = void 0;
12
12
  const graphql_tag_1 = __importDefault(require("graphql-tag"));
13
13
  exports.CountAlerts = (0, graphql_tag_1.default) `
14
14
  query CountAlerts($filter: AlertFilter) {
@@ -7978,13 +7978,15 @@ exports.PromptSpecifications = (0, graphql_tag_1.default) `
7978
7978
  }
7979
7979
  `;
7980
7980
  exports.QueryModels = (0, graphql_tag_1.default) `
7981
- query QueryModels {
7982
- models {
7981
+ query QueryModels($filter: ModelFilter) {
7982
+ models(filter: $filter) {
7983
7983
  results {
7984
+ uri
7984
7985
  name
7985
7986
  type
7986
7987
  serviceType
7987
7988
  model
7989
+ modelType
7988
7990
  description
7989
7991
  availableOn
7990
7992
  features {
@@ -8193,6 +8195,145 @@ exports.UpdateSpecification = (0, graphql_tag_1.default) `
8193
8195
  }
8194
8196
  }
8195
8197
  `;
8198
+ exports.CountUsers = (0, graphql_tag_1.default) `
8199
+ query CountUsers($filter: UserFilter) {
8200
+ countUsers(filter: $filter) {
8201
+ count
8202
+ }
8203
+ }
8204
+ `;
8205
+ exports.CreateUser = (0, graphql_tag_1.default) `
8206
+ mutation CreateUser($user: UserInput!) {
8207
+ createUser(user: $user) {
8208
+ id
8209
+ name
8210
+ state
8211
+ type
8212
+ identifier
8213
+ }
8214
+ }
8215
+ `;
8216
+ exports.DeleteUser = (0, graphql_tag_1.default) `
8217
+ mutation DeleteUser($id: ID!) {
8218
+ deleteUser(id: $id) {
8219
+ id
8220
+ state
8221
+ }
8222
+ }
8223
+ `;
8224
+ exports.DisableUser = (0, graphql_tag_1.default) `
8225
+ mutation DisableUser($id: ID!) {
8226
+ disableUser(id: $id) {
8227
+ id
8228
+ state
8229
+ }
8230
+ }
8231
+ `;
8232
+ exports.EnableUser = (0, graphql_tag_1.default) `
8233
+ mutation EnableUser($id: ID!) {
8234
+ enableUser(id: $id) {
8235
+ id
8236
+ state
8237
+ }
8238
+ }
8239
+ `;
8240
+ exports.GetUser = (0, graphql_tag_1.default) `
8241
+ query GetUser {
8242
+ user {
8243
+ id
8244
+ name
8245
+ creationDate
8246
+ relevance
8247
+ owner {
8248
+ id
8249
+ }
8250
+ state
8251
+ type
8252
+ identifier
8253
+ connectors {
8254
+ id
8255
+ name
8256
+ state
8257
+ type
8258
+ authentication {
8259
+ type
8260
+ microsoft {
8261
+ tenantId
8262
+ clientId
8263
+ clientSecret
8264
+ }
8265
+ google {
8266
+ clientId
8267
+ clientSecret
8268
+ }
8269
+ }
8270
+ integration {
8271
+ type
8272
+ uri
8273
+ slack {
8274
+ token
8275
+ channel
8276
+ }
8277
+ }
8278
+ }
8279
+ }
8280
+ }
8281
+ `;
8282
+ exports.QueryUsers = (0, graphql_tag_1.default) `
8283
+ query QueryUsers($filter: UserFilter) {
8284
+ users(filter: $filter) {
8285
+ results {
8286
+ id
8287
+ name
8288
+ creationDate
8289
+ relevance
8290
+ owner {
8291
+ id
8292
+ }
8293
+ state
8294
+ type
8295
+ identifier
8296
+ connectors {
8297
+ id
8298
+ name
8299
+ state
8300
+ type
8301
+ authentication {
8302
+ type
8303
+ microsoft {
8304
+ tenantId
8305
+ clientId
8306
+ clientSecret
8307
+ }
8308
+ google {
8309
+ clientId
8310
+ clientSecret
8311
+ }
8312
+ }
8313
+ integration {
8314
+ type
8315
+ uri
8316
+ slack {
8317
+ token
8318
+ channel
8319
+ }
8320
+ }
8321
+ }
8322
+ }
8323
+ }
8324
+ }
8325
+ `;
8326
+ exports.UpdateUser = (0, graphql_tag_1.default) `
8327
+ mutation UpdateUser($user: UserUpdateInput!) {
8328
+ updateUser(user: $user) {
8329
+ id
8330
+ name
8331
+ state
8332
+ type
8333
+ identifier
8334
+ }
8335
+ }
8336
+ `;
8196
8337
  exports.CountWorkflows = (0, graphql_tag_1.default) `
8197
8338
  query CountWorkflows($filter: WorkflowFilter) {
8198
8339
  countWorkflows(filter: $filter) {
@@ -8326,6 +8467,9 @@ exports.CreateWorkflow = (0, graphql_tag_1.default) `
8326
8467
  fhir {
8327
8468
  endpoint
8328
8469
  }
8470
+ diffbot {
8471
+ key
8472
+ }
8329
8473
  }
8330
8474
  }
8331
8475
  }
@@ -8507,6 +8651,9 @@ exports.GetWorkflow = (0, graphql_tag_1.default) `
8507
8651
  fhir {
8508
8652
  endpoint
8509
8653
  }
8654
+ diffbot {
8655
+ key
8656
+ }
8510
8657
  }
8511
8658
  }
8512
8659
  }
@@ -8661,6 +8808,9 @@ exports.QueryWorkflows = (0, graphql_tag_1.default) `
8661
8808
  fhir {
8662
8809
  endpoint
8663
8810
  }
8811
+ diffbot {
8812
+ key
8813
+ }
8664
8814
  }
8665
8815
  }
8666
8816
  }
@@ -8810,6 +8960,9 @@ exports.UpdateWorkflow = (0, graphql_tag_1.default) `
8810
8960
  fhir {
8811
8961
  endpoint
8812
8962
  }
8963
+ diffbot {
8964
+ key
8965
+ }
8813
8966
  }
8814
8967
  }
8815
8968
  }
@@ -528,6 +528,36 @@ export type AudioMetadataInput = {
528
528
  /** The audio title. */
529
529
  title?: InputMaybe<Scalars['String']['input']>;
530
530
  };
531
+ /** Represents an authentication connector. */
532
+ export type AuthenticationConnector = {
533
+ __typename?: 'AuthenticationConnector';
534
+ /** Google authentication properties. */
535
+ google?: Maybe<GoogleAuthenticationProperties>;
536
+ /** Microsoft authentication properties. */
537
+ microsoft?: Maybe<MicrosoftAuthenticationProperties>;
538
+ /** Authentication service type. */
539
+ type: AuthenticationServiceTypes;
540
+ };
541
+ /** Represents an authentication connector. */
542
+ export type AuthenticationConnectorInput = {
543
+ /** Google authentication properties. */
544
+ google?: InputMaybe<GoogleAuthenticationPropertiesInput>;
545
+ /** Microsoft authentication properties. */
546
+ microsoft?: InputMaybe<MicrosoftAuthenticationPropertiesInput>;
547
+ /** Authentication service type. */
548
+ type: AuthenticationServiceTypes;
549
+ };
550
+ /** Authentication service type */
551
+ export declare enum AuthenticationServiceTypes {
552
+ /** Auth0 authentication service */
553
+ Auth0 = "AUTH0",
554
+ /** Clerk authentication service */
555
+ Clerk = "CLERK",
556
+ /** Google authentication service */
557
+ Google = "GOOGLE",
558
+ /** Microsoft Graph authentication service */
559
+ MicrosoftGraph = "MICROSOFT_GRAPH"
560
+ }
531
561
  /** Represents Azure AI model properties. */
532
562
  export type AzureAiModelProperties = {
533
563
  __typename?: 'AzureAIModelProperties';
@@ -1059,8 +1089,8 @@ export declare enum CerebrasModels {
1059
1089
  Custom = "CUSTOM",
1060
1090
  /** LLaMA 3.1 8b */
1061
1091
  Llama_3_1_8B = "LLAMA_3_1_8B",
1062
- /** LLaMA 3.1 70b */
1063
- Llama_3_1_70B = "LLAMA_3_1_70B"
1092
+ /** LLaMA 3.3 70b */
1093
+ Llama_3_3_70B = "LLAMA_3_3_70B"
1064
1094
  }
1065
1095
  /** Represents Cohere model properties. */
1066
1096
  export type CohereModelProperties = {
@@ -1177,6 +1207,8 @@ export type CollectionFilter = {
1177
1207
  creationDateRange?: InputMaybe<DateRangeFilter>;
1178
1208
  /** The sort direction for query results. */
1179
1209
  direction?: InputMaybe<OrderDirectionTypes>;
1210
+ /** Whether to disable inheritance from project to tenant, upon collection retrieval. Defaults to False. */
1211
+ disableInheritance?: InputMaybe<Scalars['Boolean']['input']>;
1180
1212
  /** Filter collection(s) by their unique ID. */
1181
1213
  id?: InputMaybe<Scalars['ID']['input']>;
1182
1214
  /** Limit the number of collection(s) to be returned. */
@@ -1229,6 +1261,84 @@ export type CollectionUpdateInput = {
1229
1261
  /** The collection type. */
1230
1262
  type?: InputMaybe<CollectionTypes>;
1231
1263
  };
1264
+ /** Represents a connector. */
1265
+ export type Connector = {
1266
+ __typename?: 'Connector';
1267
+ authentication?: Maybe<AuthenticationConnector>;
1268
+ /** The creation date of the connector. */
1269
+ creationDate: Scalars['DateTime']['output'];
1270
+ /** The ID of the connector. */
1271
+ id: Scalars['ID']['output'];
1272
+ integration?: Maybe<IntegrationConnector>;
1273
+ /** The modified date of the connector. */
1274
+ modifiedDate?: Maybe<Scalars['DateTime']['output']>;
1275
+ /** The name of the connector. */
1276
+ name: Scalars['String']['output'];
1277
+ /** The owner of the connector. */
1278
+ owner: Owner;
1279
+ /** The relevance score of the connector. */
1280
+ relevance?: Maybe<Scalars['Float']['output']>;
1281
+ /** The state of the connector (i.e. created, finished). */
1282
+ state: EntityState;
1283
+ /** The connector type. */
1284
+ type?: Maybe<ConnectorTypes>;
1285
+ };
1286
+ /** Represents a filter for connectors. */
1287
+ export type ConnectorFilter = {
1288
+ /** Filter by creation date recent timespan. For example, a timespan of one day will return connector(s) created in the last 24 hours. */
1289
+ createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
1290
+ /** Filter connector(s) by their creation date range. */
1291
+ creationDateRange?: InputMaybe<DateRangeFilter>;
1292
+ /** The sort direction for query results. */
1293
+ direction?: InputMaybe<OrderDirectionTypes>;
1294
+ /** Filter connector(s) by their unique ID. */
1295
+ id?: InputMaybe<Scalars['ID']['input']>;
1296
+ /** Limit the number of connector(s) to be returned. */
1297
+ limit?: InputMaybe<Scalars['Int']['input']>;
1298
+ /** Filter connector(s) by their name. */
1299
+ name?: InputMaybe<Scalars['String']['input']>;
1300
+ /** Skip the specified number of connector(s) from the beginning of the result set. Only supported on keyword search. */
1301
+ offset?: InputMaybe<Scalars['Int']['input']>;
1302
+ /** The sort order for query results. */
1303
+ orderBy?: InputMaybe<OrderByTypes>;
1304
+ /** Filter connector(s) by searching for specific text. */
1305
+ search?: InputMaybe<Scalars['String']['input']>;
1306
+ /** Filter connector(s) by their states. */
1307
+ states?: InputMaybe<Array<EntityState>>;
1308
+ /** Filter by connector types. */
1309
+ types?: InputMaybe<Array<ConnectorTypes>>;
1310
+ };
1311
+ /** Represents a connector. */
1312
+ export type ConnectorInput = {
1313
+ authentication?: InputMaybe<AuthenticationConnectorInput>;
1314
+ integration?: InputMaybe<IntegrationConnectorInput>;
1315
+ /** The name of the connector. */
1316
+ name: Scalars['String']['input'];
1317
+ /** The connector type. */
1318
+ type: ConnectorTypes;
1319
+ };
1320
+ /** Represents connector query results. */
1321
+ export type ConnectorResults = {
1322
+ __typename?: 'ConnectorResults';
1323
+ /** The list of connector query results. */
1324
+ results?: Maybe<Array<Maybe<Connector>>>;
1325
+ };
1326
+ /** Connector type */
1327
+ export declare enum ConnectorTypes {
1328
+ /** Authentication connector */
1329
+ Authentication = "AUTHENTICATION",
1330
+ /** Integration connector */
1331
+ Integration = "INTEGRATION"
1332
+ }
1333
+ /** Represents a connector. */
1334
+ export type ConnectorUpdateInput = {
1335
+ authentication?: InputMaybe<AuthenticationConnectorInput>;
1336
+ /** The ID of the connector to update. */
1337
+ id: Scalars['ID']['input'];
1338
+ integration?: InputMaybe<IntegrationConnectorInput>;
1339
+ /** The name of the connector. */
1340
+ name?: InputMaybe<Scalars['String']['input']>;
1341
+ };
1232
1342
  /** Represents content. */
1233
1343
  export type Content = {
1234
1344
  __typename?: 'Content';
@@ -1565,6 +1675,8 @@ export type ContentFilter = {
1565
1675
  creationDateRange?: InputMaybe<DateRangeFilter>;
1566
1676
  /** The sort direction for query results. */
1567
1677
  direction?: InputMaybe<OrderDirectionTypes>;
1678
+ /** Whether to disable inheritance from project to tenant, upon content retrieval. Defaults to False. */
1679
+ disableInheritance?: InputMaybe<Scalars['Boolean']['input']>;
1568
1680
  /** Filter by feeds. */
1569
1681
  feeds?: InputMaybe<Array<EntityReferenceFilter>>;
1570
1682
  /** Filter by file extensions. */
@@ -2274,6 +2386,17 @@ export declare enum DeviceTypes {
2274
2386
  /** Unknown */
2275
2387
  Unknown = "UNKNOWN"
2276
2388
  }
2389
+ /** Represents an Diffbot entity enrichment connector. */
2390
+ export type DiffbotEnrichmentProperties = {
2391
+ __typename?: 'DiffbotEnrichmentProperties';
2392
+ /** The Diffbot API key. */
2393
+ key?: Maybe<Scalars['URL']['output']>;
2394
+ };
2395
+ /** Represents an Diffbot entity enrichment connector. */
2396
+ export type DiffbotEnrichmentPropertiesInput = {
2397
+ /** The Diffbot API key. */
2398
+ key?: InputMaybe<Scalars['String']['input']>;
2399
+ };
2277
2400
  /** Represents Discord feed properties. */
2278
2401
  export type DiscordFeedProperties = {
2279
2402
  __typename?: 'DiscordFeedProperties';
@@ -2704,6 +2827,8 @@ export type EnrichmentWorkflowStageInput = {
2704
2827
  /** Represents an entity enrichment connector. */
2705
2828
  export type EntityEnrichmentConnector = {
2706
2829
  __typename?: 'EntityEnrichmentConnector';
2830
+ /** The specific properties for Diffbot entity enrichment. */
2831
+ diffbot?: Maybe<DiffbotEnrichmentProperties>;
2707
2832
  /** The observable entity types to be enriched. */
2708
2833
  enrichedTypes?: Maybe<Array<Maybe<ObservableTypes>>>;
2709
2834
  /** The specific properties for FHIR medical entity enrichment. */
@@ -2713,6 +2838,8 @@ export type EntityEnrichmentConnector = {
2713
2838
  };
2714
2839
  /** Represents an entity enrichment connector. */
2715
2840
  export type EntityEnrichmentConnectorInput = {
2841
+ /** The specific properties for Diffbot entity enrichment. */
2842
+ diffbot?: InputMaybe<DiffbotEnrichmentPropertiesInput>;
2716
2843
  /** The observable entity types to be enriched. */
2717
2844
  enrichedTypes?: InputMaybe<Array<InputMaybe<ObservableTypes>>>;
2718
2845
  /** The specific properties for FHIR medical entity enrichment. */
@@ -2933,6 +3060,8 @@ export declare enum EntityTypes {
2933
3060
  Software = "SOFTWARE",
2934
3061
  /** Model specification */
2935
3062
  Specification = "SPECIFICATION",
3063
+ /** User */
3064
+ User = "USER",
2936
3065
  /** Workflow */
2937
3066
  Workflow = "WORKFLOW"
2938
3067
  }
@@ -3721,6 +3850,21 @@ export type GitHubIssuesFeedPropertiesUpdateInput = {
3721
3850
  /** GitHub Enterprise URI, optional. */
3722
3851
  uri?: InputMaybe<Scalars['URL']['input']>;
3723
3852
  };
3853
+ /** Represents Google authentication properties. */
3854
+ export type GoogleAuthenticationProperties = {
3855
+ __typename?: 'GoogleAuthenticationProperties';
3856
+ /** Google client ID. */
3857
+ clientId: Scalars['String']['output'];
3858
+ /** Google client secret. */
3859
+ clientSecret: Scalars['String']['output'];
3860
+ };
3861
+ /** Represents Google authentication properties. */
3862
+ export type GoogleAuthenticationPropertiesInput = {
3863
+ /** Google client ID. */
3864
+ clientId: Scalars['String']['input'];
3865
+ /** Google client secret. */
3866
+ clientSecret: Scalars['String']['input'];
3867
+ };
3724
3868
  /** Represents Google Drive properties. */
3725
3869
  export type GoogleDriveFeedProperties = {
3726
3870
  __typename?: 'GoogleDriveFeedProperties';
@@ -4039,29 +4183,12 @@ export declare enum GroqModels {
4039
4183
  Custom = "CUSTOM",
4040
4184
  /** LLaMA 3.1 8b */
4041
4185
  Llama_3_1_8B = "LLAMA_3_1_8B",
4042
- /**
4043
- * LLaMA 3.1 70b
4044
- * @deprecated Use Llama 3.3 70b instead.
4045
- */
4046
- Llama_3_1_70B = "LLAMA_3_1_70B",
4047
- /** LLaMA 3.1 405b */
4048
- Llama_3_1_405B = "LLAMA_3_1_405B",
4049
4186
  /** LLaMA 3.2 1b Preview */
4050
4187
  Llama_3_2_1BPreview = "LLAMA_3_2_1B_PREVIEW",
4051
4188
  /** LLaMA 3.2 3b Preview */
4052
4189
  Llama_3_2_3BPreview = "LLAMA_3_2_3B_PREVIEW",
4053
- /**
4054
- * LLaMA 3.2 11b Text Preview
4055
- * @deprecated Use Llama 3.2 11b Vision Preview instead.
4056
- */
4057
- Llama_3_2_11BTextPreview = "LLAMA_3_2_11B_TEXT_PREVIEW",
4058
4190
  /** LLaMA 3.2 11b Vision Preview */
4059
4191
  Llama_3_2_11BVisionPreview = "LLAMA_3_2_11B_VISION_PREVIEW",
4060
- /**
4061
- * LLaMA 3.2 90b Text Preview
4062
- * @deprecated Use Llama 3.2 90b Vision Preview instead.
4063
- */
4064
- Llama_3_2_90BTextPreview = "LLAMA_3_2_90B_TEXT_PREVIEW",
4065
4192
  /** LLaMA 3.2 90b Vision Preview */
4066
4193
  Llama_3_2_90BVisionPreview = "LLAMA_3_2_90B_VISION_PREVIEW",
4067
4194
  /** LLaMA 3.3 70b */
@@ -4070,11 +4197,6 @@ export declare enum GroqModels {
4070
4197
  Llama_3_8B = "LLAMA_3_8B",
4071
4198
  /** LLaMA 3 70b */
4072
4199
  Llama_3_70B = "LLAMA_3_70B",
4073
- /**
4074
- * LLaVA 1.5 7B Preview
4075
- * @deprecated Use Llama 3.2 11b Vision Preview instead.
4076
- */
4077
- Llava_1_5_7BPreview = "LLAVA_1_5_7B_PREVIEW",
4078
4200
  /** Mixtral 8x7b Instruct */
4079
4201
  Mixtral_8X7BInstruct = "MIXTRAL_8X7B_INSTRUCT"
4080
4202
  }
@@ -6570,6 +6692,25 @@ export type MetadataUpdateInput = {
6570
6692
  /** The metadata value. */
6571
6693
  value?: InputMaybe<Scalars['String']['input']>;
6572
6694
  };
6695
+ /** Represents Microsoft authentication properties. */
6696
+ export type MicrosoftAuthenticationProperties = {
6697
+ __typename?: 'MicrosoftAuthenticationProperties';
6698
+ /** Microsoft Entra ID client ID. */
6699
+ clientId: Scalars['String']['output'];
6700
+ /** Microsoft Entra ID client secret. */
6701
+ clientSecret: Scalars['String']['output'];
6702
+ /** Microsoft Entra ID tenant ID. */
6703
+ tenantId: Scalars['ID']['output'];
6704
+ };
6705
+ /** Represents Microsoft authentication properties. */
6706
+ export type MicrosoftAuthenticationPropertiesInput = {
6707
+ /** Microsoft Entra ID client ID. */
6708
+ clientId: Scalars['String']['input'];
6709
+ /** Microsoft Entra ID client secret. */
6710
+ clientSecret: Scalars['String']['input'];
6711
+ /** Microsoft Entra ID tenant ID. */
6712
+ tenantId: Scalars['ID']['input'];
6713
+ };
6573
6714
  /** Represents Microsoft Email feed properties. */
6574
6715
  export type MicrosoftEmailFeedProperties = {
6575
6716
  __typename?: 'MicrosoftEmailFeedProperties';
@@ -6790,14 +6931,18 @@ export type ModelCard = {
6790
6931
  features?: Maybe<ModelFeatures>;
6791
6932
  /** The model metadata, including pricing information per million tokens. */
6792
6933
  metadata?: Maybe<ModelMetadata>;
6793
- /** The model enum to use with the specification. */
6934
+ /** The model enum to use with the specification, i.e. GPT4O_128K. */
6794
6935
  model?: Maybe<Scalars['String']['output']>;
6936
+ /** The model enum type to use with the specification, i.e. OpenAIModels. */
6937
+ modelType?: Maybe<Scalars['String']['output']>;
6795
6938
  /** The model name. */
6796
6939
  name: Scalars['String']['output'];
6797
6940
  /** The model service type. */
6798
6941
  serviceType?: Maybe<ModelServiceTypes>;
6799
6942
  /** The type of model, i.e. completion, text embedding, reranking. */
6800
6943
  type?: Maybe<ModelTypes>;
6944
+ /** The model card URI. */
6945
+ uri?: Maybe<Scalars['URL']['output']>;
6801
6946
  };
6802
6947
  /** Represents a list of model card results. */
6803
6948
  export type ModelCardResults = {
@@ -6826,6 +6971,13 @@ export type ModelFeatures = {
6826
6971
  /** Potential use cases for the model. */
6827
6972
  useCases?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
6828
6973
  };
6974
+ /** Represents a filter for LLM models. */
6975
+ export type ModelFilter = {
6976
+ /** Filter by LLM service types. */
6977
+ serviceTypes?: InputMaybe<Array<InputMaybe<ModelServiceTypes>>>;
6978
+ /** Filter by LLM model types. */
6979
+ types?: InputMaybe<Array<InputMaybe<ModelTypes>>>;
6980
+ };
6829
6981
  /** Represents an LLM image entity extraction connector. */
6830
6982
  export type ModelImageExtractionProperties = {
6831
6983
  __typename?: 'ModelImageExtractionProperties';
@@ -6939,6 +7091,8 @@ export type Mutation = {
6939
7091
  createCategory?: Maybe<Category>;
6940
7092
  /** Creates a new collection. */
6941
7093
  createCollection?: Maybe<Collection>;
7094
+ /** Creates a new connector. */
7095
+ createConnector?: Maybe<Connector>;
6942
7096
  /** Creates a new conversation. */
6943
7097
  createConversation?: Maybe<Conversation>;
6944
7098
  /** Creates a new event. */
@@ -6985,6 +7139,8 @@ export type Mutation = {
6985
7139
  createSoftware?: Maybe<Software>;
6986
7140
  /** Creates a new LLM specification. */
6987
7141
  createSpecification?: Maybe<Specification>;
7142
+ /** Creates a new user. */
7143
+ createUser?: Maybe<User>;
6988
7144
  /** Creates a new content workflow. */
6989
7145
  createWorkflow?: Maybe<Workflow>;
6990
7146
  /** Deletes an alert. */
@@ -7053,6 +7209,8 @@ export type Mutation = {
7053
7209
  deleteCollection?: Maybe<Collection>;
7054
7210
  /** Bulk deletes collections. */
7055
7211
  deleteCollections?: Maybe<Array<Maybe<Collection>>>;
7212
+ /** Deletes a connector. */
7213
+ deleteConnector?: Maybe<Connector>;
7056
7214
  /** Deletes content. */
7057
7215
  deleteContent?: Maybe<Content>;
7058
7216
  /** Deletes multiple contents given their IDs. */
@@ -7147,6 +7305,8 @@ export type Mutation = {
7147
7305
  deleteSpecification?: Maybe<Specification>;
7148
7306
  /** Deletes multiple specifications given their IDs. */
7149
7307
  deleteSpecifications?: Maybe<Array<Maybe<Specification>>>;
7308
+ /** Deletes a user. */
7309
+ deleteUser?: Maybe<User>;
7150
7310
  /** Deletes a content workflow. */
7151
7311
  deleteWorkflow?: Maybe<Workflow>;
7152
7312
  /** Deletes multiple workflows given their IDs. */
@@ -7159,10 +7319,14 @@ export type Mutation = {
7159
7319
  disableAlert?: Maybe<Alert>;
7160
7320
  /** Disables a feed. */
7161
7321
  disableFeed?: Maybe<Feed>;
7322
+ /** Disables a user. */
7323
+ disableUser?: Maybe<User>;
7162
7324
  /** Enables an alert. */
7163
7325
  enableAlert?: Maybe<Alert>;
7164
7326
  /** Enables a feed. */
7165
7327
  enableFeed?: Maybe<Feed>;
7328
+ /** Enables a user. */
7329
+ enableUser?: Maybe<User>;
7166
7330
  /** Extracts data using tool calling, from contents resulting from the provided filter criteria. */
7167
7331
  extractContents?: Maybe<Array<Maybe<ExtractCompletion>>>;
7168
7332
  /** Extracts data using tool calling, from text. */
@@ -7239,6 +7403,8 @@ export type Mutation = {
7239
7403
  updateCategory?: Maybe<Category>;
7240
7404
  /** Updates an existing collection. */
7241
7405
  updateCollection?: Maybe<Collection>;
7406
+ /** Updates an existing connector. */
7407
+ updateConnector?: Maybe<Connector>;
7242
7408
  /** Updates existing content. */
7243
7409
  updateContent?: Maybe<Content>;
7244
7410
  /** Updates an existing conversation. */
@@ -7289,6 +7455,8 @@ export type Mutation = {
7289
7455
  updateSoftware?: Maybe<Software>;
7290
7456
  /** Updates an existing LLM specification. */
7291
7457
  updateSpecification?: Maybe<Specification>;
7458
+ /** Updates an existing user. */
7459
+ updateUser?: Maybe<User>;
7292
7460
  /** Updates an existing content workflow. */
7293
7461
  updateWorkflow?: Maybe<Workflow>;
7294
7462
  };
@@ -7337,6 +7505,9 @@ export type MutationCreateCategoryArgs = {
7337
7505
  export type MutationCreateCollectionArgs = {
7338
7506
  collection: CollectionInput;
7339
7507
  };
7508
+ export type MutationCreateConnectorArgs = {
7509
+ connector: ConnectorInput;
7510
+ };
7340
7511
  export type MutationCreateConversationArgs = {
7341
7512
  conversation: ConversationInput;
7342
7513
  correlationId?: InputMaybe<Scalars['String']['input']>;
@@ -7408,6 +7579,9 @@ export type MutationCreateSoftwareArgs = {
7408
7579
  export type MutationCreateSpecificationArgs = {
7409
7580
  specification: SpecificationInput;
7410
7581
  };
7582
+ export type MutationCreateUserArgs = {
7583
+ user: UserInput;
7584
+ };
7411
7585
  export type MutationCreateWorkflowArgs = {
7412
7586
  workflow: WorkflowInput;
7413
7587
  };
@@ -7567,6 +7741,9 @@ export type MutationDeleteCollectionsArgs = {
7567
7741
  ids: Array<Scalars['ID']['input']>;
7568
7742
  isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
7569
7743
  };
7744
+ export type MutationDeleteConnectorArgs = {
7745
+ id: Scalars['ID']['input'];
7746
+ };
7570
7747
  export type MutationDeleteContentArgs = {
7571
7748
  id: Scalars['ID']['input'];
7572
7749
  };
@@ -7731,6 +7908,9 @@ export type MutationDeleteSpecificationsArgs = {
7731
7908
  ids: Array<Scalars['ID']['input']>;
7732
7909
  isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
7733
7910
  };
7911
+ export type MutationDeleteUserArgs = {
7912
+ id: Scalars['ID']['input'];
7913
+ };
7734
7914
  export type MutationDeleteWorkflowArgs = {
7735
7915
  id: Scalars['ID']['input'];
7736
7916
  };
@@ -7757,12 +7937,18 @@ export type MutationDisableAlertArgs = {
7757
7937
  export type MutationDisableFeedArgs = {
7758
7938
  id: Scalars['ID']['input'];
7759
7939
  };
7940
+ export type MutationDisableUserArgs = {
7941
+ id: Scalars['ID']['input'];
7942
+ };
7760
7943
  export type MutationEnableAlertArgs = {
7761
7944
  id: Scalars['ID']['input'];
7762
7945
  };
7763
7946
  export type MutationEnableFeedArgs = {
7764
7947
  id: Scalars['ID']['input'];
7765
7948
  };
7949
+ export type MutationEnableUserArgs = {
7950
+ id: Scalars['ID']['input'];
7951
+ };
7766
7952
  export type MutationExtractContentsArgs = {
7767
7953
  correlationId?: InputMaybe<Scalars['String']['input']>;
7768
7954
  filter?: InputMaybe<ContentFilter>;
@@ -7988,6 +8174,9 @@ export type MutationUpdateCategoryArgs = {
7988
8174
  export type MutationUpdateCollectionArgs = {
7989
8175
  collection: CollectionUpdateInput;
7990
8176
  };
8177
+ export type MutationUpdateConnectorArgs = {
8178
+ connector: ConnectorUpdateInput;
8179
+ };
7991
8180
  export type MutationUpdateContentArgs = {
7992
8181
  content: ContentUpdateInput;
7993
8182
  };
@@ -8063,6 +8252,9 @@ export type MutationUpdateSoftwareArgs = {
8063
8252
  export type MutationUpdateSpecificationArgs = {
8064
8253
  specification: SpecificationUpdateInput;
8065
8254
  };
8255
+ export type MutationUpdateUserArgs = {
8256
+ user: UserUpdateInput;
8257
+ };
8066
8258
  export type MutationUpdateWorkflowArgs = {
8067
8259
  workflow: WorkflowUpdateInput;
8068
8260
  };
@@ -9949,6 +10141,10 @@ export type Query = {
9949
10141
  collection?: Maybe<Collection>;
9950
10142
  /** Retrieves collections based on the provided filter criteria. */
9951
10143
  collections?: Maybe<CollectionResults>;
10144
+ /** Lookup a connector given its ID. */
10145
+ connector?: Maybe<Connector>;
10146
+ /** Retrieves connectors based on the provided filter criteria. */
10147
+ connectors?: Maybe<ConnectorResults>;
9952
10148
  /** Lookup content given its ID. */
9953
10149
  content?: Maybe<Content>;
9954
10150
  /** Retrieves contents based on the provided filter criteria. */
@@ -10009,6 +10205,8 @@ export type Query = {
10009
10205
  countSoftwares?: Maybe<CountResult>;
10010
10206
  /** Counts specifications based on the provided filter criteria. */
10011
10207
  countSpecifications?: Maybe<CountResult>;
10208
+ /** Counts users based on the provided filter criteria. */
10209
+ countUsers?: Maybe<CountResult>;
10012
10210
  /** Counts workflows based on the provided filter criteria. */
10013
10211
  countWorkflows?: Maybe<CountResult>;
10014
10212
  /** Retrieves project credits. */
@@ -10135,6 +10333,12 @@ export type Query = {
10135
10333
  specifications?: Maybe<SpecificationResults>;
10136
10334
  /** Retrieves project usage. */
10137
10335
  usage?: Maybe<Array<Maybe<ProjectUsageRecord>>>;
10336
+ /** Fetch current user. */
10337
+ user?: Maybe<User>;
10338
+ /** Lookup a user given its external identifier. */
10339
+ userByIdentifier?: Maybe<User>;
10340
+ /** Retrieves users based on the provided filter criteria. */
10341
+ users?: Maybe<UserResults>;
10138
10342
  /** Lookup a workflow given its ID. */
10139
10343
  workflow?: Maybe<Workflow>;
10140
10344
  /** Retrieves workflows based on the provided filter criteria. */
@@ -10165,6 +10369,14 @@ export type QueryCollectionsArgs = {
10165
10369
  correlationId?: InputMaybe<Scalars['String']['input']>;
10166
10370
  filter?: InputMaybe<CollectionFilter>;
10167
10371
  };
10372
+ export type QueryConnectorArgs = {
10373
+ correlationId?: InputMaybe<Scalars['String']['input']>;
10374
+ id: Scalars['ID']['input'];
10375
+ };
10376
+ export type QueryConnectorsArgs = {
10377
+ correlationId?: InputMaybe<Scalars['String']['input']>;
10378
+ filter?: InputMaybe<ConnectorFilter>;
10379
+ };
10168
10380
  export type QueryContentArgs = {
10169
10381
  correlationId?: InputMaybe<Scalars['String']['input']>;
10170
10382
  id: Scalars['ID']['input'];
@@ -10287,6 +10499,10 @@ export type QueryCountSpecificationsArgs = {
10287
10499
  correlationId?: InputMaybe<Scalars['String']['input']>;
10288
10500
  filter?: InputMaybe<SpecificationFilter>;
10289
10501
  };
10502
+ export type QueryCountUsersArgs = {
10503
+ correlationId?: InputMaybe<Scalars['String']['input']>;
10504
+ filter?: InputMaybe<UserFilter>;
10505
+ };
10290
10506
  export type QueryCountWorkflowsArgs = {
10291
10507
  correlationId?: InputMaybe<Scalars['String']['input']>;
10292
10508
  filter?: InputMaybe<WorkflowFilter>;
@@ -10451,6 +10667,9 @@ export type QueryMicrosoftTeamsChannelsArgs = {
10451
10667
  export type QueryMicrosoftTeamsTeamsArgs = {
10452
10668
  properties: MicrosoftTeamsTeamsInput;
10453
10669
  };
10670
+ export type QueryModelsArgs = {
10671
+ filter?: InputMaybe<ModelFilter>;
10672
+ };
10454
10673
  export type QueryObservationArgs = {
10455
10674
  correlationId?: InputMaybe<Scalars['String']['input']>;
10456
10675
  id: Scalars['ID']['input'];
@@ -10555,6 +10774,17 @@ export type QueryUsageArgs = {
10555
10774
  offset?: InputMaybe<Scalars['Int']['input']>;
10556
10775
  startDate: Scalars['DateTime']['input'];
10557
10776
  };
10777
+ export type QueryUserArgs = {
10778
+ correlationId?: InputMaybe<Scalars['String']['input']>;
10779
+ };
10780
+ export type QueryUserByIdentifierArgs = {
10781
+ correlationId?: InputMaybe<Scalars['String']['input']>;
10782
+ identifier: Scalars['String']['input'];
10783
+ };
10784
+ export type QueryUsersArgs = {
10785
+ correlationId?: InputMaybe<Scalars['String']['input']>;
10786
+ filter?: InputMaybe<UserFilter>;
10787
+ };
10558
10788
  export type QueryWorkflowArgs = {
10559
10789
  correlationId?: InputMaybe<Scalars['String']['input']>;
10560
10790
  id: Scalars['ID']['input'];
@@ -12063,6 +12293,94 @@ export type UriResults = {
12063
12293
  /** The URI results. */
12064
12294
  results?: Maybe<Array<Maybe<Scalars['URL']['output']>>>;
12065
12295
  };
12296
+ /** Represents a user. */
12297
+ export type User = {
12298
+ __typename?: 'User';
12299
+ /** The reference to the connectors that the user has created. */
12300
+ connectors?: Maybe<Array<Maybe<Connector>>>;
12301
+ /** The creation date of the user. */
12302
+ creationDate: Scalars['DateTime']['output'];
12303
+ /** The description of the user. */
12304
+ description?: Maybe<Scalars['String']['output']>;
12305
+ /** The ID of the user. */
12306
+ id: Scalars['ID']['output'];
12307
+ /** The external identifier of the user. */
12308
+ identifier: Scalars['String']['output'];
12309
+ /** The modified date of the user. */
12310
+ modifiedDate?: Maybe<Scalars['DateTime']['output']>;
12311
+ /** The name of the user. */
12312
+ name: Scalars['String']['output'];
12313
+ /** The owner of the user. */
12314
+ owner: Owner;
12315
+ /** The relevance score of the user. */
12316
+ relevance?: Maybe<Scalars['Float']['output']>;
12317
+ /** The state of the user (i.e. created, finished). */
12318
+ state: EntityState;
12319
+ /** The user type, i.e. human or agent. */
12320
+ type?: Maybe<UserTypes>;
12321
+ };
12322
+ /** Represents a filter for users. */
12323
+ export type UserFilter = {
12324
+ /** Filter by creation date recent timespan. For example, a timespan of one day will return user(s) created in the last 24 hours. */
12325
+ createdInLast?: InputMaybe<Scalars['TimeSpan']['input']>;
12326
+ /** Filter user(s) by their creation date range. */
12327
+ creationDateRange?: InputMaybe<DateRangeFilter>;
12328
+ /** The sort direction for query results. */
12329
+ direction?: InputMaybe<OrderDirectionTypes>;
12330
+ /** Filter user(s) by their unique ID. */
12331
+ id?: InputMaybe<Scalars['ID']['input']>;
12332
+ /** Filter users by their external identifier. */
12333
+ identifier?: InputMaybe<Scalars['String']['input']>;
12334
+ /** Limit the number of user(s) to be returned. */
12335
+ limit?: InputMaybe<Scalars['Int']['input']>;
12336
+ /** Filter user(s) by their name. */
12337
+ name?: InputMaybe<Scalars['String']['input']>;
12338
+ /** Skip the specified number of user(s) from the beginning of the result set. Only supported on keyword search. */
12339
+ offset?: InputMaybe<Scalars['Int']['input']>;
12340
+ /** The sort order for query results. */
12341
+ orderBy?: InputMaybe<OrderByTypes>;
12342
+ /** Filter user(s) by searching for specific text. */
12343
+ search?: InputMaybe<Scalars['String']['input']>;
12344
+ /** Filter user(s) by their states. */
12345
+ states?: InputMaybe<Array<EntityState>>;
12346
+ };
12347
+ /** Represents a user. */
12348
+ export type UserInput = {
12349
+ /** The description of the user. */
12350
+ description?: InputMaybe<Scalars['String']['input']>;
12351
+ /** The external identifier of the user. */
12352
+ identifier: Scalars['String']['input'];
12353
+ /** The name of the user. */
12354
+ name: Scalars['String']['input'];
12355
+ /** The user type, i.e. human or agent. */
12356
+ type?: InputMaybe<UserTypes>;
12357
+ };
12358
+ /** Represents user query results. */
12359
+ export type UserResults = {
12360
+ __typename?: 'UserResults';
12361
+ /** The list of user query results. */
12362
+ results?: Maybe<Array<Maybe<User>>>;
12363
+ };
12364
+ /** User type */
12365
+ export declare enum UserTypes {
12366
+ /** Agent user */
12367
+ Agent = "AGENT",
12368
+ /** Human user */
12369
+ Human = "HUMAN"
12370
+ }
12371
+ /** Represents a user. */
12372
+ export type UserUpdateInput = {
12373
+ /** The description of the user. */
12374
+ description?: InputMaybe<Scalars['String']['input']>;
12375
+ /** The ID of the user to update. */
12376
+ id: Scalars['ID']['input'];
12377
+ /** The external identifier of the user. */
12378
+ identifier?: InputMaybe<Scalars['String']['input']>;
12379
+ /** The name of the user. */
12380
+ name?: InputMaybe<Scalars['String']['input']>;
12381
+ /** The user type, i.e. human or agent. */
12382
+ type?: InputMaybe<UserTypes>;
12383
+ };
12066
12384
  /** Represents video metadata. */
12067
12385
  export type VideoMetadata = {
12068
12386
  __typename?: 'VideoMetadata';
@@ -12150,8 +12468,12 @@ export declare enum VoyageModels {
12150
12468
  Voyage = "VOYAGE",
12151
12469
  /** Voyage 3.0 */
12152
12470
  Voyage_3_0 = "VOYAGE_3_0",
12471
+ /** Voyage 3.0 Large */
12472
+ Voyage_3_0Large = "VOYAGE_3_0_LARGE",
12153
12473
  /** Voyage Code 2.0 */
12154
12474
  VoyageCode_2_0 = "VOYAGE_CODE_2_0",
12475
+ /** Voyage Code 3.0 */
12476
+ VoyageCode_3_0 = "VOYAGE_CODE_3_0",
12155
12477
  /** Voyage Finance 2.0 */
12156
12478
  VoyageFinance_2_0 = "VOYAGE_FINANCE_2_0",
12157
12479
  /** Voyage Law 2.0 */
@@ -21751,7 +22073,7 @@ export type PromptSpecificationsMutation = {
21751
22073
  } | null> | null;
21752
22074
  };
21753
22075
  export type QueryModelsQueryVariables = Exact<{
21754
- [key: string]: never;
22076
+ filter?: InputMaybe<ModelFilter>;
21755
22077
  }>;
21756
22078
  export type QueryModelsQuery = {
21757
22079
  __typename?: 'Query';
@@ -21759,10 +22081,12 @@ export type QueryModelsQuery = {
21759
22081
  __typename?: 'ModelCardResults';
21760
22082
  results?: Array<{
21761
22083
  __typename?: 'ModelCard';
22084
+ uri?: any | null;
21762
22085
  name: string;
21763
22086
  type?: ModelTypes | null;
21764
22087
  serviceType?: ModelServiceTypes | null;
21765
22088
  model?: string | null;
22089
+ modelType?: string | null;
21766
22090
  description?: string | null;
21767
22091
  availableOn?: Array<string | null> | null;
21768
22092
  features?: {
@@ -21999,6 +22323,184 @@ export type UpdateSpecificationMutation = {
21999
22323
  serviceType?: ModelServiceTypes | null;
22000
22324
  } | null;
22001
22325
  };
22326
+ export type CountUsersQueryVariables = Exact<{
22327
+ filter?: InputMaybe<UserFilter>;
22328
+ }>;
22329
+ export type CountUsersQuery = {
22330
+ __typename?: 'Query';
22331
+ countUsers?: {
22332
+ __typename?: 'CountResult';
22333
+ count?: any | null;
22334
+ } | null;
22335
+ };
22336
+ export type CreateUserMutationVariables = Exact<{
22337
+ user: UserInput;
22338
+ }>;
22339
+ export type CreateUserMutation = {
22340
+ __typename?: 'Mutation';
22341
+ createUser?: {
22342
+ __typename?: 'User';
22343
+ id: string;
22344
+ name: string;
22345
+ state: EntityState;
22346
+ type?: UserTypes | null;
22347
+ identifier: string;
22348
+ } | null;
22349
+ };
22350
+ export type DeleteUserMutationVariables = Exact<{
22351
+ id: Scalars['ID']['input'];
22352
+ }>;
22353
+ export type DeleteUserMutation = {
22354
+ __typename?: 'Mutation';
22355
+ deleteUser?: {
22356
+ __typename?: 'User';
22357
+ id: string;
22358
+ state: EntityState;
22359
+ } | null;
22360
+ };
22361
+ export type DisableUserMutationVariables = Exact<{
22362
+ id: Scalars['ID']['input'];
22363
+ }>;
22364
+ export type DisableUserMutation = {
22365
+ __typename?: 'Mutation';
22366
+ disableUser?: {
22367
+ __typename?: 'User';
22368
+ id: string;
22369
+ state: EntityState;
22370
+ } | null;
22371
+ };
22372
+ export type EnableUserMutationVariables = Exact<{
22373
+ id: Scalars['ID']['input'];
22374
+ }>;
22375
+ export type EnableUserMutation = {
22376
+ __typename?: 'Mutation';
22377
+ enableUser?: {
22378
+ __typename?: 'User';
22379
+ id: string;
22380
+ state: EntityState;
22381
+ } | null;
22382
+ };
22383
+ export type GetUserQueryVariables = Exact<{
22384
+ [key: string]: never;
22385
+ }>;
22386
+ export type GetUserQuery = {
22387
+ __typename?: 'Query';
22388
+ user?: {
22389
+ __typename?: 'User';
22390
+ id: string;
22391
+ name: string;
22392
+ creationDate: any;
22393
+ relevance?: number | null;
22394
+ state: EntityState;
22395
+ type?: UserTypes | null;
22396
+ identifier: string;
22397
+ owner: {
22398
+ __typename?: 'Owner';
22399
+ id: string;
22400
+ };
22401
+ connectors?: Array<{
22402
+ __typename?: 'Connector';
22403
+ id: string;
22404
+ name: string;
22405
+ state: EntityState;
22406
+ type?: ConnectorTypes | null;
22407
+ authentication?: {
22408
+ __typename?: 'AuthenticationConnector';
22409
+ type: AuthenticationServiceTypes;
22410
+ microsoft?: {
22411
+ __typename?: 'MicrosoftAuthenticationProperties';
22412
+ tenantId: string;
22413
+ clientId: string;
22414
+ clientSecret: string;
22415
+ } | null;
22416
+ google?: {
22417
+ __typename?: 'GoogleAuthenticationProperties';
22418
+ clientId: string;
22419
+ clientSecret: string;
22420
+ } | null;
22421
+ } | null;
22422
+ integration?: {
22423
+ __typename?: 'IntegrationConnector';
22424
+ type: IntegrationServiceTypes;
22425
+ uri?: string | null;
22426
+ slack?: {
22427
+ __typename?: 'SlackIntegrationProperties';
22428
+ token: string;
22429
+ channel: string;
22430
+ } | null;
22431
+ } | null;
22432
+ } | null> | null;
22433
+ } | null;
22434
+ };
22435
+ export type QueryUsersQueryVariables = Exact<{
22436
+ filter?: InputMaybe<UserFilter>;
22437
+ }>;
22438
+ export type QueryUsersQuery = {
22439
+ __typename?: 'Query';
22440
+ users?: {
22441
+ __typename?: 'UserResults';
22442
+ results?: Array<{
22443
+ __typename?: 'User';
22444
+ id: string;
22445
+ name: string;
22446
+ creationDate: any;
22447
+ relevance?: number | null;
22448
+ state: EntityState;
22449
+ type?: UserTypes | null;
22450
+ identifier: string;
22451
+ owner: {
22452
+ __typename?: 'Owner';
22453
+ id: string;
22454
+ };
22455
+ connectors?: Array<{
22456
+ __typename?: 'Connector';
22457
+ id: string;
22458
+ name: string;
22459
+ state: EntityState;
22460
+ type?: ConnectorTypes | null;
22461
+ authentication?: {
22462
+ __typename?: 'AuthenticationConnector';
22463
+ type: AuthenticationServiceTypes;
22464
+ microsoft?: {
22465
+ __typename?: 'MicrosoftAuthenticationProperties';
22466
+ tenantId: string;
22467
+ clientId: string;
22468
+ clientSecret: string;
22469
+ } | null;
22470
+ google?: {
22471
+ __typename?: 'GoogleAuthenticationProperties';
22472
+ clientId: string;
22473
+ clientSecret: string;
22474
+ } | null;
22475
+ } | null;
22476
+ integration?: {
22477
+ __typename?: 'IntegrationConnector';
22478
+ type: IntegrationServiceTypes;
22479
+ uri?: string | null;
22480
+ slack?: {
22481
+ __typename?: 'SlackIntegrationProperties';
22482
+ token: string;
22483
+ channel: string;
22484
+ } | null;
22485
+ } | null;
22486
+ } | null> | null;
22487
+ } | null> | null;
22488
+ } | null;
22489
+ };
22490
+ export type UpdateUserMutationVariables = Exact<{
22491
+ user: UserUpdateInput;
22492
+ }>;
22493
+ export type UpdateUserMutation = {
22494
+ __typename?: 'Mutation';
22495
+ updateUser?: {
22496
+ __typename?: 'User';
22497
+ id: string;
22498
+ name: string;
22499
+ state: EntityState;
22500
+ type?: UserTypes | null;
22501
+ identifier: string;
22502
+ } | null;
22503
+ };
22002
22504
  export type CountWorkflowsQueryVariables = Exact<{
22003
22505
  filter?: InputMaybe<WorkflowFilter>;
22004
22506
  }>;
@@ -22172,6 +22674,10 @@ export type CreateWorkflowMutation = {
22172
22674
  __typename?: 'FHIREnrichmentProperties';
22173
22675
  endpoint?: any | null;
22174
22676
  } | null;
22677
+ diffbot?: {
22678
+ __typename?: 'DiffbotEnrichmentProperties';
22679
+ key?: any | null;
22680
+ } | null;
22175
22681
  } | null;
22176
22682
  } | null> | null;
22177
22683
  } | null;
@@ -22403,6 +22909,10 @@ export type GetWorkflowQuery = {
22403
22909
  __typename?: 'FHIREnrichmentProperties';
22404
22910
  endpoint?: any | null;
22405
22911
  } | null;
22912
+ diffbot?: {
22913
+ __typename?: 'DiffbotEnrichmentProperties';
22914
+ key?: any | null;
22915
+ } | null;
22406
22916
  } | null;
22407
22917
  } | null> | null;
22408
22918
  } | null;
@@ -22600,6 +23110,10 @@ export type QueryWorkflowsQuery = {
22600
23110
  __typename?: 'FHIREnrichmentProperties';
22601
23111
  endpoint?: any | null;
22602
23112
  } | null;
23113
+ diffbot?: {
23114
+ __typename?: 'DiffbotEnrichmentProperties';
23115
+ key?: any | null;
23116
+ } | null;
22603
23117
  } | null;
22604
23118
  } | null> | null;
22605
23119
  } | null;
@@ -22790,6 +23304,10 @@ export type UpdateWorkflowMutation = {
22790
23304
  __typename?: 'FHIREnrichmentProperties';
22791
23305
  endpoint?: any | null;
22792
23306
  } | null;
23307
+ diffbot?: {
23308
+ __typename?: 'DiffbotEnrichmentProperties';
23309
+ key?: any | null;
23310
+ } | null;
22793
23311
  } | null;
22794
23312
  } | null> | null;
22795
23313
  } | null;
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.MailSensitivity = exports.MailPriority = exports.MailImportance = exports.LinkTypes = exports.LabelFacetTypes = exports.JinaModels = exports.IntegrationServiceTypes = exports.ImageProjectionTypes = exports.H3ResolutionTypes = exports.GroqModels = exports.GraphStrategyTypes = exports.GoogleModels = exports.FileTypes = exports.FilePreparationServiceTypes = exports.FeedTypes = exports.FeedServiceTypes = exports.FeedListingTypes = exports.FeedConnectorTypes = exports.FacetValueTypes = exports.EventFacetTypes = exports.EnvironmentTypes = exports.EntityTypes = exports.EntityState = exports.EntityExtractionServiceTypes = exports.EntityEnrichmentServiceTypes = exports.EmailListingTypes = exports.ElevenLabsModels = exports.DeviceTypes = exports.DeepseekModels = exports.DeepgramModels = exports.ConversationTypes = exports.ConversationStrategyTypes = exports.ConversationSearchTypes = exports.ConversationRoleTypes = exports.ContentTypes = exports.ContentPublishingServiceTypes = exports.ContentPublishingFormats = exports.ContentIndexingServiceTypes = exports.ContentFacetTypes = exports.CollectionTypes = exports.CohereModels = exports.CerebrasModels = exports.CategoryFacetTypes = exports.BillableMetrics = exports.AzureOpenAiModels = exports.AzureDocumentIntelligenceVersions = exports.AzureDocumentIntelligenceModels = exports.ApplyPolicy = exports.AnthropicModels = exports.AlertTypes = void 0;
4
- exports.TimeIntervalTypes = exports.TextTypes = exports.TextRoles = exports.SummarizationTypes = exports.StoragePolicyTypes = exports.SpecificationTypes = exports.SoftwareFacetTypes = exports.SiteTypes = exports.SharePointAuthenticationTypes = exports.SearchTypes = exports.SearchServiceTypes = exports.SearchQueryTypes = exports.SdkTypes = exports.RevisionStrategyTypes = exports.RetrievalStrategyTypes = exports.ResourceConnectorTypes = exports.RerankingModelServiceTypes = exports.RepoFacetTypes = exports.ReplicateModels = exports.RenditionTypes = exports.PromptStrategyTypes = exports.ProductFacetTypes = exports.PolicyTimeTypes = exports.PlaceFacetTypes = exports.PersonFacetTypes = exports.OrientationTypes = exports.OrganizationFacetTypes = exports.OrderDirectionTypes = exports.OrderByTypes = exports.OperationTypes = exports.OpenAiVisionDetailLevels = exports.OpenAiModels = exports.OccurrenceTypes = exports.ObservableTypes = exports.NotionTypes = exports.ModelTypes = exports.ModelServiceTypes = exports.MistralModels = exports.MetadataTypes = exports.MedicalTherapyFacetTypes = exports.MedicalTestFacetTypes = exports.MedicalStudyFacetTypes = exports.MedicalProcedureFacetTypes = exports.MedicalIndicationFacetTypes = exports.MedicalGuidelineFacetTypes = exports.MedicalDrugFacetTypes = exports.MedicalDrugClassFacetTypes = exports.MedicalDeviceFacetTypes = exports.MedicalContraindicationFacetTypes = exports.MedicalConditionFacetTypes = void 0;
5
- exports.YouTubeTypes = exports.VoyageModels = exports.UnitTypes = exports.TimedPolicyRecurrenceTypes = void 0;
3
+ exports.MailImportance = exports.LinkTypes = exports.LabelFacetTypes = exports.JinaModels = exports.IntegrationServiceTypes = exports.ImageProjectionTypes = exports.H3ResolutionTypes = exports.GroqModels = exports.GraphStrategyTypes = exports.GoogleModels = exports.FileTypes = exports.FilePreparationServiceTypes = exports.FeedTypes = exports.FeedServiceTypes = exports.FeedListingTypes = exports.FeedConnectorTypes = exports.FacetValueTypes = exports.EventFacetTypes = exports.EnvironmentTypes = exports.EntityTypes = exports.EntityState = exports.EntityExtractionServiceTypes = exports.EntityEnrichmentServiceTypes = exports.EmailListingTypes = exports.ElevenLabsModels = exports.DeviceTypes = exports.DeepseekModels = exports.DeepgramModels = exports.ConversationTypes = exports.ConversationStrategyTypes = exports.ConversationSearchTypes = exports.ConversationRoleTypes = exports.ContentTypes = exports.ContentPublishingServiceTypes = exports.ContentPublishingFormats = exports.ContentIndexingServiceTypes = exports.ContentFacetTypes = exports.ConnectorTypes = exports.CollectionTypes = exports.CohereModels = exports.CerebrasModels = exports.CategoryFacetTypes = exports.BillableMetrics = exports.AzureOpenAiModels = exports.AzureDocumentIntelligenceVersions = exports.AzureDocumentIntelligenceModels = exports.AuthenticationServiceTypes = exports.ApplyPolicy = exports.AnthropicModels = exports.AlertTypes = void 0;
4
+ exports.TextRoles = exports.SummarizationTypes = exports.StoragePolicyTypes = exports.SpecificationTypes = exports.SoftwareFacetTypes = exports.SiteTypes = exports.SharePointAuthenticationTypes = exports.SearchTypes = exports.SearchServiceTypes = exports.SearchQueryTypes = exports.SdkTypes = exports.RevisionStrategyTypes = exports.RetrievalStrategyTypes = exports.ResourceConnectorTypes = exports.RerankingModelServiceTypes = exports.RepoFacetTypes = exports.ReplicateModels = exports.RenditionTypes = exports.PromptStrategyTypes = exports.ProductFacetTypes = exports.PolicyTimeTypes = exports.PlaceFacetTypes = exports.PersonFacetTypes = exports.OrientationTypes = exports.OrganizationFacetTypes = exports.OrderDirectionTypes = exports.OrderByTypes = exports.OperationTypes = exports.OpenAiVisionDetailLevels = exports.OpenAiModels = exports.OccurrenceTypes = exports.ObservableTypes = exports.NotionTypes = exports.ModelTypes = exports.ModelServiceTypes = exports.MistralModels = exports.MetadataTypes = exports.MedicalTherapyFacetTypes = exports.MedicalTestFacetTypes = exports.MedicalStudyFacetTypes = exports.MedicalProcedureFacetTypes = exports.MedicalIndicationFacetTypes = exports.MedicalGuidelineFacetTypes = exports.MedicalDrugFacetTypes = exports.MedicalDrugClassFacetTypes = exports.MedicalDeviceFacetTypes = exports.MedicalContraindicationFacetTypes = exports.MedicalConditionFacetTypes = exports.MailSensitivity = exports.MailPriority = void 0;
5
+ exports.YouTubeTypes = exports.VoyageModels = exports.UserTypes = exports.UnitTypes = exports.TimedPolicyRecurrenceTypes = exports.TimeIntervalTypes = exports.TextTypes = void 0;
6
6
  /** Alert type */
7
7
  var AlertTypes;
8
8
  (function (AlertTypes) {
@@ -57,6 +57,18 @@ var ApplyPolicy;
57
57
  /** The policy is applied in the validation step before the execution. */
58
58
  ApplyPolicy["Validation"] = "VALIDATION";
59
59
  })(ApplyPolicy || (exports.ApplyPolicy = ApplyPolicy = {}));
60
+ /** Authentication service type */
61
+ var AuthenticationServiceTypes;
62
+ (function (AuthenticationServiceTypes) {
63
+ /** Auth0 authentication service */
64
+ AuthenticationServiceTypes["Auth0"] = "AUTH0";
65
+ /** Clerk authentication service */
66
+ AuthenticationServiceTypes["Clerk"] = "CLERK";
67
+ /** Google authentication service */
68
+ AuthenticationServiceTypes["Google"] = "GOOGLE";
69
+ /** Microsoft Graph authentication service */
70
+ AuthenticationServiceTypes["MicrosoftGraph"] = "MICROSOFT_GRAPH";
71
+ })(AuthenticationServiceTypes || (exports.AuthenticationServiceTypes = AuthenticationServiceTypes = {}));
60
72
  var AzureDocumentIntelligenceModels;
61
73
  (function (AzureDocumentIntelligenceModels) {
62
74
  /** Credit Card */
@@ -146,8 +158,8 @@ var CerebrasModels;
146
158
  CerebrasModels["Custom"] = "CUSTOM";
147
159
  /** LLaMA 3.1 8b */
148
160
  CerebrasModels["Llama_3_1_8B"] = "LLAMA_3_1_8B";
149
- /** LLaMA 3.1 70b */
150
- CerebrasModels["Llama_3_1_70B"] = "LLAMA_3_1_70B";
161
+ /** LLaMA 3.3 70b */
162
+ CerebrasModels["Llama_3_3_70B"] = "LLAMA_3_3_70B";
151
163
  })(CerebrasModels || (exports.CerebrasModels = CerebrasModels = {}));
152
164
  /** Cohere model type */
153
165
  var CohereModels;
@@ -179,6 +191,14 @@ var CollectionTypes;
179
191
  /** Content collection */
180
192
  CollectionTypes["Collection"] = "COLLECTION";
181
193
  })(CollectionTypes || (exports.CollectionTypes = CollectionTypes = {}));
194
+ /** Connector type */
195
+ var ConnectorTypes;
196
+ (function (ConnectorTypes) {
197
+ /** Authentication connector */
198
+ ConnectorTypes["Authentication"] = "AUTHENTICATION";
199
+ /** Integration connector */
200
+ ConnectorTypes["Integration"] = "INTEGRATION";
201
+ })(ConnectorTypes || (exports.ConnectorTypes = ConnectorTypes = {}));
182
202
  /** Content facet types */
183
203
  var ContentFacetTypes;
184
204
  (function (ContentFacetTypes) {
@@ -563,6 +583,8 @@ var EntityTypes;
563
583
  EntityTypes["Software"] = "SOFTWARE";
564
584
  /** Model specification */
565
585
  EntityTypes["Specification"] = "SPECIFICATION";
586
+ /** User */
587
+ EntityTypes["User"] = "USER";
566
588
  /** Workflow */
567
589
  EntityTypes["Workflow"] = "WORKFLOW";
568
590
  })(EntityTypes || (exports.EntityTypes = EntityTypes = {}));
@@ -799,29 +821,12 @@ var GroqModels;
799
821
  GroqModels["Custom"] = "CUSTOM";
800
822
  /** LLaMA 3.1 8b */
801
823
  GroqModels["Llama_3_1_8B"] = "LLAMA_3_1_8B";
802
- /**
803
- * LLaMA 3.1 70b
804
- * @deprecated Use Llama 3.3 70b instead.
805
- */
806
- GroqModels["Llama_3_1_70B"] = "LLAMA_3_1_70B";
807
- /** LLaMA 3.1 405b */
808
- GroqModels["Llama_3_1_405B"] = "LLAMA_3_1_405B";
809
824
  /** LLaMA 3.2 1b Preview */
810
825
  GroqModels["Llama_3_2_1BPreview"] = "LLAMA_3_2_1B_PREVIEW";
811
826
  /** LLaMA 3.2 3b Preview */
812
827
  GroqModels["Llama_3_2_3BPreview"] = "LLAMA_3_2_3B_PREVIEW";
813
- /**
814
- * LLaMA 3.2 11b Text Preview
815
- * @deprecated Use Llama 3.2 11b Vision Preview instead.
816
- */
817
- GroqModels["Llama_3_2_11BTextPreview"] = "LLAMA_3_2_11B_TEXT_PREVIEW";
818
828
  /** LLaMA 3.2 11b Vision Preview */
819
829
  GroqModels["Llama_3_2_11BVisionPreview"] = "LLAMA_3_2_11B_VISION_PREVIEW";
820
- /**
821
- * LLaMA 3.2 90b Text Preview
822
- * @deprecated Use Llama 3.2 90b Vision Preview instead.
823
- */
824
- GroqModels["Llama_3_2_90BTextPreview"] = "LLAMA_3_2_90B_TEXT_PREVIEW";
825
830
  /** LLaMA 3.2 90b Vision Preview */
826
831
  GroqModels["Llama_3_2_90BVisionPreview"] = "LLAMA_3_2_90B_VISION_PREVIEW";
827
832
  /** LLaMA 3.3 70b */
@@ -830,11 +835,6 @@ var GroqModels;
830
835
  GroqModels["Llama_3_8B"] = "LLAMA_3_8B";
831
836
  /** LLaMA 3 70b */
832
837
  GroqModels["Llama_3_70B"] = "LLAMA_3_70B";
833
- /**
834
- * LLaVA 1.5 7B Preview
835
- * @deprecated Use Llama 3.2 11b Vision Preview instead.
836
- */
837
- GroqModels["Llava_1_5_7BPreview"] = "LLAVA_1_5_7B_PREVIEW";
838
838
  /** Mixtral 8x7b Instruct */
839
839
  GroqModels["Mixtral_8X7BInstruct"] = "MIXTRAL_8X7B_INSTRUCT";
840
840
  })(GroqModels || (exports.GroqModels = GroqModels = {}));
@@ -1761,6 +1761,14 @@ var UnitTypes;
1761
1761
  /** Yard */
1762
1762
  UnitTypes["Yard"] = "YARD";
1763
1763
  })(UnitTypes || (exports.UnitTypes = UnitTypes = {}));
1764
+ /** User type */
1765
+ var UserTypes;
1766
+ (function (UserTypes) {
1767
+ /** Agent user */
1768
+ UserTypes["Agent"] = "AGENT";
1769
+ /** Human user */
1770
+ UserTypes["Human"] = "HUMAN";
1771
+ })(UserTypes || (exports.UserTypes = UserTypes = {}));
1764
1772
  /** Voyage model type */
1765
1773
  var VoyageModels;
1766
1774
  (function (VoyageModels) {
@@ -1770,8 +1778,12 @@ var VoyageModels;
1770
1778
  VoyageModels["Voyage"] = "VOYAGE";
1771
1779
  /** Voyage 3.0 */
1772
1780
  VoyageModels["Voyage_3_0"] = "VOYAGE_3_0";
1781
+ /** Voyage 3.0 Large */
1782
+ VoyageModels["Voyage_3_0Large"] = "VOYAGE_3_0_LARGE";
1773
1783
  /** Voyage Code 2.0 */
1774
1784
  VoyageModels["VoyageCode_2_0"] = "VOYAGE_CODE_2_0";
1785
+ /** Voyage Code 3.0 */
1786
+ VoyageModels["VoyageCode_3_0"] = "VOYAGE_CODE_3_0";
1775
1787
  /** Voyage Finance 2.0 */
1776
1788
  VoyageModels["VoyageFinance_2_0"] = "VOYAGE_FINANCE_2_0";
1777
1789
  /** Voyage Law 2.0 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250104001",
3
+ "version": "1.0.20250108001",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",