@cryptorobot.ai/client 0.0.38 → 0.0.40
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/src/client.js +33 -3
- package/lib/src/services/agents/agents.class.d.ts +11 -0
- package/lib/src/services/agents/agents.d.ts +11 -0
- package/lib/src/services/agents/agents.schema.d.ts +2371 -0
- package/lib/src/services/agents/agents.shared.d.ts +13 -0
- package/lib/src/services/agents/agents.shared.js +13 -0
- package/lib/src/services/agents/prepare/prepare.class.d.ts +18 -0
- package/lib/src/services/agents/prepare/prepare.d.ts +11 -0
- package/lib/src/services/agents/prepare/prepare.schema.d.ts +285 -0
- package/lib/src/services/agents/prepare/prepare.shared.d.ts +13 -0
- package/lib/src/services/agents/prepare/prepare.shared.js +13 -0
- package/lib/src/services/agents/sessions/conversations/conversations.class.d.ts +11 -0
- package/lib/src/services/agents/sessions/conversations/conversations.d.ts +11 -0
- package/lib/src/services/agents/sessions/conversations/conversations.schema.d.ts +2561 -0
- package/lib/src/services/agents/sessions/conversations/conversations.shared.d.ts +13 -0
- package/lib/src/services/agents/sessions/conversations/conversations.shared.js +13 -0
- package/lib/src/services/agents/sessions/sessions.class.d.ts +11 -0
- package/lib/src/services/agents/sessions/sessions.d.ts +11 -0
- package/lib/src/services/agents/sessions/sessions.schema.d.ts +803 -0
- package/lib/src/services/agents/sessions/sessions.shared.d.ts +13 -0
- package/lib/src/services/agents/sessions/sessions.shared.js +13 -0
- package/lib/src/services/events/events.class.d.ts +11 -0
- package/lib/src/services/events/events.d.ts +11 -0
- package/lib/src/services/events/events.schema.d.ts +786 -0
- package/lib/src/services/events/events.shared.d.ts +13 -0
- package/lib/src/services/events/events.shared.js +13 -0
- package/lib/src/services/events/triggers/triggers.class.d.ts +11 -0
- package/lib/src/services/events/triggers/triggers.d.ts +11 -0
- package/lib/src/services/events/triggers/triggers.schema.d.ts +1582 -0
- package/lib/src/services/events/triggers/triggers.shared.d.ts +13 -0
- package/lib/src/services/events/triggers/triggers.shared.js +13 -0
- package/lib/src/services/events/types/types.class.d.ts +11 -0
- package/lib/src/services/events/types/types.d.ts +11 -0
- package/lib/src/services/events/types/types.schema.d.ts +688 -0
- package/lib/src/services/events/types/types.shared.d.ts +13 -0
- package/lib/src/services/events/types/types.shared.js +13 -0
- package/lib/src/services/exchanges/balance/balance.schema.d.ts +16 -16
- package/lib/src/services/exchanges/download/download.schema.d.ts +58 -17
- package/lib/src/services/exchanges/download/download.shared.d.ts +1 -1
- package/lib/src/services/exchanges/download/download.shared.js +1 -1
- package/lib/src/services/exchanges/download/webhooks/webhooks.schema.d.ts +4 -4
- package/lib/src/services/exchanges/exchanges.schema.d.ts +100 -100
- package/lib/src/services/exchanges/ohlcv/ohlcv.class.d.ts +19 -0
- package/lib/src/services/exchanges/ohlcv/ohlcv.d.ts +11 -0
- package/lib/src/services/exchanges/ohlcv/ohlcv.schema.d.ts +507 -0
- package/lib/src/services/exchanges/ohlcv/ohlcv.shared.d.ts +13 -0
- package/lib/src/services/exchanges/ohlcv/ohlcv.shared.js +13 -0
- package/lib/src/services/exchanges/ticker/ticker.schema.d.ts +68 -68
- package/lib/src/services/extensions/extensions.class.d.ts +11 -0
- package/lib/src/services/extensions/extensions.d.ts +11 -0
- package/lib/src/services/extensions/extensions.schema.d.ts +1275 -0
- package/lib/src/services/extensions/extensions.shared.d.ts +13 -0
- package/lib/src/services/extensions/extensions.shared.js +13 -0
- package/lib/src/services/keys/KeysService.d.ts +13 -0
- package/lib/src/services/keys/keys.class.d.ts +11 -0
- package/lib/src/services/keys/keys.d.ts +11 -0
- package/lib/src/services/keys/keys.schema.d.ts +719 -0
- package/lib/src/services/keys/keys.shared.d.ts +14 -0
- package/lib/src/services/keys/keys.shared.js +13 -0
- package/lib/src/services/messages/messages.schema.d.ts +64 -32
- package/lib/src/services/restricted/restricted.class.d.ts +26 -0
- package/lib/src/services/restricted/restricted.d.ts +21 -0
- package/lib/src/services/restricted/restricted.shared.d.ts +13 -0
- package/lib/src/services/restricted/restricted.shared.js +13 -0
- package/lib/src/services/strategies/backtest/backtest.schema.d.ts +127 -60
- package/lib/src/services/strategies/backtest/results/results.schema.d.ts +36 -36
- package/lib/src/services/strategies/generate/generate.class.d.ts +11 -0
- package/lib/src/services/strategies/generate/generate.d.ts +11 -0
- package/lib/src/services/strategies/generate/generate.schema.d.ts +429 -0
- package/lib/src/services/strategies/generate/generate.shared.d.ts +13 -0
- package/lib/src/services/strategies/generate/generate.shared.js +13 -0
- package/lib/src/services/strategies/hyperopt/hyperopt.schema.d.ts +16 -8
- package/lib/src/services/strategies/indicators/indicators.schema.d.ts +177 -97
- package/lib/src/services/strategies/indicators/talib/talib.class.d.ts +11 -0
- package/lib/src/services/strategies/indicators/talib/talib.d.ts +11 -0
- package/lib/src/services/strategies/indicators/talib/talib.schema.d.ts +443 -0
- package/lib/src/services/strategies/indicators/talib/talib.shared.d.ts +13 -0
- package/lib/src/services/strategies/indicators/talib/talib.shared.js +13 -0
- package/lib/src/services/strategies/strategies.schema.d.ts +2732 -327
- package/lib/src/services/strategies/templates/templates.schema.d.ts +2146 -16
- package/lib/src/services/tools/openapi/openapi.class.d.ts +34 -0
- package/lib/src/services/tools/openapi/openapi.d.ts +10 -0
- package/lib/src/services/tools/openapi/openapi.shared.d.ts +13 -0
- package/lib/src/services/tools/openapi/openapi.shared.js +13 -0
- package/lib/src/services/tools/tools.class.d.ts +11 -0
- package/lib/src/services/tools/tools.d.ts +11 -0
- package/lib/src/services/tools/tools.schema.d.ts +269 -0
- package/lib/src/services/tools/tools.shared.d.ts +13 -0
- package/lib/src/services/tools/tools.shared.js +13 -0
- package/lib/src/services/traders/pods/api/api.schema.d.ts +1650 -464
- package/lib/src/services/traders/pods/events/events.schema.d.ts +4 -4
- package/lib/src/services/traders/pods/pods.schema.d.ts +1539 -443
- package/lib/src/services/traders/traders.schema.d.ts +142 -142
- package/lib/src/services/users/users.class.d.ts +178 -3
- package/lib/src/services/users/users.schema.d.ts +123 -85
- package/lib/src/services/users/users.shared.d.ts +4 -3
- package/lib/src/services/users/users.shared.js +1 -1
- package/package.json +2 -3
- package/readme.md +1 -2
|
@@ -72,13 +72,10 @@ export declare const exchangesTickerResolver: import("@feathersjs/schema").Resol
|
|
|
72
72
|
apiKey?: string | null | undefined;
|
|
73
73
|
token?: string | undefined;
|
|
74
74
|
secret?: string | null | undefined;
|
|
75
|
+
error?: any;
|
|
75
76
|
_id?: string | {} | undefined;
|
|
76
|
-
avatar?: any;
|
|
77
77
|
createdAt?: any;
|
|
78
78
|
updatedAt?: any;
|
|
79
|
-
error?: any;
|
|
80
|
-
login?: string | undefined;
|
|
81
|
-
userId?: string | {} | undefined;
|
|
82
79
|
connected?: boolean | undefined;
|
|
83
80
|
downloaded?: {
|
|
84
81
|
updatedAt: any;
|
|
@@ -101,6 +98,7 @@ export declare const exchangesTickerResolver: import("@feathersjs/schema").Resol
|
|
|
101
98
|
} | undefined;
|
|
102
99
|
tags?: any;
|
|
103
100
|
background?: any;
|
|
101
|
+
avatar?: any;
|
|
104
102
|
blacklist?: {
|
|
105
103
|
left: string;
|
|
106
104
|
right: string;
|
|
@@ -113,9 +111,11 @@ export declare const exchangesTickerResolver: import("@feathersjs/schema").Resol
|
|
|
113
111
|
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
114
112
|
requiredCredentials?: any;
|
|
115
113
|
uid?: string | undefined;
|
|
114
|
+
login?: string | undefined;
|
|
116
115
|
twofa?: string | undefined;
|
|
117
116
|
privateKey?: string | undefined;
|
|
118
117
|
walletAddress?: string | undefined;
|
|
118
|
+
userId?: string | {} | undefined;
|
|
119
119
|
__v?: any;
|
|
120
120
|
} | undefined;
|
|
121
121
|
symbol: string;
|
|
@@ -131,13 +131,10 @@ export declare const exchangesTickerExternalResolver: import("@feathersjs/schema
|
|
|
131
131
|
apiKey?: string | null | undefined;
|
|
132
132
|
token?: string | undefined;
|
|
133
133
|
secret?: string | null | undefined;
|
|
134
|
+
error?: any;
|
|
134
135
|
_id?: string | {} | undefined;
|
|
135
|
-
avatar?: any;
|
|
136
136
|
createdAt?: any;
|
|
137
137
|
updatedAt?: any;
|
|
138
|
-
error?: any;
|
|
139
|
-
login?: string | undefined;
|
|
140
|
-
userId?: string | {} | undefined;
|
|
141
138
|
connected?: boolean | undefined;
|
|
142
139
|
downloaded?: {
|
|
143
140
|
updatedAt: any;
|
|
@@ -160,6 +157,7 @@ export declare const exchangesTickerExternalResolver: import("@feathersjs/schema
|
|
|
160
157
|
} | undefined;
|
|
161
158
|
tags?: any;
|
|
162
159
|
background?: any;
|
|
160
|
+
avatar?: any;
|
|
163
161
|
blacklist?: {
|
|
164
162
|
left: string;
|
|
165
163
|
right: string;
|
|
@@ -172,9 +170,11 @@ export declare const exchangesTickerExternalResolver: import("@feathersjs/schema
|
|
|
172
170
|
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
173
171
|
requiredCredentials?: any;
|
|
174
172
|
uid?: string | undefined;
|
|
173
|
+
login?: string | undefined;
|
|
175
174
|
twofa?: string | undefined;
|
|
176
175
|
privateKey?: string | undefined;
|
|
177
176
|
walletAddress?: string | undefined;
|
|
177
|
+
userId?: string | {} | undefined;
|
|
178
178
|
__v?: any;
|
|
179
179
|
} | undefined;
|
|
180
180
|
symbol: string;
|
|
@@ -251,13 +251,10 @@ export declare const exchangesTickerDataResolver: import("@feathersjs/schema").R
|
|
|
251
251
|
apiKey?: string | null | undefined;
|
|
252
252
|
token?: string | undefined;
|
|
253
253
|
secret?: string | null | undefined;
|
|
254
|
+
error?: any;
|
|
254
255
|
_id?: string | {} | undefined;
|
|
255
|
-
avatar?: any;
|
|
256
256
|
createdAt?: any;
|
|
257
257
|
updatedAt?: any;
|
|
258
|
-
error?: any;
|
|
259
|
-
login?: string | undefined;
|
|
260
|
-
userId?: string | {} | undefined;
|
|
261
258
|
connected?: boolean | undefined;
|
|
262
259
|
downloaded?: {
|
|
263
260
|
updatedAt: any;
|
|
@@ -280,6 +277,7 @@ export declare const exchangesTickerDataResolver: import("@feathersjs/schema").R
|
|
|
280
277
|
} | undefined;
|
|
281
278
|
tags?: any;
|
|
282
279
|
background?: any;
|
|
280
|
+
avatar?: any;
|
|
283
281
|
blacklist?: {
|
|
284
282
|
left: string;
|
|
285
283
|
right: string;
|
|
@@ -292,9 +290,11 @@ export declare const exchangesTickerDataResolver: import("@feathersjs/schema").R
|
|
|
292
290
|
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
293
291
|
requiredCredentials?: any;
|
|
294
292
|
uid?: string | undefined;
|
|
293
|
+
login?: string | undefined;
|
|
295
294
|
twofa?: string | undefined;
|
|
296
295
|
privateKey?: string | undefined;
|
|
297
296
|
walletAddress?: string | undefined;
|
|
297
|
+
userId?: string | {} | undefined;
|
|
298
298
|
__v?: any;
|
|
299
299
|
} | undefined;
|
|
300
300
|
symbol: string;
|
|
@@ -371,13 +371,10 @@ export declare const exchangesTickerPatchResolver: import("@feathersjs/schema").
|
|
|
371
371
|
apiKey?: string | null | undefined;
|
|
372
372
|
token?: string | undefined;
|
|
373
373
|
secret?: string | null | undefined;
|
|
374
|
+
error?: any;
|
|
374
375
|
_id?: string | {} | undefined;
|
|
375
|
-
avatar?: any;
|
|
376
376
|
createdAt?: any;
|
|
377
377
|
updatedAt?: any;
|
|
378
|
-
error?: any;
|
|
379
|
-
login?: string | undefined;
|
|
380
|
-
userId?: string | {} | undefined;
|
|
381
378
|
connected?: boolean | undefined;
|
|
382
379
|
downloaded?: {
|
|
383
380
|
updatedAt: any;
|
|
@@ -400,6 +397,7 @@ export declare const exchangesTickerPatchResolver: import("@feathersjs/schema").
|
|
|
400
397
|
} | undefined;
|
|
401
398
|
tags?: any;
|
|
402
399
|
background?: any;
|
|
400
|
+
avatar?: any;
|
|
403
401
|
blacklist?: {
|
|
404
402
|
left: string;
|
|
405
403
|
right: string;
|
|
@@ -412,9 +410,11 @@ export declare const exchangesTickerPatchResolver: import("@feathersjs/schema").
|
|
|
412
410
|
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
413
411
|
requiredCredentials?: any;
|
|
414
412
|
uid?: string | undefined;
|
|
413
|
+
login?: string | undefined;
|
|
415
414
|
twofa?: string | undefined;
|
|
416
415
|
privateKey?: string | undefined;
|
|
417
416
|
walletAddress?: string | undefined;
|
|
417
|
+
userId?: string | {} | undefined;
|
|
418
418
|
__v?: any;
|
|
419
419
|
} | undefined;
|
|
420
420
|
symbol: string;
|
|
@@ -484,12 +484,12 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
484
484
|
$skip: import("@feathersjs/typebox").TNumber;
|
|
485
485
|
$sort: import("@feathersjs/typebox").TObject<{
|
|
486
486
|
symbol: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
487
|
-
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
488
487
|
timestamp: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
488
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
489
489
|
exchange: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
490
490
|
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
491
491
|
}>;
|
|
492
|
-
$select: import("@feathersjs/typebox").TUnsafe<("symbol" | "
|
|
492
|
+
$select: import("@feathersjs/typebox").TUnsafe<("symbol" | "timestamp" | "_id" | "exchange" | "exchangeId")[]>;
|
|
493
493
|
$and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
494
494
|
symbol: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
495
495
|
$gt: import("@feathersjs/typebox").TString<string>;
|
|
@@ -502,17 +502,6 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
502
502
|
}>, import("@feathersjs/typebox").TObject<{
|
|
503
503
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
504
504
|
} | undefined>]>>]>>;
|
|
505
|
-
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
506
|
-
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
507
|
-
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
508
|
-
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
509
|
-
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
510
|
-
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
511
|
-
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
512
|
-
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
513
|
-
}>, import("@feathersjs/typebox").TObject<{
|
|
514
|
-
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
515
|
-
} | undefined>]>>]>>;
|
|
516
505
|
timestamp: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
517
506
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
518
507
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -524,6 +513,17 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
524
513
|
}>, import("@feathersjs/typebox").TObject<{
|
|
525
514
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
526
515
|
} | undefined>]>>]>>;
|
|
516
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
517
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
518
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
519
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
520
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
521
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
522
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
523
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
524
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
525
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
526
|
+
} | undefined>]>>]>>;
|
|
527
527
|
exchange: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
528
528
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
529
529
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -559,17 +559,6 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
559
559
|
}>, import("@feathersjs/typebox").TObject<{
|
|
560
560
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
561
561
|
} | undefined>]>>]>>;
|
|
562
|
-
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
563
|
-
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
564
|
-
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
565
|
-
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
566
|
-
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
567
|
-
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
568
|
-
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
569
|
-
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
570
|
-
}>, import("@feathersjs/typebox").TObject<{
|
|
571
|
-
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
572
|
-
} | undefined>]>>]>>;
|
|
573
562
|
timestamp: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
574
563
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
575
564
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -581,6 +570,17 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
581
570
|
}>, import("@feathersjs/typebox").TObject<{
|
|
582
571
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
583
572
|
} | undefined>]>>]>>;
|
|
573
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
574
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
575
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
576
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
577
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
578
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
579
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
580
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
581
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
582
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
583
|
+
} | undefined>]>>]>>;
|
|
584
584
|
exchange: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
585
585
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
586
586
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -617,17 +617,6 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
617
617
|
}>, import("@feathersjs/typebox").TObject<{
|
|
618
618
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
619
619
|
} | undefined>]>>]>>;
|
|
620
|
-
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
621
|
-
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
622
|
-
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
623
|
-
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
624
|
-
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
625
|
-
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
626
|
-
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
627
|
-
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
628
|
-
}>, import("@feathersjs/typebox").TObject<{
|
|
629
|
-
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
630
|
-
} | undefined>]>>]>>;
|
|
631
620
|
timestamp: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
632
621
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
633
622
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -639,6 +628,17 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
639
628
|
}>, import("@feathersjs/typebox").TObject<{
|
|
640
629
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
641
630
|
} | undefined>]>>]>>;
|
|
631
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
632
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
633
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
634
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
635
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
636
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
637
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
638
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
639
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
640
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
641
|
+
} | undefined>]>>]>>;
|
|
642
642
|
exchange: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
643
643
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
644
644
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -674,17 +674,6 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
674
674
|
}>, import("@feathersjs/typebox").TObject<{
|
|
675
675
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
676
676
|
} | undefined>]>>]>>;
|
|
677
|
-
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
678
|
-
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
679
|
-
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
680
|
-
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
681
|
-
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
682
|
-
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
683
|
-
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
684
|
-
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
685
|
-
}>, import("@feathersjs/typebox").TObject<{
|
|
686
|
-
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
687
|
-
} | undefined>]>>]>>;
|
|
688
677
|
timestamp: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
689
678
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
690
679
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -696,6 +685,17 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
696
685
|
}>, import("@feathersjs/typebox").TObject<{
|
|
697
686
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
698
687
|
} | undefined>]>>]>>;
|
|
688
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
689
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
690
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
691
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
692
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
693
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
694
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
695
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
696
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
697
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
698
|
+
} | undefined>]>>]>>;
|
|
699
699
|
exchange: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
700
700
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
701
701
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -726,12 +726,12 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
726
726
|
$skip: number;
|
|
727
727
|
$sort: {
|
|
728
728
|
symbol?: number | undefined;
|
|
729
|
-
_id?: number | undefined;
|
|
730
729
|
timestamp?: number | undefined;
|
|
730
|
+
_id?: number | undefined;
|
|
731
731
|
exchange?: number | undefined;
|
|
732
732
|
exchangeId?: number | undefined;
|
|
733
733
|
};
|
|
734
|
-
$select: ("symbol" | "
|
|
734
|
+
$select: ("symbol" | "timestamp" | "_id" | "exchange" | "exchangeId")[];
|
|
735
735
|
$and: ({
|
|
736
736
|
symbol?: string | Partial<{
|
|
737
737
|
$gt: string;
|
|
@@ -742,6 +742,7 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
742
742
|
$in: string | string[];
|
|
743
743
|
$nin: string | string[];
|
|
744
744
|
} & {}> | undefined;
|
|
745
|
+
timestamp?: any;
|
|
745
746
|
_id?: string | {} | Partial<{
|
|
746
747
|
$gt: string | {};
|
|
747
748
|
$gte: string | {};
|
|
@@ -751,7 +752,6 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
751
752
|
$in: string | {} | (string | {})[];
|
|
752
753
|
$nin: string | {} | (string | {})[];
|
|
753
754
|
} & {}> | undefined;
|
|
754
|
-
timestamp?: any;
|
|
755
755
|
exchange?: string | Partial<{
|
|
756
756
|
$gt?: string | undefined;
|
|
757
757
|
$gte?: string | undefined;
|
|
@@ -773,6 +773,7 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
773
773
|
$in: string | string[];
|
|
774
774
|
$nin: string | string[];
|
|
775
775
|
} & {}> | undefined;
|
|
776
|
+
timestamp?: any;
|
|
776
777
|
_id?: string | {} | Partial<{
|
|
777
778
|
$gt: string | {};
|
|
778
779
|
$gte: string | {};
|
|
@@ -782,7 +783,6 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
782
783
|
$in: string | {} | (string | {})[];
|
|
783
784
|
$nin: string | {} | (string | {})[];
|
|
784
785
|
} & {}> | undefined;
|
|
785
|
-
timestamp?: any;
|
|
786
786
|
exchange?: string | Partial<{
|
|
787
787
|
$gt?: string | undefined;
|
|
788
788
|
$gte?: string | undefined;
|
|
@@ -805,6 +805,7 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
805
805
|
$in: string | string[];
|
|
806
806
|
$nin: string | string[];
|
|
807
807
|
} & {}> | undefined;
|
|
808
|
+
timestamp?: any;
|
|
808
809
|
_id?: string | {} | Partial<{
|
|
809
810
|
$gt: string | {};
|
|
810
811
|
$gte: string | {};
|
|
@@ -814,7 +815,6 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
814
815
|
$in: string | {} | (string | {})[];
|
|
815
816
|
$nin: string | {} | (string | {})[];
|
|
816
817
|
} & {}> | undefined;
|
|
817
|
-
timestamp?: any;
|
|
818
818
|
exchange?: string | Partial<{
|
|
819
819
|
$gt?: string | undefined;
|
|
820
820
|
$gte?: string | undefined;
|
|
@@ -836,6 +836,7 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
836
836
|
$in: string | string[];
|
|
837
837
|
$nin: string | string[];
|
|
838
838
|
} & {}> | undefined;
|
|
839
|
+
timestamp?: any;
|
|
839
840
|
_id?: string | {} | Partial<{
|
|
840
841
|
$gt: string | {};
|
|
841
842
|
$gte: string | {};
|
|
@@ -845,7 +846,6 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
845
846
|
$in: string | {} | (string | {})[];
|
|
846
847
|
$nin: string | {} | (string | {})[];
|
|
847
848
|
} & {}> | undefined;
|
|
848
|
-
timestamp?: any;
|
|
849
849
|
exchange?: string | Partial<{
|
|
850
850
|
$gt?: string | undefined;
|
|
851
851
|
$gte?: string | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { Params } from '@feathersjs/feathers';
|
|
2
|
+
import type { MongoDBAdapterOptions, MongoDBAdapterParams } from '@feathersjs/mongodb';
|
|
3
|
+
import { MongoDBService } from '@feathersjs/mongodb';
|
|
4
|
+
import type { Application } from '../../declarations';
|
|
5
|
+
import type { Extensions, ExtensionsData, ExtensionsPatch, ExtensionsQuery } from './extensions.schema';
|
|
6
|
+
export type { Extensions, ExtensionsData, ExtensionsPatch, ExtensionsQuery };
|
|
7
|
+
export interface ExtensionsParams extends MongoDBAdapterParams<ExtensionsQuery> {
|
|
8
|
+
}
|
|
9
|
+
export declare class ExtensionsService<ServiceParams extends Params = ExtensionsParams> extends MongoDBService<Extensions, ExtensionsData, ExtensionsParams, ExtensionsPatch> {
|
|
10
|
+
}
|
|
11
|
+
export declare const getOptions: (app: Application) => MongoDBAdapterOptions;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { Application } from '../../declarations';
|
|
2
|
+
import { ExtensionsService } from './extensions.class';
|
|
3
|
+
import { extensionsPath } from './extensions.shared';
|
|
4
|
+
export * from './extensions.class';
|
|
5
|
+
export * from './extensions.schema';
|
|
6
|
+
export declare const extensions: (app: Application) => void;
|
|
7
|
+
declare module '../../declarations' {
|
|
8
|
+
interface ServiceTypes {
|
|
9
|
+
[extensionsPath]: ExtensionsService;
|
|
10
|
+
}
|
|
11
|
+
}
|