heartraite 1.0.138 → 1.0.140
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/dist/types/event.types.d.ts +1 -0
- package/package.json +1 -1
- package/src/enum/error.enum.ts +16 -0
- package/src/enum/index.ts +1 -0
- package/src/types/event.types.ts +1 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare enum FirebaseErrorCode {
|
|
2
|
+
INVALID_ARGUMENT = "invalid-argument",
|
|
3
|
+
NOT_FOUND = "not-found",
|
|
4
|
+
UNAUTHENTICATED = "unauthenticated",
|
|
5
|
+
PERMISSION_DENIED = "permission-denied",
|
|
6
|
+
INTERNAL = "internal",
|
|
7
|
+
UNAVAILABLE = "unavailable",
|
|
8
|
+
DEADLINE_EXCEEDED = "deadline-exceeded",
|
|
9
|
+
RESOURCE_EXHAUSTED = "resource-exhausted",
|
|
10
|
+
ABORTED = "aborted",
|
|
11
|
+
DATA_LOSS = "data-loss",
|
|
12
|
+
ALREADY_EXISTS = "already-exists",
|
|
13
|
+
CANCELLED = "cancelled",
|
|
14
|
+
UNIMPLEMENTED = "unimplemented",
|
|
15
|
+
UNKNOWN = "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"] = "invalid-argument";
|
|
7
|
+
FirebaseErrorCode["NOT_FOUND"] = "not-found";
|
|
8
|
+
FirebaseErrorCode["UNAUTHENTICATED"] = "unauthenticated";
|
|
9
|
+
FirebaseErrorCode["PERMISSION_DENIED"] = "permission-denied";
|
|
10
|
+
FirebaseErrorCode["INTERNAL"] = "internal";
|
|
11
|
+
FirebaseErrorCode["UNAVAILABLE"] = "unavailable";
|
|
12
|
+
FirebaseErrorCode["DEADLINE_EXCEEDED"] = "deadline-exceeded";
|
|
13
|
+
FirebaseErrorCode["RESOURCE_EXHAUSTED"] = "resource-exhausted";
|
|
14
|
+
FirebaseErrorCode["ABORTED"] = "aborted";
|
|
15
|
+
FirebaseErrorCode["DATA_LOSS"] = "data-loss";
|
|
16
|
+
FirebaseErrorCode["ALREADY_EXISTS"] = "already-exists";
|
|
17
|
+
FirebaseErrorCode["CANCELLED"] = "cancelled";
|
|
18
|
+
FirebaseErrorCode["UNIMPLEMENTED"] = "unimplemented";
|
|
19
|
+
FirebaseErrorCode["UNKNOWN"] = "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 = "invalid-argument",
|
|
3
|
+
NOT_FOUND = "not-found",
|
|
4
|
+
UNAUTHENTICATED = "unauthenticated",
|
|
5
|
+
PERMISSION_DENIED = "permission-denied",
|
|
6
|
+
INTERNAL = "internal",
|
|
7
|
+
UNAVAILABLE = "unavailable",
|
|
8
|
+
DEADLINE_EXCEEDED = "deadline-exceeded",
|
|
9
|
+
RESOURCE_EXHAUSTED = "resource-exhausted",
|
|
10
|
+
ABORTED = "aborted",
|
|
11
|
+
DATA_LOSS = "data-loss",
|
|
12
|
+
ALREADY_EXISTS = "already-exists",
|
|
13
|
+
CANCELLED = "cancelled",
|
|
14
|
+
UNIMPLEMENTED = "unimplemented",
|
|
15
|
+
UNKNOWN = "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";
|
package/src/types/event.types.ts
CHANGED