@or-sdk/ccp 2.2.2-beta.3546.0 → 2.2.2-beta.3547.0
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/cjs/api/mapping-api/mappingApi.js +1 -1
- package/dist/cjs/index.js +1 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/api/mapping-api/mappingApi.js +1 -1
- package/dist/esm/index.js +1 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/api/mapping-api/mappingApi.ts +1 -1
- package/src/index.ts +1 -0
|
@@ -57,7 +57,7 @@ var MappingApi = (function (_super) {
|
|
|
57
57
|
function MappingApi() {
|
|
58
58
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
59
59
|
_this.apiBasePath = 'api/v1/mapping';
|
|
60
|
-
_this.apiBasePathV2 = 'api/v1/mapping
|
|
60
|
+
_this.apiBasePathV2 = 'api/v1/mapping/v2';
|
|
61
61
|
return _this;
|
|
62
62
|
}
|
|
63
63
|
MappingApi.prototype.getMapping = function () {
|
package/dist/cjs/index.js
CHANGED
|
@@ -18,4 +18,5 @@ exports.Ccp = void 0;
|
|
|
18
18
|
var Ccp_1 = require("./Ccp");
|
|
19
19
|
Object.defineProperty(exports, "Ccp", { enumerable: true, get: function () { return Ccp_1.Ccp; } });
|
|
20
20
|
__exportStar(require("./types"), exports);
|
|
21
|
+
__exportStar(require("./constants"), exports);
|
|
21
22
|
//# sourceMappingURL=index.js.map
|
package/dist/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,6BAA4B;AAAnB,0FAAA,GAAG,OAAA;AACZ,0CAAwB"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,6BAA4B;AAAnB,0FAAA,GAAG,OAAA;AACZ,0CAAwB;AACxB,8CAA4B"}
|
|
@@ -12,7 +12,7 @@ export default class MappingApi extends BaseApi {
|
|
|
12
12
|
constructor() {
|
|
13
13
|
super(...arguments);
|
|
14
14
|
this.apiBasePath = 'api/v1/mapping';
|
|
15
|
-
this.apiBasePathV2 = 'api/v1/mapping
|
|
15
|
+
this.apiBasePathV2 = 'api/v1/mapping/v2';
|
|
16
16
|
}
|
|
17
17
|
getMapping() {
|
|
18
18
|
return __awaiter(this, void 0, void 0, function* () {
|
package/dist/esm/index.js
CHANGED
package/dist/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,OAAO,CAAC;AAC5B,cAAc,SAAS,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,OAAO,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,aAAa,CAAC"}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,OAAO,CAAC;AAC5B,cAAc,SAAS,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,OAAO,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,aAAa,CAAC"}
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@ import { Mapping, SkuMappingDto, FindSkuMappingDto, CreateSkuMappingDto } from '
|
|
|
5
5
|
|
|
6
6
|
export default class MappingApi extends BaseApi {
|
|
7
7
|
private readonly apiBasePath = 'api/v1/mapping';
|
|
8
|
-
private readonly apiBasePathV2 = 'api/v1/mapping
|
|
8
|
+
private readonly apiBasePathV2 = 'api/v1/mapping/v2';
|
|
9
9
|
|
|
10
10
|
/**
|
|
11
11
|
* @description get mapping
|
package/src/index.ts
CHANGED