@distilled.cloud/cloudflare 0.15.2 → 0.16.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.
@@ -55,14 +55,14 @@ T.applyErrorMatchers(QueueConsumerConflict, [{ code: 10064 }]);
55
55
  export class RouteNotFound extends Schema.TaggedErrorClass()("RouteNotFound", { code: Schema.Number, message: Schema.String }) {
56
56
  }
57
57
  T.applyErrorMatchers(RouteNotFound, [{ code: 10009 }]);
58
- export class ScriptStartupError extends Schema.TaggedErrorClass()("ScriptStartupError", { code: Schema.Number, message: Schema.String }) {
59
- }
60
- T.applyErrorMatchers(ScriptStartupError, [{ code: 10021 }]);
61
58
  export class ScriptModuleNotFound extends Schema.TaggedErrorClass()("ScriptModuleNotFound", { code: Schema.Number, message: Schema.String }) {
62
59
  }
63
60
  T.applyErrorMatchers(ScriptModuleNotFound, [
64
61
  { code: 10021, message: { includes: "No such module" } },
65
62
  ]);
63
+ export class ScriptStartupError extends Schema.TaggedErrorClass()("ScriptStartupError", { code: Schema.Number, message: Schema.String }) {
64
+ }
65
+ T.applyErrorMatchers(ScriptStartupError, [{ code: 10021 }]);
66
66
  export class SecretNotFound extends Schema.TaggedErrorClass()("SecretNotFound", { code: Schema.Number, message: Schema.String }) {
67
67
  }
68
68
  T.applyErrorMatchers(SecretNotFound, [{ code: 10056 }]);