@seamapi/http 1.0.0-rc.4 → 1.0.0-rc.5
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/connect.cjs +5 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2 -1
- package/lib/seam/connect/options.d.ts +2 -1
- package/lib/seam/connect/options.js +5 -1
- package/lib/seam/connect/options.js.map +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/options.ts +6 -1
- package/src/lib/version.ts +1 -1
package/dist/connect.cjs
CHANGED
|
@@ -236,7 +236,11 @@ var SeamHttpInvalidOptionsError = class extends Error {
|
|
|
236
236
|
this.name = this.constructor.name;
|
|
237
237
|
}
|
|
238
238
|
};
|
|
239
|
-
var SeamHttpMultiWorkspaceInvalidOptionsError = class extends
|
|
239
|
+
var SeamHttpMultiWorkspaceInvalidOptionsError = class extends Error {
|
|
240
|
+
constructor(message) {
|
|
241
|
+
super(`SeamHttpMultiWorkspace received invalid options: ${message}`);
|
|
242
|
+
this.name = this.constructor.name;
|
|
243
|
+
}
|
|
240
244
|
};
|
|
241
245
|
|
|
242
246
|
// src/lib/seam/connect/token.ts
|