@aitlabs/namkwong 0.0.107 → 0.0.108
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/admin/index.d.ts +1 -0
- package/dist/asset-price/user/router.d.ts +13 -1
- package/dist/auth/router.d.ts +1 -13
- package/dist/binary-option/admin/dto.schemas.d.ts +1 -0
- package/dist/binary-option/admin/router.d.ts +1 -0
- package/dist/binary-option/internal/service.d.ts +1 -0
- package/dist/binary-option/user/dto.schemas.d.ts +1 -0
- package/dist/binary-option/user/router.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/ledger-account-transfer/user/router.d.ts +1 -13
- package/dist/news/admin/router.d.ts +13 -1
- package/dist/referral/admin/router.d.ts +13 -1
- package/dist/shipping-address/admin/router.d.ts +1 -13
- package/package.json +1 -1
package/dist/admin/index.d.ts
CHANGED
|
@@ -35,7 +35,19 @@ export declare const assetPriceRouter: Elysia<"/asset_prices", {
|
|
|
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;
|
package/dist/auth/router.d.ts
CHANGED
|
@@ -28,19 +28,7 @@ export declare const betterAuthPlugin: Elysia<"", {
|
|
|
28
28
|
headers: import("elysia").HTTPHeaders;
|
|
29
29
|
status?: number | keyof import("elysia").StatusMap;
|
|
30
30
|
redirect?: string;
|
|
31
|
-
cookie?: Record<string,
|
|
32
|
-
domain?: string | undefined;
|
|
33
|
-
expires?: Date | undefined;
|
|
34
|
-
httpOnly?: boolean | undefined;
|
|
35
|
-
maxAge?: number | undefined;
|
|
36
|
-
path?: string | undefined;
|
|
37
|
-
priority?: 'low' | 'medium' | 'high' | undefined;
|
|
38
|
-
partitioned?: boolean | undefined;
|
|
39
|
-
sameSite?: true | false | 'lax' | 'strict' | 'none' | undefined;
|
|
40
|
-
secure?: boolean | undefined;
|
|
41
|
-
secrets?: string | null | (string | null)[];
|
|
42
|
-
value?: unknown;
|
|
43
|
-
}>;
|
|
31
|
+
cookie?: Record<string, import("elysia/cookies").ElysiaCookie>;
|
|
44
32
|
};
|
|
45
33
|
path: string;
|
|
46
34
|
route: string;
|
|
@@ -35,6 +35,7 @@ export declare const binaryOptionAdminMarketUpdateSchema: import("@sinclair/type
|
|
|
35
35
|
}>;
|
|
36
36
|
export type BinaryOptionAdminMarketUpdateInputType = typeof binaryOptionAdminMarketUpdateSchema.static;
|
|
37
37
|
export declare const binaryOptionAdminMarketListQuerySchema: import("@sinclair/typebox").TObject<{
|
|
38
|
+
isHot: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
38
39
|
keyword: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
39
40
|
limit: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
40
41
|
marketSymbolId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
@@ -755,6 +755,7 @@ export declare const binaryOptionAdminRouter: Elysia<"/binary_option", {
|
|
|
755
755
|
body: {};
|
|
756
756
|
params: {};
|
|
757
757
|
query: {
|
|
758
|
+
isHot?: boolean | undefined;
|
|
758
759
|
keyword?: string | undefined;
|
|
759
760
|
limit?: number | undefined;
|
|
760
761
|
marketSymbolId?: string | undefined;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export declare const binaryOptionUserMarketListQuerySchema: import("@sinclair/typebox").TObject<{
|
|
2
|
+
isHot: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TBoolean>;
|
|
2
3
|
keyword: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
3
4
|
limit: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
|
4
5
|
offset: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
package/dist/index.d.ts
CHANGED
|
@@ -4850,6 +4850,7 @@ declare const app: Elysia<"/api", {
|
|
|
4850
4850
|
body: {};
|
|
4851
4851
|
params: {};
|
|
4852
4852
|
query: {
|
|
4853
|
+
isHot?: boolean | undefined;
|
|
4853
4854
|
keyword?: string | undefined;
|
|
4854
4855
|
limit?: number | undefined;
|
|
4855
4856
|
marketSymbolId?: string | undefined;
|
|
@@ -15748,6 +15749,7 @@ declare const app: Elysia<"/api", {
|
|
|
15748
15749
|
body: {};
|
|
15749
15750
|
params: {};
|
|
15750
15751
|
query: {
|
|
15752
|
+
isHot?: boolean | undefined;
|
|
15751
15753
|
keyword?: string | undefined;
|
|
15752
15754
|
limit?: number | undefined;
|
|
15753
15755
|
offset?: number | undefined;
|
|
@@ -35,19 +35,7 @@ export declare const ledgerAccountTransferRouter: Elysia<"/ledger_account_transf
|
|
|
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 referralAdminRouter: Elysia<"/referrals", {
|
|
|
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 shippingAddressAdminRouter: Elysia<"/shipping_address", {
|
|
|
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;
|