@cryptorobot.ai/client 1.28.3-dev.1046 → 1.28.3-dev.1048
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.
|
@@ -7,6 +7,7 @@ export type { UsersSessions, UsersSessionsData, UsersSessionsPatch, UsersSession
|
|
|
7
7
|
export interface UsersSessionsParams extends MongoDBAdapterParams<UsersSessionsQuery> {
|
|
8
8
|
}
|
|
9
9
|
export declare class UsersSessionsService<ServiceParams extends Params = UsersSessionsParams> extends MongoDBService<UsersSessions, UsersSessionsData, UsersSessionsParams, UsersSessionsPatch> {
|
|
10
|
+
private static readonly ENRICH_FIELDS;
|
|
10
11
|
upsertSession(data: UsersSessionsData, params?: ServiceParams): Promise<UsersSessions>;
|
|
11
12
|
}
|
|
12
13
|
export declare const getOptions: (app: Application) => MongoDBAdapterOptions;
|
|
@@ -1273,6 +1273,7 @@ export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
|
1273
1273
|
traderType?: string | undefined;
|
|
1274
1274
|
} | undefined;
|
|
1275
1275
|
}, HookContext<UserService>>;
|
|
1276
|
+
export declare const ADMIN_PATCH_ALLOWED_FIELDS: readonly ['blocked', 'isVerified', 'supervised'];
|
|
1276
1277
|
export declare const sanitizeExternalPatch: (context: any) => Promise<any>;
|
|
1277
1278
|
export declare const userQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
1278
1279
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|