@bigfootai/bigfoot-types 5.1.25 → 5.1.27
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 +3 -1
- package/model.ts +5 -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 = {
|
@@ -1670,6 +1671,7 @@ input StringFilterInput {
|
|
1670
1671
|
}`;
|
1671
1672
|
exports.BusinessObjectFilterInputQL = `
|
1672
1673
|
input BusinessObjectFilterInput {
|
1674
|
+
id: String
|
1673
1675
|
url: String
|
1674
1676
|
blockType: BlockType
|
1675
1677
|
provider: String
|
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
|
|
@@ -2956,12 +2958,14 @@ export interface StringFilterInput {
|
|
2956
2958
|
|
2957
2959
|
export const BusinessObjectFilterInputQL = `
|
2958
2960
|
input BusinessObjectFilterInput {
|
2961
|
+
id: String
|
2959
2962
|
url: String
|
2960
2963
|
blockType: BlockType
|
2961
2964
|
provider: String
|
2962
2965
|
metadataType: String
|
2963
2966
|
}`;
|
2964
2967
|
export interface BusinessObjectFilterInput {
|
2968
|
+
id?: string;
|
2965
2969
|
url?: string;
|
2966
2970
|
blockType?: string;
|
2967
2971
|
provider?: string;
|