heartraite 1.0.139 → 1.0.141
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/enum/error.enum.d.ts +16 -0
- package/dist/enum/error.enum.js +20 -0
- package/dist/enum/index.d.ts +1 -0
- package/dist/enum/index.js +1 -0
- package/package.json +1 -1
- package/src/enum/error.enum.ts +16 -0
- package/src/enum/index.ts +1 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare enum FirebaseErrorCode {
|
|
2
|
+
INVALID_ARGUMENT = "functions/invalid-argument",
|
|
3
|
+
NOT_FOUND = "functions/not-found",
|
|
4
|
+
UNAUTHENTICATED = "functions/unauthenticated",
|
|
5
|
+
PERMISSION_DENIED = "functions/permission-denied",
|
|
6
|
+
INTERNAL = "functions/internal",
|
|
7
|
+
UNAVAILABLE = "functions/unavailable",
|
|
8
|
+
DEADLINE_EXCEEDED = "functions/deadline-exceeded",
|
|
9
|
+
RESOURCE_EXHAUSTED = "functions/resource-exhausted",
|
|
10
|
+
ABORTED = "functions/aborted",
|
|
11
|
+
DATA_LOSS = "functions/data-loss",
|
|
12
|
+
ALREADY_EXISTS = "functions/already-exists",
|
|
13
|
+
CANCELLED = "functions/cancelled",
|
|
14
|
+
UNIMPLEMENTED = "functions/unimplemented",
|
|
15
|
+
UNKNOWN = "functions/unknown"
|
|
16
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FirebaseErrorCode = void 0;
|
|
4
|
+
var FirebaseErrorCode;
|
|
5
|
+
(function (FirebaseErrorCode) {
|
|
6
|
+
FirebaseErrorCode["INVALID_ARGUMENT"] = "functions/invalid-argument";
|
|
7
|
+
FirebaseErrorCode["NOT_FOUND"] = "functions/not-found";
|
|
8
|
+
FirebaseErrorCode["UNAUTHENTICATED"] = "functions/unauthenticated";
|
|
9
|
+
FirebaseErrorCode["PERMISSION_DENIED"] = "functions/permission-denied";
|
|
10
|
+
FirebaseErrorCode["INTERNAL"] = "functions/internal";
|
|
11
|
+
FirebaseErrorCode["UNAVAILABLE"] = "functions/unavailable";
|
|
12
|
+
FirebaseErrorCode["DEADLINE_EXCEEDED"] = "functions/deadline-exceeded";
|
|
13
|
+
FirebaseErrorCode["RESOURCE_EXHAUSTED"] = "functions/resource-exhausted";
|
|
14
|
+
FirebaseErrorCode["ABORTED"] = "functions/aborted";
|
|
15
|
+
FirebaseErrorCode["DATA_LOSS"] = "functions/data-loss";
|
|
16
|
+
FirebaseErrorCode["ALREADY_EXISTS"] = "functions/already-exists";
|
|
17
|
+
FirebaseErrorCode["CANCELLED"] = "functions/cancelled";
|
|
18
|
+
FirebaseErrorCode["UNIMPLEMENTED"] = "functions/unimplemented";
|
|
19
|
+
FirebaseErrorCode["UNKNOWN"] = "functions/unknown";
|
|
20
|
+
})(FirebaseErrorCode || (exports.FirebaseErrorCode = FirebaseErrorCode = {}));
|
package/dist/enum/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ export * from "./ca.enum";
|
|
|
3
3
|
export * from "./cloudfunction.enum";
|
|
4
4
|
export * from "./evaluation.enum";
|
|
5
5
|
export * from "./environment.enum";
|
|
6
|
+
export * from "./error.enum";
|
|
6
7
|
export * from "./feedback.enum";
|
|
7
8
|
export * from "./firestore.enum";
|
|
8
9
|
export * from "./general.enum";
|
package/dist/enum/index.js
CHANGED
|
@@ -19,6 +19,7 @@ __exportStar(require("./ca.enum"), exports);
|
|
|
19
19
|
__exportStar(require("./cloudfunction.enum"), exports);
|
|
20
20
|
__exportStar(require("./evaluation.enum"), exports);
|
|
21
21
|
__exportStar(require("./environment.enum"), exports);
|
|
22
|
+
__exportStar(require("./error.enum"), exports);
|
|
22
23
|
__exportStar(require("./feedback.enum"), exports);
|
|
23
24
|
__exportStar(require("./firestore.enum"), exports);
|
|
24
25
|
__exportStar(require("./general.enum"), exports);
|
package/package.json
CHANGED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export enum FirebaseErrorCode {
|
|
2
|
+
INVALID_ARGUMENT = "functions/invalid-argument",
|
|
3
|
+
NOT_FOUND = "functions/not-found",
|
|
4
|
+
UNAUTHENTICATED = "functions/unauthenticated",
|
|
5
|
+
PERMISSION_DENIED = "functions/permission-denied",
|
|
6
|
+
INTERNAL = "functions/internal",
|
|
7
|
+
UNAVAILABLE = "functions/unavailable",
|
|
8
|
+
DEADLINE_EXCEEDED = "functions/deadline-exceeded",
|
|
9
|
+
RESOURCE_EXHAUSTED = "functions/resource-exhausted",
|
|
10
|
+
ABORTED = "functions/aborted",
|
|
11
|
+
DATA_LOSS = "functions/data-loss",
|
|
12
|
+
ALREADY_EXISTS = "functions/already-exists",
|
|
13
|
+
CANCELLED = "functions/cancelled",
|
|
14
|
+
UNIMPLEMENTED = "functions/unimplemented",
|
|
15
|
+
UNKNOWN = "functions/unknown",
|
|
16
|
+
}
|
package/src/enum/index.ts
CHANGED
|
@@ -3,6 +3,7 @@ export * from "./ca.enum";
|
|
|
3
3
|
export * from "./cloudfunction.enum";
|
|
4
4
|
export * from "./evaluation.enum";
|
|
5
5
|
export * from "./environment.enum";
|
|
6
|
+
export * from "./error.enum";
|
|
6
7
|
export * from "./feedback.enum";
|
|
7
8
|
export * from "./firestore.enum";
|
|
8
9
|
export * from "./general.enum";
|