@bigfootai/bigfoot-types 4.4.23 → 4.4.25
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 +6 -0
- package/model.ts +10 -0
- package/package.json +1 -1
package/model.js
CHANGED
@@ -88,6 +88,7 @@ var TagRecommendationType;
|
|
88
88
|
TagRecommendationType["TagNotFound"] = "not_found";
|
89
89
|
TagRecommendationType["MultipleTagsFound"] = "multiple_found";
|
90
90
|
TagRecommendationType["TagCreationFailed"] = "creation_failed";
|
91
|
+
TagRecommendationType["UserAssigned"] = "user_assigned";
|
91
92
|
TagRecommendationType["Ignore"] = "ignore";
|
92
93
|
})(TagRecommendationType || (exports.TagRecommendationType = TagRecommendationType = {}));
|
93
94
|
var TagRecommendationVariation;
|
@@ -408,6 +409,7 @@ exports.SharedPrimitiveFields = `${exports.PrimitiveFields}
|
|
408
409
|
class SharedPrimitive extends Primitive {
|
409
410
|
constructor(sharingTags) {
|
410
411
|
super();
|
412
|
+
this._tagIds = [];
|
411
413
|
this.sharingTags = sharingTags;
|
412
414
|
this._sharingTagIds = [];
|
413
415
|
// Add sharing tags to the internal array
|
@@ -471,6 +473,9 @@ exports.Sync = Sync;
|
|
471
473
|
exports.ProviderApplicationQL = `
|
472
474
|
type ProviderApplication {
|
473
475
|
name: String!
|
476
|
+
label: String!
|
477
|
+
description: String!
|
478
|
+
iconUrl: String
|
474
479
|
sobjects: StandardObjects!
|
475
480
|
linkSubscriptions: [String]!
|
476
481
|
recordTypeSubscriptions: [String]!
|
@@ -480,6 +485,7 @@ type Provider {${exports.PrimitiveFields}
|
|
480
485
|
name: String!
|
481
486
|
label: String!
|
482
487
|
description: String!
|
488
|
+
iconUrl: String
|
483
489
|
instanceUrl: String!
|
484
490
|
applications: [ProviderApplication]!
|
485
491
|
tableMetadata: [TableMetadata]!
|
package/model.ts
CHANGED
@@ -82,6 +82,7 @@ export enum TagRecommendationType {
|
|
82
82
|
TagNotFound = 'not_found',
|
83
83
|
MultipleTagsFound = 'multiple_found',
|
84
84
|
TagCreationFailed = 'creation_failed',
|
85
|
+
UserAssigned = 'user_assigned',
|
85
86
|
Ignore = 'ignore',
|
86
87
|
}
|
87
88
|
|
@@ -599,6 +600,7 @@ export class SharedPrimitive extends Primitive {
|
|
599
600
|
constructor(sharingTags: SharingTag[]) {
|
600
601
|
super();
|
601
602
|
|
603
|
+
this._tagIds = [];
|
602
604
|
this.sharingTags = sharingTags;
|
603
605
|
this._sharingTagIds = [];
|
604
606
|
|
@@ -685,12 +687,18 @@ export class Sync extends Primitive {
|
|
685
687
|
export const ProviderApplicationQL = `
|
686
688
|
type ProviderApplication {
|
687
689
|
name: String!
|
690
|
+
label: String!
|
691
|
+
description: String!
|
692
|
+
iconUrl: String
|
688
693
|
sobjects: StandardObjects!
|
689
694
|
linkSubscriptions: [String]!
|
690
695
|
recordTypeSubscriptions: [String]!
|
691
696
|
}`;
|
692
697
|
export interface ProviderApplication {
|
693
698
|
name: string;
|
699
|
+
label: string;
|
700
|
+
description: string;
|
701
|
+
iconUrl?: string;
|
694
702
|
sobjects: StandardObjects;
|
695
703
|
linkSubscriptions: string[];
|
696
704
|
recordTypeSubscriptions: string[];
|
@@ -701,6 +709,7 @@ type Provider {${PrimitiveFields}
|
|
701
709
|
name: String!
|
702
710
|
label: String!
|
703
711
|
description: String!
|
712
|
+
iconUrl: String
|
704
713
|
instanceUrl: String!
|
705
714
|
applications: [ProviderApplication]!
|
706
715
|
tableMetadata: [TableMetadata]!
|
@@ -709,6 +718,7 @@ export class Provider extends Primitive {
|
|
709
718
|
name: string;
|
710
719
|
label: string;
|
711
720
|
description: string;
|
721
|
+
iconUrl?: string;
|
712
722
|
instanceUrl: string;
|
713
723
|
applications: ProviderApplication[];
|
714
724
|
tableMetadata: TableMetadata[];
|