heartraite 1.0.140 → 1.0.142
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 +14 -14
- package/dist/enum/error.enum.js +14 -14
- package/dist/types/response.types.d.ts +3 -1
- package/package.json +1 -1
- package/src/enum/error.enum.ts +14 -14
- package/src/types/response.types.ts +1 -1
|
@@ -1,16 +1,16 @@
|
|
|
1
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"
|
|
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
16
|
}
|
package/dist/enum/error.enum.js
CHANGED
|
@@ -3,18 +3,18 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.FirebaseErrorCode = void 0;
|
|
4
4
|
var FirebaseErrorCode;
|
|
5
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";
|
|
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
20
|
})(FirebaseErrorCode || (exports.FirebaseErrorCode = FirebaseErrorCode = {}));
|
|
@@ -60,7 +60,9 @@ export type UpdatePLSAnswerResponse = {
|
|
|
60
60
|
export type SubmitPLSCategoryFeedbackResponse = CategoryEvaluation;
|
|
61
61
|
export type UpdateQuestionsResponse = void;
|
|
62
62
|
export type CreateReportResponse = void;
|
|
63
|
-
export type GetSelfAwarenessReponse = SelfAwareness
|
|
63
|
+
export type GetSelfAwarenessReponse = SelfAwareness | {
|
|
64
|
+
processing: true;
|
|
65
|
+
};
|
|
64
66
|
export type GetPLSScoresResponse = PLSScore[];
|
|
65
67
|
export type CreateBillingPortalResponse = {
|
|
66
68
|
url: string;
|
package/package.json
CHANGED
package/src/enum/error.enum.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
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",
|
|
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
16
|
}
|
|
@@ -87,7 +87,7 @@ export type UpdateQuestionsResponse = void;
|
|
|
87
87
|
export type CreateReportResponse = void;
|
|
88
88
|
|
|
89
89
|
// sa
|
|
90
|
-
export type GetSelfAwarenessReponse = SelfAwareness;
|
|
90
|
+
export type GetSelfAwarenessReponse = SelfAwareness | { processing: true };
|
|
91
91
|
|
|
92
92
|
// score
|
|
93
93
|
export type GetPLSScoresResponse = PLSScore[];
|