@bigfootai/bigfoot-types 4.7.8 → 4.7.10
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 -1
- package/model.ts +3 -2
- package/package.json +1 -1
package/model.js
CHANGED
@@ -454,6 +454,9 @@ class SharedPrimitive extends Primitive {
|
|
454
454
|
}
|
455
455
|
}
|
456
456
|
}
|
457
|
+
if (sharingTags && sharingTags.length > 0) {
|
458
|
+
this._tagIds = sharingTags.map((sharingTag) => sharingTag.tagId);
|
459
|
+
}
|
457
460
|
}
|
458
461
|
}
|
459
462
|
exports.SharedPrimitive = SharedPrimitive;
|
@@ -637,7 +640,6 @@ type ConnectRecommendation {
|
|
637
640
|
exports.UpsertRecommendationQL = `
|
638
641
|
type UpsertRecommendation {
|
639
642
|
table: Table!
|
640
|
-
record: Record!
|
641
643
|
upsertType: String!
|
642
644
|
}`;
|
643
645
|
exports.RecommendationQL = `
|
package/model.ts
CHANGED
@@ -657,6 +657,9 @@ export class SharedPrimitive extends Primitive {
|
|
657
657
|
}
|
658
658
|
}
|
659
659
|
}
|
660
|
+
if (sharingTags && sharingTags.length > 0) {
|
661
|
+
this._tagIds = sharingTags.map((sharingTag) => sharingTag.tagId);
|
662
|
+
}
|
660
663
|
}
|
661
664
|
}
|
662
665
|
|
@@ -962,12 +965,10 @@ export interface ConnectRecommendation {
|
|
962
965
|
export const UpsertRecommendationQL = `
|
963
966
|
type UpsertRecommendation {
|
964
967
|
table: Table!
|
965
|
-
record: Record!
|
966
968
|
upsertType: String!
|
967
969
|
}`;
|
968
970
|
export interface UpsertRecommendation {
|
969
971
|
table: Table;
|
970
|
-
record: Record;
|
971
972
|
upsertType: UpsertType;
|
972
973
|
}
|
973
974
|
|