@bigfootai/bigfoot-types 4.5.0 → 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 +3 -2
- package/model.ts +5 -4
- 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;
|
@@ -553,7 +554,7 @@ type ProviderRecommendation {
|
|
553
554
|
tagRecommendationId: String
|
554
555
|
linkUrl: String
|
555
556
|
provider: Provider!
|
556
|
-
|
557
|
+
providerResponse: ProviderResponse
|
557
558
|
providerInfo: ProviderInfo!
|
558
559
|
}`;
|
559
560
|
exports.TenantQL = `
|
@@ -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
|
|
@@ -823,14 +825,14 @@ type ProviderRecommendation {
|
|
823
825
|
tagRecommendationId: String
|
824
826
|
linkUrl: String
|
825
827
|
provider: Provider!
|
826
|
-
|
828
|
+
providerResponse: ProviderResponse
|
827
829
|
providerInfo: ProviderInfo!
|
828
830
|
}`;
|
829
831
|
export interface ProviderRecommendation {
|
830
832
|
tagRecommendationId?: string;
|
831
833
|
linkUrl?: string;
|
832
834
|
provider: Provider;
|
833
|
-
|
835
|
+
providerResponse?: ProviderResponse;
|
834
836
|
providerInfo: ProviderInfo;
|
835
837
|
}
|
836
838
|
|
@@ -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[]
|