graphlit-client 1.0.20250105001 → 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
@@ -107,6 +107,13 @@ declare class Graphlit {
|
|
107
107
|
deleteAllWorkflows(): Promise<Types.DeleteAllWorkflowsMutation>;
|
108
108
|
getWorkflow(id: string): Promise<Types.GetWorkflowQuery>;
|
109
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>;
|
110
117
|
createCategory(category: Types.CategoryInput): Promise<Types.CreateCategoryMutation>;
|
111
118
|
updateCategory(category: Types.CategoryUpdateInput): Promise<Types.UpdateCategoryMutation>;
|
112
119
|
deleteCategory(id: string): Promise<Types.DeleteCategoryMutation>;
|
package/dist/client.js
CHANGED
@@ -593,6 +593,41 @@ class Graphlit {
|
|
593
593
|
return this.queryAndCheckError(Documents.QueryWorkflows, { filter: filter });
|
594
594
|
});
|
595
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
|
+
}
|
596
631
|
createCategory(category) {
|
597
632
|
return __awaiter(this, void 0, void 0, function* () {
|
598
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) {
|
@@ -8195,6 +8195,145 @@ exports.UpdateSpecification = (0, graphql_tag_1.default) `
|
|
8195
8195
|
}
|
8196
8196
|
}
|
8197
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
|
+
`;
|
8198
8337
|
exports.CountWorkflows = (0, graphql_tag_1.default) `
|
8199
8338
|
query CountWorkflows($filter: WorkflowFilter) {
|
8200
8339
|
countWorkflows(filter: $filter) {
|
@@ -8328,6 +8467,9 @@ exports.CreateWorkflow = (0, graphql_tag_1.default) `
|
|
8328
8467
|
fhir {
|
8329
8468
|
endpoint
|
8330
8469
|
}
|
8470
|
+
diffbot {
|
8471
|
+
key
|
8472
|
+
}
|
8331
8473
|
}
|
8332
8474
|
}
|
8333
8475
|
}
|
@@ -8509,6 +8651,9 @@ exports.GetWorkflow = (0, graphql_tag_1.default) `
|
|
8509
8651
|
fhir {
|
8510
8652
|
endpoint
|
8511
8653
|
}
|
8654
|
+
diffbot {
|
8655
|
+
key
|
8656
|
+
}
|
8512
8657
|
}
|
8513
8658
|
}
|
8514
8659
|
}
|
@@ -8663,6 +8808,9 @@ exports.QueryWorkflows = (0, graphql_tag_1.default) `
|
|
8663
8808
|
fhir {
|
8664
8809
|
endpoint
|
8665
8810
|
}
|
8811
|
+
diffbot {
|
8812
|
+
key
|
8813
|
+
}
|
8666
8814
|
}
|
8667
8815
|
}
|
8668
8816
|
}
|
@@ -8812,6 +8960,9 @@ exports.UpdateWorkflow = (0, graphql_tag_1.default) `
|
|
8812
8960
|
fhir {
|
8813
8961
|
endpoint
|
8814
8962
|
}
|
8963
|
+
diffbot {
|
8964
|
+
key
|
8965
|
+
}
|
8815
8966
|
}
|
8816
8967
|
}
|
8817
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';
|
@@ -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';
|
@@ -6548,6 +6692,25 @@ export type MetadataUpdateInput = {
|
|
6548
6692
|
/** The metadata value. */
|
6549
6693
|
value?: InputMaybe<Scalars['String']['input']>;
|
6550
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
|
+
};
|
6551
6714
|
/** Represents Microsoft Email feed properties. */
|
6552
6715
|
export type MicrosoftEmailFeedProperties = {
|
6553
6716
|
__typename?: 'MicrosoftEmailFeedProperties';
|
@@ -6928,6 +7091,8 @@ export type Mutation = {
|
|
6928
7091
|
createCategory?: Maybe<Category>;
|
6929
7092
|
/** Creates a new collection. */
|
6930
7093
|
createCollection?: Maybe<Collection>;
|
7094
|
+
/** Creates a new connector. */
|
7095
|
+
createConnector?: Maybe<Connector>;
|
6931
7096
|
/** Creates a new conversation. */
|
6932
7097
|
createConversation?: Maybe<Conversation>;
|
6933
7098
|
/** Creates a new event. */
|
@@ -6974,6 +7139,8 @@ export type Mutation = {
|
|
6974
7139
|
createSoftware?: Maybe<Software>;
|
6975
7140
|
/** Creates a new LLM specification. */
|
6976
7141
|
createSpecification?: Maybe<Specification>;
|
7142
|
+
/** Creates a new user. */
|
7143
|
+
createUser?: Maybe<User>;
|
6977
7144
|
/** Creates a new content workflow. */
|
6978
7145
|
createWorkflow?: Maybe<Workflow>;
|
6979
7146
|
/** Deletes an alert. */
|
@@ -7042,6 +7209,8 @@ export type Mutation = {
|
|
7042
7209
|
deleteCollection?: Maybe<Collection>;
|
7043
7210
|
/** Bulk deletes collections. */
|
7044
7211
|
deleteCollections?: Maybe<Array<Maybe<Collection>>>;
|
7212
|
+
/** Deletes a connector. */
|
7213
|
+
deleteConnector?: Maybe<Connector>;
|
7045
7214
|
/** Deletes content. */
|
7046
7215
|
deleteContent?: Maybe<Content>;
|
7047
7216
|
/** Deletes multiple contents given their IDs. */
|
@@ -7136,6 +7305,8 @@ export type Mutation = {
|
|
7136
7305
|
deleteSpecification?: Maybe<Specification>;
|
7137
7306
|
/** Deletes multiple specifications given their IDs. */
|
7138
7307
|
deleteSpecifications?: Maybe<Array<Maybe<Specification>>>;
|
7308
|
+
/** Deletes a user. */
|
7309
|
+
deleteUser?: Maybe<User>;
|
7139
7310
|
/** Deletes a content workflow. */
|
7140
7311
|
deleteWorkflow?: Maybe<Workflow>;
|
7141
7312
|
/** Deletes multiple workflows given their IDs. */
|
@@ -7148,10 +7319,14 @@ export type Mutation = {
|
|
7148
7319
|
disableAlert?: Maybe<Alert>;
|
7149
7320
|
/** Disables a feed. */
|
7150
7321
|
disableFeed?: Maybe<Feed>;
|
7322
|
+
/** Disables a user. */
|
7323
|
+
disableUser?: Maybe<User>;
|
7151
7324
|
/** Enables an alert. */
|
7152
7325
|
enableAlert?: Maybe<Alert>;
|
7153
7326
|
/** Enables a feed. */
|
7154
7327
|
enableFeed?: Maybe<Feed>;
|
7328
|
+
/** Enables a user. */
|
7329
|
+
enableUser?: Maybe<User>;
|
7155
7330
|
/** Extracts data using tool calling, from contents resulting from the provided filter criteria. */
|
7156
7331
|
extractContents?: Maybe<Array<Maybe<ExtractCompletion>>>;
|
7157
7332
|
/** Extracts data using tool calling, from text. */
|
@@ -7228,6 +7403,8 @@ export type Mutation = {
|
|
7228
7403
|
updateCategory?: Maybe<Category>;
|
7229
7404
|
/** Updates an existing collection. */
|
7230
7405
|
updateCollection?: Maybe<Collection>;
|
7406
|
+
/** Updates an existing connector. */
|
7407
|
+
updateConnector?: Maybe<Connector>;
|
7231
7408
|
/** Updates existing content. */
|
7232
7409
|
updateContent?: Maybe<Content>;
|
7233
7410
|
/** Updates an existing conversation. */
|
@@ -7278,6 +7455,8 @@ export type Mutation = {
|
|
7278
7455
|
updateSoftware?: Maybe<Software>;
|
7279
7456
|
/** Updates an existing LLM specification. */
|
7280
7457
|
updateSpecification?: Maybe<Specification>;
|
7458
|
+
/** Updates an existing user. */
|
7459
|
+
updateUser?: Maybe<User>;
|
7281
7460
|
/** Updates an existing content workflow. */
|
7282
7461
|
updateWorkflow?: Maybe<Workflow>;
|
7283
7462
|
};
|
@@ -7326,6 +7505,9 @@ export type MutationCreateCategoryArgs = {
|
|
7326
7505
|
export type MutationCreateCollectionArgs = {
|
7327
7506
|
collection: CollectionInput;
|
7328
7507
|
};
|
7508
|
+
export type MutationCreateConnectorArgs = {
|
7509
|
+
connector: ConnectorInput;
|
7510
|
+
};
|
7329
7511
|
export type MutationCreateConversationArgs = {
|
7330
7512
|
conversation: ConversationInput;
|
7331
7513
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -7397,6 +7579,9 @@ export type MutationCreateSoftwareArgs = {
|
|
7397
7579
|
export type MutationCreateSpecificationArgs = {
|
7398
7580
|
specification: SpecificationInput;
|
7399
7581
|
};
|
7582
|
+
export type MutationCreateUserArgs = {
|
7583
|
+
user: UserInput;
|
7584
|
+
};
|
7400
7585
|
export type MutationCreateWorkflowArgs = {
|
7401
7586
|
workflow: WorkflowInput;
|
7402
7587
|
};
|
@@ -7556,6 +7741,9 @@ export type MutationDeleteCollectionsArgs = {
|
|
7556
7741
|
ids: Array<Scalars['ID']['input']>;
|
7557
7742
|
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
7558
7743
|
};
|
7744
|
+
export type MutationDeleteConnectorArgs = {
|
7745
|
+
id: Scalars['ID']['input'];
|
7746
|
+
};
|
7559
7747
|
export type MutationDeleteContentArgs = {
|
7560
7748
|
id: Scalars['ID']['input'];
|
7561
7749
|
};
|
@@ -7720,6 +7908,9 @@ export type MutationDeleteSpecificationsArgs = {
|
|
7720
7908
|
ids: Array<Scalars['ID']['input']>;
|
7721
7909
|
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
7722
7910
|
};
|
7911
|
+
export type MutationDeleteUserArgs = {
|
7912
|
+
id: Scalars['ID']['input'];
|
7913
|
+
};
|
7723
7914
|
export type MutationDeleteWorkflowArgs = {
|
7724
7915
|
id: Scalars['ID']['input'];
|
7725
7916
|
};
|
@@ -7746,12 +7937,18 @@ export type MutationDisableAlertArgs = {
|
|
7746
7937
|
export type MutationDisableFeedArgs = {
|
7747
7938
|
id: Scalars['ID']['input'];
|
7748
7939
|
};
|
7940
|
+
export type MutationDisableUserArgs = {
|
7941
|
+
id: Scalars['ID']['input'];
|
7942
|
+
};
|
7749
7943
|
export type MutationEnableAlertArgs = {
|
7750
7944
|
id: Scalars['ID']['input'];
|
7751
7945
|
};
|
7752
7946
|
export type MutationEnableFeedArgs = {
|
7753
7947
|
id: Scalars['ID']['input'];
|
7754
7948
|
};
|
7949
|
+
export type MutationEnableUserArgs = {
|
7950
|
+
id: Scalars['ID']['input'];
|
7951
|
+
};
|
7755
7952
|
export type MutationExtractContentsArgs = {
|
7756
7953
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7757
7954
|
filter?: InputMaybe<ContentFilter>;
|
@@ -7977,6 +8174,9 @@ export type MutationUpdateCategoryArgs = {
|
|
7977
8174
|
export type MutationUpdateCollectionArgs = {
|
7978
8175
|
collection: CollectionUpdateInput;
|
7979
8176
|
};
|
8177
|
+
export type MutationUpdateConnectorArgs = {
|
8178
|
+
connector: ConnectorUpdateInput;
|
8179
|
+
};
|
7980
8180
|
export type MutationUpdateContentArgs = {
|
7981
8181
|
content: ContentUpdateInput;
|
7982
8182
|
};
|
@@ -8052,6 +8252,9 @@ export type MutationUpdateSoftwareArgs = {
|
|
8052
8252
|
export type MutationUpdateSpecificationArgs = {
|
8053
8253
|
specification: SpecificationUpdateInput;
|
8054
8254
|
};
|
8255
|
+
export type MutationUpdateUserArgs = {
|
8256
|
+
user: UserUpdateInput;
|
8257
|
+
};
|
8055
8258
|
export type MutationUpdateWorkflowArgs = {
|
8056
8259
|
workflow: WorkflowUpdateInput;
|
8057
8260
|
};
|
@@ -9938,6 +10141,10 @@ export type Query = {
|
|
9938
10141
|
collection?: Maybe<Collection>;
|
9939
10142
|
/** Retrieves collections based on the provided filter criteria. */
|
9940
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>;
|
9941
10148
|
/** Lookup content given its ID. */
|
9942
10149
|
content?: Maybe<Content>;
|
9943
10150
|
/** Retrieves contents based on the provided filter criteria. */
|
@@ -9998,6 +10205,8 @@ export type Query = {
|
|
9998
10205
|
countSoftwares?: Maybe<CountResult>;
|
9999
10206
|
/** Counts specifications based on the provided filter criteria. */
|
10000
10207
|
countSpecifications?: Maybe<CountResult>;
|
10208
|
+
/** Counts users based on the provided filter criteria. */
|
10209
|
+
countUsers?: Maybe<CountResult>;
|
10001
10210
|
/** Counts workflows based on the provided filter criteria. */
|
10002
10211
|
countWorkflows?: Maybe<CountResult>;
|
10003
10212
|
/** Retrieves project credits. */
|
@@ -10124,6 +10333,12 @@ export type Query = {
|
|
10124
10333
|
specifications?: Maybe<SpecificationResults>;
|
10125
10334
|
/** Retrieves project usage. */
|
10126
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>;
|
10127
10342
|
/** Lookup a workflow given its ID. */
|
10128
10343
|
workflow?: Maybe<Workflow>;
|
10129
10344
|
/** Retrieves workflows based on the provided filter criteria. */
|
@@ -10154,6 +10369,14 @@ export type QueryCollectionsArgs = {
|
|
10154
10369
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10155
10370
|
filter?: InputMaybe<CollectionFilter>;
|
10156
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
|
+
};
|
10157
10380
|
export type QueryContentArgs = {
|
10158
10381
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10159
10382
|
id: Scalars['ID']['input'];
|
@@ -10276,6 +10499,10 @@ export type QueryCountSpecificationsArgs = {
|
|
10276
10499
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10277
10500
|
filter?: InputMaybe<SpecificationFilter>;
|
10278
10501
|
};
|
10502
|
+
export type QueryCountUsersArgs = {
|
10503
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10504
|
+
filter?: InputMaybe<UserFilter>;
|
10505
|
+
};
|
10279
10506
|
export type QueryCountWorkflowsArgs = {
|
10280
10507
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10281
10508
|
filter?: InputMaybe<WorkflowFilter>;
|
@@ -10547,6 +10774,17 @@ export type QueryUsageArgs = {
|
|
10547
10774
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
10548
10775
|
startDate: Scalars['DateTime']['input'];
|
10549
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
|
+
};
|
10550
10788
|
export type QueryWorkflowArgs = {
|
10551
10789
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10552
10790
|
id: Scalars['ID']['input'];
|
@@ -12055,6 +12293,94 @@ export type UriResults = {
|
|
12055
12293
|
/** The URI results. */
|
12056
12294
|
results?: Maybe<Array<Maybe<Scalars['URL']['output']>>>;
|
12057
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
|
+
};
|
12058
12384
|
/** Represents video metadata. */
|
12059
12385
|
export type VideoMetadata = {
|
12060
12386
|
__typename?: 'VideoMetadata';
|
@@ -21997,6 +22323,184 @@ export type UpdateSpecificationMutation = {
|
|
21997
22323
|
serviceType?: ModelServiceTypes | null;
|
21998
22324
|
} | null;
|
21999
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
|
+
};
|
22000
22504
|
export type CountWorkflowsQueryVariables = Exact<{
|
22001
22505
|
filter?: InputMaybe<WorkflowFilter>;
|
22002
22506
|
}>;
|
@@ -22170,6 +22674,10 @@ export type CreateWorkflowMutation = {
|
|
22170
22674
|
__typename?: 'FHIREnrichmentProperties';
|
22171
22675
|
endpoint?: any | null;
|
22172
22676
|
} | null;
|
22677
|
+
diffbot?: {
|
22678
|
+
__typename?: 'DiffbotEnrichmentProperties';
|
22679
|
+
key?: any | null;
|
22680
|
+
} | null;
|
22173
22681
|
} | null;
|
22174
22682
|
} | null> | null;
|
22175
22683
|
} | null;
|
@@ -22401,6 +22909,10 @@ export type GetWorkflowQuery = {
|
|
22401
22909
|
__typename?: 'FHIREnrichmentProperties';
|
22402
22910
|
endpoint?: any | null;
|
22403
22911
|
} | null;
|
22912
|
+
diffbot?: {
|
22913
|
+
__typename?: 'DiffbotEnrichmentProperties';
|
22914
|
+
key?: any | null;
|
22915
|
+
} | null;
|
22404
22916
|
} | null;
|
22405
22917
|
} | null> | null;
|
22406
22918
|
} | null;
|
@@ -22598,6 +23110,10 @@ export type QueryWorkflowsQuery = {
|
|
22598
23110
|
__typename?: 'FHIREnrichmentProperties';
|
22599
23111
|
endpoint?: any | null;
|
22600
23112
|
} | null;
|
23113
|
+
diffbot?: {
|
23114
|
+
__typename?: 'DiffbotEnrichmentProperties';
|
23115
|
+
key?: any | null;
|
23116
|
+
} | null;
|
22601
23117
|
} | null;
|
22602
23118
|
} | null> | null;
|
22603
23119
|
} | null;
|
@@ -22788,6 +23304,10 @@ export type UpdateWorkflowMutation = {
|
|
22788
23304
|
__typename?: 'FHIREnrichmentProperties';
|
22789
23305
|
endpoint?: any | null;
|
22790
23306
|
} | null;
|
23307
|
+
diffbot?: {
|
23308
|
+
__typename?: 'DiffbotEnrichmentProperties';
|
23309
|
+
key?: any | null;
|
23310
|
+
} | null;
|
22791
23311
|
} | null;
|
22792
23312
|
} | null> | null;
|
22793
23313
|
} | null;
|
@@ -1,8 +1,8 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
4
|
-
exports.
|
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 */
|
@@ -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 = {}));
|
@@ -1739,6 +1761,14 @@ var UnitTypes;
|
|
1739
1761
|
/** Yard */
|
1740
1762
|
UnitTypes["Yard"] = "YARD";
|
1741
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 = {}));
|
1742
1772
|
/** Voyage model type */
|
1743
1773
|
var VoyageModels;
|
1744
1774
|
(function (VoyageModels) {
|