@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @betterstore/sdk
2
2
 
3
+ ## 0.3.6
4
+
5
+ ### Patch Changes
6
+
7
+ - define api secret for retrieve checkout request
8
+
3
9
  ## 0.3.5
4
10
 
5
11
  ### Patch Changes
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
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@betterstore/sdk",
3
- "version": "0.3.5",
3
+ "version": "0.3.6",
4
4
  "description": "E-commerce for Developers",
5
5
  "private": false,
6
6
  "publishConfig": {