@cryptorobot.ai/client 0.0.19 → 0.0.26
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 +24 -16
- package/lib/hooks/bootstrap-user-telegram.d.ts +0 -2
|
@@ -6,24 +6,24 @@ export declare const strategiesTemplatesSchema: import("@feathersjs/typebox").TO
|
|
|
6
6
|
name: import("@feathersjs/typebox").TString<string>;
|
|
7
7
|
type: import("@feathersjs/typebox").TString<string>;
|
|
8
8
|
description: import("@feathersjs/typebox").TString<string>;
|
|
9
|
-
createdAt: import("@feathersjs/typebox").TAny
|
|
9
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
10
10
|
values: import("@feathersjs/typebox").TAny;
|
|
11
11
|
}>;
|
|
12
12
|
export type StrategiesTemplates = Static<typeof strategiesTemplatesSchema>;
|
|
13
13
|
export declare const strategiesTemplatesValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
14
14
|
export declare const strategiesTemplatesResolver: import("@feathersjs/schema").Resolver<{
|
|
15
15
|
_id?: string | {} | undefined;
|
|
16
|
+
createdAt?: any;
|
|
16
17
|
values: any;
|
|
17
18
|
name: string;
|
|
18
|
-
createdAt: any;
|
|
19
19
|
description: string;
|
|
20
20
|
type: string;
|
|
21
21
|
}, HookContext<StrategiesTemplatesService<import("./templates.class").StrategiesTemplatesParams>>>;
|
|
22
22
|
export declare const strategiesTemplatesExternalResolver: import("@feathersjs/schema").Resolver<{
|
|
23
23
|
_id?: string | {} | undefined;
|
|
24
|
+
createdAt?: any;
|
|
24
25
|
values: any;
|
|
25
26
|
name: string;
|
|
26
|
-
createdAt: any;
|
|
27
27
|
description: string;
|
|
28
28
|
type: string;
|
|
29
29
|
}, HookContext<StrategiesTemplatesService<import("./templates.class").StrategiesTemplatesParams>>>;
|
|
@@ -32,16 +32,16 @@ export declare const strategiesTemplatesDataSchema: import("@feathersjs/typebox"
|
|
|
32
32
|
name: import("@feathersjs/typebox").TString<string>;
|
|
33
33
|
type: import("@feathersjs/typebox").TString<string>;
|
|
34
34
|
description: import("@feathersjs/typebox").TString<string>;
|
|
35
|
-
createdAt: import("@feathersjs/typebox").TAny
|
|
35
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
36
36
|
values: import("@feathersjs/typebox").TAny;
|
|
37
|
-
}>, ["
|
|
37
|
+
}>, ["name", "type", "description", "values"]>;
|
|
38
38
|
export type StrategiesTemplatesData = Static<typeof strategiesTemplatesDataSchema>;
|
|
39
39
|
export declare const strategiesTemplatesDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
40
40
|
export declare const strategiesTemplatesDataResolver: import("@feathersjs/schema").Resolver<{
|
|
41
41
|
_id?: string | {} | undefined;
|
|
42
|
+
createdAt?: any;
|
|
42
43
|
values: any;
|
|
43
44
|
name: string;
|
|
44
|
-
createdAt: any;
|
|
45
45
|
description: string;
|
|
46
46
|
type: string;
|
|
47
47
|
}, HookContext<StrategiesTemplatesService<import("./templates.class").StrategiesTemplatesParams>>>;
|
|
@@ -50,16 +50,16 @@ export declare const strategiesTemplatesPatchSchema: import("@feathersjs/typebox
|
|
|
50
50
|
name: import("@feathersjs/typebox").TString<string>;
|
|
51
51
|
type: import("@feathersjs/typebox").TString<string>;
|
|
52
52
|
description: import("@feathersjs/typebox").TString<string>;
|
|
53
|
-
createdAt: import("@feathersjs/typebox").TAny
|
|
53
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
54
54
|
values: import("@feathersjs/typebox").TAny;
|
|
55
55
|
}>>;
|
|
56
56
|
export type StrategiesTemplatesPatch = Static<typeof strategiesTemplatesPatchSchema>;
|
|
57
57
|
export declare const strategiesTemplatesPatchValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
58
58
|
export declare const strategiesTemplatesPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
59
59
|
_id?: string | {} | undefined;
|
|
60
|
+
createdAt?: any;
|
|
60
61
|
values: any;
|
|
61
62
|
name: string;
|
|
62
|
-
createdAt: any;
|
|
63
63
|
description: string;
|
|
64
64
|
type: string;
|
|
65
65
|
}, HookContext<StrategiesTemplatesService<import("./templates.class").StrategiesTemplatesParams>>>;
|
|
@@ -68,7 +68,7 @@ export declare const strategiesTemplatesQueryProperties: import("@feathersjs/typ
|
|
|
68
68
|
name: import("@feathersjs/typebox").TString<string>;
|
|
69
69
|
type: import("@feathersjs/typebox").TString<string>;
|
|
70
70
|
description: import("@feathersjs/typebox").TString<string>;
|
|
71
|
-
createdAt: import("@feathersjs/typebox").TAny
|
|
71
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
72
72
|
values: import("@feathersjs/typebox").TAny;
|
|
73
73
|
}>, ["_id", "name"]>;
|
|
74
74
|
export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
@@ -86,8 +86,8 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
86
86
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
87
87
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
88
88
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
89
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
90
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
89
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
90
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
91
91
|
}>, import("@feathersjs/typebox").TObject<{
|
|
92
92
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
93
93
|
} | undefined>]>>]>>;
|
|
@@ -97,8 +97,8 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
97
97
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
98
98
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
99
99
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
100
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
101
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
100
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
101
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
102
102
|
}>, import("@feathersjs/typebox").TObject<{
|
|
103
103
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
104
104
|
} | undefined>]>>]>>;
|
|
@@ -110,8 +110,8 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
110
110
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
111
111
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
112
112
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
113
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
114
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
113
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
114
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
115
115
|
}>, import("@feathersjs/typebox").TObject<{
|
|
116
116
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
117
117
|
} | undefined>]>>]>>;
|
|
@@ -121,8 +121,8 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
121
121
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
122
122
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
123
123
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
124
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
125
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
124
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
125
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
126
126
|
}>, import("@feathersjs/typebox").TObject<{
|
|
127
127
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
128
128
|
} | undefined>]>>]>>;
|
|
@@ -135,8 +135,8 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
135
135
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
136
136
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
137
137
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
138
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
139
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
138
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
139
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
140
140
|
}>, import("@feathersjs/typebox").TObject<{
|
|
141
141
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
142
142
|
} | undefined>]>>]>>;
|
|
@@ -146,8 +146,8 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
146
146
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
147
147
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
148
148
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
149
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
150
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
149
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
150
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
151
151
|
}>, import("@feathersjs/typebox").TObject<{
|
|
152
152
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
153
153
|
} | undefined>]>>]>>;
|
|
@@ -159,8 +159,8 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
159
159
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
160
160
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
161
161
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
162
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
163
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
162
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
163
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
164
164
|
}>, import("@feathersjs/typebox").TObject<{
|
|
165
165
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
166
166
|
} | undefined>]>>]>>;
|
|
@@ -170,8 +170,8 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
170
170
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
171
171
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
172
172
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
173
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
174
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
173
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
174
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
175
175
|
}>, import("@feathersjs/typebox").TObject<{
|
|
176
176
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
177
177
|
} | undefined>]>>]>>;
|
|
@@ -193,8 +193,8 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
193
193
|
$lt: string;
|
|
194
194
|
$lte: string;
|
|
195
195
|
$ne: string;
|
|
196
|
-
$in: string[];
|
|
197
|
-
$nin: string[];
|
|
196
|
+
$in: string | string[];
|
|
197
|
+
$nin: string | string[];
|
|
198
198
|
} & {}> | undefined;
|
|
199
199
|
_id?: string | {} | Partial<{
|
|
200
200
|
$gt?: string | {} | undefined;
|
|
@@ -202,8 +202,8 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
202
202
|
$lt?: string | {} | undefined;
|
|
203
203
|
$lte?: string | {} | undefined;
|
|
204
204
|
$ne?: string | {} | undefined;
|
|
205
|
-
$in: (string | {})[];
|
|
206
|
-
$nin: (string | {})[];
|
|
205
|
+
$in: string | {} | (string | {})[];
|
|
206
|
+
$nin: string | {} | (string | {})[];
|
|
207
207
|
} & {}> | undefined;
|
|
208
208
|
} | {
|
|
209
209
|
$or: {
|
|
@@ -213,8 +213,8 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
213
213
|
$lt: string;
|
|
214
214
|
$lte: string;
|
|
215
215
|
$ne: string;
|
|
216
|
-
$in: string[];
|
|
217
|
-
$nin: string[];
|
|
216
|
+
$in: string | string[];
|
|
217
|
+
$nin: string | string[];
|
|
218
218
|
} & {}> | undefined;
|
|
219
219
|
_id?: string | {} | Partial<{
|
|
220
220
|
$gt?: string | {} | undefined;
|
|
@@ -222,8 +222,8 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
222
222
|
$lt?: string | {} | undefined;
|
|
223
223
|
$lte?: string | {} | undefined;
|
|
224
224
|
$ne?: string | {} | undefined;
|
|
225
|
-
$in: (string | {})[];
|
|
226
|
-
$nin: (string | {})[];
|
|
225
|
+
$in: string | {} | (string | {})[];
|
|
226
|
+
$nin: string | {} | (string | {})[];
|
|
227
227
|
} & {}> | undefined;
|
|
228
228
|
}[];
|
|
229
229
|
})[];
|
|
@@ -234,8 +234,8 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
234
234
|
$lt: string;
|
|
235
235
|
$lte: string;
|
|
236
236
|
$ne: string;
|
|
237
|
-
$in: string[];
|
|
238
|
-
$nin: string[];
|
|
237
|
+
$in: string | string[];
|
|
238
|
+
$nin: string | string[];
|
|
239
239
|
} & {}> | undefined;
|
|
240
240
|
_id?: string | {} | Partial<{
|
|
241
241
|
$gt?: string | {} | undefined;
|
|
@@ -243,8 +243,8 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
243
243
|
$lt?: string | {} | undefined;
|
|
244
244
|
$lte?: string | {} | undefined;
|
|
245
245
|
$ne?: string | {} | undefined;
|
|
246
|
-
$in: (string | {})[];
|
|
247
|
-
$nin: (string | {})[];
|
|
246
|
+
$in: string | {} | (string | {})[];
|
|
247
|
+
$nin: string | {} | (string | {})[];
|
|
248
248
|
} & {}> | undefined;
|
|
249
249
|
}[];
|
|
250
250
|
}> & {
|
|
@@ -254,8 +254,8 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
254
254
|
$lt: string;
|
|
255
255
|
$lte: string;
|
|
256
256
|
$ne: string;
|
|
257
|
-
$in: string[];
|
|
258
|
-
$nin: string[];
|
|
257
|
+
$in: string | string[];
|
|
258
|
+
$nin: string | string[];
|
|
259
259
|
} & {}> | undefined;
|
|
260
260
|
_id?: string | {} | Partial<{
|
|
261
261
|
$gt?: string | {} | undefined;
|
|
@@ -263,7 +263,7 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
263
263
|
$lt?: string | {} | undefined;
|
|
264
264
|
$lte?: string | {} | undefined;
|
|
265
265
|
$ne?: string | {} | undefined;
|
|
266
|
-
$in: (string | {})[];
|
|
267
|
-
$nin: (string | {})[];
|
|
266
|
+
$in: string | {} | (string | {})[];
|
|
267
|
+
$nin: string | {} | (string | {})[];
|
|
268
268
|
} & {}> | undefined;
|
|
269
269
|
} & {}, HookContext<StrategiesTemplatesService<import("./templates.class").StrategiesTemplatesParams>>>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { ChargeService } from 'feathers-stripe';
|
|
1
2
|
import type { Application } from '../../../declarations';
|
|
2
3
|
import { stripeChargesPath } from './charges.shared';
|
|
3
|
-
import { ChargeService } from 'feathers-stripe';
|
|
4
4
|
export * from './charges.class';
|
|
5
5
|
export declare const stripeCharges: (app: Application) => void;
|
|
6
6
|
declare module '../../../declarations' {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { Application } from '../../../declarations';
|
|
2
1
|
import { CustomerService } from 'feathers-stripe';
|
|
2
|
+
import type { Application } from '../../../declarations';
|
|
3
3
|
import { stripeCustomersPath } from './customers.shared';
|
|
4
4
|
export * from './customers.class';
|
|
5
5
|
export declare const stripeCustomers: (app: Application) => void;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { PaymentIntentService } from 'feathers-stripe';
|
|
1
2
|
import type { Application } from '../../../../declarations';
|
|
2
3
|
import { stripeCustomersPaymentintentPath } from './paymentintent.shared';
|
|
3
|
-
import { PaymentIntentService } from 'feathers-stripe';
|
|
4
4
|
export * from './paymentintent.class';
|
|
5
5
|
export declare const stripeCustomersPaymentintent: (app: Application) => void;
|
|
6
6
|
declare module '../../../../declarations' {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { PaymentMethodService } from 'feathers-stripe';
|
|
1
2
|
import type { Application } from '../../../../declarations';
|
|
2
3
|
import { stripeCustomersPaymentmethodsPath } from './paymentmethods.shared';
|
|
3
|
-
import { PaymentMethodService } from 'feathers-stripe';
|
|
4
4
|
export * from './paymentmethods.class';
|
|
5
5
|
export declare const stripeCustomersPaymentmethods: (app: Application) => void;
|
|
6
6
|
declare module '../../../../declarations' {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { ProductService } from 'feathers-stripe';
|
|
1
2
|
import type { Application } from '../../../declarations';
|
|
2
3
|
import { stripeProductsPath } from './products.shared';
|
|
3
|
-
import { ProductService } from 'feathers-stripe';
|
|
4
4
|
export * from './products.class';
|
|
5
5
|
export declare const stripeProducts: (app: Application) => void;
|
|
6
6
|
declare module '../../../declarations' {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Params } from '@feathersjs/feathers';
|
|
2
|
+
import type { MongoDBAdapterOptions, MongoDBAdapterParams } from '@feathersjs/mongodb';
|
|
2
3
|
import { MongoDBService } from '@feathersjs/mongodb';
|
|
3
|
-
import type { MongoDBAdapterParams, MongoDBAdapterOptions } from '@feathersjs/mongodb';
|
|
4
4
|
import type { Application } from '../../../../declarations';
|
|
5
5
|
import type { TradersPodsApi, TradersPodsApiData, TradersPodsApiPatch, TradersPodsApiQuery } from './api.schema';
|
|
6
6
|
export type { TradersPodsApi, TradersPodsApiData, TradersPodsApiPatch, TradersPodsApiQuery };
|