@bigfootai/bigfoot-types 4.5.4 → 4.5.6
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 +5 -4
- package/model.ts +8 -6
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1191,12 +1191,12 @@ type ArchiveTaskOutput {
|
|
1191
1191
|
archived: Boolean!
|
1192
1192
|
}`;
|
1193
1193
|
exports.UpsertFolderInputQL = `
|
1194
|
-
input
|
1194
|
+
input UpsertFolderInput {
|
1195
1195
|
_id: String
|
1196
1196
|
sharingTags: [SharingTagInput]
|
1197
|
-
label:
|
1198
|
-
description
|
1199
|
-
searchIds
|
1197
|
+
label: String!
|
1198
|
+
description: String
|
1199
|
+
searchIds: [String]
|
1200
1200
|
}`;
|
1201
1201
|
exports.FindFolderInputQL = `
|
1202
1202
|
input FindFolderInput {
|
@@ -1268,6 +1268,7 @@ input SearchTagsInput {
|
|
1268
1268
|
email: String
|
1269
1269
|
inviteStatus: Int
|
1270
1270
|
archived: Boolean
|
1271
|
+
favorite: Boolean
|
1271
1272
|
hasTasks: Boolean
|
1272
1273
|
orderByAlias: String
|
1273
1274
|
orderByTaskCount: String
|
package/model.ts
CHANGED
@@ -653,7 +653,7 @@ export class Folder extends SharedPrimitive {
|
|
653
653
|
description?: string;
|
654
654
|
searchIds?: string[];
|
655
655
|
archived: boolean;
|
656
|
-
_tagType:
|
656
|
+
_tagType: TagType;
|
657
657
|
|
658
658
|
constructor(tenantIdCreated: string, sharingTags: SharingTag[]) {
|
659
659
|
super(sharingTags);
|
@@ -2156,14 +2156,14 @@ export interface ArchiveTaskOutput {
|
|
2156
2156
|
}
|
2157
2157
|
|
2158
2158
|
export const UpsertFolderInputQL = `
|
2159
|
-
input
|
2159
|
+
input UpsertFolderInput {
|
2160
2160
|
_id: String
|
2161
2161
|
sharingTags: [SharingTagInput]
|
2162
|
-
label:
|
2163
|
-
description
|
2164
|
-
searchIds
|
2162
|
+
label: String!
|
2163
|
+
description: String
|
2164
|
+
searchIds: [String]
|
2165
2165
|
}`;
|
2166
|
-
export interface
|
2166
|
+
export interface UpsertFolderInput {
|
2167
2167
|
_id: string;
|
2168
2168
|
sharingTags?: SharingTag[];
|
2169
2169
|
label: string;
|
@@ -2302,6 +2302,7 @@ input SearchTagsInput {
|
|
2302
2302
|
email: String
|
2303
2303
|
inviteStatus: Int
|
2304
2304
|
archived: Boolean
|
2305
|
+
favorite: Boolean
|
2305
2306
|
hasTasks: Boolean
|
2306
2307
|
orderByAlias: String
|
2307
2308
|
orderByTaskCount: String
|
@@ -2319,6 +2320,7 @@ export interface SearchTagsInput {
|
|
2319
2320
|
email?: string;
|
2320
2321
|
inviteStatus?: InviteStatus;
|
2321
2322
|
archived?: boolean;
|
2323
|
+
favorite?: boolean;
|
2322
2324
|
hasTasks?: boolean;
|
2323
2325
|
orderByAlias?: OrderByDirection;
|
2324
2326
|
orderByTaskCount?: OrderByDirection;
|