@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.
Files changed (3) hide show
  1. package/model.js +1 -1
  2. package/model.ts +2 -2
  3. 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
- subscriptionEvent: String`;
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
- subscriptionEvent: String`;
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
- subscriptionEvent?: string;
741
+ subscriptionPubSubType?: PubSubType;
742
742
 
743
743
  constructor(sharingTags: SharingTag[]) {
744
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.30",
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",