@things-factory/product-base 8.0.71 → 8.0.74
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-server/service/index.d.ts +2 -2
- package/dist-server/service/product/index.d.ts +1 -1
- package/dist-server/service/product-bundle/index.d.ts +1 -1
- package/dist-server/service/product-bundle-setting/index.d.ts +1 -1
- package/dist-server/service/product-detail/index.d.ts +1 -1
- package/dist-server/service/product-detail-bizplace-setting/index.d.ts +1 -1
- package/dist-server/service/product-set/index.d.ts +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
|
@@ -15,7 +15,7 @@ export * from './product-bundle/product-bundle-types';
|
|
|
15
15
|
export * from './product-bundle-setting/product-bundle-setting-types';
|
|
16
16
|
export * from './product-detail-bizplace-setting/product-detail-bizplace-setting-types';
|
|
17
17
|
export * from './product-set/product-set-types';
|
|
18
|
-
export declare const entities: (typeof import("./product/product").
|
|
18
|
+
export declare const entities: (typeof import("./product-detail-bizplace-setting/product-detail-bizplace-setting").ProductDetailBizplaceSetting | typeof import("./product-detail/product-detail").ProductDetail | typeof import("./product/product").Product | typeof import("./product-set/product-set").ProductSet | typeof import("./product-bundle-setting/product-bundle-setting").ProductBundleSetting | typeof import("./product-bundle/product-bundle").ProductBundle | typeof import("./product-combination-setting/product-combination-setting").ProductCombinationSetting | typeof import("./product-combination/product-combination").ProductCombination)[];
|
|
19
19
|
export declare const schema: {
|
|
20
|
-
resolverClasses: (typeof import("./product/product-
|
|
20
|
+
resolverClasses: (typeof import("./product-detail/product-detail-mutation").ProductDetailMutation | typeof import("./product/product-mutation").ProductMutation | typeof import("./product/product-query").ProductQuery | typeof import("./product-bundle/product-bundle-mutation").ProductBundleMutation | typeof import("./product-bundle/product-bundle-query").ProductBundleQuery | typeof import("./product-bundle-setting/product-bundle-setting-mutation").ProductBundleSettingMutation | typeof import("./product-bundle-setting/product-bundle-setting-query").ProductBundleSettingQuery | typeof import("./product-detail/product-detail-query").ProductDetailQuery | typeof import("./product-detail-bizplace-setting/product-detail-bizplace-setting-mutation").ProductDetailBizplaceSettingMutation | typeof import("./product-detail-bizplace-setting/product-detail-bizplace-setting-query").ProductDetailBizplaceSettingQuery | typeof import("./product-set/product-set-mutation").ProductSetMutation | typeof import("./product-set/product-set-query").ProductSetQuery | typeof import("./product-combination/product-combination-query").ProductCombinationQuery | typeof import("./product-combination/product-combination-mutation").ProductCombinationMutation | typeof import("./product-combination-setting/product-combination-setting-query").ProductCombinationSettingQuery | typeof import("./product-combination-setting/product-combination-setting-mutation").ProductCombinationSettingMutation)[];
|
|
21
21
|
};
|
|
@@ -2,4 +2,4 @@ import { Product } from './product';
|
|
|
2
2
|
import { ProductMutation } from './product-mutation';
|
|
3
3
|
import { ProductQuery } from './product-query';
|
|
4
4
|
export declare const entities: (typeof Product)[];
|
|
5
|
-
export declare const resolvers: (typeof
|
|
5
|
+
export declare const resolvers: (typeof ProductMutation | typeof ProductQuery)[];
|
|
@@ -2,4 +2,4 @@ import { ProductBundle } from './product-bundle';
|
|
|
2
2
|
import { ProductBundleMutation } from './product-bundle-mutation';
|
|
3
3
|
import { ProductBundleQuery } from './product-bundle-query';
|
|
4
4
|
export declare const entities: (typeof ProductBundle)[];
|
|
5
|
-
export declare const resolvers: (typeof
|
|
5
|
+
export declare const resolvers: (typeof ProductBundleMutation | typeof ProductBundleQuery)[];
|
|
@@ -2,4 +2,4 @@ import { ProductBundleSetting } from './product-bundle-setting';
|
|
|
2
2
|
import { ProductBundleSettingMutation } from './product-bundle-setting-mutation';
|
|
3
3
|
import { ProductBundleSettingQuery } from './product-bundle-setting-query';
|
|
4
4
|
export declare const entities: (typeof ProductBundleSetting)[];
|
|
5
|
-
export declare const resolvers: (typeof
|
|
5
|
+
export declare const resolvers: (typeof ProductBundleSettingMutation | typeof ProductBundleSettingQuery)[];
|
|
@@ -2,4 +2,4 @@ import { ProductDetail } from './product-detail';
|
|
|
2
2
|
import { ProductDetailMutation } from './product-detail-mutation';
|
|
3
3
|
import { ProductDetailQuery } from './product-detail-query';
|
|
4
4
|
export declare const entities: (typeof ProductDetail)[];
|
|
5
|
-
export declare const resolvers: (typeof
|
|
5
|
+
export declare const resolvers: (typeof ProductDetailMutation | typeof ProductDetailQuery)[];
|
|
@@ -2,4 +2,4 @@ import { ProductDetailBizplaceSetting } from './product-detail-bizplace-setting'
|
|
|
2
2
|
import { ProductDetailBizplaceSettingMutation } from './product-detail-bizplace-setting-mutation';
|
|
3
3
|
import { ProductDetailBizplaceSettingQuery } from './product-detail-bizplace-setting-query';
|
|
4
4
|
export declare const entities: (typeof ProductDetailBizplaceSetting)[];
|
|
5
|
-
export declare const resolvers: (typeof
|
|
5
|
+
export declare const resolvers: (typeof ProductDetailBizplaceSettingMutation | typeof ProductDetailBizplaceSettingQuery)[];
|
|
@@ -2,4 +2,4 @@ import { ProductSet } from './product-set';
|
|
|
2
2
|
import { ProductSetMutation } from './product-set-mutation';
|
|
3
3
|
import { ProductSetQuery } from './product-set-query';
|
|
4
4
|
export declare const entities: (typeof ProductSet)[];
|
|
5
|
-
export declare const resolvers: (typeof
|
|
5
|
+
export declare const resolvers: (typeof ProductSetMutation | typeof ProductSetQuery)[];
|