repzo 1.0.103 → 1.0.104
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/index.d.ts +25 -27
- package/lib/index.js +2 -1
- package/lib/types/index.d.ts +107 -22
- package/package.json +1 -1
- package/src/types/index.ts +12 -12
package/lib/index.d.ts
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
import type {
|
|
2
|
-
Params,
|
|
3
|
-
Data,
|
|
4
2
|
Service,
|
|
5
3
|
Options,
|
|
6
4
|
Headers,
|
|
@@ -993,9 +991,9 @@ export default class Repzo {
|
|
|
993
991
|
status: Service.ActionLogs.Status;
|
|
994
992
|
error?: any;
|
|
995
993
|
start_time: number;
|
|
996
|
-
end_time?: number
|
|
997
|
-
total_time?: number
|
|
998
|
-
company_namespace?: NameSpaces
|
|
994
|
+
end_time?: number;
|
|
995
|
+
total_time?: number;
|
|
996
|
+
company_namespace?: NameSpaces;
|
|
999
997
|
body?: any;
|
|
1000
998
|
meta?: any;
|
|
1001
999
|
message: string;
|
|
@@ -1003,12 +1001,12 @@ export default class Repzo {
|
|
|
1003
1001
|
sync_id: string;
|
|
1004
1002
|
isOld: boolean;
|
|
1005
1003
|
superThis: Repzo;
|
|
1006
|
-
load(sync_id: string): Promise
|
|
1007
|
-
setStatus(status: Service.ActionLogs.Status, error?: any): any;
|
|
1008
|
-
setBody(body: any): any;
|
|
1009
|
-
setMeta(meta: any): any;
|
|
1010
|
-
commit(): Promise
|
|
1011
|
-
addDetail(detail: string, meta?: any): any;
|
|
1004
|
+
load(sync_id: string): Promise</*elided*/ any>;
|
|
1005
|
+
setStatus(status: Service.ActionLogs.Status, error?: any): /*elided*/ any;
|
|
1006
|
+
setBody(body: any): /*elided*/ any;
|
|
1007
|
+
setMeta(meta: any): /*elided*/ any;
|
|
1008
|
+
commit(): Promise</*elided*/ any>;
|
|
1009
|
+
addDetail(detail: string, meta?: any): /*elided*/ any;
|
|
1012
1010
|
};
|
|
1013
1011
|
};
|
|
1014
1012
|
static CommandLog: {
|
|
@@ -1026,8 +1024,8 @@ export default class Repzo {
|
|
|
1026
1024
|
status: Service.CommandLog.Status;
|
|
1027
1025
|
error?: any;
|
|
1028
1026
|
start_time: number;
|
|
1029
|
-
end_time?: number
|
|
1030
|
-
total_time?: number
|
|
1027
|
+
end_time?: number;
|
|
1028
|
+
total_time?: number;
|
|
1031
1029
|
company_namespace: NameSpaces;
|
|
1032
1030
|
body?: any;
|
|
1033
1031
|
sync_details: {
|
|
@@ -1047,24 +1045,24 @@ export default class Repzo {
|
|
|
1047
1045
|
details: Service.CommandLog.Detail[];
|
|
1048
1046
|
sync_id: string;
|
|
1049
1047
|
isOld: boolean;
|
|
1050
|
-
priority?: number
|
|
1048
|
+
priority?: number;
|
|
1051
1049
|
isPrioritized: boolean;
|
|
1052
1050
|
retries: number;
|
|
1053
|
-
queuedAt?: Date
|
|
1054
|
-
failedAt?: Date
|
|
1055
|
-
succeededAt?: Date
|
|
1056
|
-
skippedAt?: Date
|
|
1057
|
-
receivedAt?: Date
|
|
1058
|
-
processedAt?: Date
|
|
1051
|
+
queuedAt?: Date;
|
|
1052
|
+
failedAt?: Date;
|
|
1053
|
+
succeededAt?: Date;
|
|
1054
|
+
skippedAt?: Date;
|
|
1055
|
+
receivedAt?: Date;
|
|
1056
|
+
processedAt?: Date;
|
|
1059
1057
|
onGoing: boolean;
|
|
1060
|
-
trigger?: string
|
|
1058
|
+
trigger?: string;
|
|
1061
1059
|
superThis: Repzo;
|
|
1062
|
-
load(sync_id?: string, retries?: number): Promise
|
|
1063
|
-
setStatus(status: Service.CommandLog.Status, error?: any): any;
|
|
1064
|
-
setBody(body: any): any;
|
|
1065
|
-
setMeta(meta: any): any;
|
|
1066
|
-
commit(): Promise
|
|
1067
|
-
addDetail(detail: string, meta?: any): any;
|
|
1060
|
+
load(sync_id?: string, retries?: number): Promise</*elided*/ any>;
|
|
1061
|
+
setStatus(status: Service.CommandLog.Status, error?: any): /*elided*/ any;
|
|
1062
|
+
setBody(body: any): /*elided*/ any;
|
|
1063
|
+
setMeta(meta: any): /*elided*/ any;
|
|
1064
|
+
commit(): Promise</*elided*/ any>;
|
|
1065
|
+
addDetail(detail: string, meta?: any): /*elided*/ any;
|
|
1068
1066
|
};
|
|
1069
1067
|
};
|
|
1070
1068
|
patchAction: {
|
package/lib/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import axios from "axios";
|
|
2
2
|
import { v4 as uuid } from "uuid";
|
|
3
|
-
|
|
3
|
+
class Repzo {
|
|
4
4
|
constructor(apiKey, options) {
|
|
5
5
|
this._end_points = {
|
|
6
6
|
CLIENT: "client",
|
|
@@ -2703,3 +2703,4 @@ Repzo.CommandLog = class {
|
|
|
2703
2703
|
return this;
|
|
2704
2704
|
}
|
|
2705
2705
|
};
|
|
2706
|
+
export default Repzo;
|
package/lib/types/index.d.ts
CHANGED
|
@@ -200,21 +200,21 @@ export interface Build {
|
|
|
200
200
|
list: List[];
|
|
201
201
|
start_date?: number | undefined;
|
|
202
202
|
}
|
|
203
|
-
export
|
|
203
|
+
export type Calendar = CalendarWeekly | CalendarWeeklyGroup;
|
|
204
204
|
export interface Route {
|
|
205
205
|
disabled: boolean;
|
|
206
206
|
list: List[];
|
|
207
207
|
_id: string;
|
|
208
208
|
}
|
|
209
|
-
export
|
|
210
|
-
export
|
|
209
|
+
export type Priority = 0 | 1 | 2 | 3;
|
|
210
|
+
export type WorkorderStatus =
|
|
211
211
|
| "open"
|
|
212
212
|
| "done"
|
|
213
213
|
| "cancelled"
|
|
214
214
|
| "inprogress"
|
|
215
215
|
| "onhold";
|
|
216
|
-
export
|
|
217
|
-
export
|
|
216
|
+
export type Priority_human = "none" | "low" | "medium" | "high";
|
|
217
|
+
export type Day =
|
|
218
218
|
| "Sun"
|
|
219
219
|
| "Mon"
|
|
220
220
|
| "Tue"
|
|
@@ -223,7 +223,7 @@ export declare type Day =
|
|
|
223
223
|
| "Fri"
|
|
224
224
|
| "Sat"
|
|
225
225
|
| string;
|
|
226
|
-
export
|
|
226
|
+
export type FieldType =
|
|
227
227
|
| "Text"
|
|
228
228
|
| "String"
|
|
229
229
|
| "Date"
|
|
@@ -269,7 +269,7 @@ export interface CalendarWeeklyGroup {
|
|
|
269
269
|
note?: string;
|
|
270
270
|
_id: string;
|
|
271
271
|
}
|
|
272
|
-
export
|
|
272
|
+
export type Model =
|
|
273
273
|
| "quickConvertToPdf"
|
|
274
274
|
| "warehouses"
|
|
275
275
|
| "transfers"
|
|
@@ -294,7 +294,7 @@ export declare type Model =
|
|
|
294
294
|
| "activities"
|
|
295
295
|
| "bigReports"
|
|
296
296
|
| "admins";
|
|
297
|
-
export
|
|
297
|
+
export type DocumentTypes =
|
|
298
298
|
| "form"
|
|
299
299
|
| "quickConvertToPdf"
|
|
300
300
|
| "clients"
|
|
@@ -338,7 +338,7 @@ export declare type DocumentTypes =
|
|
|
338
338
|
| "retailExecutionPreset"
|
|
339
339
|
| "paymentMethod"
|
|
340
340
|
| "approvalRequest";
|
|
341
|
-
export
|
|
341
|
+
export type PrintTypes = "workorder" | "form" | "invoice" | "proforma";
|
|
342
342
|
export interface MediaDoc {
|
|
343
343
|
_id?: string;
|
|
344
344
|
media_id: string;
|
|
@@ -4702,6 +4702,91 @@ export declare namespace Service {
|
|
|
4702
4702
|
media_populated?: MediaPopulated;
|
|
4703
4703
|
cover_photo_populated?: MediaPopulated;
|
|
4704
4704
|
}
|
|
4705
|
+
export interface CreateBody {
|
|
4706
|
+
company_namespace: string[];
|
|
4707
|
+
creator?: AdminCreator | RepCreator | ClientCreator;
|
|
4708
|
+
name: string;
|
|
4709
|
+
local_name?: string;
|
|
4710
|
+
description?: string;
|
|
4711
|
+
disabled?: boolean;
|
|
4712
|
+
integration_meta?: {
|
|
4713
|
+
[key: string]: any;
|
|
4714
|
+
};
|
|
4715
|
+
status: WorkorderStatus;
|
|
4716
|
+
assets?: string[];
|
|
4717
|
+
asset_units?: string[];
|
|
4718
|
+
asset_part_units?: StringId[];
|
|
4719
|
+
workorder_categories: string[];
|
|
4720
|
+
due_date?: number;
|
|
4721
|
+
start_date?: number;
|
|
4722
|
+
client_location: string;
|
|
4723
|
+
priority?: Priority;
|
|
4724
|
+
priority_human?: Priority_human;
|
|
4725
|
+
client: string;
|
|
4726
|
+
client_name?: string;
|
|
4727
|
+
serial_number?: SerialNumber;
|
|
4728
|
+
workorder_request?: string;
|
|
4729
|
+
assigned_to?: string[];
|
|
4730
|
+
forms?: string[];
|
|
4731
|
+
calendars: Calendar[];
|
|
4732
|
+
parent_repeating_workorder?: string;
|
|
4733
|
+
due_date_day?: string;
|
|
4734
|
+
last_done_at: number;
|
|
4735
|
+
last_done_by: AdminCreator | RepCreator | ClientCreator;
|
|
4736
|
+
resolve_time: number;
|
|
4737
|
+
sync_id: string;
|
|
4738
|
+
opened_at: number;
|
|
4739
|
+
time: number;
|
|
4740
|
+
opened_by: AdminCreator | RepCreator | ClientCreator;
|
|
4741
|
+
}
|
|
4742
|
+
export interface UpdateBody {
|
|
4743
|
+
company_namespace: string[];
|
|
4744
|
+
_id?: string;
|
|
4745
|
+
creator?: AdminCreator | RepCreator | ClientCreator;
|
|
4746
|
+
editor?: AdminCreator | RepCreator | ClientCreator;
|
|
4747
|
+
name?: string;
|
|
4748
|
+
local_name?: string;
|
|
4749
|
+
description?: string;
|
|
4750
|
+
disabled?: boolean;
|
|
4751
|
+
integration_meta?: {
|
|
4752
|
+
[key: string]: any;
|
|
4753
|
+
};
|
|
4754
|
+
status: WorkorderStatus;
|
|
4755
|
+
assets?: string[];
|
|
4756
|
+
asset_units?: string[];
|
|
4757
|
+
asset_part_units?: StringId[];
|
|
4758
|
+
workorder_categories: string[];
|
|
4759
|
+
due_date?: number;
|
|
4760
|
+
start_date?: number;
|
|
4761
|
+
client_location: string;
|
|
4762
|
+
priority?: Priority;
|
|
4763
|
+
priority_human?: Priority_human;
|
|
4764
|
+
client: string;
|
|
4765
|
+
client_name?: string;
|
|
4766
|
+
workorder_request?: string;
|
|
4767
|
+
createdAt?: Date;
|
|
4768
|
+
updatedAt?: Date;
|
|
4769
|
+
serial_number?: SerialNumber;
|
|
4770
|
+
assigned_to?: string[];
|
|
4771
|
+
forms?: string[];
|
|
4772
|
+
time: number;
|
|
4773
|
+
is_overdue: boolean;
|
|
4774
|
+
opened_at: number;
|
|
4775
|
+
done_at: number;
|
|
4776
|
+
cancelled_at: number;
|
|
4777
|
+
inprogress_at: number;
|
|
4778
|
+
done_by?: AdminCreator | RepCreator | ClientCreator;
|
|
4779
|
+
cancelled_by?: AdminCreator | RepCreator | ClientCreator;
|
|
4780
|
+
opened_by?: AdminCreator | RepCreator | ClientCreator;
|
|
4781
|
+
inprogress_by?: AdminCreator | RepCreator | ClientCreator;
|
|
4782
|
+
calendars: Calendar[];
|
|
4783
|
+
parent_repeating_workorder?: string;
|
|
4784
|
+
due_date_day?: string;
|
|
4785
|
+
last_done_at: number;
|
|
4786
|
+
last_done_by: AdminCreator | RepCreator | ClientCreator;
|
|
4787
|
+
resolve_time: number;
|
|
4788
|
+
sync_id?: string;
|
|
4789
|
+
}
|
|
4705
4790
|
type SortingKeys =
|
|
4706
4791
|
| "due_date"
|
|
4707
4792
|
| "priority"
|
|
@@ -4783,7 +4868,7 @@ export declare namespace Service {
|
|
|
4783
4868
|
content?: string;
|
|
4784
4869
|
sync_id: string;
|
|
4785
4870
|
}
|
|
4786
|
-
interface CreateBody {
|
|
4871
|
+
export interface CreateBody {
|
|
4787
4872
|
document_id?: string[];
|
|
4788
4873
|
document_type: PrintTypes;
|
|
4789
4874
|
sync_id: string;
|
|
@@ -5056,7 +5141,7 @@ export declare namespace Service {
|
|
|
5056
5141
|
device_id?: string;
|
|
5057
5142
|
device_unique_id?: string;
|
|
5058
5143
|
}
|
|
5059
|
-
interface CreateBody {
|
|
5144
|
+
export interface CreateBody {
|
|
5060
5145
|
items?: Item.Body[];
|
|
5061
5146
|
return_items?: Item.Body[];
|
|
5062
5147
|
integration_meta?: {
|
|
@@ -5263,7 +5348,7 @@ export declare namespace Service {
|
|
|
5263
5348
|
implemented_by?: AdminCreator | RepCreator | ClientCreator;
|
|
5264
5349
|
business_day?: string;
|
|
5265
5350
|
}
|
|
5266
|
-
interface UpdateBody {
|
|
5351
|
+
export interface UpdateBody {
|
|
5267
5352
|
integration_meta?: {
|
|
5268
5353
|
[key: string]: any;
|
|
5269
5354
|
};
|
|
@@ -5832,7 +5917,7 @@ export declare namespace Service {
|
|
|
5832
5917
|
updatedAt: string;
|
|
5833
5918
|
__v: number;
|
|
5834
5919
|
}
|
|
5835
|
-
interface CreateBody {
|
|
5920
|
+
export interface CreateBody {
|
|
5836
5921
|
items: Item.Schema[];
|
|
5837
5922
|
return_items?: Item.Schema[];
|
|
5838
5923
|
integration_meta?: {
|
|
@@ -5935,7 +6020,7 @@ export declare namespace Service {
|
|
|
5935
6020
|
payment_charge?: number;
|
|
5936
6021
|
total_with_charges?: number;
|
|
5937
6022
|
}
|
|
5938
|
-
interface UpdateBody {
|
|
6023
|
+
export interface UpdateBody {
|
|
5939
6024
|
_id?: string;
|
|
5940
6025
|
items?: Item.Schema[];
|
|
5941
6026
|
return_items?: Item.Schema[];
|
|
@@ -6334,7 +6419,7 @@ export declare namespace Service {
|
|
|
6334
6419
|
updatedAt: string;
|
|
6335
6420
|
__v: number;
|
|
6336
6421
|
}
|
|
6337
|
-
interface CreateBody {
|
|
6422
|
+
export interface CreateBody {
|
|
6338
6423
|
amount: number;
|
|
6339
6424
|
client_id: string;
|
|
6340
6425
|
client_name: string;
|
|
@@ -6365,7 +6450,7 @@ export declare namespace Service {
|
|
|
6365
6450
|
visit_id?: string;
|
|
6366
6451
|
teams?: string[];
|
|
6367
6452
|
}
|
|
6368
|
-
interface UpdateBody {
|
|
6453
|
+
export interface UpdateBody {
|
|
6369
6454
|
integration_meta?: {
|
|
6370
6455
|
[key: string]: any;
|
|
6371
6456
|
};
|
|
@@ -6479,7 +6564,7 @@ export declare namespace Service {
|
|
|
6479
6564
|
updatedAt: string;
|
|
6480
6565
|
__v: number;
|
|
6481
6566
|
}
|
|
6482
|
-
interface CreateBody {
|
|
6567
|
+
export interface CreateBody {
|
|
6483
6568
|
amount: number;
|
|
6484
6569
|
client_id: string;
|
|
6485
6570
|
client_name: string;
|
|
@@ -6510,7 +6595,7 @@ export declare namespace Service {
|
|
|
6510
6595
|
visit_id?: string;
|
|
6511
6596
|
teams?: string[];
|
|
6512
6597
|
}
|
|
6513
|
-
interface UpdateBody {
|
|
6598
|
+
export interface UpdateBody {
|
|
6514
6599
|
integration_meta?: {
|
|
6515
6600
|
[key: string]: any;
|
|
6516
6601
|
};
|
|
@@ -7266,7 +7351,7 @@ export declare namespace Service {
|
|
|
7266
7351
|
updatedAt: string;
|
|
7267
7352
|
__v: number;
|
|
7268
7353
|
}
|
|
7269
|
-
interface CreateBody {
|
|
7354
|
+
export interface CreateBody {
|
|
7270
7355
|
serial_number?: SerialNumber;
|
|
7271
7356
|
time: number;
|
|
7272
7357
|
type?: TransferType;
|
|
@@ -11235,8 +11320,8 @@ export declare namespace Service {
|
|
|
11235
11320
|
}
|
|
11236
11321
|
}
|
|
11237
11322
|
}
|
|
11238
|
-
export
|
|
11239
|
-
export
|
|
11323
|
+
export type StringId = string;
|
|
11324
|
+
export type NameSpaces = string[];
|
|
11240
11325
|
export interface AdminOrRep {
|
|
11241
11326
|
_id: StringId;
|
|
11242
11327
|
name?: string;
|
|
@@ -11251,7 +11336,7 @@ interface ValidityCheck {
|
|
|
11251
11336
|
code: string;
|
|
11252
11337
|
}[];
|
|
11253
11338
|
}
|
|
11254
|
-
|
|
11339
|
+
type PopulatedMediaStorage = Pick<
|
|
11255
11340
|
Service.MediaStorage.MediaStorageSchema,
|
|
11256
11341
|
| "_id"
|
|
11257
11342
|
| "createdAt"
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -4736,7 +4736,7 @@ export namespace Service {
|
|
|
4736
4736
|
media_populated?: MediaPopulated;
|
|
4737
4737
|
cover_photo_populated?: MediaPopulated;
|
|
4738
4738
|
}
|
|
4739
|
-
interface CreateBody {
|
|
4739
|
+
export interface CreateBody {
|
|
4740
4740
|
company_namespace: string[];
|
|
4741
4741
|
creator?: AdminCreator | RepCreator | ClientCreator;
|
|
4742
4742
|
name: string;
|
|
@@ -4771,7 +4771,7 @@ export namespace Service {
|
|
|
4771
4771
|
time: number;
|
|
4772
4772
|
opened_by: AdminCreator | RepCreator | ClientCreator;
|
|
4773
4773
|
}
|
|
4774
|
-
interface UpdateBody {
|
|
4774
|
+
export interface UpdateBody {
|
|
4775
4775
|
company_namespace: string[];
|
|
4776
4776
|
_id?: string;
|
|
4777
4777
|
creator?: AdminCreator | RepCreator | ClientCreator;
|
|
@@ -4898,7 +4898,7 @@ export namespace Service {
|
|
|
4898
4898
|
content?: string;
|
|
4899
4899
|
sync_id: string;
|
|
4900
4900
|
}
|
|
4901
|
-
interface CreateBody {
|
|
4901
|
+
export interface CreateBody {
|
|
4902
4902
|
document_id?: string[];
|
|
4903
4903
|
document_type: PrintTypes;
|
|
4904
4904
|
sync_id: string;
|
|
@@ -5156,7 +5156,7 @@ export namespace Service {
|
|
|
5156
5156
|
device_id?: string;
|
|
5157
5157
|
device_unique_id?: string;
|
|
5158
5158
|
}
|
|
5159
|
-
interface CreateBody {
|
|
5159
|
+
export interface CreateBody {
|
|
5160
5160
|
items?: Item.Body[];
|
|
5161
5161
|
return_items?: Item.Body[];
|
|
5162
5162
|
integration_meta?: { [key: string]: any };
|
|
@@ -5346,7 +5346,7 @@ export namespace Service {
|
|
|
5346
5346
|
implemented_by?: AdminCreator | RepCreator | ClientCreator;
|
|
5347
5347
|
business_day?: string;
|
|
5348
5348
|
}
|
|
5349
|
-
interface UpdateBody {
|
|
5349
|
+
export interface UpdateBody {
|
|
5350
5350
|
integration_meta?: { [key: string]: any };
|
|
5351
5351
|
issue_date?: string;
|
|
5352
5352
|
}
|
|
@@ -5869,7 +5869,7 @@ export namespace Service {
|
|
|
5869
5869
|
updatedAt: string;
|
|
5870
5870
|
__v: number;
|
|
5871
5871
|
}
|
|
5872
|
-
interface CreateBody {
|
|
5872
|
+
export interface CreateBody {
|
|
5873
5873
|
items: Item.Schema[];
|
|
5874
5874
|
return_items?: Item.Schema[];
|
|
5875
5875
|
integration_meta?: { [key: string]: any };
|
|
@@ -5964,7 +5964,7 @@ export namespace Service {
|
|
|
5964
5964
|
payment_charge?: number;
|
|
5965
5965
|
total_with_charges?: number;
|
|
5966
5966
|
}
|
|
5967
|
-
interface UpdateBody {
|
|
5967
|
+
export interface UpdateBody {
|
|
5968
5968
|
_id?: string;
|
|
5969
5969
|
items?: Item.Schema[];
|
|
5970
5970
|
return_items?: Item.Schema[];
|
|
@@ -6333,7 +6333,7 @@ export namespace Service {
|
|
|
6333
6333
|
updatedAt: string;
|
|
6334
6334
|
__v: number;
|
|
6335
6335
|
}
|
|
6336
|
-
interface CreateBody {
|
|
6336
|
+
export interface CreateBody {
|
|
6337
6337
|
amount: number;
|
|
6338
6338
|
client_id: string;
|
|
6339
6339
|
client_name: string;
|
|
@@ -6362,7 +6362,7 @@ export namespace Service {
|
|
|
6362
6362
|
visit_id?: string;
|
|
6363
6363
|
teams?: string[];
|
|
6364
6364
|
}
|
|
6365
|
-
interface UpdateBody {
|
|
6365
|
+
export interface UpdateBody {
|
|
6366
6366
|
integration_meta?: { [key: string]: any };
|
|
6367
6367
|
}
|
|
6368
6368
|
|
|
@@ -6474,7 +6474,7 @@ export namespace Service {
|
|
|
6474
6474
|
updatedAt: string;
|
|
6475
6475
|
__v: number;
|
|
6476
6476
|
}
|
|
6477
|
-
interface CreateBody {
|
|
6477
|
+
export interface CreateBody {
|
|
6478
6478
|
amount: number;
|
|
6479
6479
|
client_id: string;
|
|
6480
6480
|
client_name: string;
|
|
@@ -6503,7 +6503,7 @@ export namespace Service {
|
|
|
6503
6503
|
visit_id?: string;
|
|
6504
6504
|
teams?: string[];
|
|
6505
6505
|
}
|
|
6506
|
-
interface UpdateBody {
|
|
6506
|
+
export interface UpdateBody {
|
|
6507
6507
|
integration_meta?: { [key: string]: any };
|
|
6508
6508
|
}
|
|
6509
6509
|
|
|
@@ -7246,7 +7246,7 @@ export namespace Service {
|
|
|
7246
7246
|
updatedAt: string;
|
|
7247
7247
|
__v: number;
|
|
7248
7248
|
}
|
|
7249
|
-
interface CreateBody {
|
|
7249
|
+
export interface CreateBody {
|
|
7250
7250
|
serial_number?: SerialNumber;
|
|
7251
7251
|
time: number;
|
|
7252
7252
|
type?: TransferType;
|