@bigfootai/bigfoot-types 5.2.29 → 5.2.30
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 +3 -1
- package/package.json +1 -1
package/model.js
CHANGED
@@ -511,7 +511,8 @@ class Primitive {
|
|
511
511
|
}
|
512
512
|
exports.Primitive = Primitive;
|
513
513
|
exports.SharedPrimitiveFields = `${exports.PrimitiveFields}
|
514
|
-
sharingTags: [SharingTag]
|
514
|
+
sharingTags: [SharingTag]!
|
515
|
+
subscriptionEvent: String`;
|
515
516
|
exports.SharedPrimitiveFieldsForUpsert = `${exports.PrimitiveFieldsForUpsert}
|
516
517
|
sharingTags: [SharingTagInput]`;
|
517
518
|
class SharedPrimitive extends Primitive {
|
package/model.ts
CHANGED
@@ -728,7 +728,8 @@ export class Primitive {
|
|
728
728
|
}
|
729
729
|
|
730
730
|
export const SharedPrimitiveFields = `${PrimitiveFields}
|
731
|
-
sharingTags: [SharingTag]
|
731
|
+
sharingTags: [SharingTag]!
|
732
|
+
subscriptionEvent: String`;
|
732
733
|
export const SharedPrimitiveFieldsForUpsert = `${PrimitiveFieldsForUpsert}
|
733
734
|
sharingTags: [SharingTagInput]`;
|
734
735
|
export class SharedPrimitive extends Primitive {
|
@@ -737,6 +738,7 @@ export class SharedPrimitive extends Primitive {
|
|
737
738
|
_parentTagIds: string[];
|
738
739
|
_sharingTagIds: string[];
|
739
740
|
_tagIds: string[];
|
741
|
+
subscriptionEvent?: string;
|
740
742
|
|
741
743
|
constructor(sharingTags: SharingTag[]) {
|
742
744
|
super();
|