@cryptorobot.ai/client 0.0.30 → 0.0.31

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.
@@ -0,0 +1,2 @@
1
+ import type { HookContext } from '../declarations';
2
+ export declare const hyperoptTrackUsage: (context: HookContext) => Promise<void>;
@@ -13,6 +13,7 @@ export declare const messagesSchema: import("@feathersjs/typebox").TObject<{
13
13
  user: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
14
14
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
15
15
  googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
16
+ appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
16
17
  email: import("@feathersjs/typebox").TString<"email">;
17
18
  name: import("@feathersjs/typebox").TString<string>;
18
19
  password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -84,6 +85,7 @@ export declare const messagesResolver: import("@feathersjs/schema").Resolver<{
84
85
  country?: string | undefined;
85
86
  stripe?: any;
86
87
  googleId?: any;
88
+ appleId?: any;
87
89
  avatar?: string | undefined;
88
90
  title?: string | null | undefined;
89
91
  company?: string | null | undefined;
@@ -153,6 +155,7 @@ export declare const messagesExternalResolver: import("@feathersjs/schema").Reso
153
155
  country?: string | undefined;
154
156
  stripe?: any;
155
157
  googleId?: any;
158
+ appleId?: any;
156
159
  avatar?: string | undefined;
157
160
  title?: string | null | undefined;
158
161
  company?: string | null | undefined;
@@ -222,6 +225,7 @@ export declare const messagesDataSchema: import("@feathersjs/typebox").TPick<imp
222
225
  user: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
223
226
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
224
227
  googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
228
+ appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
225
229
  email: import("@feathersjs/typebox").TString<"email">;
226
230
  name: import("@feathersjs/typebox").TString<string>;
227
231
  password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -293,6 +297,7 @@ export declare const messagesDataResolver: import("@feathersjs/schema").Resolver
293
297
  country?: string | undefined;
294
298
  stripe?: any;
295
299
  googleId?: any;
300
+ appleId?: any;
296
301
  avatar?: string | undefined;
297
302
  title?: string | null | undefined;
298
303
  company?: string | null | undefined;
@@ -362,6 +367,7 @@ export declare const messagesPatchSchema: import("@feathersjs/typebox").TPartial
362
367
  user: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
363
368
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
364
369
  googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
370
+ appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
365
371
  email: import("@feathersjs/typebox").TString<"email">;
366
372
  name: import("@feathersjs/typebox").TString<string>;
367
373
  password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -433,6 +439,7 @@ export declare const messagesPatchResolver: import("@feathersjs/schema").Resolve
433
439
  country?: string | undefined;
434
440
  stripe?: any;
435
441
  googleId?: any;
442
+ appleId?: any;
436
443
  avatar?: string | undefined;
437
444
  title?: string | null | undefined;
438
445
  company?: string | null | undefined;
@@ -502,6 +509,7 @@ export declare const messagesQueryProperties: import("@feathersjs/typebox").TPic
502
509
  user: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
503
510
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
504
511
  googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
512
+ appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
505
513
  email: import("@feathersjs/typebox").TString<"email">;
506
514
  name: import("@feathersjs/typebox").TString<string>;
507
515
  password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -4,6 +4,7 @@ import type { UserService } from './users.class';
4
4
  export declare const userSchema: import("@feathersjs/typebox").TObject<{
5
5
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
6
6
  googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
7
+ appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
7
8
  email: import("@feathersjs/typebox").TString<"email">;
8
9
  name: import("@feathersjs/typebox").TString<string>;
9
10
  password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -68,6 +69,7 @@ export declare const userResolver: import("@feathersjs/schema").Resolver<{
68
69
  country?: string | undefined;
69
70
  stripe?: any;
70
71
  googleId?: any;
72
+ appleId?: any;
71
73
  avatar?: string | undefined;
72
74
  title?: string | null | undefined;
73
75
  company?: string | null | undefined;
@@ -123,6 +125,7 @@ export declare const userExternalResolver: import("@feathersjs/schema").Resolver
123
125
  country?: string | undefined;
124
126
  stripe?: any;
125
127
  googleId?: any;
128
+ appleId?: any;
126
129
  avatar?: string | undefined;
127
130
  title?: string | null | undefined;
128
131
  company?: string | null | undefined;
@@ -171,6 +174,7 @@ export declare const userExternalResolver: import("@feathersjs/schema").Resolver
171
174
  export declare const userDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
172
175
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
173
176
  googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
177
+ appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
174
178
  email: import("@feathersjs/typebox").TString<"email">;
175
179
  name: import("@feathersjs/typebox").TString<string>;
176
180
  password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -235,6 +239,7 @@ export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
235
239
  country?: string | undefined;
236
240
  stripe?: any;
237
241
  googleId?: any;
242
+ appleId?: any;
238
243
  avatar?: string | undefined;
239
244
  title?: string | null | undefined;
240
245
  company?: string | null | undefined;
@@ -283,6 +288,7 @@ export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
283
288
  export declare const userPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
284
289
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
285
290
  googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
291
+ appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
286
292
  email: import("@feathersjs/typebox").TString<"email">;
287
293
  name: import("@feathersjs/typebox").TString<string>;
288
294
  password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -347,6 +353,7 @@ export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
347
353
  country?: string | undefined;
348
354
  stripe?: any;
349
355
  googleId?: any;
356
+ appleId?: any;
350
357
  avatar?: string | undefined;
351
358
  title?: string | null | undefined;
352
359
  company?: string | null | undefined;
@@ -395,6 +402,7 @@ export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
395
402
  export declare const userQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
396
403
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
397
404
  googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
405
+ appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
398
406
  email: import("@feathersjs/typebox").TString<"email">;
399
407
  name: import("@feathersjs/typebox").TString<string>;
400
408
  password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cryptorobot.ai/client",
3
3
  "description": "A typed client for the cryptorobot.ai platform",
4
- "version": "0.0.30",
4
+ "version": "0.0.31",
5
5
  "homepage": "",
6
6
  "keywords": [
7
7
  "cryptocurrency",