@bigfootai/bigfoot-types 4.6.7 → 4.6.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 +2 -0
- package/model.ts +3 -0
- package/package.json +1 -1
package/model.js
CHANGED
@@ -102,6 +102,7 @@ var TagRecommendationType;
|
|
102
102
|
var TagRecommendationVariation;
|
103
103
|
(function (TagRecommendationVariation) {
|
104
104
|
TagRecommendationVariation["TypeChange"] = "type_change";
|
105
|
+
TagRecommendationVariation["TagFromDocument"] = "tag_from_document";
|
105
106
|
})(TagRecommendationVariation || (exports.TagRecommendationVariation = TagRecommendationVariation = {}));
|
106
107
|
var RecurrenceRFC;
|
107
108
|
(function (RecurrenceRFC) {
|
@@ -478,6 +479,7 @@ type Search {${exports.SharedPrimitiveFields}
|
|
478
479
|
orderByAlias: String
|
479
480
|
size: Int
|
480
481
|
archived: Boolean!
|
482
|
+
favoriteTagId: String
|
481
483
|
}`;
|
482
484
|
class Search extends SharedPrimitive {
|
483
485
|
constructor(tenantIdCreated, sharingTags) {
|
package/model.ts
CHANGED
@@ -96,6 +96,7 @@ export enum TagRecommendationType {
|
|
96
96
|
|
97
97
|
export enum TagRecommendationVariation {
|
98
98
|
TypeChange = 'type_change',
|
99
|
+
TagFromDocument = 'tag_from_document',
|
99
100
|
}
|
100
101
|
|
101
102
|
export enum RecurrenceRFC {
|
@@ -690,6 +691,7 @@ type Search {${SharedPrimitiveFields}
|
|
690
691
|
orderByAlias: String
|
691
692
|
size: Int
|
692
693
|
archived: Boolean!
|
694
|
+
favoriteTagId: String
|
693
695
|
}`;
|
694
696
|
export class Search extends SharedPrimitive {
|
695
697
|
label?: string;
|
@@ -702,6 +704,7 @@ export class Search extends SharedPrimitive {
|
|
702
704
|
page?: number;
|
703
705
|
size?: number;
|
704
706
|
archived: boolean;
|
707
|
+
favoriteTagId?: string;
|
705
708
|
|
706
709
|
constructor(tenantIdCreated: string, sharingTags: SharingTag[]) {
|
707
710
|
super(sharingTags);
|