@uipath/uipath-typescript 1.0.0-beta.16 → 1.0.0-beta.18
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/README.md +1 -1
- package/dist/index.cjs +4104 -94
- package/dist/index.d.cts +415 -44
- package/dist/index.d.mts +415 -44
- package/dist/index.d.ts +415 -44
- package/dist/index.mjs +4104 -94
- package/dist/index.umd.js +3856 -3625
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -327,7 +327,7 @@ const records = await sdk.entities.getRecordsById('entity-uuid', {
|
|
|
327
327
|
});
|
|
328
328
|
|
|
329
329
|
// Insert records
|
|
330
|
-
await sdk.entities.
|
|
330
|
+
await sdk.entities.batchInsertById('entity-uuid', [
|
|
331
331
|
{ name: 'John Doe', email: 'john@company.com', status: 'Active' },
|
|
332
332
|
{ name: 'Jane Smith', email: 'jane@company.com', status: 'Active' }
|
|
333
333
|
]);
|