@bigfootai/bigfoot-types 4.8.17 → 4.9.1
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.
@@ -16,17 +16,18 @@ exports.AccountOverview = {
|
|
16
16
|
description: 'A short summary about the account',
|
17
17
|
blockType: model_1.BlockType.Section,
|
18
18
|
},
|
19
|
-
{
|
20
|
-
name: 'projects',
|
21
|
-
title: 'Tasks',
|
22
|
-
description: 'A list of tasks associated with this account',
|
23
|
-
blockType: model_1.BlockType.Task,
|
24
|
-
},
|
25
19
|
{
|
26
20
|
name: 'opportunities',
|
27
21
|
title: 'Opportunities',
|
28
22
|
description: 'A list of opportunities associated with the account',
|
29
|
-
|
23
|
+
metadataType: 'opportunity',
|
24
|
+
blockType: model_1.BlockType.Table,
|
25
|
+
},
|
26
|
+
{
|
27
|
+
name: 'cases',
|
28
|
+
title: 'Cases',
|
29
|
+
description: 'A list of cases associated with the account',
|
30
|
+
metadataType: 'case',
|
30
31
|
blockType: model_1.BlockType.Table,
|
31
32
|
},
|
32
33
|
],
|
@@ -36,5 +37,5 @@ exports.AccountOverview = {
|
|
36
37
|
'account briefing',
|
37
38
|
'account plan',
|
38
39
|
],
|
39
|
-
threshold: 0
|
40
|
+
threshold: 0,
|
40
41
|
};
|
@@ -15,17 +15,18 @@ export const AccountOverview: DocumentMetadata = {
|
|
15
15
|
description: 'A short summary about the account',
|
16
16
|
blockType: BlockType.Section,
|
17
17
|
},
|
18
|
-
{
|
19
|
-
name: 'projects',
|
20
|
-
title: 'Tasks',
|
21
|
-
description: 'A list of tasks associated with this account',
|
22
|
-
blockType: BlockType.Task,
|
23
|
-
},
|
24
18
|
{
|
25
19
|
name: 'opportunities',
|
26
20
|
title: 'Opportunities',
|
27
21
|
description: 'A list of opportunities associated with the account',
|
28
|
-
|
22
|
+
metadataType: 'opportunity',
|
23
|
+
blockType: BlockType.Table,
|
24
|
+
},
|
25
|
+
{
|
26
|
+
name: 'cases',
|
27
|
+
title: 'Cases',
|
28
|
+
description: 'A list of cases associated with the account',
|
29
|
+
metadataType: 'case',
|
29
30
|
blockType: BlockType.Table,
|
30
31
|
},
|
31
32
|
],
|
@@ -35,5 +36,5 @@ export const AccountOverview: DocumentMetadata = {
|
|
35
36
|
'account briefing',
|
36
37
|
'account plan',
|
37
38
|
],
|
38
|
-
threshold: 0
|
39
|
+
threshold: 0,
|
39
40
|
};
|
@@ -9,6 +9,7 @@ exports.HealthCheck = {
|
|
9
9
|
label: 'Customer Health Check',
|
10
10
|
description: 'This template should be used for customer meetings where the person is checking the satisfaction of the customer with their product or service.',
|
11
11
|
metadataType: 'healthcheck',
|
12
|
+
exportTypes: [model_1.ExportType.Document],
|
12
13
|
blockDescriptions: [
|
13
14
|
{
|
14
15
|
name: 'summary',
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { BlockType, DocumentMetadata } from '../../model';
|
1
|
+
import { BlockType, DocumentMetadata, ExportType } from '../../model';
|
2
2
|
|
3
3
|
export const HealthCheck: DocumentMetadata = {
|
4
4
|
_id: '',
|
@@ -8,6 +8,7 @@ export const HealthCheck: DocumentMetadata = {
|
|
8
8
|
description:
|
9
9
|
'This template should be used for customer meetings where the person is checking the satisfaction of the customer with their product or service.',
|
10
10
|
metadataType: 'healthcheck',
|
11
|
+
exportTypes: [ExportType.Document],
|
11
12
|
blockDescriptions: [
|
12
13
|
{
|
13
14
|
name: 'summary',
|
package/model.js
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
4
|
-
exports.
|
5
|
-
exports.
|
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 = void 0;
|
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
|
+
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.BusinessObjectLinkingToTagQL = 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
|
+
exports.FindArticlesInputQL = exports.FindArticleInputQL = exports.FindDomainInputQL = exports.FindTenantInputQL = exports.Table = 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.DocumentMetadata = exports.DocumentMetadataQL = exports.BlockDescriptionQL = exports.Website = exports.WebsiteQL = 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 = 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
|
@@ -49,6 +49,11 @@ var TagType;
|
|
49
49
|
TagType["Date"] = "date";
|
50
50
|
TagType["Unknown"] = "unknown";
|
51
51
|
})(TagType || (exports.TagType = TagType = {}));
|
52
|
+
var ExportType;
|
53
|
+
(function (ExportType) {
|
54
|
+
ExportType["Document"] = "document";
|
55
|
+
ExportType["Message"] = "message";
|
56
|
+
})(ExportType || (exports.ExportType = ExportType = {}));
|
52
57
|
var ClientType;
|
53
58
|
(function (ClientType) {
|
54
59
|
ClientType["Web"] = "web";
|
@@ -74,14 +79,14 @@ var TaskPriority;
|
|
74
79
|
})(TaskPriority || (exports.TaskPriority = TaskPriority = {}));
|
75
80
|
var TaskStatus;
|
76
81
|
(function (TaskStatus) {
|
77
|
-
TaskStatus[
|
78
|
-
TaskStatus[
|
79
|
-
TaskStatus[
|
82
|
+
TaskStatus["NotStarted"] = "not_started";
|
83
|
+
TaskStatus["InProgress"] = "in_progress";
|
84
|
+
TaskStatus["Completed"] = "completed";
|
80
85
|
})(TaskStatus || (exports.TaskStatus = TaskStatus = {}));
|
81
86
|
var StepStatus;
|
82
87
|
(function (StepStatus) {
|
83
|
-
StepStatus[
|
84
|
-
StepStatus[
|
88
|
+
StepStatus["NotStarted"] = "not_started";
|
89
|
+
StepStatus["Completed"] = "completed";
|
85
90
|
})(StepStatus || (exports.StepStatus = StepStatus = {}));
|
86
91
|
var SharingApproach;
|
87
92
|
(function (SharingApproach) {
|
@@ -326,12 +331,12 @@ type Reaction {
|
|
326
331
|
exports.TaskStepInputQL = `
|
327
332
|
input TaskStepInput {
|
328
333
|
content: String!
|
329
|
-
status:
|
334
|
+
status: String!
|
330
335
|
}`;
|
331
336
|
exports.TaskStepQL = `
|
332
337
|
type TaskStep {
|
333
338
|
content: String!
|
334
|
-
status:
|
339
|
+
status: String!
|
335
340
|
}`;
|
336
341
|
exports.DocumentSentimentQL = `
|
337
342
|
type DocumentSentiment {
|
@@ -533,7 +538,7 @@ type Search {${exports.SharedPrimitiveFields}
|
|
533
538
|
orderByAlias: String
|
534
539
|
dateDueFrom: Float
|
535
540
|
dateDueTo: Float
|
536
|
-
status:
|
541
|
+
status: String
|
537
542
|
originNoteId: String
|
538
543
|
editorId: String
|
539
544
|
editorGroupId: String
|
@@ -731,7 +736,7 @@ type Recommendation {${exports.SharedPrimitiveFields}
|
|
731
736
|
snoozed: Boolean!
|
732
737
|
thumbs: String
|
733
738
|
comment: String
|
734
|
-
status:
|
739
|
+
status: String
|
735
740
|
}`;
|
736
741
|
class Recommendation extends SharedPrimitive {
|
737
742
|
constructor(sharingTags, referenceBlock, tenantIdCreated, recommendationType) {
|
@@ -812,7 +817,7 @@ type Article {${exports.PrimitiveFields}
|
|
812
817
|
archived: Boolean!
|
813
818
|
favorite: Boolean!
|
814
819
|
snoozed: Boolean
|
815
|
-
status:
|
820
|
+
status: String
|
816
821
|
originNoteId: String
|
817
822
|
editorId: String
|
818
823
|
editorGroupId: String
|
@@ -929,7 +934,7 @@ class Note extends Block {
|
|
929
934
|
}
|
930
935
|
exports.Note = Note;
|
931
936
|
exports.TaskFields = `${exports.BlockFields}
|
932
|
-
status:
|
937
|
+
status: String!
|
933
938
|
dateDue: Float
|
934
939
|
editorId: String
|
935
940
|
editorGroupId: String
|
@@ -939,7 +944,7 @@ exports.TaskFields = `${exports.BlockFields}
|
|
939
944
|
recurrence: [String]
|
940
945
|
`;
|
941
946
|
exports.TaskFieldsForUpsert = `${exports.BlockFieldsForUpsert}
|
942
|
-
status:
|
947
|
+
status: String
|
943
948
|
dateDue: Float
|
944
949
|
snoozed: Boolean
|
945
950
|
steps: [TaskStepInput]
|
@@ -1119,11 +1124,12 @@ type BlockDescription {
|
|
1119
1124
|
name: String!
|
1120
1125
|
description: String!
|
1121
1126
|
blockType: String!
|
1122
|
-
|
1127
|
+
metadataType: String
|
1123
1128
|
}`;
|
1124
1129
|
exports.DocumentMetadataQL = `
|
1125
1130
|
type DocumentMetadata {${exports.MetadataFields}
|
1126
1131
|
blockDescriptions: [BlockDescription]!
|
1132
|
+
exportTypes: [String]
|
1127
1133
|
}`;
|
1128
1134
|
class DocumentMetadata extends Metadata {
|
1129
1135
|
constructor(label, description, metadataType, classifiers, threshold, blockDescriptions) {
|
@@ -1165,7 +1171,7 @@ exports.OptionQL = `
|
|
1165
1171
|
type Option {
|
1166
1172
|
label: String!
|
1167
1173
|
value: String!
|
1168
|
-
status:
|
1174
|
+
status: String
|
1169
1175
|
priority: String
|
1170
1176
|
}`;
|
1171
1177
|
exports.FieldQL = `
|
@@ -1446,7 +1452,7 @@ input UpsertSearchInput {
|
|
1446
1452
|
orderByAlias: String
|
1447
1453
|
dateDueFrom: Float
|
1448
1454
|
dateDueTo: Float
|
1449
|
-
status:
|
1455
|
+
status: String
|
1450
1456
|
editorId: String
|
1451
1457
|
editorGroupId: String
|
1452
1458
|
parentId: String
|
@@ -1509,7 +1515,7 @@ input SearchInput {
|
|
1509
1515
|
orderByAlias: String
|
1510
1516
|
dateDueFrom: Float
|
1511
1517
|
dateDueTo: Float
|
1512
|
-
status:
|
1518
|
+
status: String
|
1513
1519
|
originNoteId: String
|
1514
1520
|
editorId: String
|
1515
1521
|
editorGroupId: String
|
package/model.ts
CHANGED
@@ -44,6 +44,11 @@ export enum TagType {
|
|
44
44
|
Unknown = 'unknown',
|
45
45
|
}
|
46
46
|
|
47
|
+
export enum ExportType {
|
48
|
+
Document = 'document',
|
49
|
+
Message = 'message',
|
50
|
+
}
|
51
|
+
|
47
52
|
export enum ClientType {
|
48
53
|
Web = 'web',
|
49
54
|
Mobile = 'mobile',
|
@@ -68,14 +73,14 @@ export enum TaskPriority {
|
|
68
73
|
}
|
69
74
|
|
70
75
|
export enum TaskStatus {
|
71
|
-
NotStarted =
|
72
|
-
InProgress =
|
73
|
-
Completed =
|
76
|
+
NotStarted = 'not_started',
|
77
|
+
InProgress = 'in_progress',
|
78
|
+
Completed = 'completed',
|
74
79
|
}
|
75
80
|
|
76
81
|
export enum StepStatus {
|
77
|
-
NotStarted =
|
78
|
-
Completed =
|
82
|
+
NotStarted = 'not_started',
|
83
|
+
Completed = 'completed',
|
79
84
|
}
|
80
85
|
|
81
86
|
export enum SharingApproach {
|
@@ -396,12 +401,12 @@ export interface Reaction {
|
|
396
401
|
export const TaskStepInputQL = `
|
397
402
|
input TaskStepInput {
|
398
403
|
content: String!
|
399
|
-
status:
|
404
|
+
status: String!
|
400
405
|
}`;
|
401
406
|
export const TaskStepQL = `
|
402
407
|
type TaskStep {
|
403
408
|
content: String!
|
404
|
-
status:
|
409
|
+
status: String!
|
405
410
|
}`;
|
406
411
|
export interface TaskStep {
|
407
412
|
content: string;
|
@@ -766,7 +771,7 @@ type Search {${SharedPrimitiveFields}
|
|
766
771
|
orderByAlias: String
|
767
772
|
dateDueFrom: Float
|
768
773
|
dateDueTo: Float
|
769
|
-
status:
|
774
|
+
status: String
|
770
775
|
originNoteId: String
|
771
776
|
editorId: String
|
772
777
|
editorGroupId: String
|
@@ -1112,7 +1117,7 @@ type Recommendation {${SharedPrimitiveFields}
|
|
1112
1117
|
snoozed: Boolean!
|
1113
1118
|
thumbs: String
|
1114
1119
|
comment: String
|
1115
|
-
status:
|
1120
|
+
status: String
|
1116
1121
|
}`;
|
1117
1122
|
export class Recommendation extends SharedPrimitive implements BaseTask {
|
1118
1123
|
referenceBlock: ReferenceBlock; // This is the block that caused the recommendation to happen
|
@@ -1245,7 +1250,7 @@ type Article {${PrimitiveFields}
|
|
1245
1250
|
archived: Boolean!
|
1246
1251
|
favorite: Boolean!
|
1247
1252
|
snoozed: Boolean
|
1248
|
-
status:
|
1253
|
+
status: String
|
1249
1254
|
originNoteId: String
|
1250
1255
|
editorId: String
|
1251
1256
|
editorGroupId: String
|
@@ -1497,7 +1502,7 @@ export class Note extends Block {
|
|
1497
1502
|
}
|
1498
1503
|
|
1499
1504
|
export const TaskFields = `${BlockFields}
|
1500
|
-
status:
|
1505
|
+
status: String!
|
1501
1506
|
dateDue: Float
|
1502
1507
|
editorId: String
|
1503
1508
|
editorGroupId: String
|
@@ -1507,7 +1512,7 @@ export const TaskFields = `${BlockFields}
|
|
1507
1512
|
recurrence: [String]
|
1508
1513
|
`;
|
1509
1514
|
export const TaskFieldsForUpsert = `${BlockFieldsForUpsert}
|
1510
|
-
status:
|
1515
|
+
status: String
|
1511
1516
|
dateDue: Float
|
1512
1517
|
snoozed: Boolean
|
1513
1518
|
steps: [TaskStepInput]
|
@@ -1960,22 +1965,24 @@ type BlockDescription {
|
|
1960
1965
|
name: String!
|
1961
1966
|
description: String!
|
1962
1967
|
blockType: String!
|
1963
|
-
|
1968
|
+
metadataType: String
|
1964
1969
|
}`;
|
1965
1970
|
export interface BlockDescription {
|
1966
1971
|
title?: string;
|
1967
1972
|
name: string;
|
1968
1973
|
description: string;
|
1969
1974
|
blockType: BlockType;
|
1970
|
-
|
1975
|
+
metadataType?: string;
|
1971
1976
|
}
|
1972
1977
|
|
1973
1978
|
export const DocumentMetadataQL = `
|
1974
1979
|
type DocumentMetadata {${MetadataFields}
|
1975
1980
|
blockDescriptions: [BlockDescription]!
|
1981
|
+
exportTypes: [String]
|
1976
1982
|
}`;
|
1977
1983
|
export class DocumentMetadata extends Metadata {
|
1978
1984
|
blockDescriptions: BlockDescription[];
|
1985
|
+
exportTypes?: ExportType[]; // What export types this document metadata should be used for
|
1979
1986
|
|
1980
1987
|
constructor(
|
1981
1988
|
label: string,
|
@@ -2045,7 +2052,7 @@ export const OptionQL = `
|
|
2045
2052
|
type Option {
|
2046
2053
|
label: String!
|
2047
2054
|
value: String!
|
2048
|
-
status:
|
2055
|
+
status: String
|
2049
2056
|
priority: String
|
2050
2057
|
}`;
|
2051
2058
|
export interface Option {
|
@@ -2590,7 +2597,7 @@ input UpsertSearchInput {
|
|
2590
2597
|
orderByAlias: String
|
2591
2598
|
dateDueFrom: Float
|
2592
2599
|
dateDueTo: Float
|
2593
|
-
status:
|
2600
|
+
status: String
|
2594
2601
|
editorId: String
|
2595
2602
|
editorGroupId: String
|
2596
2603
|
parentId: String
|
@@ -2615,7 +2622,7 @@ export interface UpsertSearchInput {
|
|
2615
2622
|
orderByAlias?: OrderByDirection;
|
2616
2623
|
dateDueFrom?: number;
|
2617
2624
|
dateDueTo?: number;
|
2618
|
-
status?:
|
2625
|
+
status?: TaskStatus;
|
2619
2626
|
editorId?: string;
|
2620
2627
|
editorGroupId?: string;
|
2621
2628
|
parentId?: string;
|
@@ -2718,7 +2725,7 @@ input SearchInput {
|
|
2718
2725
|
orderByAlias: String
|
2719
2726
|
dateDueFrom: Float
|
2720
2727
|
dateDueTo: Float
|
2721
|
-
status:
|
2728
|
+
status: String
|
2722
2729
|
originNoteId: String
|
2723
2730
|
editorId: String
|
2724
2731
|
editorGroupId: String
|