Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
23 lines
No EOL
719 B
Text
23 lines
No EOL
719 B
Text
"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 |