@bigfootai/bigfoot-types 5.2.2 → 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.
@@ -37,9 +37,16 @@ exports.Salesforce = {
37
37
  tagType: model_1.TagType.Organization,
38
38
  },
39
39
  {
40
- label: 'Contact/User',
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/User',
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 = `
@@ -1844,6 +1846,7 @@ ${exports.StandardObjectsQL}
1844
1846
  ${exports.CredentialQL}
1845
1847
  ${exports.ChangesInputQL}
1846
1848
  ${exports.ChangesQL}
1849
+ ${exports.FindExternalTagReferencesQL}
1847
1850
  ${exports.PersonReferenceQL}
1848
1851
  ${exports.MetadataQL}
1849
1852
  ${exports.FolderQL}
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
 
@@ -3290,6 +3294,7 @@ ${StandardObjectsQL}
3290
3294
  ${CredentialQL}
3291
3295
  ${ChangesInputQL}
3292
3296
  ${ChangesQL}
3297
+ ${FindExternalTagReferencesQL}
3293
3298
  ${PersonReferenceQL}
3294
3299
  ${MetadataQL}
3295
3300
  ${FolderQL}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.2.2",
4
+ "version": "5.2.4",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",