@cryptorobot.ai/client 0.0.19 → 0.0.25
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/lib/client.d.ts +38 -36
- package/lib/client.js +6 -12
- package/lib/configuration.d.ts +20 -1
- package/lib/firebase-push-notification.d.ts +1 -0
- package/lib/helpers/backtest.helper.d.ts +53 -4
- package/lib/helpers/ccxt.helper.d.ts +75 -0
- package/lib/helpers/deployments.helper.d.ts +72 -0
- package/lib/helpers/funnel.helper.d.ts +17 -0
- package/lib/helpers/hyperopt.helper.d.ts +14 -0
- package/lib/helpers/push-notification.helper.d.ts +7 -0
- package/lib/helpers/queue.helper.d.ts +8 -0
- package/lib/helpers/sqlite3.helper.d.ts +6 -0
- package/lib/helpers/sqs.helper.d.ts +7 -0
- package/lib/helpers/subscription.helper.d.ts +48 -0
- package/lib/helpers/telegram.helper.d.ts +26 -1
- package/lib/helpers/trader.helper.d.ts +26 -0
- package/lib/hooks/application/setup-config-preparation.d.ts +1 -1
- package/lib/hooks/application/setup-info.d.ts +1 -1
- package/lib/hooks/application/setup-load-indicators.d.ts +1 -1
- package/lib/hooks/application/setup-load-strategy-templates.d.ts +1 -1
- package/lib/hooks/aws-prepare-batch-job.d.ts +2 -0
- package/lib/hooks/backtest-copy-candles-from-user-data.d.ts +1 -1
- package/lib/hooks/{backtest-generate-and-start.d.ts → backtest-generate-and-queue.d.ts} +1 -1
- package/lib/hooks/backtest-generate-config.d.ts +6 -0
- package/lib/hooks/backtest-generate-exchange-config.d.ts +6 -0
- package/lib/hooks/backtest-get-results.d.ts +12 -0
- package/lib/hooks/file-generate-config-hyperopt.d.ts +2 -0
- package/lib/hooks/setup-ensure-image.d.ts +3 -0
- package/lib/hooks/setup-firebase.d.ts +2 -0
- package/lib/hooks/setup-homepage.d.ts +3 -0
- package/lib/hooks/setup-mautic.d.ts +3 -0
- package/lib/hooks/setup-mixpanel.d.ts +3 -0
- package/lib/hooks/setup-prepare-maildev-while-in-test-env.d.ts +1 -1
- package/lib/hooks/setup-queues.d.ts +1 -1
- package/lib/hooks/sqlite-reset-database.d.ts +2 -0
- package/lib/hooks/traders/pods-process-worker.d.ts +5 -0
- package/lib/sentry.d.ts +2 -0
- package/lib/services/exchanges/balance/balance.schema.d.ts +56 -56
- package/lib/services/exchanges/download/download.schema.d.ts +60 -60
- package/lib/services/exchanges/download/webhooks/webhooks.schema.d.ts +84 -84
- package/lib/services/exchanges/exchanges.schema.d.ts +198 -198
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +110 -110
- package/lib/services/homepage/homepage.class.d.ts +15 -0
- package/lib/services/homepage/homepage.d.ts +10 -0
- package/lib/services/homepage/homepage.schema.d.ts +237 -0
- package/lib/services/homepage/homepage.shared.d.ts +4 -0
- package/lib/services/homepage/homepage.shared.js +6 -0
- package/lib/services/markets/markets.schema.d.ts +112 -112
- package/lib/services/messages/messages.schema.d.ts +136 -64
- package/lib/services/strategies/ai/ai.schema.d.ts +32 -32
- package/lib/services/strategies/backtest/backtest.schema.d.ts +394 -84
- package/lib/services/strategies/backtest/results/results.class.d.ts +1 -1
- package/lib/services/strategies/backtest/results/results.schema.d.ts +454 -156
- package/lib/services/strategies/hyperopt/hyperopt.class.d.ts +11 -0
- package/lib/services/strategies/hyperopt/hyperopt.d.ts +11 -0
- package/lib/services/strategies/hyperopt/hyperopt.schema.d.ts +375 -0
- package/lib/services/strategies/hyperopt/hyperopt.shared.d.ts +13 -0
- package/lib/services/strategies/hyperopt/hyperopt.shared.js +13 -0
- package/lib/services/strategies/indicators/indicators.schema.d.ts +40 -40
- package/lib/services/strategies/strategies.schema.d.ts +329 -247
- package/lib/services/strategies/templates/templates.schema.d.ts +41 -41
- package/lib/services/stripe/charges/charges.d.ts +1 -1
- package/lib/services/stripe/customers/customers.d.ts +1 -1
- package/lib/services/stripe/customers/paymentintent/paymentintent.d.ts +1 -1
- package/lib/services/stripe/customers/paymentmethods/paymentmethods.d.ts +1 -1
- package/lib/services/stripe/products/products.d.ts +1 -1
- package/lib/services/traders/pods/api/api.class.d.ts +1 -1
- package/lib/services/traders/pods/api/api.schema.d.ts +519 -519
- package/lib/services/traders/pods/events/events.schema.d.ts +375 -111
- package/lib/services/traders/pods/pods.schema.d.ts +384 -384
- package/lib/services/traders/pods/webhooks/webhooks.schema.d.ts +76 -76
- package/lib/services/traders/traders.class.d.ts +7 -1
- package/lib/services/traders/traders.d.ts +1 -0
- package/lib/services/traders/traders.schema.d.ts +852 -380
- package/lib/services/users/users.class.d.ts +1 -1
- package/lib/services/users/users.schema.d.ts +158 -52
- package/package.json +9 -2
- package/lib/hooks/bootstrap-user-telegram.d.ts +0 -2
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { Application } from '../../declarations';
|
|
2
|
+
import { HomepageService } from './homepage.class';
|
|
3
|
+
import { homepagePath } from './homepage.shared';
|
|
4
|
+
export * from './homepage.class';
|
|
5
|
+
export declare const homepage: (app: Application) => void;
|
|
6
|
+
declare module '../../declarations' {
|
|
7
|
+
interface ServiceTypes {
|
|
8
|
+
[homepagePath]: HomepageService;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
import type { Static } from '@feathersjs/typebox';
|
|
2
|
+
import type { HookContext } from '../../declarations';
|
|
3
|
+
import type { HomepageService } from './homepage.class';
|
|
4
|
+
export declare const homepageSchema: import("@feathersjs/typebox").TObject<{
|
|
5
|
+
id: import("@feathersjs/typebox").TNumber;
|
|
6
|
+
trades: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
7
|
+
}>;
|
|
8
|
+
export type Homepage = Static<typeof homepageSchema>;
|
|
9
|
+
export declare const homepageValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
10
|
+
export declare const homepageResolver: import("@feathersjs/schema").Resolver<{
|
|
11
|
+
id: number;
|
|
12
|
+
trades: any[];
|
|
13
|
+
}, HookContext<HomepageService>>;
|
|
14
|
+
export declare const homepageExternalResolver: import("@feathersjs/schema").Resolver<{
|
|
15
|
+
id: number;
|
|
16
|
+
trades: any[];
|
|
17
|
+
}, HookContext<HomepageService>>;
|
|
18
|
+
export declare const homepageDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
19
|
+
id: import("@feathersjs/typebox").TNumber;
|
|
20
|
+
trades: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
21
|
+
}>, ["trades"]>;
|
|
22
|
+
export type HomepageData = Static<typeof homepageDataSchema>;
|
|
23
|
+
export declare const homepageDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
24
|
+
export declare const homepageDataResolver: import("@feathersjs/schema").Resolver<{
|
|
25
|
+
id: number;
|
|
26
|
+
trades: any[];
|
|
27
|
+
}, HookContext<HomepageService>>;
|
|
28
|
+
export declare const homepagePatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
29
|
+
id: import("@feathersjs/typebox").TNumber;
|
|
30
|
+
trades: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
31
|
+
}>>;
|
|
32
|
+
export type HomepagePatch = Static<typeof homepagePatchSchema>;
|
|
33
|
+
export declare const homepagePatchValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
34
|
+
export declare const homepagePatchResolver: import("@feathersjs/schema").Resolver<{
|
|
35
|
+
id: number;
|
|
36
|
+
trades: any[];
|
|
37
|
+
}, HookContext<HomepageService>>;
|
|
38
|
+
export declare const homepageQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
39
|
+
id: import("@feathersjs/typebox").TNumber;
|
|
40
|
+
trades: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
41
|
+
}>, ["id", "trades"]>;
|
|
42
|
+
export declare const homepageQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
43
|
+
$limit: import("@feathersjs/typebox").TNumber;
|
|
44
|
+
$skip: import("@feathersjs/typebox").TNumber;
|
|
45
|
+
$sort: import("@feathersjs/typebox").TObject<{
|
|
46
|
+
id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
47
|
+
trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
48
|
+
}>;
|
|
49
|
+
$select: import("@feathersjs/typebox").TUnsafe<("id" | "trades")[]>;
|
|
50
|
+
$and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
51
|
+
id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
52
|
+
$gt: import("@feathersjs/typebox").TNumber;
|
|
53
|
+
$gte: import("@feathersjs/typebox").TNumber;
|
|
54
|
+
$lt: import("@feathersjs/typebox").TNumber;
|
|
55
|
+
$lte: import("@feathersjs/typebox").TNumber;
|
|
56
|
+
$ne: import("@feathersjs/typebox").TNumber;
|
|
57
|
+
$in: import("@feathersjs/typebox").TNumber | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber>;
|
|
58
|
+
$nin: import("@feathersjs/typebox").TNumber | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber>;
|
|
59
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
60
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
61
|
+
} | undefined>]>>]>>;
|
|
62
|
+
trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
63
|
+
$gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
64
|
+
$gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
65
|
+
$lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
66
|
+
$lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
67
|
+
$ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
68
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
69
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
70
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
71
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
72
|
+
} | undefined>]>>]>>;
|
|
73
|
+
}>>, import("@feathersjs/typebox").TObject<{
|
|
74
|
+
$or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
75
|
+
id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
76
|
+
$gt: import("@feathersjs/typebox").TNumber;
|
|
77
|
+
$gte: import("@feathersjs/typebox").TNumber;
|
|
78
|
+
$lt: import("@feathersjs/typebox").TNumber;
|
|
79
|
+
$lte: import("@feathersjs/typebox").TNumber;
|
|
80
|
+
$ne: import("@feathersjs/typebox").TNumber;
|
|
81
|
+
$in: import("@feathersjs/typebox").TNumber | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber>;
|
|
82
|
+
$nin: import("@feathersjs/typebox").TNumber | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber>;
|
|
83
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
84
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
85
|
+
} | undefined>]>>]>>;
|
|
86
|
+
trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
87
|
+
$gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
88
|
+
$gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
89
|
+
$lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
90
|
+
$lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
91
|
+
$ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
92
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
93
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
94
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
95
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
96
|
+
} | undefined>]>>]>>;
|
|
97
|
+
}>>>;
|
|
98
|
+
}>]>>;
|
|
99
|
+
$or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
100
|
+
id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
101
|
+
$gt: import("@feathersjs/typebox").TNumber;
|
|
102
|
+
$gte: import("@feathersjs/typebox").TNumber;
|
|
103
|
+
$lt: import("@feathersjs/typebox").TNumber;
|
|
104
|
+
$lte: import("@feathersjs/typebox").TNumber;
|
|
105
|
+
$ne: import("@feathersjs/typebox").TNumber;
|
|
106
|
+
$in: import("@feathersjs/typebox").TNumber | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber>;
|
|
107
|
+
$nin: import("@feathersjs/typebox").TNumber | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber>;
|
|
108
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
109
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
110
|
+
} | undefined>]>>]>>;
|
|
111
|
+
trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
112
|
+
$gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
113
|
+
$gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
114
|
+
$lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
115
|
+
$lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
116
|
+
$ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
117
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
118
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
119
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
120
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
121
|
+
} | undefined>]>>]>>;
|
|
122
|
+
}>>>;
|
|
123
|
+
}>>, import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
124
|
+
id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
125
|
+
$gt: import("@feathersjs/typebox").TNumber;
|
|
126
|
+
$gte: import("@feathersjs/typebox").TNumber;
|
|
127
|
+
$lt: import("@feathersjs/typebox").TNumber;
|
|
128
|
+
$lte: import("@feathersjs/typebox").TNumber;
|
|
129
|
+
$ne: import("@feathersjs/typebox").TNumber;
|
|
130
|
+
$in: import("@feathersjs/typebox").TNumber | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber>;
|
|
131
|
+
$nin: import("@feathersjs/typebox").TNumber | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TNumber>;
|
|
132
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
133
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
134
|
+
} | undefined>]>>]>>;
|
|
135
|
+
trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
136
|
+
$gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
137
|
+
$gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
138
|
+
$lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
139
|
+
$lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
140
|
+
$ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
141
|
+
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
142
|
+
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
143
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
144
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
145
|
+
} | undefined>]>>]>>;
|
|
146
|
+
}>>]>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
147
|
+
export type HomepageQuery = Static<typeof homepageQuerySchema>;
|
|
148
|
+
export declare const homepageQueryValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
149
|
+
export declare const homepageQueryResolver: import("@feathersjs/schema").Resolver<Partial<{
|
|
150
|
+
$limit: number;
|
|
151
|
+
$skip: number;
|
|
152
|
+
$sort: {
|
|
153
|
+
id?: number | undefined;
|
|
154
|
+
trades?: number | undefined;
|
|
155
|
+
};
|
|
156
|
+
$select: ("id" | "trades")[];
|
|
157
|
+
$and: ({
|
|
158
|
+
id?: number | Partial<{
|
|
159
|
+
$gt: number;
|
|
160
|
+
$gte: number;
|
|
161
|
+
$lt: number;
|
|
162
|
+
$lte: number;
|
|
163
|
+
$ne: number;
|
|
164
|
+
$in: number | number[];
|
|
165
|
+
$nin: number | number[];
|
|
166
|
+
} & {}> | undefined;
|
|
167
|
+
trades?: any[] | Partial<{
|
|
168
|
+
$gt: any[];
|
|
169
|
+
$gte: any[];
|
|
170
|
+
$lt: any[];
|
|
171
|
+
$lte: any[];
|
|
172
|
+
$ne: any[];
|
|
173
|
+
$in: any[] | any[][];
|
|
174
|
+
$nin: any[] | any[][];
|
|
175
|
+
} & {}> | undefined;
|
|
176
|
+
} | {
|
|
177
|
+
$or: {
|
|
178
|
+
id?: number | Partial<{
|
|
179
|
+
$gt: number;
|
|
180
|
+
$gte: number;
|
|
181
|
+
$lt: number;
|
|
182
|
+
$lte: number;
|
|
183
|
+
$ne: number;
|
|
184
|
+
$in: number | number[];
|
|
185
|
+
$nin: number | number[];
|
|
186
|
+
} & {}> | undefined;
|
|
187
|
+
trades?: any[] | Partial<{
|
|
188
|
+
$gt: any[];
|
|
189
|
+
$gte: any[];
|
|
190
|
+
$lt: any[];
|
|
191
|
+
$lte: any[];
|
|
192
|
+
$ne: any[];
|
|
193
|
+
$in: any[] | any[][];
|
|
194
|
+
$nin: any[] | any[][];
|
|
195
|
+
} & {}> | undefined;
|
|
196
|
+
}[];
|
|
197
|
+
})[];
|
|
198
|
+
$or: {
|
|
199
|
+
id?: number | Partial<{
|
|
200
|
+
$gt: number;
|
|
201
|
+
$gte: number;
|
|
202
|
+
$lt: number;
|
|
203
|
+
$lte: number;
|
|
204
|
+
$ne: number;
|
|
205
|
+
$in: number | number[];
|
|
206
|
+
$nin: number | number[];
|
|
207
|
+
} & {}> | undefined;
|
|
208
|
+
trades?: any[] | Partial<{
|
|
209
|
+
$gt: any[];
|
|
210
|
+
$gte: any[];
|
|
211
|
+
$lt: any[];
|
|
212
|
+
$lte: any[];
|
|
213
|
+
$ne: any[];
|
|
214
|
+
$in: any[] | any[][];
|
|
215
|
+
$nin: any[] | any[][];
|
|
216
|
+
} & {}> | undefined;
|
|
217
|
+
}[];
|
|
218
|
+
}> & {
|
|
219
|
+
id?: number | Partial<{
|
|
220
|
+
$gt: number;
|
|
221
|
+
$gte: number;
|
|
222
|
+
$lt: number;
|
|
223
|
+
$lte: number;
|
|
224
|
+
$ne: number;
|
|
225
|
+
$in: number | number[];
|
|
226
|
+
$nin: number | number[];
|
|
227
|
+
} & {}> | undefined;
|
|
228
|
+
trades?: any[] | Partial<{
|
|
229
|
+
$gt: any[];
|
|
230
|
+
$gte: any[];
|
|
231
|
+
$lt: any[];
|
|
232
|
+
$lte: any[];
|
|
233
|
+
$ne: any[];
|
|
234
|
+
$in: any[] | any[][];
|
|
235
|
+
$nin: any[] | any[][];
|
|
236
|
+
} & {}> | undefined;
|
|
237
|
+
} & {}, HookContext<HomepageService>>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { Homepage, HomepageData, HomepagePatch, HomepageQuery } from './homepage.class';
|
|
2
|
+
export type { Homepage, HomepageData, HomepagePatch, HomepageQuery };
|
|
3
|
+
export declare const homepagePath = "homepage";
|
|
4
|
+
export declare const homepageMethods: readonly ["find", "get", "create", "patch", "remove"];
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.homepageMethods = exports.homepagePath = void 0;
|
|
4
|
+
exports.homepagePath = 'homepage';
|
|
5
|
+
exports.homepageMethods = ['find', 'get', 'create', 'patch', 'remove'];
|
|
6
|
+
//# sourceMappingURL=homepage.shared.js.map
|