@bigfootai/bigfoot-types 5.2.29 → 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.
Files changed (3) hide show
  1. package/model.js +2 -1
  2. package/model.ts +3 -1
  3. 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
+ subscriptionPubSubType: 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
+ subscriptionPubSubType: 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
+ subscriptionPubSubType?: PubSubType;
740
742
 
741
743
  constructor(sharingTags: SharingTag[]) {
742
744
  super();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.2.29",
4
+ "version": "5.2.31",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",