@bigfootai/bigfoot-types 5.1.41 → 5.1.42
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.
@@ -32,10 +32,15 @@ exports.Salesforce = {
|
|
32
32
|
externalStorage: true,
|
33
33
|
externalUrls: [
|
34
34
|
{
|
35
|
+
label: 'Account',
|
35
36
|
blockType: model_1.BlockType.Record,
|
36
37
|
tagType: model_1.TagType.Organization,
|
37
38
|
},
|
38
|
-
{
|
39
|
+
{
|
40
|
+
label: 'Contact/User',
|
41
|
+
blockType: model_1.BlockType.Record,
|
42
|
+
tagType: model_1.TagType.Person,
|
43
|
+
},
|
39
44
|
],
|
40
45
|
},
|
41
46
|
],
|
@@ -32,10 +32,15 @@ export const Salesforce: Provider = {
|
|
32
32
|
externalStorage: true,
|
33
33
|
externalUrls: [
|
34
34
|
{
|
35
|
+
label: 'Account',
|
35
36
|
blockType: BlockType.Record,
|
36
37
|
tagType: TagType.Organization,
|
37
38
|
},
|
38
|
-
{
|
39
|
+
{
|
40
|
+
label: 'Contact/User',
|
41
|
+
blockType: BlockType.Record,
|
42
|
+
tagType: TagType.Person,
|
43
|
+
},
|
39
44
|
],
|
40
45
|
},
|
41
46
|
],
|
package/model.js
CHANGED
package/model.ts
CHANGED
@@ -887,10 +887,12 @@ export interface DashboardTagSubscription {
|
|
887
887
|
|
888
888
|
export const ExternalUrlQL = `
|
889
889
|
type ExternalUrl {
|
890
|
+
label: String!
|
890
891
|
tagType: TagType!
|
891
892
|
blockType: BlockType!
|
892
893
|
}`;
|
893
894
|
export interface ExternalUrl {
|
895
|
+
label: string;
|
894
896
|
tagType: TagType;
|
895
897
|
blockType: BlockType;
|
896
898
|
}
|