@bigfootai/bigfoot-types 5.2.1 → 5.2.3

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.
@@ -107,6 +107,7 @@ exports.Case = {
107
107
  name: 'Contact.Name',
108
108
  description: 'Name of the contact associated with this case.',
109
109
  tagType: model_1.TagType.Person,
110
+ tagSubType: 'contact',
110
111
  fieldType: model_1.FieldType.Lookup,
111
112
  readOnly: false,
112
113
  important: true,
@@ -117,6 +118,7 @@ exports.Case = {
117
118
  name: 'Owner.Name',
118
119
  description: 'Name of the User who has been assigned to work on this case.',
119
120
  tagType: model_1.TagType.Person,
121
+ tagSubType: 'user',
120
122
  fieldType: model_1.FieldType.Lookup,
121
123
  readOnly: false,
122
124
  important: true,
@@ -113,6 +113,7 @@ export const Case: TableMetadata = {
113
113
  name: 'Contact.Name',
114
114
  description: 'Name of the contact associated with this case.',
115
115
  tagType: TagType.Person,
116
+ tagSubType: 'contact',
116
117
  fieldType: FieldType.Lookup,
117
118
  readOnly: false,
118
119
  important: true,
@@ -124,6 +125,7 @@ export const Case: TableMetadata = {
124
125
  description:
125
126
  'Name of the User who has been assigned to work on this case.',
126
127
  tagType: TagType.Person,
128
+ tagSubType: 'user',
127
129
  fieldType: FieldType.Lookup,
128
130
  readOnly: false,
129
131
  important: true,
@@ -118,6 +118,7 @@ exports.Issue = {
118
118
  name: 'Contact.Name',
119
119
  description: 'Name of the contact associated with this issue.',
120
120
  tagType: model_1.TagType.Person,
121
+ tagSubType: 'contact',
121
122
  fieldType: model_1.FieldType.Lookup,
122
123
  readOnly: false,
123
124
  important: true,
@@ -128,6 +129,7 @@ exports.Issue = {
128
129
  name: 'Owner.Name',
129
130
  description: 'Name of the User who has been assigned to work on this issue.',
130
131
  tagType: model_1.TagType.Person,
132
+ tagSubType: 'user',
131
133
  fieldType: model_1.FieldType.Lookup,
132
134
  readOnly: false,
133
135
  important: true,
@@ -124,6 +124,7 @@ export const Issue: TableMetadata = {
124
124
  name: 'Contact.Name',
125
125
  description: 'Name of the contact associated with this issue.',
126
126
  tagType: TagType.Person,
127
+ tagSubType: 'contact',
127
128
  fieldType: FieldType.Lookup,
128
129
  readOnly: false,
129
130
  important: true,
@@ -135,6 +136,7 @@ export const Issue: TableMetadata = {
135
136
  description:
136
137
  'Name of the User who has been assigned to work on this issue.',
137
138
  tagType: TagType.Person,
139
+ tagSubType: 'user',
138
140
  fieldType: FieldType.Lookup,
139
141
  readOnly: false,
140
142
  important: true,
@@ -121,6 +121,7 @@ exports.Opportunity = {
121
121
  name: 'Owner.Name',
122
122
  description: 'Name of the User who has been assigned to work on this opportunity.',
123
123
  tagType: model_1.TagType.Person,
124
+ tagSubType: 'user',
124
125
  fieldType: model_1.FieldType.Lookup,
125
126
  readOnly: false,
126
127
  important: true,
@@ -127,6 +127,7 @@ export const Opportunity: TableMetadata = {
127
127
  description:
128
128
  'Name of the User who has been assigned to work on this opportunity.',
129
129
  tagType: TagType.Person,
130
+ tagSubType: 'user',
130
131
  fieldType: FieldType.Lookup,
131
132
  readOnly: false,
132
133
  important: true,
package/model.js CHANGED
@@ -449,6 +449,8 @@ type PersonReference {${exports.PersonReferenceFields}
449
449
  exports.FindExternalTagReferencesQL = `
450
450
  input FindExternalTagReferences {
451
451
  search: String
452
+ tagType: TagType!
453
+ tagSubType: String
452
454
  connectionId: String!
453
455
  }`;
454
456
  exports.PrimitiveFields = `
@@ -1277,6 +1279,7 @@ type Field {
1277
1279
  status: Boolean
1278
1280
  priority: Boolean
1279
1281
  tagType: TagType
1282
+ tagSubType: String
1280
1283
  fieldType: String!
1281
1284
  fieldVariation: String
1282
1285
  maximumCharacters: Int
@@ -1841,6 +1844,7 @@ ${exports.StandardObjectsQL}
1841
1844
  ${exports.CredentialQL}
1842
1845
  ${exports.ChangesInputQL}
1843
1846
  ${exports.ChangesQL}
1847
+ ${exports.FindExternalTagReferencesQL}
1844
1848
  ${exports.PersonReferenceQL}
1845
1849
  ${exports.MetadataQL}
1846
1850
  ${exports.FolderQL}
package/model.ts CHANGED
@@ -643,10 +643,14 @@ export interface ExternalTagReferenceRequest {
643
643
  export const FindExternalTagReferencesQL = `
644
644
  input FindExternalTagReferences {
645
645
  search: String
646
+ tagType: TagType!
647
+ tagSubType: String
646
648
  connectionId: String!
647
649
  }`;
648
650
  export interface FindExternalTagReferences {
649
651
  search?: string;
652
+ tagType: TagType;
653
+ tagSubType?: string;
650
654
  connectionId: string;
651
655
  }
652
656
 
@@ -2243,6 +2247,7 @@ type Field {
2243
2247
  status: Boolean
2244
2248
  priority: Boolean
2245
2249
  tagType: TagType
2250
+ tagSubType: String
2246
2251
  fieldType: String!
2247
2252
  fieldVariation: String
2248
2253
  maximumCharacters: Int
@@ -2257,6 +2262,7 @@ export interface Field {
2257
2262
  status?: boolean;
2258
2263
  priority?: boolean;
2259
2264
  tagType?: TagType;
2265
+ tagSubType?: string;
2260
2266
  fieldType: FieldType;
2261
2267
  fieldVariation?: FieldVariation;
2262
2268
  maximumCharacters?: number;
@@ -3284,6 +3290,7 @@ ${StandardObjectsQL}
3284
3290
  ${CredentialQL}
3285
3291
  ${ChangesInputQL}
3286
3292
  ${ChangesQL}
3293
+ ${FindExternalTagReferencesQL}
3287
3294
  ${PersonReferenceQL}
3288
3295
  ${MetadataQL}
3289
3296
  ${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.1",
4
+ "version": "5.2.3",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",