conductor-node 9.4.2 → 9.6.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/README.md +3 -5
- package/dist/package.json +1 -1
- package/dist/src/Client.d.ts +6 -6
- package/dist/src/Client.js +10 -10
- package/dist/src/integrations/qbd/QbdIntegration.d.ts +366 -0
- package/dist/src/integrations/qbd/QbdIntegration.js +368 -2
- package/dist/src/integrations/qbd/qbdTypes.d.ts +1291 -33
- package/dist/src/utils/error.js +1 -1
- package/package.json +1 -1
package/dist/src/utils/error.js
CHANGED
|
@@ -64,7 +64,7 @@ class ConductorError extends Error {
|
|
|
64
64
|
rawType;
|
|
65
65
|
constructor(options) {
|
|
66
66
|
// Do not pass `options.message` to the superclass `Error` constructor to
|
|
67
|
-
// avoid this bug: https://twitter.com/DannyNemer/status/
|
|
67
|
+
// avoid this bug: https://twitter.com/DannyNemer/status/1639513810141687810
|
|
68
68
|
super();
|
|
69
69
|
// Set `name` to the constructor name so that the error appears in logs as
|
|
70
70
|
// `[ConductorError: foo]` instead of `[Error: foo]`.
|
package/package.json
CHANGED