@bigfootai/bigfoot-types 5.2.3 → 5.2.4
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/metadata/providers/salesforce.js +8 -1
- package/metadata/providers/salesforce.ts +8 -1
- package/model.js +2 -0
- package/model.ts +4 -0
- package/package.json +1 -1
@@ -37,9 +37,16 @@ exports.Salesforce = {
|
|
37
37
|
tagType: model_1.TagType.Organization,
|
38
38
|
},
|
39
39
|
{
|
40
|
-
label: 'Contact
|
40
|
+
label: 'Contact',
|
41
41
|
blockType: model_1.BlockType.Record,
|
42
42
|
tagType: model_1.TagType.Person,
|
43
|
+
tagSubType: 'contact',
|
44
|
+
},
|
45
|
+
{
|
46
|
+
label: 'User',
|
47
|
+
blockType: model_1.BlockType.Record,
|
48
|
+
tagType: model_1.TagType.Person,
|
49
|
+
tagSubType: 'user',
|
43
50
|
},
|
44
51
|
],
|
45
52
|
},
|
@@ -37,9 +37,16 @@ export const Salesforce: Provider = {
|
|
37
37
|
tagType: TagType.Organization,
|
38
38
|
},
|
39
39
|
{
|
40
|
-
label: 'Contact
|
40
|
+
label: 'Contact',
|
41
41
|
blockType: BlockType.Record,
|
42
42
|
tagType: TagType.Person,
|
43
|
+
tagSubType: 'contact',
|
44
|
+
},
|
45
|
+
{
|
46
|
+
label: 'User',
|
47
|
+
blockType: BlockType.Record,
|
48
|
+
tagType: TagType.Person,
|
49
|
+
tagSubType: 'user',
|
43
50
|
},
|
44
51
|
],
|
45
52
|
},
|
package/model.js
CHANGED
@@ -340,6 +340,7 @@ type ExternalIdLink {
|
|
340
340
|
application: String!
|
341
341
|
label: String
|
342
342
|
tagType: TagType
|
343
|
+
tagSubType: String
|
343
344
|
blockType: BlockType
|
344
345
|
}`;
|
345
346
|
exports.TaskStepInputQL = `
|
@@ -615,6 +616,7 @@ exports.ExternalIdQL = `
|
|
615
616
|
type ExternalId {
|
616
617
|
label: String!
|
617
618
|
tagType: TagType!
|
619
|
+
tagSubType: String
|
618
620
|
blockType: BlockType!
|
619
621
|
}`;
|
620
622
|
exports.ProviderApplicationQL = `
|
package/model.ts
CHANGED
@@ -398,12 +398,14 @@ type ExternalIdLink {
|
|
398
398
|
application: String!
|
399
399
|
label: String
|
400
400
|
tagType: TagType
|
401
|
+
tagSubType: String
|
401
402
|
blockType: BlockType
|
402
403
|
}`;
|
403
404
|
export interface ExternalIdLink {
|
404
405
|
// Don't store these fields
|
405
406
|
label?: string;
|
406
407
|
tagType?: TagType;
|
408
|
+
tagSubType?: string;
|
407
409
|
blockType?: BlockType;
|
408
410
|
// Store these fields
|
409
411
|
externalId: string;
|
@@ -909,11 +911,13 @@ export const ExternalIdQL = `
|
|
909
911
|
type ExternalId {
|
910
912
|
label: String!
|
911
913
|
tagType: TagType!
|
914
|
+
tagSubType: String
|
912
915
|
blockType: BlockType!
|
913
916
|
}`;
|
914
917
|
export interface ExternalId {
|
915
918
|
label: string;
|
916
919
|
tagType: TagType;
|
920
|
+
tagSubType?: string;
|
917
921
|
blockType: BlockType;
|
918
922
|
}
|
919
923
|
|