Add dependency on @actions/cache
This commit is contained in:
parent
9990b406c2
commit
38c2c091e8
1693 changed files with 204435 additions and 23 deletions
23
node_modules/@opentelemetry/api/build/src/trace/status.js
generated
vendored
Normal file
23
node_modules/@opentelemetry/api/build/src/trace/status.js
generated
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.SpanStatusCode = void 0;
|
||||
/**
|
||||
* An enumeration of status codes.
|
||||
*/
|
||||
var SpanStatusCode;
|
||||
(function (SpanStatusCode) {
|
||||
/**
|
||||
* The default status.
|
||||
*/
|
||||
SpanStatusCode[SpanStatusCode["UNSET"] = 0] = "UNSET";
|
||||
/**
|
||||
* The operation has been validated by an Application developer or
|
||||
* Operator to have completed successfully.
|
||||
*/
|
||||
SpanStatusCode[SpanStatusCode["OK"] = 1] = "OK";
|
||||
/**
|
||||
* The operation contains an error.
|
||||
*/
|
||||
SpanStatusCode[SpanStatusCode["ERROR"] = 2] = "ERROR";
|
||||
})(SpanStatusCode = exports.SpanStatusCode || (exports.SpanStatusCode = {}));
|
||||
//# sourceMappingURL=status.js.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue