@things-factory/warehouse-base 8.0.0-alpha.23 → 8.0.0-alpha.24
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 +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("./warehouse/warehouse").Warehouse | typeof import("./location/location").Location | typeof import("./pallet/pallet").Pallet | typeof import("./inventory/inventory").Inventory | typeof import("./inventory-history/inventory-history").InventoryHistory | typeof import("./inventory-item/inventory-item").InventoryItem | typeof import("./inventory-item-change/inventory-item-change").InventoryItemChange | typeof import("./inventory-change/inventory-change").InventoryChange | typeof import("./movement/movement").Movement | typeof import("./pallet-history/pallet-history").PalletHistory | typeof import("./pallet-count/pallet-count").PalletCount | 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("./location/location-mutation").LocationMutation | typeof import("./warehouse/warehouse-mutation").WarehouseMutation | typeof import("./inventory/inventory-mutation").InventoryMutation | typeof import("..").InventoryQuery | typeof import("./inventory-item/inventory-item-query").InventoryItemQuery | typeof import("./inventory-change/inventory-change-mutation").InventoryChangeMutation | typeof import("./inventory-change/inventory-change-query").InventoryChangeQuery | typeof import("./inventory-history/inventory-history-mutation").InventoryHistoryMutation | typeof import("./inventory-history/inventory-history-query").InventoryHistoryQuery | typeof import("./inventory-item/inventory-item-mutation").InventoryItemMutation | typeof import("./inventory-item-change/inventory-item-change-query").InventoryItemChangeQuery | typeof import("./inventory-item-change/inventory-item-change-mutation").InventoryItemChangeMutation | typeof import("./location/location-query").LocationQuery | typeof import("./movement/movement-mutation").MovementMutation | typeof import("./movement/movement-query").MovementQuery | typeof import("./pallet/pallet-mutation").PalletMutation | typeof import("./pallet/pallet-query").PalletQuery | typeof import("./pallet-count/pallet-count-mutation").PalletCountMutation | typeof import("./pallet-count/pallet-count-query").PalletCountQuery | typeof import("./pallet-history/pallet-history-mutation").PalletHistoryMutation | typeof import("./pallet-history/pallet-history-query").PalletHistoryQuery | typeof import("./warehouse/warehouse-query").WarehouseQuery | typeof import("./tote/tote-mutation").ToteMutation | typeof import("./tote/tote-query").ToteQuery)[];
|
|
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 InventoryMutation | typeof InventoryQuery)[];
|
|
@@ -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 InventoryChangeMutation | typeof InventoryChangeQuery)[];
|
|
@@ -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 InventoryHistoryMutation | typeof InventoryHistoryQuery)[];
|
|
@@ -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 LocationMutation | typeof LocationQuery)[];
|
|
@@ -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 MovementMutation | typeof MovementQuery)[];
|
|
@@ -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 PalletMutation | typeof PalletQuery)[];
|
|
@@ -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 PalletCountMutation | typeof PalletCountQuery)[];
|
|
@@ -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 PalletHistoryMutation | typeof PalletHistoryQuery)[];
|
|
@@ -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 ToteMutation | typeof ToteQuery)[];
|
|
@@ -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 WarehouseMutation | typeof WarehouseQuery)[];
|