@bigfootai/bigfoot-types 4.5.5 → 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 +3 -3
- package/model.ts +4 -4
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1194,9 +1194,9 @@ exports.UpsertFolderInputQL = `
|
|
1194
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 {
|
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);
|
@@ -2159,9 +2159,9 @@ export const UpsertFolderInputQL = `
|
|
2159
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
2166
|
export interface UpsertFolderInput {
|
2167
2167
|
_id: string;
|