@commercetools/sync-actions 7.2.0-alpha.0 → 7.2.0-alpha.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.
@@ -23,3 +23,4 @@ export { default as createSyncAttributeGroups } from './attribute-groups/attribu
23
23
  export { default as createSyncApiExtensions } from './api-extensions/api-extensions';
24
24
  export { default as createSyncBusinessUnits } from './business-units/business-units';
25
25
  export { default as createSyncSubscriptions } from './subscriptions/subscriptions';
26
+ export * from './utils/types';
@@ -1,4 +1,4 @@
1
- import type { SyncAction, SyncActionConfig, ActionGroup, ProductUpdateAction, Product } from '../utils/types';
1
+ import type { SyncAction, SyncActionConfig, ActionGroup, ProductData, ProductUpdateAction, Product } from '../utils/types';
2
2
  export declare const actionGroups: Array<string>;
3
- declare const _default: (actionGroupList?: Array<ActionGroup>, syncActionConfig?: SyncActionConfig) => SyncAction<Product, ProductUpdateAction>;
3
+ declare const _default: (actionGroupList?: Array<ActionGroup>, syncActionConfig?: SyncActionConfig) => SyncAction<Product | ProductData, ProductUpdateAction>;
4
4
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@commercetools/sync-actions",
3
- "version": "7.2.0-alpha.0",
3
+ "version": "7.2.0-alpha.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },