@nu-art/user-account-shared 0.401.7 → 0.401.9
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.
|
@@ -69,6 +69,14 @@ export type Account_ChangeThumbnail = {
|
|
|
69
69
|
account: DB_Account;
|
|
70
70
|
};
|
|
71
71
|
};
|
|
72
|
+
export type Account_Delete = {
|
|
73
|
+
request: {
|
|
74
|
+
accountId: UniqueId;
|
|
75
|
+
};
|
|
76
|
+
response: {
|
|
77
|
+
account: DB_Account;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
72
80
|
export type Account_GetPasswordAssertionConfig = {
|
|
73
81
|
request: void;
|
|
74
82
|
response: {
|
|
@@ -88,6 +96,7 @@ export type ApiStruct_Account = {
|
|
|
88
96
|
getSessions: QueryApi<Account_GetSessions['response'], Account_GetSessions['request']>;
|
|
89
97
|
changeThumbnail: BodyApi<Account_ChangeThumbnail['response'], Account_ChangeThumbnail['request']>;
|
|
90
98
|
getPasswordAssertionConfig: QueryApi<Account_GetPasswordAssertionConfig['response']>;
|
|
99
|
+
deleteAccount: QueryApi<Account_Delete['response'], Account_Delete['request']>;
|
|
91
100
|
};
|
|
92
101
|
};
|
|
93
102
|
export declare const ApiDef_Account: ApiDefResolver<ApiStruct_Account>;
|
|
@@ -13,7 +13,8 @@ export const ApiDef_Account = {
|
|
|
13
13
|
setPassword: { method: HttpMethod.POST, path: '/v1/account/set-password' },
|
|
14
14
|
getSessions: { method: HttpMethod.GET, path: 'v1/account/get-sessions' },
|
|
15
15
|
changeThumbnail: { method: HttpMethod.POST, path: '/v1/account/change-thumbnail' },
|
|
16
|
-
getPasswordAssertionConfig: { method: HttpMethod.GET, path: '/v1/account/get-password-assertion-config' }
|
|
16
|
+
getPasswordAssertionConfig: { method: HttpMethod.GET, path: '/v1/account/get-password-assertion-config' },
|
|
17
|
+
deleteAccount: { method: HttpMethod.GET, path: '/v1/account/delete-account' },
|
|
17
18
|
}
|
|
18
19
|
};
|
|
19
20
|
export const ApiDef_SAML = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nu-art/user-account-shared",
|
|
3
|
-
"version": "0.401.
|
|
3
|
+
"version": "0.401.9",
|
|
4
4
|
"description": "User Account Shared",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"TacB0sS",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"test": "ts-mocha -w -p src/test/tsconfig.json --timeout 0 --inspect=8107 --watch-files 'src/test/**/*.test.ts' src/test/**/*.test.ts"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@nu-art/ts-common": "0.401.
|
|
38
|
-
"@nu-art/firebase-shared": "0.401.
|
|
39
|
-
"@nu-art/thunderstorm-shared": "0.401.
|
|
40
|
-
"@nu-art/ts-styles": "0.401.
|
|
41
|
-
"@nu-art/slack-shared": "0.401.
|
|
37
|
+
"@nu-art/ts-common": "0.401.9",
|
|
38
|
+
"@nu-art/firebase-shared": "0.401.9",
|
|
39
|
+
"@nu-art/thunderstorm-shared": "0.401.9",
|
|
40
|
+
"@nu-art/ts-styles": "0.401.9",
|
|
41
|
+
"@nu-art/slack-shared": "0.401.9",
|
|
42
42
|
"firebase": "^11.9.0",
|
|
43
43
|
"firebase-admin": "13.4.0",
|
|
44
44
|
"firebase-functions": "6.3.2",
|
|
@@ -53,7 +53,6 @@
|
|
|
53
53
|
"@types/react": "^18.0.0",
|
|
54
54
|
"@types/express": "^4.17.17",
|
|
55
55
|
"@types/history": "^4.7.2",
|
|
56
|
-
"@types/request": "^2.48.1",
|
|
57
56
|
"@types/saml2-js": "^1.6.8",
|
|
58
57
|
"@types/pako": "^2.0.0",
|
|
59
58
|
"@types/jsonwebtoken": "^9.0.6"
|