@edgebound/bigcommerce 0.5.25 → 0.5.27
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/bigcommerce-entities/price-lists/index.d.ts +1 -0
- package/dist/bigcommerce-entities/price-lists/index.d.ts.map +1 -1
- package/dist/bigcommerce-entities/price-lists/index.js +1 -0
- package/dist/bigcommerce-entities/price-lists/index.js.map +1 -1
- package/dist/bigcommerce-entities/price-lists/price-lists-records.service.d.ts +15 -0
- package/dist/bigcommerce-entities/price-lists/price-lists-records.service.d.ts.map +1 -0
- package/dist/bigcommerce-entities/price-lists/price-lists-records.service.js +51 -0
- package/dist/bigcommerce-entities/price-lists/price-lists-records.service.js.map +1 -0
- package/dist/bigcommerce-entities/price-lists/schemas/index.d.ts +1 -0
- package/dist/bigcommerce-entities/price-lists/schemas/index.d.ts.map +1 -1
- package/dist/bigcommerce-entities/price-lists/schemas/index.js +1 -0
- package/dist/bigcommerce-entities/price-lists/schemas/index.js.map +1 -1
- package/dist/bigcommerce-entities/price-lists/schemas/price-lists-records.schema.d.ts +62 -0
- package/dist/bigcommerce-entities/price-lists/schemas/price-lists-records.schema.d.ts.map +1 -0
- package/dist/bigcommerce-entities/price-lists/schemas/price-lists-records.schema.js +68 -0
- package/dist/bigcommerce-entities/price-lists/schemas/price-lists-records.schema.js.map +1 -0
- package/dist/constants.d.ts +3 -0
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +3 -0
- package/dist/constants.js.map +1 -1
- package/package.json +3 -3
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/bigcommerce-entities/price-lists/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC;AACtC,cAAc,WAAW,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/bigcommerce-entities/price-lists/index.ts"],"names":[],"mappings":"AAAA,cAAc,+BAA+B,CAAC;AAC9C,cAAc,uBAAuB,CAAC;AACtC,cAAc,WAAW,CAAC"}
|
|
@@ -14,6 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./price-lists-records.service"), exports);
|
|
17
18
|
__exportStar(require("./price-lists.service"), exports);
|
|
18
19
|
__exportStar(require("./schemas"), exports);
|
|
19
20
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/bigcommerce-entities/price-lists/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wDAAsC;AACtC,4CAA0B"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/bigcommerce-entities/price-lists/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gEAA8C;AAC9C,wDAAsC;AACtC,4CAA0B"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as z from 'zod';
|
|
2
|
+
import { BigCommerceFetcherService } from '../../core';
|
|
3
|
+
import { UpsertPriceListRecordsSchema } from './schemas';
|
|
4
|
+
export declare class BigCommercePriceListsRecordsService {
|
|
5
|
+
private readonly fetcher;
|
|
6
|
+
constructor(fetcher: BigCommerceFetcherService);
|
|
7
|
+
upsertRecords(input: z.input<typeof UpsertPriceListRecordsSchema>): import("neverthrow").ResultAsync<{
|
|
8
|
+
success: {
|
|
9
|
+
data: Record<string, never>;
|
|
10
|
+
}[];
|
|
11
|
+
errors: import("../../core").BigCommerceError[];
|
|
12
|
+
}, import("../../core").BigCommerceError>;
|
|
13
|
+
private upsertRecordsBatch;
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=price-lists-records.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"price-lists-records.service.d.ts","sourceRoot":"","sources":["../../../src/bigcommerce-entities/price-lists/price-lists-records.service.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,OAAO,EAAE,yBAAyB,EAAE,MAAM,YAAY,CAAC;AAGvD,OAAO,EAAwC,4BAA4B,EAAE,MAAM,WAAW,CAAC;AAC/F,qBACa,mCAAmC;IAClC,OAAO,CAAC,QAAQ,CAAC,OAAO;gBAAP,OAAO,EAAE,yBAAyB;IAE/D,aAAa,CAAC,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC;;;;;;IAejE,OAAO,CAAC,kBAAkB;CAU3B"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.BigCommercePriceListsRecordsService = void 0;
|
|
13
|
+
const common_1 = require("@nestjs/common");
|
|
14
|
+
const constants_1 = require("../../constants");
|
|
15
|
+
const core_1 = require("../../core");
|
|
16
|
+
const utils_1 = require("../../utils");
|
|
17
|
+
const validate_1 = require("../../utils/validate");
|
|
18
|
+
const schemas_1 = require("./schemas");
|
|
19
|
+
let BigCommercePriceListsRecordsService = class BigCommercePriceListsRecordsService {
|
|
20
|
+
fetcher;
|
|
21
|
+
constructor(fetcher) {
|
|
22
|
+
this.fetcher = fetcher;
|
|
23
|
+
}
|
|
24
|
+
upsertRecords(input) {
|
|
25
|
+
return (0, validate_1.validateInputData)(schemas_1.UpsertPriceListRecordsSchema, input).asyncAndThen((validatedInput) => (0, utils_1.concurrency)({
|
|
26
|
+
batchSize: constants_1.DEFAULTS.priceLists.records.upsertBatchSize,
|
|
27
|
+
items: validatedInput.data,
|
|
28
|
+
limit: 2,
|
|
29
|
+
fn: (records) => this.upsertRecordsBatch({
|
|
30
|
+
data: records,
|
|
31
|
+
priceListId: validatedInput.priceListId,
|
|
32
|
+
}),
|
|
33
|
+
}));
|
|
34
|
+
}
|
|
35
|
+
upsertRecordsBatch({ data, priceListId }) {
|
|
36
|
+
return this.fetcher.fetch({
|
|
37
|
+
isB2B: false,
|
|
38
|
+
method: 'PUT',
|
|
39
|
+
path: `pricelists/${priceListId}/records`,
|
|
40
|
+
body: data,
|
|
41
|
+
resultSchema: schemas_1.UpsertPriceListRecordsResponseSchema,
|
|
42
|
+
version: 'v3',
|
|
43
|
+
});
|
|
44
|
+
}
|
|
45
|
+
};
|
|
46
|
+
exports.BigCommercePriceListsRecordsService = BigCommercePriceListsRecordsService;
|
|
47
|
+
exports.BigCommercePriceListsRecordsService = BigCommercePriceListsRecordsService = __decorate([
|
|
48
|
+
(0, common_1.Injectable)(),
|
|
49
|
+
__metadata("design:paramtypes", [core_1.BigCommerceFetcherService])
|
|
50
|
+
], BigCommercePriceListsRecordsService);
|
|
51
|
+
//# sourceMappingURL=price-lists-records.service.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"price-lists-records.service.js","sourceRoot":"","sources":["../../../src/bigcommerce-entities/price-lists/price-lists-records.service.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAE5C,+CAA2C;AAC3C,qCAAuD;AACvD,uCAA0C;AAC1C,mDAAyD;AACzD,uCAA+F;AAExF,IAAM,mCAAmC,GAAzC,MAAM,mCAAmC;IACjB;IAA7B,YAA6B,OAAkC;QAAlC,YAAO,GAAP,OAAO,CAA2B;IAAG,CAAC;IAEnE,aAAa,CAAC,KAAmD;QAC/D,OAAO,IAAA,4BAAiB,EAAC,sCAA4B,EAAE,KAAK,CAAC,CAAC,YAAY,CAAC,CAAC,cAAc,EAAE,EAAE,CAC5F,IAAA,mBAAW,EAAC;YACV,SAAS,EAAE,oBAAQ,CAAC,UAAU,CAAC,OAAO,CAAC,eAAe;YACtD,KAAK,EAAE,cAAc,CAAC,IAAI;YAC1B,KAAK,EAAE,CAAC;YACR,EAAE,EAAE,CAAC,OAAO,EAAE,EAAE,CACd,IAAI,CAAC,kBAAkB,CAAC;gBACtB,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,cAAc,CAAC,WAAW;aACxC,CAAC;SACL,CAAC,CACH,CAAC;IACJ,CAAC;IAEO,kBAAkB,CAAC,EAAE,IAAI,EAAE,WAAW,EAAiD;QAC7F,OAAO,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC;YACxB,KAAK,EAAE,KAAK;YACZ,MAAM,EAAE,KAAK;YACb,IAAI,EAAE,cAAc,WAAW,UAAU;YACzC,IAAI,EAAE,IAAI;YACV,YAAY,EAAE,8CAAoC;YAClD,OAAO,EAAE,IAAI;SACd,CAAC,CAAC;IACL,CAAC;CACF,CAAA;AA5BY,kFAAmC;8CAAnC,mCAAmC;IAD/C,IAAA,mBAAU,GAAE;qCAE2B,gCAAyB;GADpD,mCAAmC,CA4B/C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/bigcommerce-entities/price-lists/schemas/index.ts"],"names":[],"mappings":"AAAA,cAAc,6BAA6B,CAAC;AAC5C,cAAc,2BAA2B,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/bigcommerce-entities/price-lists/schemas/index.ts"],"names":[],"mappings":"AAAA,cAAc,6BAA6B,CAAC;AAC5C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,8BAA8B,CAAC"}
|
|
@@ -16,4 +16,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./create-price-lists.schema"), exports);
|
|
18
18
|
__exportStar(require("./get-prices-lists.schema"), exports);
|
|
19
|
+
__exportStar(require("./price-lists-records.schema"), exports);
|
|
19
20
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/bigcommerce-entities/price-lists/schemas/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8DAA4C;AAC5C,4DAA0C"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/bigcommerce-entities/price-lists/schemas/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8DAA4C;AAC5C,4DAA0C;AAC1C,+DAA6C"}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import * as z from 'zod';
|
|
2
|
+
export declare const UpsertPriceListRecordsSchema: z.ZodPipe<z.ZodObject<{
|
|
3
|
+
priceListId: z.ZodNumber;
|
|
4
|
+
records: z.ZodArray<z.ZodObject<{
|
|
5
|
+
sku: z.ZodString;
|
|
6
|
+
currency: z.ZodEnum<{
|
|
7
|
+
usd: "usd";
|
|
8
|
+
mxn: "mxn";
|
|
9
|
+
}>;
|
|
10
|
+
price: z.ZodNumber;
|
|
11
|
+
sale_price: z.ZodOptional<z.ZodNumber>;
|
|
12
|
+
retail_price: z.ZodOptional<z.ZodNumber>;
|
|
13
|
+
map_price: z.ZodOptional<z.ZodNumber>;
|
|
14
|
+
bulk_pricing_tiers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15
|
+
quantity_min: z.ZodInt;
|
|
16
|
+
quantity_max: z.ZodInt;
|
|
17
|
+
type: z.ZodEnum<{
|
|
18
|
+
fixed: "fixed";
|
|
19
|
+
price: "price";
|
|
20
|
+
percent: "percent";
|
|
21
|
+
}>;
|
|
22
|
+
amount: z.ZodNumber;
|
|
23
|
+
}, z.core.$strip>>>;
|
|
24
|
+
}, z.core.$strip>>;
|
|
25
|
+
}, z.core.$strip>, z.ZodTransform<{
|
|
26
|
+
priceListId: number;
|
|
27
|
+
data: {
|
|
28
|
+
sku: string;
|
|
29
|
+
currency: "usd" | "mxn";
|
|
30
|
+
price: number;
|
|
31
|
+
sale_price?: number | undefined;
|
|
32
|
+
retail_price?: number | undefined;
|
|
33
|
+
map_price?: number | undefined;
|
|
34
|
+
bulk_pricing_tiers?: {
|
|
35
|
+
quantity_min: number;
|
|
36
|
+
quantity_max: number;
|
|
37
|
+
type: "fixed" | "price" | "percent";
|
|
38
|
+
amount: number;
|
|
39
|
+
}[] | undefined;
|
|
40
|
+
price_list_id: number;
|
|
41
|
+
}[];
|
|
42
|
+
}, {
|
|
43
|
+
priceListId: number;
|
|
44
|
+
records: {
|
|
45
|
+
sku: string;
|
|
46
|
+
currency: "usd" | "mxn";
|
|
47
|
+
price: number;
|
|
48
|
+
sale_price?: number | undefined;
|
|
49
|
+
retail_price?: number | undefined;
|
|
50
|
+
map_price?: number | undefined;
|
|
51
|
+
bulk_pricing_tiers?: {
|
|
52
|
+
quantity_min: number;
|
|
53
|
+
quantity_max: number;
|
|
54
|
+
type: "fixed" | "price" | "percent";
|
|
55
|
+
amount: number;
|
|
56
|
+
}[] | undefined;
|
|
57
|
+
}[];
|
|
58
|
+
}>>;
|
|
59
|
+
export declare const UpsertPriceListRecordsResponseSchema: z.ZodObject<{
|
|
60
|
+
data: z.ZodObject<{}, z.core.$strip>;
|
|
61
|
+
}, z.core.$strip>;
|
|
62
|
+
//# sourceMappingURL=price-lists-records.schema.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"price-lists-records.schema.d.ts","sourceRoot":"","sources":["../../../../src/bigcommerce-entities/price-lists/schemas/price-lists-records.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BpC,CAAC;AAEN,eAAO,MAAM,oCAAoC;;iBAE/C,CAAC"}
|
|
@@ -0,0 +1,68 @@
|
|
|
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 __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.UpsertPriceListRecordsResponseSchema = exports.UpsertPriceListRecordsSchema = void 0;
|
|
37
|
+
const z = __importStar(require("zod"));
|
|
38
|
+
exports.UpsertPriceListRecordsSchema = z
|
|
39
|
+
.object({
|
|
40
|
+
priceListId: z.number(),
|
|
41
|
+
records: z.array(z.object({
|
|
42
|
+
sku: z.string(),
|
|
43
|
+
currency: z.enum(['usd', 'mxn']),
|
|
44
|
+
price: z.number().nonnegative(),
|
|
45
|
+
sale_price: z.number().nonnegative().optional(),
|
|
46
|
+
retail_price: z.number().nonnegative().optional(),
|
|
47
|
+
map_price: z.number().nonnegative().optional(),
|
|
48
|
+
bulk_pricing_tiers: z
|
|
49
|
+
.array(z.object({
|
|
50
|
+
quantity_min: z.int(),
|
|
51
|
+
quantity_max: z.int(),
|
|
52
|
+
type: z.enum(['fixed', 'price', 'percent']),
|
|
53
|
+
amount: z.number().nonnegative(),
|
|
54
|
+
}))
|
|
55
|
+
.optional(),
|
|
56
|
+
})),
|
|
57
|
+
})
|
|
58
|
+
.transform((data) => ({
|
|
59
|
+
priceListId: data.priceListId,
|
|
60
|
+
data: data.records.map((record) => ({
|
|
61
|
+
price_list_id: data.priceListId,
|
|
62
|
+
...record,
|
|
63
|
+
})),
|
|
64
|
+
}));
|
|
65
|
+
exports.UpsertPriceListRecordsResponseSchema = z.object({
|
|
66
|
+
data: z.object({}),
|
|
67
|
+
});
|
|
68
|
+
//# sourceMappingURL=price-lists-records.schema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"price-lists-records.schema.js","sourceRoot":"","sources":["../../../../src/bigcommerce-entities/price-lists/schemas/price-lists-records.schema.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,uCAAyB;AACZ,QAAA,4BAA4B,GAAG,CAAC;KAC1C,MAAM,CAAC;IACN,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;IACvB,OAAO,EAAE,CAAC,CAAC,KAAK,CACd,CAAC,CAAC,MAAM,CAAC;QACP,GAAG,EAAE,CAAC,CAAC,MAAM,EAAE;QACf,QAAQ,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;QAChC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,WAAW,EAAE;QAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,WAAW,EAAE,CAAC,QAAQ,EAAE;QAC/C,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,WAAW,EAAE,CAAC,QAAQ,EAAE;QACjD,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,WAAW,EAAE,CAAC,QAAQ,EAAE;QAC9C,kBAAkB,EAAE,CAAC;aAClB,KAAK,CACJ,CAAC,CAAC,MAAM,CAAC;YACP,YAAY,EAAE,CAAC,CAAC,GAAG,EAAE;YACrB,YAAY,EAAE,CAAC,CAAC,GAAG,EAAE;YACrB,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,OAAO,EAAE,SAAS,CAAC,CAAC;YAC3C,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,WAAW,EAAE;SACjC,CAAC,CACH;aACA,QAAQ,EAAE;KACd,CAAC,CACH;CACF,CAAC;KACD,SAAS,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC;IACpB,WAAW,EAAE,IAAI,CAAC,WAAW;IAC7B,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;QAClC,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,GAAG,MAAM;KACV,CAAC,CAAC;CACJ,CAAC,CAAC,CAAC;AAEO,QAAA,oCAAoC,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3D,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,CAAC;CACnB,CAAC,CAAC"}
|
package/dist/constants.d.ts
CHANGED
package/dist/constants.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2DX,CAAC"}
|
package/dist/constants.js
CHANGED
package/dist/constants.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":";;;AAAa,QAAA,QAAQ,GAAG;IACtB,KAAK,EAAE;QACL,UAAU,EAAE,CAAC;QACb,gBAAgB,EAAE,CAAC;KACpB;IACD,OAAO,EAAE;QACP,EAAE,EAAE,KAAK;KACV;IACD,eAAe,EAAE;QACf,GAAG,EAAE,qCAAqC;QAC1C,OAAO,EAAE,oCAAoC;KAC9C;IACD,SAAS,EAAE;QACT,YAAY,EAAE,GAAG;KAClB;IACD,UAAU,EAAE;QACV,YAAY,EAAE,GAAG;KAClB;IACD,SAAS,EAAE;QACT,qBAAqB,EAAE;YACrB,eAAe,EAAE,EAAE;YACnB,WAAW,EAAE,CAAC;SACf;QACD,WAAW,EAAE;YACX,YAAY,EAAE,GAAG;SAClB;QACD,KAAK,EAAE;YACL,YAAY,EAAE,GAAG;SAClB;QACD,IAAI,EAAE;YACJ,QAAQ,EAAE,GAAG;SACd;KACF;IACD,QAAQ,EAAE;QACR,eAAe,EAAE,CAAC;QAClB,iBAAiB,EAAE,CAAC;QACpB,SAAS,EAAE;YACT,eAAe,EAAE,IAAI;YACrB,iBAAiB,EAAE,CAAC;SACrB;KACF;IACD,MAAM,EAAE;QACN,eAAe,EAAE,GAAG;QACpB,iBAAiB,EAAE;YACjB,eAAe,EAAE,GAAG;SACrB;QACD,QAAQ,EAAE;YACR,eAAe,EAAE,GAAG;SACrB;KACF;IACD,UAAU,EAAE;QACV,eAAe,EAAE,GAAG;
|
|
1
|
+
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":";;;AAAa,QAAA,QAAQ,GAAG;IACtB,KAAK,EAAE;QACL,UAAU,EAAE,CAAC;QACb,gBAAgB,EAAE,CAAC;KACpB;IACD,OAAO,EAAE;QACP,EAAE,EAAE,KAAK;KACV;IACD,eAAe,EAAE;QACf,GAAG,EAAE,qCAAqC;QAC1C,OAAO,EAAE,oCAAoC;KAC9C;IACD,SAAS,EAAE;QACT,YAAY,EAAE,GAAG;KAClB;IACD,UAAU,EAAE;QACV,YAAY,EAAE,GAAG;KAClB;IACD,SAAS,EAAE;QACT,qBAAqB,EAAE;YACrB,eAAe,EAAE,EAAE;YACnB,WAAW,EAAE,CAAC;SACf;QACD,WAAW,EAAE;YACX,YAAY,EAAE,GAAG;SAClB;QACD,KAAK,EAAE;YACL,YAAY,EAAE,GAAG;SAClB;QACD,IAAI,EAAE;YACJ,QAAQ,EAAE,GAAG;SACd;KACF;IACD,QAAQ,EAAE;QACR,eAAe,EAAE,CAAC;QAClB,iBAAiB,EAAE,CAAC;QACpB,SAAS,EAAE;YACT,eAAe,EAAE,IAAI;YACrB,iBAAiB,EAAE,CAAC;SACrB;KACF;IACD,MAAM,EAAE;QACN,eAAe,EAAE,GAAG;QACpB,iBAAiB,EAAE;YACjB,eAAe,EAAE,GAAG;SACrB;QACD,QAAQ,EAAE;YACR,eAAe,EAAE,GAAG;SACrB;KACF;IACD,UAAU,EAAE;QACV,eAAe,EAAE,GAAG;QACpB,OAAO,EAAE;YACP,eAAe,EAAE,IAAI;SACtB;KACF;IACD,SAAS,EAAE;QACT,YAAY,EAAE,GAAG;KAClB;CACO,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@edgebound/bigcommerce",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.27",
|
|
4
4
|
"types": "./dist/index.d.ts",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"rxjs": "^7.0.0",
|
|
23
23
|
"zod": "^4.3.3",
|
|
24
24
|
"delay": "^7.0.0",
|
|
25
|
-
"@edgebound/
|
|
26
|
-
"@edgebound/
|
|
25
|
+
"@edgebound/eslint-config": "0.0.2",
|
|
26
|
+
"@edgebound/typescript-config": "0.0.0"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
29
29
|
"@nestjs/common": "^11.0.0",
|