@cryptorobot.ai/client 1.29.0 → 1.30.1

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.
@@ -3,7 +3,7 @@ import { type HookContext } from '../../../../declarations';
3
3
  import type { TradersPodsEventsService } from './events.class';
4
4
  export declare const tradersPodsEventsSchema: import("@feathersjs/typebox").TObject<{
5
5
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6
- image: import("@feathersjs/typebox").TString<string>;
6
+ image: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
7
7
  event: import("@feathersjs/typebox").TString<string>;
8
8
  status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
9
9
  description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -18,20 +18,20 @@ export declare const tradersPodsEventsSchema: import("@feathersjs/typebox").TObj
18
18
  containerReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
19
19
  taskArn: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
20
20
  }>>;
21
- extraContent: import("@feathersjs/typebox").TString<string>;
21
+ extraContent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
22
22
  pair: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
23
23
  gain: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
24
24
  profit_amount: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
25
25
  close_date: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
26
26
  profit_ratio: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
27
27
  summary: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
28
- icon: import("@feathersjs/typebox").TString<string>;
28
+ icon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
29
29
  }>;
30
30
  export type TradersPodsEvents = Static<typeof tradersPodsEventsSchema>;
31
31
  export declare const tradersPodsEventsValidator: import("@feathersjs/schema").Validator<any, any>;
32
32
  export declare const tradersPodsEventsResolver: import("@feathersjs/schema").Resolver<{
33
33
  _id: string | {};
34
- image: string;
34
+ image?: string | undefined;
35
35
  event: string;
36
36
  status?: string | undefined;
37
37
  description?: string | undefined;
@@ -46,18 +46,18 @@ export declare const tradersPodsEventsResolver: import("@feathersjs/schema").Res
46
46
  containerReason?: string | undefined;
47
47
  taskArn?: string | undefined;
48
48
  } | undefined;
49
- extraContent: string;
49
+ extraContent?: string | undefined;
50
50
  pair?: string | undefined;
51
51
  gain?: string | undefined;
52
52
  profit_amount?: any;
53
53
  close_date?: any;
54
54
  profit_ratio?: any;
55
55
  summary?: any;
56
- icon: string;
56
+ icon?: string | undefined;
57
57
  }, HookContext<TradersPodsEventsService<import("./events.class").TradersPodsEventsParams>>>;
58
58
  export declare const tradersPodsEventsExternalResolver: import("@feathersjs/schema").Resolver<{
59
59
  _id: string | {};
60
- image: string;
60
+ image?: string | undefined;
61
61
  event: string;
62
62
  status?: string | undefined;
63
63
  description?: string | undefined;
@@ -72,18 +72,18 @@ export declare const tradersPodsEventsExternalResolver: import("@feathersjs/sche
72
72
  containerReason?: string | undefined;
73
73
  taskArn?: string | undefined;
74
74
  } | undefined;
75
- extraContent: string;
75
+ extraContent?: string | undefined;
76
76
  pair?: string | undefined;
77
77
  gain?: string | undefined;
78
78
  profit_amount?: any;
79
79
  close_date?: any;
80
80
  profit_ratio?: any;
81
81
  summary?: any;
82
- icon: string;
82
+ icon?: string | undefined;
83
83
  }, HookContext<TradersPodsEventsService<import("./events.class").TradersPodsEventsParams>>>;
84
84
  export declare const tradersPodsEventsDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
85
85
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
86
- image: import("@feathersjs/typebox").TString<string>;
86
+ image: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
87
87
  event: import("@feathersjs/typebox").TString<string>;
88
88
  status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
89
89
  description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -98,20 +98,20 @@ export declare const tradersPodsEventsDataSchema: import("@feathersjs/typebox").
98
98
  containerReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
99
99
  taskArn: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
100
100
  }>>;
101
- extraContent: import("@feathersjs/typebox").TString<string>;
101
+ extraContent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
102
102
  pair: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
103
103
  gain: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
104
104
  profit_amount: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
105
105
  close_date: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
106
106
  profit_ratio: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
107
107
  summary: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
108
- icon: import("@feathersjs/typebox").TString<string>;
109
- }>, ["event", "traderId", "createdAt", "updatedAt", "userId", "status", "description", "icon", "stopDetails"]>;
108
+ icon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
109
+ }>, ["event", "traderId", "createdAt", "updatedAt", "userId", "status", "description", "icon", "stopDetails", "summary", "image", "extraContent", "pair", "gain", "profit_amount", "close_date", "profit_ratio"]>;
110
110
  export type TradersPodsEventsData = Static<typeof tradersPodsEventsDataSchema>;
111
111
  export declare const tradersPodsEventsDataValidator: import("@feathersjs/schema").Validator<any, any>;
112
112
  export declare const tradersPodsEventsDataResolver: import("@feathersjs/schema").Resolver<{
113
113
  _id: string | {};
114
- image: string;
114
+ image?: string | undefined;
115
115
  event: string;
116
116
  status?: string | undefined;
117
117
  description?: string | undefined;
@@ -126,18 +126,18 @@ export declare const tradersPodsEventsDataResolver: import("@feathersjs/schema")
126
126
  containerReason?: string | undefined;
127
127
  taskArn?: string | undefined;
128
128
  } | undefined;
129
- extraContent: string;
129
+ extraContent?: string | undefined;
130
130
  pair?: string | undefined;
131
131
  gain?: string | undefined;
132
132
  profit_amount?: any;
133
133
  close_date?: any;
134
134
  profit_ratio?: any;
135
135
  summary?: any;
136
- icon: string;
136
+ icon?: string | undefined;
137
137
  }, HookContext<TradersPodsEventsService<import("./events.class").TradersPodsEventsParams>>>;
138
138
  export declare const tradersPodsEventsPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
139
139
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
140
- image: import("@feathersjs/typebox").TString<string>;
140
+ image: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
141
141
  event: import("@feathersjs/typebox").TString<string>;
142
142
  status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
143
143
  description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -152,20 +152,20 @@ export declare const tradersPodsEventsPatchSchema: import("@feathersjs/typebox")
152
152
  containerReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
153
153
  taskArn: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
154
154
  }>>;
155
- extraContent: import("@feathersjs/typebox").TString<string>;
155
+ extraContent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
156
156
  pair: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
157
157
  gain: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
158
158
  profit_amount: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
159
159
  close_date: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
160
160
  profit_ratio: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
161
161
  summary: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
162
- icon: import("@feathersjs/typebox").TString<string>;
162
+ icon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
163
163
  }>>;
164
164
  export type TradersPodsEventsPatch = Static<typeof tradersPodsEventsPatchSchema>;
165
165
  export declare const tradersPodsEventsPatchValidator: import("@feathersjs/schema").Validator<any, any>;
166
166
  export declare const tradersPodsEventsPatchResolver: import("@feathersjs/schema").Resolver<{
167
167
  _id: string | {};
168
- image: string;
168
+ image?: string | undefined;
169
169
  event: string;
170
170
  status?: string | undefined;
171
171
  description?: string | undefined;
@@ -180,18 +180,18 @@ export declare const tradersPodsEventsPatchResolver: import("@feathersjs/schema"
180
180
  containerReason?: string | undefined;
181
181
  taskArn?: string | undefined;
182
182
  } | undefined;
183
- extraContent: string;
183
+ extraContent?: string | undefined;
184
184
  pair?: string | undefined;
185
185
  gain?: string | undefined;
186
186
  profit_amount?: any;
187
187
  close_date?: any;
188
188
  profit_ratio?: any;
189
189
  summary?: any;
190
- icon: string;
190
+ icon?: string | undefined;
191
191
  }, HookContext<TradersPodsEventsService<import("./events.class").TradersPodsEventsParams>>>;
192
192
  export declare const tradersPodsEventsQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
193
193
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
194
- image: import("@feathersjs/typebox").TString<string>;
194
+ image: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
195
195
  event: import("@feathersjs/typebox").TString<string>;
196
196
  status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
197
197
  description: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -206,14 +206,14 @@ export declare const tradersPodsEventsQueryProperties: import("@feathersjs/typeb
206
206
  containerReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
207
207
  taskArn: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
208
208
  }>>;
209
- extraContent: import("@feathersjs/typebox").TString<string>;
209
+ extraContent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
210
210
  pair: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
211
211
  gain: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
212
212
  profit_amount: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
213
213
  close_date: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
214
214
  profit_ratio: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
215
215
  summary: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
216
- icon: import("@feathersjs/typebox").TString<string>;
216
+ icon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
217
217
  }>, ["_id", "event", "traderId", "userId", "createdAt", "event", "status", "profit_amount", "profit_ratio", "close_date", "gain"]>;
218
218
  export declare const tradersPodsEventsQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
219
219
  $limit: import("@feathersjs/typebox").TNumber;
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": "1.29.0",
4
+ "version": "1.30.1",
5
5
  "homepage": "",
6
6
  "keywords": [
7
7
  "cryptocurrency",