File tree 4 files changed +16
-16
lines changed
4 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ export interface Tag {
4
4
archiveId : string ;
5
5
status : string ;
6
6
type : string ;
7
- createdDt : Date ;
8
- updatedDt : Date ;
7
+ createdDt : string ;
8
+ updatedDt : string ;
9
9
}
10
10
11
11
export interface AccountStorage {
@@ -17,8 +17,8 @@ export interface AccountStorage {
17
17
filesTotal : string ;
18
18
status : string ;
19
19
type : string ;
20
- createdDt : Date ;
21
- updatedDt : Date ;
20
+ createdDt : string ;
21
+ updatedDt : string ;
22
22
}
23
23
24
24
export interface FeaturedArchive {
Original file line number Diff line number Diff line change @@ -23,20 +23,20 @@ export interface DirectiveTrigger {
23
23
directiveTriggerId : string ;
24
24
directiveId : string ;
25
25
type : string ;
26
- createdDt : Date ;
27
- updatedDt : Date ;
26
+ createdDt : string ;
27
+ updatedDt : string ;
28
28
}
29
29
30
30
export interface Directive {
31
31
directiveId : string ;
32
32
archiveId : string ;
33
33
type : string ;
34
- createdDt : Date ;
35
- updatedDt : Date ;
34
+ createdDt : string ;
35
+ updatedDt : string ;
36
36
trigger : DirectiveTrigger ;
37
37
steward ?: DirectiveSteward ;
38
38
note ?: string ;
39
- executionDt ?: Date ;
39
+ executionDt ?: string ;
40
40
}
41
41
42
42
export interface DirectiveExecutionResult {
Original file line number Diff line number Diff line change @@ -15,6 +15,6 @@ export interface LegacyContact {
15
15
accountId : string ;
16
16
name : string ;
17
17
email : string ;
18
- createdDt : Date ;
19
- updatedDt : Date ;
18
+ createdDt : string ;
19
+ updatedDt : string ;
20
20
}
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ export interface CreatePromoRequest {
4
4
code : string ;
5
5
storageInMB : number ;
6
6
expirationTimestamp : string ;
7
- totalUses : Date ;
7
+ totalUses : number ;
8
8
}
9
9
10
10
export interface Promo {
@@ -15,8 +15,8 @@ export interface Promo {
15
15
remainingUses : number ;
16
16
status : string ;
17
17
type : string ;
18
- createdAt : Date ;
19
- updatedAt : Date ;
18
+ createdAt : string ;
19
+ updatedAt : string ;
20
20
}
21
21
22
22
export interface PromoRow {
@@ -27,6 +27,6 @@ export interface PromoRow {
27
27
remainingUses : string ;
28
28
status : string ;
29
29
type : string ;
30
- createdAt : Date ;
31
- updatedAt : Date ;
30
+ createdAt : string ;
31
+ updatedAt : string ;
32
32
}
You can’t perform that action at this time.
0 commit comments