@commercetools/sync-actions 8.0.0-alpha.0 → 8.0.0-alpha.1
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/commercetools-sync-actions.cjs.js +31880 -18
- package/dist/commercetools-sync-actions.esm.js +15933 -18
- package/dist/commercetools-sync-actions.umd.js +1 -1
- package/dist/commercetools-sync-actions.umd.min.js +1 -1
- package/dist/declarations/utils/common-actions.d.ts +1 -1
- package/dist/declarations/utils/types.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Delta, UpdateAction } from './types';
|
|
2
|
-
export declare const createIsEmptyValue: <T extends
|
|
2
|
+
export declare const createIsEmptyValue: <T extends string | object>(emptyValues: T[]) => (value: string | unknown) => boolean;
|
|
3
3
|
export declare const isOptionalField: (action: string) => boolean;
|
|
4
4
|
/**
|
|
5
5
|
* Builds actions for simple object properties, given a list of actions
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Delta as DiffDelta } from 'jsondiffpatch/dist/jsondiffpatch.cjs';
|
|
2
|
-
export
|
|
2
|
+
export * from '@commercetools/platform-sdk';
|
|
3
3
|
export type Delta = DiffDelta | undefined;
|
|
4
4
|
export type SyncActionConfig = {
|
|
5
5
|
shouldOmitEmptyString?: boolean;
|