@bigfootai/bigfoot-types 4.4.23 → 4.4.24
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 +5 -0
- package/model.ts +9 -0
- package/package.json +1 -1
package/model.js
CHANGED
@@ -408,6 +408,7 @@ exports.SharedPrimitiveFields = `${exports.PrimitiveFields}
|
|
408
408
|
class SharedPrimitive extends Primitive {
|
409
409
|
constructor(sharingTags) {
|
410
410
|
super();
|
411
|
+
this._tagIds = [];
|
411
412
|
this.sharingTags = sharingTags;
|
412
413
|
this._sharingTagIds = [];
|
413
414
|
// Add sharing tags to the internal array
|
@@ -471,6 +472,9 @@ exports.Sync = Sync;
|
|
471
472
|
exports.ProviderApplicationQL = `
|
472
473
|
type ProviderApplication {
|
473
474
|
name: String!
|
475
|
+
label: String!
|
476
|
+
description: String!
|
477
|
+
iconUrl: String
|
474
478
|
sobjects: StandardObjects!
|
475
479
|
linkSubscriptions: [String]!
|
476
480
|
recordTypeSubscriptions: [String]!
|
@@ -480,6 +484,7 @@ type Provider {${exports.PrimitiveFields}
|
|
480
484
|
name: String!
|
481
485
|
label: String!
|
482
486
|
description: String!
|
487
|
+
iconUrl: String
|
483
488
|
instanceUrl: String!
|
484
489
|
applications: [ProviderApplication]!
|
485
490
|
tableMetadata: [TableMetadata]!
|
package/model.ts
CHANGED
@@ -599,6 +599,7 @@ export class SharedPrimitive extends Primitive {
|
|
599
599
|
constructor(sharingTags: SharingTag[]) {
|
600
600
|
super();
|
601
601
|
|
602
|
+
this._tagIds = [];
|
602
603
|
this.sharingTags = sharingTags;
|
603
604
|
this._sharingTagIds = [];
|
604
605
|
|
@@ -685,12 +686,18 @@ export class Sync extends Primitive {
|
|
685
686
|
export const ProviderApplicationQL = `
|
686
687
|
type ProviderApplication {
|
687
688
|
name: String!
|
689
|
+
label: String!
|
690
|
+
description: String!
|
691
|
+
iconUrl: String
|
688
692
|
sobjects: StandardObjects!
|
689
693
|
linkSubscriptions: [String]!
|
690
694
|
recordTypeSubscriptions: [String]!
|
691
695
|
}`;
|
692
696
|
export interface ProviderApplication {
|
693
697
|
name: string;
|
698
|
+
label: string;
|
699
|
+
description: string;
|
700
|
+
iconUrl?: string;
|
694
701
|
sobjects: StandardObjects;
|
695
702
|
linkSubscriptions: string[];
|
696
703
|
recordTypeSubscriptions: string[];
|
@@ -701,6 +708,7 @@ type Provider {${PrimitiveFields}
|
|
701
708
|
name: String!
|
702
709
|
label: String!
|
703
710
|
description: String!
|
711
|
+
iconUrl: String
|
704
712
|
instanceUrl: String!
|
705
713
|
applications: [ProviderApplication]!
|
706
714
|
tableMetadata: [TableMetadata]!
|
@@ -709,6 +717,7 @@ export class Provider extends Primitive {
|
|
709
717
|
name: string;
|
710
718
|
label: string;
|
711
719
|
description: string;
|
720
|
+
iconUrl?: string;
|
712
721
|
instanceUrl: string;
|
713
722
|
applications: ProviderApplication[];
|
714
723
|
tableMetadata: TableMetadata[];
|