@epam/ai-dial-chat-api-client 1.2.0-dev.14 → 1.2.0-dev.142

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,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
@@ -1436,6 +1636,14 @@ export interface ConversationResponseDto {
1436
1636
  * @memberof ConversationResponseDto
1437
1637
  */
1438
1638
  llmNamingDone?: boolean;
1639
+ /**
1640
+ * 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.
1641
+ * @type {{ [key: string]: unknown }}
1642
+ * @memberof ConversationResponseDto
1643
+ */
1644
+ customViewState?: {
1645
+ [key: string]: unknown;
1646
+ };
1439
1647
  }
1440
1648
  /**
1441
1649
  * @export
@@ -1845,11 +2053,17 @@ export interface CreateScheduledTaskBodyDto {
1845
2053
  */
1846
2054
  model: string;
1847
2055
  /**
1848
- *
2056
+ * Instructions; may be empty when the effective task has a skill.
1849
2057
  * @type {string}
1850
2058
  * @memberof CreateScheduledTaskBodyDto
1851
2059
  */
1852
2060
  prompt: string;
2061
+ /**
2062
+ * DIAL skill reference with a path of at most 1024 decoded characters. Omission preserves the saved skill on update; null removes it.
2063
+ * @type {string}
2064
+ * @memberof CreateScheduledTaskBodyDto
2065
+ */
2066
+ skillUrl?: string | null;
1853
2067
  /**
1854
2068
  *
1855
2069
  * @type {string}
@@ -2007,6 +2221,12 @@ export interface CreatedScheduledTaskDto {
2007
2221
  * @memberof CreatedScheduledTaskDto
2008
2222
  */
2009
2223
  prompt?: string;
2224
+ /**
2225
+ *
2226
+ * @type {string}
2227
+ * @memberof CreatedScheduledTaskDto
2228
+ */
2229
+ skillUrl?: string;
2010
2230
  }
2011
2231
  /**
2012
2232
  * @export
@@ -3977,6 +4197,12 @@ export interface GetExternalServiceResponseDto {
3977
4197
  * @memberof GetExternalServiceResponseDto
3978
4198
  */
3979
4199
  userLevelAuthStatus?: string;
4200
+ /**
4201
+ * APPLICATION-level status. For DIAL_NATIVE, indicates application consent managed by an administrator.
4202
+ * @type {string}
4203
+ * @memberof GetExternalServiceResponseDto
4204
+ */
4205
+ appLevelAuthStatus?: string;
3980
4206
  /**
3981
4207
  * GLOBAL-level credential status ('SIGNED_IN' | 'SIGNED_OUT' | 'FAILED'), when Core reports one.
3982
4208
  * @type {string}
@@ -4021,6 +4247,7 @@ export declare const GetExternalServiceResponseDtoAuthenticationTypeEnum: {
4021
4247
  readonly None: "NONE";
4022
4248
  readonly ApiKey: "API_KEY";
4023
4249
  readonly Oauth: "OAUTH";
4250
+ readonly DialNative: "DIAL_NATIVE";
4024
4251
  };
4025
4252
  export type GetExternalServiceResponseDtoAuthenticationTypeEnum = (typeof GetExternalServiceResponseDtoAuthenticationTypeEnum)[keyof typeof GetExternalServiceResponseDtoAuthenticationTypeEnum];
4026
4253
  /**
@@ -5138,6 +5365,12 @@ export interface PublishCatalogEntityDto {
5138
5365
  * @memberof PublishCatalogEntityDto
5139
5366
  */
5140
5367
  rules?: Array<PublishRuleDto>;
5368
+ /**
5369
+ * 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.
5370
+ * @type {boolean}
5371
+ * @memberof PublishCatalogEntityDto
5372
+ */
5373
+ publishCredentials?: boolean;
5141
5374
  }
5142
5375
  /**
5143
5376
  *
@@ -5237,6 +5470,12 @@ export interface PublishHistoryEntryDto {
5237
5470
  * @memberof PublishHistoryEntryDto
5238
5471
  */
5239
5472
  publishedBy: string;
5473
+ /**
5474
+ * 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`.
5475
+ * @type {boolean}
5476
+ * @memberof PublishHistoryEntryDto
5477
+ */
5478
+ publishCredentials: boolean;
5240
5479
  }
5241
5480
  /**
5242
5481
  * @export
@@ -5395,6 +5634,38 @@ export declare const RateMessageDtoRateEnum: {
5395
5634
  readonly NUMBER_MINUS_1: -1;
5396
5635
  };
5397
5636
  export type RateMessageDtoRateEnum = (typeof RateMessageDtoRateEnum)[keyof typeof RateMessageDtoRateEnum];
5637
+ /**
5638
+ *
5639
+ * @export
5640
+ * @interface RefineTextRequestDto
5641
+ */
5642
+ export interface RefineTextRequestDto {
5643
+ /**
5644
+ * Server-owned rewriting purpose
5645
+ * @type {TextRefinementPurpose}
5646
+ * @memberof RefineTextRequestDto
5647
+ */
5648
+ purpose: TextRefinementPurpose;
5649
+ /**
5650
+ * Exact nonblank draft. Unicode code point limits: skill Description 4000, task Description 500, either Instructions 32000.
5651
+ * @type {string}
5652
+ * @memberof RefineTextRequestDto
5653
+ */
5654
+ text: string;
5655
+ }
5656
+ /**
5657
+ *
5658
+ * @export
5659
+ * @interface RefineTextResponseDto
5660
+ */
5661
+ export interface RefineTextResponseDto {
5662
+ /**
5663
+ * Complete refined draft, bounded by the same purpose-specific Unicode limits as the input.
5664
+ * @type {string}
5665
+ * @memberof RefineTextResponseDto
5666
+ */
5667
+ text: string;
5668
+ }
5398
5669
  /**
5399
5670
  *
5400
5671
  * @export
@@ -5796,6 +6067,12 @@ export interface ScheduledTaskDto {
5796
6067
  * @memberof ScheduledTaskDto
5797
6068
  */
5798
6069
  prompt?: string;
6070
+ /**
6071
+ *
6072
+ * @type {string}
6073
+ * @memberof ScheduledTaskDto
6074
+ */
6075
+ skillUrl?: string;
5799
6076
  }
5800
6077
  /**
5801
6078
  * @export
@@ -5805,6 +6082,16 @@ export declare const ScheduledTaskDtoTriggerTypeEnum: {
5805
6082
  readonly Date: "date";
5806
6083
  };
5807
6084
  export type ScheduledTaskDtoTriggerTypeEnum = (typeof ScheduledTaskDtoTriggerTypeEnum)[keyof typeof ScheduledTaskDtoTriggerTypeEnum];
6085
+ /**
6086
+ *
6087
+ * @export
6088
+ */
6089
+ export declare const ScheduledTaskErrorCode: {
6090
+ readonly ScheduledTaskSkillUnsupported: "scheduledTaskSkillUnsupported";
6091
+ readonly ScheduledTaskInstructionsOrSkillRequired: "scheduledTaskInstructionsOrSkillRequired";
6092
+ readonly ScheduledTaskDeploymentUnavailable: "scheduledTaskDeploymentUnavailable";
6093
+ };
6094
+ export type ScheduledTaskErrorCode = (typeof ScheduledTaskErrorCode)[keyof typeof ScheduledTaskErrorCode];
5808
6095
  /**
5809
6096
  *
5810
6097
  * @export
@@ -5858,6 +6145,49 @@ export declare const ScheduledTaskRunDtoStatusEnum: {
5858
6145
  readonly Missed: "Missed";
5859
6146
  };
5860
6147
  export type ScheduledTaskRunDtoStatusEnum = (typeof ScheduledTaskRunDtoStatusEnum)[keyof typeof ScheduledTaskRunDtoStatusEnum];
6148
+ /**
6149
+ *
6150
+ * @export
6151
+ * @interface ScheduledTaskValidationErrorDto
6152
+ */
6153
+ export interface ScheduledTaskValidationErrorDto {
6154
+ /**
6155
+ *
6156
+ * @type {number}
6157
+ * @memberof ScheduledTaskValidationErrorDto
6158
+ */
6159
+ statusCode: number;
6160
+ /**
6161
+ *
6162
+ * @type {ScheduledTaskValidationErrorDtoMessage}
6163
+ * @memberof ScheduledTaskValidationErrorDto
6164
+ */
6165
+ message: ScheduledTaskValidationErrorDtoMessage;
6166
+ /**
6167
+ *
6168
+ * @type {string}
6169
+ * @memberof ScheduledTaskValidationErrorDto
6170
+ */
6171
+ error: string;
6172
+ /**
6173
+ *
6174
+ * @type {ScheduledTaskErrorCode}
6175
+ * @memberof ScheduledTaskValidationErrorDto
6176
+ */
6177
+ code?: ScheduledTaskErrorCode;
6178
+ /**
6179
+ *
6180
+ * @type {string}
6181
+ * @memberof ScheduledTaskValidationErrorDto
6182
+ */
6183
+ field?: string;
6184
+ }
6185
+ /**
6186
+ * @type ScheduledTaskValidationErrorDtoMessage
6187
+ *
6188
+ * @export
6189
+ */
6190
+ export type ScheduledTaskValidationErrorDtoMessage = Array<string> | string;
5861
6191
  /**
5862
6192
  *
5863
6193
  * @export
@@ -6314,7 +6644,7 @@ export interface StageDto {
6314
6644
  */
6315
6645
  index?: number;
6316
6646
  /**
6317
- * Stage title
6647
+ * Stage title. `null` on the chunk that opens the stage, before the name streams in
6318
6648
  * @type {string}
6319
6649
  * @memberof StageDto
6320
6650
  */
@@ -6325,6 +6655,18 @@ export interface StageDto {
6325
6655
  * @memberof StageDto
6326
6656
  */
6327
6657
  content?: string;
6658
+ /**
6659
+ * Terminal state of the stage. Absent or `null` while the stage is still running
6660
+ * @type {string}
6661
+ * @memberof StageDto
6662
+ */
6663
+ status?: StageDtoStatusEnum | null;
6664
+ /**
6665
+ * Short source/category label shown beside the stage name (e.g. `MCP`)
6666
+ * @type {string}
6667
+ * @memberof StageDto
6668
+ */
6669
+ tag?: string;
6328
6670
  /**
6329
6671
  * Files produced or referenced by this stage
6330
6672
  * @type {Array<StageAttachmentDto>}
@@ -6332,6 +6674,14 @@ export interface StageDto {
6332
6674
  */
6333
6675
  attachments?: Array<StageAttachmentDto>;
6334
6676
  }
6677
+ /**
6678
+ * @export
6679
+ */
6680
+ export declare const StageDtoStatusEnum: {
6681
+ readonly Completed: "completed";
6682
+ readonly Failed: "failed";
6683
+ };
6684
+ export type StageDtoStatusEnum = (typeof StageDtoStatusEnum)[keyof typeof StageDtoStatusEnum];
6335
6685
  /**
6336
6686
  *
6337
6687
  * @export
@@ -6351,6 +6701,17 @@ export interface StopCompletionDto {
6351
6701
  */
6352
6702
  path: string;
6353
6703
  }
6704
+ /**
6705
+ * Server-owned rewriting purpose
6706
+ * @export
6707
+ */
6708
+ export declare const TextRefinementPurpose: {
6709
+ readonly SkillDescription: "skill-description";
6710
+ readonly SkillInstructions: "skill-instructions";
6711
+ readonly ScheduledTaskDescription: "scheduled-task-description";
6712
+ readonly ScheduledTaskInstructions: "scheduled-task-instructions";
6713
+ };
6714
+ export type TextRefinementPurpose = (typeof TextRefinementPurpose)[keyof typeof TextRefinementPurpose];
6354
6715
  /**
6355
6716
  *
6356
6717
  * @export
@@ -7278,11 +7639,17 @@ export interface UpdateScheduledTaskBodyDto {
7278
7639
  */
7279
7640
  model: string;
7280
7641
  /**
7281
- *
7642
+ * Instructions; may be empty when the effective task has a skill.
7282
7643
  * @type {string}
7283
7644
  * @memberof UpdateScheduledTaskBodyDto
7284
7645
  */
7285
7646
  prompt: string;
7647
+ /**
7648
+ * DIAL skill reference with a path of at most 1024 decoded characters. Omission preserves the saved skill on update; null removes it.
7649
+ * @type {string}
7650
+ * @memberof UpdateScheduledTaskBodyDto
7651
+ */
7652
+ skillUrl?: string | null;
7286
7653
  /**
7287
7654
  *
7288
7655
  * @type {string}
@@ -7418,6 +7785,12 @@ export interface UpdatedScheduledTaskDto {
7418
7785
  * @memberof UpdatedScheduledTaskDto
7419
7786
  */
7420
7787
  prompt?: string;
7788
+ /**
7789
+ *
7790
+ * @type {string}
7791
+ * @memberof UpdatedScheduledTaskDto
7792
+ */
7793
+ skillUrl?: string;
7421
7794
  }
7422
7795
  /**
7423
7796
  * @export