@aitlabs/namkwong 0.0.115 → 0.0.116
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/asset/admin/router.d.ts +13 -1
- package/dist/asset-type/admin/router.d.ts +1 -13
- package/dist/binary-option/user/dto.schemas.d.ts +2 -0
- package/dist/binary-option/user/router.d.ts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/market-pricing/admin/router.d.ts +1 -13
- package/dist/news/admin/router.d.ts +13 -1
- package/dist/team/admin/router.d.ts +13 -1
- package/dist/user-security/user/router.d.ts +1 -13
- package/package.json +1 -1
|
@@ -35,7 +35,19 @@ export declare const assetAdminRouter: Elysia<"/assets", {
|
|
|
35
35
|
headers: import("elysia").HTTPHeaders;
|
|
36
36
|
status?: number | keyof import("elysia").StatusMap;
|
|
37
37
|
redirect?: string;
|
|
38
|
-
cookie?: Record<string,
|
|
38
|
+
cookie?: Record<string, {
|
|
39
|
+
domain?: string | undefined;
|
|
40
|
+
expires?: Date | undefined;
|
|
41
|
+
httpOnly?: boolean | undefined;
|
|
42
|
+
maxAge?: number | undefined;
|
|
43
|
+
path?: string | undefined;
|
|
44
|
+
priority?: 'low' | 'medium' | 'high' | undefined;
|
|
45
|
+
partitioned?: boolean | undefined;
|
|
46
|
+
sameSite?: true | false | 'lax' | 'strict' | 'none' | undefined;
|
|
47
|
+
secure?: boolean | undefined;
|
|
48
|
+
secrets?: string | null | (string | null)[];
|
|
49
|
+
value?: unknown;
|
|
50
|
+
}>;
|
|
39
51
|
};
|
|
40
52
|
path: string;
|
|
41
53
|
route: string;
|
|
@@ -35,19 +35,7 @@ export declare const assetTypeAdminRouter: Elysia<"/asset_types", {
|
|
|
35
35
|
headers: import("elysia").HTTPHeaders;
|
|
36
36
|
status?: number | keyof import("elysia").StatusMap;
|
|
37
37
|
redirect?: string;
|
|
38
|
-
cookie?: Record<string,
|
|
39
|
-
domain?: string | undefined;
|
|
40
|
-
expires?: Date | undefined;
|
|
41
|
-
httpOnly?: boolean | undefined;
|
|
42
|
-
maxAge?: number | undefined;
|
|
43
|
-
path?: string | undefined;
|
|
44
|
-
priority?: 'low' | 'medium' | 'high' | undefined;
|
|
45
|
-
partitioned?: boolean | undefined;
|
|
46
|
-
sameSite?: true | false | 'lax' | 'strict' | 'none' | undefined;
|
|
47
|
-
secure?: boolean | undefined;
|
|
48
|
-
secrets?: string | null | (string | null)[];
|
|
49
|
-
value?: unknown;
|
|
50
|
-
}>;
|
|
38
|
+
cookie?: Record<string, import("elysia/cookies").ElysiaCookie>;
|
|
51
39
|
};
|
|
52
40
|
path: string;
|
|
53
41
|
route: string;
|
|
@@ -195,6 +195,7 @@ export declare const binaryOptionUserMarketItemSchema: import("@sinclair/typebox
|
|
|
195
195
|
effectiveAt: import("@sinclair/typebox").TDate;
|
|
196
196
|
}>, import("@sinclair/typebox").TNull]>;
|
|
197
197
|
dailyChangeRate: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
|
198
|
+
minuteChangeRate: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
|
198
199
|
trend10d: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
199
200
|
date: import("@sinclair/typebox").TString;
|
|
200
201
|
price: import("@sinclair/typebox").TString;
|
|
@@ -433,6 +434,7 @@ export declare const binaryOptionUserMarketListResponseSchema: import("@sinclair
|
|
|
433
434
|
effectiveAt: import("@sinclair/typebox").TDate;
|
|
434
435
|
}>, import("@sinclair/typebox").TNull]>;
|
|
435
436
|
dailyChangeRate: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
|
437
|
+
minuteChangeRate: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
|
436
438
|
trend10d: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
437
439
|
date: import("@sinclair/typebox").TString;
|
|
438
440
|
price: import("@sinclair/typebox").TString;
|
|
@@ -434,6 +434,7 @@ export declare const binaryOptionRouter: Elysia<"/binary_option", {
|
|
|
434
434
|
effectiveAt: Date;
|
|
435
435
|
} | null;
|
|
436
436
|
dailyChangeRate: string | null;
|
|
437
|
+
minuteChangeRate: string | null;
|
|
437
438
|
trend10d: {
|
|
438
439
|
date: string;
|
|
439
440
|
price: string;
|
|
@@ -540,6 +541,7 @@ export declare const binaryOptionRouter: Elysia<"/binary_option", {
|
|
|
540
541
|
effectiveAt: Date;
|
|
541
542
|
} | null;
|
|
542
543
|
dailyChangeRate: string | null;
|
|
544
|
+
minuteChangeRate: string | null;
|
|
543
545
|
trend10d: {
|
|
544
546
|
date: string;
|
|
545
547
|
price: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -16112,6 +16112,7 @@ declare const app: Elysia<"/api", {
|
|
|
16112
16112
|
effectiveAt: Date;
|
|
16113
16113
|
} | null;
|
|
16114
16114
|
dailyChangeRate: string | null;
|
|
16115
|
+
minuteChangeRate: string | null;
|
|
16115
16116
|
trend10d: {
|
|
16116
16117
|
date: string;
|
|
16117
16118
|
price: string;
|
|
@@ -16218,6 +16219,7 @@ declare const app: Elysia<"/api", {
|
|
|
16218
16219
|
effectiveAt: Date;
|
|
16219
16220
|
} | null;
|
|
16220
16221
|
dailyChangeRate: string | null;
|
|
16222
|
+
minuteChangeRate: string | null;
|
|
16221
16223
|
trend10d: {
|
|
16222
16224
|
date: string;
|
|
16223
16225
|
price: string;
|
|
@@ -35,19 +35,7 @@ export declare const marketPricingAdminRouter: Elysia<"/market_pricing", {
|
|
|
35
35
|
headers: import("elysia").HTTPHeaders;
|
|
36
36
|
status?: number | keyof import("elysia").StatusMap;
|
|
37
37
|
redirect?: string;
|
|
38
|
-
cookie?: Record<string,
|
|
39
|
-
domain?: string | undefined;
|
|
40
|
-
expires?: Date | undefined;
|
|
41
|
-
httpOnly?: boolean | undefined;
|
|
42
|
-
maxAge?: number | undefined;
|
|
43
|
-
path?: string | undefined;
|
|
44
|
-
priority?: 'low' | 'medium' | 'high' | undefined;
|
|
45
|
-
partitioned?: boolean | undefined;
|
|
46
|
-
sameSite?: true | false | 'lax' | 'strict' | 'none' | undefined;
|
|
47
|
-
secure?: boolean | undefined;
|
|
48
|
-
secrets?: string | null | (string | null)[];
|
|
49
|
-
value?: unknown;
|
|
50
|
-
}>;
|
|
38
|
+
cookie?: Record<string, import("elysia/cookies").ElysiaCookie>;
|
|
51
39
|
};
|
|
52
40
|
path: string;
|
|
53
41
|
route: string;
|
|
@@ -35,7 +35,19 @@ export declare const newsAdminRouter: Elysia<"/news", {
|
|
|
35
35
|
headers: import("elysia").HTTPHeaders;
|
|
36
36
|
status?: number | keyof import("elysia").StatusMap;
|
|
37
37
|
redirect?: string;
|
|
38
|
-
cookie?: Record<string,
|
|
38
|
+
cookie?: Record<string, {
|
|
39
|
+
domain?: string | undefined;
|
|
40
|
+
expires?: Date | undefined;
|
|
41
|
+
httpOnly?: boolean | undefined;
|
|
42
|
+
maxAge?: number | undefined;
|
|
43
|
+
path?: string | undefined;
|
|
44
|
+
priority?: 'low' | 'medium' | 'high' | undefined;
|
|
45
|
+
partitioned?: boolean | undefined;
|
|
46
|
+
sameSite?: true | false | 'lax' | 'strict' | 'none' | undefined;
|
|
47
|
+
secure?: boolean | undefined;
|
|
48
|
+
secrets?: string | null | (string | null)[];
|
|
49
|
+
value?: unknown;
|
|
50
|
+
}>;
|
|
39
51
|
};
|
|
40
52
|
path: string;
|
|
41
53
|
route: string;
|
|
@@ -35,7 +35,19 @@ export declare const teamAdminRouter: Elysia<"/team", {
|
|
|
35
35
|
headers: import("elysia").HTTPHeaders;
|
|
36
36
|
status?: number | keyof import("elysia").StatusMap;
|
|
37
37
|
redirect?: string;
|
|
38
|
-
cookie?: Record<string,
|
|
38
|
+
cookie?: Record<string, {
|
|
39
|
+
domain?: string | undefined;
|
|
40
|
+
expires?: Date | undefined;
|
|
41
|
+
httpOnly?: boolean | undefined;
|
|
42
|
+
maxAge?: number | undefined;
|
|
43
|
+
path?: string | undefined;
|
|
44
|
+
priority?: 'low' | 'medium' | 'high' | undefined;
|
|
45
|
+
partitioned?: boolean | undefined;
|
|
46
|
+
sameSite?: true | false | 'lax' | 'strict' | 'none' | undefined;
|
|
47
|
+
secure?: boolean | undefined;
|
|
48
|
+
secrets?: string | null | (string | null)[];
|
|
49
|
+
value?: unknown;
|
|
50
|
+
}>;
|
|
39
51
|
};
|
|
40
52
|
path: string;
|
|
41
53
|
route: string;
|
|
@@ -35,19 +35,7 @@ export declare const userSecurityRouter: Elysia<"/user", {
|
|
|
35
35
|
headers: import("elysia").HTTPHeaders;
|
|
36
36
|
status?: number | keyof import("elysia").StatusMap;
|
|
37
37
|
redirect?: string;
|
|
38
|
-
cookie?: Record<string,
|
|
39
|
-
domain?: string | undefined;
|
|
40
|
-
expires?: Date | undefined;
|
|
41
|
-
httpOnly?: boolean | undefined;
|
|
42
|
-
maxAge?: number | undefined;
|
|
43
|
-
path?: string | undefined;
|
|
44
|
-
priority?: 'low' | 'medium' | 'high' | undefined;
|
|
45
|
-
partitioned?: boolean | undefined;
|
|
46
|
-
sameSite?: true | false | 'lax' | 'strict' | 'none' | undefined;
|
|
47
|
-
secure?: boolean | undefined;
|
|
48
|
-
secrets?: string | null | (string | null)[];
|
|
49
|
-
value?: unknown;
|
|
50
|
-
}>;
|
|
38
|
+
cookie?: Record<string, import("elysia/cookies").ElysiaCookie>;
|
|
51
39
|
};
|
|
52
40
|
path: string;
|
|
53
41
|
route: string;
|