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