@wix/portfolio 1.0.101 → 1.0.102
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/portfolio",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.102",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -18,12 +18,12 @@
|
|
|
18
18
|
"type-bundles"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@wix/portfolio_collections": "1.0.
|
|
22
|
-
"@wix/portfolio_portfolio-settings": "1.0.
|
|
23
|
-
"@wix/portfolio_project-in-collections": "1.0.
|
|
24
|
-
"@wix/portfolio_project-items": "1.0.
|
|
25
|
-
"@wix/portfolio_projects": "1.0.
|
|
26
|
-
"@wix/portfolio_synced-project": "1.0.
|
|
21
|
+
"@wix/portfolio_collections": "1.0.33",
|
|
22
|
+
"@wix/portfolio_portfolio-settings": "1.0.19",
|
|
23
|
+
"@wix/portfolio_project-in-collections": "1.0.33",
|
|
24
|
+
"@wix/portfolio_project-items": "1.0.37",
|
|
25
|
+
"@wix/portfolio_projects": "1.0.46",
|
|
26
|
+
"@wix/portfolio_synced-project": "1.0.16"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"glob": "^10.4.1",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"fqdn": ""
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
|
-
"falconPackageHash": "
|
|
51
|
+
"falconPackageHash": "b5eaa78e50570d6ad7398658c64bc9ddb789efab54bd806ccde61859"
|
|
52
52
|
}
|
|
@@ -507,12 +507,12 @@ interface Collection {
|
|
|
507
507
|
* Date and time the collection was created.
|
|
508
508
|
* @readonly
|
|
509
509
|
*/
|
|
510
|
-
_createdDate?: Date;
|
|
510
|
+
_createdDate?: Date | null;
|
|
511
511
|
/**
|
|
512
512
|
* Date and time the collection was updated.
|
|
513
513
|
* @readonly
|
|
514
514
|
*/
|
|
515
|
-
_updatedDate?: Date;
|
|
515
|
+
_updatedDate?: Date | null;
|
|
516
516
|
/**
|
|
517
517
|
* Collection's page URL and relative path. To receive this field in the response, pass the `includePageUrl` query parameter in the request.
|
|
518
518
|
* @readonly
|
|
@@ -632,7 +632,7 @@ interface DomainEvent$5 extends DomainEventBodyOneOf$5 {
|
|
|
632
632
|
/** ID of the entity associated with the event. */
|
|
633
633
|
entityId?: string;
|
|
634
634
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
635
|
-
eventTime?: Date;
|
|
635
|
+
eventTime?: Date | null;
|
|
636
636
|
/**
|
|
637
637
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
638
638
|
* (for example, GDPR).
|
|
@@ -661,7 +661,7 @@ interface EntityCreatedEvent$5 {
|
|
|
661
661
|
entity?: string;
|
|
662
662
|
}
|
|
663
663
|
interface RestoreInfo$5 {
|
|
664
|
-
deletedDate?: Date;
|
|
664
|
+
deletedDate?: Date | null;
|
|
665
665
|
}
|
|
666
666
|
interface EntityUpdatedEvent$5 {
|
|
667
667
|
/**
|
|
@@ -994,7 +994,7 @@ interface EventMetadata$3 extends BaseEventMetadata$3 {
|
|
|
994
994
|
/** ID of the entity associated with the event. */
|
|
995
995
|
entityId?: string;
|
|
996
996
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
997
|
-
eventTime?: Date;
|
|
997
|
+
eventTime?: Date | null;
|
|
998
998
|
/**
|
|
999
999
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
1000
1000
|
* (for example, GDPR).
|
|
@@ -1064,12 +1064,12 @@ interface UpdateCollection {
|
|
|
1064
1064
|
* Date and time the collection was created.
|
|
1065
1065
|
* @readonly
|
|
1066
1066
|
*/
|
|
1067
|
-
_createdDate?: Date;
|
|
1067
|
+
_createdDate?: Date | null;
|
|
1068
1068
|
/**
|
|
1069
1069
|
* Date and time the collection was updated.
|
|
1070
1070
|
* @readonly
|
|
1071
1071
|
*/
|
|
1072
|
-
_updatedDate?: Date;
|
|
1072
|
+
_updatedDate?: Date | null;
|
|
1073
1073
|
/**
|
|
1074
1074
|
* Collection's page URL and relative path. To receive this field in the response, pass the `includePageUrl` query parameter in the request.
|
|
1075
1075
|
* @readonly
|
|
@@ -1305,12 +1305,12 @@ interface PortfolioSettings {
|
|
|
1305
1305
|
* Date and time the portfolio settings were created.
|
|
1306
1306
|
* @readonly
|
|
1307
1307
|
*/
|
|
1308
|
-
_createdDate?: Date;
|
|
1308
|
+
_createdDate?: Date | null;
|
|
1309
1309
|
/**
|
|
1310
1310
|
* Date and time the portfolio settings were updated.
|
|
1311
1311
|
* @readonly
|
|
1312
1312
|
*/
|
|
1313
|
-
_updatedDate?: Date;
|
|
1313
|
+
_updatedDate?: Date | null;
|
|
1314
1314
|
}
|
|
1315
1315
|
interface ProjectItemSettings {
|
|
1316
1316
|
addItemDirection?: AddItemDirection;
|
|
@@ -1383,7 +1383,7 @@ interface DomainEvent$4 extends DomainEventBodyOneOf$4 {
|
|
|
1383
1383
|
/** ID of the entity associated with the event. */
|
|
1384
1384
|
entityId?: string;
|
|
1385
1385
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
1386
|
-
eventTime?: Date;
|
|
1386
|
+
eventTime?: Date | null;
|
|
1387
1387
|
/**
|
|
1388
1388
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
1389
1389
|
* (for example, GDPR).
|
|
@@ -1412,7 +1412,7 @@ interface EntityCreatedEvent$4 {
|
|
|
1412
1412
|
entity?: string;
|
|
1413
1413
|
}
|
|
1414
1414
|
interface RestoreInfo$4 {
|
|
1415
|
-
deletedDate?: Date;
|
|
1415
|
+
deletedDate?: Date | null;
|
|
1416
1416
|
}
|
|
1417
1417
|
interface EntityUpdatedEvent$4 {
|
|
1418
1418
|
/**
|
|
@@ -1576,12 +1576,12 @@ interface Item extends ItemMetadataOneOf {
|
|
|
1576
1576
|
* Date and time the item was created.
|
|
1577
1577
|
* @readonly
|
|
1578
1578
|
*/
|
|
1579
|
-
_createdDate?: Date;
|
|
1579
|
+
_createdDate?: Date | null;
|
|
1580
1580
|
/**
|
|
1581
1581
|
* Date and time the item was last updated.
|
|
1582
1582
|
* @readonly
|
|
1583
1583
|
*/
|
|
1584
|
-
_updatedDate?: Date;
|
|
1584
|
+
_updatedDate?: Date | null;
|
|
1585
1585
|
/** Project item link. */
|
|
1586
1586
|
link?: Link;
|
|
1587
1587
|
}
|
|
@@ -1994,7 +1994,7 @@ interface DomainEvent$3 extends DomainEventBodyOneOf$3 {
|
|
|
1994
1994
|
/** ID of the entity associated with the event. */
|
|
1995
1995
|
entityId?: string;
|
|
1996
1996
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
1997
|
-
eventTime?: Date;
|
|
1997
|
+
eventTime?: Date | null;
|
|
1998
1998
|
/**
|
|
1999
1999
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
2000
2000
|
* (for example, GDPR).
|
|
@@ -2023,7 +2023,7 @@ interface EntityCreatedEvent$3 {
|
|
|
2023
2023
|
entity?: string;
|
|
2024
2024
|
}
|
|
2025
2025
|
interface RestoreInfo$3 {
|
|
2026
|
-
deletedDate?: Date;
|
|
2026
|
+
deletedDate?: Date | null;
|
|
2027
2027
|
}
|
|
2028
2028
|
interface EntityUpdatedEvent$3 {
|
|
2029
2029
|
/**
|
|
@@ -2046,7 +2046,7 @@ interface DeletedProjectRestored$1 {
|
|
|
2046
2046
|
/** the id of the project that was restored */
|
|
2047
2047
|
projectId?: string;
|
|
2048
2048
|
/** timestamp for when the project was originally deleted. */
|
|
2049
|
-
deletionTimestamp?: Date;
|
|
2049
|
+
deletionTimestamp?: Date | null;
|
|
2050
2050
|
}
|
|
2051
2051
|
interface DuplicateProjectItemsRequest {
|
|
2052
2052
|
/** ID of the project containing the items to duplicate. */
|
|
@@ -2214,7 +2214,7 @@ interface EventMetadata$2 extends BaseEventMetadata$2 {
|
|
|
2214
2214
|
/** ID of the entity associated with the event. */
|
|
2215
2215
|
entityId?: string;
|
|
2216
2216
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
2217
|
-
eventTime?: Date;
|
|
2217
|
+
eventTime?: Date | null;
|
|
2218
2218
|
/**
|
|
2219
2219
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
2220
2220
|
* (for example, GDPR).
|
|
@@ -2288,12 +2288,12 @@ interface UpdateProjectItem {
|
|
|
2288
2288
|
* Date and time the item was created.
|
|
2289
2289
|
* @readonly
|
|
2290
2290
|
*/
|
|
2291
|
-
_createdDate?: Date;
|
|
2291
|
+
_createdDate?: Date | null;
|
|
2292
2292
|
/**
|
|
2293
2293
|
* Date and time the item was last updated.
|
|
2294
2294
|
* @readonly
|
|
2295
2295
|
*/
|
|
2296
|
-
_updatedDate?: Date;
|
|
2296
|
+
_updatedDate?: Date | null;
|
|
2297
2297
|
/** Project item link. */
|
|
2298
2298
|
link?: Link;
|
|
2299
2299
|
}
|
|
@@ -2524,12 +2524,12 @@ interface Project$1 extends ProjectCoverOneOf$1 {
|
|
|
2524
2524
|
* Date and time the project was created.
|
|
2525
2525
|
* @readonly
|
|
2526
2526
|
*/
|
|
2527
|
-
_createdDate?: Date;
|
|
2527
|
+
_createdDate?: Date | null;
|
|
2528
2528
|
/**
|
|
2529
2529
|
* Date and time the project was updated.
|
|
2530
2530
|
* @readonly
|
|
2531
2531
|
*/
|
|
2532
|
-
_updatedDate?: Date;
|
|
2532
|
+
_updatedDate?: Date | null;
|
|
2533
2533
|
/**
|
|
2534
2534
|
* Project's page URL and relative path. To receive this field in the response, pass the `includePageUrl` query parameter in the request.
|
|
2535
2535
|
* @readonly
|
|
@@ -2648,7 +2648,7 @@ interface ProjectSource$1 {
|
|
|
2648
2648
|
/** fields that are synced from external source, should be blocked to update in UI */
|
|
2649
2649
|
notEditableFields?: string[];
|
|
2650
2650
|
/** last date the project was synced */
|
|
2651
|
-
lastSync?: Date;
|
|
2651
|
+
lastSync?: Date | null;
|
|
2652
2652
|
}
|
|
2653
2653
|
declare enum SyncStatus$2 {
|
|
2654
2654
|
SYNCED = "SYNCED",
|
|
@@ -2940,7 +2940,7 @@ interface SiteDeleted$1 {
|
|
|
2940
2940
|
}
|
|
2941
2941
|
interface DeleteContext$1 {
|
|
2942
2942
|
/** When the meta site was deleted. */
|
|
2943
|
-
dateDeleted?: Date;
|
|
2943
|
+
dateDeleted?: Date | null;
|
|
2944
2944
|
/** A status. */
|
|
2945
2945
|
deleteStatus?: DeleteStatus$1;
|
|
2946
2946
|
/** A reason (flow). */
|
|
@@ -3126,7 +3126,7 @@ interface DeletedProjectRestored {
|
|
|
3126
3126
|
/** the id of the project that was restored */
|
|
3127
3127
|
projectId?: string;
|
|
3128
3128
|
/** timestamp for when the project was originally deleted. */
|
|
3129
|
-
deletionTimestamp?: Date;
|
|
3129
|
+
deletionTimestamp?: Date | null;
|
|
3130
3130
|
}
|
|
3131
3131
|
interface CreateProjectRequest {
|
|
3132
3132
|
/** Project to create. */
|
|
@@ -3376,7 +3376,7 @@ interface DomainEvent$2 extends DomainEventBodyOneOf$2 {
|
|
|
3376
3376
|
/** ID of the entity associated with the event. */
|
|
3377
3377
|
entityId?: string;
|
|
3378
3378
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
3379
|
-
eventTime?: Date;
|
|
3379
|
+
eventTime?: Date | null;
|
|
3380
3380
|
/**
|
|
3381
3381
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
3382
3382
|
* (for example, GDPR).
|
|
@@ -3405,7 +3405,7 @@ interface EntityCreatedEvent$2 {
|
|
|
3405
3405
|
entity?: string;
|
|
3406
3406
|
}
|
|
3407
3407
|
interface RestoreInfo$2 {
|
|
3408
|
-
deletedDate?: Date;
|
|
3408
|
+
deletedDate?: Date | null;
|
|
3409
3409
|
}
|
|
3410
3410
|
interface EntityUpdatedEvent$2 {
|
|
3411
3411
|
/**
|
|
@@ -3560,7 +3560,7 @@ interface EventMetadata$1 extends BaseEventMetadata$1 {
|
|
|
3560
3560
|
/** ID of the entity associated with the event. */
|
|
3561
3561
|
entityId?: string;
|
|
3562
3562
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
3563
|
-
eventTime?: Date;
|
|
3563
|
+
eventTime?: Date | null;
|
|
3564
3564
|
/**
|
|
3565
3565
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
3566
3566
|
* (for example, GDPR).
|
|
@@ -3636,12 +3636,12 @@ interface UpdateProject {
|
|
|
3636
3636
|
* Date and time the project was created.
|
|
3637
3637
|
* @readonly
|
|
3638
3638
|
*/
|
|
3639
|
-
_createdDate?: Date;
|
|
3639
|
+
_createdDate?: Date | null;
|
|
3640
3640
|
/**
|
|
3641
3641
|
* Date and time the project was updated.
|
|
3642
3642
|
* @readonly
|
|
3643
3643
|
*/
|
|
3644
|
-
_updatedDate?: Date;
|
|
3644
|
+
_updatedDate?: Date | null;
|
|
3645
3645
|
/**
|
|
3646
3646
|
* Project's page URL and relative path. To receive this field in the response, pass the `includePageUrl` query parameter in the request.
|
|
3647
3647
|
* @readonly
|
|
@@ -3994,12 +3994,12 @@ interface Project extends ProjectCoverOneOf {
|
|
|
3994
3994
|
* Date and time the project was created.
|
|
3995
3995
|
* @readonly
|
|
3996
3996
|
*/
|
|
3997
|
-
_createdDate?: Date;
|
|
3997
|
+
_createdDate?: Date | null;
|
|
3998
3998
|
/**
|
|
3999
3999
|
* Date and time the project was updated.
|
|
4000
4000
|
* @readonly
|
|
4001
4001
|
*/
|
|
4002
|
-
_updatedDate?: Date;
|
|
4002
|
+
_updatedDate?: Date | null;
|
|
4003
4003
|
/**
|
|
4004
4004
|
* Project's page URL and relative path. To receive this field in the response, pass the `includePageUrl` query parameter in the request.
|
|
4005
4005
|
* @readonly
|
|
@@ -4118,7 +4118,7 @@ interface ProjectSource {
|
|
|
4118
4118
|
/** fields that are synced from external source, should be blocked to update in UI */
|
|
4119
4119
|
notEditableFields?: string[];
|
|
4120
4120
|
/** last date the project was synced */
|
|
4121
|
-
lastSync?: Date;
|
|
4121
|
+
lastSync?: Date | null;
|
|
4122
4122
|
}
|
|
4123
4123
|
declare enum SyncStatus$1 {
|
|
4124
4124
|
SYNCED = "SYNCED",
|
|
@@ -4310,7 +4310,7 @@ interface DomainEvent$1 extends DomainEventBodyOneOf$1 {
|
|
|
4310
4310
|
/** ID of the entity associated with the event. */
|
|
4311
4311
|
entityId?: string;
|
|
4312
4312
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
4313
|
-
eventTime?: Date;
|
|
4313
|
+
eventTime?: Date | null;
|
|
4314
4314
|
/**
|
|
4315
4315
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
4316
4316
|
* (for example, GDPR).
|
|
@@ -4339,7 +4339,7 @@ interface EntityCreatedEvent$1 {
|
|
|
4339
4339
|
entity?: string;
|
|
4340
4340
|
}
|
|
4341
4341
|
interface RestoreInfo$1 {
|
|
4342
|
-
deletedDate?: Date;
|
|
4342
|
+
deletedDate?: Date | null;
|
|
4343
4343
|
}
|
|
4344
4344
|
interface EntityUpdatedEvent$1 {
|
|
4345
4345
|
/**
|
|
@@ -4485,7 +4485,7 @@ interface EventMetadata extends BaseEventMetadata {
|
|
|
4485
4485
|
/** ID of the entity associated with the event. */
|
|
4486
4486
|
entityId?: string;
|
|
4487
4487
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
4488
|
-
eventTime?: Date;
|
|
4488
|
+
eventTime?: Date | null;
|
|
4489
4489
|
/**
|
|
4490
4490
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
4491
4491
|
* (for example, GDPR).
|
|
@@ -4693,7 +4693,7 @@ interface SyncedProject {
|
|
|
4693
4693
|
* Represents the last time project was synced - returned only if external project is synced
|
|
4694
4694
|
* @readonly
|
|
4695
4695
|
*/
|
|
4696
|
-
lastSynced?: Date;
|
|
4696
|
+
lastSynced?: Date | null;
|
|
4697
4697
|
/** External Project synced status */
|
|
4698
4698
|
status?: SyncStatus;
|
|
4699
4699
|
}
|
|
@@ -4715,9 +4715,9 @@ interface SyncingProjectEvent {
|
|
|
4715
4715
|
/** Portfolio Project ID */
|
|
4716
4716
|
portfolioProjectId?: string;
|
|
4717
4717
|
/** When the first event was produced, and started syncing */
|
|
4718
|
-
firstProduceTimestamp?: Date;
|
|
4718
|
+
firstProduceTimestamp?: Date | null;
|
|
4719
4719
|
/** Project Revision */
|
|
4720
|
-
projectSyncRevision?: Date;
|
|
4720
|
+
projectSyncRevision?: Date | null;
|
|
4721
4721
|
}
|
|
4722
4722
|
interface SyncProjectPagingEvent {
|
|
4723
4723
|
/** Provider appDefId */
|
|
@@ -4729,7 +4729,7 @@ interface SyncProjectPagingEvent {
|
|
|
4729
4729
|
/** Next page cursor */
|
|
4730
4730
|
nextPageCursor?: string | null;
|
|
4731
4731
|
/** Project Revision */
|
|
4732
|
-
projectSyncRevision?: Date;
|
|
4732
|
+
projectSyncRevision?: Date | null;
|
|
4733
4733
|
}
|
|
4734
4734
|
interface SyncSiteEvent {
|
|
4735
4735
|
/** Portfolio instance id */
|
|
@@ -4848,7 +4848,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
4848
4848
|
/** ID of the entity associated with the event. */
|
|
4849
4849
|
entityId?: string;
|
|
4850
4850
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
4851
|
-
eventTime?: Date;
|
|
4851
|
+
eventTime?: Date | null;
|
|
4852
4852
|
/**
|
|
4853
4853
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
4854
4854
|
* (for example, GDPR).
|
|
@@ -4877,7 +4877,7 @@ interface EntityCreatedEvent {
|
|
|
4877
4877
|
entity?: string;
|
|
4878
4878
|
}
|
|
4879
4879
|
interface RestoreInfo {
|
|
4880
|
-
deletedDate?: Date;
|
|
4880
|
+
deletedDate?: Date | null;
|
|
4881
4881
|
}
|
|
4882
4882
|
interface EntityUpdatedEvent {
|
|
4883
4883
|
/**
|
|
@@ -5157,7 +5157,7 @@ interface SiteDeleted {
|
|
|
5157
5157
|
}
|
|
5158
5158
|
interface DeleteContext {
|
|
5159
5159
|
/** When the meta site was deleted. */
|
|
5160
|
-
dateDeleted?: Date;
|
|
5160
|
+
dateDeleted?: Date | null;
|
|
5161
5161
|
/** A status. */
|
|
5162
5162
|
deleteStatus?: DeleteStatus;
|
|
5163
5163
|
/** A reason (flow). */
|
|
@@ -507,12 +507,12 @@ interface Collection {
|
|
|
507
507
|
* Date and time the collection was created.
|
|
508
508
|
* @readonly
|
|
509
509
|
*/
|
|
510
|
-
_createdDate?: Date;
|
|
510
|
+
_createdDate?: Date | null;
|
|
511
511
|
/**
|
|
512
512
|
* Date and time the collection was updated.
|
|
513
513
|
* @readonly
|
|
514
514
|
*/
|
|
515
|
-
_updatedDate?: Date;
|
|
515
|
+
_updatedDate?: Date | null;
|
|
516
516
|
/**
|
|
517
517
|
* Collection's page URL and relative path. To receive this field in the response, pass the `includePageUrl` query parameter in the request.
|
|
518
518
|
* @readonly
|
|
@@ -632,7 +632,7 @@ interface DomainEvent$5 extends DomainEventBodyOneOf$5 {
|
|
|
632
632
|
/** ID of the entity associated with the event. */
|
|
633
633
|
entityId?: string;
|
|
634
634
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
635
|
-
eventTime?: Date;
|
|
635
|
+
eventTime?: Date | null;
|
|
636
636
|
/**
|
|
637
637
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
638
638
|
* (for example, GDPR).
|
|
@@ -661,7 +661,7 @@ interface EntityCreatedEvent$5 {
|
|
|
661
661
|
entity?: string;
|
|
662
662
|
}
|
|
663
663
|
interface RestoreInfo$5 {
|
|
664
|
-
deletedDate?: Date;
|
|
664
|
+
deletedDate?: Date | null;
|
|
665
665
|
}
|
|
666
666
|
interface EntityUpdatedEvent$5 {
|
|
667
667
|
/**
|
|
@@ -994,7 +994,7 @@ interface EventMetadata$3 extends BaseEventMetadata$3 {
|
|
|
994
994
|
/** ID of the entity associated with the event. */
|
|
995
995
|
entityId?: string;
|
|
996
996
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
997
|
-
eventTime?: Date;
|
|
997
|
+
eventTime?: Date | null;
|
|
998
998
|
/**
|
|
999
999
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
1000
1000
|
* (for example, GDPR).
|
|
@@ -1064,12 +1064,12 @@ interface UpdateCollection {
|
|
|
1064
1064
|
* Date and time the collection was created.
|
|
1065
1065
|
* @readonly
|
|
1066
1066
|
*/
|
|
1067
|
-
_createdDate?: Date;
|
|
1067
|
+
_createdDate?: Date | null;
|
|
1068
1068
|
/**
|
|
1069
1069
|
* Date and time the collection was updated.
|
|
1070
1070
|
* @readonly
|
|
1071
1071
|
*/
|
|
1072
|
-
_updatedDate?: Date;
|
|
1072
|
+
_updatedDate?: Date | null;
|
|
1073
1073
|
/**
|
|
1074
1074
|
* Collection's page URL and relative path. To receive this field in the response, pass the `includePageUrl` query parameter in the request.
|
|
1075
1075
|
* @readonly
|
|
@@ -1305,12 +1305,12 @@ interface PortfolioSettings {
|
|
|
1305
1305
|
* Date and time the portfolio settings were created.
|
|
1306
1306
|
* @readonly
|
|
1307
1307
|
*/
|
|
1308
|
-
_createdDate?: Date;
|
|
1308
|
+
_createdDate?: Date | null;
|
|
1309
1309
|
/**
|
|
1310
1310
|
* Date and time the portfolio settings were updated.
|
|
1311
1311
|
* @readonly
|
|
1312
1312
|
*/
|
|
1313
|
-
_updatedDate?: Date;
|
|
1313
|
+
_updatedDate?: Date | null;
|
|
1314
1314
|
}
|
|
1315
1315
|
interface ProjectItemSettings {
|
|
1316
1316
|
addItemDirection?: AddItemDirection;
|
|
@@ -1383,7 +1383,7 @@ interface DomainEvent$4 extends DomainEventBodyOneOf$4 {
|
|
|
1383
1383
|
/** ID of the entity associated with the event. */
|
|
1384
1384
|
entityId?: string;
|
|
1385
1385
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
1386
|
-
eventTime?: Date;
|
|
1386
|
+
eventTime?: Date | null;
|
|
1387
1387
|
/**
|
|
1388
1388
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
1389
1389
|
* (for example, GDPR).
|
|
@@ -1412,7 +1412,7 @@ interface EntityCreatedEvent$4 {
|
|
|
1412
1412
|
entity?: string;
|
|
1413
1413
|
}
|
|
1414
1414
|
interface RestoreInfo$4 {
|
|
1415
|
-
deletedDate?: Date;
|
|
1415
|
+
deletedDate?: Date | null;
|
|
1416
1416
|
}
|
|
1417
1417
|
interface EntityUpdatedEvent$4 {
|
|
1418
1418
|
/**
|
|
@@ -1576,12 +1576,12 @@ interface Item extends ItemMetadataOneOf {
|
|
|
1576
1576
|
* Date and time the item was created.
|
|
1577
1577
|
* @readonly
|
|
1578
1578
|
*/
|
|
1579
|
-
_createdDate?: Date;
|
|
1579
|
+
_createdDate?: Date | null;
|
|
1580
1580
|
/**
|
|
1581
1581
|
* Date and time the item was last updated.
|
|
1582
1582
|
* @readonly
|
|
1583
1583
|
*/
|
|
1584
|
-
_updatedDate?: Date;
|
|
1584
|
+
_updatedDate?: Date | null;
|
|
1585
1585
|
/** Project item link. */
|
|
1586
1586
|
link?: Link;
|
|
1587
1587
|
}
|
|
@@ -1994,7 +1994,7 @@ interface DomainEvent$3 extends DomainEventBodyOneOf$3 {
|
|
|
1994
1994
|
/** ID of the entity associated with the event. */
|
|
1995
1995
|
entityId?: string;
|
|
1996
1996
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
1997
|
-
eventTime?: Date;
|
|
1997
|
+
eventTime?: Date | null;
|
|
1998
1998
|
/**
|
|
1999
1999
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
2000
2000
|
* (for example, GDPR).
|
|
@@ -2023,7 +2023,7 @@ interface EntityCreatedEvent$3 {
|
|
|
2023
2023
|
entity?: string;
|
|
2024
2024
|
}
|
|
2025
2025
|
interface RestoreInfo$3 {
|
|
2026
|
-
deletedDate?: Date;
|
|
2026
|
+
deletedDate?: Date | null;
|
|
2027
2027
|
}
|
|
2028
2028
|
interface EntityUpdatedEvent$3 {
|
|
2029
2029
|
/**
|
|
@@ -2046,7 +2046,7 @@ interface DeletedProjectRestored$1 {
|
|
|
2046
2046
|
/** the id of the project that was restored */
|
|
2047
2047
|
projectId?: string;
|
|
2048
2048
|
/** timestamp for when the project was originally deleted. */
|
|
2049
|
-
deletionTimestamp?: Date;
|
|
2049
|
+
deletionTimestamp?: Date | null;
|
|
2050
2050
|
}
|
|
2051
2051
|
interface DuplicateProjectItemsRequest {
|
|
2052
2052
|
/** ID of the project containing the items to duplicate. */
|
|
@@ -2214,7 +2214,7 @@ interface EventMetadata$2 extends BaseEventMetadata$2 {
|
|
|
2214
2214
|
/** ID of the entity associated with the event. */
|
|
2215
2215
|
entityId?: string;
|
|
2216
2216
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
2217
|
-
eventTime?: Date;
|
|
2217
|
+
eventTime?: Date | null;
|
|
2218
2218
|
/**
|
|
2219
2219
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
2220
2220
|
* (for example, GDPR).
|
|
@@ -2288,12 +2288,12 @@ interface UpdateProjectItem {
|
|
|
2288
2288
|
* Date and time the item was created.
|
|
2289
2289
|
* @readonly
|
|
2290
2290
|
*/
|
|
2291
|
-
_createdDate?: Date;
|
|
2291
|
+
_createdDate?: Date | null;
|
|
2292
2292
|
/**
|
|
2293
2293
|
* Date and time the item was last updated.
|
|
2294
2294
|
* @readonly
|
|
2295
2295
|
*/
|
|
2296
|
-
_updatedDate?: Date;
|
|
2296
|
+
_updatedDate?: Date | null;
|
|
2297
2297
|
/** Project item link. */
|
|
2298
2298
|
link?: Link;
|
|
2299
2299
|
}
|
|
@@ -2524,12 +2524,12 @@ interface Project$1 extends ProjectCoverOneOf$1 {
|
|
|
2524
2524
|
* Date and time the project was created.
|
|
2525
2525
|
* @readonly
|
|
2526
2526
|
*/
|
|
2527
|
-
_createdDate?: Date;
|
|
2527
|
+
_createdDate?: Date | null;
|
|
2528
2528
|
/**
|
|
2529
2529
|
* Date and time the project was updated.
|
|
2530
2530
|
* @readonly
|
|
2531
2531
|
*/
|
|
2532
|
-
_updatedDate?: Date;
|
|
2532
|
+
_updatedDate?: Date | null;
|
|
2533
2533
|
/**
|
|
2534
2534
|
* Project's page URL and relative path. To receive this field in the response, pass the `includePageUrl` query parameter in the request.
|
|
2535
2535
|
* @readonly
|
|
@@ -2648,7 +2648,7 @@ interface ProjectSource$1 {
|
|
|
2648
2648
|
/** fields that are synced from external source, should be blocked to update in UI */
|
|
2649
2649
|
notEditableFields?: string[];
|
|
2650
2650
|
/** last date the project was synced */
|
|
2651
|
-
lastSync?: Date;
|
|
2651
|
+
lastSync?: Date | null;
|
|
2652
2652
|
}
|
|
2653
2653
|
declare enum SyncStatus$2 {
|
|
2654
2654
|
SYNCED = "SYNCED",
|
|
@@ -2940,7 +2940,7 @@ interface SiteDeleted$1 {
|
|
|
2940
2940
|
}
|
|
2941
2941
|
interface DeleteContext$1 {
|
|
2942
2942
|
/** When the meta site was deleted. */
|
|
2943
|
-
dateDeleted?: Date;
|
|
2943
|
+
dateDeleted?: Date | null;
|
|
2944
2944
|
/** A status. */
|
|
2945
2945
|
deleteStatus?: DeleteStatus$1;
|
|
2946
2946
|
/** A reason (flow). */
|
|
@@ -3126,7 +3126,7 @@ interface DeletedProjectRestored {
|
|
|
3126
3126
|
/** the id of the project that was restored */
|
|
3127
3127
|
projectId?: string;
|
|
3128
3128
|
/** timestamp for when the project was originally deleted. */
|
|
3129
|
-
deletionTimestamp?: Date;
|
|
3129
|
+
deletionTimestamp?: Date | null;
|
|
3130
3130
|
}
|
|
3131
3131
|
interface CreateProjectRequest {
|
|
3132
3132
|
/** Project to create. */
|
|
@@ -3376,7 +3376,7 @@ interface DomainEvent$2 extends DomainEventBodyOneOf$2 {
|
|
|
3376
3376
|
/** ID of the entity associated with the event. */
|
|
3377
3377
|
entityId?: string;
|
|
3378
3378
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
3379
|
-
eventTime?: Date;
|
|
3379
|
+
eventTime?: Date | null;
|
|
3380
3380
|
/**
|
|
3381
3381
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
3382
3382
|
* (for example, GDPR).
|
|
@@ -3405,7 +3405,7 @@ interface EntityCreatedEvent$2 {
|
|
|
3405
3405
|
entity?: string;
|
|
3406
3406
|
}
|
|
3407
3407
|
interface RestoreInfo$2 {
|
|
3408
|
-
deletedDate?: Date;
|
|
3408
|
+
deletedDate?: Date | null;
|
|
3409
3409
|
}
|
|
3410
3410
|
interface EntityUpdatedEvent$2 {
|
|
3411
3411
|
/**
|
|
@@ -3560,7 +3560,7 @@ interface EventMetadata$1 extends BaseEventMetadata$1 {
|
|
|
3560
3560
|
/** ID of the entity associated with the event. */
|
|
3561
3561
|
entityId?: string;
|
|
3562
3562
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
3563
|
-
eventTime?: Date;
|
|
3563
|
+
eventTime?: Date | null;
|
|
3564
3564
|
/**
|
|
3565
3565
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
3566
3566
|
* (for example, GDPR).
|
|
@@ -3636,12 +3636,12 @@ interface UpdateProject {
|
|
|
3636
3636
|
* Date and time the project was created.
|
|
3637
3637
|
* @readonly
|
|
3638
3638
|
*/
|
|
3639
|
-
_createdDate?: Date;
|
|
3639
|
+
_createdDate?: Date | null;
|
|
3640
3640
|
/**
|
|
3641
3641
|
* Date and time the project was updated.
|
|
3642
3642
|
* @readonly
|
|
3643
3643
|
*/
|
|
3644
|
-
_updatedDate?: Date;
|
|
3644
|
+
_updatedDate?: Date | null;
|
|
3645
3645
|
/**
|
|
3646
3646
|
* Project's page URL and relative path. To receive this field in the response, pass the `includePageUrl` query parameter in the request.
|
|
3647
3647
|
* @readonly
|
|
@@ -3994,12 +3994,12 @@ interface Project extends ProjectCoverOneOf {
|
|
|
3994
3994
|
* Date and time the project was created.
|
|
3995
3995
|
* @readonly
|
|
3996
3996
|
*/
|
|
3997
|
-
_createdDate?: Date;
|
|
3997
|
+
_createdDate?: Date | null;
|
|
3998
3998
|
/**
|
|
3999
3999
|
* Date and time the project was updated.
|
|
4000
4000
|
* @readonly
|
|
4001
4001
|
*/
|
|
4002
|
-
_updatedDate?: Date;
|
|
4002
|
+
_updatedDate?: Date | null;
|
|
4003
4003
|
/**
|
|
4004
4004
|
* Project's page URL and relative path. To receive this field in the response, pass the `includePageUrl` query parameter in the request.
|
|
4005
4005
|
* @readonly
|
|
@@ -4118,7 +4118,7 @@ interface ProjectSource {
|
|
|
4118
4118
|
/** fields that are synced from external source, should be blocked to update in UI */
|
|
4119
4119
|
notEditableFields?: string[];
|
|
4120
4120
|
/** last date the project was synced */
|
|
4121
|
-
lastSync?: Date;
|
|
4121
|
+
lastSync?: Date | null;
|
|
4122
4122
|
}
|
|
4123
4123
|
declare enum SyncStatus$1 {
|
|
4124
4124
|
SYNCED = "SYNCED",
|
|
@@ -4310,7 +4310,7 @@ interface DomainEvent$1 extends DomainEventBodyOneOf$1 {
|
|
|
4310
4310
|
/** ID of the entity associated with the event. */
|
|
4311
4311
|
entityId?: string;
|
|
4312
4312
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
4313
|
-
eventTime?: Date;
|
|
4313
|
+
eventTime?: Date | null;
|
|
4314
4314
|
/**
|
|
4315
4315
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
4316
4316
|
* (for example, GDPR).
|
|
@@ -4339,7 +4339,7 @@ interface EntityCreatedEvent$1 {
|
|
|
4339
4339
|
entity?: string;
|
|
4340
4340
|
}
|
|
4341
4341
|
interface RestoreInfo$1 {
|
|
4342
|
-
deletedDate?: Date;
|
|
4342
|
+
deletedDate?: Date | null;
|
|
4343
4343
|
}
|
|
4344
4344
|
interface EntityUpdatedEvent$1 {
|
|
4345
4345
|
/**
|
|
@@ -4485,7 +4485,7 @@ interface EventMetadata extends BaseEventMetadata {
|
|
|
4485
4485
|
/** ID of the entity associated with the event. */
|
|
4486
4486
|
entityId?: string;
|
|
4487
4487
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
4488
|
-
eventTime?: Date;
|
|
4488
|
+
eventTime?: Date | null;
|
|
4489
4489
|
/**
|
|
4490
4490
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
4491
4491
|
* (for example, GDPR).
|
|
@@ -4693,7 +4693,7 @@ interface SyncedProject {
|
|
|
4693
4693
|
* Represents the last time project was synced - returned only if external project is synced
|
|
4694
4694
|
* @readonly
|
|
4695
4695
|
*/
|
|
4696
|
-
lastSynced?: Date;
|
|
4696
|
+
lastSynced?: Date | null;
|
|
4697
4697
|
/** External Project synced status */
|
|
4698
4698
|
status?: SyncStatus;
|
|
4699
4699
|
}
|
|
@@ -4715,9 +4715,9 @@ interface SyncingProjectEvent {
|
|
|
4715
4715
|
/** Portfolio Project ID */
|
|
4716
4716
|
portfolioProjectId?: string;
|
|
4717
4717
|
/** When the first event was produced, and started syncing */
|
|
4718
|
-
firstProduceTimestamp?: Date;
|
|
4718
|
+
firstProduceTimestamp?: Date | null;
|
|
4719
4719
|
/** Project Revision */
|
|
4720
|
-
projectSyncRevision?: Date;
|
|
4720
|
+
projectSyncRevision?: Date | null;
|
|
4721
4721
|
}
|
|
4722
4722
|
interface SyncProjectPagingEvent {
|
|
4723
4723
|
/** Provider appDefId */
|
|
@@ -4729,7 +4729,7 @@ interface SyncProjectPagingEvent {
|
|
|
4729
4729
|
/** Next page cursor */
|
|
4730
4730
|
nextPageCursor?: string | null;
|
|
4731
4731
|
/** Project Revision */
|
|
4732
|
-
projectSyncRevision?: Date;
|
|
4732
|
+
projectSyncRevision?: Date | null;
|
|
4733
4733
|
}
|
|
4734
4734
|
interface SyncSiteEvent {
|
|
4735
4735
|
/** Portfolio instance id */
|
|
@@ -4848,7 +4848,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
4848
4848
|
/** ID of the entity associated with the event. */
|
|
4849
4849
|
entityId?: string;
|
|
4850
4850
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
4851
|
-
eventTime?: Date;
|
|
4851
|
+
eventTime?: Date | null;
|
|
4852
4852
|
/**
|
|
4853
4853
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
4854
4854
|
* (for example, GDPR).
|
|
@@ -4877,7 +4877,7 @@ interface EntityCreatedEvent {
|
|
|
4877
4877
|
entity?: string;
|
|
4878
4878
|
}
|
|
4879
4879
|
interface RestoreInfo {
|
|
4880
|
-
deletedDate?: Date;
|
|
4880
|
+
deletedDate?: Date | null;
|
|
4881
4881
|
}
|
|
4882
4882
|
interface EntityUpdatedEvent {
|
|
4883
4883
|
/**
|
|
@@ -5157,7 +5157,7 @@ interface SiteDeleted {
|
|
|
5157
5157
|
}
|
|
5158
5158
|
interface DeleteContext {
|
|
5159
5159
|
/** When the meta site was deleted. */
|
|
5160
|
-
dateDeleted?: Date;
|
|
5160
|
+
dateDeleted?: Date | null;
|
|
5161
5161
|
/** A status. */
|
|
5162
5162
|
deleteStatus?: DeleteStatus;
|
|
5163
5163
|
/** A reason (flow). */
|
|
@@ -29,12 +29,12 @@ interface Collection$1 {
|
|
|
29
29
|
* Date and time the collection was created.
|
|
30
30
|
* @readonly
|
|
31
31
|
*/
|
|
32
|
-
createdDate?: Date;
|
|
32
|
+
createdDate?: Date | null;
|
|
33
33
|
/**
|
|
34
34
|
* Date and time the collection was updated.
|
|
35
35
|
* @readonly
|
|
36
36
|
*/
|
|
37
|
-
updatedDate?: Date;
|
|
37
|
+
updatedDate?: Date | null;
|
|
38
38
|
/**
|
|
39
39
|
* Collection's page URL and relative path. To receive this field in the response, pass the `includePageUrl` query parameter in the request.
|
|
40
40
|
* @readonly
|
|
@@ -358,12 +358,12 @@ interface Collection {
|
|
|
358
358
|
* Date and time the collection was created.
|
|
359
359
|
* @readonly
|
|
360
360
|
*/
|
|
361
|
-
_createdDate?: Date;
|
|
361
|
+
_createdDate?: Date | null;
|
|
362
362
|
/**
|
|
363
363
|
* Date and time the collection was updated.
|
|
364
364
|
* @readonly
|
|
365
365
|
*/
|
|
366
|
-
_updatedDate?: Date;
|
|
366
|
+
_updatedDate?: Date | null;
|
|
367
367
|
/**
|
|
368
368
|
* Collection's page URL and relative path. To receive this field in the response, pass the `includePageUrl` query parameter in the request.
|
|
369
369
|
* @readonly
|
|
@@ -671,12 +671,12 @@ interface PortfolioSettings$1 {
|
|
|
671
671
|
* Date and time the portfolio settings were created.
|
|
672
672
|
* @readonly
|
|
673
673
|
*/
|
|
674
|
-
createdDate?: Date;
|
|
674
|
+
createdDate?: Date | null;
|
|
675
675
|
/**
|
|
676
676
|
* Date and time the portfolio settings were updated.
|
|
677
677
|
* @readonly
|
|
678
678
|
*/
|
|
679
|
-
updatedDate?: Date;
|
|
679
|
+
updatedDate?: Date | null;
|
|
680
680
|
}
|
|
681
681
|
interface ProjectItemSettings$1 {
|
|
682
682
|
addItemDirection?: AddItemDirection$1;
|
|
@@ -752,12 +752,12 @@ interface PortfolioSettings {
|
|
|
752
752
|
* Date and time the portfolio settings were created.
|
|
753
753
|
* @readonly
|
|
754
754
|
*/
|
|
755
|
-
_createdDate?: Date;
|
|
755
|
+
_createdDate?: Date | null;
|
|
756
756
|
/**
|
|
757
757
|
* Date and time the portfolio settings were updated.
|
|
758
758
|
* @readonly
|
|
759
759
|
*/
|
|
760
|
-
_updatedDate?: Date;
|
|
760
|
+
_updatedDate?: Date | null;
|
|
761
761
|
}
|
|
762
762
|
interface ProjectItemSettings {
|
|
763
763
|
addItemDirection?: AddItemDirection;
|
|
@@ -876,12 +876,12 @@ interface Item$1 extends ItemMetadataOneOf$1 {
|
|
|
876
876
|
* Date and time the item was created.
|
|
877
877
|
* @readonly
|
|
878
878
|
*/
|
|
879
|
-
createdDate?: Date;
|
|
879
|
+
createdDate?: Date | null;
|
|
880
880
|
/**
|
|
881
881
|
* Date and time the item was last updated.
|
|
882
882
|
* @readonly
|
|
883
883
|
*/
|
|
884
|
-
updatedDate?: Date;
|
|
884
|
+
updatedDate?: Date | null;
|
|
885
885
|
/** Project item link. */
|
|
886
886
|
link?: Link$1;
|
|
887
887
|
}
|
|
@@ -1289,12 +1289,12 @@ interface Item extends ItemMetadataOneOf {
|
|
|
1289
1289
|
* Date and time the item was created.
|
|
1290
1290
|
* @readonly
|
|
1291
1291
|
*/
|
|
1292
|
-
_createdDate?: Date;
|
|
1292
|
+
_createdDate?: Date | null;
|
|
1293
1293
|
/**
|
|
1294
1294
|
* Date and time the item was last updated.
|
|
1295
1295
|
* @readonly
|
|
1296
1296
|
*/
|
|
1297
|
-
_updatedDate?: Date;
|
|
1297
|
+
_updatedDate?: Date | null;
|
|
1298
1298
|
/** Project item link. */
|
|
1299
1299
|
link?: Link;
|
|
1300
1300
|
}
|
|
@@ -1676,12 +1676,12 @@ interface Project$3 extends ProjectCoverOneOf$3 {
|
|
|
1676
1676
|
* Date and time the project was created.
|
|
1677
1677
|
* @readonly
|
|
1678
1678
|
*/
|
|
1679
|
-
createdDate?: Date;
|
|
1679
|
+
createdDate?: Date | null;
|
|
1680
1680
|
/**
|
|
1681
1681
|
* Date and time the project was updated.
|
|
1682
1682
|
* @readonly
|
|
1683
1683
|
*/
|
|
1684
|
-
updatedDate?: Date;
|
|
1684
|
+
updatedDate?: Date | null;
|
|
1685
1685
|
/**
|
|
1686
1686
|
* Project's page URL and relative path. To receive this field in the response, pass the `includePageUrl` query parameter in the request.
|
|
1687
1687
|
* @readonly
|
|
@@ -2258,12 +2258,12 @@ interface Project$2 extends ProjectCoverOneOf$2 {
|
|
|
2258
2258
|
* Date and time the project was created.
|
|
2259
2259
|
* @readonly
|
|
2260
2260
|
*/
|
|
2261
|
-
_createdDate?: Date;
|
|
2261
|
+
_createdDate?: Date | null;
|
|
2262
2262
|
/**
|
|
2263
2263
|
* Date and time the project was updated.
|
|
2264
2264
|
* @readonly
|
|
2265
2265
|
*/
|
|
2266
|
-
_updatedDate?: Date;
|
|
2266
|
+
_updatedDate?: Date | null;
|
|
2267
2267
|
/**
|
|
2268
2268
|
* Project's page URL and relative path. To receive this field in the response, pass the `includePageUrl` query parameter in the request.
|
|
2269
2269
|
* @readonly
|
|
@@ -2827,12 +2827,12 @@ interface Project$1 extends ProjectCoverOneOf$1 {
|
|
|
2827
2827
|
* Date and time the project was created.
|
|
2828
2828
|
* @readonly
|
|
2829
2829
|
*/
|
|
2830
|
-
createdDate?: Date;
|
|
2830
|
+
createdDate?: Date | null;
|
|
2831
2831
|
/**
|
|
2832
2832
|
* Date and time the project was updated.
|
|
2833
2833
|
* @readonly
|
|
2834
2834
|
*/
|
|
2835
|
-
updatedDate?: Date;
|
|
2835
|
+
updatedDate?: Date | null;
|
|
2836
2836
|
/**
|
|
2837
2837
|
* Project's page URL and relative path. To receive this field in the response, pass the `includePageUrl` query parameter in the request.
|
|
2838
2838
|
* @readonly
|
|
@@ -3237,12 +3237,12 @@ interface Project extends ProjectCoverOneOf {
|
|
|
3237
3237
|
* Date and time the project was created.
|
|
3238
3238
|
* @readonly
|
|
3239
3239
|
*/
|
|
3240
|
-
_createdDate?: Date;
|
|
3240
|
+
_createdDate?: Date | null;
|
|
3241
3241
|
/**
|
|
3242
3242
|
* Date and time the project was updated.
|
|
3243
3243
|
* @readonly
|
|
3244
3244
|
*/
|
|
3245
|
-
_updatedDate?: Date;
|
|
3245
|
+
_updatedDate?: Date | null;
|
|
3246
3246
|
/**
|
|
3247
3247
|
* Project's page URL and relative path. To receive this field in the response, pass the `includePageUrl` query parameter in the request.
|
|
3248
3248
|
* @readonly
|
|
@@ -3572,7 +3572,7 @@ interface SyncedProject$1 {
|
|
|
3572
3572
|
* Represents the last time project was synced - returned only if external project is synced
|
|
3573
3573
|
* @readonly
|
|
3574
3574
|
*/
|
|
3575
|
-
lastSynced?: Date;
|
|
3575
|
+
lastSynced?: Date | null;
|
|
3576
3576
|
/** External Project synced status */
|
|
3577
3577
|
status?: SyncStatus$1;
|
|
3578
3578
|
}
|
|
@@ -3715,7 +3715,7 @@ interface SyncedProject {
|
|
|
3715
3715
|
* Represents the last time project was synced - returned only if external project is synced
|
|
3716
3716
|
* @readonly
|
|
3717
3717
|
*/
|
|
3718
|
-
lastSynced?: Date;
|
|
3718
|
+
lastSynced?: Date | null;
|
|
3719
3719
|
/** External Project synced status */
|
|
3720
3720
|
status?: SyncStatus;
|
|
3721
3721
|
}
|