@go-avro/avro-js 0.0.2-beta.32 → 0.0.2-beta.34
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/dist/types/api.d.ts +5 -4
- package/package.json +1 -1
package/dist/types/api.d.ts
CHANGED
|
@@ -197,8 +197,8 @@ export interface User {
|
|
|
197
197
|
companies: UserCompanyAssociation[] | null;
|
|
198
198
|
email: string | null;
|
|
199
199
|
phone_number: string | null;
|
|
200
|
-
time_created:
|
|
201
|
-
time_updated:
|
|
200
|
+
time_created: number;
|
|
201
|
+
time_updated: number | null;
|
|
202
202
|
can_send_emails: boolean | null;
|
|
203
203
|
payment_methods: PaymentMethod[];
|
|
204
204
|
autopay_payment_types: string[];
|
|
@@ -338,8 +338,8 @@ export interface Company {
|
|
|
338
338
|
teams: Team[];
|
|
339
339
|
emails: Email[];
|
|
340
340
|
skills: Skill[];
|
|
341
|
-
time_created:
|
|
342
|
-
time_updated:
|
|
341
|
+
time_created: number;
|
|
342
|
+
time_updated: number | null;
|
|
343
343
|
users: UserCompanyAssociation[];
|
|
344
344
|
use_client_side_customer_start_billing: boolean;
|
|
345
345
|
use_client_side_customer_stop_billing: boolean;
|
|
@@ -443,6 +443,7 @@ export interface Task {
|
|
|
443
443
|
created_by: UserCompanyAssociation | null;
|
|
444
444
|
overdueness: number | null;
|
|
445
445
|
overdue_time: number;
|
|
446
|
+
last_completed_event: _Event | null;
|
|
446
447
|
last_event: _Event | null;
|
|
447
448
|
delay: number;
|
|
448
449
|
skills: string[];
|