@epam/ai-dial-chat-api-client 1.2.0-dev.15 → 1.2.0-dev.152

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.
@@ -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,91 @@ 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
+ /**
653
+ * When true, the inline frame renders without its border, rounded corners, background, and header divider. Carried over from legacy Chat 0.x.
654
+ * @type {boolean}
655
+ * @memberof ApplicationVisualizerDto
656
+ */
657
+ borderless?: boolean;
658
+ /**
659
+ * When true, the inline frame hides its header title text; the header actions stay visible. Carried over from legacy Chat 0.x.
660
+ * @type {boolean}
661
+ * @memberof ApplicationVisualizerDto
662
+ */
663
+ withoutTitle?: boolean;
664
+ }
491
665
  /**
492
666
  *
493
667
  * @export
@@ -777,6 +951,18 @@ export interface Check200Response {
777
951
  * @interface ClientConfigDto
778
952
  */
779
953
  export interface ClientConfigDto {
954
+ /**
955
+ * Whether a text refinement model is configured. Missing means unavailable.
956
+ * @type {boolean}
957
+ * @memberof ClientConfigDto
958
+ */
959
+ aiTextRefinementAvailable?: boolean;
960
+ /**
961
+ * 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.
962
+ * @type {string}
963
+ * @memberof ClientConfigDto
964
+ */
965
+ activeEventId: string | null;
780
966
  /**
781
967
  * 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
968
  * @type {string}
@@ -825,6 +1011,12 @@ export interface ClientConfigDto {
825
1011
  * @memberof ClientConfigDto
826
1012
  */
827
1013
  mcpAppUserAgent?: string | null;
1014
+ /**
1015
+ * 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.
1016
+ * @type {string}
1017
+ * @memberof ClientConfigDto
1018
+ */
1019
+ mcpAppHostName?: string | null;
828
1020
  /**
829
1021
  * Which File Manager tabs are shown to users. Defaults to all three currently-supported tabs.
830
1022
  * @type {Array<string>}
@@ -843,6 +1035,12 @@ export interface ClientConfigDto {
843
1035
  * @memberof ClientConfigDto
844
1036
  */
845
1037
  overlayAllowedOrigins: Array<string>;
1038
+ /**
1039
+ * 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.
1040
+ * @type {Array<string>}
1041
+ * @memberof ClientConfigDto
1042
+ */
1043
+ allowedConnectOrigins?: Array<string>;
846
1044
  /**
847
1045
  * 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
1046
  * @type {Array<string>}
@@ -891,6 +1089,14 @@ export interface ClientConfigDto {
891
1089
  * @memberof ClientConfigDto
892
1090
  */
893
1091
  customVisualizers: Array<CustomVisualizerDto>;
1092
+ /**
1093
+ * 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.
1094
+ * @type {{ [key: string]: ApplicationVisualizerDto; }}
1095
+ * @memberof ClientConfigDto
1096
+ */
1097
+ applicationVisualizers: {
1098
+ [key: string]: ApplicationVisualizerDto;
1099
+ };
894
1100
  /**
895
1101
  * 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
1102
  * @type {{ [key: string]: unknown }}
@@ -905,6 +1111,12 @@ export interface ClientConfigDto {
905
1111
  * @memberof ClientConfigDto
906
1112
  */
907
1113
  publicationFilterSources: Array<string>;
1114
+ /**
1115
+ * 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.
1116
+ * @type {number}
1117
+ * @memberof ClientConfigDto
1118
+ */
1119
+ maxAttachmentFileSizeBytes: number;
908
1120
  }
909
1121
  /**
910
1122
  * @export
@@ -1042,6 +1254,12 @@ export interface ConversationListItemDto {
1042
1254
  * @memberof ConversationListItemDto
1043
1255
  */
1044
1256
  title: string;
1257
+ /**
1258
+ * Unix epoch milliseconds of the resource creation, as reported by DIAL Core metadata. Absent when DIAL Core does not report it, and always absent for conversations shared with the current user.
1259
+ * @type {number}
1260
+ * @memberof ConversationListItemDto
1261
+ */
1262
+ createdAt?: number;
1045
1263
  /**
1046
1264
  * Unix epoch milliseconds of the last update.
1047
1265
  * @type {number}
@@ -1436,6 +1654,14 @@ export interface ConversationResponseDto {
1436
1654
  * @memberof ConversationResponseDto
1437
1655
  */
1438
1656
  llmNamingDone?: boolean;
1657
+ /**
1658
+ * Open, feature-keyed container for conversation-level view state. Currently defines exactly one key, `annotations`, holding the pool of html_tag citation annotations accumulated across the conversation. Any other key is opaque and preserved as-is.
1659
+ * @type {{ [key: string]: unknown }}
1660
+ * @memberof ConversationResponseDto
1661
+ */
1662
+ customViewState?: {
1663
+ [key: string]: unknown;
1664
+ };
1439
1665
  }
1440
1666
  /**
1441
1667
  * @export
@@ -1845,11 +2071,17 @@ export interface CreateScheduledTaskBodyDto {
1845
2071
  */
1846
2072
  model: string;
1847
2073
  /**
1848
- *
2074
+ * Instructions; may be empty when the effective task has a skill.
1849
2075
  * @type {string}
1850
2076
  * @memberof CreateScheduledTaskBodyDto
1851
2077
  */
1852
2078
  prompt: string;
2079
+ /**
2080
+ * DIAL skill reference with a path of at most 1024 decoded characters. Omission preserves the saved skill on update; null removes it.
2081
+ * @type {string}
2082
+ * @memberof CreateScheduledTaskBodyDto
2083
+ */
2084
+ skillUrl?: string | null;
1853
2085
  /**
1854
2086
  *
1855
2087
  * @type {string}
@@ -2007,6 +2239,12 @@ export interface CreatedScheduledTaskDto {
2007
2239
  * @memberof CreatedScheduledTaskDto
2008
2240
  */
2009
2241
  prompt?: string;
2242
+ /**
2243
+ *
2244
+ * @type {string}
2245
+ * @memberof CreatedScheduledTaskDto
2246
+ */
2247
+ skillUrl?: string;
2010
2248
  }
2011
2249
  /**
2012
2250
  * @export
@@ -3977,6 +4215,12 @@ export interface GetExternalServiceResponseDto {
3977
4215
  * @memberof GetExternalServiceResponseDto
3978
4216
  */
3979
4217
  userLevelAuthStatus?: string;
4218
+ /**
4219
+ * APPLICATION-level status. For DIAL_NATIVE, indicates application consent managed by an administrator.
4220
+ * @type {string}
4221
+ * @memberof GetExternalServiceResponseDto
4222
+ */
4223
+ appLevelAuthStatus?: string;
3980
4224
  /**
3981
4225
  * GLOBAL-level credential status ('SIGNED_IN' | 'SIGNED_OUT' | 'FAILED'), when Core reports one.
3982
4226
  * @type {string}
@@ -4021,6 +4265,7 @@ export declare const GetExternalServiceResponseDtoAuthenticationTypeEnum: {
4021
4265
  readonly None: "NONE";
4022
4266
  readonly ApiKey: "API_KEY";
4023
4267
  readonly Oauth: "OAUTH";
4268
+ readonly DialNative: "DIAL_NATIVE";
4024
4269
  };
4025
4270
  export type GetExternalServiceResponseDtoAuthenticationTypeEnum = (typeof GetExternalServiceResponseDtoAuthenticationTypeEnum)[keyof typeof GetExternalServiceResponseDtoAuthenticationTypeEnum];
4026
4271
  /**
@@ -5138,6 +5383,12 @@ export interface PublishCatalogEntityDto {
5138
5383
  * @memberof PublishCatalogEntityDto
5139
5384
  */
5140
5385
  rules?: Array<PublishRuleDto>;
5386
+ /**
5387
+ * 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.
5388
+ * @type {boolean}
5389
+ * @memberof PublishCatalogEntityDto
5390
+ */
5391
+ publishCredentials?: boolean;
5141
5392
  }
5142
5393
  /**
5143
5394
  *
@@ -5237,6 +5488,12 @@ export interface PublishHistoryEntryDto {
5237
5488
  * @memberof PublishHistoryEntryDto
5238
5489
  */
5239
5490
  publishedBy: string;
5491
+ /**
5492
+ * 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`.
5493
+ * @type {boolean}
5494
+ * @memberof PublishHistoryEntryDto
5495
+ */
5496
+ publishCredentials: boolean;
5240
5497
  }
5241
5498
  /**
5242
5499
  * @export
@@ -5395,6 +5652,38 @@ export declare const RateMessageDtoRateEnum: {
5395
5652
  readonly NUMBER_MINUS_1: -1;
5396
5653
  };
5397
5654
  export type RateMessageDtoRateEnum = (typeof RateMessageDtoRateEnum)[keyof typeof RateMessageDtoRateEnum];
5655
+ /**
5656
+ *
5657
+ * @export
5658
+ * @interface RefineTextRequestDto
5659
+ */
5660
+ export interface RefineTextRequestDto {
5661
+ /**
5662
+ * Server-owned rewriting purpose
5663
+ * @type {TextRefinementPurpose}
5664
+ * @memberof RefineTextRequestDto
5665
+ */
5666
+ purpose: TextRefinementPurpose;
5667
+ /**
5668
+ * Exact nonblank draft. Unicode code point limits: skill Description 4000, task Description 500, either Instructions 32000.
5669
+ * @type {string}
5670
+ * @memberof RefineTextRequestDto
5671
+ */
5672
+ text: string;
5673
+ }
5674
+ /**
5675
+ *
5676
+ * @export
5677
+ * @interface RefineTextResponseDto
5678
+ */
5679
+ export interface RefineTextResponseDto {
5680
+ /**
5681
+ * Complete refined draft, bounded by the same purpose-specific Unicode limits as the input.
5682
+ * @type {string}
5683
+ * @memberof RefineTextResponseDto
5684
+ */
5685
+ text: string;
5686
+ }
5398
5687
  /**
5399
5688
  *
5400
5689
  * @export
@@ -5796,6 +6085,12 @@ export interface ScheduledTaskDto {
5796
6085
  * @memberof ScheduledTaskDto
5797
6086
  */
5798
6087
  prompt?: string;
6088
+ /**
6089
+ *
6090
+ * @type {string}
6091
+ * @memberof ScheduledTaskDto
6092
+ */
6093
+ skillUrl?: string;
5799
6094
  }
5800
6095
  /**
5801
6096
  * @export
@@ -5805,6 +6100,16 @@ export declare const ScheduledTaskDtoTriggerTypeEnum: {
5805
6100
  readonly Date: "date";
5806
6101
  };
5807
6102
  export type ScheduledTaskDtoTriggerTypeEnum = (typeof ScheduledTaskDtoTriggerTypeEnum)[keyof typeof ScheduledTaskDtoTriggerTypeEnum];
6103
+ /**
6104
+ *
6105
+ * @export
6106
+ */
6107
+ export declare const ScheduledTaskErrorCode: {
6108
+ readonly ScheduledTaskSkillUnsupported: "scheduledTaskSkillUnsupported";
6109
+ readonly ScheduledTaskInstructionsOrSkillRequired: "scheduledTaskInstructionsOrSkillRequired";
6110
+ readonly ScheduledTaskDeploymentUnavailable: "scheduledTaskDeploymentUnavailable";
6111
+ };
6112
+ export type ScheduledTaskErrorCode = (typeof ScheduledTaskErrorCode)[keyof typeof ScheduledTaskErrorCode];
5808
6113
  /**
5809
6114
  *
5810
6115
  * @export
@@ -5858,6 +6163,49 @@ export declare const ScheduledTaskRunDtoStatusEnum: {
5858
6163
  readonly Missed: "Missed";
5859
6164
  };
5860
6165
  export type ScheduledTaskRunDtoStatusEnum = (typeof ScheduledTaskRunDtoStatusEnum)[keyof typeof ScheduledTaskRunDtoStatusEnum];
6166
+ /**
6167
+ *
6168
+ * @export
6169
+ * @interface ScheduledTaskValidationErrorDto
6170
+ */
6171
+ export interface ScheduledTaskValidationErrorDto {
6172
+ /**
6173
+ *
6174
+ * @type {number}
6175
+ * @memberof ScheduledTaskValidationErrorDto
6176
+ */
6177
+ statusCode: number;
6178
+ /**
6179
+ *
6180
+ * @type {ScheduledTaskValidationErrorDtoMessage}
6181
+ * @memberof ScheduledTaskValidationErrorDto
6182
+ */
6183
+ message: ScheduledTaskValidationErrorDtoMessage;
6184
+ /**
6185
+ *
6186
+ * @type {string}
6187
+ * @memberof ScheduledTaskValidationErrorDto
6188
+ */
6189
+ error: string;
6190
+ /**
6191
+ *
6192
+ * @type {ScheduledTaskErrorCode}
6193
+ * @memberof ScheduledTaskValidationErrorDto
6194
+ */
6195
+ code?: ScheduledTaskErrorCode;
6196
+ /**
6197
+ *
6198
+ * @type {string}
6199
+ * @memberof ScheduledTaskValidationErrorDto
6200
+ */
6201
+ field?: string;
6202
+ }
6203
+ /**
6204
+ * @type ScheduledTaskValidationErrorDtoMessage
6205
+ *
6206
+ * @export
6207
+ */
6208
+ export type ScheduledTaskValidationErrorDtoMessage = Array<string> | string;
5861
6209
  /**
5862
6210
  *
5863
6211
  * @export
@@ -6314,7 +6662,7 @@ export interface StageDto {
6314
6662
  */
6315
6663
  index?: number;
6316
6664
  /**
6317
- * Stage title
6665
+ * Stage title. `null` on the chunk that opens the stage, before the name streams in
6318
6666
  * @type {string}
6319
6667
  * @memberof StageDto
6320
6668
  */
@@ -6325,6 +6673,18 @@ export interface StageDto {
6325
6673
  * @memberof StageDto
6326
6674
  */
6327
6675
  content?: string;
6676
+ /**
6677
+ * Terminal state of the stage. Absent or `null` while the stage is still running
6678
+ * @type {string}
6679
+ * @memberof StageDto
6680
+ */
6681
+ status?: StageDtoStatusEnum | null;
6682
+ /**
6683
+ * Short source/category label shown beside the stage name (e.g. `MCP`)
6684
+ * @type {string}
6685
+ * @memberof StageDto
6686
+ */
6687
+ tag?: string;
6328
6688
  /**
6329
6689
  * Files produced or referenced by this stage
6330
6690
  * @type {Array<StageAttachmentDto>}
@@ -6332,6 +6692,14 @@ export interface StageDto {
6332
6692
  */
6333
6693
  attachments?: Array<StageAttachmentDto>;
6334
6694
  }
6695
+ /**
6696
+ * @export
6697
+ */
6698
+ export declare const StageDtoStatusEnum: {
6699
+ readonly Completed: "completed";
6700
+ readonly Failed: "failed";
6701
+ };
6702
+ export type StageDtoStatusEnum = (typeof StageDtoStatusEnum)[keyof typeof StageDtoStatusEnum];
6335
6703
  /**
6336
6704
  *
6337
6705
  * @export
@@ -6351,6 +6719,17 @@ export interface StopCompletionDto {
6351
6719
  */
6352
6720
  path: string;
6353
6721
  }
6722
+ /**
6723
+ * Server-owned rewriting purpose
6724
+ * @export
6725
+ */
6726
+ export declare const TextRefinementPurpose: {
6727
+ readonly SkillDescription: "skill-description";
6728
+ readonly SkillInstructions: "skill-instructions";
6729
+ readonly ScheduledTaskDescription: "scheduled-task-description";
6730
+ readonly ScheduledTaskInstructions: "scheduled-task-instructions";
6731
+ };
6732
+ export type TextRefinementPurpose = (typeof TextRefinementPurpose)[keyof typeof TextRefinementPurpose];
6354
6733
  /**
6355
6734
  *
6356
6735
  * @export
@@ -7278,11 +7657,17 @@ export interface UpdateScheduledTaskBodyDto {
7278
7657
  */
7279
7658
  model: string;
7280
7659
  /**
7281
- *
7660
+ * Instructions; may be empty when the effective task has a skill.
7282
7661
  * @type {string}
7283
7662
  * @memberof UpdateScheduledTaskBodyDto
7284
7663
  */
7285
7664
  prompt: string;
7665
+ /**
7666
+ * DIAL skill reference with a path of at most 1024 decoded characters. Omission preserves the saved skill on update; null removes it.
7667
+ * @type {string}
7668
+ * @memberof UpdateScheduledTaskBodyDto
7669
+ */
7670
+ skillUrl?: string | null;
7286
7671
  /**
7287
7672
  *
7288
7673
  * @type {string}
@@ -7418,6 +7803,12 @@ export interface UpdatedScheduledTaskDto {
7418
7803
  * @memberof UpdatedScheduledTaskDto
7419
7804
  */
7420
7805
  prompt?: string;
7806
+ /**
7807
+ *
7808
+ * @type {string}
7809
+ * @memberof UpdatedScheduledTaskDto
7810
+ */
7811
+ skillUrl?: string;
7421
7812
  }
7422
7813
  /**
7423
7814
  * @export