@openbox/shared-types 0.4.53 → 0.4.54
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/lib/inventories/ProductsVariations/CreateSingle/Request.d.ts +2 -0
- package/lib/inventories/ProductsVariations/CreateSingle/Request.js +3 -0
- package/lib/inventories/ProductsVariations/CreateSingle/Request.js.map +1 -0
- package/lib/inventories/ProductsVariations/CreateSingle/Response.d.ts +2 -0
- package/lib/inventories/ProductsVariations/CreateSingle/Response.js +3 -0
- package/lib/inventories/ProductsVariations/CreateSingle/Response.js.map +1 -0
- package/lib/inventories/ProductsVariations/DeleteSingle/Response.d.ts +2 -0
- package/lib/inventories/ProductsVariations/DeleteSingle/Response.js +3 -0
- package/lib/inventories/ProductsVariations/DeleteSingle/Response.js.map +1 -0
- package/lib/inventories/ProductsVariations/GetMany/Request.d.ts +2 -0
- package/lib/inventories/ProductsVariations/GetMany/Request.js +3 -0
- package/lib/inventories/ProductsVariations/GetMany/Request.js.map +1 -0
- package/lib/inventories/ProductsVariations/GetMany/Response.d.ts +7 -0
- package/lib/inventories/ProductsVariations/GetMany/Response.js +3 -0
- package/lib/inventories/ProductsVariations/GetMany/Response.js.map +1 -0
- package/lib/inventories/ProductsVariations/GetSingle/Response.d.ts +2 -0
- package/lib/inventories/ProductsVariations/GetSingle/Response.js +3 -0
- package/lib/inventories/ProductsVariations/GetSingle/Response.js.map +1 -0
- package/lib/inventories/ProductsVariations/UpdateSingle/Request.d.ts +2 -0
- package/lib/inventories/ProductsVariations/UpdateSingle/Request.js +3 -0
- package/lib/inventories/ProductsVariations/UpdateSingle/Request.js.map +1 -0
- package/lib/inventories/ProductsVariations/UpdateSingle/Response.d.ts +2 -0
- package/lib/inventories/ProductsVariations/UpdateSingle/Response.js +3 -0
- package/lib/inventories/ProductsVariations/UpdateSingle/Response.js.map +1 -0
- package/lib/inventories/ProductsVariations/index.d.ts +9 -0
- package/lib/inventories/ProductsVariations/index.js +26 -0
- package/lib/inventories/ProductsVariations/index.js.map +1 -0
- package/lib/inventories/ProductsVariations/inventories.products-variations.type.d.ts +5 -0
- package/lib/inventories/ProductsVariations/inventories.products-variations.type.js +3 -0
- package/lib/inventories/ProductsVariations/inventories.products-variations.type.js.map +1 -0
- package/lib/inventories/index.d.ts +1 -0
- package/lib/inventories/index.js +1 -0
- package/lib/inventories/index.js.map +1 -1
- package/package.json +1 -1
- package/src/inventories/ProductsVariations/CreateSingle/Request.ts +6 -0
- package/src/inventories/ProductsVariations/CreateSingle/Response.ts +3 -0
- package/src/inventories/ProductsVariations/DeleteSingle/Response.ts +3 -0
- package/src/inventories/ProductsVariations/GetMany/Request.ts +3 -0
- package/src/inventories/ProductsVariations/GetMany/Response.ts +6 -0
- package/src/inventories/ProductsVariations/GetSingle/Response.ts +3 -0
- package/src/inventories/ProductsVariations/UpdateSingle/Request.ts +4 -0
- package/src/inventories/ProductsVariations/UpdateSingle/Response.ts +3 -0
- package/src/inventories/ProductsVariations/index.ts +9 -0
- package/src/inventories/ProductsVariations/inventories.products-variations.type.ts +5 -0
- package/src/inventories/index.ts +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Request.js","sourceRoot":"","sources":["../../../../src/inventories/ProductsVariations/CreateSingle/Request.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../../src/inventories/ProductsVariations/CreateSingle/Response.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../../src/inventories/ProductsVariations/DeleteSingle/Response.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Request.js","sourceRoot":"","sources":["../../../../src/inventories/ProductsVariations/GetMany/Request.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { GetManyResponse } from '../../../interfaces';
|
|
2
|
+
import { InventoriesProductsVariations } from '../inventories.products-variations.type';
|
|
3
|
+
export type InventoriesProductsVariationsGetManyResponse = GetManyResponse & {
|
|
4
|
+
data: Array<InventoriesProductsVariations & {
|
|
5
|
+
index: number;
|
|
6
|
+
}>;
|
|
7
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../../src/inventories/ProductsVariations/GetMany/Response.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../../src/inventories/ProductsVariations/GetSingle/Response.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Request.js","sourceRoot":"","sources":["../../../../src/inventories/ProductsVariations/UpdateSingle/Request.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Response.js","sourceRoot":"","sources":["../../../../src/inventories/ProductsVariations/UpdateSingle/Response.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from './CreateSingle/Request';
|
|
2
|
+
export * from './CreateSingle/Response';
|
|
3
|
+
export * from './DeleteSingle/Response';
|
|
4
|
+
export * from './GetMany/Request';
|
|
5
|
+
export * from './GetMany/Response';
|
|
6
|
+
export * from './GetSingle/Response';
|
|
7
|
+
export * from './UpdateSingle/Request';
|
|
8
|
+
export * from './UpdateSingle/Response';
|
|
9
|
+
export * from './inventories.products-variations.type';
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./CreateSingle/Request"), exports);
|
|
18
|
+
__exportStar(require("./CreateSingle/Response"), exports);
|
|
19
|
+
__exportStar(require("./DeleteSingle/Response"), exports);
|
|
20
|
+
__exportStar(require("./GetMany/Request"), exports);
|
|
21
|
+
__exportStar(require("./GetMany/Response"), exports);
|
|
22
|
+
__exportStar(require("./GetSingle/Response"), exports);
|
|
23
|
+
__exportStar(require("./UpdateSingle/Request"), exports);
|
|
24
|
+
__exportStar(require("./UpdateSingle/Response"), exports);
|
|
25
|
+
__exportStar(require("./inventories.products-variations.type"), exports);
|
|
26
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/inventories/ProductsVariations/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yDAAsC;AACtC,0DAAuC;AACvC,0DAAuC;AACvC,oDAAiC;AACjC,qDAAkC;AAClC,uDAAoC;AACpC,yDAAsC;AACtC,0DAAuC;AACvC,yEAAsD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"inventories.products-variations.type.js","sourceRoot":"","sources":["../../../src/inventories/ProductsVariations/inventories.products-variations.type.ts"],"names":[],"mappings":""}
|
package/lib/inventories/index.js
CHANGED
|
@@ -16,4 +16,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./Categories"), exports);
|
|
18
18
|
__exportStar(require("./Products"), exports);
|
|
19
|
+
__exportStar(require("./ProductsVariations"), exports);
|
|
19
20
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/inventories/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+CAA4B;AAC5B,6CAA0B"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/inventories/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+CAA4B;AAC5B,6CAA0B;AAC1B,uDAAoC"}
|
package/package.json
CHANGED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { GetManyResponse } from '../../../interfaces'
|
|
2
|
+
import { InventoriesProductsVariations } from '../inventories.products-variations.type'
|
|
3
|
+
|
|
4
|
+
export type InventoriesProductsVariationsGetManyResponse = GetManyResponse & {
|
|
5
|
+
data: Array<InventoriesProductsVariations & { index: number }>
|
|
6
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from './CreateSingle/Request'
|
|
2
|
+
export * from './CreateSingle/Response'
|
|
3
|
+
export * from './DeleteSingle/Response'
|
|
4
|
+
export * from './GetMany/Request'
|
|
5
|
+
export * from './GetMany/Response'
|
|
6
|
+
export * from './GetSingle/Response'
|
|
7
|
+
export * from './UpdateSingle/Request'
|
|
8
|
+
export * from './UpdateSingle/Response'
|
|
9
|
+
export * from './inventories.products-variations.type'
|
package/src/inventories/index.ts
CHANGED