@bigfootai/bigfoot-types 3.9.7 → 3.9.9
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/model.js +4 -0
- package/model.ts +9 -0
- package/package.json +1 -1
package/model.js
CHANGED
@@ -940,6 +940,8 @@ input UpsertSearchInput {
|
|
940
940
|
orderByDateCreated: String
|
941
941
|
orderByDateDue: String
|
942
942
|
orderByAlias: String
|
943
|
+
dateDueFrom: Float
|
944
|
+
dateDueTo: Float
|
943
945
|
status: Int
|
944
946
|
editorId: String
|
945
947
|
editorGroupId: String
|
@@ -976,6 +978,8 @@ input SearchInput {
|
|
976
978
|
orderByDateCreated: String
|
977
979
|
orderByDateDue: String
|
978
980
|
orderByAlias: String
|
981
|
+
dateDueFrom: Float
|
982
|
+
dateDueTo: Float
|
979
983
|
status: Int
|
980
984
|
originNoteId: String
|
981
985
|
editorId: String
|
package/model.ts
CHANGED
@@ -1145,6 +1145,7 @@ export class Event extends BusinessObject {
|
|
1145
1145
|
description?: string | null;
|
1146
1146
|
attendees?: PersonAcceptance[] | null;
|
1147
1147
|
conference?: Conference | null;
|
1148
|
+
attachments?: Attachment[] | null;
|
1148
1149
|
|
1149
1150
|
constructor(
|
1150
1151
|
tenantIdCreated: string,
|
@@ -1706,6 +1707,8 @@ input UpsertSearchInput {
|
|
1706
1707
|
orderByDateCreated: String
|
1707
1708
|
orderByDateDue: String
|
1708
1709
|
orderByAlias: String
|
1710
|
+
dateDueFrom: Float
|
1711
|
+
dateDueTo: Float
|
1709
1712
|
status: Int
|
1710
1713
|
editorId: String
|
1711
1714
|
editorGroupId: String
|
@@ -1724,6 +1727,8 @@ export interface UpsertSearchInput {
|
|
1724
1727
|
orderByDateCreated?: OrderByDirection;
|
1725
1728
|
orderByDateDue?: OrderByDirection;
|
1726
1729
|
orderByAlias?: OrderByDirection;
|
1730
|
+
dateDueFrom?: number;
|
1731
|
+
dateDueTo?: number;
|
1727
1732
|
status?: number;
|
1728
1733
|
editorId?: string;
|
1729
1734
|
editorGroupId?: string;
|
@@ -1780,6 +1785,8 @@ input SearchInput {
|
|
1780
1785
|
orderByDateCreated: String
|
1781
1786
|
orderByDateDue: String
|
1782
1787
|
orderByAlias: String
|
1788
|
+
dateDueFrom: Float
|
1789
|
+
dateDueTo: Float
|
1783
1790
|
status: Int
|
1784
1791
|
originNoteId: String
|
1785
1792
|
editorId: String
|
@@ -1798,6 +1805,8 @@ export interface SearchInput {
|
|
1798
1805
|
orderByDateCreated?: OrderByDirection;
|
1799
1806
|
orderByDateDue?: OrderByDirection;
|
1800
1807
|
orderByAlias?: OrderByDirection;
|
1808
|
+
dateDueFrom?: number;
|
1809
|
+
dateDueTo?: number;
|
1801
1810
|
status?: TaskStatus;
|
1802
1811
|
originNoteId?: string;
|
1803
1812
|
editorId?: string;
|