@go-avro/avro-js 0.0.2-beta.139 → 0.0.2-beta.140
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 +15 -3
- package/package.json +1 -1
package/dist/types/api.d.ts
CHANGED
|
@@ -506,6 +506,19 @@ export interface AdditionalCharge extends LineItem {
|
|
|
506
506
|
line_item_type: "ADDITIONAL_CHARGE";
|
|
507
507
|
time_updated: number | null;
|
|
508
508
|
}
|
|
509
|
+
export interface UserEvent {
|
|
510
|
+
id: string;
|
|
511
|
+
session_id: string;
|
|
512
|
+
event_id: string;
|
|
513
|
+
user_id: string | null;
|
|
514
|
+
team_id: string | null;
|
|
515
|
+
user_name: string | null;
|
|
516
|
+
team_name: string | null;
|
|
517
|
+
time_started: number | null;
|
|
518
|
+
time_ended: number | null;
|
|
519
|
+
time_created: number | null;
|
|
520
|
+
time_updated: number | null;
|
|
521
|
+
}
|
|
509
522
|
export interface _Event extends LineItem {
|
|
510
523
|
breaks: string[];
|
|
511
524
|
line_item_type: "EVENT";
|
|
@@ -513,7 +526,7 @@ export interface _Event extends LineItem {
|
|
|
513
526
|
external_notes: string;
|
|
514
527
|
proofs: string[];
|
|
515
528
|
tasks: string[];
|
|
516
|
-
time_ended: number;
|
|
529
|
+
time_ended: number | null;
|
|
517
530
|
time_started: number;
|
|
518
531
|
time_updated: number | null;
|
|
519
532
|
job_id: string;
|
|
@@ -522,8 +535,7 @@ export interface _Event extends LineItem {
|
|
|
522
535
|
bill_id: string;
|
|
523
536
|
billed_amount: number;
|
|
524
537
|
additional_charges: AdditionalCharge[];
|
|
525
|
-
|
|
526
|
-
team_id: string;
|
|
538
|
+
users: UserEvent[];
|
|
527
539
|
billed: boolean;
|
|
528
540
|
paid: boolean;
|
|
529
541
|
autostart: boolean;
|