@platfformx/proto-contracts 1.2.22 → 1.2.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/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/paths/proto-paths.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6,5 +6,5 @@ export * as S3 from './gen/ts/s3-service/s3';
|
|
|
6
6
|
export * as Account from './gen/ts/users-service/account';
|
|
7
7
|
export * as Product from './gen/ts/products-service/product';
|
|
8
8
|
export * as Bulk from './gen/ts/products-service/bulk';
|
|
9
|
-
export * as Category from './gen/ts/products-service/
|
|
9
|
+
export * as Category from './gen/ts/products-service/category';
|
|
10
10
|
export { BulkStatus } from './gen/ts/products-service/bulk';
|
package/dist/index.js
CHANGED
|
@@ -46,6 +46,6 @@ exports.S3 = __importStar(require("./gen/ts/s3-service/s3"));
|
|
|
46
46
|
exports.Account = __importStar(require("./gen/ts/users-service/account"));
|
|
47
47
|
exports.Product = __importStar(require("./gen/ts/products-service/product"));
|
|
48
48
|
exports.Bulk = __importStar(require("./gen/ts/products-service/bulk"));
|
|
49
|
-
exports.Category = __importStar(require("./gen/ts/products-service/
|
|
49
|
+
exports.Category = __importStar(require("./gen/ts/products-service/category"));
|
|
50
50
|
var bulk_1 = require("./gen/ts/products-service/bulk");
|
|
51
51
|
Object.defineProperty(exports, "BulkStatus", { enumerable: true, get: function () { return bulk_1.BulkStatus; } });
|
|
@@ -6,7 +6,7 @@ exports.PROTO_PATHS = {
|
|
|
6
6
|
ACCOUNT: (0, path_1.join)(__dirname, '../../proto/users-service/account.proto'),
|
|
7
7
|
AUTH: (0, path_1.join)(__dirname, '../../proto/auth-service/auth.proto'),
|
|
8
8
|
PRODUCT: (0, path_1.join)(__dirname, '../../proto/products-service/product.proto'),
|
|
9
|
-
CATEGORY: (0, path_1.join)(__dirname, '../../proto/products-service/
|
|
9
|
+
CATEGORY: (0, path_1.join)(__dirname, '../../proto/products-service/category.proto'),
|
|
10
10
|
BULK: (0, path_1.join)(__dirname, '../../proto/products-service/bulk.proto'),
|
|
11
11
|
S3: (0, path_1.join)(__dirname, '../../proto/s3-service/s3.proto'),
|
|
12
12
|
};
|