@betterstore/sdk 0.3.5 → 0.3.6
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/CHANGELOG.md +6 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -175,7 +175,7 @@ var Client = class {
|
|
|
175
175
|
*/
|
|
176
176
|
retrieveCheckout(checkoutId) {
|
|
177
177
|
return __async(this, null, function* () {
|
|
178
|
-
const apiClient = createApiClient("", this.proxy);
|
|
178
|
+
const apiClient = createApiClient("none", this.proxy);
|
|
179
179
|
const data = yield apiClient.get(
|
|
180
180
|
`/checkout/${checkoutId}`
|
|
181
181
|
);
|
package/dist/index.mjs
CHANGED
|
@@ -138,7 +138,7 @@ var Client = class {
|
|
|
138
138
|
*/
|
|
139
139
|
retrieveCheckout(checkoutId) {
|
|
140
140
|
return __async(this, null, function* () {
|
|
141
|
-
const apiClient = createApiClient("", this.proxy);
|
|
141
|
+
const apiClient = createApiClient("none", this.proxy);
|
|
142
142
|
const data = yield apiClient.get(
|
|
143
143
|
`/checkout/${checkoutId}`
|
|
144
144
|
);
|