@bigfootai/bigfoot-types 5.1.12 → 5.1.13
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.
@@ -23,6 +23,13 @@ exports.AccountOverview = {
|
|
23
23
|
metadataType: 'organization',
|
24
24
|
blockType: model_1.BlockType.Record,
|
25
25
|
},
|
26
|
+
{
|
27
|
+
name: 'opportunities',
|
28
|
+
title: 'Opportunities',
|
29
|
+
description: 'A list of opportunities associated with the account',
|
30
|
+
tagType: model_1.TagType.Person,
|
31
|
+
blockType: model_1.BlockType.Table,
|
32
|
+
},
|
26
33
|
{
|
27
34
|
name: 'opportunities',
|
28
35
|
title: 'Opportunities',
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { BlockType, DashboardMetadata } from '../../model';
|
1
|
+
import { BlockType, DashboardMetadata, TagType } from '../../model';
|
2
2
|
|
3
3
|
export const AccountOverview: DashboardMetadata = {
|
4
4
|
_id: '',
|
@@ -24,6 +24,13 @@ export const AccountOverview: DashboardMetadata = {
|
|
24
24
|
metadataType: 'organization',
|
25
25
|
blockType: BlockType.Record,
|
26
26
|
},
|
27
|
+
{
|
28
|
+
name: 'opportunities',
|
29
|
+
title: 'Opportunities',
|
30
|
+
description: 'A list of opportunities associated with the account',
|
31
|
+
tagType: TagType.Person,
|
32
|
+
blockType: BlockType.Table,
|
33
|
+
},
|
27
34
|
{
|
28
35
|
name: 'opportunities',
|
29
36
|
title: 'Opportunities',
|
package/model.js
CHANGED
package/model.ts
CHANGED
@@ -1963,7 +1963,7 @@ type BlockDescription {
|
|
1963
1963
|
title: String
|
1964
1964
|
name: String!
|
1965
1965
|
description: String!
|
1966
|
-
blockType: String
|
1966
|
+
blockType: String
|
1967
1967
|
metadataType: String
|
1968
1968
|
tagType: String
|
1969
1969
|
}`;
|
@@ -1971,7 +1971,7 @@ export interface BlockDescription {
|
|
1971
1971
|
title?: string;
|
1972
1972
|
name: string;
|
1973
1973
|
description: string;
|
1974
|
-
blockType
|
1974
|
+
blockType?: BlockType;
|
1975
1975
|
metadataType?: string;
|
1976
1976
|
tagType?: TagType;
|
1977
1977
|
}
|