@astro-sports-developers/models 1.0.23 → 1.0.25
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Timestamp } from
|
|
1
|
+
import { Timestamp } from 'firebase/firestore';
|
|
2
2
|
export interface M_MediaFileV1 {
|
|
3
3
|
MF_ID?: string;
|
|
4
4
|
MF_ThumbnailPath?: string;
|
|
@@ -7,11 +7,94 @@ export interface M_MediaFileV1 {
|
|
|
7
7
|
MF_Type: 'image' | 'video';
|
|
8
8
|
MF_Size: number;
|
|
9
9
|
MF_ThumbnailURL?: string;
|
|
10
|
-
UR_Id?: string;
|
|
11
|
-
uid?: string;
|
|
12
|
-
G_Id?: string;
|
|
10
|
+
UR_Id?: string | null;
|
|
11
|
+
uid?: string | null;
|
|
12
|
+
G_Id?: string | null;
|
|
13
13
|
TOU_Id?: string;
|
|
14
14
|
ORG_Id?: string;
|
|
15
|
+
SA_Id: string;
|
|
16
|
+
SP_Id: string;
|
|
17
|
+
E_Id: string;
|
|
15
18
|
uidClient?: string;
|
|
16
19
|
timestamp?: Date | Timestamp;
|
|
20
|
+
version: 'v1';
|
|
21
|
+
}
|
|
22
|
+
export interface M_DELIiverablesV1 {
|
|
23
|
+
log: any[];
|
|
24
|
+
createdAt: Date | Timestamp;
|
|
25
|
+
deleted: boolean;
|
|
26
|
+
archived: boolean;
|
|
27
|
+
uid: string;
|
|
28
|
+
G_Id?: string;
|
|
29
|
+
PUR_Id?: string;
|
|
30
|
+
DELI_ClientUids?: string[];
|
|
31
|
+
DELI_Id?: string;
|
|
32
|
+
DELI_Type: 'Automatic' | 'Manual';
|
|
33
|
+
DELI_PublicStatus: 'Received' | 'Assigned' | 'In Progress' | 'Completed';
|
|
34
|
+
DELI_PrivateStatus: 'Assigned' | 'Sent' | 'Rejected' | 'Accepted' | 'Canceled';
|
|
35
|
+
DELI_AssigneeUid?: string;
|
|
36
|
+
DELI_AssigneeUR_id?: string;
|
|
37
|
+
DELI_AssigneeTier: string;
|
|
38
|
+
DELI_ETA: Date | Timestamp;
|
|
39
|
+
DELI_ManagerRating?: 1 | 2 | 3 | 4 | 5;
|
|
40
|
+
DELI_AssignedAt?: Date | Timestamp;
|
|
41
|
+
DELI_Delivered: boolean;
|
|
42
|
+
DELI_DeliveredAt?: Date | Timestamp;
|
|
43
|
+
DELI_FinalDeliverable: boolean;
|
|
44
|
+
DELI_GoogleDriveLink?: {
|
|
45
|
+
name: string;
|
|
46
|
+
url: string;
|
|
47
|
+
}[];
|
|
48
|
+
DELI_Paid: boolean;
|
|
49
|
+
DELI_PaidAt?: Date | Timestamp;
|
|
50
|
+
DELI_PaymentDetails?: string;
|
|
51
|
+
DELI_PMNotes: string;
|
|
52
|
+
DD_FileSlots: number;
|
|
53
|
+
DD_DeliveredFiles: M_MediaFileV1[];
|
|
54
|
+
DD_AcceptedFiles: M_MediaFileV1[];
|
|
55
|
+
DD_RejectedFiles: M_MediaFileV1[];
|
|
56
|
+
DELI_Name: string;
|
|
57
|
+
DELI_Description: string;
|
|
58
|
+
SA_Id?: string | null;
|
|
59
|
+
SP_Id?: string | null;
|
|
60
|
+
E_Id?: string | null;
|
|
61
|
+
version: 'v1';
|
|
62
|
+
}
|
|
63
|
+
export interface M_DELIiverablesV1Min {
|
|
64
|
+
uid: string;
|
|
65
|
+
G_Id?: string;
|
|
66
|
+
PUR_Id?: string;
|
|
67
|
+
DELI_Id?: string;
|
|
68
|
+
DELI_PublicStatus: 'Received' | 'Assigned' | 'In Progress' | 'Completed';
|
|
69
|
+
DELI_PrivateStatus: 'Assigned' | 'Sent' | 'Rejected' | 'Accepted' | 'Canceled';
|
|
70
|
+
DELI_AssigneeUid?: string;
|
|
71
|
+
DELI_AssigneeUR_id?: string;
|
|
72
|
+
DELI_ETA: number;
|
|
73
|
+
DELI_AssignedAt?: Date | Timestamp;
|
|
74
|
+
DELI_Delivered: boolean;
|
|
75
|
+
DELI_Paid: boolean;
|
|
76
|
+
DD_FileSlots: number;
|
|
77
|
+
DELI_Name: string;
|
|
78
|
+
DELI_Description: string;
|
|
79
|
+
}
|
|
80
|
+
export interface M_DeliverablesDocumentV1 {
|
|
81
|
+
log: any[];
|
|
82
|
+
createdAt: Date | Timestamp;
|
|
83
|
+
deleted: boolean;
|
|
84
|
+
version: 'V1';
|
|
85
|
+
DD_Id: string;
|
|
86
|
+
DD_Name: string;
|
|
87
|
+
DD_Description: string;
|
|
88
|
+
DD_FileSlots: number;
|
|
89
|
+
DD_FinalDeliverable: boolean;
|
|
90
|
+
DD_CostT1: number;
|
|
91
|
+
DD_MinutesToDeliverT1: number;
|
|
92
|
+
DD_CostT2: number;
|
|
93
|
+
DD_MinutesToDeliverT2: number;
|
|
94
|
+
DD_CostT3: number;
|
|
95
|
+
DD_MinutesToDeliverT3: number;
|
|
96
|
+
DD_CostT4: number;
|
|
97
|
+
DD_MinutesToDeliverT4: number;
|
|
98
|
+
DD_CostT5: number;
|
|
99
|
+
DD_MinutesToDeliverT5: number;
|
|
17
100
|
}
|
package/package.json
CHANGED