@cryptorobot.ai/client 1.30.1 → 1.32.0-dev.1051
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/services/affiliates/links/links.shared.js +1 -7
- package/lib/src/services/copilot/concerns/concerns.shared.js +1 -7
- package/lib/src/services/exchanges/arb-signals/arb-signals.class.d.ts +1 -0
- package/lib/src/services/exchanges/deposits/sync/sync.shared.js +7 -1
- package/lib/src/services/exchanges/ledger/ledger.shared.js +1 -7
- package/lib/src/services/homepage/homepage.shared.d.ts +1 -2
- package/lib/src/services/insights/etf-flow/etf-flow.shared.js +1 -7
- package/lib/src/services/series/balance/balance.shared.js +1 -7
- package/lib/src/services/strategies/indicators/indicators.schema.d.ts +12 -12
- package/lib/src/services/strategies/strategies.schema.d.ts +9 -9
- package/lib/src/services/tax/research/research.shared.js +1 -7
- package/lib/src/services/tax/sessions/sessions.shared.js +1 -7
- package/lib/src/services/traders/pods/api/api.schema.d.ts +12 -12
- package/lib/src/services/traders/pods/pods.schema.d.ts +15 -15
- package/lib/src/services/users/access/access.shared.js +1 -7
- package/package.json +1 -1
|
@@ -2,13 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.affiliatesLinksClient = exports.affiliatesLinksMethods = exports.affiliatesLinksPath = void 0;
|
|
4
4
|
exports.affiliatesLinksPath = 'affiliates/links';
|
|
5
|
-
exports.affiliatesLinksMethods = [
|
|
6
|
-
'find',
|
|
7
|
-
'get',
|
|
8
|
-
'create',
|
|
9
|
-
'patch',
|
|
10
|
-
'remove'
|
|
11
|
-
];
|
|
5
|
+
exports.affiliatesLinksMethods = ['find', 'get', 'create', 'patch', 'remove'];
|
|
12
6
|
const affiliatesLinksClient = (client) => {
|
|
13
7
|
const connection = client.get('connection');
|
|
14
8
|
client.use(exports.affiliatesLinksPath, connection.service(exports.affiliatesLinksPath), {
|
|
@@ -2,13 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.copilotConcernsClient = exports.copilotConcernsMethods = exports.copilotConcernsPath = void 0;
|
|
4
4
|
exports.copilotConcernsPath = 'copilot/concerns';
|
|
5
|
-
exports.copilotConcernsMethods = [
|
|
6
|
-
'find',
|
|
7
|
-
'get',
|
|
8
|
-
'create',
|
|
9
|
-
'patch',
|
|
10
|
-
'remove'
|
|
11
|
-
];
|
|
5
|
+
exports.copilotConcernsMethods = ['find', 'get', 'create', 'patch', 'remove'];
|
|
12
6
|
const copilotConcernsClient = (client) => {
|
|
13
7
|
const connection = client.get('connection');
|
|
14
8
|
client.use(exports.copilotConcernsPath, connection.service(exports.copilotConcernsPath), {
|
|
@@ -10,6 +10,7 @@ export interface ExchangesArbSignalsParams extends Params<ExchangesArbSignalsQue
|
|
|
10
10
|
export declare class ExchangesArbSignalsService<ServiceParams extends ExchangesArbSignalsParams = ExchangesArbSignalsParams> implements ServiceInterface<ExchangesArbSignals, ExchangesArbSignalsData, ServiceParams> {
|
|
11
11
|
options: ExchangesArbSignalsServiceOptions;
|
|
12
12
|
constructor(options: ExchangesArbSignalsServiceOptions);
|
|
13
|
+
private getLatestSignals;
|
|
13
14
|
find(_params?: ServiceParams): Promise<ExchangesArbSignals>;
|
|
14
15
|
create(_data: ExchangesArbSignalsData, params?: ServiceParams): Promise<any>;
|
|
15
16
|
remove(_id: NullableId, params?: ServiceParams): Promise<any>;
|
|
@@ -2,7 +2,13 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.exchangesDepositsSyncClient = exports.exchangesDepositsSyncMethods = exports.exchangesDepositsSyncPath = void 0;
|
|
4
4
|
exports.exchangesDepositsSyncPath = 'exchanges/deposits/sync';
|
|
5
|
-
exports.exchangesDepositsSyncMethods = [
|
|
5
|
+
exports.exchangesDepositsSyncMethods = [
|
|
6
|
+
'find',
|
|
7
|
+
'get',
|
|
8
|
+
'create',
|
|
9
|
+
'patch',
|
|
10
|
+
'remove'
|
|
11
|
+
];
|
|
6
12
|
const exchangesDepositsSyncClient = (client) => {
|
|
7
13
|
const connection = client.get('connection');
|
|
8
14
|
client.use(exports.exchangesDepositsSyncPath, connection.service(exports.exchangesDepositsSyncPath), {
|
|
@@ -2,13 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.exchangesLedgerClient = exports.exchangesLedgerMethods = exports.exchangesLedgerPath = void 0;
|
|
4
4
|
exports.exchangesLedgerPath = 'exchanges/ledger';
|
|
5
|
-
exports.exchangesLedgerMethods = [
|
|
6
|
-
'find',
|
|
7
|
-
'get',
|
|
8
|
-
'create',
|
|
9
|
-
'patch',
|
|
10
|
-
'remove'
|
|
11
|
-
];
|
|
5
|
+
exports.exchangesLedgerMethods = ['find', 'get', 'create', 'patch', 'remove'];
|
|
12
6
|
const exchangesLedgerClient = (client) => {
|
|
13
7
|
const connection = client.get('connection');
|
|
14
8
|
client.use(exports.exchangesLedgerPath, connection.service(exports.exchangesLedgerPath), {
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { ClientApplication } from '../../client';
|
|
2
|
-
import type { HomepageService } from './homepage.class';
|
|
3
|
-
import type { Homepage, HomepageData, HomepagePatch, HomepageQuery } from './homepage.class';
|
|
2
|
+
import type { Homepage, HomepageData, HomepagePatch, HomepageQuery, HomepageService } from './homepage.class';
|
|
4
3
|
export type { Homepage, HomepageData, HomepagePatch, HomepageQuery };
|
|
5
4
|
export type HomepageClientService = Pick<HomepageService, (typeof homepageMethods)[number]>;
|
|
6
5
|
export declare const homepagePath = "homepage";
|
|
@@ -2,13 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.insightsEtfFlowClient = exports.insightsEtfFlowMethods = exports.insightsEtfFlowPath = void 0;
|
|
4
4
|
exports.insightsEtfFlowPath = 'insights/etf-flow';
|
|
5
|
-
exports.insightsEtfFlowMethods = [
|
|
6
|
-
'find',
|
|
7
|
-
'get',
|
|
8
|
-
'create',
|
|
9
|
-
'patch',
|
|
10
|
-
'remove'
|
|
11
|
-
];
|
|
5
|
+
exports.insightsEtfFlowMethods = ['find', 'get', 'create', 'patch', 'remove'];
|
|
12
6
|
const insightsEtfFlowClient = (client) => {
|
|
13
7
|
const connection = client.get('connection');
|
|
14
8
|
client.use(exports.insightsEtfFlowPath, connection.service(exports.insightsEtfFlowPath), {
|
|
@@ -2,13 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.seriesBalanceClient = exports.seriesBalanceMethods = exports.seriesBalancePath = void 0;
|
|
4
4
|
exports.seriesBalancePath = 'series/balance';
|
|
5
|
-
exports.seriesBalanceMethods = [
|
|
6
|
-
'find',
|
|
7
|
-
'get',
|
|
8
|
-
'create',
|
|
9
|
-
'patch',
|
|
10
|
-
'remove'
|
|
11
|
-
];
|
|
5
|
+
exports.seriesBalanceMethods = ['find', 'get', 'create', 'patch', 'remove'];
|
|
12
6
|
const seriesBalanceClient = (client) => {
|
|
13
7
|
const connection = client.get('connection');
|
|
14
8
|
client.use(exports.seriesBalancePath, connection.service(exports.seriesBalancePath), {
|
|
@@ -23,9 +23,9 @@ export declare const strategiesIndicatorsSchema: import("@feathersjs/typebox").T
|
|
|
23
23
|
field: import("@feathersjs/typebox").TString<string>;
|
|
24
24
|
space: import("@feathersjs/typebox").TString<string>;
|
|
25
25
|
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"IntParameter">, import("@feathersjs/typebox").TLiteral<"DecimalParameter">, import("@feathersjs/typebox").TLiteral<"RealParameter">, import("@feathersjs/typebox").TLiteral<"BooleanParameter">, import("@feathersjs/typebox").TLiteral<"CategoricalParameter">]>;
|
|
26
|
-
min: import("@feathersjs/typebox").
|
|
27
|
-
max: import("@feathersjs/typebox").
|
|
28
|
-
default: import("@feathersjs/typebox").
|
|
26
|
+
min: import("@feathersjs/typebox").TNumber;
|
|
27
|
+
max: import("@feathersjs/typebox").TNumber;
|
|
28
|
+
default: import("@feathersjs/typebox").TNumber;
|
|
29
29
|
}>>>;
|
|
30
30
|
}>;
|
|
31
31
|
export type StrategiesIndicators = Static<typeof strategiesIndicatorsSchema>;
|
|
@@ -106,9 +106,9 @@ export declare const strategiesIndicatorsDataSchema: import("@feathersjs/typebox
|
|
|
106
106
|
field: import("@feathersjs/typebox").TString<string>;
|
|
107
107
|
space: import("@feathersjs/typebox").TString<string>;
|
|
108
108
|
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"IntParameter">, import("@feathersjs/typebox").TLiteral<"DecimalParameter">, import("@feathersjs/typebox").TLiteral<"RealParameter">, import("@feathersjs/typebox").TLiteral<"BooleanParameter">, import("@feathersjs/typebox").TLiteral<"CategoricalParameter">]>;
|
|
109
|
-
min: import("@feathersjs/typebox").
|
|
110
|
-
max: import("@feathersjs/typebox").
|
|
111
|
-
default: import("@feathersjs/typebox").
|
|
109
|
+
min: import("@feathersjs/typebox").TNumber;
|
|
110
|
+
max: import("@feathersjs/typebox").TNumber;
|
|
111
|
+
default: import("@feathersjs/typebox").TNumber;
|
|
112
112
|
}>>>;
|
|
113
113
|
}>, ["_id", "name", "alias", "hyperopt", "description", "options"]>;
|
|
114
114
|
export type StrategiesIndicatorsData = Static<typeof strategiesIndicatorsDataSchema>;
|
|
@@ -162,9 +162,9 @@ export declare const strategiesIndicatorsPatchSchema: import("@feathersjs/typebo
|
|
|
162
162
|
field: import("@feathersjs/typebox").TString<string>;
|
|
163
163
|
space: import("@feathersjs/typebox").TString<string>;
|
|
164
164
|
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"IntParameter">, import("@feathersjs/typebox").TLiteral<"DecimalParameter">, import("@feathersjs/typebox").TLiteral<"RealParameter">, import("@feathersjs/typebox").TLiteral<"BooleanParameter">, import("@feathersjs/typebox").TLiteral<"CategoricalParameter">]>;
|
|
165
|
-
min: import("@feathersjs/typebox").
|
|
166
|
-
max: import("@feathersjs/typebox").
|
|
167
|
-
default: import("@feathersjs/typebox").
|
|
165
|
+
min: import("@feathersjs/typebox").TNumber;
|
|
166
|
+
max: import("@feathersjs/typebox").TNumber;
|
|
167
|
+
default: import("@feathersjs/typebox").TNumber;
|
|
168
168
|
}>>>;
|
|
169
169
|
}>>;
|
|
170
170
|
export type StrategiesIndicatorsPatch = Static<typeof strategiesIndicatorsPatchSchema>;
|
|
@@ -218,9 +218,9 @@ export declare const strategiesIndicatorsQueryProperties: import("@feathersjs/ty
|
|
|
218
218
|
field: import("@feathersjs/typebox").TString<string>;
|
|
219
219
|
space: import("@feathersjs/typebox").TString<string>;
|
|
220
220
|
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"IntParameter">, import("@feathersjs/typebox").TLiteral<"DecimalParameter">, import("@feathersjs/typebox").TLiteral<"RealParameter">, import("@feathersjs/typebox").TLiteral<"BooleanParameter">, import("@feathersjs/typebox").TLiteral<"CategoricalParameter">]>;
|
|
221
|
-
min: import("@feathersjs/typebox").
|
|
222
|
-
max: import("@feathersjs/typebox").
|
|
223
|
-
default: import("@feathersjs/typebox").
|
|
221
|
+
min: import("@feathersjs/typebox").TNumber;
|
|
222
|
+
max: import("@feathersjs/typebox").TNumber;
|
|
223
|
+
default: import("@feathersjs/typebox").TNumber;
|
|
224
224
|
}>>>;
|
|
225
225
|
}>, ["_id", "name"]>;
|
|
226
226
|
export declare const strategiesIndicatorsQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
@@ -107,9 +107,9 @@ export declare const strategiesSchema: import("@feathersjs/typebox").TObject<{
|
|
|
107
107
|
field: import("@feathersjs/typebox").TString<string>;
|
|
108
108
|
space: import("@feathersjs/typebox").TString<string>;
|
|
109
109
|
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"IntParameter">, import("@feathersjs/typebox").TLiteral<"DecimalParameter">, import("@feathersjs/typebox").TLiteral<"RealParameter">, import("@feathersjs/typebox").TLiteral<"BooleanParameter">, import("@feathersjs/typebox").TLiteral<"CategoricalParameter">]>;
|
|
110
|
-
min: import("@feathersjs/typebox").
|
|
111
|
-
max: import("@feathersjs/typebox").
|
|
112
|
-
default: import("@feathersjs/typebox").
|
|
110
|
+
min: import("@feathersjs/typebox").TNumber;
|
|
111
|
+
max: import("@feathersjs/typebox").TNumber;
|
|
112
|
+
default: import("@feathersjs/typebox").TNumber;
|
|
113
113
|
}>>>;
|
|
114
114
|
}>>>;
|
|
115
115
|
code: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
@@ -2581,9 +2581,9 @@ export declare const strategiesDataSchema: import("@feathersjs/typebox").TPick<i
|
|
|
2581
2581
|
field: import("@feathersjs/typebox").TString<string>;
|
|
2582
2582
|
space: import("@feathersjs/typebox").TString<string>;
|
|
2583
2583
|
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"IntParameter">, import("@feathersjs/typebox").TLiteral<"DecimalParameter">, import("@feathersjs/typebox").TLiteral<"RealParameter">, import("@feathersjs/typebox").TLiteral<"BooleanParameter">, import("@feathersjs/typebox").TLiteral<"CategoricalParameter">]>;
|
|
2584
|
-
min: import("@feathersjs/typebox").
|
|
2585
|
-
max: import("@feathersjs/typebox").
|
|
2586
|
-
default: import("@feathersjs/typebox").
|
|
2584
|
+
min: import("@feathersjs/typebox").TNumber;
|
|
2585
|
+
max: import("@feathersjs/typebox").TNumber;
|
|
2586
|
+
default: import("@feathersjs/typebox").TNumber;
|
|
2587
2587
|
}>>>;
|
|
2588
2588
|
}>>>;
|
|
2589
2589
|
code: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
@@ -4231,9 +4231,9 @@ export declare const strategiesPatchSchema: import("@feathersjs/typebox").TParti
|
|
|
4231
4231
|
field: import("@feathersjs/typebox").TString<string>;
|
|
4232
4232
|
space: import("@feathersjs/typebox").TString<string>;
|
|
4233
4233
|
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"IntParameter">, import("@feathersjs/typebox").TLiteral<"DecimalParameter">, import("@feathersjs/typebox").TLiteral<"RealParameter">, import("@feathersjs/typebox").TLiteral<"BooleanParameter">, import("@feathersjs/typebox").TLiteral<"CategoricalParameter">]>;
|
|
4234
|
-
min: import("@feathersjs/typebox").
|
|
4235
|
-
max: import("@feathersjs/typebox").
|
|
4236
|
-
default: import("@feathersjs/typebox").
|
|
4234
|
+
min: import("@feathersjs/typebox").TNumber;
|
|
4235
|
+
max: import("@feathersjs/typebox").TNumber;
|
|
4236
|
+
default: import("@feathersjs/typebox").TNumber;
|
|
4237
4237
|
}>>>;
|
|
4238
4238
|
}>>>;
|
|
4239
4239
|
code: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
@@ -2,13 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.taxResearchClient = exports.taxResearchMethods = exports.taxResearchPath = void 0;
|
|
4
4
|
exports.taxResearchPath = 'tax/research';
|
|
5
|
-
exports.taxResearchMethods = [
|
|
6
|
-
'find',
|
|
7
|
-
'get',
|
|
8
|
-
'create',
|
|
9
|
-
'patch',
|
|
10
|
-
'remove'
|
|
11
|
-
];
|
|
5
|
+
exports.taxResearchMethods = ['find', 'get', 'create', 'patch', 'remove'];
|
|
12
6
|
const taxResearchClient = (client) => {
|
|
13
7
|
const connection = client.get('connection');
|
|
14
8
|
client.use(exports.taxResearchPath, connection.service(exports.taxResearchPath), {
|
|
@@ -2,13 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.taxSessionsClient = exports.taxSessionsMethods = exports.taxSessionsPath = void 0;
|
|
4
4
|
exports.taxSessionsPath = 'tax/sessions';
|
|
5
|
-
exports.taxSessionsMethods = [
|
|
6
|
-
'find',
|
|
7
|
-
'get',
|
|
8
|
-
'create',
|
|
9
|
-
'patch',
|
|
10
|
-
'remove'
|
|
11
|
-
];
|
|
5
|
+
exports.taxSessionsMethods = ['find', 'get', 'create', 'patch', 'remove'];
|
|
12
6
|
const taxSessionsClient = (client) => {
|
|
13
7
|
const connection = client.get('connection');
|
|
14
8
|
client.use(exports.taxSessionsPath, connection.service(exports.taxSessionsPath), {
|
|
@@ -1169,9 +1169,9 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
1169
1169
|
field: import("@feathersjs/typebox").TString<string>;
|
|
1170
1170
|
space: import("@feathersjs/typebox").TString<string>;
|
|
1171
1171
|
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"IntParameter">, import("@feathersjs/typebox").TLiteral<"DecimalParameter">, import("@feathersjs/typebox").TLiteral<"RealParameter">, import("@feathersjs/typebox").TLiteral<"BooleanParameter">, import("@feathersjs/typebox").TLiteral<"CategoricalParameter">]>;
|
|
1172
|
-
min: import("@feathersjs/typebox").
|
|
1173
|
-
max: import("@feathersjs/typebox").
|
|
1174
|
-
default: import("@feathersjs/typebox").
|
|
1172
|
+
min: import("@feathersjs/typebox").TNumber;
|
|
1173
|
+
max: import("@feathersjs/typebox").TNumber;
|
|
1174
|
+
default: import("@feathersjs/typebox").TNumber;
|
|
1175
1175
|
}>>>;
|
|
1176
1176
|
}>>>;
|
|
1177
1177
|
code: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
@@ -6868,9 +6868,9 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
6868
6868
|
field: import("@feathersjs/typebox").TString<string>;
|
|
6869
6869
|
space: import("@feathersjs/typebox").TString<string>;
|
|
6870
6870
|
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"IntParameter">, import("@feathersjs/typebox").TLiteral<"DecimalParameter">, import("@feathersjs/typebox").TLiteral<"RealParameter">, import("@feathersjs/typebox").TLiteral<"BooleanParameter">, import("@feathersjs/typebox").TLiteral<"CategoricalParameter">]>;
|
|
6871
|
-
min: import("@feathersjs/typebox").
|
|
6872
|
-
max: import("@feathersjs/typebox").
|
|
6873
|
-
default: import("@feathersjs/typebox").
|
|
6871
|
+
min: import("@feathersjs/typebox").TNumber;
|
|
6872
|
+
max: import("@feathersjs/typebox").TNumber;
|
|
6873
|
+
default: import("@feathersjs/typebox").TNumber;
|
|
6874
6874
|
}>>>;
|
|
6875
6875
|
}>>>;
|
|
6876
6876
|
code: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
@@ -10668,9 +10668,9 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
10668
10668
|
field: import("@feathersjs/typebox").TString<string>;
|
|
10669
10669
|
space: import("@feathersjs/typebox").TString<string>;
|
|
10670
10670
|
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"IntParameter">, import("@feathersjs/typebox").TLiteral<"DecimalParameter">, import("@feathersjs/typebox").TLiteral<"RealParameter">, import("@feathersjs/typebox").TLiteral<"BooleanParameter">, import("@feathersjs/typebox").TLiteral<"CategoricalParameter">]>;
|
|
10671
|
-
min: import("@feathersjs/typebox").
|
|
10672
|
-
max: import("@feathersjs/typebox").
|
|
10673
|
-
default: import("@feathersjs/typebox").
|
|
10671
|
+
min: import("@feathersjs/typebox").TNumber;
|
|
10672
|
+
max: import("@feathersjs/typebox").TNumber;
|
|
10673
|
+
default: import("@feathersjs/typebox").TNumber;
|
|
10674
10674
|
}>>>;
|
|
10675
10675
|
}>>>;
|
|
10676
10676
|
code: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
@@ -14468,9 +14468,9 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
14468
14468
|
field: import("@feathersjs/typebox").TString<string>;
|
|
14469
14469
|
space: import("@feathersjs/typebox").TString<string>;
|
|
14470
14470
|
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"IntParameter">, import("@feathersjs/typebox").TLiteral<"DecimalParameter">, import("@feathersjs/typebox").TLiteral<"RealParameter">, import("@feathersjs/typebox").TLiteral<"BooleanParameter">, import("@feathersjs/typebox").TLiteral<"CategoricalParameter">]>;
|
|
14471
|
-
min: import("@feathersjs/typebox").
|
|
14472
|
-
max: import("@feathersjs/typebox").
|
|
14473
|
-
default: import("@feathersjs/typebox").
|
|
14471
|
+
min: import("@feathersjs/typebox").TNumber;
|
|
14472
|
+
max: import("@feathersjs/typebox").TNumber;
|
|
14473
|
+
default: import("@feathersjs/typebox").TNumber;
|
|
14474
14474
|
}>>>;
|
|
14475
14475
|
}>>>;
|
|
14476
14476
|
code: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
@@ -664,9 +664,9 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
664
664
|
field: import("@feathersjs/typebox").TString<string>;
|
|
665
665
|
space: import("@feathersjs/typebox").TString<string>;
|
|
666
666
|
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"IntParameter">, import("@feathersjs/typebox").TLiteral<"DecimalParameter">, import("@feathersjs/typebox").TLiteral<"RealParameter">, import("@feathersjs/typebox").TLiteral<"BooleanParameter">, import("@feathersjs/typebox").TLiteral<"CategoricalParameter">]>;
|
|
667
|
-
min: import("@feathersjs/typebox").
|
|
668
|
-
max: import("@feathersjs/typebox").
|
|
669
|
-
default: import("@feathersjs/typebox").
|
|
667
|
+
min: import("@feathersjs/typebox").TNumber;
|
|
668
|
+
max: import("@feathersjs/typebox").TNumber;
|
|
669
|
+
default: import("@feathersjs/typebox").TNumber;
|
|
670
670
|
}>>>;
|
|
671
671
|
}>>>;
|
|
672
672
|
code: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
@@ -4827,9 +4827,9 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TInter
|
|
|
4827
4827
|
field: import("@feathersjs/typebox").TString<string>;
|
|
4828
4828
|
space: import("@feathersjs/typebox").TString<string>;
|
|
4829
4829
|
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"IntParameter">, import("@feathersjs/typebox").TLiteral<"DecimalParameter">, import("@feathersjs/typebox").TLiteral<"RealParameter">, import("@feathersjs/typebox").TLiteral<"BooleanParameter">, import("@feathersjs/typebox").TLiteral<"CategoricalParameter">]>;
|
|
4830
|
-
min: import("@feathersjs/typebox").
|
|
4831
|
-
max: import("@feathersjs/typebox").
|
|
4832
|
-
default: import("@feathersjs/typebox").
|
|
4830
|
+
min: import("@feathersjs/typebox").TNumber;
|
|
4831
|
+
max: import("@feathersjs/typebox").TNumber;
|
|
4832
|
+
default: import("@feathersjs/typebox").TNumber;
|
|
4833
4833
|
}>>>;
|
|
4834
4834
|
}>>>;
|
|
4835
4835
|
code: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
@@ -6213,9 +6213,9 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TInter
|
|
|
6213
6213
|
field: import("@feathersjs/typebox").TString<string>;
|
|
6214
6214
|
space: import("@feathersjs/typebox").TString<string>;
|
|
6215
6215
|
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"IntParameter">, import("@feathersjs/typebox").TLiteral<"DecimalParameter">, import("@feathersjs/typebox").TLiteral<"RealParameter">, import("@feathersjs/typebox").TLiteral<"BooleanParameter">, import("@feathersjs/typebox").TLiteral<"CategoricalParameter">]>;
|
|
6216
|
-
min: import("@feathersjs/typebox").
|
|
6217
|
-
max: import("@feathersjs/typebox").
|
|
6218
|
-
default: import("@feathersjs/typebox").
|
|
6216
|
+
min: import("@feathersjs/typebox").TNumber;
|
|
6217
|
+
max: import("@feathersjs/typebox").TNumber;
|
|
6218
|
+
default: import("@feathersjs/typebox").TNumber;
|
|
6219
6219
|
}>>>;
|
|
6220
6220
|
}>>>;
|
|
6221
6221
|
code: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
@@ -8989,9 +8989,9 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
8989
8989
|
field: import("@feathersjs/typebox").TString<string>;
|
|
8990
8990
|
space: import("@feathersjs/typebox").TString<string>;
|
|
8991
8991
|
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"IntParameter">, import("@feathersjs/typebox").TLiteral<"DecimalParameter">, import("@feathersjs/typebox").TLiteral<"RealParameter">, import("@feathersjs/typebox").TLiteral<"BooleanParameter">, import("@feathersjs/typebox").TLiteral<"CategoricalParameter">]>;
|
|
8992
|
-
min: import("@feathersjs/typebox").
|
|
8993
|
-
max: import("@feathersjs/typebox").
|
|
8994
|
-
default: import("@feathersjs/typebox").
|
|
8992
|
+
min: import("@feathersjs/typebox").TNumber;
|
|
8993
|
+
max: import("@feathersjs/typebox").TNumber;
|
|
8994
|
+
default: import("@feathersjs/typebox").TNumber;
|
|
8995
8995
|
}>>>;
|
|
8996
8996
|
}>>>;
|
|
8997
8997
|
code: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
@@ -11765,9 +11765,9 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
11765
11765
|
field: import("@feathersjs/typebox").TString<string>;
|
|
11766
11766
|
space: import("@feathersjs/typebox").TString<string>;
|
|
11767
11767
|
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"IntParameter">, import("@feathersjs/typebox").TLiteral<"DecimalParameter">, import("@feathersjs/typebox").TLiteral<"RealParameter">, import("@feathersjs/typebox").TLiteral<"BooleanParameter">, import("@feathersjs/typebox").TLiteral<"CategoricalParameter">]>;
|
|
11768
|
-
min: import("@feathersjs/typebox").
|
|
11769
|
-
max: import("@feathersjs/typebox").
|
|
11770
|
-
default: import("@feathersjs/typebox").
|
|
11768
|
+
min: import("@feathersjs/typebox").TNumber;
|
|
11769
|
+
max: import("@feathersjs/typebox").TNumber;
|
|
11770
|
+
default: import("@feathersjs/typebox").TNumber;
|
|
11771
11771
|
}>>>;
|
|
11772
11772
|
}>>>;
|
|
11773
11773
|
code: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
@@ -2,13 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.usersAccessClient = exports.usersAccessMethods = exports.usersAccessPath = void 0;
|
|
4
4
|
exports.usersAccessPath = 'users/access';
|
|
5
|
-
exports.usersAccessMethods = [
|
|
6
|
-
'find',
|
|
7
|
-
'get',
|
|
8
|
-
'create',
|
|
9
|
-
'patch',
|
|
10
|
-
'remove'
|
|
11
|
-
];
|
|
5
|
+
exports.usersAccessMethods = ['find', 'get', 'create', 'patch', 'remove'];
|
|
12
6
|
const usersAccessClient = (client) => {
|
|
13
7
|
const connection = client.get('connection');
|
|
14
8
|
client.use(exports.usersAccessPath, connection.service(exports.usersAccessPath), {
|