@bigfootai/bigfoot-types 4.9.12 → 4.9.14
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/tables/case.js +3 -3
- package/metadata/tables/case.ts +3 -3
- package/metadata/tables/issue.js +3 -3
- package/metadata/tables/issue.ts +3 -3
- package/metadata/tables/opportunity.js +2 -2
- package/metadata/tables/opportunity.ts +2 -2
- package/model.js +8 -1
- package/model.ts +12 -0
- package/package.json +1 -1
- /package/metadata/{documents → dashboards}/account_overview.js +0 -0
- /package/metadata/{documents → dashboards}/account_overview.ts +0 -0
package/metadata/tables/case.js
CHANGED
@@ -95,7 +95,7 @@ exports.Case = {
|
|
95
95
|
label: 'Account',
|
96
96
|
name: 'Account.Name',
|
97
97
|
description: 'Name of the account associated with this case.',
|
98
|
-
fieldType: model_1.FieldType.
|
98
|
+
fieldType: model_1.FieldType.Lookup,
|
99
99
|
readOnly: false,
|
100
100
|
important: true,
|
101
101
|
status: false,
|
@@ -104,7 +104,7 @@ exports.Case = {
|
|
104
104
|
label: 'Contact Name',
|
105
105
|
name: 'Contact.Name',
|
106
106
|
description: 'Name of the contact associated with this case.',
|
107
|
-
fieldType: model_1.FieldType.
|
107
|
+
fieldType: model_1.FieldType.Lookup,
|
108
108
|
readOnly: false,
|
109
109
|
important: true,
|
110
110
|
status: false,
|
@@ -113,7 +113,7 @@ exports.Case = {
|
|
113
113
|
label: 'Owner',
|
114
114
|
name: 'Owner.Name',
|
115
115
|
description: 'Name of the User who has been assigned to work on this case.',
|
116
|
-
fieldType: model_1.FieldType.
|
116
|
+
fieldType: model_1.FieldType.Lookup,
|
117
117
|
readOnly: false,
|
118
118
|
important: true,
|
119
119
|
status: false,
|
package/metadata/tables/case.ts
CHANGED
@@ -100,7 +100,7 @@ export const Case: TableMetadata = {
|
|
100
100
|
label: 'Account',
|
101
101
|
name: 'Account.Name',
|
102
102
|
description: 'Name of the account associated with this case.',
|
103
|
-
fieldType: FieldType.
|
103
|
+
fieldType: FieldType.Lookup,
|
104
104
|
readOnly: false,
|
105
105
|
important: true,
|
106
106
|
status: false,
|
@@ -109,7 +109,7 @@ export const Case: TableMetadata = {
|
|
109
109
|
label: 'Contact Name',
|
110
110
|
name: 'Contact.Name',
|
111
111
|
description: 'Name of the contact associated with this case.',
|
112
|
-
fieldType: FieldType.
|
112
|
+
fieldType: FieldType.Lookup,
|
113
113
|
readOnly: false,
|
114
114
|
important: true,
|
115
115
|
status: false,
|
@@ -119,7 +119,7 @@ export const Case: TableMetadata = {
|
|
119
119
|
name: 'Owner.Name',
|
120
120
|
description:
|
121
121
|
'Name of the User who has been assigned to work on this case.',
|
122
|
-
fieldType: FieldType.
|
122
|
+
fieldType: FieldType.Lookup,
|
123
123
|
readOnly: false,
|
124
124
|
important: true,
|
125
125
|
status: false,
|
package/metadata/tables/issue.js
CHANGED
@@ -105,7 +105,7 @@ exports.Case = {
|
|
105
105
|
label: 'Account',
|
106
106
|
name: 'Account.Name',
|
107
107
|
description: 'Name of the account associated with this issue.',
|
108
|
-
fieldType: model_1.FieldType.
|
108
|
+
fieldType: model_1.FieldType.Lookup,
|
109
109
|
readOnly: false,
|
110
110
|
important: true,
|
111
111
|
status: false,
|
@@ -114,7 +114,7 @@ exports.Case = {
|
|
114
114
|
label: 'Contact Name',
|
115
115
|
name: 'Contact.Name',
|
116
116
|
description: 'Name of the contact associated with this issue.',
|
117
|
-
fieldType: model_1.FieldType.
|
117
|
+
fieldType: model_1.FieldType.Lookup,
|
118
118
|
readOnly: false,
|
119
119
|
important: true,
|
120
120
|
status: false,
|
@@ -123,7 +123,7 @@ exports.Case = {
|
|
123
123
|
label: 'Owner',
|
124
124
|
name: 'Owner.Name',
|
125
125
|
description: 'Name of the User who has been assigned to work on this issue.',
|
126
|
-
fieldType: model_1.FieldType.
|
126
|
+
fieldType: model_1.FieldType.Lookup,
|
127
127
|
readOnly: false,
|
128
128
|
important: true,
|
129
129
|
status: false,
|
package/metadata/tables/issue.ts
CHANGED
@@ -110,7 +110,7 @@ export const Case: TableMetadata = {
|
|
110
110
|
label: 'Account',
|
111
111
|
name: 'Account.Name',
|
112
112
|
description: 'Name of the account associated with this issue.',
|
113
|
-
fieldType: FieldType.
|
113
|
+
fieldType: FieldType.Lookup,
|
114
114
|
readOnly: false,
|
115
115
|
important: true,
|
116
116
|
status: false,
|
@@ -119,7 +119,7 @@ export const Case: TableMetadata = {
|
|
119
119
|
label: 'Contact Name',
|
120
120
|
name: 'Contact.Name',
|
121
121
|
description: 'Name of the contact associated with this issue.',
|
122
|
-
fieldType: FieldType.
|
122
|
+
fieldType: FieldType.Lookup,
|
123
123
|
readOnly: false,
|
124
124
|
important: true,
|
125
125
|
status: false,
|
@@ -129,7 +129,7 @@ export const Case: TableMetadata = {
|
|
129
129
|
name: 'Owner.Name',
|
130
130
|
description:
|
131
131
|
'Name of the User who has been assigned to work on this issue.',
|
132
|
-
fieldType: FieldType.
|
132
|
+
fieldType: FieldType.Lookup,
|
133
133
|
readOnly: false,
|
134
134
|
important: true,
|
135
135
|
status: false,
|
@@ -27,7 +27,7 @@ exports.Opportunity = {
|
|
27
27
|
label: 'Account',
|
28
28
|
name: 'Account.Name',
|
29
29
|
description: 'Name of the account associated with this opportunity.',
|
30
|
-
fieldType: model_1.FieldType.
|
30
|
+
fieldType: model_1.FieldType.Lookup,
|
31
31
|
readOnly: false,
|
32
32
|
important: true,
|
33
33
|
status: false,
|
@@ -117,7 +117,7 @@ exports.Opportunity = {
|
|
117
117
|
label: 'Owner',
|
118
118
|
name: 'Owner.Name',
|
119
119
|
description: 'Name of the User who has been assigned to work on this opportunity.',
|
120
|
-
fieldType: model_1.FieldType.
|
120
|
+
fieldType: model_1.FieldType.Lookup,
|
121
121
|
readOnly: false,
|
122
122
|
important: true,
|
123
123
|
status: false,
|
@@ -31,7 +31,7 @@ export const Opportunity: TableMetadata = {
|
|
31
31
|
name: 'Account.Name',
|
32
32
|
description:
|
33
33
|
'Name of the account associated with this opportunity.',
|
34
|
-
fieldType: FieldType.
|
34
|
+
fieldType: FieldType.Lookup,
|
35
35
|
readOnly: false,
|
36
36
|
important: true,
|
37
37
|
status: false,
|
@@ -122,7 +122,7 @@ export const Opportunity: TableMetadata = {
|
|
122
122
|
name: 'Owner.Name',
|
123
123
|
description:
|
124
124
|
'Name of the User who has been assigned to work on this opportunity.',
|
125
|
-
fieldType: FieldType.
|
125
|
+
fieldType: FieldType.Lookup,
|
126
126
|
readOnly: false,
|
127
127
|
important: true,
|
128
128
|
status: false,
|
package/model.js
CHANGED
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.CredentialQL = exports.StandardObjectsQL = exports.ProviderResponseQL = exports.ProviderRequestQL = exports.ProviderInfoQL = exports.EntityEntryQL = exports.EntityEntryFields = exports.RelationEntryQL = exports.ArgumentEntryQL = exports.EntityReferenceQL = exports.DocumentSentimentQL = exports.TaskStepQL = exports.TaskStepInputQL = exports.ReactionQL = exports.ReactionSkinToneQL = exports.BusinessObjectLinkQL = exports.BusinessObjectLinkInputQL = exports.SharingTenantQL = exports.TenantSettingQL = exports.SharingDomainQL = exports.SharingTagQL = exports.SharingTagInputQL = exports.InviteSharingTagInputQL = exports.EditorQL = exports.EditorInputQL = exports.HighlightQL = exports.RelationType = exports.EntityType = exports.RecordType = exports.ThumbsDirection = exports.ProcessingStage = exports.MutationType = exports.MarkType = exports.DocumentType = exports.RecurrenceRFC = exports.TagRecommendationType = exports.InviteStatus = exports.OrderByDirection = exports.SharingApproach = exports.StepStatus = exports.TaskStatus = exports.TaskPriority = exports.AccessType = exports.SharingLevel = exports.ClientType = exports.ExportType = exports.TagType = exports.UpsertType = exports.RecommendationType = exports.BlockType = void 0;
|
4
4
|
exports.BlockProcessingRequest = exports.Block = exports.BlockFieldsForUpsert = exports.BlockFields = exports.Article = exports.ArticleQL = exports.Person = exports.Organization = exports.Domain = exports.DomainQL = exports.Tenant = exports.TenantQL = exports.Recommendation = exports.RecommendationQL = exports.ShareRecommendationQL = exports.UpsertRecommendationQL = exports.ConnectRecommendationQL = exports.TenantLight = exports.TenantLightQL = exports.TagRecommendationQL = exports.Tag = exports.TagQL = exports.TagFieldsJustSharing = exports.TagFieldsWithoutSharing = exports.Provider = exports.ProviderQL = exports.ProviderApplicationQL = exports.DashboardTagSubscriptionQL = exports.Sync = exports.SyncQL = exports.Search = exports.SearchQL = exports.Folder = exports.FolderQL = exports.Metadata = exports.MetadataQL = exports.MetadataFields = exports.SharedPrimitive = exports.SharedPrimitiveFieldsForUpsert = exports.SharedPrimitiveFields = exports.Primitive = exports.PrimitiveFieldsForUpsert = exports.PrimitiveFields = exports.PersonReferenceQL = exports.PersonReferenceFields = exports.ChangesQL = exports.ChangesInputQL = exports.ReferenceBlockQL = exports.ReferenceBlockInputQL = exports.ConnectedProviderQL = void 0;
|
5
5
|
exports.TableQL = exports.Record = exports.RecordQL = exports.TableMetadata = exports.TableMetadataQL = exports.FieldValueQL = exports.FieldQL = exports.OptionQL = exports.FieldVariation = exports.FieldType = exports.Template = exports.TemplateQL = exports.DashboardMetadata = exports.DashboardMetadataQL = exports.DocumentMetadata = exports.DocumentMetadataQL = exports.BlockDescriptionQL = exports.Website = exports.WebsiteQL = exports.Dashboard = exports.DashboardQL = exports.BlockDataQL = exports.Document = exports.DocumentQL = exports.Thread = exports.Todo = exports.Calendar = exports.CalendarQL = exports.Event = exports.EventQL = exports.PersonAcceptanceQL = exports.ResponseStatus = exports.EventStatus = exports.Conference = exports.ConferenceQL = exports.ConferenceEntrypointQL = exports.TranscriptionQL = exports.TranscriptionEntryQL = exports.Task = exports.TaskQL = exports.TaskFieldsForUpsert = exports.TaskFields = exports.Note = exports.NoteQL = exports.BusinessObject = exports.BusinessObjectQL = exports.BusinessObjectFields = exports.BusinessObjectIngestionRequest = exports.History = exports.BlockProcessingResponse = void 0;
|
6
|
-
exports.GraphQLTypes = exports.UpdateTagSharingInputQL = exports.SearchInputQL = exports.SearchTagsInputQL = exports.ArchiveSearchOutputQL = exports.ArchiveSearchInputQL = exports.FindSearchesInputQL = exports.FindSearchInputQL = exports.UpsertSearchInputQL = exports.ArchiveFolderOutputQL = exports.ArchiveFolderInputQL = exports.FindFoldersInputQL = exports.FindFolderInputQL = exports.UpsertFolderInputQL = exports.ArchiveTaskOutputQL = exports.ArchiveTaskInputQL = exports.FindTasksInputQL = exports.FindTaskInputQL = exports.UpdateTaskInputQL = exports.DeleteSharingTagInputQL = exports.SetSharingTagInputQL = exports.MergeTagInputQL = exports.ArchiveTagOutputQL = exports.ArchiveTagInputQL = exports.FindTagsInputQL = exports.FindTagInputQL = exports.UpsertTagInputQL = exports.SharingTenantInputQL = exports.SharingDomainInputQL = exports.FindSyncInputQL = exports.FindProviderInputQL = exports.ArchiveRecommendationOutputQL = exports.ArchiveRecommendationInputQL = exports.UpdateRecommendationInputQL = exports.ArchiveNoteOutputQL = exports.ArchiveNoteInputQL = exports.FindNotesInputQL = exports.FindNoteInputQL = exports.UpsertNoteInputQL = exports.FindDocumentInputQL = exports.FindEventInputQL = exports.FindCalendarInputQL = exports.FindArticlesInputQL = exports.FindArticleInputQL = exports.FindDomainInputQL = exports.FindTenantInputQL = exports.FindRecordInputQL = exports.Table = void 0;
|
6
|
+
exports.GraphQLTypes = exports.UpdateTagSharingInputQL = exports.SearchInputQL = exports.SearchTagsInputQL = exports.ArchiveSearchOutputQL = exports.ArchiveSearchInputQL = exports.FindSearchesInputQL = exports.FindSearchInputQL = exports.UpsertSearchInputQL = exports.ArchiveFolderOutputQL = exports.ArchiveFolderInputQL = exports.FindFoldersInputQL = exports.FindFolderInputQL = exports.UpsertFolderInputQL = exports.ArchiveTaskOutputQL = exports.ArchiveTaskInputQL = exports.FindTasksInputQL = exports.FindTaskInputQL = exports.UpdateTaskInputQL = exports.DeleteSharingTagInputQL = exports.SetSharingTagInputQL = exports.MergeTagInputQL = exports.ArchiveTagOutputQL = exports.ArchiveTagInputQL = exports.FindTagsInputQL = exports.FindTagInputQL = exports.UpsertTagInputQL = exports.SharingTenantInputQL = exports.SharingDomainInputQL = exports.FindSyncInputQL = exports.FindProviderInputQL = exports.ArchiveRecommendationOutputQL = exports.ArchiveRecommendationInputQL = exports.UpdateRecommendationInputQL = exports.ArchiveNoteOutputQL = exports.ArchiveNoteInputQL = exports.FindNotesInputQL = exports.FindNoteInputQL = exports.UpsertNoteInputQL = exports.FindDashboardInputQL = exports.FindDocumentInputQL = exports.FindEventInputQL = exports.FindCalendarInputQL = exports.FindArticlesInputQL = exports.FindArticleInputQL = exports.FindDomainInputQL = exports.FindTenantInputQL = exports.FindRecordInputQL = exports.Table = void 0;
|
7
7
|
const uuid_1 = require("uuid");
|
8
8
|
/*
|
9
9
|
These are the core primitives of our model. These represent the entities that show
|
@@ -1201,6 +1201,7 @@ var FieldType;
|
|
1201
1201
|
FieldType["Text"] = "input";
|
1202
1202
|
FieldType["Select"] = "select";
|
1203
1203
|
FieldType["Checkbox"] = "checkbox";
|
1204
|
+
FieldType["Lookup"] = "lookup";
|
1204
1205
|
})(FieldType || (exports.FieldType = FieldType = {}));
|
1205
1206
|
var FieldVariation;
|
1206
1207
|
(function (FieldVariation) {
|
@@ -1316,6 +1317,11 @@ input FindDocumentInput {
|
|
1316
1317
|
_id: String!
|
1317
1318
|
archived: Boolean
|
1318
1319
|
}`;
|
1320
|
+
exports.FindDashboardInputQL = `
|
1321
|
+
input FindDashboardInput {
|
1322
|
+
_id: String!
|
1323
|
+
archived: Boolean
|
1324
|
+
}`;
|
1319
1325
|
exports.UpsertNoteInputQL = `
|
1320
1326
|
input UpsertNoteInput {
|
1321
1327
|
_id: String
|
@@ -1666,6 +1672,7 @@ ${exports.FindCalendarInputQL}
|
|
1666
1672
|
${exports.FindEventInputQL}
|
1667
1673
|
${exports.UpsertNoteInputQL}
|
1668
1674
|
${exports.FindDocumentInputQL}
|
1675
|
+
${exports.FindDashboardInputQL}
|
1669
1676
|
${exports.FindNoteInputQL}
|
1670
1677
|
${exports.FindNotesInputQL}
|
1671
1678
|
${exports.ArchiveNoteInputQL}
|
package/model.ts
CHANGED
@@ -2124,6 +2124,7 @@ export enum FieldType {
|
|
2124
2124
|
Text = 'input',
|
2125
2125
|
Select = 'select',
|
2126
2126
|
Checkbox = 'checkbox',
|
2127
|
+
Lookup = 'lookup',
|
2127
2128
|
}
|
2128
2129
|
|
2129
2130
|
export enum FieldVariation {
|
@@ -2366,6 +2367,16 @@ export interface FindDocumentInput {
|
|
2366
2367
|
archived?: boolean;
|
2367
2368
|
}
|
2368
2369
|
|
2370
|
+
export const FindDashboardInputQL = `
|
2371
|
+
input FindDashboardInput {
|
2372
|
+
_id: String!
|
2373
|
+
archived: Boolean
|
2374
|
+
}`;
|
2375
|
+
export interface FindDashboardInput {
|
2376
|
+
_id: string;
|
2377
|
+
archived?: boolean;
|
2378
|
+
}
|
2379
|
+
|
2369
2380
|
export const UpsertNoteInputQL = `
|
2370
2381
|
input UpsertNoteInput {
|
2371
2382
|
_id: String
|
@@ -2957,6 +2968,7 @@ ${FindCalendarInputQL}
|
|
2957
2968
|
${FindEventInputQL}
|
2958
2969
|
${UpsertNoteInputQL}
|
2959
2970
|
${FindDocumentInputQL}
|
2971
|
+
${FindDashboardInputQL}
|
2960
2972
|
${FindNoteInputQL}
|
2961
2973
|
${FindNotesInputQL}
|
2962
2974
|
${ArchiveNoteInputQL}
|
package/package.json
CHANGED
File without changes
|
File without changes
|