@bigfootai/bigfoot-types 4.5.1 → 4.5.2
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 -2
- package/package.json +1 -1
package/model.js
CHANGED
@@ -505,6 +505,7 @@ class Provider extends Primitive {
|
|
505
505
|
this.description = description;
|
506
506
|
this.instanceUrl = instanceUrl;
|
507
507
|
this.applications = applications;
|
508
|
+
this.tableMetadata = [];
|
508
509
|
}
|
509
510
|
}
|
510
511
|
exports.Provider = Provider;
|
@@ -914,7 +915,7 @@ type DocumentMetadata {${exports.MetadataFields}
|
|
914
915
|
contentBlocks: [BlockDescription]!
|
915
916
|
}`;
|
916
917
|
class DocumentMetadata extends Metadata {
|
917
|
-
constructor(
|
918
|
+
constructor(label, description, contentBlocks) {
|
918
919
|
super(label, description);
|
919
920
|
this.contentBlocks = contentBlocks;
|
920
921
|
}
|
package/model.ts
CHANGED
@@ -737,7 +737,7 @@ export class Provider extends Primitive {
|
|
737
737
|
label: string,
|
738
738
|
description: string,
|
739
739
|
instanceUrl: string,
|
740
|
-
applications:
|
740
|
+
applications: ProviderApplication[]
|
741
741
|
) {
|
742
742
|
super();
|
743
743
|
|
@@ -746,6 +746,8 @@ export class Provider extends Primitive {
|
|
746
746
|
this.description = description;
|
747
747
|
this.instanceUrl = instanceUrl;
|
748
748
|
this.applications = applications;
|
749
|
+
|
750
|
+
this.tableMetadata = [];
|
749
751
|
}
|
750
752
|
}
|
751
753
|
|
@@ -1629,7 +1631,6 @@ export class DocumentMetadata extends Metadata {
|
|
1629
1631
|
contentBlocks: BlockDescription[];
|
1630
1632
|
|
1631
1633
|
constructor(
|
1632
|
-
name: string,
|
1633
1634
|
label: string,
|
1634
1635
|
description: string,
|
1635
1636
|
contentBlocks: BlockDescription[]
|