@things-factory/warehouse-base 7.1.20 → 7.1.21
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/inventory-history/index.d.ts +1 -1
- package/dist-server/service/inventory-item/index.d.ts +1 -1
- package/dist-server/service/inventory-item-change/index.d.ts +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +8 -8
|
@@ -25,7 +25,7 @@ export * from './pallet-count/pallet-count-types';
|
|
|
25
25
|
export * from './pallet-history/pallet-history-types';
|
|
26
26
|
export * from './warehouse/warehouse-types';
|
|
27
27
|
export * from './tote/tote-types';
|
|
28
|
-
export declare const entities: (typeof import("./
|
|
28
|
+
export declare const entities: (typeof import("./inventory/inventory").Inventory | typeof import("./location/location").Location | typeof import("./inventory-history/inventory-history").InventoryHistory | typeof import("./inventory-change/inventory-change").InventoryChange | typeof import("./inventory-item-change/inventory-item-change").InventoryItemChange | typeof import("./inventory-item/inventory-item").InventoryItem | typeof import("./warehouse/warehouse").Warehouse | typeof import("./movement/movement").Movement | typeof import("./pallet/pallet").Pallet | typeof import("./pallet-count/pallet-count").PalletCount | typeof import("./pallet-history/pallet-history").PalletHistory | typeof import("./reduced-inventory-history/reduced-inventory-history").ReducedInventoryHistory | typeof import("./tote/tote").Tote)[];
|
|
29
29
|
export declare const schema: {
|
|
30
|
-
resolverClasses: (typeof import("./
|
|
30
|
+
resolverClasses: (typeof import("./inventory/inventory-mutation").InventoryMutation | typeof import("..").InventoryQuery | typeof import("./inventory-change/inventory-change-mutation").InventoryChangeMutation | typeof import("./inventory-change/inventory-change-query").InventoryChangeQuery | typeof import("./inventory-history/inventory-history-query").InventoryHistoryQuery | typeof import("./inventory-history/inventory-history-mutation").InventoryHistoryMutation | typeof import("./inventory-item/inventory-item-mutation").InventoryItemMutation | typeof import("./inventory-item/inventory-item-query").InventoryItemQuery | typeof import("./inventory-item-change/inventory-item-change-mutation").InventoryItemChangeMutation | typeof import("./inventory-item-change/inventory-item-change-query").InventoryItemChangeQuery | typeof import("./location/location-query").LocationQuery | typeof import("./location/location-mutation").LocationMutation | typeof import("./movement/movement-query").MovementQuery | typeof import("./movement/movement-mutation").MovementMutation | typeof import("./pallet/pallet-query").PalletQuery | typeof import("./pallet/pallet-mutation").PalletMutation | typeof import("./pallet-count/pallet-count-query").PalletCountQuery | typeof import("./pallet-count/pallet-count-mutation").PalletCountMutation | typeof import("./pallet-history/pallet-history-query").PalletHistoryQuery | typeof import("./pallet-history/pallet-history-mutation").PalletHistoryMutation | typeof import("./warehouse/warehouse-query").WarehouseQuery | typeof import("./warehouse/warehouse-mutation").WarehouseMutation | typeof import("./tote/tote-query").ToteQuery | typeof import("./tote/tote-mutation").ToteMutation)[];
|
|
31
31
|
};
|
|
@@ -2,4 +2,4 @@ import { InventoryHistory } from './inventory-history';
|
|
|
2
2
|
import { InventoryHistoryMutation } from './inventory-history-mutation';
|
|
3
3
|
import { InventoryHistoryQuery } from './inventory-history-query';
|
|
4
4
|
export declare const entities: (typeof InventoryHistory)[];
|
|
5
|
-
export declare const resolvers: (typeof
|
|
5
|
+
export declare const resolvers: (typeof InventoryHistoryQuery | typeof InventoryHistoryMutation)[];
|
|
@@ -2,4 +2,4 @@ import { InventoryItem } from './inventory-item';
|
|
|
2
2
|
import { InventoryItemMutation } from './inventory-item-mutation';
|
|
3
3
|
import { InventoryItemQuery } from './inventory-item-query';
|
|
4
4
|
export declare const entities: (typeof InventoryItem)[];
|
|
5
|
-
export declare const resolvers: (typeof
|
|
5
|
+
export declare const resolvers: (typeof InventoryItemMutation | typeof InventoryItemQuery)[];
|
|
@@ -2,4 +2,4 @@ import { InventoryItemChange } from './inventory-item-change';
|
|
|
2
2
|
import { InventoryItemChangeQuery } from './inventory-item-change-query';
|
|
3
3
|
import { InventoryItemChangeMutation } from './inventory-item-change-mutation';
|
|
4
4
|
export declare const entities: (typeof InventoryItemChange)[];
|
|
5
|
-
export declare const resolvers: (typeof
|
|
5
|
+
export declare const resolvers: (typeof InventoryItemChangeMutation | typeof InventoryItemChangeQuery)[];
|