@shipstatic/drop 2.8.0 → 2.8.1

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.cjs CHANGED
@@ -38,6 +38,21 @@ var ErrorType = {
38
38
  * and opposite retry behaviour.
39
39
  */
40
40
  Maintenance: "maintenance",
41
+ /**
42
+ * The project could not be built as submitted (422). The platform ran the
43
+ * caller's own instructions, the dependency install and then the build
44
+ * script, and they failed. So the verdict is the caller's: deterministic,
45
+ * not worth a retry, and answered with the evidence. `details` is a
46
+ * `BuildFailureDetails`, and the message is the one sentence the builder
47
+ * authored for the person who will fix the project.
48
+ *
49
+ * Distinct from `Api` at 500, which is what the platform answers when it
50
+ * could not RUN the build at all (the sandbox failed to start, a host
51
+ * fault). A consumer has to tell "your project cannot be built" from "we
52
+ * could not build it": the two get opposite words, opposite retry
53
+ * behaviour, and only the second pages an operator.
54
+ */
55
+ Build: "build_failed",
41
56
  /** Network/connection error. Client-side only — set by HTTP clients on fetch failure; never produced server-side. */
42
57
  Network: "network_error",
43
58
  /**