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