@getcommunity/gc-validators 0.0.279 → 0.0.280
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.
|
@@ -271,8 +271,8 @@ type TeamworkProject = {
|
|
|
271
271
|
customFieldValues: TeamworkRelatedMeta[];
|
|
272
272
|
companyId: number;
|
|
273
273
|
tagIds: number[] | null;
|
|
274
|
-
startDate: null;
|
|
275
|
-
endDate: null;
|
|
274
|
+
startDate: string | null;
|
|
275
|
+
endDate: string | null;
|
|
276
276
|
categoryId: number | null;
|
|
277
277
|
ownerId: number;
|
|
278
278
|
updateId: number | null;
|
|
@@ -368,11 +368,11 @@ type TeamworkTask = {
|
|
|
368
368
|
lockdown: Record<string, TeamworkLockdown> | null;
|
|
369
369
|
status: string;
|
|
370
370
|
tasklist: TeamworkRelatedMeta;
|
|
371
|
-
startDate: string;
|
|
372
|
-
dueDate: string;
|
|
371
|
+
startDate: string | null;
|
|
372
|
+
dueDate: string | null;
|
|
373
373
|
startDateOffset: number | null;
|
|
374
374
|
dueDateOffset: number | null;
|
|
375
|
-
originalDueDate: string;
|
|
375
|
+
originalDueDate: string | null;
|
|
376
376
|
estimateMinutes: number;
|
|
377
377
|
accumulatedEstimatedMinutes: number;
|
|
378
378
|
assignees: TeamworkRelatedMeta[];
|
|
@@ -271,8 +271,8 @@ type TeamworkProject = {
|
|
|
271
271
|
customFieldValues: TeamworkRelatedMeta[];
|
|
272
272
|
companyId: number;
|
|
273
273
|
tagIds: number[] | null;
|
|
274
|
-
startDate: null;
|
|
275
|
-
endDate: null;
|
|
274
|
+
startDate: string | null;
|
|
275
|
+
endDate: string | null;
|
|
276
276
|
categoryId: number | null;
|
|
277
277
|
ownerId: number;
|
|
278
278
|
updateId: number | null;
|
|
@@ -368,11 +368,11 @@ type TeamworkTask = {
|
|
|
368
368
|
lockdown: Record<string, TeamworkLockdown> | null;
|
|
369
369
|
status: string;
|
|
370
370
|
tasklist: TeamworkRelatedMeta;
|
|
371
|
-
startDate: string;
|
|
372
|
-
dueDate: string;
|
|
371
|
+
startDate: string | null;
|
|
372
|
+
dueDate: string | null;
|
|
373
373
|
startDateOffset: number | null;
|
|
374
374
|
dueDateOffset: number | null;
|
|
375
|
-
originalDueDate: string;
|
|
375
|
+
originalDueDate: string | null;
|
|
376
376
|
estimateMinutes: number;
|
|
377
377
|
accumulatedEstimatedMinutes: number;
|
|
378
378
|
assignees: TeamworkRelatedMeta[];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getcommunity/gc-validators",
|
|
3
3
|
"description": "Schema Validator for GetCommunity web-stack types",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.280",
|
|
5
5
|
"author": "Joey Grable <joey@getcommunity.com> (https://joeygrable.com)",
|
|
6
6
|
"contributors": [],
|
|
7
7
|
"type": "module",
|