@bundleup/sdk 0.0.8 → 0.0.9
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.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -195,7 +195,7 @@ var Request = class {
|
|
|
195
195
|
return {
|
|
196
196
|
"Content-Type": "application/json",
|
|
197
197
|
Authorization: `Bearer ${this.apiKey}`,
|
|
198
|
-
"
|
|
198
|
+
"Connection-Id": this.connectionId
|
|
199
199
|
};
|
|
200
200
|
}
|
|
201
201
|
buildUrl(path, searchParams = {}) {
|
package/dist/index.mjs
CHANGED
|
@@ -169,7 +169,7 @@ var Request = class {
|
|
|
169
169
|
return {
|
|
170
170
|
"Content-Type": "application/json",
|
|
171
171
|
Authorization: `Bearer ${this.apiKey}`,
|
|
172
|
-
"
|
|
172
|
+
"Connection-Id": this.connectionId
|
|
173
173
|
};
|
|
174
174
|
}
|
|
175
175
|
buildUrl(path, searchParams = {}) {
|