skyflow-js 1.23.1 → 1.24.0
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 +7 -0
- package/dist/sdkNodeBuild/index.js +1 -1
- package/dist/sdkNodeBuild/index.js.LICENSE.txt +9 -0
- package/dist/sdkNodeBuild/index.js.LICENSE.txt.gz +0 -0
- package/dist/sdkNodeBuild/index.js.gz +0 -0
- package/package.json +3 -3
- package/types/core/constants.d.ts +23 -0
- package/types/core/external/collect/collect-container.d.ts +1 -0
- package/types/core/external/collect/collect-element.d.ts +3 -1
- package/types/core/external/collect/compose-collect-container.d.ts +32 -0
- package/types/core/external/collect/compose-collect-element.d.ts +7 -0
- package/types/core/external/reveal/reveal-container.d.ts +1 -0
- package/types/core/internal/iframe-form/index.d.ts +1 -0
- package/types/skyflow.d.ts +4 -2
- package/types/utils/constants.d.ts +32 -0
- package/types/utils/helpers/index.d.ts +2 -0
- package/types/utils/logs.d.ts +8 -0
- package/types/utils/validators/index.d.ts +1 -0
package/README.md
CHANGED
|
@@ -416,6 +416,13 @@ const options = {
|
|
|
416
416
|
// ...additional records here.
|
|
417
417
|
],
|
|
418
418
|
}, // Optional
|
|
419
|
+
upsert: [
|
|
420
|
+
// Upsert operations support in the vault
|
|
421
|
+
{
|
|
422
|
+
table: 'string', // Table name
|
|
423
|
+
column: 'value', // Unique column in the table
|
|
424
|
+
},
|
|
425
|
+
], // Optional
|
|
419
426
|
};
|
|
420
427
|
|
|
421
428
|
container.collect(options);
|