@uipath/uipath-typescript 1.2.0 → 1.2.2

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.
Files changed (40) hide show
  1. package/dist/assets/index.cjs +1 -1
  2. package/dist/assets/index.d.ts +2 -1
  3. package/dist/assets/index.mjs +1 -1
  4. package/dist/attachments/index.cjs +1944 -0
  5. package/dist/attachments/index.d.ts +399 -0
  6. package/dist/attachments/index.mjs +1941 -0
  7. package/dist/buckets/index.cjs +1 -1
  8. package/dist/buckets/index.d.ts +4 -2
  9. package/dist/buckets/index.mjs +1 -1
  10. package/dist/cases/index.cjs +95 -48
  11. package/dist/cases/index.d.ts +31 -2
  12. package/dist/cases/index.mjs +95 -48
  13. package/dist/conversational-agent/index.cjs +38 -7
  14. package/dist/conversational-agent/index.d.ts +72 -6
  15. package/dist/conversational-agent/index.mjs +38 -7
  16. package/dist/core/index.cjs +118 -17
  17. package/dist/core/index.d.ts +26 -2
  18. package/dist/core/index.mjs +118 -17
  19. package/dist/entities/index.cjs +48 -1
  20. package/dist/entities/index.d.ts +106 -19
  21. package/dist/entities/index.mjs +48 -1
  22. package/dist/index.cjs +585 -267
  23. package/dist/index.d.ts +595 -67
  24. package/dist/index.mjs +586 -268
  25. package/dist/index.umd.js +582 -264
  26. package/dist/jobs/index.cjs +2036 -0
  27. package/dist/jobs/index.d.ts +724 -0
  28. package/dist/jobs/index.mjs +2033 -0
  29. package/dist/maestro-processes/index.cjs +1 -1
  30. package/dist/maestro-processes/index.mjs +1 -1
  31. package/dist/processes/index.cjs +67 -1
  32. package/dist/processes/index.d.ts +80 -15
  33. package/dist/processes/index.mjs +68 -2
  34. package/dist/queues/index.cjs +1 -1
  35. package/dist/queues/index.d.ts +2 -1
  36. package/dist/queues/index.mjs +1 -1
  37. package/dist/tasks/index.cjs +1319 -1272
  38. package/dist/tasks/index.d.ts +331 -287
  39. package/dist/tasks/index.mjs +1319 -1272
  40. package/package.json +25 -3
@@ -1732,7 +1732,7 @@ class BpmnHelpers {
1732
1732
  // Connection string placeholder that will be replaced during build
1733
1733
  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";
1734
1734
  // SDK Version placeholder
1735
- const SDK_VERSION = "1.2.0";
1735
+ const SDK_VERSION = "1.2.2";
1736
1736
  const VERSION = "Version";
1737
1737
  const SERVICE = "Service";
1738
1738
  const CLOUD_ORGANIZATION_NAME = "CloudOrganizationName";
@@ -1730,7 +1730,7 @@ class BpmnHelpers {
1730
1730
  // Connection string placeholder that will be replaced during build
1731
1731
  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";
1732
1732
  // SDK Version placeholder
1733
- const SDK_VERSION = "1.2.0";
1733
+ const SDK_VERSION = "1.2.2";
1734
1734
  const VERSION = "Version";
1735
1735
  const SERVICE = "Service";
1736
1736
  const CLOUD_ORGANIZATION_NAME = "CloudOrganizationName";
@@ -1712,7 +1712,7 @@ const PROCESS_ENDPOINTS = {
1712
1712
  // Connection string placeholder that will be replaced during build
1713
1713
  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";
1714
1714
  // SDK Version placeholder
1715
- const SDK_VERSION = "1.2.0";
1715
+ const SDK_VERSION = "1.2.2";
1716
1716
  const VERSION = "Version";
1717
1717
  const SERVICE = "Service";
1718
1718
  const CLOUD_ORGANIZATION_NAME = "CloudOrganizationName";
@@ -2145,6 +2145,9 @@ exports.PackageType = void 0;
2145
2145
  PackageType["Api"] = "Api";
2146
2146
  PackageType["MCPServer"] = "MCPServer";
2147
2147
  PackageType["BusinessRules"] = "BusinessRules";
2148
+ PackageType["CaseManagement"] = "CaseManagement";
2149
+ PackageType["Flow"] = "Flow";
2150
+ PackageType["Function"] = "Function";
2148
2151
  })(exports.PackageType || (exports.PackageType = {}));
2149
2152
  /**
2150
2153
  * Enum for job priority
@@ -2223,6 +2226,36 @@ exports.PackageSourceType = void 0;
2223
2226
  PackageSourceType["AgentHub"] = "AgentHub";
2224
2227
  PackageSourceType["ApiWorkflow"] = "ApiWorkflow";
2225
2228
  })(exports.PackageSourceType || (exports.PackageSourceType = {}));
2229
+ /**
2230
+ * Enum for job source type
2231
+ */
2232
+ exports.JobSourceType = void 0;
2233
+ (function (JobSourceType) {
2234
+ JobSourceType["Manual"] = "Manual";
2235
+ JobSourceType["Schedule"] = "Schedule";
2236
+ JobSourceType["Agent"] = "Agent";
2237
+ JobSourceType["Queue"] = "Queue";
2238
+ JobSourceType["StudioWeb"] = "StudioWeb";
2239
+ JobSourceType["IntegrationTrigger"] = "IntegrationTrigger";
2240
+ JobSourceType["StudioDesktop"] = "StudioDesktop";
2241
+ JobSourceType["AutomationOpsPipelines"] = "AutomationOpsPipelines";
2242
+ JobSourceType["Apps"] = "Apps";
2243
+ JobSourceType["SAP"] = "SAP";
2244
+ JobSourceType["HttpTrigger"] = "HttpTrigger";
2245
+ JobSourceType["HttpTriggerCallback"] = "HttpTriggerCallback";
2246
+ JobSourceType["RobotAPI"] = "RobotAPI";
2247
+ JobSourceType["CommandLine"] = "CommandLine";
2248
+ JobSourceType["RobotNetAPI"] = "RobotNetAPI";
2249
+ JobSourceType["Autopilot"] = "Autopilot";
2250
+ JobSourceType["TestManager"] = "TestManager";
2251
+ JobSourceType["AgentService"] = "AgentService";
2252
+ JobSourceType["ProcessOrchestration"] = "ProcessOrchestration";
2253
+ JobSourceType["PluginEcosystem"] = "PluginEcosystem";
2254
+ JobSourceType["PerformanceTesting"] = "PerformanceTesting";
2255
+ JobSourceType["AgentHub"] = "AgentHub";
2256
+ JobSourceType["ApiWorkflow"] = "ApiWorkflow";
2257
+ JobSourceType["CaseManagement"] = "CaseManagement";
2258
+ })(exports.JobSourceType || (exports.JobSourceType = {}));
2226
2259
  /**
2227
2260
  * Enum for stop strategy
2228
2261
  */
@@ -2231,6 +2264,39 @@ exports.StopStrategy = void 0;
2231
2264
  StopStrategy["SoftStop"] = "SoftStop";
2232
2265
  StopStrategy["Kill"] = "Kill";
2233
2266
  })(exports.StopStrategy || (exports.StopStrategy = {}));
2267
+ /**
2268
+ * Enum for runtime type
2269
+ */
2270
+ exports.RuntimeType = void 0;
2271
+ (function (RuntimeType) {
2272
+ RuntimeType["NonProduction"] = "NonProduction";
2273
+ RuntimeType["Attended"] = "Attended";
2274
+ RuntimeType["Unattended"] = "Unattended";
2275
+ RuntimeType["Development"] = "Development";
2276
+ RuntimeType["Studio"] = "Studio";
2277
+ RuntimeType["RpaDeveloper"] = "RpaDeveloper";
2278
+ RuntimeType["StudioX"] = "StudioX";
2279
+ RuntimeType["CitizenDeveloper"] = "CitizenDeveloper";
2280
+ RuntimeType["Headless"] = "Headless";
2281
+ RuntimeType["StudioPro"] = "StudioPro";
2282
+ RuntimeType["RpaDeveloperPro"] = "RpaDeveloperPro";
2283
+ RuntimeType["TestAutomation"] = "TestAutomation";
2284
+ RuntimeType["AutomationCloud"] = "AutomationCloud";
2285
+ RuntimeType["Serverless"] = "Serverless";
2286
+ RuntimeType["AutomationKit"] = "AutomationKit";
2287
+ RuntimeType["ServerlessTestAutomation"] = "ServerlessTestAutomation";
2288
+ RuntimeType["AutomationCloudTestAutomation"] = "AutomationCloudTestAutomation";
2289
+ RuntimeType["AttendedStudioWeb"] = "AttendedStudioWeb";
2290
+ RuntimeType["Hosting"] = "Hosting";
2291
+ RuntimeType["AssistantWeb"] = "AssistantWeb";
2292
+ RuntimeType["ProcessOrchestration"] = "ProcessOrchestration";
2293
+ RuntimeType["AgentService"] = "AgentService";
2294
+ RuntimeType["AppTest"] = "AppTest";
2295
+ RuntimeType["PerformanceTest"] = "PerformanceTest";
2296
+ RuntimeType["BusinessRule"] = "BusinessRule";
2297
+ RuntimeType["CaseManagement"] = "CaseManagement";
2298
+ RuntimeType["Flow"] = "Flow";
2299
+ })(exports.RuntimeType || (exports.RuntimeType = {}));
2234
2300
  /**
2235
2301
  * Enum for job type
2236
2302
  */
@@ -327,7 +327,10 @@ declare enum PackageType {
327
327
  TestAutomationProcess = "TestAutomationProcess",
328
328
  Api = "Api",
329
329
  MCPServer = "MCPServer",
330
- BusinessRules = "BusinessRules"
330
+ BusinessRules = "BusinessRules",
331
+ CaseManagement = "CaseManagement",
332
+ Flow = "Flow",
333
+ Function = "Function"
331
334
  }
332
335
  /**
333
336
  * Enum for job priority
@@ -400,6 +403,35 @@ declare enum PackageSourceType {
400
403
  AgentHub = "AgentHub",
401
404
  ApiWorkflow = "ApiWorkflow"
402
405
  }
406
+ /**
407
+ * Enum for job source type
408
+ */
409
+ declare enum JobSourceType {
410
+ Manual = "Manual",
411
+ Schedule = "Schedule",
412
+ Agent = "Agent",
413
+ Queue = "Queue",
414
+ StudioWeb = "StudioWeb",
415
+ IntegrationTrigger = "IntegrationTrigger",
416
+ StudioDesktop = "StudioDesktop",
417
+ AutomationOpsPipelines = "AutomationOpsPipelines",
418
+ Apps = "Apps",
419
+ SAP = "SAP",
420
+ HttpTrigger = "HttpTrigger",
421
+ HttpTriggerCallback = "HttpTriggerCallback",
422
+ RobotAPI = "RobotAPI",
423
+ CommandLine = "CommandLine",
424
+ RobotNetAPI = "RobotNetAPI",
425
+ Autopilot = "Autopilot",
426
+ TestManager = "TestManager",
427
+ AgentService = "AgentService",
428
+ ProcessOrchestration = "ProcessOrchestration",
429
+ PluginEcosystem = "PluginEcosystem",
430
+ PerformanceTesting = "PerformanceTesting",
431
+ AgentHub = "AgentHub",
432
+ ApiWorkflow = "ApiWorkflow",
433
+ CaseManagement = "CaseManagement"
434
+ }
403
435
  /**
404
436
  * Enum for stop strategy
405
437
  */
@@ -407,6 +439,38 @@ declare enum StopStrategy {
407
439
  SoftStop = "SoftStop",
408
440
  Kill = "Kill"
409
441
  }
442
+ /**
443
+ * Enum for runtime type
444
+ */
445
+ declare enum RuntimeType {
446
+ NonProduction = "NonProduction",
447
+ Attended = "Attended",
448
+ Unattended = "Unattended",
449
+ Development = "Development",
450
+ Studio = "Studio",
451
+ RpaDeveloper = "RpaDeveloper",
452
+ StudioX = "StudioX",
453
+ CitizenDeveloper = "CitizenDeveloper",
454
+ Headless = "Headless",
455
+ StudioPro = "StudioPro",
456
+ RpaDeveloperPro = "RpaDeveloperPro",
457
+ TestAutomation = "TestAutomation",
458
+ AutomationCloud = "AutomationCloud",
459
+ Serverless = "Serverless",
460
+ AutomationKit = "AutomationKit",
461
+ ServerlessTestAutomation = "ServerlessTestAutomation",
462
+ AutomationCloudTestAutomation = "AutomationCloudTestAutomation",
463
+ AttendedStudioWeb = "AttendedStudioWeb",
464
+ Hosting = "Hosting",
465
+ AssistantWeb = "AssistantWeb",
466
+ ProcessOrchestration = "ProcessOrchestration",
467
+ AgentService = "AgentService",
468
+ AppTest = "AppTest",
469
+ PerformanceTest = "PerformanceTest",
470
+ BusinessRule = "BusinessRule",
471
+ CaseManagement = "CaseManagement",
472
+ Flow = "Flow"
473
+ }
410
474
  /**
411
475
  * Interface for Job Attachment
412
476
  */
@@ -420,20 +484,20 @@ interface JobAttachment {
420
484
  * Interface for common process properties shared across multiple interfaces
421
485
  */
422
486
  interface ProcessProperties {
423
- jobPriority?: JobPriority;
424
- specificPriorityValue?: number;
425
- inputArguments?: string;
426
- environmentVariables?: string;
427
- entryPointPath?: string;
428
- remoteControlAccess?: RemoteControlAccess;
429
- requiresUserInteraction?: boolean;
487
+ jobPriority?: JobPriority | null;
488
+ specificPriorityValue?: number | null;
489
+ inputArguments?: string | null;
490
+ environmentVariables?: string | null;
491
+ entryPointPath?: string | null;
492
+ remoteControlAccess?: RemoteControlAccess | null;
493
+ requiresUserInteraction?: boolean | null;
430
494
  }
431
495
  /**
432
496
  * Interface for common folder properties
433
497
  */
434
498
  interface FolderProperties {
435
- folderId?: number;
436
- folderName?: string;
499
+ folderId: number;
500
+ folderName: string | null;
437
501
  }
438
502
  /**
439
503
  * Base interface for process start request
@@ -445,7 +509,7 @@ interface BaseProcessStartRequest extends ProcessProperties {
445
509
  noOfRobots?: number;
446
510
  jobsCount?: number;
447
511
  source?: PackageSourceType;
448
- runtimeType?: string;
512
+ runtimeType?: RuntimeType;
449
513
  inputFile?: string;
450
514
  reference?: string;
451
515
  attachments?: JobAttachment[];
@@ -529,7 +593,7 @@ interface ProcessStartResponse extends ProcessProperties, FolderProperties {
529
593
  endTime: string | null;
530
594
  state: JobState;
531
595
  source: string;
532
- sourceType: string;
596
+ sourceType: JobSourceType;
533
597
  batchExecutionKey: string;
534
598
  info: string | null;
535
599
  createdTime: string;
@@ -543,7 +607,7 @@ interface ProcessStartResponse extends ProcessProperties, FolderProperties {
543
607
  persistenceId: string | null;
544
608
  resumeVersion: number | null;
545
609
  stopStrategy: StopStrategy | null;
546
- runtimeType: string;
610
+ runtimeType: RuntimeType;
547
611
  processVersionId: number | null;
548
612
  reference: string;
549
613
  packageType: PackageType;
@@ -603,7 +667,8 @@ type ProcessGetAllOptions = RequestOptions & PaginationOptions & {
603
667
  /**
604
668
  * Options for getting a single process by ID
605
669
  */
606
- type ProcessGetByIdOptions = BaseOptions;
670
+ interface ProcessGetByIdOptions extends BaseOptions {
671
+ }
607
672
 
608
673
  /**
609
674
  * Service for managing and executing UiPath Automation Processes.
@@ -796,5 +861,5 @@ declare class ProcessService extends BaseService implements ProcessServiceModel
796
861
  getById(id: number, folderId: number, options?: ProcessGetByIdOptions): Promise<ProcessGetResponse>;
797
862
  }
798
863
 
799
- export { JobPriority, JobType, PackageSourceType, PackageType, ProcessService, ProcessService as Processes, RemoteControlAccess, RobotSize, StartStrategy, StopStrategy, TargetFramework };
864
+ export { JobPriority, JobSourceType, JobType, PackageSourceType, PackageType, ProcessService, ProcessService as Processes, RemoteControlAccess, RobotSize, RuntimeType, StartStrategy, StopStrategy, TargetFramework };
800
865
  export type { ArgumentMetadata, BaseProcessStartRequest, FolderProperties, JobAttachment, JobError, Machine, ProcessGetAllOptions, ProcessGetByIdOptions, ProcessGetResponse, ProcessProperties, ProcessServiceModel, ProcessStartRequest, ProcessStartRequestWithKey, ProcessStartRequestWithName, ProcessStartResponse, RobotMetadata };
@@ -1710,7 +1710,7 @@ const PROCESS_ENDPOINTS = {
1710
1710
  // Connection string placeholder that will be replaced during build
1711
1711
  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";
1712
1712
  // SDK Version placeholder
1713
- const SDK_VERSION = "1.2.0";
1713
+ const SDK_VERSION = "1.2.2";
1714
1714
  const VERSION = "Version";
1715
1715
  const SERVICE = "Service";
1716
1716
  const CLOUD_ORGANIZATION_NAME = "CloudOrganizationName";
@@ -2143,6 +2143,9 @@ var PackageType;
2143
2143
  PackageType["Api"] = "Api";
2144
2144
  PackageType["MCPServer"] = "MCPServer";
2145
2145
  PackageType["BusinessRules"] = "BusinessRules";
2146
+ PackageType["CaseManagement"] = "CaseManagement";
2147
+ PackageType["Flow"] = "Flow";
2148
+ PackageType["Function"] = "Function";
2146
2149
  })(PackageType || (PackageType = {}));
2147
2150
  /**
2148
2151
  * Enum for job priority
@@ -2221,6 +2224,36 @@ var PackageSourceType;
2221
2224
  PackageSourceType["AgentHub"] = "AgentHub";
2222
2225
  PackageSourceType["ApiWorkflow"] = "ApiWorkflow";
2223
2226
  })(PackageSourceType || (PackageSourceType = {}));
2227
+ /**
2228
+ * Enum for job source type
2229
+ */
2230
+ var JobSourceType;
2231
+ (function (JobSourceType) {
2232
+ JobSourceType["Manual"] = "Manual";
2233
+ JobSourceType["Schedule"] = "Schedule";
2234
+ JobSourceType["Agent"] = "Agent";
2235
+ JobSourceType["Queue"] = "Queue";
2236
+ JobSourceType["StudioWeb"] = "StudioWeb";
2237
+ JobSourceType["IntegrationTrigger"] = "IntegrationTrigger";
2238
+ JobSourceType["StudioDesktop"] = "StudioDesktop";
2239
+ JobSourceType["AutomationOpsPipelines"] = "AutomationOpsPipelines";
2240
+ JobSourceType["Apps"] = "Apps";
2241
+ JobSourceType["SAP"] = "SAP";
2242
+ JobSourceType["HttpTrigger"] = "HttpTrigger";
2243
+ JobSourceType["HttpTriggerCallback"] = "HttpTriggerCallback";
2244
+ JobSourceType["RobotAPI"] = "RobotAPI";
2245
+ JobSourceType["CommandLine"] = "CommandLine";
2246
+ JobSourceType["RobotNetAPI"] = "RobotNetAPI";
2247
+ JobSourceType["Autopilot"] = "Autopilot";
2248
+ JobSourceType["TestManager"] = "TestManager";
2249
+ JobSourceType["AgentService"] = "AgentService";
2250
+ JobSourceType["ProcessOrchestration"] = "ProcessOrchestration";
2251
+ JobSourceType["PluginEcosystem"] = "PluginEcosystem";
2252
+ JobSourceType["PerformanceTesting"] = "PerformanceTesting";
2253
+ JobSourceType["AgentHub"] = "AgentHub";
2254
+ JobSourceType["ApiWorkflow"] = "ApiWorkflow";
2255
+ JobSourceType["CaseManagement"] = "CaseManagement";
2256
+ })(JobSourceType || (JobSourceType = {}));
2224
2257
  /**
2225
2258
  * Enum for stop strategy
2226
2259
  */
@@ -2229,6 +2262,39 @@ var StopStrategy;
2229
2262
  StopStrategy["SoftStop"] = "SoftStop";
2230
2263
  StopStrategy["Kill"] = "Kill";
2231
2264
  })(StopStrategy || (StopStrategy = {}));
2265
+ /**
2266
+ * Enum for runtime type
2267
+ */
2268
+ var RuntimeType;
2269
+ (function (RuntimeType) {
2270
+ RuntimeType["NonProduction"] = "NonProduction";
2271
+ RuntimeType["Attended"] = "Attended";
2272
+ RuntimeType["Unattended"] = "Unattended";
2273
+ RuntimeType["Development"] = "Development";
2274
+ RuntimeType["Studio"] = "Studio";
2275
+ RuntimeType["RpaDeveloper"] = "RpaDeveloper";
2276
+ RuntimeType["StudioX"] = "StudioX";
2277
+ RuntimeType["CitizenDeveloper"] = "CitizenDeveloper";
2278
+ RuntimeType["Headless"] = "Headless";
2279
+ RuntimeType["StudioPro"] = "StudioPro";
2280
+ RuntimeType["RpaDeveloperPro"] = "RpaDeveloperPro";
2281
+ RuntimeType["TestAutomation"] = "TestAutomation";
2282
+ RuntimeType["AutomationCloud"] = "AutomationCloud";
2283
+ RuntimeType["Serverless"] = "Serverless";
2284
+ RuntimeType["AutomationKit"] = "AutomationKit";
2285
+ RuntimeType["ServerlessTestAutomation"] = "ServerlessTestAutomation";
2286
+ RuntimeType["AutomationCloudTestAutomation"] = "AutomationCloudTestAutomation";
2287
+ RuntimeType["AttendedStudioWeb"] = "AttendedStudioWeb";
2288
+ RuntimeType["Hosting"] = "Hosting";
2289
+ RuntimeType["AssistantWeb"] = "AssistantWeb";
2290
+ RuntimeType["ProcessOrchestration"] = "ProcessOrchestration";
2291
+ RuntimeType["AgentService"] = "AgentService";
2292
+ RuntimeType["AppTest"] = "AppTest";
2293
+ RuntimeType["PerformanceTest"] = "PerformanceTest";
2294
+ RuntimeType["BusinessRule"] = "BusinessRule";
2295
+ RuntimeType["CaseManagement"] = "CaseManagement";
2296
+ RuntimeType["Flow"] = "Flow";
2297
+ })(RuntimeType || (RuntimeType = {}));
2232
2298
  /**
2233
2299
  * Enum for job type
2234
2300
  */
@@ -2239,4 +2305,4 @@ var JobType;
2239
2305
  JobType["ServerlessGeneric"] = "ServerlessGeneric";
2240
2306
  })(JobType || (JobType = {}));
2241
2307
 
2242
- export { JobPriority, JobType, PackageSourceType, PackageType, ProcessService, ProcessService as Processes, RemoteControlAccess, RobotSize, StartStrategy, StopStrategy, TargetFramework };
2308
+ export { JobPriority, JobSourceType, JobType, PackageSourceType, PackageType, ProcessService, ProcessService as Processes, RemoteControlAccess, RobotSize, RuntimeType, StartStrategy, StopStrategy, TargetFramework };
@@ -1676,7 +1676,7 @@ const QueueMap = {
1676
1676
  // Connection string placeholder that will be replaced during build
1677
1677
  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";
1678
1678
  // SDK Version placeholder
1679
- const SDK_VERSION = "1.2.0";
1679
+ const SDK_VERSION = "1.2.2";
1680
1680
  const VERSION = "Version";
1681
1681
  const SERVICE = "Service";
1682
1682
  const CLOUD_ORGANIZATION_NAME = "CloudOrganizationName";
@@ -359,7 +359,8 @@ type QueueGetAllOptions = RequestOptions & PaginationOptions & {
359
359
  */
360
360
  folderId?: number;
361
361
  };
362
- type QueueGetByIdOptions = BaseOptions;
362
+ interface QueueGetByIdOptions extends BaseOptions {
363
+ }
363
364
 
364
365
  /**
365
366
  * Service for managing UiPath Queues
@@ -1674,7 +1674,7 @@ const QueueMap = {
1674
1674
  // Connection string placeholder that will be replaced during build
1675
1675
  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";
1676
1676
  // SDK Version placeholder
1677
- const SDK_VERSION = "1.2.0";
1677
+ const SDK_VERSION = "1.2.2";
1678
1678
  const VERSION = "Version";
1679
1679
  const SERVICE = "Service";
1680
1680
  const CLOUD_ORGANIZATION_NAME = "CloudOrganizationName";