@bigfootai/bigfoot-types 4.5.11 → 4.5.13
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 +2 -1
- package/model.ts +8 -3
- package/package.json +1 -1
package/model.js
CHANGED
@@ -451,8 +451,9 @@ type Folder {${exports.SharedPrimitiveFields}
|
|
451
451
|
archived: Boolean!
|
452
452
|
}`;
|
453
453
|
class Folder extends SharedPrimitive {
|
454
|
-
constructor(tenantIdCreated, sharingTags) {
|
454
|
+
constructor(tenantIdCreated, sharingTags, label) {
|
455
455
|
super(sharingTags);
|
456
|
+
this.label = label;
|
456
457
|
this.tenantIdCreated = tenantIdCreated;
|
457
458
|
this.archived = false;
|
458
459
|
}
|
package/model.ts
CHANGED
@@ -656,11 +656,16 @@ export class Folder extends SharedPrimitive {
|
|
656
656
|
description?: string;
|
657
657
|
searchIds?: string[];
|
658
658
|
archived: boolean;
|
659
|
-
_tagType
|
659
|
+
_tagType?: TagType;
|
660
660
|
|
661
|
-
constructor(
|
661
|
+
constructor(
|
662
|
+
tenantIdCreated: string,
|
663
|
+
sharingTags: SharingTag[],
|
664
|
+
label: string
|
665
|
+
) {
|
662
666
|
super(sharingTags);
|
663
667
|
|
668
|
+
this.label = label;
|
664
669
|
this.tenantIdCreated = tenantIdCreated;
|
665
670
|
this.archived = false;
|
666
671
|
}
|
@@ -2171,7 +2176,7 @@ input UpsertFolderInput {
|
|
2171
2176
|
searchIds: [String]
|
2172
2177
|
}`;
|
2173
2178
|
export interface UpsertFolderInput {
|
2174
|
-
_id
|
2179
|
+
_id?: string;
|
2175
2180
|
sharingTags?: SharingTag[];
|
2176
2181
|
label: string;
|
2177
2182
|
description?: string;
|