@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.
@@ -4422,6 +4422,7 @@ export declare const adminRouter: Elysia<"/admin", {
4422
4422
  body: {};
4423
4423
  params: {};
4424
4424
  query: {
4425
+ isHot?: boolean | undefined;
4425
4426
  keyword?: string | undefined;
4426
4427
  limit?: number | undefined;
4427
4428
  marketSymbolId?: string | undefined;
@@ -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, import("elysia/cookies").ElysiaCookie>;
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;
@@ -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;
@@ -43,6 +43,7 @@ export declare abstract class InternalBinaryOptionService {
43
43
  private static getMarketByIdForUser;
44
44
  static listMarketsForUser(query?: {
45
45
  keyword?: string;
46
+ isHot?: boolean;
46
47
  limit?: number;
47
48
  offset?: number;
48
49
  }): Promise<{
@@ -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>;
@@ -386,6 +386,7 @@ export declare const binaryOptionRouter: Elysia<"/binary_option", {
386
386
  body: {};
387
387
  params: {};
388
388
  query: {
389
+ isHot?: boolean | undefined;
389
390
  keyword?: string | undefined;
390
391
  limit?: number | undefined;
391
392
  offset?: number | undefined;
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, import("elysia/cookies").ElysiaCookie>;
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, import("elysia/cookies").ElysiaCookie>;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aitlabs/namkwong",
3
- "version": "0.0.107",
3
+ "version": "0.0.108",
4
4
  "description": "Elysia API type definitions for Eden Treaty",
5
5
  "files": [
6
6
  "dist"