entity-client 1.0.14 → 1.0.16
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/EntityAppServerApi.d.ts +368 -416
- package/dist/EntityServerApi.d.ts +193 -216
- package/dist/client/base.d.ts +26 -40
- package/dist/client/base.js +1 -1
- package/dist/client/base.js.map +3 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +3 -3
- package/dist/mixins/app/plugins/alimtalk.d.ts +23 -26
- package/dist/mixins/app/plugins/friendtalk.d.ts +23 -26
- package/dist/mixins/app/plugins/holidays.d.ts +23 -26
- package/dist/mixins/app/plugins/identity.d.ts +23 -26
- package/dist/mixins/app/plugins/llm.d.ts +23 -26
- package/dist/mixins/app/plugins/ocr.d.ts +23 -26
- package/dist/mixins/app/plugins/pg.d.ts +23 -26
- package/dist/mixins/app/plugins/push.d.ts +23 -26
- package/dist/mixins/app/plugins/sms.d.ts +23 -26
- package/dist/mixins/app/plugins/taxinvoice.d.ts +23 -26
- package/dist/mixins/app/routes/account.d.ts +23 -26
- package/dist/mixins/app/routes/board.d.ts +23 -26
- package/dist/mixins/app/routes/email-verify.d.ts +23 -26
- package/dist/mixins/app/routes/oauth.d.ts +23 -26
- package/dist/mixins/app/routes/password-reset.d.ts +23 -26
- package/dist/mixins/app/routes/two-factor.d.ts +23 -26
- package/dist/mixins/server/admin.d.ts +29 -32
- package/dist/mixins/server/admin.js +1 -1
- package/dist/mixins/server/admin.js.map +2 -2
- package/dist/mixins/server/auth.d.ts +26 -28
- package/dist/mixins/server/auth.js +1 -1
- package/dist/mixins/server/auth.js.map +2 -2
- package/dist/mixins/server/entity.d.ts +23 -26
- package/dist/mixins/server/entity.js +1 -1
- package/dist/mixins/server/entity.js.map +2 -2
- package/dist/mixins/server/file.d.ts +23 -26
- package/dist/mixins/server/file.js +1 -1
- package/dist/mixins/server/file.js.map +2 -2
- package/dist/mixins/server/push.d.ts +23 -26
- package/dist/mixins/server/smtp.d.ts +23 -26
- package/dist/mixins/server/smtp.js +1 -1
- package/dist/mixins/server/smtp.js.map +2 -2
- package/dist/mixins/server/transaction.d.ts +23 -26
- package/dist/mixins/server/transaction.js +1 -1
- package/dist/mixins/server/transaction.js.map +2 -2
- package/dist/mixins/server/utils.d.ts +23 -26
- package/dist/mixins/server/utils.js +1 -1
- package/dist/mixins/server/utils.js.map +2 -2
- package/dist/react.js +1 -1
- package/dist/react.js.map +3 -3
- package/package.json +1 -1
|
@@ -15,30 +15,30 @@ export declare function EmailVerifyMixin<TBase extends GConstructor<EntityServer
|
|
|
15
15
|
csrfEnabled: boolean;
|
|
16
16
|
csrfHeaderName: string;
|
|
17
17
|
csrfCookieName: string;
|
|
18
|
-
|
|
18
|
+
csrfRefresher: (() => Promise<void>) | null;
|
|
19
19
|
activeTxId: string | null;
|
|
20
20
|
keepSession: boolean;
|
|
21
21
|
refreshBuffer: number;
|
|
22
22
|
onTokenRefreshed?: (accessToken: string, expiresIn: number) => void;
|
|
23
23
|
onSessionExpired?: (error: Error) => void;
|
|
24
24
|
onHealthChange?: (online: boolean) => void;
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
25
|
+
sessionRefreshToken: string | null;
|
|
26
|
+
refreshTimer: ReturnType<typeof setTimeout> | null;
|
|
27
|
+
healthTickTimer: ReturnType<typeof setInterval> | null;
|
|
28
|
+
healthTickPromise: Promise<unknown> | null;
|
|
29
29
|
realtimeEnabled: boolean;
|
|
30
30
|
realtimePath: string;
|
|
31
31
|
realtimeAutoConnect: boolean;
|
|
32
32
|
realtimeAutoReconnect: boolean;
|
|
33
33
|
realtimeReconnectDelayMs: number;
|
|
34
34
|
realtimeStatus: import("../../../types.js").RealtimeConnectionStatus;
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
35
|
+
realtimeSocket: WebSocket | null;
|
|
36
|
+
realtimeConnectPromise: Promise<void> | null;
|
|
37
|
+
realtimeReconnectTimer: ReturnType<typeof setTimeout> | null;
|
|
38
|
+
realtimeShouldReconnect: boolean;
|
|
39
|
+
realtimeMessageListeners: Set<import("../../../types.js").RealtimeMessageListener>;
|
|
40
|
+
realtimeStatusListeners: Set<import("../../../types.js").RealtimeStatusListener>;
|
|
41
|
+
realtimeEventListeners: Map<string, Set<import("../../../types.js").RealtimeMessageListener>>;
|
|
42
42
|
configure(options: Partial<import("../../../types.js").EntityServerClientOptions>): void;
|
|
43
43
|
setToken(token: string): void;
|
|
44
44
|
setAnonymousPacketToken(token: string): void;
|
|
@@ -59,21 +59,21 @@ export declare function EmailVerifyMixin<TBase extends GConstructor<EntityServer
|
|
|
59
59
|
unsubscribeRealtime(subscriptions: string[]): boolean;
|
|
60
60
|
startHealthTick(intervalMs?: number): void;
|
|
61
61
|
stopHealthTick(): void;
|
|
62
|
-
|
|
62
|
+
scheduleKeepSession(refreshToken: string, expiresIn: number, refreshFn: (rt: string) => Promise<{
|
|
63
63
|
access_token: string;
|
|
64
64
|
expires_in: number;
|
|
65
65
|
}>): void;
|
|
66
|
-
|
|
66
|
+
clearRefreshTimer(): void;
|
|
67
67
|
stopKeepSession(): void;
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
68
|
+
applyRealtimeOptions(options?: boolean | import("../../../types.js").RealtimeClientOptions): void;
|
|
69
|
+
buildRealtimeUrl(): string;
|
|
70
|
+
handleRealtimeMessage(payload: unknown): void;
|
|
71
|
+
scheduleRealtimeReconnect(reason: string): void;
|
|
72
|
+
clearRealtimeReconnectTimer(): void;
|
|
73
|
+
setRealtimeStatus(status: import("../../../types.js").RealtimeConnectionStatus, reason?: string, error?: Error): void;
|
|
74
|
+
applyCsrfHealth(): void;
|
|
75
75
|
readRequestBody<T = Record<string, unknown>>(body: ArrayBuffer | Uint8Array | string | T | null | undefined, contentType?: string, requireEncrypted?: boolean): T;
|
|
76
|
-
get
|
|
76
|
+
get reqOpts(): import("../../../client/request.js").RequestOptions;
|
|
77
77
|
get http(): {
|
|
78
78
|
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
79
79
|
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
@@ -81,12 +81,9 @@ export declare function EmailVerifyMixin<TBase extends GConstructor<EntityServer
|
|
|
81
81
|
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
82
82
|
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
83
83
|
};
|
|
84
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
84
85
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
85
86
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
86
87
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
87
|
-
_request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
88
|
-
_requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
89
|
-
_requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
90
|
-
_requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
91
88
|
};
|
|
92
89
|
} & TBase;
|
|
@@ -16,30 +16,30 @@ export declare function OAuthMixin<TBase extends GConstructor<EntityServerClient
|
|
|
16
16
|
csrfEnabled: boolean;
|
|
17
17
|
csrfHeaderName: string;
|
|
18
18
|
csrfCookieName: string;
|
|
19
|
-
|
|
19
|
+
csrfRefresher: (() => Promise<void>) | null;
|
|
20
20
|
activeTxId: string | null;
|
|
21
21
|
keepSession: boolean;
|
|
22
22
|
refreshBuffer: number;
|
|
23
23
|
onTokenRefreshed?: (accessToken: string, expiresIn: number) => void;
|
|
24
24
|
onSessionExpired?: (error: Error) => void;
|
|
25
25
|
onHealthChange?: (online: boolean) => void;
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
26
|
+
sessionRefreshToken: string | null;
|
|
27
|
+
refreshTimer: ReturnType<typeof setTimeout> | null;
|
|
28
|
+
healthTickTimer: ReturnType<typeof setInterval> | null;
|
|
29
|
+
healthTickPromise: Promise<unknown> | null;
|
|
30
30
|
realtimeEnabled: boolean;
|
|
31
31
|
realtimePath: string;
|
|
32
32
|
realtimeAutoConnect: boolean;
|
|
33
33
|
realtimeAutoReconnect: boolean;
|
|
34
34
|
realtimeReconnectDelayMs: number;
|
|
35
35
|
realtimeStatus: import("../../../types.js").RealtimeConnectionStatus;
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
36
|
+
realtimeSocket: WebSocket | null;
|
|
37
|
+
realtimeConnectPromise: Promise<void> | null;
|
|
38
|
+
realtimeReconnectTimer: ReturnType<typeof setTimeout> | null;
|
|
39
|
+
realtimeShouldReconnect: boolean;
|
|
40
|
+
realtimeMessageListeners: Set<import("../../../types.js").RealtimeMessageListener>;
|
|
41
|
+
realtimeStatusListeners: Set<import("../../../types.js").RealtimeStatusListener>;
|
|
42
|
+
realtimeEventListeners: Map<string, Set<import("../../../types.js").RealtimeMessageListener>>;
|
|
43
43
|
configure(options: Partial<import("../../../types.js").EntityServerClientOptions>): void;
|
|
44
44
|
setToken(token: string): void;
|
|
45
45
|
setAnonymousPacketToken(token: string): void;
|
|
@@ -60,21 +60,21 @@ export declare function OAuthMixin<TBase extends GConstructor<EntityServerClient
|
|
|
60
60
|
unsubscribeRealtime(subscriptions: string[]): boolean;
|
|
61
61
|
startHealthTick(intervalMs?: number): void;
|
|
62
62
|
stopHealthTick(): void;
|
|
63
|
-
|
|
63
|
+
scheduleKeepSession(refreshToken: string, expiresIn: number, refreshFn: (rt: string) => Promise<{
|
|
64
64
|
access_token: string;
|
|
65
65
|
expires_in: number;
|
|
66
66
|
}>): void;
|
|
67
|
-
|
|
67
|
+
clearRefreshTimer(): void;
|
|
68
68
|
stopKeepSession(): void;
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
69
|
+
applyRealtimeOptions(options?: boolean | import("../../../types.js").RealtimeClientOptions): void;
|
|
70
|
+
buildRealtimeUrl(): string;
|
|
71
|
+
handleRealtimeMessage(payload: unknown): void;
|
|
72
|
+
scheduleRealtimeReconnect(reason: string): void;
|
|
73
|
+
clearRealtimeReconnectTimer(): void;
|
|
74
|
+
setRealtimeStatus(status: import("../../../types.js").RealtimeConnectionStatus, reason?: string, error?: Error): void;
|
|
75
|
+
applyCsrfHealth(): void;
|
|
76
76
|
readRequestBody<T = Record<string, unknown>>(body: ArrayBuffer | Uint8Array | string | T | null | undefined, contentType?: string, requireEncrypted?: boolean): T;
|
|
77
|
-
get
|
|
77
|
+
get reqOpts(): import("../../../client/request.js").RequestOptions;
|
|
78
78
|
get http(): {
|
|
79
79
|
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
80
80
|
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
@@ -82,12 +82,9 @@ export declare function OAuthMixin<TBase extends GConstructor<EntityServerClient
|
|
|
82
82
|
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
83
83
|
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
84
84
|
};
|
|
85
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
85
86
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
86
87
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
87
88
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
88
|
-
_request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
89
|
-
_requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
90
|
-
_requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
91
|
-
_requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
92
89
|
};
|
|
93
90
|
} & TBase;
|
|
@@ -15,30 +15,30 @@ export declare function PasswordResetMixin<TBase extends GConstructor<EntityServ
|
|
|
15
15
|
csrfEnabled: boolean;
|
|
16
16
|
csrfHeaderName: string;
|
|
17
17
|
csrfCookieName: string;
|
|
18
|
-
|
|
18
|
+
csrfRefresher: (() => Promise<void>) | null;
|
|
19
19
|
activeTxId: string | null;
|
|
20
20
|
keepSession: boolean;
|
|
21
21
|
refreshBuffer: number;
|
|
22
22
|
onTokenRefreshed?: (accessToken: string, expiresIn: number) => void;
|
|
23
23
|
onSessionExpired?: (error: Error) => void;
|
|
24
24
|
onHealthChange?: (online: boolean) => void;
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
25
|
+
sessionRefreshToken: string | null;
|
|
26
|
+
refreshTimer: ReturnType<typeof setTimeout> | null;
|
|
27
|
+
healthTickTimer: ReturnType<typeof setInterval> | null;
|
|
28
|
+
healthTickPromise: Promise<unknown> | null;
|
|
29
29
|
realtimeEnabled: boolean;
|
|
30
30
|
realtimePath: string;
|
|
31
31
|
realtimeAutoConnect: boolean;
|
|
32
32
|
realtimeAutoReconnect: boolean;
|
|
33
33
|
realtimeReconnectDelayMs: number;
|
|
34
34
|
realtimeStatus: import("../../../types.js").RealtimeConnectionStatus;
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
35
|
+
realtimeSocket: WebSocket | null;
|
|
36
|
+
realtimeConnectPromise: Promise<void> | null;
|
|
37
|
+
realtimeReconnectTimer: ReturnType<typeof setTimeout> | null;
|
|
38
|
+
realtimeShouldReconnect: boolean;
|
|
39
|
+
realtimeMessageListeners: Set<import("../../../types.js").RealtimeMessageListener>;
|
|
40
|
+
realtimeStatusListeners: Set<import("../../../types.js").RealtimeStatusListener>;
|
|
41
|
+
realtimeEventListeners: Map<string, Set<import("../../../types.js").RealtimeMessageListener>>;
|
|
42
42
|
configure(options: Partial<import("../../../types.js").EntityServerClientOptions>): void;
|
|
43
43
|
setToken(token: string): void;
|
|
44
44
|
setAnonymousPacketToken(token: string): void;
|
|
@@ -59,21 +59,21 @@ export declare function PasswordResetMixin<TBase extends GConstructor<EntityServ
|
|
|
59
59
|
unsubscribeRealtime(subscriptions: string[]): boolean;
|
|
60
60
|
startHealthTick(intervalMs?: number): void;
|
|
61
61
|
stopHealthTick(): void;
|
|
62
|
-
|
|
62
|
+
scheduleKeepSession(refreshToken: string, expiresIn: number, refreshFn: (rt: string) => Promise<{
|
|
63
63
|
access_token: string;
|
|
64
64
|
expires_in: number;
|
|
65
65
|
}>): void;
|
|
66
|
-
|
|
66
|
+
clearRefreshTimer(): void;
|
|
67
67
|
stopKeepSession(): void;
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
68
|
+
applyRealtimeOptions(options?: boolean | import("../../../types.js").RealtimeClientOptions): void;
|
|
69
|
+
buildRealtimeUrl(): string;
|
|
70
|
+
handleRealtimeMessage(payload: unknown): void;
|
|
71
|
+
scheduleRealtimeReconnect(reason: string): void;
|
|
72
|
+
clearRealtimeReconnectTimer(): void;
|
|
73
|
+
setRealtimeStatus(status: import("../../../types.js").RealtimeConnectionStatus, reason?: string, error?: Error): void;
|
|
74
|
+
applyCsrfHealth(): void;
|
|
75
75
|
readRequestBody<T = Record<string, unknown>>(body: ArrayBuffer | Uint8Array | string | T | null | undefined, contentType?: string, requireEncrypted?: boolean): T;
|
|
76
|
-
get
|
|
76
|
+
get reqOpts(): import("../../../client/request.js").RequestOptions;
|
|
77
77
|
get http(): {
|
|
78
78
|
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
79
79
|
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
@@ -81,12 +81,9 @@ export declare function PasswordResetMixin<TBase extends GConstructor<EntityServ
|
|
|
81
81
|
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
82
82
|
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
83
83
|
};
|
|
84
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
84
85
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
85
86
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
86
87
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
87
|
-
_request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
88
|
-
_requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
89
|
-
_requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
90
|
-
_requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
91
88
|
};
|
|
92
89
|
} & TBase;
|
|
@@ -17,30 +17,30 @@ export declare function TwoFactorMixin<TBase extends GConstructor<EntityServerCl
|
|
|
17
17
|
csrfEnabled: boolean;
|
|
18
18
|
csrfHeaderName: string;
|
|
19
19
|
csrfCookieName: string;
|
|
20
|
-
|
|
20
|
+
csrfRefresher: (() => Promise<void>) | null;
|
|
21
21
|
activeTxId: string | null;
|
|
22
22
|
keepSession: boolean;
|
|
23
23
|
refreshBuffer: number;
|
|
24
24
|
onTokenRefreshed?: (accessToken: string, expiresIn: number) => void;
|
|
25
25
|
onSessionExpired?: (error: Error) => void;
|
|
26
26
|
onHealthChange?: (online: boolean) => void;
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
27
|
+
sessionRefreshToken: string | null;
|
|
28
|
+
refreshTimer: ReturnType<typeof setTimeout> | null;
|
|
29
|
+
healthTickTimer: ReturnType<typeof setInterval> | null;
|
|
30
|
+
healthTickPromise: Promise<unknown> | null;
|
|
31
31
|
realtimeEnabled: boolean;
|
|
32
32
|
realtimePath: string;
|
|
33
33
|
realtimeAutoConnect: boolean;
|
|
34
34
|
realtimeAutoReconnect: boolean;
|
|
35
35
|
realtimeReconnectDelayMs: number;
|
|
36
36
|
realtimeStatus: import("../../../types.js").RealtimeConnectionStatus;
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
37
|
+
realtimeSocket: WebSocket | null;
|
|
38
|
+
realtimeConnectPromise: Promise<void> | null;
|
|
39
|
+
realtimeReconnectTimer: ReturnType<typeof setTimeout> | null;
|
|
40
|
+
realtimeShouldReconnect: boolean;
|
|
41
|
+
realtimeMessageListeners: Set<import("../../../types.js").RealtimeMessageListener>;
|
|
42
|
+
realtimeStatusListeners: Set<import("../../../types.js").RealtimeStatusListener>;
|
|
43
|
+
realtimeEventListeners: Map<string, Set<import("../../../types.js").RealtimeMessageListener>>;
|
|
44
44
|
configure(options: Partial<import("../../../types.js").EntityServerClientOptions>): void;
|
|
45
45
|
setToken(token: string): void;
|
|
46
46
|
setAnonymousPacketToken(token: string): void;
|
|
@@ -61,21 +61,21 @@ export declare function TwoFactorMixin<TBase extends GConstructor<EntityServerCl
|
|
|
61
61
|
unsubscribeRealtime(subscriptions: string[]): boolean;
|
|
62
62
|
startHealthTick(intervalMs?: number): void;
|
|
63
63
|
stopHealthTick(): void;
|
|
64
|
-
|
|
64
|
+
scheduleKeepSession(refreshToken: string, expiresIn: number, refreshFn: (rt: string) => Promise<{
|
|
65
65
|
access_token: string;
|
|
66
66
|
expires_in: number;
|
|
67
67
|
}>): void;
|
|
68
|
-
|
|
68
|
+
clearRefreshTimer(): void;
|
|
69
69
|
stopKeepSession(): void;
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
70
|
+
applyRealtimeOptions(options?: boolean | import("../../../types.js").RealtimeClientOptions): void;
|
|
71
|
+
buildRealtimeUrl(): string;
|
|
72
|
+
handleRealtimeMessage(payload: unknown): void;
|
|
73
|
+
scheduleRealtimeReconnect(reason: string): void;
|
|
74
|
+
clearRealtimeReconnectTimer(): void;
|
|
75
|
+
setRealtimeStatus(status: import("../../../types.js").RealtimeConnectionStatus, reason?: string, error?: Error): void;
|
|
76
|
+
applyCsrfHealth(): void;
|
|
77
77
|
readRequestBody<T = Record<string, unknown>>(body: ArrayBuffer | Uint8Array | string | T | null | undefined, contentType?: string, requireEncrypted?: boolean): T;
|
|
78
|
-
get
|
|
78
|
+
get reqOpts(): import("../../../client/request.js").RequestOptions;
|
|
79
79
|
get http(): {
|
|
80
80
|
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
81
81
|
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
@@ -83,12 +83,9 @@ export declare function TwoFactorMixin<TBase extends GConstructor<EntityServerCl
|
|
|
83
83
|
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
84
84
|
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
85
85
|
};
|
|
86
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
86
87
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
87
88
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
88
89
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
89
|
-
_request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
90
|
-
_requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
91
|
-
_requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
92
|
-
_requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
93
90
|
};
|
|
94
91
|
} & TBase;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import type { GConstructor, EntityServerClientBase } from "../../client/base.js";
|
|
2
2
|
export declare function AdminMixin<TBase extends GConstructor<EntityServerClientBase>>(Base: TBase): {
|
|
3
3
|
new (...args: any[]): {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
4
|
+
adminPath(path: string): string;
|
|
5
|
+
adminGet<T>(path: string): Promise<T>;
|
|
6
|
+
adminPost<T>(path: string, body?: unknown): Promise<T>;
|
|
7
|
+
adminPut<T>(path: string, body?: unknown): Promise<T>;
|
|
8
|
+
adminPatch<T>(path: string, body?: unknown): Promise<T>;
|
|
9
|
+
adminDelete<T>(path: string, body?: unknown): Promise<T>;
|
|
10
10
|
listAdminEntities<T = unknown>(): Promise<T>;
|
|
11
11
|
getAdminErdSchema<T = unknown>(): Promise<T>;
|
|
12
12
|
batchEnsureAdminEntities<T = unknown>(configs: unknown[]): Promise<T>;
|
|
@@ -61,30 +61,30 @@ export declare function AdminMixin<TBase extends GConstructor<EntityServerClient
|
|
|
61
61
|
csrfEnabled: boolean;
|
|
62
62
|
csrfHeaderName: string;
|
|
63
63
|
csrfCookieName: string;
|
|
64
|
-
|
|
64
|
+
csrfRefresher: (() => Promise<void>) | null;
|
|
65
65
|
activeTxId: string | null;
|
|
66
66
|
keepSession: boolean;
|
|
67
67
|
refreshBuffer: number;
|
|
68
68
|
onTokenRefreshed?: (accessToken: string, expiresIn: number) => void;
|
|
69
69
|
onSessionExpired?: (error: Error) => void;
|
|
70
70
|
onHealthChange?: (online: boolean) => void;
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
71
|
+
sessionRefreshToken: string | null;
|
|
72
|
+
refreshTimer: ReturnType<typeof setTimeout> | null;
|
|
73
|
+
healthTickTimer: ReturnType<typeof setInterval> | null;
|
|
74
|
+
healthTickPromise: Promise<unknown> | null;
|
|
75
75
|
realtimeEnabled: boolean;
|
|
76
76
|
realtimePath: string;
|
|
77
77
|
realtimeAutoConnect: boolean;
|
|
78
78
|
realtimeAutoReconnect: boolean;
|
|
79
79
|
realtimeReconnectDelayMs: number;
|
|
80
80
|
realtimeStatus: import("../../types.js").RealtimeConnectionStatus;
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
81
|
+
realtimeSocket: WebSocket | null;
|
|
82
|
+
realtimeConnectPromise: Promise<void> | null;
|
|
83
|
+
realtimeReconnectTimer: ReturnType<typeof setTimeout> | null;
|
|
84
|
+
realtimeShouldReconnect: boolean;
|
|
85
|
+
realtimeMessageListeners: Set<import("../../types.js").RealtimeMessageListener>;
|
|
86
|
+
realtimeStatusListeners: Set<import("../../types.js").RealtimeStatusListener>;
|
|
87
|
+
realtimeEventListeners: Map<string, Set<import("../../types.js").RealtimeMessageListener>>;
|
|
88
88
|
configure(options: Partial<import("../../types.js").EntityServerClientOptions>): void;
|
|
89
89
|
setToken(token: string): void;
|
|
90
90
|
setAnonymousPacketToken(token: string): void;
|
|
@@ -105,21 +105,21 @@ export declare function AdminMixin<TBase extends GConstructor<EntityServerClient
|
|
|
105
105
|
unsubscribeRealtime(subscriptions: string[]): boolean;
|
|
106
106
|
startHealthTick(intervalMs?: number): void;
|
|
107
107
|
stopHealthTick(): void;
|
|
108
|
-
|
|
108
|
+
scheduleKeepSession(refreshToken: string, expiresIn: number, refreshFn: (rt: string) => Promise<{
|
|
109
109
|
access_token: string;
|
|
110
110
|
expires_in: number;
|
|
111
111
|
}>): void;
|
|
112
|
-
|
|
112
|
+
clearRefreshTimer(): void;
|
|
113
113
|
stopKeepSession(): void;
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
114
|
+
applyRealtimeOptions(options?: boolean | import("../../types.js").RealtimeClientOptions): void;
|
|
115
|
+
buildRealtimeUrl(): string;
|
|
116
|
+
handleRealtimeMessage(payload: unknown): void;
|
|
117
|
+
scheduleRealtimeReconnect(reason: string): void;
|
|
118
|
+
clearRealtimeReconnectTimer(): void;
|
|
119
|
+
setRealtimeStatus(status: import("../../types.js").RealtimeConnectionStatus, reason?: string, error?: Error): void;
|
|
120
|
+
applyCsrfHealth(): void;
|
|
121
121
|
readRequestBody<T = Record<string, unknown>>(body: ArrayBuffer | Uint8Array | string | T | null | undefined, contentType?: string, requireEncrypted?: boolean): T;
|
|
122
|
-
get
|
|
122
|
+
get reqOpts(): import("../../client/request.js").RequestOptions;
|
|
123
123
|
get http(): {
|
|
124
124
|
get<T>(path: string, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
125
125
|
post<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
@@ -127,12 +127,9 @@ export declare function AdminMixin<TBase extends GConstructor<EntityServerClient
|
|
|
127
127
|
patch<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
128
128
|
delete<T>(path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
129
129
|
};
|
|
130
|
+
request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
130
131
|
requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
131
132
|
requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
132
133
|
requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
133
|
-
_request<T>(method: string, path: string, body?: unknown, withAuth?: boolean, extraHeaders?: Record<string, string>): Promise<T>;
|
|
134
|
-
_requestBinary(method: string, path: string, body?: unknown, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
135
|
-
_requestForm<T>(method: string, path: string, form: FormData, withAuth?: boolean): Promise<T>;
|
|
136
|
-
_requestFormBinary(method: string, path: string, form: FormData, withAuth?: boolean): Promise<ArrayBuffer>;
|
|
137
134
|
};
|
|
138
135
|
} & TBase;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
function s(i){return class extends i{
|
|
1
|
+
function s(i){return class extends i{adminPath(n){return`/v1/admin${n}`}adminGet(n){return this.http.get(this.adminPath(n))}adminPost(n,t){return this.http.post(this.adminPath(n),t)}adminPut(n,t){return this.http.put(this.adminPath(n),t)}adminPatch(n,t){return this.http.patch(this.adminPath(n),t)}adminDelete(n,t){return this.http.delete(this.adminPath(n),t)}listAdminEntities(){return this.adminGet("/entities")}getAdminErdSchema(){return this.adminGet("/erd/schema")}batchEnsureAdminEntities(n){return this.adminPost("/entities/batch-ensure",n)}createAdminEntityConfig(n,t){return this.adminPost(`/${n}/create`,t)}getAdminEntityConfig(n){return this.adminGet(`/${n}/config`)}updateAdminEntityConfig(n,t){return this.adminPut(`/${n}/config`,t)}validateAdminEntityConfig(n,t){return this.adminPost(t?`/${t}/validate`:"/entity/validate",n)}normalizeAdminEntityConfig(n,t){return this.adminPost(t?`/${t}/normalize`:"/entity/normalize",n)}getAdminEntityStats(n,t){return this.adminPost(`/${n}/stats`,t)}reindexAdminEntity(n){return this.adminPost(`/${n}/reindex`)}syncAdminEntitySchema(n){return this.adminPost(`/${n}/sync-schema`)}resetAdminEntity(n){return this.adminPost(`/${n}/reset`)}truncateAdminEntity(n){return this.adminPost(`/${n}/truncate`)}dropAdminEntity(n){return this.adminPost(`/${n}/drop`)}resetAllAdmin(n){return this.adminPost("/reset-all",n)}listAdminConfigs(){return this.adminGet("/configs")}getAdminConfig(n){return this.adminGet(`/configs/${n}`)}updateAdminConfig(n,t){return this.adminPatch(`/configs/${n}`,t)}listAdminRoles(){return this.adminGet("/roles")}createAdminRole(n){return this.adminPost("/roles",n)}getAdminRole(n){return this.adminGet(`/roles/${n}`)}updateAdminRole(n,t){return this.adminPatch(`/roles/${n}`,t)}deleteAdminRole(n){return this.adminDelete(`/roles/${n}`)}listAdminApiKeys(){return this.adminGet("/api-keys")}createAdminApiKey(n){return this.adminPost("/api-keys",n)}getAdminApiKey(n){return this.adminGet(`/api-keys/${n}`)}updateAdminApiKey(n,t){return this.adminPatch(`/api-keys/${n}`,t)}deleteAdminApiKey(n){return this.adminDelete(`/api-keys/${n}`)}regenerateAdminApiKeySecret(n){return this.adminPost(`/api-keys/${n}/regenerate-secret`)}listAdminAccounts(){return this.adminGet("/accounts")}createAdminAccount(n){return this.adminPost("/accounts",n)}getAdminAccount(n){return this.adminGet(`/accounts/${n}`)}updateAdminAccount(n,t){return this.adminPatch(`/accounts/${n}`,t)}deleteAdminAccount(n){return this.adminDelete(`/accounts/${n}`)}listAdminLicenses(){return this.adminGet("/licenses")}createAdminLicense(n){return this.adminPost("/licenses",n)}getAdminLicense(n){return this.adminGet(`/licenses/${n}`)}updateAdminLicense(n,t){return this.adminPatch(`/licenses/${n}`,t)}deleteAdminLicense(n){return this.adminDelete(`/licenses/${n}`)}runAdminBackup(n){return this.adminPost("/backup/run",n)}getAdminBackupStatus(n){return this.adminPost("/backup/status",n)}listAdminBackups(n){return this.adminPost("/backup/list",n)}restoreAdminBackup(n){return this.adminPost("/backup/restore",n)}deleteAdminBackup(n){return this.adminPost("/backup/delete",n)}disableAdminAccountTwoFactor(n){return this.adminDelete(`/accounts/${n}/2fa`)}}}export{s as AdminMixin};
|
|
2
2
|
//# sourceMappingURL=admin.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/mixins/server/admin.ts"],
|
|
4
|
-
"sourcesContent": ["import type {\n GConstructor,\n EntityServerClientBase,\n} from \"../../client/base.js\";\n\nexport function AdminMixin<TBase extends GConstructor<EntityServerClientBase>>(\n Base: TBase,\n) {\n return class AdminMixinClass extends Base {\n
|
|
5
|
-
"mappings": "AAKO,SAASA,EACZC,EACF,CACE,OAAO,cAA8BA,CAAK,CACtC,
|
|
4
|
+
"sourcesContent": ["import type {\n GConstructor,\n EntityServerClientBase,\n} from \"../../client/base.js\";\n\nexport function AdminMixin<TBase extends GConstructor<EntityServerClientBase>>(\n Base: TBase,\n) {\n return class AdminMixinClass extends Base {\n adminPath(path: string): string {\n return `/v1/admin${path}`;\n }\n\n adminGet<T>(path: string): Promise<T> {\n return this.http.get(this.adminPath(path));\n }\n\n adminPost<T>(path: string, body?: unknown): Promise<T> {\n return this.http.post(this.adminPath(path), body);\n }\n\n adminPut<T>(path: string, body?: unknown): Promise<T> {\n return this.http.put(this.adminPath(path), body);\n }\n\n adminPatch<T>(path: string, body?: unknown): Promise<T> {\n return this.http.patch(this.adminPath(path), body);\n }\n\n adminDelete<T>(path: string, body?: unknown): Promise<T> {\n return this.http.delete(this.adminPath(path), body);\n }\n\n listAdminEntities<T = unknown>(): Promise<T> {\n return this.adminGet(\"/entities\");\n }\n\n getAdminErdSchema<T = unknown>(): Promise<T> {\n return this.adminGet(\"/erd/schema\");\n }\n\n batchEnsureAdminEntities<T = unknown>(configs: unknown[]): Promise<T> {\n return this.adminPost(\"/entities/batch-ensure\", configs);\n }\n\n createAdminEntityConfig<T = unknown>(\n entity: string,\n config: Record<string, unknown>,\n ): Promise<T> {\n return this.adminPost(`/${entity}/create`, config);\n }\n\n getAdminEntityConfig<T = unknown>(entity: string): Promise<T> {\n return this.adminGet(`/${entity}/config`);\n }\n\n updateAdminEntityConfig<T = unknown>(\n entity: string,\n config: Record<string, unknown>,\n ): Promise<T> {\n return this.adminPut(`/${entity}/config`, config);\n }\n\n validateAdminEntityConfig<T = unknown>(\n config: Record<string, unknown>,\n entity?: string,\n ): Promise<T> {\n return this.adminPost(\n entity ? `/${entity}/validate` : \"/entity/validate\",\n config,\n );\n }\n\n normalizeAdminEntityConfig<T = unknown>(\n config: Record<string, unknown>,\n entity?: string,\n ): Promise<T> {\n return this.adminPost(\n entity ? `/${entity}/normalize` : \"/entity/normalize\",\n config,\n );\n }\n\n getAdminEntityStats<T = unknown>(\n entity: string,\n body?: Record<string, unknown>,\n ): Promise<T> {\n return this.adminPost(`/${entity}/stats`, body);\n }\n\n reindexAdminEntity<T = unknown>(entity: string): Promise<T> {\n return this.adminPost(`/${entity}/reindex`);\n }\n\n syncAdminEntitySchema<T = unknown>(entity: string): Promise<T> {\n return this.adminPost(`/${entity}/sync-schema`);\n }\n\n resetAdminEntity<T = unknown>(entity: string): Promise<T> {\n return this.adminPost(`/${entity}/reset`);\n }\n\n truncateAdminEntity<T = unknown>(entity: string): Promise<T> {\n return this.adminPost(`/${entity}/truncate`);\n }\n\n dropAdminEntity<T = unknown>(entity: string): Promise<T> {\n return this.adminPost(`/${entity}/drop`);\n }\n\n resetAllAdmin<T = unknown>(body?: Record<string, unknown>): Promise<T> {\n return this.adminPost(\"/reset-all\", body);\n }\n\n listAdminConfigs<T = unknown>(): Promise<T> {\n return this.adminGet(\"/configs\");\n }\n\n getAdminConfig<T = unknown>(domain: string): Promise<T> {\n return this.adminGet(`/configs/${domain}`);\n }\n\n updateAdminConfig<T = unknown>(\n domain: string,\n patch: Record<string, unknown>,\n ): Promise<T> {\n return this.adminPatch(`/configs/${domain}`, patch);\n }\n\n listAdminRoles<T = unknown>(): Promise<T> {\n return this.adminGet(\"/roles\");\n }\n\n createAdminRole<T = unknown>(\n body: Record<string, unknown>,\n ): Promise<T> {\n return this.adminPost(\"/roles\", body);\n }\n\n getAdminRole<T = unknown>(seq: number): Promise<T> {\n return this.adminGet(`/roles/${seq}`);\n }\n\n updateAdminRole<T = unknown>(\n seq: number,\n body: Record<string, unknown>,\n ): Promise<T> {\n return this.adminPatch(`/roles/${seq}`, body);\n }\n\n deleteAdminRole<T = unknown>(seq: number): Promise<T> {\n return this.adminDelete(`/roles/${seq}`);\n }\n\n listAdminApiKeys<T = unknown>(): Promise<T> {\n return this.adminGet(\"/api-keys\");\n }\n\n createAdminApiKey<T = unknown>(\n body: Record<string, unknown>,\n ): Promise<T> {\n return this.adminPost(\"/api-keys\", body);\n }\n\n getAdminApiKey<T = unknown>(seq: number): Promise<T> {\n return this.adminGet(`/api-keys/${seq}`);\n }\n\n updateAdminApiKey<T = unknown>(\n seq: number,\n body: Record<string, unknown>,\n ): Promise<T> {\n return this.adminPatch(`/api-keys/${seq}`, body);\n }\n\n deleteAdminApiKey<T = unknown>(seq: number): Promise<T> {\n return this.adminDelete(`/api-keys/${seq}`);\n }\n\n regenerateAdminApiKeySecret<T = unknown>(seq: number): Promise<T> {\n return this.adminPost(`/api-keys/${seq}/regenerate-secret`);\n }\n\n listAdminAccounts<T = unknown>(): Promise<T> {\n return this.adminGet(\"/accounts\");\n }\n\n createAdminAccount<T = unknown>(\n body: Record<string, unknown>,\n ): Promise<T> {\n return this.adminPost(\"/accounts\", body);\n }\n\n getAdminAccount<T = unknown>(seq: number): Promise<T> {\n return this.adminGet(`/accounts/${seq}`);\n }\n\n updateAdminAccount<T = unknown>(\n seq: number,\n body: Record<string, unknown>,\n ): Promise<T> {\n return this.adminPatch(`/accounts/${seq}`, body);\n }\n\n deleteAdminAccount<T = unknown>(seq: number): Promise<T> {\n return this.adminDelete(`/accounts/${seq}`);\n }\n\n listAdminLicenses<T = unknown>(): Promise<T> {\n return this.adminGet(\"/licenses\");\n }\n\n createAdminLicense<T = unknown>(\n body: Record<string, unknown>,\n ): Promise<T> {\n return this.adminPost(\"/licenses\", body);\n }\n\n getAdminLicense<T = unknown>(seq: number): Promise<T> {\n return this.adminGet(`/licenses/${seq}`);\n }\n\n updateAdminLicense<T = unknown>(\n seq: number,\n body: Record<string, unknown>,\n ): Promise<T> {\n return this.adminPatch(`/licenses/${seq}`, body);\n }\n\n deleteAdminLicense<T = unknown>(seq: number): Promise<T> {\n return this.adminDelete(`/licenses/${seq}`);\n }\n\n runAdminBackup<T = unknown>(\n body?: Record<string, unknown>,\n ): Promise<T> {\n return this.adminPost(\"/backup/run\", body);\n }\n\n getAdminBackupStatus<T = unknown>(\n body?: Record<string, unknown>,\n ): Promise<T> {\n return this.adminPost(\"/backup/status\", body);\n }\n\n listAdminBackups<T = unknown>(\n body?: Record<string, unknown>,\n ): Promise<T> {\n return this.adminPost(\"/backup/list\", body);\n }\n\n restoreAdminBackup<T = unknown>(\n body: Record<string, unknown>,\n ): Promise<T> {\n return this.adminPost(\"/backup/restore\", body);\n }\n\n deleteAdminBackup<T = unknown>(\n body: Record<string, unknown>,\n ): Promise<T> {\n return this.adminPost(\"/backup/delete\", body);\n }\n\n disableAdminAccountTwoFactor<T = unknown>(seq: number): Promise<T> {\n return this.adminDelete(`/accounts/${seq}/2fa`);\n }\n };\n}\n"],
|
|
5
|
+
"mappings": "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",
|
|
6
6
|
"names": ["AdminMixin", "Base", "path", "body", "configs", "entity", "config", "domain", "patch", "seq"]
|
|
7
7
|
}
|