@epam/ai-dial-chat-api-client 1.2.0-dev.12 → 1.2.0-dev.123
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/generated/src/apis/ClientChannelApi.d.ts +2 -2
- package/generated/src/apis/ClientChannelApi.js +2 -2
- package/generated/src/apis/ExternalServicesApi.d.ts +14 -1
- package/generated/src/apis/ExternalServicesApi.d.ts.map +1 -1
- package/generated/src/apis/ExternalServicesApi.js +28 -0
- package/generated/src/apis/PublishApi.d.ts +2 -2
- package/generated/src/apis/PublishApi.js +2 -2
- package/generated/src/apis/ScheduledTasksApi.d.ts +4 -4
- package/generated/src/apis/ScheduledTasksApi.d.ts.map +1 -1
- package/generated/src/apis/ScheduledTasksApi.js +4 -4
- package/generated/src/apis/SkillsApi.d.ts +15 -1
- package/generated/src/apis/SkillsApi.d.ts.map +1 -1
- package/generated/src/apis/SkillsApi.js +36 -0
- package/generated/src/apis/TextRefinementApi.d.ts +32 -0
- package/generated/src/apis/TextRefinementApi.d.ts.map +1 -0
- package/generated/src/apis/TextRefinementApi.js +52 -0
- package/generated/src/apis/index.d.ts +1 -0
- package/generated/src/apis/index.d.ts.map +1 -1
- package/generated/src/apis/index.js +1 -0
- package/generated/src/models/index.d.ts +369 -4
- package/generated/src/models/index.d.ts.map +1 -1
- package/generated/src/models/index.js +38 -1
- package/package.json +1 -1
- package/tsconfig.lib.tsbuildinfo +1 -1
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
export interface AcceptInvitationResponseDto {
|
|
7
7
|
/**
|
|
8
|
-
* Identifier (DIAL Core resource path) of the entity the invitation grants access to.
|
|
8
|
+
* Identifier (DIAL Core resource path) of the entity the invitation grants access to. A prompt path is returned decoded, matching the id its listing endpoints report.
|
|
9
9
|
* @type {string}
|
|
10
10
|
* @memberof AcceptInvitationResponseDto
|
|
11
11
|
*/
|
|
@@ -432,6 +432,95 @@ export interface ApplicationDto {
|
|
|
432
432
|
*/
|
|
433
433
|
maxInputAttachments?: number;
|
|
434
434
|
}
|
|
435
|
+
/**
|
|
436
|
+
*
|
|
437
|
+
* @export
|
|
438
|
+
* @interface ApplicationExternalServiceDto
|
|
439
|
+
*/
|
|
440
|
+
export interface ApplicationExternalServiceDto {
|
|
441
|
+
/**
|
|
442
|
+
*
|
|
443
|
+
* @type {string}
|
|
444
|
+
* @memberof ApplicationExternalServiceDto
|
|
445
|
+
*/
|
|
446
|
+
displayName: string;
|
|
447
|
+
/**
|
|
448
|
+
*
|
|
449
|
+
* @type {string}
|
|
450
|
+
* @memberof ApplicationExternalServiceDto
|
|
451
|
+
*/
|
|
452
|
+
description?: string;
|
|
453
|
+
/**
|
|
454
|
+
*
|
|
455
|
+
* @type {string}
|
|
456
|
+
* @memberof ApplicationExternalServiceDto
|
|
457
|
+
*/
|
|
458
|
+
authenticationType: ApplicationExternalServiceDtoAuthenticationTypeEnum;
|
|
459
|
+
/**
|
|
460
|
+
* USER-level credential status ('SIGNED_IN' | 'SIGNED_OUT' | 'FAILED'), when Core reports one.
|
|
461
|
+
* @type {string}
|
|
462
|
+
* @memberof ApplicationExternalServiceDto
|
|
463
|
+
*/
|
|
464
|
+
userLevelAuthStatus?: string;
|
|
465
|
+
/**
|
|
466
|
+
* APPLICATION-level status. For DIAL_NATIVE, indicates application consent managed by an administrator.
|
|
467
|
+
* @type {string}
|
|
468
|
+
* @memberof ApplicationExternalServiceDto
|
|
469
|
+
*/
|
|
470
|
+
appLevelAuthStatus?: string;
|
|
471
|
+
/**
|
|
472
|
+
* GLOBAL-level credential status ('SIGNED_IN' | 'SIGNED_OUT' | 'FAILED'), when Core reports one.
|
|
473
|
+
* @type {string}
|
|
474
|
+
* @memberof ApplicationExternalServiceDto
|
|
475
|
+
*/
|
|
476
|
+
globalAuthStatus?: string;
|
|
477
|
+
/**
|
|
478
|
+
*
|
|
479
|
+
* @type {string}
|
|
480
|
+
* @memberof ApplicationExternalServiceDto
|
|
481
|
+
*/
|
|
482
|
+
clientId?: string;
|
|
483
|
+
/**
|
|
484
|
+
*
|
|
485
|
+
* @type {string}
|
|
486
|
+
* @memberof ApplicationExternalServiceDto
|
|
487
|
+
*/
|
|
488
|
+
authorizationEndpoint?: string;
|
|
489
|
+
/**
|
|
490
|
+
*
|
|
491
|
+
* @type {Array<string>}
|
|
492
|
+
* @memberof ApplicationExternalServiceDto
|
|
493
|
+
*/
|
|
494
|
+
scopesSupported?: Array<string>;
|
|
495
|
+
/**
|
|
496
|
+
*
|
|
497
|
+
* @type {string}
|
|
498
|
+
* @memberof ApplicationExternalServiceDto
|
|
499
|
+
*/
|
|
500
|
+
codeChallenge?: string;
|
|
501
|
+
/**
|
|
502
|
+
*
|
|
503
|
+
* @type {string}
|
|
504
|
+
* @memberof ApplicationExternalServiceDto
|
|
505
|
+
*/
|
|
506
|
+
codeChallengeMethod?: string;
|
|
507
|
+
/**
|
|
508
|
+
* External-service identifier within the application
|
|
509
|
+
* @type {string}
|
|
510
|
+
* @memberof ApplicationExternalServiceDto
|
|
511
|
+
*/
|
|
512
|
+
id: string;
|
|
513
|
+
}
|
|
514
|
+
/**
|
|
515
|
+
* @export
|
|
516
|
+
*/
|
|
517
|
+
export declare const ApplicationExternalServiceDtoAuthenticationTypeEnum: {
|
|
518
|
+
readonly None: "NONE";
|
|
519
|
+
readonly ApiKey: "API_KEY";
|
|
520
|
+
readonly Oauth: "OAUTH";
|
|
521
|
+
readonly DialNative: "DIAL_NATIVE";
|
|
522
|
+
};
|
|
523
|
+
export type ApplicationExternalServiceDtoAuthenticationTypeEnum = (typeof ApplicationExternalServiceDtoAuthenticationTypeEnum)[keyof typeof ApplicationExternalServiceDtoAuthenticationTypeEnum];
|
|
435
524
|
/**
|
|
436
525
|
*
|
|
437
526
|
* @export
|
|
@@ -488,6 +577,79 @@ export interface ApplicationSchemasResponseDto {
|
|
|
488
577
|
*/
|
|
489
578
|
schemas: Array<ApplicationSchemaSummaryDto>;
|
|
490
579
|
}
|
|
580
|
+
/**
|
|
581
|
+
*
|
|
582
|
+
* @export
|
|
583
|
+
* @interface ApplicationVisualizerDto
|
|
584
|
+
*/
|
|
585
|
+
export interface ApplicationVisualizerDto {
|
|
586
|
+
/**
|
|
587
|
+
* The postMessage protocol namespace, NOT a display label. Every message exchanged with the iframe is prefixed "${title}/…", and the visualizer application must be constructed with this identical string as its appName. A mismatch is a silent failure — the iframe loads but never receives data. Also used as the inline frame's header text.
|
|
588
|
+
* @type {string}
|
|
589
|
+
* @memberof ApplicationVisualizerDto
|
|
590
|
+
*/
|
|
591
|
+
title: string;
|
|
592
|
+
/**
|
|
593
|
+
* Human-readable description of the visualizer. Accepted for schema parity; not consumed by the host UI.
|
|
594
|
+
* @type {string}
|
|
595
|
+
* @memberof ApplicationVisualizerDto
|
|
596
|
+
*/
|
|
597
|
+
description?: string;
|
|
598
|
+
/**
|
|
599
|
+
* Icon URL or identifier for the visualizer. Accepted for schema parity; not consumed by the host UI.
|
|
600
|
+
* @type {string}
|
|
601
|
+
* @memberof ApplicationVisualizerDto
|
|
602
|
+
*/
|
|
603
|
+
icon?: string;
|
|
604
|
+
/**
|
|
605
|
+
* MIME type(s) this entry claims, as a comma-separated list (e.g. "application/vnd.plotly.v1+json, application/vnd.vega.v5+json"). Optional, unlike the required field of the same name on CustomVisualizerDto: when omitted, the entry claims every attachment of the message that carries a URL. Attachments it does not claim render as ordinary attachment tiles.
|
|
606
|
+
* @type {string}
|
|
607
|
+
* @memberof ApplicationVisualizerDto
|
|
608
|
+
*/
|
|
609
|
+
contentType?: string;
|
|
610
|
+
/**
|
|
611
|
+
* Absolute HTTP(S) URL of the visualizer iframe.
|
|
612
|
+
* @type {string}
|
|
613
|
+
* @memberof ApplicationVisualizerDto
|
|
614
|
+
*/
|
|
615
|
+
url: string;
|
|
616
|
+
/**
|
|
617
|
+
* Milliseconds to wait for a send() request response before rejecting. Defaults to 10000 when unset. Does not bound the initial READY_TO_INTERACT handshake.
|
|
618
|
+
* @type {number}
|
|
619
|
+
* @memberof ApplicationVisualizerDto
|
|
620
|
+
*/
|
|
621
|
+
requestTimeout?: number;
|
|
622
|
+
/**
|
|
623
|
+
* Suggested initial width of the visualizer surface in pixels.
|
|
624
|
+
* @type {number}
|
|
625
|
+
* @memberof ApplicationVisualizerDto
|
|
626
|
+
*/
|
|
627
|
+
width?: number;
|
|
628
|
+
/**
|
|
629
|
+
* Suggested initial height of the visualizer surface in pixels. Also used by the host to size the inline frame in the message.
|
|
630
|
+
* @type {number}
|
|
631
|
+
* @memberof ApplicationVisualizerDto
|
|
632
|
+
*/
|
|
633
|
+
height?: number;
|
|
634
|
+
/**
|
|
635
|
+
* Suggested height on mobile-sized screens in pixels. Also used by the host to size the inline frame on a mobile viewport.
|
|
636
|
+
* @type {number}
|
|
637
|
+
* @memberof ApplicationVisualizerDto
|
|
638
|
+
*/
|
|
639
|
+
mobileHeight?: number;
|
|
640
|
+
/**
|
|
641
|
+
* Whether the host should pass auth info to the visualizer. Accepted for schema parity; inert, because 1.0 auth is server-side and the browser holds no access token.
|
|
642
|
+
* @type {boolean}
|
|
643
|
+
* @memberof ApplicationVisualizerDto
|
|
644
|
+
*/
|
|
645
|
+
passAuthInfo?: boolean;
|
|
646
|
+
/**
|
|
647
|
+
* Whether the host should pass an explicit access token. Accepted for schema parity; inert, because 1.0 auth is server-side and the browser holds no access token.
|
|
648
|
+
* @type {boolean}
|
|
649
|
+
* @memberof ApplicationVisualizerDto
|
|
650
|
+
*/
|
|
651
|
+
passExplicitToken?: boolean;
|
|
652
|
+
}
|
|
491
653
|
/**
|
|
492
654
|
*
|
|
493
655
|
* @export
|
|
@@ -777,6 +939,18 @@ export interface Check200Response {
|
|
|
777
939
|
* @interface ClientConfigDto
|
|
778
940
|
*/
|
|
779
941
|
export interface ClientConfigDto {
|
|
942
|
+
/**
|
|
943
|
+
* Whether a text refinement model is configured. Missing means unavailable.
|
|
944
|
+
* @type {boolean}
|
|
945
|
+
* @memberof ClientConfigDto
|
|
946
|
+
*/
|
|
947
|
+
aiTextRefinementAvailable?: boolean;
|
|
948
|
+
/**
|
|
949
|
+
* Active start-page celebration module ID selected by UI_EVENT. Null when UI_EVENT is absent or none. Event IDs are open-ended; clients ignore IDs not present in their local registry.
|
|
950
|
+
* @type {string}
|
|
951
|
+
* @memberof ClientConfigDto
|
|
952
|
+
*/
|
|
953
|
+
activeEventId: string | null;
|
|
780
954
|
/**
|
|
781
955
|
* Version string of the running chat application. Sourced from CHAT_VERSION; falls back to the application package.json version when that env var is unset or blank. Always a non-empty string.
|
|
782
956
|
* @type {string}
|
|
@@ -825,6 +999,12 @@ export interface ClientConfigDto {
|
|
|
825
999
|
* @memberof ClientConfigDto
|
|
826
1000
|
*/
|
|
827
1001
|
mcpAppUserAgent?: string | null;
|
|
1002
|
+
/**
|
|
1003
|
+
* Host application identifier sent to every mounted MCP App as hostInfo.name during its ui/initialize handshake. Null when MCP_APP_HOST_NAME is not configured — defaults to "ai-dial-chat" on the client.
|
|
1004
|
+
* @type {string}
|
|
1005
|
+
* @memberof ClientConfigDto
|
|
1006
|
+
*/
|
|
1007
|
+
mcpAppHostName?: string | null;
|
|
828
1008
|
/**
|
|
829
1009
|
* Which File Manager tabs are shown to users. Defaults to all three currently-supported tabs.
|
|
830
1010
|
* @type {Array<string>}
|
|
@@ -843,6 +1023,12 @@ export interface ClientConfigDto {
|
|
|
843
1023
|
* @memberof ClientConfigDto
|
|
844
1024
|
*/
|
|
845
1025
|
overlayAllowedOrigins: Array<string>;
|
|
1026
|
+
/**
|
|
1027
|
+
* Trusted HTTP(S) connection origins from ALLOWED_CONNECT_ORIGINS, including leading *. subdomain patterns. PDF previews use browser credentials for matching external origins and reject redirects. Empty by default; upstream credentialed CORS and browser cookie policy still apply.
|
|
1028
|
+
* @type {Array<string>}
|
|
1029
|
+
* @memberof ClientConfigDto
|
|
1030
|
+
*/
|
|
1031
|
+
allowedConnectOrigins?: Array<string>;
|
|
846
1032
|
/**
|
|
847
1033
|
* When set, the complete list of OverlayFeature values that are enabled (replace semantics). Sourced from ENABLED_UI_FEATURES, filtered to recognized values. When null, the compiled-in DEFAULT_ENABLED_UI_FEATURES baseline is used. Does not affect an overlay host that supplies its own enabledFeatures.
|
|
848
1034
|
* @type {Array<string>}
|
|
@@ -891,6 +1077,14 @@ export interface ClientConfigDto {
|
|
|
891
1077
|
* @memberof ClientConfigDto
|
|
892
1078
|
*/
|
|
893
1079
|
customVisualizers: Array<CustomVisualizerDto>;
|
|
1080
|
+
/**
|
|
1081
|
+
* Registry of application id → grouped visualizer mappings, keyed by a message's effective deployment id. Sourced from APPLICATION_VISUALIZERS. Every attachment an entry claims is delivered to one iframe together; an entry takes precedence over customVisualizers for the attachments it claims. The origin of each entry URL must also appear in ALLOWED_IFRAME_ORIGINS or the browser blocks the iframe. Each entry's passAuthInfo and passExplicitToken are accepted for configuration parity and are not consumed — auth is server-side and the browser holds no access token. Empty when unset — the feature is dark by default.
|
|
1082
|
+
* @type {{ [key: string]: ApplicationVisualizerDto; }}
|
|
1083
|
+
* @memberof ClientConfigDto
|
|
1084
|
+
*/
|
|
1085
|
+
applicationVisualizers: {
|
|
1086
|
+
[key: string]: ApplicationVisualizerDto;
|
|
1087
|
+
};
|
|
894
1088
|
/**
|
|
895
1089
|
* Public client-owned variables from CUSTOM_CLIENT_VARIABLES. Arbitrary JSON object; empty when unset or invalid. The BFF does not interpret its keys. Never put secrets here.
|
|
896
1090
|
* @type {{ [key: string]: unknown }}
|
|
@@ -905,6 +1099,12 @@ export interface ClientConfigDto {
|
|
|
905
1099
|
* @memberof ClientConfigDto
|
|
906
1100
|
*/
|
|
907
1101
|
publicationFilterSources: Array<string>;
|
|
1102
|
+
/**
|
|
1103
|
+
* Maximum attachment/upload file size in bytes. Sourced from FILE_UPLOAD_MAX_BYTES — the same variable that bounds the POST /api/v1/files Multer limit — so the client can reject an oversized file before attempting to upload it.
|
|
1104
|
+
* @type {number}
|
|
1105
|
+
* @memberof ClientConfigDto
|
|
1106
|
+
*/
|
|
1107
|
+
maxAttachmentFileSizeBytes: number;
|
|
908
1108
|
}
|
|
909
1109
|
/**
|
|
910
1110
|
* @export
|
|
@@ -1845,11 +2045,17 @@ export interface CreateScheduledTaskBodyDto {
|
|
|
1845
2045
|
*/
|
|
1846
2046
|
model: string;
|
|
1847
2047
|
/**
|
|
1848
|
-
*
|
|
2048
|
+
* Instructions; may be empty when the effective task has a skill.
|
|
1849
2049
|
* @type {string}
|
|
1850
2050
|
* @memberof CreateScheduledTaskBodyDto
|
|
1851
2051
|
*/
|
|
1852
2052
|
prompt: string;
|
|
2053
|
+
/**
|
|
2054
|
+
* DIAL skill reference with a path of at most 1024 decoded characters. Omission preserves the saved skill on update; null removes it.
|
|
2055
|
+
* @type {string}
|
|
2056
|
+
* @memberof CreateScheduledTaskBodyDto
|
|
2057
|
+
*/
|
|
2058
|
+
skillUrl?: string | null;
|
|
1853
2059
|
/**
|
|
1854
2060
|
*
|
|
1855
2061
|
* @type {string}
|
|
@@ -2007,6 +2213,12 @@ export interface CreatedScheduledTaskDto {
|
|
|
2007
2213
|
* @memberof CreatedScheduledTaskDto
|
|
2008
2214
|
*/
|
|
2009
2215
|
prompt?: string;
|
|
2216
|
+
/**
|
|
2217
|
+
*
|
|
2218
|
+
* @type {string}
|
|
2219
|
+
* @memberof CreatedScheduledTaskDto
|
|
2220
|
+
*/
|
|
2221
|
+
skillUrl?: string;
|
|
2010
2222
|
}
|
|
2011
2223
|
/**
|
|
2012
2224
|
* @export
|
|
@@ -3977,6 +4189,12 @@ export interface GetExternalServiceResponseDto {
|
|
|
3977
4189
|
* @memberof GetExternalServiceResponseDto
|
|
3978
4190
|
*/
|
|
3979
4191
|
userLevelAuthStatus?: string;
|
|
4192
|
+
/**
|
|
4193
|
+
* APPLICATION-level status. For DIAL_NATIVE, indicates application consent managed by an administrator.
|
|
4194
|
+
* @type {string}
|
|
4195
|
+
* @memberof GetExternalServiceResponseDto
|
|
4196
|
+
*/
|
|
4197
|
+
appLevelAuthStatus?: string;
|
|
3980
4198
|
/**
|
|
3981
4199
|
* GLOBAL-level credential status ('SIGNED_IN' | 'SIGNED_OUT' | 'FAILED'), when Core reports one.
|
|
3982
4200
|
* @type {string}
|
|
@@ -4021,6 +4239,7 @@ export declare const GetExternalServiceResponseDtoAuthenticationTypeEnum: {
|
|
|
4021
4239
|
readonly None: "NONE";
|
|
4022
4240
|
readonly ApiKey: "API_KEY";
|
|
4023
4241
|
readonly Oauth: "OAUTH";
|
|
4242
|
+
readonly DialNative: "DIAL_NATIVE";
|
|
4024
4243
|
};
|
|
4025
4244
|
export type GetExternalServiceResponseDtoAuthenticationTypeEnum = (typeof GetExternalServiceResponseDtoAuthenticationTypeEnum)[keyof typeof GetExternalServiceResponseDtoAuthenticationTypeEnum];
|
|
4026
4245
|
/**
|
|
@@ -5138,6 +5357,12 @@ export interface PublishCatalogEntityDto {
|
|
|
5138
5357
|
* @memberof PublishCatalogEntityDto
|
|
5139
5358
|
*/
|
|
5140
5359
|
rules?: Array<PublishRuleDto>;
|
|
5360
|
+
/**
|
|
5361
|
+
* Publish the entity together with the publisher's own credentials for it. DIAL Core honours it by copying the credential onto the published copy, so members of the organization use the entity without authorising individually. Omitted or `false` sends exactly the request every caller sent before this field existed. The flag grants no additional authorization: Core still derives the actor from the bearer token, enforces target-folder write access, and holds the publication `PENDING` until an administrator approves it. No credential value ever crosses the wire — only this boolean.
|
|
5362
|
+
* @type {boolean}
|
|
5363
|
+
* @memberof PublishCatalogEntityDto
|
|
5364
|
+
*/
|
|
5365
|
+
publishCredentials?: boolean;
|
|
5141
5366
|
}
|
|
5142
5367
|
/**
|
|
5143
5368
|
*
|
|
@@ -5237,6 +5462,12 @@ export interface PublishHistoryEntryDto {
|
|
|
5237
5462
|
* @memberof PublishHistoryEntryDto
|
|
5238
5463
|
*/
|
|
5239
5464
|
publishedBy: string;
|
|
5465
|
+
/**
|
|
5466
|
+
* Whether this publication requested that the publisher's own credential for the entity be published alongside it. Reports what was requested, not what DIAL Core ultimately applied — Core is the authority on that. A publication that predates the field reports `false`.
|
|
5467
|
+
* @type {boolean}
|
|
5468
|
+
* @memberof PublishHistoryEntryDto
|
|
5469
|
+
*/
|
|
5470
|
+
publishCredentials: boolean;
|
|
5240
5471
|
}
|
|
5241
5472
|
/**
|
|
5242
5473
|
* @export
|
|
@@ -5395,6 +5626,38 @@ export declare const RateMessageDtoRateEnum: {
|
|
|
5395
5626
|
readonly NUMBER_MINUS_1: -1;
|
|
5396
5627
|
};
|
|
5397
5628
|
export type RateMessageDtoRateEnum = (typeof RateMessageDtoRateEnum)[keyof typeof RateMessageDtoRateEnum];
|
|
5629
|
+
/**
|
|
5630
|
+
*
|
|
5631
|
+
* @export
|
|
5632
|
+
* @interface RefineTextRequestDto
|
|
5633
|
+
*/
|
|
5634
|
+
export interface RefineTextRequestDto {
|
|
5635
|
+
/**
|
|
5636
|
+
* Server-owned rewriting purpose
|
|
5637
|
+
* @type {TextRefinementPurpose}
|
|
5638
|
+
* @memberof RefineTextRequestDto
|
|
5639
|
+
*/
|
|
5640
|
+
purpose: TextRefinementPurpose;
|
|
5641
|
+
/**
|
|
5642
|
+
* Exact nonblank draft. Unicode code point limits: skill Description 4000, task Description 500, either Instructions 32000.
|
|
5643
|
+
* @type {string}
|
|
5644
|
+
* @memberof RefineTextRequestDto
|
|
5645
|
+
*/
|
|
5646
|
+
text: string;
|
|
5647
|
+
}
|
|
5648
|
+
/**
|
|
5649
|
+
*
|
|
5650
|
+
* @export
|
|
5651
|
+
* @interface RefineTextResponseDto
|
|
5652
|
+
*/
|
|
5653
|
+
export interface RefineTextResponseDto {
|
|
5654
|
+
/**
|
|
5655
|
+
* Complete refined draft, bounded by the same purpose-specific Unicode limits as the input.
|
|
5656
|
+
* @type {string}
|
|
5657
|
+
* @memberof RefineTextResponseDto
|
|
5658
|
+
*/
|
|
5659
|
+
text: string;
|
|
5660
|
+
}
|
|
5398
5661
|
/**
|
|
5399
5662
|
*
|
|
5400
5663
|
* @export
|
|
@@ -5796,6 +6059,12 @@ export interface ScheduledTaskDto {
|
|
|
5796
6059
|
* @memberof ScheduledTaskDto
|
|
5797
6060
|
*/
|
|
5798
6061
|
prompt?: string;
|
|
6062
|
+
/**
|
|
6063
|
+
*
|
|
6064
|
+
* @type {string}
|
|
6065
|
+
* @memberof ScheduledTaskDto
|
|
6066
|
+
*/
|
|
6067
|
+
skillUrl?: string;
|
|
5799
6068
|
}
|
|
5800
6069
|
/**
|
|
5801
6070
|
* @export
|
|
@@ -5805,6 +6074,16 @@ export declare const ScheduledTaskDtoTriggerTypeEnum: {
|
|
|
5805
6074
|
readonly Date: "date";
|
|
5806
6075
|
};
|
|
5807
6076
|
export type ScheduledTaskDtoTriggerTypeEnum = (typeof ScheduledTaskDtoTriggerTypeEnum)[keyof typeof ScheduledTaskDtoTriggerTypeEnum];
|
|
6077
|
+
/**
|
|
6078
|
+
*
|
|
6079
|
+
* @export
|
|
6080
|
+
*/
|
|
6081
|
+
export declare const ScheduledTaskErrorCode: {
|
|
6082
|
+
readonly ScheduledTaskSkillUnsupported: "scheduledTaskSkillUnsupported";
|
|
6083
|
+
readonly ScheduledTaskInstructionsOrSkillRequired: "scheduledTaskInstructionsOrSkillRequired";
|
|
6084
|
+
readonly ScheduledTaskDeploymentUnavailable: "scheduledTaskDeploymentUnavailable";
|
|
6085
|
+
};
|
|
6086
|
+
export type ScheduledTaskErrorCode = (typeof ScheduledTaskErrorCode)[keyof typeof ScheduledTaskErrorCode];
|
|
5808
6087
|
/**
|
|
5809
6088
|
*
|
|
5810
6089
|
* @export
|
|
@@ -5858,6 +6137,49 @@ export declare const ScheduledTaskRunDtoStatusEnum: {
|
|
|
5858
6137
|
readonly Missed: "Missed";
|
|
5859
6138
|
};
|
|
5860
6139
|
export type ScheduledTaskRunDtoStatusEnum = (typeof ScheduledTaskRunDtoStatusEnum)[keyof typeof ScheduledTaskRunDtoStatusEnum];
|
|
6140
|
+
/**
|
|
6141
|
+
*
|
|
6142
|
+
* @export
|
|
6143
|
+
* @interface ScheduledTaskValidationErrorDto
|
|
6144
|
+
*/
|
|
6145
|
+
export interface ScheduledTaskValidationErrorDto {
|
|
6146
|
+
/**
|
|
6147
|
+
*
|
|
6148
|
+
* @type {number}
|
|
6149
|
+
* @memberof ScheduledTaskValidationErrorDto
|
|
6150
|
+
*/
|
|
6151
|
+
statusCode: number;
|
|
6152
|
+
/**
|
|
6153
|
+
*
|
|
6154
|
+
* @type {ScheduledTaskValidationErrorDtoMessage}
|
|
6155
|
+
* @memberof ScheduledTaskValidationErrorDto
|
|
6156
|
+
*/
|
|
6157
|
+
message: ScheduledTaskValidationErrorDtoMessage;
|
|
6158
|
+
/**
|
|
6159
|
+
*
|
|
6160
|
+
* @type {string}
|
|
6161
|
+
* @memberof ScheduledTaskValidationErrorDto
|
|
6162
|
+
*/
|
|
6163
|
+
error: string;
|
|
6164
|
+
/**
|
|
6165
|
+
*
|
|
6166
|
+
* @type {ScheduledTaskErrorCode}
|
|
6167
|
+
* @memberof ScheduledTaskValidationErrorDto
|
|
6168
|
+
*/
|
|
6169
|
+
code?: ScheduledTaskErrorCode;
|
|
6170
|
+
/**
|
|
6171
|
+
*
|
|
6172
|
+
* @type {string}
|
|
6173
|
+
* @memberof ScheduledTaskValidationErrorDto
|
|
6174
|
+
*/
|
|
6175
|
+
field?: string;
|
|
6176
|
+
}
|
|
6177
|
+
/**
|
|
6178
|
+
* @type ScheduledTaskValidationErrorDtoMessage
|
|
6179
|
+
*
|
|
6180
|
+
* @export
|
|
6181
|
+
*/
|
|
6182
|
+
export type ScheduledTaskValidationErrorDtoMessage = Array<string> | string;
|
|
5861
6183
|
/**
|
|
5862
6184
|
*
|
|
5863
6185
|
* @export
|
|
@@ -6314,7 +6636,7 @@ export interface StageDto {
|
|
|
6314
6636
|
*/
|
|
6315
6637
|
index?: number;
|
|
6316
6638
|
/**
|
|
6317
|
-
* Stage title
|
|
6639
|
+
* Stage title. `null` on the chunk that opens the stage, before the name streams in
|
|
6318
6640
|
* @type {string}
|
|
6319
6641
|
* @memberof StageDto
|
|
6320
6642
|
*/
|
|
@@ -6325,6 +6647,18 @@ export interface StageDto {
|
|
|
6325
6647
|
* @memberof StageDto
|
|
6326
6648
|
*/
|
|
6327
6649
|
content?: string;
|
|
6650
|
+
/**
|
|
6651
|
+
* Terminal state of the stage. Absent or `null` while the stage is still running
|
|
6652
|
+
* @type {string}
|
|
6653
|
+
* @memberof StageDto
|
|
6654
|
+
*/
|
|
6655
|
+
status?: StageDtoStatusEnum | null;
|
|
6656
|
+
/**
|
|
6657
|
+
* Short source/category label shown beside the stage name (e.g. `MCP`)
|
|
6658
|
+
* @type {string}
|
|
6659
|
+
* @memberof StageDto
|
|
6660
|
+
*/
|
|
6661
|
+
tag?: string;
|
|
6328
6662
|
/**
|
|
6329
6663
|
* Files produced or referenced by this stage
|
|
6330
6664
|
* @type {Array<StageAttachmentDto>}
|
|
@@ -6332,6 +6666,14 @@ export interface StageDto {
|
|
|
6332
6666
|
*/
|
|
6333
6667
|
attachments?: Array<StageAttachmentDto>;
|
|
6334
6668
|
}
|
|
6669
|
+
/**
|
|
6670
|
+
* @export
|
|
6671
|
+
*/
|
|
6672
|
+
export declare const StageDtoStatusEnum: {
|
|
6673
|
+
readonly Completed: "completed";
|
|
6674
|
+
readonly Failed: "failed";
|
|
6675
|
+
};
|
|
6676
|
+
export type StageDtoStatusEnum = (typeof StageDtoStatusEnum)[keyof typeof StageDtoStatusEnum];
|
|
6335
6677
|
/**
|
|
6336
6678
|
*
|
|
6337
6679
|
* @export
|
|
@@ -6351,6 +6693,17 @@ export interface StopCompletionDto {
|
|
|
6351
6693
|
*/
|
|
6352
6694
|
path: string;
|
|
6353
6695
|
}
|
|
6696
|
+
/**
|
|
6697
|
+
* Server-owned rewriting purpose
|
|
6698
|
+
* @export
|
|
6699
|
+
*/
|
|
6700
|
+
export declare const TextRefinementPurpose: {
|
|
6701
|
+
readonly SkillDescription: "skill-description";
|
|
6702
|
+
readonly SkillInstructions: "skill-instructions";
|
|
6703
|
+
readonly ScheduledTaskDescription: "scheduled-task-description";
|
|
6704
|
+
readonly ScheduledTaskInstructions: "scheduled-task-instructions";
|
|
6705
|
+
};
|
|
6706
|
+
export type TextRefinementPurpose = (typeof TextRefinementPurpose)[keyof typeof TextRefinementPurpose];
|
|
6354
6707
|
/**
|
|
6355
6708
|
*
|
|
6356
6709
|
* @export
|
|
@@ -7278,11 +7631,17 @@ export interface UpdateScheduledTaskBodyDto {
|
|
|
7278
7631
|
*/
|
|
7279
7632
|
model: string;
|
|
7280
7633
|
/**
|
|
7281
|
-
*
|
|
7634
|
+
* Instructions; may be empty when the effective task has a skill.
|
|
7282
7635
|
* @type {string}
|
|
7283
7636
|
* @memberof UpdateScheduledTaskBodyDto
|
|
7284
7637
|
*/
|
|
7285
7638
|
prompt: string;
|
|
7639
|
+
/**
|
|
7640
|
+
* DIAL skill reference with a path of at most 1024 decoded characters. Omission preserves the saved skill on update; null removes it.
|
|
7641
|
+
* @type {string}
|
|
7642
|
+
* @memberof UpdateScheduledTaskBodyDto
|
|
7643
|
+
*/
|
|
7644
|
+
skillUrl?: string | null;
|
|
7286
7645
|
/**
|
|
7287
7646
|
*
|
|
7288
7647
|
* @type {string}
|
|
@@ -7418,6 +7777,12 @@ export interface UpdatedScheduledTaskDto {
|
|
|
7418
7777
|
* @memberof UpdatedScheduledTaskDto
|
|
7419
7778
|
*/
|
|
7420
7779
|
prompt?: string;
|
|
7780
|
+
/**
|
|
7781
|
+
*
|
|
7782
|
+
* @type {string}
|
|
7783
|
+
* @memberof UpdatedScheduledTaskDto
|
|
7784
|
+
*/
|
|
7785
|
+
skillUrl?: string;
|
|
7421
7786
|
}
|
|
7422
7787
|
/**
|
|
7423
7788
|
* @export
|