@bigfootai/bigfoot-types 5.2.3 → 5.2.5
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 +3 -0
- package/model.ts +6 -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,7 +340,9 @@ type ExternalIdLink {
|
|
340
340
|
application: String!
|
341
341
|
label: String
|
342
342
|
tagType: TagType
|
343
|
+
tagSubType: String
|
343
344
|
blockType: BlockType
|
345
|
+
connectionId: String
|
344
346
|
}`;
|
345
347
|
exports.TaskStepInputQL = `
|
346
348
|
input TaskStepInput {
|
@@ -615,6 +617,7 @@ exports.ExternalIdQL = `
|
|
615
617
|
type ExternalId {
|
616
618
|
label: String!
|
617
619
|
tagType: TagType!
|
620
|
+
tagSubType: String
|
618
621
|
blockType: BlockType!
|
619
622
|
}`;
|
620
623
|
exports.ProviderApplicationQL = `
|
package/model.ts
CHANGED
@@ -398,13 +398,17 @@ type ExternalIdLink {
|
|
398
398
|
application: String!
|
399
399
|
label: String
|
400
400
|
tagType: TagType
|
401
|
+
tagSubType: String
|
401
402
|
blockType: BlockType
|
403
|
+
connectionId: String
|
402
404
|
}`;
|
403
405
|
export interface ExternalIdLink {
|
404
406
|
// Don't store these fields
|
405
407
|
label?: string;
|
406
408
|
tagType?: TagType;
|
409
|
+
tagSubType?: string;
|
407
410
|
blockType?: BlockType;
|
411
|
+
connectionId?: string;
|
408
412
|
// Store these fields
|
409
413
|
externalId: string;
|
410
414
|
instanceId: string;
|
@@ -909,11 +913,13 @@ export const ExternalIdQL = `
|
|
909
913
|
type ExternalId {
|
910
914
|
label: String!
|
911
915
|
tagType: TagType!
|
916
|
+
tagSubType: String
|
912
917
|
blockType: BlockType!
|
913
918
|
}`;
|
914
919
|
export interface ExternalId {
|
915
920
|
label: string;
|
916
921
|
tagType: TagType;
|
922
|
+
tagSubType?: string;
|
917
923
|
blockType: BlockType;
|
918
924
|
}
|
919
925
|
|