@uipath/uipath-typescript 1.2.1 → 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 +1 -1
  14. package/dist/conversational-agent/index.d.ts +10 -5
  15. package/dist/conversational-agent/index.mjs +1 -1
  16. package/dist/core/index.cjs +109 -17
  17. package/dist/core/index.d.ts +1 -1
  18. package/dist/core/index.mjs +109 -17
  19. package/dist/entities/index.cjs +1 -1
  20. package/dist/entities/index.d.ts +33 -21
  21. package/dist/entities/index.mjs +1 -1
  22. package/dist/index.cjs +569 -307
  23. package/dist/index.d.ts +468 -70
  24. package/dist/index.mjs +570 -308
  25. package/dist/index.umd.js +566 -304
  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 +23 -2
@@ -1675,7 +1675,7 @@ const AssetMap = {
1675
1675
  // Connection string placeholder that will be replaced during build
1676
1676
  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";
1677
1677
  // SDK Version placeholder
1678
- const SDK_VERSION = "1.2.1";
1678
+ const SDK_VERSION = "1.2.2";
1679
1679
  const VERSION = "Version";
1680
1680
  const SERVICE = "Service";
1681
1681
  const CLOUD_ORGANIZATION_NAME = "CloudOrganizationName";
@@ -385,7 +385,8 @@ type AssetGetAllOptions = RequestOptions & PaginationOptions & {
385
385
  /**
386
386
  * Options for getting a single asset by ID
387
387
  */
388
- type AssetGetByIdOptions = BaseOptions;
388
+ interface AssetGetByIdOptions extends BaseOptions {
389
+ }
389
390
 
390
391
  /**
391
392
  * Service for managing UiPath Assets.
@@ -1673,7 +1673,7 @@ const AssetMap = {
1673
1673
  // Connection string placeholder that will be replaced during build
1674
1674
  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";
1675
1675
  // SDK Version placeholder
1676
- const SDK_VERSION = "1.2.1";
1676
+ const SDK_VERSION = "1.2.2";
1677
1677
  const VERSION = "Version";
1678
1678
  const SERVICE = "Service";
1679
1679
  const CLOUD_ORGANIZATION_NAME = "CloudOrganizationName";