@bigfootai/bigfoot-types 4.5.1 → 4.5.3
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;
|
@@ -550,7 +551,7 @@ type TagRecommendation {
|
|
550
551
|
}`;
|
551
552
|
exports.ProviderRecommendationQL = `
|
552
553
|
type ProviderRecommendation {
|
553
|
-
|
554
|
+
tagRecommendationIds: [String]
|
554
555
|
linkUrl: String
|
555
556
|
provider: Provider!
|
556
557
|
providerResponse: ProviderResponse
|
@@ -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
|
|
@@ -820,14 +822,14 @@ export interface TagRecommendation {
|
|
820
822
|
|
821
823
|
export const ProviderRecommendationQL = `
|
822
824
|
type ProviderRecommendation {
|
823
|
-
|
825
|
+
tagRecommendationIds: [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
|
+
tagRecommendationIds?: string[];
|
831
833
|
linkUrl?: string;
|
832
834
|
provider: Provider;
|
833
835
|
providerResponse?: ProviderResponse;
|
@@ -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[]
|