@uipath/uipath-typescript 1.3.7 → 1.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/index.cjs +40 -5
- package/dist/assets/index.d.ts +1 -0
- package/dist/assets/index.mjs +40 -5
- package/dist/attachments/index.cjs +40 -5
- package/dist/attachments/index.d.ts +1 -0
- package/dist/attachments/index.mjs +40 -5
- package/dist/buckets/index.cjs +40 -5
- package/dist/buckets/index.d.ts +1 -0
- package/dist/buckets/index.mjs +40 -5
- package/dist/cases/index.cjs +178 -5
- package/dist/cases/index.d.ts +158 -3
- package/dist/cases/index.mjs +179 -6
- package/dist/conversational-agent/index.cjs +40 -5
- package/dist/conversational-agent/index.d.ts +1 -0
- package/dist/conversational-agent/index.mjs +40 -5
- package/dist/core/index.cjs +1 -1
- package/dist/core/index.d.ts +1 -1
- package/dist/core/index.mjs +1 -1
- package/dist/entities/index.cjs +40 -5
- package/dist/entities/index.d.ts +1 -0
- package/dist/entities/index.mjs +40 -5
- package/dist/feedback/index.cjs +291 -9
- package/dist/feedback/index.d.ts +418 -12
- package/dist/feedback/index.mjs +291 -9
- package/dist/index.cjs +178 -5
- package/dist/index.d.ts +413 -10
- package/dist/index.mjs +179 -6
- package/dist/index.umd.js +178 -5
- package/dist/jobs/index.cjs +40 -5
- package/dist/jobs/index.d.ts +1 -0
- package/dist/jobs/index.mjs +40 -5
- package/dist/maestro-processes/index.cjs +77 -5
- package/dist/maestro-processes/index.d.ts +1 -0
- package/dist/maestro-processes/index.mjs +77 -5
- package/dist/processes/index.cjs +40 -5
- package/dist/processes/index.d.ts +1 -0
- package/dist/processes/index.mjs +40 -5
- package/dist/queues/index.cjs +40 -5
- package/dist/queues/index.d.ts +1 -0
- package/dist/queues/index.mjs +40 -5
- package/dist/tasks/index.cjs +40 -5
- package/dist/tasks/index.d.ts +1 -0
- package/dist/tasks/index.mjs +40 -5
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -276,6 +276,7 @@ interface RequestWithPaginationOptions extends RequestSpec {
|
|
|
276
276
|
offsetParam?: string;
|
|
277
277
|
tokenParam?: string;
|
|
278
278
|
countParam?: string;
|
|
279
|
+
convertToSkip?: boolean;
|
|
279
280
|
};
|
|
280
281
|
};
|
|
281
282
|
}
|
|
@@ -3543,6 +3544,78 @@ interface CaseAppConfig {
|
|
|
3543
3544
|
caseSummary?: string;
|
|
3544
3545
|
overview?: CaseAppOverview[];
|
|
3545
3546
|
}
|
|
3547
|
+
/**
|
|
3548
|
+
* SLA status for a case instance
|
|
3549
|
+
*/
|
|
3550
|
+
declare enum SlaSummaryStatus {
|
|
3551
|
+
/** Case is within SLA deadline */
|
|
3552
|
+
ON_TRACK = "On Track",
|
|
3553
|
+
/** Case is approaching SLA deadline based on at-risk percentage threshold */
|
|
3554
|
+
AT_RISK = "At Risk",
|
|
3555
|
+
/** Case has exceeded SLA deadline */
|
|
3556
|
+
OVERDUE = "Overdue",
|
|
3557
|
+
/** Case instance has completed */
|
|
3558
|
+
COMPLETED = "Completed",
|
|
3559
|
+
/** SLA status cannot be determined (no SLA deadline defined) */
|
|
3560
|
+
UNKNOWN = "Unknown"
|
|
3561
|
+
}
|
|
3562
|
+
/**
|
|
3563
|
+
* Instance status values for case instances and process instances
|
|
3564
|
+
*/
|
|
3565
|
+
declare enum InstanceStatus {
|
|
3566
|
+
/** Instance status not yet populated by the backend */
|
|
3567
|
+
UNKNOWN = "",
|
|
3568
|
+
CANCELLED = "Cancelled",
|
|
3569
|
+
CANCELING = "Canceling",
|
|
3570
|
+
COMPLETED = "Completed",
|
|
3571
|
+
FAULTED = "Faulted",
|
|
3572
|
+
PAUSED = "Paused",
|
|
3573
|
+
PAUSING = "Pausing",
|
|
3574
|
+
PENDING = "Pending",
|
|
3575
|
+
RESUMING = "Resuming",
|
|
3576
|
+
RETRYING = "Retrying",
|
|
3577
|
+
RUNNING = "Running",
|
|
3578
|
+
UPGRADING = "Upgrading"
|
|
3579
|
+
}
|
|
3580
|
+
/**
|
|
3581
|
+
* SLA summary response for a single case instance
|
|
3582
|
+
*/
|
|
3583
|
+
interface SlaSummaryResponse {
|
|
3584
|
+
/** Unique identifier of the case instance */
|
|
3585
|
+
caseInstanceId: string;
|
|
3586
|
+
/** Folder key that the case instance belongs to */
|
|
3587
|
+
folderKey: string;
|
|
3588
|
+
/** Display name of the SLA rule */
|
|
3589
|
+
name: string;
|
|
3590
|
+
/** Human-readable reference number for a case instance */
|
|
3591
|
+
externalId: string;
|
|
3592
|
+
/** Summary text for the case instance — may be empty */
|
|
3593
|
+
caseSummary: string;
|
|
3594
|
+
/** Unique key of the process associated with the case instance */
|
|
3595
|
+
processKey: string;
|
|
3596
|
+
/** SLA deadline timestamp in UTC (ISO 8601 format) */
|
|
3597
|
+
slaDueTime: string;
|
|
3598
|
+
/** Current SLA status indicating whether the deadline is met, at risk, or breached */
|
|
3599
|
+
slaStatus: SlaSummaryStatus;
|
|
3600
|
+
/** Index of the escalation rule currently applied to the SLA */
|
|
3601
|
+
escalationRuleIndex: string;
|
|
3602
|
+
escalationRuleType: EscalationTriggerType;
|
|
3603
|
+
/** Current status of the case instance */
|
|
3604
|
+
instanceStatus: InstanceStatus;
|
|
3605
|
+
/** Last modification timestamp in UTC (ISO 8601 format) */
|
|
3606
|
+
lastModifiedTime: string;
|
|
3607
|
+
}
|
|
3608
|
+
/**
|
|
3609
|
+
* Options for querying SLA summary
|
|
3610
|
+
*/
|
|
3611
|
+
type CaseInstanceSlaSummaryOptions = PaginationOptions & {
|
|
3612
|
+
/** Filter to a specific case instance */
|
|
3613
|
+
caseInstanceId?: string;
|
|
3614
|
+
/** Filter by event start time in UTC */
|
|
3615
|
+
startTimeUtc?: Date;
|
|
3616
|
+
/** Filter by event end time in UTC */
|
|
3617
|
+
endTimeUtc?: Date;
|
|
3618
|
+
};
|
|
3546
3619
|
/**
|
|
3547
3620
|
* Case stage task type
|
|
3548
3621
|
*/
|
|
@@ -3601,7 +3674,9 @@ interface EscalationAction {
|
|
|
3601
3674
|
*/
|
|
3602
3675
|
declare enum EscalationTriggerType {
|
|
3603
3676
|
SLA_BREACHED = "sla-breached",
|
|
3604
|
-
AT_RISK = "at-risk"
|
|
3677
|
+
AT_RISK = "at-risk",
|
|
3678
|
+
/** Default value when no escalation rule is defined */
|
|
3679
|
+
NONE = "None"
|
|
3605
3680
|
}
|
|
3606
3681
|
/**
|
|
3607
3682
|
* Escalation rule trigger metadata
|
|
@@ -4495,6 +4570,42 @@ interface CaseInstancesServiceModel {
|
|
|
4495
4570
|
* ```
|
|
4496
4571
|
*/
|
|
4497
4572
|
getActionTasks<T extends TaskGetAllOptions = TaskGetAllOptions>(caseInstanceId: string, options?: T): Promise<T extends HasPaginationOptions<T> ? PaginatedResponse<TaskGetResponse> : NonPaginatedResponse<TaskGetResponse>>;
|
|
4573
|
+
/**
|
|
4574
|
+
* Get SLA summary for all case instances across folders.
|
|
4575
|
+
*
|
|
4576
|
+
* Returns SLA status, due times, escalation info, and instance metadata for each case instance.
|
|
4577
|
+
* The default page size is 50, so only the top 50 items are returned when no pagination options are provided.
|
|
4578
|
+
*
|
|
4579
|
+
* @param options - Optional filtering and pagination options
|
|
4580
|
+
* @returns Promise resolving to {@link SlaSummaryResponse}, paginated or non-paginated based on options
|
|
4581
|
+
* @example
|
|
4582
|
+
* ```typescript
|
|
4583
|
+
* // Non-paginated (returns top 50 items by default)
|
|
4584
|
+
* const summary = await caseInstances.getSlaSummary();
|
|
4585
|
+
* console.log(`Found ${summary.totalCount} cases`);
|
|
4586
|
+
*
|
|
4587
|
+
* // Filter by case instance ID
|
|
4588
|
+
* const filtered = await caseInstances.getSlaSummary({
|
|
4589
|
+
* caseInstanceId: '<caseInstanceId>'
|
|
4590
|
+
* });
|
|
4591
|
+
*
|
|
4592
|
+
* // Filter by time range
|
|
4593
|
+
* const timeFiltered = await caseInstances.getSlaSummary({
|
|
4594
|
+
* startTimeUtc: new Date('2026-01-01'),
|
|
4595
|
+
* endTimeUtc: new Date('2026-01-31')
|
|
4596
|
+
* });
|
|
4597
|
+
*
|
|
4598
|
+
* // With pagination
|
|
4599
|
+
* const page1 = await caseInstances.getSlaSummary({ pageSize: 25 });
|
|
4600
|
+
* if (page1.hasNextPage) {
|
|
4601
|
+
* const page2 = await caseInstances.getSlaSummary({ cursor: page1.nextCursor });
|
|
4602
|
+
* }
|
|
4603
|
+
*
|
|
4604
|
+
* // Jump to specific page
|
|
4605
|
+
* const page3 = await caseInstances.getSlaSummary({ jumpToPage: 3, pageSize: 25 });
|
|
4606
|
+
* ```
|
|
4607
|
+
*/
|
|
4608
|
+
getSlaSummary<T extends CaseInstanceSlaSummaryOptions = CaseInstanceSlaSummaryOptions>(options?: T): Promise<T extends HasPaginationOptions<T> ? PaginatedResponse<SlaSummaryResponse> : NonPaginatedResponse<SlaSummaryResponse>>;
|
|
4498
4609
|
}
|
|
4499
4610
|
interface CaseInstanceMethods {
|
|
4500
4611
|
/**
|
|
@@ -4544,6 +4655,14 @@ interface CaseInstanceMethods {
|
|
|
4544
4655
|
* @returns Promise resolving to human in the loop tasks associated with the case instance
|
|
4545
4656
|
*/
|
|
4546
4657
|
getActionTasks<T extends TaskGetAllOptions = TaskGetAllOptions>(options?: T): Promise<T extends HasPaginationOptions<T> ? PaginatedResponse<TaskGetResponse> : NonPaginatedResponse<TaskGetResponse>>;
|
|
4658
|
+
/**
|
|
4659
|
+
* Gets the SLA summary for this case instance.
|
|
4660
|
+
* The default page size is 50, so only the top 50 items are returned when no pagination options are provided.
|
|
4661
|
+
*
|
|
4662
|
+
* @param options - Optional time range filtering and pagination options
|
|
4663
|
+
* @returns Promise resolving to SLA summary items for this case instance
|
|
4664
|
+
*/
|
|
4665
|
+
getSlaSummary<T extends Omit<CaseInstanceSlaSummaryOptions, 'caseInstanceId'> = Omit<CaseInstanceSlaSummaryOptions, 'caseInstanceId'>>(options?: T): Promise<T extends HasPaginationOptions<T> ? PaginatedResponse<SlaSummaryResponse> : NonPaginatedResponse<SlaSummaryResponse>>;
|
|
4547
4666
|
}
|
|
4548
4667
|
type CaseInstanceGetResponse = RawCaseInstanceGetResponse & CaseInstanceMethods;
|
|
4549
4668
|
/**
|
|
@@ -4959,6 +5078,42 @@ declare class CaseInstancesService extends BaseService implements CaseInstancesS
|
|
|
4959
5078
|
* @returns Promise resolving to human in the loop tasks associated with the case instance
|
|
4960
5079
|
*/
|
|
4961
5080
|
getActionTasks<T extends TaskGetAllOptions = TaskGetAllOptions>(caseInstanceId: string, options?: T): Promise<T extends HasPaginationOptions<T> ? PaginatedResponse<TaskGetResponse> : NonPaginatedResponse<TaskGetResponse>>;
|
|
5081
|
+
/**
|
|
5082
|
+
* Get SLA summary for all case instances across folders.
|
|
5083
|
+
*
|
|
5084
|
+
* Returns SLA status, due times, escalation info, and instance metadata for each case instance.
|
|
5085
|
+
* The default page size is 50, so only the top 50 items are returned when no pagination options are provided.
|
|
5086
|
+
*
|
|
5087
|
+
* @param options - Optional filtering and pagination options
|
|
5088
|
+
* @returns Promise resolving to {@link SlaSummaryResponse}, paginated or non-paginated based on options
|
|
5089
|
+
* @example
|
|
5090
|
+
* ```typescript
|
|
5091
|
+
* // Non-paginated (returns top 50 items by default)
|
|
5092
|
+
* const summary = await caseInstances.getSlaSummary();
|
|
5093
|
+
* console.log(`Found ${summary.totalCount} cases`);
|
|
5094
|
+
*
|
|
5095
|
+
* // Filter by case instance ID
|
|
5096
|
+
* const filtered = await caseInstances.getSlaSummary({
|
|
5097
|
+
* caseInstanceId: '<caseInstanceId>'
|
|
5098
|
+
* });
|
|
5099
|
+
*
|
|
5100
|
+
* // Filter by time range
|
|
5101
|
+
* const timeFiltered = await caseInstances.getSlaSummary({
|
|
5102
|
+
* startTimeUtc: new Date('2026-01-01'),
|
|
5103
|
+
* endTimeUtc: new Date('2026-01-31')
|
|
5104
|
+
* });
|
|
5105
|
+
*
|
|
5106
|
+
* // With pagination
|
|
5107
|
+
* const page1 = await caseInstances.getSlaSummary({ pageSize: 25 });
|
|
5108
|
+
* if (page1.hasNextPage) {
|
|
5109
|
+
* const page2 = await caseInstances.getSlaSummary({ cursor: page1.nextCursor });
|
|
5110
|
+
* }
|
|
5111
|
+
*
|
|
5112
|
+
* // Jump to specific page
|
|
5113
|
+
* const page3 = await caseInstances.getSlaSummary({ jumpToPage: 3, pageSize: 25 });
|
|
5114
|
+
* ```
|
|
5115
|
+
*/
|
|
5116
|
+
getSlaSummary<T extends CaseInstanceSlaSummaryOptions = CaseInstanceSlaSummaryOptions>(options?: T): Promise<T extends HasPaginationOptions<T> ? PaginatedResponse<SlaSummaryResponse> : NonPaginatedResponse<SlaSummaryResponse>>;
|
|
4962
5117
|
}
|
|
4963
5118
|
|
|
4964
5119
|
/**
|
|
@@ -12042,6 +12197,7 @@ interface ConversationalAgentOptions {
|
|
|
12042
12197
|
/**
|
|
12043
12198
|
* Represents a category that can be associated with feedback.
|
|
12044
12199
|
* Default categories (Output, Agent Error, Agent Plan Execution) are auto-created per tenant.
|
|
12200
|
+
* Used as nested objects inside {@link FeedbackResponse}.
|
|
12045
12201
|
*/
|
|
12046
12202
|
interface FeedbackCategory {
|
|
12047
12203
|
/** Unique identifier of the feedback category */
|
|
@@ -12057,6 +12213,24 @@ interface FeedbackCategory {
|
|
|
12057
12213
|
/** Whether this category applies to negative feedback */
|
|
12058
12214
|
isNegative: boolean;
|
|
12059
12215
|
}
|
|
12216
|
+
/**
|
|
12217
|
+
* A feedback category returned by {@link FeedbackServiceModel.getCategories}, {@link FeedbackServiceModel.createCategory}.
|
|
12218
|
+
* Fields are transformed to camelCase SDK conventions (createdAt → createdTime).
|
|
12219
|
+
*/
|
|
12220
|
+
interface FeedbackCategoryResponse {
|
|
12221
|
+
/** Unique identifier of the feedback category */
|
|
12222
|
+
id: string;
|
|
12223
|
+
/** Category name (max 256 characters, unique per tenant) */
|
|
12224
|
+
category: string;
|
|
12225
|
+
/** Timestamp when the category was created */
|
|
12226
|
+
createdTime: string;
|
|
12227
|
+
/** Whether this is a system default category (e.g., Output, Agent Error, Agent Plan Execution) */
|
|
12228
|
+
isDefault: boolean;
|
|
12229
|
+
/** Whether this category applies to positive feedback */
|
|
12230
|
+
isPositive: boolean;
|
|
12231
|
+
/** Whether this category applies to negative feedback */
|
|
12232
|
+
isNegative: boolean;
|
|
12233
|
+
}
|
|
12060
12234
|
/**
|
|
12061
12235
|
* Status of a feedback entry in the review workflow
|
|
12062
12236
|
*/
|
|
@@ -12071,7 +12245,7 @@ declare enum FeedbackStatus {
|
|
|
12071
12245
|
/**
|
|
12072
12246
|
* Complete feedback object returned from the API
|
|
12073
12247
|
*/
|
|
12074
|
-
interface
|
|
12248
|
+
interface FeedbackResponse {
|
|
12075
12249
|
/** Unique identifier of the feedback entry */
|
|
12076
12250
|
id: string;
|
|
12077
12251
|
/** Trace identifier linking feedback to a specific agent execution */
|
|
@@ -12101,6 +12275,12 @@ interface FeedbackGetResponse {
|
|
|
12101
12275
|
/** Timestamp when the feedback was last updated */
|
|
12102
12276
|
updatedTime: string;
|
|
12103
12277
|
}
|
|
12278
|
+
/**
|
|
12279
|
+
* Feedback object returned by getAll and getById.
|
|
12280
|
+
* Extends {@link FeedbackResponse} — use this type for getAll/getById return values.
|
|
12281
|
+
*/
|
|
12282
|
+
interface FeedbackGetResponse extends FeedbackResponse {
|
|
12283
|
+
}
|
|
12104
12284
|
/**
|
|
12105
12285
|
* Options shared across feedback operations
|
|
12106
12286
|
*/
|
|
@@ -12108,6 +12288,45 @@ interface FeedbackOptions {
|
|
|
12108
12288
|
/** Folder key for authorization */
|
|
12109
12289
|
folderKey: string;
|
|
12110
12290
|
}
|
|
12291
|
+
/**
|
|
12292
|
+
* A category reference used when creating or updating feedback
|
|
12293
|
+
*/
|
|
12294
|
+
interface FeedbackCategoryInput {
|
|
12295
|
+
/** Unique identifier of the category */
|
|
12296
|
+
id: string;
|
|
12297
|
+
/** Category name (e.g., 'Output', 'Agent Error', 'Agent Plan Execution') */
|
|
12298
|
+
category: string;
|
|
12299
|
+
}
|
|
12300
|
+
/**
|
|
12301
|
+
* Options for submitting a new feedback entry
|
|
12302
|
+
*/
|
|
12303
|
+
interface FeedbackSubmitOptions extends FeedbackOptions {
|
|
12304
|
+
/** Span identifier representing a specific operation within the trace */
|
|
12305
|
+
spanId?: string;
|
|
12306
|
+
/** Identifier of the agent that generated the response being reviewed */
|
|
12307
|
+
agentId?: string;
|
|
12308
|
+
/** Version of the agent at the time the feedback was given (max 100 characters) */
|
|
12309
|
+
agentVersion?: string;
|
|
12310
|
+
/** Span type (e.g., 'agentRun', 'llm', 'tool', 'retriever') (max 100 characters) */
|
|
12311
|
+
spanType?: string;
|
|
12312
|
+
/** Optional text comment provided by the user (max 4000 characters) */
|
|
12313
|
+
comment?: string;
|
|
12314
|
+
/** Optional metadata string associated with the feedback (max 4000 characters) */
|
|
12315
|
+
metadata?: string;
|
|
12316
|
+
/** Categories to associate with this feedback entry */
|
|
12317
|
+
categories?: FeedbackCategoryInput[];
|
|
12318
|
+
}
|
|
12319
|
+
/**
|
|
12320
|
+
* Options for updating an existing feedback entry
|
|
12321
|
+
*/
|
|
12322
|
+
interface FeedbackUpdateOptions extends FeedbackOptions {
|
|
12323
|
+
/** Optional text comment provided by the user (max 4000 characters) */
|
|
12324
|
+
comment?: string;
|
|
12325
|
+
/** Optional metadata string associated with the feedback (max 4000 characters) */
|
|
12326
|
+
metadata?: string;
|
|
12327
|
+
/** Categories to associate with this feedback entry */
|
|
12328
|
+
categories?: FeedbackCategoryInput[];
|
|
12329
|
+
}
|
|
12111
12330
|
/**
|
|
12112
12331
|
* Options for retrieving multiple feedback entries
|
|
12113
12332
|
*/
|
|
@@ -12123,6 +12342,32 @@ type FeedbackGetAllOptions = PaginationOptions & {
|
|
|
12123
12342
|
/** Filter by OpenTelemetry span identifier */
|
|
12124
12343
|
spanId?: string;
|
|
12125
12344
|
};
|
|
12345
|
+
/**
|
|
12346
|
+
* Options for creating a new feedback category
|
|
12347
|
+
*/
|
|
12348
|
+
interface FeedbackCreateCategoryOptions {
|
|
12349
|
+
/** Whether the category applies to positive feedback (defaults to true) */
|
|
12350
|
+
isPositive?: boolean;
|
|
12351
|
+
/** Whether the category applies to negative feedback (defaults to true) */
|
|
12352
|
+
isNegative?: boolean;
|
|
12353
|
+
}
|
|
12354
|
+
/**
|
|
12355
|
+
* Options for deleting a feedback category.
|
|
12356
|
+
* Note: system default categories (Output, Agent Error, Agent Plan Execution) cannot be deleted — attempting to do so returns a 409 Conflict.
|
|
12357
|
+
*/
|
|
12358
|
+
interface FeedbackDeleteCategoryOptions {
|
|
12359
|
+
/** When true, deletes the category even if it has associated feedback entries */
|
|
12360
|
+
forceDelete?: boolean;
|
|
12361
|
+
}
|
|
12362
|
+
/**
|
|
12363
|
+
* Options for retrieving feedback categories
|
|
12364
|
+
*/
|
|
12365
|
+
type FeedbackGetCategoriesOptions = PaginationOptions & {
|
|
12366
|
+
/** Filter by whether the category applies to positive feedback */
|
|
12367
|
+
isPositive?: boolean;
|
|
12368
|
+
/** Filter by whether the category applies to negative feedback */
|
|
12369
|
+
isNegative?: boolean;
|
|
12370
|
+
};
|
|
12126
12371
|
|
|
12127
12372
|
/**
|
|
12128
12373
|
* Service for managing UiPath Agent Feedback.
|
|
@@ -12148,10 +12393,10 @@ interface FeedbackServiceModel {
|
|
|
12148
12393
|
* Gets all feedback across all agents in the tenant, with optional filters.
|
|
12149
12394
|
*
|
|
12150
12395
|
* Retrieves a list of feedback entries, optionally filtered by agent, trace, span, status, or agent version.
|
|
12151
|
-
* When no pagination options are provided, the
|
|
12396
|
+
* When no pagination options are provided, the SDK returns up to 100 items. When pagination options are provided without a pageSize, the SDK defaults to 50 items per page.
|
|
12152
12397
|
*
|
|
12153
12398
|
* @param options - Optional query parameters for filtering and pagination
|
|
12154
|
-
* @returns Promise resolving to {@link NonPaginatedResponse} of {@link
|
|
12399
|
+
* @returns Promise resolving to {@link NonPaginatedResponse} of {@link FeedbackResponse} without pagination options, or {@link PaginatedResponse} of {@link FeedbackResponse} when pagination options are used.
|
|
12155
12400
|
* @example
|
|
12156
12401
|
* ```typescript
|
|
12157
12402
|
* import { Feedback, FeedbackStatus } from '@uipath/uipath-typescript/feedback';
|
|
@@ -12181,13 +12426,13 @@ interface FeedbackServiceModel {
|
|
|
12181
12426
|
* });
|
|
12182
12427
|
* ```
|
|
12183
12428
|
*/
|
|
12184
|
-
getAll<T extends FeedbackGetAllOptions = FeedbackGetAllOptions>(options?: T): Promise<T extends HasPaginationOptions<T> ? PaginatedResponse<
|
|
12429
|
+
getAll<T extends FeedbackGetAllOptions = FeedbackGetAllOptions>(options?: T): Promise<T extends HasPaginationOptions<T> ? PaginatedResponse<FeedbackResponse> : NonPaginatedResponse<FeedbackResponse>>;
|
|
12185
12430
|
/**
|
|
12186
12431
|
* Gets a single feedback entry by its feedback ID.
|
|
12187
12432
|
*
|
|
12188
12433
|
* @param id - Feedback ID (GUID) of the feedback entry
|
|
12189
12434
|
* @param options - Required options including folderKey for folder-level authorization {@link FeedbackOptions}
|
|
12190
|
-
* @returns Promise resolving to {@link
|
|
12435
|
+
* @returns Promise resolving to {@link FeedbackResponse}
|
|
12191
12436
|
* @example
|
|
12192
12437
|
* ```typescript
|
|
12193
12438
|
* import { Feedback } from '@uipath/uipath-typescript/feedback';
|
|
@@ -12198,11 +12443,169 @@ interface FeedbackServiceModel {
|
|
|
12198
12443
|
* const allFeedback = await feedback.getAll({ pageSize: 10 });
|
|
12199
12444
|
* const feedbackId = allFeedback.items[0].id;
|
|
12200
12445
|
* const folderKey = allFeedback.items[0].folderKey;
|
|
12446
|
+
*
|
|
12201
12447
|
* const item = await feedback.getById(feedbackId, { folderKey });
|
|
12202
12448
|
* console.log(item.isPositive, item.comment, item.status);
|
|
12203
12449
|
* ```
|
|
12204
12450
|
*/
|
|
12205
|
-
getById(id: string, options: FeedbackOptions): Promise<
|
|
12451
|
+
getById(id: string, options: FeedbackOptions): Promise<FeedbackResponse>;
|
|
12452
|
+
/**
|
|
12453
|
+
* Submits a feedback entry.
|
|
12454
|
+
*
|
|
12455
|
+
* @param traceId - Trace identifier linking feedback to a specific agent execution
|
|
12456
|
+
* @param isPositive - Whether the feedback is positive (thumbs up) or negative (thumbs down)
|
|
12457
|
+
* @param options - Additional feedback data and folderKey for authorization {@link FeedbackSubmitOptions}
|
|
12458
|
+
* @returns Promise resolving to the submitted {@link FeedbackResponse}
|
|
12459
|
+
* @example
|
|
12460
|
+
* ```typescript
|
|
12461
|
+
* import { Feedback } from '@uipath/uipath-typescript/feedback';
|
|
12462
|
+
*
|
|
12463
|
+
* const feedback = new Feedback(sdk);
|
|
12464
|
+
*
|
|
12465
|
+
* // Obtain traceId and folderKey from an existing feedback entry
|
|
12466
|
+
* const allFeedback = await feedback.getAll({ pageSize: 1 });
|
|
12467
|
+
* const traceId = allFeedback.items[0].traceId;
|
|
12468
|
+
* const folderKey = allFeedback.items[0].folderKey!;
|
|
12469
|
+
*
|
|
12470
|
+
* const item = await feedback.submit(traceId, true, { folderKey });
|
|
12471
|
+
* console.log(item.id, item.status);
|
|
12472
|
+
* ```
|
|
12473
|
+
*/
|
|
12474
|
+
submit(traceId: string, isPositive: boolean, options: FeedbackSubmitOptions): Promise<FeedbackResponse>;
|
|
12475
|
+
/**
|
|
12476
|
+
* Updates already submitted feedback.
|
|
12477
|
+
*
|
|
12478
|
+
* @param id - Feedback ID (GUID) of the entry to update
|
|
12479
|
+
* @param isPositive - Whether the feedback is positive (thumbs up) or negative (thumbs down)
|
|
12480
|
+
* @param options - Updated feedback data and folderKey for authorization {@link FeedbackUpdateOptions}
|
|
12481
|
+
* @returns Promise resolving to the updated {@link FeedbackResponse}
|
|
12482
|
+
* @example
|
|
12483
|
+
* ```typescript
|
|
12484
|
+
* import { Feedback } from '@uipath/uipath-typescript/feedback';
|
|
12485
|
+
*
|
|
12486
|
+
* const feedback = new Feedback(sdk);
|
|
12487
|
+
*
|
|
12488
|
+
* const allFeedback = await feedback.getAll({ pageSize: 1 });
|
|
12489
|
+
* const feedbackId = allFeedback.items[0].id;
|
|
12490
|
+
* const folderKey = allFeedback.items[0].folderKey!;
|
|
12491
|
+
*
|
|
12492
|
+
* const updated = await feedback.updateById(feedbackId, false, {
|
|
12493
|
+
* comment: 'On reflection, not great.',
|
|
12494
|
+
* folderKey,
|
|
12495
|
+
* });
|
|
12496
|
+
* console.log(updated.isPositive, updated.comment);
|
|
12497
|
+
* ```
|
|
12498
|
+
*/
|
|
12499
|
+
updateById(id: string, isPositive: boolean, options: FeedbackUpdateOptions): Promise<FeedbackResponse>;
|
|
12500
|
+
/**
|
|
12501
|
+
* Deletes a feedback entry by its ID.
|
|
12502
|
+
*
|
|
12503
|
+
* @param id - Feedback ID (GUID) of the entry to delete
|
|
12504
|
+
* @param options - Required options including folderKey for folder-level authorization {@link FeedbackOptions}
|
|
12505
|
+
* @returns Promise resolving to void on success
|
|
12506
|
+
* @example
|
|
12507
|
+
* ```typescript
|
|
12508
|
+
* import { Feedback } from '@uipath/uipath-typescript/feedback';
|
|
12509
|
+
*
|
|
12510
|
+
* const feedback = new Feedback(sdk);
|
|
12511
|
+
*
|
|
12512
|
+
* const allFeedback = await feedback.getAll({ pageSize: 1 });
|
|
12513
|
+
* const feedbackId = allFeedback.items[0].id;
|
|
12514
|
+
* const folderKey = allFeedback.items[0].folderKey!;
|
|
12515
|
+
*
|
|
12516
|
+
* await feedback.deleteById(feedbackId, { folderKey });
|
|
12517
|
+
* ```
|
|
12518
|
+
*/
|
|
12519
|
+
deleteById(id: string, options: FeedbackOptions): Promise<void>;
|
|
12520
|
+
/**
|
|
12521
|
+
* Creates a new feedback category.
|
|
12522
|
+
*
|
|
12523
|
+
* Custom categories can be used to label feedback entries beyond the default system categories.
|
|
12524
|
+
* Once created, reference the category by its `id` when submitting or updating feedback.
|
|
12525
|
+
* If `isPositive` and `isNegative` are omitted, the backend defaults both to `true`.
|
|
12526
|
+
*
|
|
12527
|
+
* @param category - Name of the category to create (max 256 characters, unique per tenant)
|
|
12528
|
+
* @param options - Optional flags controlling whether the category applies to positive and/or negative feedback {@link FeedbackCreateCategoryOptions}
|
|
12529
|
+
* @returns Promise resolving to the created {@link FeedbackCategoryResponse}
|
|
12530
|
+
* @example
|
|
12531
|
+
* ```typescript
|
|
12532
|
+
* import { Feedback } from '@uipath/uipath-typescript/feedback';
|
|
12533
|
+
*
|
|
12534
|
+
* const feedback = new Feedback(sdk);
|
|
12535
|
+
*
|
|
12536
|
+
* // Minimum — applies to both positive and negative feedback by default
|
|
12537
|
+
* const category = await feedback.createCategory('Hallucination');
|
|
12538
|
+
* console.log(category.id, category.category);
|
|
12539
|
+
*
|
|
12540
|
+
* // With explicit flags
|
|
12541
|
+
* const negativeOnly = await feedback.createCategory('Off-topic', {
|
|
12542
|
+
* isPositive: false,
|
|
12543
|
+
* isNegative: true,
|
|
12544
|
+
* });
|
|
12545
|
+
* ```
|
|
12546
|
+
*/
|
|
12547
|
+
createCategory(category: string, options?: FeedbackCreateCategoryOptions): Promise<FeedbackCategoryResponse>;
|
|
12548
|
+
/**
|
|
12549
|
+
* Gets all feedback categories for the tenant.
|
|
12550
|
+
*
|
|
12551
|
+
* Returns both system default categories (Output, Agent Error, Agent Plan Execution)
|
|
12552
|
+
* and any custom categories created for this tenant.
|
|
12553
|
+
* When no pagination options are provided, the SDK returns up to 100 items. When pagination options are provided without a pageSize, the SDK defaults to 50 items per page.
|
|
12554
|
+
*
|
|
12555
|
+
* @param options - Optional filters and pagination options {@link FeedbackGetCategoriesOptions}
|
|
12556
|
+
* @returns Promise resolving to {@link NonPaginatedResponse} of {@link FeedbackCategoryResponse} without pagination options, or {@link PaginatedResponse} of {@link FeedbackCategoryResponse} when pagination options are used.
|
|
12557
|
+
* @example
|
|
12558
|
+
* ```typescript
|
|
12559
|
+
* import { Feedback } from '@uipath/uipath-typescript/feedback';
|
|
12560
|
+
*
|
|
12561
|
+
* const feedback = new Feedback(sdk);
|
|
12562
|
+
*
|
|
12563
|
+
* // Get all categories
|
|
12564
|
+
* const categories = await feedback.getCategories();
|
|
12565
|
+
* console.log(categories.items.map(c => c.category));
|
|
12566
|
+
*
|
|
12567
|
+
* // Get only categories applicable to negative feedback
|
|
12568
|
+
* const negativeCategories = await feedback.getCategories({ isNegative: true });
|
|
12569
|
+
*
|
|
12570
|
+
* // Paginated
|
|
12571
|
+
* const page1 = await feedback.getCategories({ pageSize: 10 });
|
|
12572
|
+
* ```
|
|
12573
|
+
*/
|
|
12574
|
+
getCategories<T extends FeedbackGetCategoriesOptions = FeedbackGetCategoriesOptions>(options?: T): Promise<T extends HasPaginationOptions<T> ? PaginatedResponse<FeedbackCategoryResponse> : NonPaginatedResponse<FeedbackCategoryResponse>>;
|
|
12575
|
+
/**
|
|
12576
|
+
* Deletes a feedback category by its ID.
|
|
12577
|
+
*
|
|
12578
|
+
* System default categories (Output, Agent Error, Agent Plan Execution) cannot be deleted —
|
|
12579
|
+
* attempting to do so throws a `409 Conflict` error.
|
|
12580
|
+
* Use `forceDelete` to delete a custom category that already has feedback entries associated with it.
|
|
12581
|
+
*
|
|
12582
|
+
* @param id - Category ID (GUID) of the category to delete
|
|
12583
|
+
* @param options - Optional deletion options {@link FeedbackDeleteCategoryOptions}
|
|
12584
|
+
* @returns Promise resolving to void on success
|
|
12585
|
+
* @example
|
|
12586
|
+
* ```typescript
|
|
12587
|
+
* import { Feedback } from '@uipath/uipath-typescript/feedback';
|
|
12588
|
+
*
|
|
12589
|
+
* const feedback = new Feedback(sdk);
|
|
12590
|
+
*
|
|
12591
|
+
* // Only custom categories (isDefault: false) can be deleted
|
|
12592
|
+
* const categories = await feedback.getCategories();
|
|
12593
|
+
* const customCategory = categories.items.find(c => !c.isDefault);
|
|
12594
|
+
* if (customCategory) {
|
|
12595
|
+
* await feedback.deleteCategory(customCategory.id);
|
|
12596
|
+
* }
|
|
12597
|
+
* ```
|
|
12598
|
+
* @example
|
|
12599
|
+
* ```typescript
|
|
12600
|
+
* // Force-delete a custom category that has associated feedback entries
|
|
12601
|
+
* const categories = await feedback.getCategories();
|
|
12602
|
+
* const customCategory = categories.items.find(c => !c.isDefault);
|
|
12603
|
+
* if (customCategory) {
|
|
12604
|
+
* await feedback.deleteCategory(customCategory.id, { forceDelete: true });
|
|
12605
|
+
* }
|
|
12606
|
+
* ```
|
|
12607
|
+
*/
|
|
12608
|
+
deleteCategory(id: string, options?: FeedbackDeleteCategoryOptions): Promise<void>;
|
|
12206
12609
|
}
|
|
12207
12610
|
|
|
12208
12611
|
declare enum DocumentActionPriority {
|
|
@@ -13734,7 +14137,7 @@ declare const telemetryClient: TelemetryClient;
|
|
|
13734
14137
|
* SDK Telemetry constants
|
|
13735
14138
|
*/
|
|
13736
14139
|
declare const CONNECTION_STRING = "InstrumentationKey=a6efa11d-1feb-4508-9738-e13e12dcae5e;IngestionEndpoint=https://westeurope-5.in.applicationinsights.azure.com/;LiveEndpoint=https://westeurope.livediagnostics.monitor.azure.com/;ApplicationId=7c58eb1c-9581-4ba6-839e-11725848a037";
|
|
13737
|
-
declare const SDK_VERSION = "1.3.
|
|
14140
|
+
declare const SDK_VERSION = "1.3.8";
|
|
13738
14141
|
declare const VERSION = "Version";
|
|
13739
14142
|
declare const SERVICE = "Service";
|
|
13740
14143
|
declare const CLOUD_ORGANIZATION_NAME = "CloudOrganizationName";
|
|
@@ -13749,5 +14152,5 @@ declare const SDK_LOGGER_NAME = "uipath-ts-sdk-telemetry";
|
|
|
13749
14152
|
declare const SDK_RUN_EVENT = "Sdk.Run";
|
|
13750
14153
|
declare const UNKNOWN = "";
|
|
13751
14154
|
|
|
13752
|
-
export { APP_NAME, AgentMap, AssetValueScope, AssetValueType, AuthenticationError, AuthorizationError, BucketOptions, CLOUD_CLIENT_ID, CLOUD_ORGANIZATION_NAME, CLOUD_REDIRECT_URI, CLOUD_ROLE_NAME, CLOUD_TENANT_NAME, CLOUD_URL, CONNECTION_STRING, CitationErrorType, ConversationMap, DEFAULT_ITEMS_FIELD, DEFAULT_PAGE_SIZE, DEFAULT_TOTAL_COUNT_FIELD, DataDirectionType, DebugMode, index as DuFramework, EntityAggregateFunction, EntityFieldDataType, EntityType, ErrorType, EscalationActionType, EscalationRecipientScope, EscalationTriggerType, ExchangeMap, FeedbackRating, FeedbackStatus, FieldDisplayType, HttpStatus, InputStreamSpeechSensitivity, InterruptType, JobPriority, JobSourceType, JobState, JobSubState, JobType, JoinType, LogicalOperator$1 as LogicalOperator, MAX_PAGE_SIZE, MessageMap, MessageRole, NetworkError, NotFoundError, PackageSourceType, PackageType, ProcessIncidentSeverity, ProcessIncidentStatus, ProcessIncidentType, QueryFilterOperator, RateLimitError, ReferenceType, RemoteControlAccess, RobotSize, RuntimeType, SDK_LOGGER_NAME, SDK_RUN_EVENT, SDK_SERVICE_NAME, SDK_VERSION, SERVICE, SLADurationUnit, ServerError, ServerlessJobType, SortOrder, StageTaskType, StartStrategy, StopStrategy, TargetFramework, TaskActivityType, TaskPriority, TaskSlaCriteria, TaskSlaStatus, TaskSourceName, TaskStatus, TaskType, TaskUserType, UNKNOWN, UiPath, UiPathError, UiPathMetaTags, UserSettingsMap, VERSION, ValidationError, createAgentWithMethods, createCaseInstanceWithMethods, createConversationWithMethods, createEntityWithMethods, createJobWithMethods, createProcessInstanceWithMethods, createProcessWithMethods, createTaskWithMethods, getAppBase, getAsset, getErrorDetails, getLimitedPageSize, isAuthenticationError, isAuthorizationError, isNetworkError, isNotFoundError, isRateLimitError, isServerError, isUiPathError, isValidationError, loadFromMetaTags, telemetryClient, track, trackEvent };
|
|
13753
|
-
export type { AgentAppearance, AgentConversationServiceModel, AgentCreateConversationOptions, AgentGetByIdResponse, AgentGetResponse, AgentInput, AgentMethods, AgentStartingPrompt, ArgumentMetadata, AssetGetAllOptions, AssetGetByIdOptions, AssetGetByNameOptions, AssetGetResponse, AssetServiceModel, AsyncInputStream, AsyncInputStreamChunkEvent, AsyncInputStreamEndEvent, AsyncInputStreamEvent, AsyncInputStreamStartEvent, AsyncToolCallStream, AttachmentGetByIdOptions, AttachmentResponse, AttachmentServiceModel, BaseConfig, BaseOptions, BaseProcessStartRequest, BlobItem, BodyOptions, BpmnXmlString, BucketGetAllOptions, BucketGetByIdOptions, BucketGetFileMetaDataOptions, BucketGetFileMetaDataResponse, BucketGetFileMetaDataWithPaginationOptions, BucketGetReadUriOptions, BucketGetResponse, BucketGetUriOptions, BucketGetUriResponse, BucketServiceModel, BucketUploadFileOptions, BucketUploadResponse, CaseAppConfig, CaseAppOverview, CaseGetAllResponse, CaseGetStageResponse, CaseInstanceExecutionHistoryResponse, CaseInstanceGetAllOptions, CaseInstanceGetAllWithPaginationOptions, CaseInstanceGetResponse, CaseInstanceMethods, CaseInstanceOperationOptions, CaseInstanceOperationResponse, CaseInstanceReopenOptions, CaseInstanceRun, CaseInstancesServiceModel, CasesServiceModel, ChoiceSetGetAllResponse, ChoiceSetGetByIdOptions, ChoiceSetGetResponse, ChoiceSetServiceModel, Citation, CitationEndEvent, CitationError, CitationEvent, CitationOptions, CitationSource, CitationSourceBase, CitationSourceMedia, CitationSourceUrl, CitationStartEvent, CollectionResponse, CompletedContentPart, CompletedMessage, CompletedToolCall, ContentPart, ContentPartChunkEvent, ContentPartData, ContentPartEndEvent, ContentPartEvent, ContentPartGetResponse, ContentPartInterrupted, ContentPartStartEvent, ContentPartStartMetaData, ContentPartStream, ConversationAttachmentCreateResponse, ConversationAttachmentUploadResponse, ConversationCreateOptions, ConversationCreateResponse, ConversationDeleteResponse, ConversationEvent, ConversationExchangeServiceModel, ConversationGetAllOptions, ConversationGetResponse, ConversationJobStartOverrides, ConversationMethods, ConversationServiceModel, ConversationSessionMethods, ConversationSessionOptions, ConversationUpdateOptions, ConversationUpdateResponse, ConversationalAgentOptions, ConversationalAgentServiceModel, CreateFeedbackOptions, CustomKeyValuePair, ElementExecutionMetadata, ElementMetaData, ElementRunMetadata, EntityAggregate, EntityBatchInsertOptions, EntityBatchInsertResponse, EntityCreateFieldOptions, EntityCreateOptions, EntityDeleteAttachmentResponse, EntityDeleteOptions, EntityDeleteRecordsOptions, EntityDeleteResponse, EntityFieldBase, EntityFieldUpdateOptions, EntityFileType, EntityGetAllRecordsOptions, EntityGetRecordByIdOptions, EntityGetRecordsByIdOptions, EntityGetResponse, EntityImportRecordsResponse, EntityInsertOptions, EntityInsertRecordOptions, EntityInsertRecordsOptions, EntityInsertResponse, EntityMethods, EntityOperationOptions, EntityOperationResponse, EntityQueryFilter, EntityQueryFilterGroup, EntityQueryRecordsOptions, EntityQueryRecordsResponse, EntityQuerySortOption, EntityRecord, EntityRemoveFieldOptions, EntityServiceModel, EntityUpdateByIdOptions, EntityUpdateOptions, EntityUpdateRecordOptions, EntityUpdateRecordResponse, EntityUpdateRecordsOptions, EntityUpdateResponse, EntityUploadAttachmentOptions, EntityUploadAttachmentResponse, ErrorEndEvent, ErrorEvent, ErrorStartEvent, EscalationAction, EscalationRecipient, EscalationRule, EscalationTriggerMetadata, Exchange, ExchangeEndEvent, ExchangeEvent, ExchangeGetAllOptions, ExchangeGetByIdOptions, ExchangeGetResponse, ExchangeServiceModel, ExchangeStartEvent, ExchangeStream, ExternalConnection, ExternalField, ExternalFieldMapping, ExternalObject, ExternalSourceFields, ExternalValue, FailureRecord, FeatureFlags, FeedbackCategory, FeedbackCreateResponse, FeedbackGetAllOptions, FeedbackGetResponse, FeedbackOptions, FeedbackServiceModel, Field$1 as Field, FieldDataType, FieldMetaData, FileUploadAccess, FolderProperties, FolderScopedOptions, GenericInterruptStartEvent, GlobalVariableMetaData, HasPaginationOptions, Headers, HttpMethod, InlineOrExternalValue, InlineValue, Interrupt, InterruptEndEvent, InterruptEvent, InterruptStartEvent, JSONArray, JSONObject, JSONPrimitive, JSONValue, JobAttachment, JobError, JobGetAllOptions, JobGetByIdOptions, JobGetResponse, JobMethods, JobResumeOptions, JobServiceModel, JobStopOptions, LabelUpdatedEvent, Machine, MaestroProcessGetAllResponse, MaestroProcessesServiceModel, MakeOptional, MakeRequired, Message, MessageEndEvent, MessageEvent, MessageGetResponse, MessageServiceModel, MessageStartEvent, MessageStream, MetaData, MetaEvent, NonPaginatedResponse, OAuthFields, OperationResponse, PaginatedResponse, PaginationCursor, PaginationMetadata, PaginationMethodUnion, PaginationOptions, PartialUiPathConfig, ProcessGetAllOptions, ProcessGetByIdOptions, ProcessGetByNameOptions, ProcessGetResponse, ProcessIncidentGetAllResponse, ProcessIncidentGetResponse, ProcessIncidentsServiceModel, ProcessInstanceExecutionHistoryResponse, ProcessInstanceGetAllOptions, ProcessInstanceGetAllWithPaginationOptions, ProcessInstanceGetResponse, ProcessInstanceGetVariablesOptions, ProcessInstanceGetVariablesResponse, ProcessInstanceMethods, ProcessInstanceOperationOptions, ProcessInstanceOperationResponse, ProcessInstanceRun, ProcessInstancesServiceModel, ProcessMetadata, ProcessMethods, ProcessProperties, ProcessServiceModel, ProcessStartRequest, ProcessStartRequestWithKey, ProcessStartRequestWithName, ProcessStartResponse, QueryParams, QueueGetAllOptions, QueueGetByIdOptions, QueueGetResponse, QueueServiceModel, RawAgentGetByIdResponse, RawAgentGetResponse, RawCaseInstanceGetResponse, RawConversationGetResponse, RawEntityGetResponse, RawJobGetResponse, RawMaestroProcessGetAllResponse, RawProcessInstanceGetResponse, RawTaskCreateResponse, RawTaskGetResponse, RequestOptions, RequestSpec, ResponseDictionary, ResponseType, RetryOptions, RobotMetadata, SessionCapabilities, SessionEndEvent, SessionEndingEvent, SessionStartEvent, SessionStartedEvent, SessionStream, Simplify, SourceJoinCriteria, SqlType, StageSLA, StageTask, Tag, TaskActivity, TaskAssignOptions, TaskAssignment, TaskAssignmentOptions, TaskAssignmentResponse, TaskBaseResponse, TaskCompleteOptions, TaskCompletionOptions, TaskCreateOptions, TaskCreateResponse, TaskGetAllOptions, TaskGetByIdOptions, TaskGetResponse, TaskGetUsersOptions, TaskMethods, TaskServiceModel, TaskSlaDetail, TaskSource, TasksUnassignOptions, TimeoutOptions, ToolCall, ToolCallConfirmationEndValue, ToolCallConfirmationEvent, ToolCallConfirmationInterruptStartEvent, ToolCallConfirmationValue, ToolCallEndEvent, ToolCallEvent, ToolCallInputValue, ToolCallOutputValue, ToolCallResult, ToolCallStartEvent, ToolCallStream, UiPathSDKConfig, UserLoginInfo, UserSettingsGetResponse, UserSettingsServiceModel, UserSettingsUpdateOptions, UserSettingsUpdateResponse };
|
|
14155
|
+
export { APP_NAME, AgentMap, AssetValueScope, AssetValueType, AuthenticationError, AuthorizationError, BucketOptions, CLOUD_CLIENT_ID, CLOUD_ORGANIZATION_NAME, CLOUD_REDIRECT_URI, CLOUD_ROLE_NAME, CLOUD_TENANT_NAME, CLOUD_URL, CONNECTION_STRING, CitationErrorType, ConversationMap, DEFAULT_ITEMS_FIELD, DEFAULT_PAGE_SIZE, DEFAULT_TOTAL_COUNT_FIELD, DataDirectionType, DebugMode, index as DuFramework, EntityAggregateFunction, EntityFieldDataType, EntityType, ErrorType, EscalationActionType, EscalationRecipientScope, EscalationTriggerType, ExchangeMap, FeedbackRating, FeedbackStatus, FieldDisplayType, HttpStatus, InputStreamSpeechSensitivity, InstanceStatus, InterruptType, JobPriority, JobSourceType, JobState, JobSubState, JobType, JoinType, LogicalOperator$1 as LogicalOperator, MAX_PAGE_SIZE, MessageMap, MessageRole, NetworkError, NotFoundError, PackageSourceType, PackageType, ProcessIncidentSeverity, ProcessIncidentStatus, ProcessIncidentType, QueryFilterOperator, RateLimitError, ReferenceType, RemoteControlAccess, RobotSize, RuntimeType, SDK_LOGGER_NAME, SDK_RUN_EVENT, SDK_SERVICE_NAME, SDK_VERSION, SERVICE, SLADurationUnit, ServerError, ServerlessJobType, SlaSummaryStatus, SortOrder, StageTaskType, StartStrategy, StopStrategy, TargetFramework, TaskActivityType, TaskPriority, TaskSlaCriteria, TaskSlaStatus, TaskSourceName, TaskStatus, TaskType, TaskUserType, UNKNOWN, UiPath, UiPathError, UiPathMetaTags, UserSettingsMap, VERSION, ValidationError, createAgentWithMethods, createCaseInstanceWithMethods, createConversationWithMethods, createEntityWithMethods, createJobWithMethods, createProcessInstanceWithMethods, createProcessWithMethods, createTaskWithMethods, getAppBase, getAsset, getErrorDetails, getLimitedPageSize, isAuthenticationError, isAuthorizationError, isNetworkError, isNotFoundError, isRateLimitError, isServerError, isUiPathError, isValidationError, loadFromMetaTags, telemetryClient, track, trackEvent };
|
|
14156
|
+
export type { AgentAppearance, AgentConversationServiceModel, AgentCreateConversationOptions, AgentGetByIdResponse, AgentGetResponse, AgentInput, AgentMethods, AgentStartingPrompt, ArgumentMetadata, AssetGetAllOptions, AssetGetByIdOptions, AssetGetByNameOptions, AssetGetResponse, AssetServiceModel, AsyncInputStream, AsyncInputStreamChunkEvent, AsyncInputStreamEndEvent, AsyncInputStreamEvent, AsyncInputStreamStartEvent, AsyncToolCallStream, AttachmentGetByIdOptions, AttachmentResponse, AttachmentServiceModel, BaseConfig, BaseOptions, BaseProcessStartRequest, BlobItem, BodyOptions, BpmnXmlString, BucketGetAllOptions, BucketGetByIdOptions, BucketGetFileMetaDataOptions, BucketGetFileMetaDataResponse, BucketGetFileMetaDataWithPaginationOptions, BucketGetReadUriOptions, BucketGetResponse, BucketGetUriOptions, BucketGetUriResponse, BucketServiceModel, BucketUploadFileOptions, BucketUploadResponse, CaseAppConfig, CaseAppOverview, CaseGetAllResponse, CaseGetStageResponse, CaseInstanceExecutionHistoryResponse, CaseInstanceGetAllOptions, CaseInstanceGetAllWithPaginationOptions, CaseInstanceGetResponse, CaseInstanceMethods, CaseInstanceOperationOptions, CaseInstanceOperationResponse, CaseInstanceReopenOptions, CaseInstanceRun, CaseInstanceSlaSummaryOptions, CaseInstancesServiceModel, CasesServiceModel, ChoiceSetGetAllResponse, ChoiceSetGetByIdOptions, ChoiceSetGetResponse, ChoiceSetServiceModel, Citation, CitationEndEvent, CitationError, CitationEvent, CitationOptions, CitationSource, CitationSourceBase, CitationSourceMedia, CitationSourceUrl, CitationStartEvent, CollectionResponse, CompletedContentPart, CompletedMessage, CompletedToolCall, ContentPart, ContentPartChunkEvent, ContentPartData, ContentPartEndEvent, ContentPartEvent, ContentPartGetResponse, ContentPartInterrupted, ContentPartStartEvent, ContentPartStartMetaData, ContentPartStream, ConversationAttachmentCreateResponse, ConversationAttachmentUploadResponse, ConversationCreateOptions, ConversationCreateResponse, ConversationDeleteResponse, ConversationEvent, ConversationExchangeServiceModel, ConversationGetAllOptions, ConversationGetResponse, ConversationJobStartOverrides, ConversationMethods, ConversationServiceModel, ConversationSessionMethods, ConversationSessionOptions, ConversationUpdateOptions, ConversationUpdateResponse, ConversationalAgentOptions, ConversationalAgentServiceModel, CreateFeedbackOptions, CustomKeyValuePair, ElementExecutionMetadata, ElementMetaData, ElementRunMetadata, EntityAggregate, EntityBatchInsertOptions, EntityBatchInsertResponse, EntityCreateFieldOptions, EntityCreateOptions, EntityDeleteAttachmentResponse, EntityDeleteOptions, EntityDeleteRecordsOptions, EntityDeleteResponse, EntityFieldBase, EntityFieldUpdateOptions, EntityFileType, EntityGetAllRecordsOptions, EntityGetRecordByIdOptions, EntityGetRecordsByIdOptions, EntityGetResponse, EntityImportRecordsResponse, EntityInsertOptions, EntityInsertRecordOptions, EntityInsertRecordsOptions, EntityInsertResponse, EntityMethods, EntityOperationOptions, EntityOperationResponse, EntityQueryFilter, EntityQueryFilterGroup, EntityQueryRecordsOptions, EntityQueryRecordsResponse, EntityQuerySortOption, EntityRecord, EntityRemoveFieldOptions, EntityServiceModel, EntityUpdateByIdOptions, EntityUpdateOptions, EntityUpdateRecordOptions, EntityUpdateRecordResponse, EntityUpdateRecordsOptions, EntityUpdateResponse, EntityUploadAttachmentOptions, EntityUploadAttachmentResponse, ErrorEndEvent, ErrorEvent, ErrorStartEvent, EscalationAction, EscalationRecipient, EscalationRule, EscalationTriggerMetadata, Exchange, ExchangeEndEvent, ExchangeEvent, ExchangeGetAllOptions, ExchangeGetByIdOptions, ExchangeGetResponse, ExchangeServiceModel, ExchangeStartEvent, ExchangeStream, ExternalConnection, ExternalField, ExternalFieldMapping, ExternalObject, ExternalSourceFields, ExternalValue, FailureRecord, FeatureFlags, FeedbackCategory, FeedbackCategoryInput, FeedbackCategoryResponse, FeedbackCreateCategoryOptions, FeedbackCreateResponse, FeedbackDeleteCategoryOptions, FeedbackGetAllOptions, FeedbackGetCategoriesOptions, FeedbackGetResponse, FeedbackOptions, FeedbackResponse, FeedbackServiceModel, FeedbackSubmitOptions, FeedbackUpdateOptions, Field$1 as Field, FieldDataType, FieldMetaData, FileUploadAccess, FolderProperties, FolderScopedOptions, GenericInterruptStartEvent, GlobalVariableMetaData, HasPaginationOptions, Headers, HttpMethod, InlineOrExternalValue, InlineValue, Interrupt, InterruptEndEvent, InterruptEvent, InterruptStartEvent, JSONArray, JSONObject, JSONPrimitive, JSONValue, JobAttachment, JobError, JobGetAllOptions, JobGetByIdOptions, JobGetResponse, JobMethods, JobResumeOptions, JobServiceModel, JobStopOptions, LabelUpdatedEvent, Machine, MaestroProcessGetAllResponse, MaestroProcessesServiceModel, MakeOptional, MakeRequired, Message, MessageEndEvent, MessageEvent, MessageGetResponse, MessageServiceModel, MessageStartEvent, MessageStream, MetaData, MetaEvent, NonPaginatedResponse, OAuthFields, OperationResponse, PaginatedResponse, PaginationCursor, PaginationMetadata, PaginationMethodUnion, PaginationOptions, PartialUiPathConfig, ProcessGetAllOptions, ProcessGetByIdOptions, ProcessGetByNameOptions, ProcessGetResponse, ProcessIncidentGetAllResponse, ProcessIncidentGetResponse, ProcessIncidentsServiceModel, ProcessInstanceExecutionHistoryResponse, ProcessInstanceGetAllOptions, ProcessInstanceGetAllWithPaginationOptions, ProcessInstanceGetResponse, ProcessInstanceGetVariablesOptions, ProcessInstanceGetVariablesResponse, ProcessInstanceMethods, ProcessInstanceOperationOptions, ProcessInstanceOperationResponse, ProcessInstanceRun, ProcessInstancesServiceModel, ProcessMetadata, ProcessMethods, ProcessProperties, ProcessServiceModel, ProcessStartRequest, ProcessStartRequestWithKey, ProcessStartRequestWithName, ProcessStartResponse, QueryParams, QueueGetAllOptions, QueueGetByIdOptions, QueueGetResponse, QueueServiceModel, RawAgentGetByIdResponse, RawAgentGetResponse, RawCaseInstanceGetResponse, RawConversationGetResponse, RawEntityGetResponse, RawJobGetResponse, RawMaestroProcessGetAllResponse, RawProcessInstanceGetResponse, RawTaskCreateResponse, RawTaskGetResponse, RequestOptions, RequestSpec, ResponseDictionary, ResponseType, RetryOptions, RobotMetadata, SessionCapabilities, SessionEndEvent, SessionEndingEvent, SessionStartEvent, SessionStartedEvent, SessionStream, Simplify, SlaSummaryResponse, SourceJoinCriteria, SqlType, StageSLA, StageTask, Tag, TaskActivity, TaskAssignOptions, TaskAssignment, TaskAssignmentOptions, TaskAssignmentResponse, TaskBaseResponse, TaskCompleteOptions, TaskCompletionOptions, TaskCreateOptions, TaskCreateResponse, TaskGetAllOptions, TaskGetByIdOptions, TaskGetResponse, TaskGetUsersOptions, TaskMethods, TaskServiceModel, TaskSlaDetail, TaskSource, TasksUnassignOptions, TimeoutOptions, ToolCall, ToolCallConfirmationEndValue, ToolCallConfirmationEvent, ToolCallConfirmationInterruptStartEvent, ToolCallConfirmationValue, ToolCallEndEvent, ToolCallEvent, ToolCallInputValue, ToolCallOutputValue, ToolCallResult, ToolCallStartEvent, ToolCallStream, UiPathSDKConfig, UserLoginInfo, UserSettingsGetResponse, UserSettingsServiceModel, UserSettingsUpdateOptions, UserSettingsUpdateResponse };
|