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