@kadoa/node-sdk 0.16.1 → 0.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/dist/browser/index.global.js +12 -12
- package/dist/browser/index.global.js.map +1 -1
- package/dist/index.d.mts +126 -21
- package/dist/index.d.ts +126 -21
- package/dist/index.js +72 -24
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +133 -87
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -11,11 +11,23 @@ import { RawAxiosRequestConfig, AxiosPromise, AxiosInstance, AxiosError } from '
|
|
|
11
11
|
* https://openapi-generator.tech
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
|
+
interface AWSv4Configuration {
|
|
15
|
+
options?: {
|
|
16
|
+
region?: string;
|
|
17
|
+
service?: string;
|
|
18
|
+
};
|
|
19
|
+
credentials?: {
|
|
20
|
+
accessKeyId?: string;
|
|
21
|
+
secretAccessKey?: string;
|
|
22
|
+
sessionToken?: string;
|
|
23
|
+
};
|
|
24
|
+
}
|
|
14
25
|
interface ConfigurationParameters {
|
|
15
26
|
apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
|
|
16
27
|
username?: string;
|
|
17
28
|
password?: string;
|
|
18
29
|
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
|
|
30
|
+
awsv4?: AWSv4Configuration;
|
|
19
31
|
basePath?: string;
|
|
20
32
|
serverIndex?: number;
|
|
21
33
|
baseOptions?: any;
|
|
@@ -41,6 +53,17 @@ declare class Configuration {
|
|
|
41
53
|
* @param scopes oauth2 scope
|
|
42
54
|
*/
|
|
43
55
|
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
|
|
56
|
+
/**
|
|
57
|
+
* parameter for aws4 signature security
|
|
58
|
+
* @param {Object} AWS4Signature - AWS4 Signature security
|
|
59
|
+
* @param {string} options.region - aws region
|
|
60
|
+
* @param {string} options.service - name of the service.
|
|
61
|
+
* @param {string} credentials.accessKeyId - aws access key id
|
|
62
|
+
* @param {string} credentials.secretAccessKey - aws access key
|
|
63
|
+
* @param {string} credentials.sessionToken - aws session token
|
|
64
|
+
* @memberof Configuration
|
|
65
|
+
*/
|
|
66
|
+
awsv4?: AWSv4Configuration;
|
|
44
67
|
/**
|
|
45
68
|
* override base path
|
|
46
69
|
*/
|
|
@@ -622,9 +645,9 @@ interface AgenticWorkflow {
|
|
|
622
645
|
*/
|
|
623
646
|
'dataValidationEnabled'?: boolean;
|
|
624
647
|
/**
|
|
625
|
-
* Additional
|
|
648
|
+
* Additional data for the workflow (e.g. IDs from your system to link data)
|
|
626
649
|
*/
|
|
627
|
-
'additionalData'?:
|
|
650
|
+
'additionalData'?: any | null;
|
|
628
651
|
/**
|
|
629
652
|
* Natural language instructions for the AI agent (10-5000 characters). Describe what data to extract and how to navigate the site
|
|
630
653
|
*/
|
|
@@ -1142,13 +1165,13 @@ interface WorkflowWithEntityAndFields {
|
|
|
1142
1165
|
*/
|
|
1143
1166
|
'dataValidationEnabled'?: boolean;
|
|
1144
1167
|
/**
|
|
1145
|
-
* Additional
|
|
1168
|
+
* Additional data for the workflow (e.g. IDs from your system to link data)
|
|
1146
1169
|
*/
|
|
1147
|
-
'additionalData'?:
|
|
1170
|
+
'additionalData'?: any | null;
|
|
1148
1171
|
/**
|
|
1149
1172
|
* Entity name for extraction (e.g., \'Product\', \'JobListing\')
|
|
1150
1173
|
*/
|
|
1151
|
-
'
|
|
1174
|
+
'entity': string;
|
|
1152
1175
|
/**
|
|
1153
1176
|
* Array of fields to extract from each item. Each field defines a property to capture (e.g., title, price, description)
|
|
1154
1177
|
*/
|
|
@@ -1250,13 +1273,9 @@ interface WorkflowWithExistingSchema {
|
|
|
1250
1273
|
*/
|
|
1251
1274
|
'dataValidationEnabled'?: boolean;
|
|
1252
1275
|
/**
|
|
1253
|
-
* Additional
|
|
1276
|
+
* Additional data for the workflow (e.g. IDs from your system to link data)
|
|
1254
1277
|
*/
|
|
1255
|
-
'additionalData'?:
|
|
1256
|
-
/**
|
|
1257
|
-
* Entity name for extraction
|
|
1258
|
-
*/
|
|
1259
|
-
'entity'?: string;
|
|
1278
|
+
'additionalData'?: any | null;
|
|
1260
1279
|
/**
|
|
1261
1280
|
* ID of an existing schema configuration. Use this to reference a previously defined schema without re-defining extraction fields
|
|
1262
1281
|
*/
|
|
@@ -2563,10 +2582,6 @@ interface V4WorkflowsGet200ResponseWorkflowsInner {
|
|
|
2563
2582
|
* Maximum number of items to scrape
|
|
2564
2583
|
*/
|
|
2565
2584
|
'limit'?: number;
|
|
2566
|
-
/**
|
|
2567
|
-
* Additional static data for the workflow
|
|
2568
|
-
*/
|
|
2569
|
-
'additionalData'?: object;
|
|
2570
2585
|
/**
|
|
2571
2586
|
* When the last job finished
|
|
2572
2587
|
*/
|
|
@@ -2631,6 +2646,12 @@ interface V4WorkflowsGet200ResponseWorkflowsInner {
|
|
|
2631
2646
|
*/
|
|
2632
2647
|
'monitoring'?: boolean;
|
|
2633
2648
|
'notificationConfig'?: V4WorkflowsWorkflowIdGet200ResponseNotificationConfig;
|
|
2649
|
+
/**
|
|
2650
|
+
* Number of connected channels per event type
|
|
2651
|
+
*/
|
|
2652
|
+
'channelCounts'?: {
|
|
2653
|
+
[key: string]: number;
|
|
2654
|
+
};
|
|
2634
2655
|
}
|
|
2635
2656
|
declare const V4WorkflowsGet200ResponseWorkflowsInnerStateEnum: {
|
|
2636
2657
|
readonly Active: "ACTIVE";
|
|
@@ -3160,6 +3181,12 @@ interface V4WorkflowsWorkflowIdGet200Response {
|
|
|
3160
3181
|
'dataLinking'?: V4WorkflowsWorkflowIdGet200ResponseDataLinking;
|
|
3161
3182
|
'validationStatistics'?: V4WorkflowsWorkflowIdGet200ResponseValidationStatistics;
|
|
3162
3183
|
'notificationConfig'?: V4WorkflowsWorkflowIdGet200ResponseNotificationConfig;
|
|
3184
|
+
/**
|
|
3185
|
+
* Number of connected channels per event type
|
|
3186
|
+
*/
|
|
3187
|
+
'channelCounts'?: {
|
|
3188
|
+
[key: string]: number;
|
|
3189
|
+
};
|
|
3163
3190
|
}
|
|
3164
3191
|
declare const V4WorkflowsWorkflowIdGet200ResponseStateEnum: {
|
|
3165
3192
|
readonly Active: "ACTIVE";
|
|
@@ -3832,6 +3859,36 @@ type WebhookChannelConfigHttpMethodEnum = typeof WebhookChannelConfigHttpMethodE
|
|
|
3832
3859
|
*/
|
|
3833
3860
|
type V5NotificationsChannelsGet200ResponseDataChannelsInnerConfig = EmailChannelConfig | SlackChannelConfig | WebhookChannelConfig | object;
|
|
3834
3861
|
|
|
3862
|
+
/**
|
|
3863
|
+
* Kadoa API
|
|
3864
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
3865
|
+
*
|
|
3866
|
+
* The version of the OpenAPI document: 3.0.0
|
|
3867
|
+
* Contact: support@kadoa.com
|
|
3868
|
+
*
|
|
3869
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3870
|
+
* https://openapi-generator.tech
|
|
3871
|
+
* Do not edit the class manually.
|
|
3872
|
+
*/
|
|
3873
|
+
interface V5NotificationsChannelsGet200ResponseDataChannelsInnerLinkedConfigurationsInner {
|
|
3874
|
+
/**
|
|
3875
|
+
* The configuration ID
|
|
3876
|
+
*/
|
|
3877
|
+
'configurationId'?: string;
|
|
3878
|
+
/**
|
|
3879
|
+
* Workflow ID if this is a workflow-specific configuration, null for workspace-level configurations
|
|
3880
|
+
*/
|
|
3881
|
+
'workflowId'?: string | null;
|
|
3882
|
+
/**
|
|
3883
|
+
* Event type for this configuration (e.g., workflow_sample_finished, workflow_data_change)
|
|
3884
|
+
*/
|
|
3885
|
+
'eventType'?: string;
|
|
3886
|
+
/**
|
|
3887
|
+
* Whether this configuration is enabled
|
|
3888
|
+
*/
|
|
3889
|
+
'enabled'?: boolean;
|
|
3890
|
+
}
|
|
3891
|
+
|
|
3835
3892
|
/**
|
|
3836
3893
|
* Kadoa API
|
|
3837
3894
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -3849,10 +3906,48 @@ interface V5NotificationsChannelsGet200ResponseDataChannelsInner {
|
|
|
3849
3906
|
'name'?: string;
|
|
3850
3907
|
'channelType'?: string;
|
|
3851
3908
|
'config'?: V5NotificationsChannelsGet200ResponseDataChannelsInnerConfig;
|
|
3909
|
+
/**
|
|
3910
|
+
* List of notification configurations linked to this channel
|
|
3911
|
+
*/
|
|
3912
|
+
'linkedConfigurations'?: Array<V5NotificationsChannelsGet200ResponseDataChannelsInnerLinkedConfigurationsInner>;
|
|
3852
3913
|
'createdAt'?: string;
|
|
3853
3914
|
'updatedAt'?: string;
|
|
3854
3915
|
}
|
|
3855
3916
|
|
|
3917
|
+
/**
|
|
3918
|
+
* Kadoa API
|
|
3919
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
3920
|
+
*
|
|
3921
|
+
* The version of the OpenAPI document: 3.0.0
|
|
3922
|
+
* Contact: support@kadoa.com
|
|
3923
|
+
*
|
|
3924
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3925
|
+
* https://openapi-generator.tech
|
|
3926
|
+
* Do not edit the class manually.
|
|
3927
|
+
*/
|
|
3928
|
+
|
|
3929
|
+
interface V5NotificationsChannelsChannelIdGet200ResponseData {
|
|
3930
|
+
'channel'?: V5NotificationsChannelsGet200ResponseDataChannelsInner;
|
|
3931
|
+
}
|
|
3932
|
+
|
|
3933
|
+
/**
|
|
3934
|
+
* Kadoa API
|
|
3935
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
3936
|
+
*
|
|
3937
|
+
* The version of the OpenAPI document: 3.0.0
|
|
3938
|
+
* Contact: support@kadoa.com
|
|
3939
|
+
*
|
|
3940
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3941
|
+
* https://openapi-generator.tech
|
|
3942
|
+
* Do not edit the class manually.
|
|
3943
|
+
*/
|
|
3944
|
+
|
|
3945
|
+
interface V5NotificationsChannelsChannelIdGet200Response {
|
|
3946
|
+
'data'?: V5NotificationsChannelsChannelIdGet200ResponseData;
|
|
3947
|
+
'status'?: string;
|
|
3948
|
+
'message'?: string;
|
|
3949
|
+
}
|
|
3950
|
+
|
|
3856
3951
|
/**
|
|
3857
3952
|
* Kadoa API
|
|
3858
3953
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -4506,7 +4601,7 @@ interface NotificationsApiInterface {
|
|
|
4506
4601
|
* @param {*} [options] Override http request option.
|
|
4507
4602
|
* @throws {RequiredError}
|
|
4508
4603
|
*/
|
|
4509
|
-
v5NotificationsChannelsChannelIdGet(requestParameters: NotificationsApiV5NotificationsChannelsChannelIdGetRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
4604
|
+
v5NotificationsChannelsChannelIdGet(requestParameters: NotificationsApiV5NotificationsChannelsChannelIdGetRequest, options?: RawAxiosRequestConfig): AxiosPromise<V5NotificationsChannelsChannelIdGet200Response>;
|
|
4510
4605
|
/**
|
|
4511
4606
|
*
|
|
4512
4607
|
* @summary Update a notification channel
|
|
@@ -4620,6 +4715,10 @@ interface NotificationsApiV5NotificationsChannelsChannelIdGetRequest {
|
|
|
4620
4715
|
* Channel ID
|
|
4621
4716
|
*/
|
|
4622
4717
|
readonly channelId: string;
|
|
4718
|
+
/**
|
|
4719
|
+
* Include linked notification configurations with workflow information
|
|
4720
|
+
*/
|
|
4721
|
+
readonly includeConfigurations?: boolean;
|
|
4623
4722
|
}
|
|
4624
4723
|
/**
|
|
4625
4724
|
* Request parameters for v5NotificationsChannelsChannelIdPut operation in NotificationsApi.
|
|
@@ -4639,6 +4738,10 @@ interface NotificationsApiV5NotificationsChannelsGetRequest {
|
|
|
4639
4738
|
* Workflow ID (optional, if provided returns channels linked to this workflow)
|
|
4640
4739
|
*/
|
|
4641
4740
|
readonly workflowId?: string;
|
|
4741
|
+
/**
|
|
4742
|
+
* Include linked notification configurations with workflow information
|
|
4743
|
+
*/
|
|
4744
|
+
readonly includeConfigurations?: boolean;
|
|
4642
4745
|
}
|
|
4643
4746
|
/**
|
|
4644
4747
|
* Request parameters for v5NotificationsChannelsPost operation in NotificationsApi.
|
|
@@ -5901,7 +6004,7 @@ interface JobWaitOptions extends PollingOptions {
|
|
|
5901
6004
|
interface CreateWorkflowInput {
|
|
5902
6005
|
urls: string[];
|
|
5903
6006
|
navigationMode: NavigationMode;
|
|
5904
|
-
name
|
|
6007
|
+
name?: string;
|
|
5905
6008
|
description?: string;
|
|
5906
6009
|
schemaId?: string;
|
|
5907
6010
|
entity?: string;
|
|
@@ -5915,6 +6018,8 @@ interface CreateWorkflowInput {
|
|
|
5915
6018
|
schedules?: string[];
|
|
5916
6019
|
additionalData?: Record<string, unknown>;
|
|
5917
6020
|
}
|
|
6021
|
+
declare const TERMINAL_JOB_STATES: Set<JobStateEnum>;
|
|
6022
|
+
declare const TERMINAL_RUN_STATES: Set<string>;
|
|
5918
6023
|
declare class WorkflowsCoreService {
|
|
5919
6024
|
private readonly workflowsApi;
|
|
5920
6025
|
constructor(workflowsApi: WorkflowsApiInterface);
|
|
@@ -5954,7 +6059,7 @@ interface ExtractionOptionsInternal {
|
|
|
5954
6059
|
prompt?: string;
|
|
5955
6060
|
mode: "run" | "submit";
|
|
5956
6061
|
navigationMode: NavigationMode;
|
|
5957
|
-
name
|
|
6062
|
+
name?: string;
|
|
5958
6063
|
description?: string;
|
|
5959
6064
|
location: LocationConfig;
|
|
5960
6065
|
bypassPreview?: boolean;
|
|
@@ -6231,7 +6336,7 @@ declare class ExtractionBuilderService {
|
|
|
6231
6336
|
}
|
|
6232
6337
|
|
|
6233
6338
|
interface RealtimeConfig {
|
|
6234
|
-
|
|
6339
|
+
apiKey: string;
|
|
6235
6340
|
heartbeatInterval?: number;
|
|
6236
6341
|
reconnectDelay?: number;
|
|
6237
6342
|
missedHeartbeatsLimit?: number;
|
|
@@ -6244,7 +6349,7 @@ declare class Realtime {
|
|
|
6244
6349
|
private isConnecting;
|
|
6245
6350
|
private missedHeartbeatsLimit;
|
|
6246
6351
|
private missedHeartbeatCheckTimer?;
|
|
6247
|
-
private
|
|
6352
|
+
private apiKey?;
|
|
6248
6353
|
private eventListeners;
|
|
6249
6354
|
private connectionListeners;
|
|
6250
6355
|
private errorListeners;
|
|
@@ -6808,4 +6913,4 @@ declare class KadoaHttpException extends KadoaSdkException {
|
|
|
6808
6913
|
static mapStatusToCode(errorOrStatus: AxiosError | number): KadoaErrorCode;
|
|
6809
6914
|
}
|
|
6810
6915
|
|
|
6811
|
-
export { type BulkApproveRulesRequest, type BulkApproveRulesResponseData, type BulkDeleteRulesRequest, type BulkDeleteRulesResponseData, type Category, type ChannelConfig, type ChannelSetupRequestConfig, type CreateChannelRequest, type CreateRuleRequest, type CreateSchemaRequest, type CreateSettingsRequest, type CreateWorkflowInput, type CreateWorkflowRequest, type CreateWorkflowWithCustomSchemaRequest, type CreatedExtraction, DataFetcherService, type DataPagination, DataSortOrder, type DataType, type DeleteAllRulesRequest, type DeleteAllRulesResponseData, type DisableRuleRequest, ERROR_MESSAGES, type EmailChannelConfig, EntityResolverService, type ExtractOptions, ExtractionBuilderService, type ExtractionOptions, type ExtractionResult, ExtractionService, FetchDataOptions, type FetchDataResult, type FieldExample, type FieldOptions, type FieldType, type FinishedExtraction, type GenerateRuleRequest, type GenerateRulesRequest, type GetAnomaliesByRuleResponse, type GetAnomalyRulePageResponse, type GetJobResponse, type GetValidationResponse, type GetWorkflowResponse, type JobId, JobStateEnum, type JobWaitOptions, KadoaClient, type KadoaClientConfig, KadoaErrorCode, KadoaHttpException, KadoaSdkException, type KadoaUser, ListChannelsRequest, ListRulesRequest, type ListRulesResponse, ListSettingsRequest, type ListValidationsResponse, ListWorkflowValidationsRequest, ListWorkflowsRequest, type LocationConfig, type MetadataKey, type MonitoringConfig, type MonitoringField, type MonitoringOperator, MonitoringStatus, type NavigationMode, type NotificationChannel, type NotificationChannelConfig, NotificationChannelType, NotificationChannelsService, type NotificationDomain, type NotificationOptions, type NotificationSettings, type NotificationSettingsEventType, V5NotificationsSettingsGetEventTypeEnum as NotificationSettingsEventTypeEnum, NotificationSettingsService, type NotificationSetupRequestChannels, NotificationSetupService, type PollingOptions, type PreparedExtraction, type RawFormat, Realtime, ResponseFormat, type Rule, RuleStatus, RuleType, type RunWorkflowRequest, type RunWorkflowResponse, type ScheduleValidationResponse, SchemaBuilder, type SchemaField as SchemaDefinitionField, type SchemaField$1 as SchemaField, SchemaFieldDataType, type SchemaResponse, SchemasService, type SetupWorkflowNotificationSettingsRequest, type SetupWorkspaceNotificationSettingsRequest, type SlackChannelConfig, type SubmitExtractionResult, type SubmittedExtraction, type ToggleValidationResponse, UpdateInterval, type UpdateRuleRequest, type UpdateSchemaRequest, type UpdateWorkflowRequest, type UpdateWorkflowResponse, UserService, ValidationCoreService, type ValidationDomain, ValidationRulesService, ValidationStrategy, type WaitForReadyOptions, type WaitOptions, type WebhookChannelConfig, type WebhookChannelConfigAuth, type WebhookHttpMethod, type WebsocketChannelConfig, type WorkflowDataResponse, type WorkflowDetailsResponse, WorkflowDisplayStateEnum, type WorkflowId, type WorkflowInterval, type WorkflowMonitoringConfig, type WorkflowResponse, WorkflowState, WorkflowStateEnum, type WorkflowsApiInterface, WorkflowsCoreService, pollUntil, validateAdditionalData };
|
|
6916
|
+
export { type BulkApproveRulesRequest, type BulkApproveRulesResponseData, type BulkDeleteRulesRequest, type BulkDeleteRulesResponseData, type Category, type ChannelConfig, type ChannelSetupRequestConfig, type CreateChannelRequest, type CreateRuleRequest, type CreateSchemaRequest, type CreateSettingsRequest, type CreateWorkflowInput, type CreateWorkflowRequest, type CreateWorkflowWithCustomSchemaRequest, type CreatedExtraction, DataFetcherService, type DataPagination, DataSortOrder, type DataType, type DeleteAllRulesRequest, type DeleteAllRulesResponseData, type DisableRuleRequest, ERROR_MESSAGES, type EmailChannelConfig, EntityResolverService, type ExtractOptions, ExtractionBuilderService, type ExtractionOptions, type ExtractionResult, ExtractionService, FetchDataOptions, type FetchDataResult, type FieldExample, type FieldOptions, type FieldType, type FinishedExtraction, type GenerateRuleRequest, type GenerateRulesRequest, type GetAnomaliesByRuleResponse, type GetAnomalyRulePageResponse, type GetJobResponse, type GetValidationResponse, type GetWorkflowResponse, type JobId, JobStateEnum, type JobWaitOptions, KadoaClient, type KadoaClientConfig, KadoaErrorCode, KadoaHttpException, KadoaSdkException, type KadoaUser, ListChannelsRequest, ListRulesRequest, type ListRulesResponse, ListSettingsRequest, type ListValidationsResponse, ListWorkflowValidationsRequest, ListWorkflowsRequest, type LocationConfig, type MetadataKey, type MonitoringConfig, type MonitoringField, type MonitoringOperator, MonitoringStatus, type NavigationMode, type NotificationChannel, type NotificationChannelConfig, NotificationChannelType, NotificationChannelsService, type NotificationDomain, type NotificationOptions, type NotificationSettings, type NotificationSettingsEventType, V5NotificationsSettingsGetEventTypeEnum as NotificationSettingsEventTypeEnum, NotificationSettingsService, type NotificationSetupRequestChannels, NotificationSetupService, type PollingOptions, type PreparedExtraction, type RawFormat, Realtime, type RealtimeConfig, ResponseFormat, type Rule, RuleStatus, RuleType, type RunWorkflowRequest, type RunWorkflowResponse, type ScheduleValidationResponse, SchemaBuilder, type SchemaField as SchemaDefinitionField, type SchemaField$1 as SchemaField, SchemaFieldDataType, type SchemaResponse, SchemasService, type SetupWorkflowNotificationSettingsRequest, type SetupWorkspaceNotificationSettingsRequest, type SlackChannelConfig, type SubmitExtractionResult, type SubmittedExtraction, TERMINAL_JOB_STATES, TERMINAL_RUN_STATES, type ToggleValidationResponse, UpdateInterval, type UpdateRuleRequest, type UpdateSchemaRequest, type UpdateWorkflowRequest, type UpdateWorkflowResponse, UserService, ValidationCoreService, type ValidationDomain, ValidationRulesService, ValidationStrategy, type WaitForReadyOptions, type WaitOptions, type WebhookChannelConfig, type WebhookChannelConfigAuth, type WebhookHttpMethod, type WebsocketChannelConfig, type WorkflowDataResponse, type WorkflowDetailsResponse, WorkflowDisplayStateEnum, type WorkflowId, type WorkflowInterval, type WorkflowMonitoringConfig, type WorkflowResponse, WorkflowState, WorkflowStateEnum, type WorkflowsApiInterface, WorkflowsCoreService, pollUntil, validateAdditionalData };
|
package/dist/index.d.ts
CHANGED
|
@@ -11,11 +11,23 @@ import { RawAxiosRequestConfig, AxiosPromise, AxiosInstance, AxiosError } from '
|
|
|
11
11
|
* https://openapi-generator.tech
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
|
+
interface AWSv4Configuration {
|
|
15
|
+
options?: {
|
|
16
|
+
region?: string;
|
|
17
|
+
service?: string;
|
|
18
|
+
};
|
|
19
|
+
credentials?: {
|
|
20
|
+
accessKeyId?: string;
|
|
21
|
+
secretAccessKey?: string;
|
|
22
|
+
sessionToken?: string;
|
|
23
|
+
};
|
|
24
|
+
}
|
|
14
25
|
interface ConfigurationParameters {
|
|
15
26
|
apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
|
|
16
27
|
username?: string;
|
|
17
28
|
password?: string;
|
|
18
29
|
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
|
|
30
|
+
awsv4?: AWSv4Configuration;
|
|
19
31
|
basePath?: string;
|
|
20
32
|
serverIndex?: number;
|
|
21
33
|
baseOptions?: any;
|
|
@@ -41,6 +53,17 @@ declare class Configuration {
|
|
|
41
53
|
* @param scopes oauth2 scope
|
|
42
54
|
*/
|
|
43
55
|
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
|
|
56
|
+
/**
|
|
57
|
+
* parameter for aws4 signature security
|
|
58
|
+
* @param {Object} AWS4Signature - AWS4 Signature security
|
|
59
|
+
* @param {string} options.region - aws region
|
|
60
|
+
* @param {string} options.service - name of the service.
|
|
61
|
+
* @param {string} credentials.accessKeyId - aws access key id
|
|
62
|
+
* @param {string} credentials.secretAccessKey - aws access key
|
|
63
|
+
* @param {string} credentials.sessionToken - aws session token
|
|
64
|
+
* @memberof Configuration
|
|
65
|
+
*/
|
|
66
|
+
awsv4?: AWSv4Configuration;
|
|
44
67
|
/**
|
|
45
68
|
* override base path
|
|
46
69
|
*/
|
|
@@ -622,9 +645,9 @@ interface AgenticWorkflow {
|
|
|
622
645
|
*/
|
|
623
646
|
'dataValidationEnabled'?: boolean;
|
|
624
647
|
/**
|
|
625
|
-
* Additional
|
|
648
|
+
* Additional data for the workflow (e.g. IDs from your system to link data)
|
|
626
649
|
*/
|
|
627
|
-
'additionalData'?:
|
|
650
|
+
'additionalData'?: any | null;
|
|
628
651
|
/**
|
|
629
652
|
* Natural language instructions for the AI agent (10-5000 characters). Describe what data to extract and how to navigate the site
|
|
630
653
|
*/
|
|
@@ -1142,13 +1165,13 @@ interface WorkflowWithEntityAndFields {
|
|
|
1142
1165
|
*/
|
|
1143
1166
|
'dataValidationEnabled'?: boolean;
|
|
1144
1167
|
/**
|
|
1145
|
-
* Additional
|
|
1168
|
+
* Additional data for the workflow (e.g. IDs from your system to link data)
|
|
1146
1169
|
*/
|
|
1147
|
-
'additionalData'?:
|
|
1170
|
+
'additionalData'?: any | null;
|
|
1148
1171
|
/**
|
|
1149
1172
|
* Entity name for extraction (e.g., \'Product\', \'JobListing\')
|
|
1150
1173
|
*/
|
|
1151
|
-
'
|
|
1174
|
+
'entity': string;
|
|
1152
1175
|
/**
|
|
1153
1176
|
* Array of fields to extract from each item. Each field defines a property to capture (e.g., title, price, description)
|
|
1154
1177
|
*/
|
|
@@ -1250,13 +1273,9 @@ interface WorkflowWithExistingSchema {
|
|
|
1250
1273
|
*/
|
|
1251
1274
|
'dataValidationEnabled'?: boolean;
|
|
1252
1275
|
/**
|
|
1253
|
-
* Additional
|
|
1276
|
+
* Additional data for the workflow (e.g. IDs from your system to link data)
|
|
1254
1277
|
*/
|
|
1255
|
-
'additionalData'?:
|
|
1256
|
-
/**
|
|
1257
|
-
* Entity name for extraction
|
|
1258
|
-
*/
|
|
1259
|
-
'entity'?: string;
|
|
1278
|
+
'additionalData'?: any | null;
|
|
1260
1279
|
/**
|
|
1261
1280
|
* ID of an existing schema configuration. Use this to reference a previously defined schema without re-defining extraction fields
|
|
1262
1281
|
*/
|
|
@@ -2563,10 +2582,6 @@ interface V4WorkflowsGet200ResponseWorkflowsInner {
|
|
|
2563
2582
|
* Maximum number of items to scrape
|
|
2564
2583
|
*/
|
|
2565
2584
|
'limit'?: number;
|
|
2566
|
-
/**
|
|
2567
|
-
* Additional static data for the workflow
|
|
2568
|
-
*/
|
|
2569
|
-
'additionalData'?: object;
|
|
2570
2585
|
/**
|
|
2571
2586
|
* When the last job finished
|
|
2572
2587
|
*/
|
|
@@ -2631,6 +2646,12 @@ interface V4WorkflowsGet200ResponseWorkflowsInner {
|
|
|
2631
2646
|
*/
|
|
2632
2647
|
'monitoring'?: boolean;
|
|
2633
2648
|
'notificationConfig'?: V4WorkflowsWorkflowIdGet200ResponseNotificationConfig;
|
|
2649
|
+
/**
|
|
2650
|
+
* Number of connected channels per event type
|
|
2651
|
+
*/
|
|
2652
|
+
'channelCounts'?: {
|
|
2653
|
+
[key: string]: number;
|
|
2654
|
+
};
|
|
2634
2655
|
}
|
|
2635
2656
|
declare const V4WorkflowsGet200ResponseWorkflowsInnerStateEnum: {
|
|
2636
2657
|
readonly Active: "ACTIVE";
|
|
@@ -3160,6 +3181,12 @@ interface V4WorkflowsWorkflowIdGet200Response {
|
|
|
3160
3181
|
'dataLinking'?: V4WorkflowsWorkflowIdGet200ResponseDataLinking;
|
|
3161
3182
|
'validationStatistics'?: V4WorkflowsWorkflowIdGet200ResponseValidationStatistics;
|
|
3162
3183
|
'notificationConfig'?: V4WorkflowsWorkflowIdGet200ResponseNotificationConfig;
|
|
3184
|
+
/**
|
|
3185
|
+
* Number of connected channels per event type
|
|
3186
|
+
*/
|
|
3187
|
+
'channelCounts'?: {
|
|
3188
|
+
[key: string]: number;
|
|
3189
|
+
};
|
|
3163
3190
|
}
|
|
3164
3191
|
declare const V4WorkflowsWorkflowIdGet200ResponseStateEnum: {
|
|
3165
3192
|
readonly Active: "ACTIVE";
|
|
@@ -3832,6 +3859,36 @@ type WebhookChannelConfigHttpMethodEnum = typeof WebhookChannelConfigHttpMethodE
|
|
|
3832
3859
|
*/
|
|
3833
3860
|
type V5NotificationsChannelsGet200ResponseDataChannelsInnerConfig = EmailChannelConfig | SlackChannelConfig | WebhookChannelConfig | object;
|
|
3834
3861
|
|
|
3862
|
+
/**
|
|
3863
|
+
* Kadoa API
|
|
3864
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
3865
|
+
*
|
|
3866
|
+
* The version of the OpenAPI document: 3.0.0
|
|
3867
|
+
* Contact: support@kadoa.com
|
|
3868
|
+
*
|
|
3869
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3870
|
+
* https://openapi-generator.tech
|
|
3871
|
+
* Do not edit the class manually.
|
|
3872
|
+
*/
|
|
3873
|
+
interface V5NotificationsChannelsGet200ResponseDataChannelsInnerLinkedConfigurationsInner {
|
|
3874
|
+
/**
|
|
3875
|
+
* The configuration ID
|
|
3876
|
+
*/
|
|
3877
|
+
'configurationId'?: string;
|
|
3878
|
+
/**
|
|
3879
|
+
* Workflow ID if this is a workflow-specific configuration, null for workspace-level configurations
|
|
3880
|
+
*/
|
|
3881
|
+
'workflowId'?: string | null;
|
|
3882
|
+
/**
|
|
3883
|
+
* Event type for this configuration (e.g., workflow_sample_finished, workflow_data_change)
|
|
3884
|
+
*/
|
|
3885
|
+
'eventType'?: string;
|
|
3886
|
+
/**
|
|
3887
|
+
* Whether this configuration is enabled
|
|
3888
|
+
*/
|
|
3889
|
+
'enabled'?: boolean;
|
|
3890
|
+
}
|
|
3891
|
+
|
|
3835
3892
|
/**
|
|
3836
3893
|
* Kadoa API
|
|
3837
3894
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -3849,10 +3906,48 @@ interface V5NotificationsChannelsGet200ResponseDataChannelsInner {
|
|
|
3849
3906
|
'name'?: string;
|
|
3850
3907
|
'channelType'?: string;
|
|
3851
3908
|
'config'?: V5NotificationsChannelsGet200ResponseDataChannelsInnerConfig;
|
|
3909
|
+
/**
|
|
3910
|
+
* List of notification configurations linked to this channel
|
|
3911
|
+
*/
|
|
3912
|
+
'linkedConfigurations'?: Array<V5NotificationsChannelsGet200ResponseDataChannelsInnerLinkedConfigurationsInner>;
|
|
3852
3913
|
'createdAt'?: string;
|
|
3853
3914
|
'updatedAt'?: string;
|
|
3854
3915
|
}
|
|
3855
3916
|
|
|
3917
|
+
/**
|
|
3918
|
+
* Kadoa API
|
|
3919
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
3920
|
+
*
|
|
3921
|
+
* The version of the OpenAPI document: 3.0.0
|
|
3922
|
+
* Contact: support@kadoa.com
|
|
3923
|
+
*
|
|
3924
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3925
|
+
* https://openapi-generator.tech
|
|
3926
|
+
* Do not edit the class manually.
|
|
3927
|
+
*/
|
|
3928
|
+
|
|
3929
|
+
interface V5NotificationsChannelsChannelIdGet200ResponseData {
|
|
3930
|
+
'channel'?: V5NotificationsChannelsGet200ResponseDataChannelsInner;
|
|
3931
|
+
}
|
|
3932
|
+
|
|
3933
|
+
/**
|
|
3934
|
+
* Kadoa API
|
|
3935
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
3936
|
+
*
|
|
3937
|
+
* The version of the OpenAPI document: 3.0.0
|
|
3938
|
+
* Contact: support@kadoa.com
|
|
3939
|
+
*
|
|
3940
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3941
|
+
* https://openapi-generator.tech
|
|
3942
|
+
* Do not edit the class manually.
|
|
3943
|
+
*/
|
|
3944
|
+
|
|
3945
|
+
interface V5NotificationsChannelsChannelIdGet200Response {
|
|
3946
|
+
'data'?: V5NotificationsChannelsChannelIdGet200ResponseData;
|
|
3947
|
+
'status'?: string;
|
|
3948
|
+
'message'?: string;
|
|
3949
|
+
}
|
|
3950
|
+
|
|
3856
3951
|
/**
|
|
3857
3952
|
* Kadoa API
|
|
3858
3953
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
@@ -4506,7 +4601,7 @@ interface NotificationsApiInterface {
|
|
|
4506
4601
|
* @param {*} [options] Override http request option.
|
|
4507
4602
|
* @throws {RequiredError}
|
|
4508
4603
|
*/
|
|
4509
|
-
v5NotificationsChannelsChannelIdGet(requestParameters: NotificationsApiV5NotificationsChannelsChannelIdGetRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
4604
|
+
v5NotificationsChannelsChannelIdGet(requestParameters: NotificationsApiV5NotificationsChannelsChannelIdGetRequest, options?: RawAxiosRequestConfig): AxiosPromise<V5NotificationsChannelsChannelIdGet200Response>;
|
|
4510
4605
|
/**
|
|
4511
4606
|
*
|
|
4512
4607
|
* @summary Update a notification channel
|
|
@@ -4620,6 +4715,10 @@ interface NotificationsApiV5NotificationsChannelsChannelIdGetRequest {
|
|
|
4620
4715
|
* Channel ID
|
|
4621
4716
|
*/
|
|
4622
4717
|
readonly channelId: string;
|
|
4718
|
+
/**
|
|
4719
|
+
* Include linked notification configurations with workflow information
|
|
4720
|
+
*/
|
|
4721
|
+
readonly includeConfigurations?: boolean;
|
|
4623
4722
|
}
|
|
4624
4723
|
/**
|
|
4625
4724
|
* Request parameters for v5NotificationsChannelsChannelIdPut operation in NotificationsApi.
|
|
@@ -4639,6 +4738,10 @@ interface NotificationsApiV5NotificationsChannelsGetRequest {
|
|
|
4639
4738
|
* Workflow ID (optional, if provided returns channels linked to this workflow)
|
|
4640
4739
|
*/
|
|
4641
4740
|
readonly workflowId?: string;
|
|
4741
|
+
/**
|
|
4742
|
+
* Include linked notification configurations with workflow information
|
|
4743
|
+
*/
|
|
4744
|
+
readonly includeConfigurations?: boolean;
|
|
4642
4745
|
}
|
|
4643
4746
|
/**
|
|
4644
4747
|
* Request parameters for v5NotificationsChannelsPost operation in NotificationsApi.
|
|
@@ -5901,7 +6004,7 @@ interface JobWaitOptions extends PollingOptions {
|
|
|
5901
6004
|
interface CreateWorkflowInput {
|
|
5902
6005
|
urls: string[];
|
|
5903
6006
|
navigationMode: NavigationMode;
|
|
5904
|
-
name
|
|
6007
|
+
name?: string;
|
|
5905
6008
|
description?: string;
|
|
5906
6009
|
schemaId?: string;
|
|
5907
6010
|
entity?: string;
|
|
@@ -5915,6 +6018,8 @@ interface CreateWorkflowInput {
|
|
|
5915
6018
|
schedules?: string[];
|
|
5916
6019
|
additionalData?: Record<string, unknown>;
|
|
5917
6020
|
}
|
|
6021
|
+
declare const TERMINAL_JOB_STATES: Set<JobStateEnum>;
|
|
6022
|
+
declare const TERMINAL_RUN_STATES: Set<string>;
|
|
5918
6023
|
declare class WorkflowsCoreService {
|
|
5919
6024
|
private readonly workflowsApi;
|
|
5920
6025
|
constructor(workflowsApi: WorkflowsApiInterface);
|
|
@@ -5954,7 +6059,7 @@ interface ExtractionOptionsInternal {
|
|
|
5954
6059
|
prompt?: string;
|
|
5955
6060
|
mode: "run" | "submit";
|
|
5956
6061
|
navigationMode: NavigationMode;
|
|
5957
|
-
name
|
|
6062
|
+
name?: string;
|
|
5958
6063
|
description?: string;
|
|
5959
6064
|
location: LocationConfig;
|
|
5960
6065
|
bypassPreview?: boolean;
|
|
@@ -6231,7 +6336,7 @@ declare class ExtractionBuilderService {
|
|
|
6231
6336
|
}
|
|
6232
6337
|
|
|
6233
6338
|
interface RealtimeConfig {
|
|
6234
|
-
|
|
6339
|
+
apiKey: string;
|
|
6235
6340
|
heartbeatInterval?: number;
|
|
6236
6341
|
reconnectDelay?: number;
|
|
6237
6342
|
missedHeartbeatsLimit?: number;
|
|
@@ -6244,7 +6349,7 @@ declare class Realtime {
|
|
|
6244
6349
|
private isConnecting;
|
|
6245
6350
|
private missedHeartbeatsLimit;
|
|
6246
6351
|
private missedHeartbeatCheckTimer?;
|
|
6247
|
-
private
|
|
6352
|
+
private apiKey?;
|
|
6248
6353
|
private eventListeners;
|
|
6249
6354
|
private connectionListeners;
|
|
6250
6355
|
private errorListeners;
|
|
@@ -6808,4 +6913,4 @@ declare class KadoaHttpException extends KadoaSdkException {
|
|
|
6808
6913
|
static mapStatusToCode(errorOrStatus: AxiosError | number): KadoaErrorCode;
|
|
6809
6914
|
}
|
|
6810
6915
|
|
|
6811
|
-
export { type BulkApproveRulesRequest, type BulkApproveRulesResponseData, type BulkDeleteRulesRequest, type BulkDeleteRulesResponseData, type Category, type ChannelConfig, type ChannelSetupRequestConfig, type CreateChannelRequest, type CreateRuleRequest, type CreateSchemaRequest, type CreateSettingsRequest, type CreateWorkflowInput, type CreateWorkflowRequest, type CreateWorkflowWithCustomSchemaRequest, type CreatedExtraction, DataFetcherService, type DataPagination, DataSortOrder, type DataType, type DeleteAllRulesRequest, type DeleteAllRulesResponseData, type DisableRuleRequest, ERROR_MESSAGES, type EmailChannelConfig, EntityResolverService, type ExtractOptions, ExtractionBuilderService, type ExtractionOptions, type ExtractionResult, ExtractionService, FetchDataOptions, type FetchDataResult, type FieldExample, type FieldOptions, type FieldType, type FinishedExtraction, type GenerateRuleRequest, type GenerateRulesRequest, type GetAnomaliesByRuleResponse, type GetAnomalyRulePageResponse, type GetJobResponse, type GetValidationResponse, type GetWorkflowResponse, type JobId, JobStateEnum, type JobWaitOptions, KadoaClient, type KadoaClientConfig, KadoaErrorCode, KadoaHttpException, KadoaSdkException, type KadoaUser, ListChannelsRequest, ListRulesRequest, type ListRulesResponse, ListSettingsRequest, type ListValidationsResponse, ListWorkflowValidationsRequest, ListWorkflowsRequest, type LocationConfig, type MetadataKey, type MonitoringConfig, type MonitoringField, type MonitoringOperator, MonitoringStatus, type NavigationMode, type NotificationChannel, type NotificationChannelConfig, NotificationChannelType, NotificationChannelsService, type NotificationDomain, type NotificationOptions, type NotificationSettings, type NotificationSettingsEventType, V5NotificationsSettingsGetEventTypeEnum as NotificationSettingsEventTypeEnum, NotificationSettingsService, type NotificationSetupRequestChannels, NotificationSetupService, type PollingOptions, type PreparedExtraction, type RawFormat, Realtime, ResponseFormat, type Rule, RuleStatus, RuleType, type RunWorkflowRequest, type RunWorkflowResponse, type ScheduleValidationResponse, SchemaBuilder, type SchemaField as SchemaDefinitionField, type SchemaField$1 as SchemaField, SchemaFieldDataType, type SchemaResponse, SchemasService, type SetupWorkflowNotificationSettingsRequest, type SetupWorkspaceNotificationSettingsRequest, type SlackChannelConfig, type SubmitExtractionResult, type SubmittedExtraction, type ToggleValidationResponse, UpdateInterval, type UpdateRuleRequest, type UpdateSchemaRequest, type UpdateWorkflowRequest, type UpdateWorkflowResponse, UserService, ValidationCoreService, type ValidationDomain, ValidationRulesService, ValidationStrategy, type WaitForReadyOptions, type WaitOptions, type WebhookChannelConfig, type WebhookChannelConfigAuth, type WebhookHttpMethod, type WebsocketChannelConfig, type WorkflowDataResponse, type WorkflowDetailsResponse, WorkflowDisplayStateEnum, type WorkflowId, type WorkflowInterval, type WorkflowMonitoringConfig, type WorkflowResponse, WorkflowState, WorkflowStateEnum, type WorkflowsApiInterface, WorkflowsCoreService, pollUntil, validateAdditionalData };
|
|
6916
|
+
export { type BulkApproveRulesRequest, type BulkApproveRulesResponseData, type BulkDeleteRulesRequest, type BulkDeleteRulesResponseData, type Category, type ChannelConfig, type ChannelSetupRequestConfig, type CreateChannelRequest, type CreateRuleRequest, type CreateSchemaRequest, type CreateSettingsRequest, type CreateWorkflowInput, type CreateWorkflowRequest, type CreateWorkflowWithCustomSchemaRequest, type CreatedExtraction, DataFetcherService, type DataPagination, DataSortOrder, type DataType, type DeleteAllRulesRequest, type DeleteAllRulesResponseData, type DisableRuleRequest, ERROR_MESSAGES, type EmailChannelConfig, EntityResolverService, type ExtractOptions, ExtractionBuilderService, type ExtractionOptions, type ExtractionResult, ExtractionService, FetchDataOptions, type FetchDataResult, type FieldExample, type FieldOptions, type FieldType, type FinishedExtraction, type GenerateRuleRequest, type GenerateRulesRequest, type GetAnomaliesByRuleResponse, type GetAnomalyRulePageResponse, type GetJobResponse, type GetValidationResponse, type GetWorkflowResponse, type JobId, JobStateEnum, type JobWaitOptions, KadoaClient, type KadoaClientConfig, KadoaErrorCode, KadoaHttpException, KadoaSdkException, type KadoaUser, ListChannelsRequest, ListRulesRequest, type ListRulesResponse, ListSettingsRequest, type ListValidationsResponse, ListWorkflowValidationsRequest, ListWorkflowsRequest, type LocationConfig, type MetadataKey, type MonitoringConfig, type MonitoringField, type MonitoringOperator, MonitoringStatus, type NavigationMode, type NotificationChannel, type NotificationChannelConfig, NotificationChannelType, NotificationChannelsService, type NotificationDomain, type NotificationOptions, type NotificationSettings, type NotificationSettingsEventType, V5NotificationsSettingsGetEventTypeEnum as NotificationSettingsEventTypeEnum, NotificationSettingsService, type NotificationSetupRequestChannels, NotificationSetupService, type PollingOptions, type PreparedExtraction, type RawFormat, Realtime, type RealtimeConfig, ResponseFormat, type Rule, RuleStatus, RuleType, type RunWorkflowRequest, type RunWorkflowResponse, type ScheduleValidationResponse, SchemaBuilder, type SchemaField as SchemaDefinitionField, type SchemaField$1 as SchemaField, SchemaFieldDataType, type SchemaResponse, SchemasService, type SetupWorkflowNotificationSettingsRequest, type SetupWorkspaceNotificationSettingsRequest, type SlackChannelConfig, type SubmitExtractionResult, type SubmittedExtraction, TERMINAL_JOB_STATES, TERMINAL_RUN_STATES, type ToggleValidationResponse, UpdateInterval, type UpdateRuleRequest, type UpdateSchemaRequest, type UpdateWorkflowRequest, type UpdateWorkflowResponse, UserService, ValidationCoreService, type ValidationDomain, ValidationRulesService, ValidationStrategy, type WaitForReadyOptions, type WaitOptions, type WebhookChannelConfig, type WebhookChannelConfigAuth, type WebhookHttpMethod, type WebsocketChannelConfig, type WorkflowDataResponse, type WorkflowDetailsResponse, WorkflowDisplayStateEnum, type WorkflowId, type WorkflowInterval, type WorkflowMonitoringConfig, type WorkflowResponse, WorkflowState, WorkflowStateEnum, type WorkflowsApiInterface, WorkflowsCoreService, pollUntil, validateAdditionalData };
|