@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.
- package/dist/assets/index.cjs +1 -1
- package/dist/assets/index.d.ts +2 -1
- package/dist/assets/index.mjs +1 -1
- package/dist/attachments/index.cjs +1944 -0
- package/dist/attachments/index.d.ts +399 -0
- package/dist/attachments/index.mjs +1941 -0
- package/dist/buckets/index.cjs +1 -1
- package/dist/buckets/index.d.ts +4 -2
- package/dist/buckets/index.mjs +1 -1
- package/dist/cases/index.cjs +95 -48
- package/dist/cases/index.d.ts +31 -2
- package/dist/cases/index.mjs +95 -48
- package/dist/conversational-agent/index.cjs +1 -1
- package/dist/conversational-agent/index.d.ts +10 -5
- package/dist/conversational-agent/index.mjs +1 -1
- package/dist/core/index.cjs +109 -17
- package/dist/core/index.d.ts +1 -1
- package/dist/core/index.mjs +109 -17
- package/dist/entities/index.cjs +1 -1
- package/dist/entities/index.d.ts +33 -21
- package/dist/entities/index.mjs +1 -1
- package/dist/index.cjs +569 -307
- package/dist/index.d.ts +468 -70
- package/dist/index.mjs +570 -308
- package/dist/index.umd.js +566 -304
- package/dist/jobs/index.cjs +2036 -0
- package/dist/jobs/index.d.ts +724 -0
- package/dist/jobs/index.mjs +2033 -0
- package/dist/maestro-processes/index.cjs +1 -1
- package/dist/maestro-processes/index.mjs +1 -1
- package/dist/processes/index.cjs +67 -1
- package/dist/processes/index.d.ts +80 -15
- package/dist/processes/index.mjs +68 -2
- package/dist/queues/index.cjs +1 -1
- package/dist/queues/index.d.ts +2 -1
- package/dist/queues/index.mjs +1 -1
- package/dist/tasks/index.cjs +1319 -1272
- package/dist/tasks/index.d.ts +331 -287
- package/dist/tasks/index.mjs +1319 -1272
- package/package.json +23 -2
package/dist/assets/index.cjs
CHANGED
|
@@ -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.
|
|
1678
|
+
const SDK_VERSION = "1.2.2";
|
|
1679
1679
|
const VERSION = "Version";
|
|
1680
1680
|
const SERVICE = "Service";
|
|
1681
1681
|
const CLOUD_ORGANIZATION_NAME = "CloudOrganizationName";
|
package/dist/assets/index.d.ts
CHANGED
|
@@ -385,7 +385,8 @@ type AssetGetAllOptions = RequestOptions & PaginationOptions & {
|
|
|
385
385
|
/**
|
|
386
386
|
* Options for getting a single asset by ID
|
|
387
387
|
*/
|
|
388
|
-
|
|
388
|
+
interface AssetGetByIdOptions extends BaseOptions {
|
|
389
|
+
}
|
|
389
390
|
|
|
390
391
|
/**
|
|
391
392
|
* Service for managing UiPath Assets.
|
package/dist/assets/index.mjs
CHANGED
|
@@ -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.
|
|
1676
|
+
const SDK_VERSION = "1.2.2";
|
|
1677
1677
|
const VERSION = "Version";
|
|
1678
1678
|
const SERVICE = "Service";
|
|
1679
1679
|
const CLOUD_ORGANIZATION_NAME = "CloudOrganizationName";
|