@bigfootai/bigfoot-types 5.1.25 → 5.1.26
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
@@ -505,8 +505,9 @@ class Metadata extends Primitive {
|
|
505
505
|
}
|
506
506
|
exports.Metadata = Metadata;
|
507
507
|
class History extends Primitive {
|
508
|
-
constructor(before, after) {
|
508
|
+
constructor(tenantId, before, after) {
|
509
509
|
super();
|
510
|
+
this.tenantId = tenantId;
|
510
511
|
this.before = before;
|
511
512
|
this.after = after;
|
512
513
|
this.referenceBlock = {
|
package/model.ts
CHANGED
@@ -722,13 +722,15 @@ export interface ProcessBlockChangeHistoryRequest {
|
|
722
722
|
}
|
723
723
|
|
724
724
|
export class History extends Primitive {
|
725
|
+
tenantId: string;
|
725
726
|
referenceBlock: ReferenceBlock;
|
726
727
|
before: Block;
|
727
728
|
after: Block;
|
728
729
|
|
729
|
-
constructor(before: Block, after: Block) {
|
730
|
+
constructor(tenantId: string, before: Block, after: Block) {
|
730
731
|
super();
|
731
732
|
|
733
|
+
this.tenantId = tenantId;
|
732
734
|
this.before = before;
|
733
735
|
this.after = after;
|
734
736
|
|