@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.
@@ -69,6 +69,7 @@ exports.Google = {
69
69
  externalStorage: true,
70
70
  externalUrls: [
71
71
  {
72
+ label: 'Document',
72
73
  blockType: model_1.BlockType.Document,
73
74
  tagType: model_1.TagType.Topic,
74
75
  },
@@ -73,6 +73,7 @@ export const Google: Provider = {
73
73
  externalStorage: true,
74
74
  externalUrls: [
75
75
  {
76
+ label: 'Document',
76
77
  blockType: BlockType.Document,
77
78
  tagType: TagType.Topic,
78
79
  },
@@ -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
- { blockType: model_1.BlockType.Record, tagType: model_1.TagType.Person },
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
- { blockType: BlockType.Record, tagType: TagType.Person },
39
+ {
40
+ label: 'Contact/User',
41
+ blockType: BlockType.Record,
42
+ tagType: TagType.Person,
43
+ },
39
44
  ],
40
45
  },
41
46
  ],
package/model.js CHANGED
@@ -602,6 +602,7 @@ type DashboardTagSubscription {
602
602
  }`;
603
603
  exports.ExternalUrlQL = `
604
604
  type ExternalUrl {
605
+ label: String!
605
606
  tagType: TagType!
606
607
  blockType: BlockType!
607
608
  }`;
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
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.1.41",
4
+ "version": "5.1.42",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",