@bigfootai/bigfoot-types 5.4.54 → 5.4.56
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/dist/blocks.d.ts +31 -0
- package/dist/blocks.d.ts.map +1 -0
- package/dist/blocks.js +51 -0
- package/dist/blocks.js.map +1 -0
- package/dist/business-objects.d.ts +49 -0
- package/dist/business-objects.d.ts.map +1 -0
- package/dist/business-objects.js +111 -0
- package/dist/business-objects.js.map +1 -0
- package/dist/conference.d.ts +12 -0
- package/dist/conference.d.ts.map +1 -0
- package/dist/conference.js +27 -0
- package/dist/conference.js.map +1 -0
- package/dist/dashboards.d.ts +16 -0
- package/dist/dashboards.d.ts.map +1 -0
- package/dist/dashboards.js +35 -0
- package/dist/dashboards.js.map +1 -0
- package/dist/documents.d.ts +20 -0
- package/dist/documents.d.ts.map +1 -0
- package/dist/documents.js +46 -0
- package/dist/documents.js.map +1 -0
- package/dist/email.d.ts +29 -0
- package/dist/email.d.ts.map +1 -0
- package/dist/email.js +73 -0
- package/dist/email.js.map +1 -0
- package/dist/events.d.ts +125 -0
- package/dist/events.d.ts.map +1 -0
- package/dist/events.js +141 -0
- package/dist/events.js.map +1 -0
- package/dist/folders.d.ts +31 -0
- package/dist/folders.d.ts.map +1 -0
- package/dist/folders.js +74 -0
- package/dist/folders.js.map +1 -0
- package/dist/messages.d.ts +15 -0
- package/dist/messages.d.ts.map +1 -0
- package/dist/messages.js +37 -0
- package/dist/messages.js.map +1 -0
- package/dist/metadata/providers/gong.js +1 -1
- package/dist/metadata/providers/gong.js.map +1 -1
- package/dist/notes.d.ts +6 -0
- package/dist/notes.d.ts.map +1 -0
- package/dist/notes.js +13 -0
- package/dist/notes.js.map +1 -0
- package/dist/providers.d.ts +17 -0
- package/dist/providers.d.ts.map +1 -0
- package/dist/providers.js +38 -0
- package/dist/providers.js.map +1 -0
- package/dist/recommendations.d.ts +14 -0
- package/dist/recommendations.d.ts.map +1 -0
- package/dist/recommendations.js +31 -0
- package/dist/recommendations.js.map +1 -0
- package/dist/searches.d.ts +98 -0
- package/dist/searches.d.ts.map +1 -0
- package/dist/searches.js +270 -0
- package/dist/searches.js.map +1 -0
- package/dist/tables.d.ts +101 -0
- package/dist/tables.d.ts.map +1 -0
- package/dist/tables.js +235 -0
- package/dist/tables.js.map +1 -0
- package/dist/tags.d.ts +64 -0
- package/dist/tags.d.ts.map +1 -0
- package/dist/tags.js +166 -0
- package/dist/tags.js.map +1 -0
- package/dist/tasks.d.ts +20 -0
- package/dist/tasks.d.ts.map +1 -0
- package/dist/tasks.js +50 -0
- package/dist/tasks.js.map +1 -0
- package/dist/test.d.ts +2 -0
- package/dist/test.d.ts.map +1 -0
- package/dist/test.js +19 -0
- package/dist/test.js.map +1 -0
- package/dist/transcription.d.ts +54 -0
- package/dist/transcription.d.ts.map +1 -0
- package/dist/transcription.js +156 -0
- package/dist/transcription.js.map +1 -0
- package/dist/types.d.ts +39 -12
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +59 -6
- package/dist/types.js.map +1 -1
- package/dist/websites.d.ts +11 -0
- package/dist/websites.d.ts.map +1 -0
- package/dist/websites.js +25 -0
- package/dist/websites.js.map +1 -0
- package/package.json +1 -1
package/dist/blocks.d.ts
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
import type { TagType } from './types.js';
|
2
|
+
export declare enum BlockType {
|
3
|
+
NOTE = "note",
|
4
|
+
SECTION = "section",
|
5
|
+
CALENDAR = "calendar",
|
6
|
+
EVENT = "event",
|
7
|
+
EMAIL = "email",
|
8
|
+
TASK = "task",
|
9
|
+
TODO = "todo",// A task from an external application
|
10
|
+
DOCUMENT = "document",
|
11
|
+
DASHBOARD = "dashboard",
|
12
|
+
RECORD = "record",
|
13
|
+
TRANSCRIPTION = "transcription",
|
14
|
+
MESSAGE = "message",
|
15
|
+
WEBSITE = "website",
|
16
|
+
TEMPLATE = "template",
|
17
|
+
TABLE = "table",
|
18
|
+
FOLDER = "folder",
|
19
|
+
SEARCH = "search",
|
20
|
+
CHANGESET = "changeset"
|
21
|
+
}
|
22
|
+
export declare const BlockDescriptionQL = "\ntype BlockDescription {\n title: String\n\tname: String!\n\tdescription: String!\n\tblockType: String\n\tmetadataType: String\n\ttagType: String\n}";
|
23
|
+
export declare class BlockDescription {
|
24
|
+
title?: string;
|
25
|
+
name: string;
|
26
|
+
description: string;
|
27
|
+
blockType?: BlockType;
|
28
|
+
metadataType?: string;
|
29
|
+
tagType?: TagType;
|
30
|
+
}
|
31
|
+
//# sourceMappingURL=blocks.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"blocks.d.ts","sourceRoot":"","sources":["../src/blocks.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AAE1C,oBAAY,SAAS;IACpB,IAAI,SAAS;IACb,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,KAAK,UAAU;IACf,KAAK,UAAU;IACf,IAAI,SAAS;IACb,IAAI,SAAS,CAAE,sCAAsC;IACrD,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,MAAM,WAAW;IACjB,aAAa,kBAAkB;IAC/B,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,MAAM,WAAW;IACjB,SAAS,cAAc;CACvB;AAOD,eAAO,MAAM,kBAAkB,2JAQ7B,CAAC;AAEH,qBACa,gBAAgB;IAE5B,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf,IAAI,EAAE,MAAM,CAAC;IAEb,WAAW,EAAE,MAAM,CAAC;IAEpB,SAAS,CAAC,EAAE,SAAS,CAAC;IAEtB,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB,OAAO,CAAC,EAAE,OAAO,CAAC;CAClB"}
|
package/dist/blocks.js
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
import { Field, ObjectType, registerEnumType } from 'type-graphql';
|
2
|
+
export var BlockType;
|
3
|
+
(function (BlockType) {
|
4
|
+
BlockType["NOTE"] = "note";
|
5
|
+
BlockType["SECTION"] = "section";
|
6
|
+
BlockType["CALENDAR"] = "calendar";
|
7
|
+
BlockType["EVENT"] = "event";
|
8
|
+
BlockType["EMAIL"] = "email";
|
9
|
+
BlockType["TASK"] = "task";
|
10
|
+
BlockType["TODO"] = "todo";
|
11
|
+
BlockType["DOCUMENT"] = "document";
|
12
|
+
BlockType["DASHBOARD"] = "dashboard";
|
13
|
+
BlockType["RECORD"] = "record";
|
14
|
+
BlockType["TRANSCRIPTION"] = "transcription";
|
15
|
+
BlockType["MESSAGE"] = "message";
|
16
|
+
BlockType["WEBSITE"] = "website";
|
17
|
+
BlockType["TEMPLATE"] = "template";
|
18
|
+
BlockType["TABLE"] = "table";
|
19
|
+
BlockType["FOLDER"] = "folder";
|
20
|
+
BlockType["SEARCH"] = "search";
|
21
|
+
BlockType["CHANGESET"] = "changeset";
|
22
|
+
})(BlockType || (BlockType = {}));
|
23
|
+
registerEnumType(BlockType, {
|
24
|
+
name: 'BlockType',
|
25
|
+
description: 'The type of block',
|
26
|
+
});
|
27
|
+
export const BlockDescriptionQL = `
|
28
|
+
type BlockDescription {
|
29
|
+
title: String
|
30
|
+
name: String!
|
31
|
+
description: String!
|
32
|
+
blockType: String
|
33
|
+
metadataType: String
|
34
|
+
tagType: String
|
35
|
+
}`;
|
36
|
+
@ObjectType()
|
37
|
+
export class BlockDescription {
|
38
|
+
@Field(() => String, { nullable: true })
|
39
|
+
title;
|
40
|
+
@Field(() => String)
|
41
|
+
name;
|
42
|
+
@Field(() => String)
|
43
|
+
description;
|
44
|
+
@Field(() => String, { nullable: true })
|
45
|
+
blockType;
|
46
|
+
@Field(() => String, { nullable: true })
|
47
|
+
metadataType;
|
48
|
+
@Field(() => String, { nullable: true })
|
49
|
+
tagType;
|
50
|
+
}
|
51
|
+
//# sourceMappingURL=blocks.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"blocks.js","sourceRoot":"","sources":["../src/blocks.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,UAAU,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAGnE,MAAM,CAAN,IAAY,SAmBX;AAnBD,WAAY,SAAS;IACpB,0BAAa,CAAA;IACb,gCAAmB,CAAA;IACnB,kCAAqB,CAAA;IACrB,4BAAe,CAAA;IACf,4BAAe,CAAA;IACf,0BAAa,CAAA;IACb,0BAAa,CAAA;IACb,kCAAqB,CAAA;IACrB,oCAAuB,CAAA;IACvB,8BAAiB,CAAA;IACjB,4CAA+B,CAAA;IAC/B,gCAAmB,CAAA;IACnB,gCAAmB,CAAA;IACnB,kCAAqB,CAAA;IACrB,4BAAe,CAAA;IACf,8BAAiB,CAAA;IACjB,8BAAiB,CAAA;IACjB,oCAAuB,CAAA;AACxB,CAAC,EAnBW,SAAS,KAAT,SAAS,QAmBpB;AAED,gBAAgB,CAAC,SAAS,EAAE;IAC3B,IAAI,EAAE,WAAW;IACjB,WAAW,EAAE,mBAAmB;CAChC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,kBAAkB,GAAG;;;;;;;;EAQhC,CAAC;AAEH,CAAC,UAAU,EAAE;AACb,MAAM,OAAO,gBAAgB;IAC5B,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACxC,KAAK,CAAU;IACf,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IACpB,IAAI,CAAS;IACb,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IACpB,WAAW,CAAS;IACpB,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACxC,SAAS,CAAa;IACtB,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACxC,YAAY,CAAU;IACtB,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACxC,OAAO,CAAW;CAClB"}
|
@@ -0,0 +1,49 @@
|
|
1
|
+
import type { BlockType } from './blocks.js';
|
2
|
+
import type { SubscribingProviderApplication } from './providers.js';
|
3
|
+
import { Block, BlockFieldsForUpsertType, type Editor, Primitive, ProcessingStage, type ReferenceBlock, type SharingTag } from './types.js';
|
4
|
+
export interface BusinessObjectIngestionResponse {
|
5
|
+
callbackId: string;
|
6
|
+
processingStage: ProcessingStage;
|
7
|
+
processingReason: string;
|
8
|
+
businessObject: BusinessObject;
|
9
|
+
}
|
10
|
+
export declare class BusinessObjectIngestionRequest extends Primitive {
|
11
|
+
referenceBlock?: ReferenceBlock;
|
12
|
+
subscribingProviderApplication?: SubscribingProviderApplication;
|
13
|
+
provider?: string;
|
14
|
+
application?: string;
|
15
|
+
uri: string;
|
16
|
+
processingStage?: ProcessingStage;
|
17
|
+
processingAttempts?: number;
|
18
|
+
processingReason?: string;
|
19
|
+
dateProcessed?: number;
|
20
|
+
dateToProcess?: number;
|
21
|
+
originReferenceBlock?: ReferenceBlock;
|
22
|
+
callbackId?: string;
|
23
|
+
businessObject?: BusinessObject;
|
24
|
+
constructor(tenantIdCreated: string, originReferenceBlock: ReferenceBlock, uri: string);
|
25
|
+
}
|
26
|
+
export declare const BusinessObjectFields = "\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n provider: String!\n application: String!\n uri: String!\n processingStage: String!\n processingAttempts: Int!\n dateProcessed: Float!\n externalId: String!\n processingReason: String\n iconUrl: String";
|
27
|
+
export declare const BusinessObjectFieldsForUpsert = "\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: String\n dateDue: Float\n dateRemindMe: Float\n\tdateAssociated: Float\n archived: Boolean\n\tfavorite: Boolean\n snoozed: Boolean\n\tparentId: String\n document: String\n provider: String!\n application: String!\n externalId: String\n uri: String\n\texternalResponse: String";
|
28
|
+
export declare class BusinessObjectFieldsForUpsertType extends BlockFieldsForUpsertType {
|
29
|
+
provider: string;
|
30
|
+
application: string;
|
31
|
+
uri: string;
|
32
|
+
externalId: string;
|
33
|
+
externalResponse?: string;
|
34
|
+
}
|
35
|
+
export declare const BusinessObjectQL = "\ntype BusinessObject {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n provider: String!\n application: String!\n uri: String!\n processingStage: String!\n processingAttempts: Int!\n dateProcessed: Float!\n externalId: String!\n processingReason: String\n iconUrl: String\n}";
|
36
|
+
export declare class BusinessObject extends Block {
|
37
|
+
provider: string;
|
38
|
+
application: string;
|
39
|
+
uri: string;
|
40
|
+
processingStage: ProcessingStage;
|
41
|
+
processingAttempts: number;
|
42
|
+
dateProcessed: number;
|
43
|
+
externalId: string;
|
44
|
+
processingReason: string;
|
45
|
+
iconUrl?: string | null;
|
46
|
+
externalResponse?: string;
|
47
|
+
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], blockType: BlockType, provider: string, application: string, uri: string, externalId: string);
|
48
|
+
}
|
49
|
+
//# sourceMappingURL=business-objects.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"business-objects.d.ts","sourceRoot":"","sources":["../src/business-objects.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,gBAAgB,CAAC;AACrE,OAAO,EACN,KAAK,EAGL,wBAAwB,EAExB,KAAK,MAAM,EACX,SAAS,EACT,eAAe,EACf,KAAK,cAAc,EACnB,KAAK,UAAU,EACf,MAAM,YAAY,CAAC;AAEpB,MAAM,WAAW,+BAA+B;IAC/C,UAAU,EAAE,MAAM,CAAC;IACnB,eAAe,EAAE,eAAe,CAAC;IACjC,gBAAgB,EAAE,MAAM,CAAC;IACzB,cAAc,EAAE,cAAc,CAAC;CAC/B;AAED,qBAAa,8BAA+B,SAAQ,SAAS;IAC5D,cAAc,CAAC,EAAE,cAAc,CAAC;IAChC,8BAA8B,CAAC,EAAE,8BAA8B,CAAC;IAChE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,GAAG,EAAE,MAAM,CAAC;IACZ,eAAe,CAAC,EAAE,eAAe,CAAC;IAClC,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,oBAAoB,CAAC,EAAE,cAAc,CAAC;IACtC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,cAAc,CAAC,EAAE,cAAc,CAAC;gBAEpB,eAAe,EAAE,MAAM,EAAE,oBAAoB,EAAE,cAAc,EAAE,GAAG,EAAE,MAAM;CAYtF;AAED,eAAO,MAAM,oBAAoB,+xBASf,CAAC;AAwBnB,eAAO,MAAM,6BAA6B,iaAKhB,CAAC;AAE3B,qBACa,iCAAkC,SAAQ,wBAAwB;IAE9E,QAAQ,EAAE,MAAM,CAAC;IAEjB,WAAW,EAAE,MAAM,CAAC;IAEpB,GAAG,EAAE,MAAM,CAAC;IAEZ,UAAU,EAAE,MAAM,CAAC;IAEnB,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED,eAAO,MAAM,gBAAgB,yzBAE3B,CAAC;AAEH,qBACa,cAAe,SAAQ,KAAK;IAExC,QAAQ,EAAE,MAAM,CAAC;IAEjB,WAAW,EAAE,MAAM,CAAC;IAEpB,GAAG,EAAE,MAAM,CAAC;IAEZ,eAAe,EAAE,eAAe,CAAC;IAEjC,kBAAkB,EAAE,MAAM,CAAC;IAE3B,aAAa,EAAE,MAAM,CAAC;IAEtB,UAAU,EAAE,MAAM,CAAC;IAEnB,gBAAgB,EAAE,MAAM,CAAC;IAEzB,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,gBAAgB,CAAC,EAAE,MAAM,CAAC;gBAGzB,eAAe,EAAE,MAAM,EACvB,OAAO,EAAE,MAAM,EAAE,EACjB,WAAW,EAAE,UAAU,EAAE,EACzB,SAAS,EAAE,SAAS,EACpB,QAAQ,EAAE,MAAM,EAChB,WAAW,EAAE,MAAM,EACnB,GAAG,EAAE,MAAM,EACX,UAAU,EAAE,MAAM;CAWnB"}
|
@@ -0,0 +1,111 @@
|
|
1
|
+
import { Field, Float, InputType, Int, ObjectType } from 'type-graphql';
|
2
|
+
import { Block, BlockFields, BlockFieldsForUpsert, BlockFieldsForUpsertType, BlockFieldsType, Primitive, ProcessingStage, } from './types.js';
|
3
|
+
export class BusinessObjectIngestionRequest extends Primitive {
|
4
|
+
referenceBlock; // A reference to the block created/updated by this ingestion
|
5
|
+
subscribingProviderApplication;
|
6
|
+
provider; // A unique string representing the provider e.g. "salesforce", "atlassian", etc
|
7
|
+
application; // A unique string representing the provider application e.g. "service", "jira", etc
|
8
|
+
uri; // A uri to locate the specific instance of the business object
|
9
|
+
processingStage; // Indicates if the business object has been processed yet
|
10
|
+
processingAttempts; // Indicates the number of attempts made to process this business object
|
11
|
+
processingReason; // The reason the processing is at this stage
|
12
|
+
dateProcessed; // The date this document was last processed
|
13
|
+
dateToProcess; // The date this ingestion should be processed - default is now
|
14
|
+
originReferenceBlock; // The block that this request originally came from (though the ingestion may be referenced from many future blocks)
|
15
|
+
callbackId; // A callback id that can be used for async requests
|
16
|
+
businessObject; // The ingested business object - used for async request callbacks
|
17
|
+
constructor(tenantIdCreated, originReferenceBlock, uri) {
|
18
|
+
super();
|
19
|
+
this.tenantIdCreated = tenantIdCreated;
|
20
|
+
this.originReferenceBlock = originReferenceBlock;
|
21
|
+
this.uri = uri;
|
22
|
+
this.processingStage = ProcessingStage.NotProcessed;
|
23
|
+
this.processingAttempts = 0;
|
24
|
+
this.dateProcessed = 0;
|
25
|
+
this.dateToProcess = Date.now();
|
26
|
+
}
|
27
|
+
}
|
28
|
+
export const BusinessObjectFields = `${BlockFields}
|
29
|
+
provider: String!
|
30
|
+
application: String!
|
31
|
+
uri: String!
|
32
|
+
processingStage: String!
|
33
|
+
processingAttempts: Int!
|
34
|
+
dateProcessed: Float!
|
35
|
+
externalId: String!
|
36
|
+
processingReason: String
|
37
|
+
iconUrl: String`;
|
38
|
+
@ObjectType()
|
39
|
+
class BusinessObjectFieldsType extends BlockFieldsType {
|
40
|
+
@Field(() => String)
|
41
|
+
provider; // A unique string representing the provider e.g. "salesforce", "atlassian", etc
|
42
|
+
@Field(() => String)
|
43
|
+
application; // A unique string representing the provider application e.g. "service", "jira", etc
|
44
|
+
@Field(() => String)
|
45
|
+
uri; // A uri to locate the specific instance of the business object
|
46
|
+
@Field(() => String)
|
47
|
+
processingStage; // Indicates if the business object has been processed yet
|
48
|
+
@Field(() => Int)
|
49
|
+
processingAttempts; // Indicates the number of attempts made to process this business object
|
50
|
+
@Field(() => Float)
|
51
|
+
dateProcessed; // The date this document was last processed
|
52
|
+
@Field(() => String)
|
53
|
+
externalId; // An external identifier that can help us match the records
|
54
|
+
@Field(() => String, { nullable: true })
|
55
|
+
processingReason; // The reason the processing is at this stage
|
56
|
+
@Field(() => String, { nullable: true })
|
57
|
+
iconUrl; // The url of an icon that represents the business object
|
58
|
+
}
|
59
|
+
export const BusinessObjectFieldsForUpsert = `${BlockFieldsForUpsert}
|
60
|
+
provider: String!
|
61
|
+
application: String!
|
62
|
+
externalId: String
|
63
|
+
uri: String
|
64
|
+
externalResponse: String`;
|
65
|
+
@InputType()
|
66
|
+
export class BusinessObjectFieldsForUpsertType extends BlockFieldsForUpsertType {
|
67
|
+
@Field(() => String)
|
68
|
+
provider; // A unique string representing the provider e.g. "salesforce", "atlassian", etc
|
69
|
+
@Field(() => String)
|
70
|
+
application; // A unique string representing the provider application e.g. "service", "jira", etc
|
71
|
+
@Field(() => String, { nullable: true })
|
72
|
+
uri; // A uri to locate the specific instance of the business object
|
73
|
+
@Field(() => String, { nullable: true })
|
74
|
+
externalId; // An external identifier that can help us match the records
|
75
|
+
@Field(() => String, { nullable: true })
|
76
|
+
externalResponse; // The response from the external application as a JSON string
|
77
|
+
}
|
78
|
+
export const BusinessObjectQL = `
|
79
|
+
type BusinessObject {${BusinessObjectFields}
|
80
|
+
}`;
|
81
|
+
@ObjectType()
|
82
|
+
export class BusinessObject extends Block {
|
83
|
+
@Field(() => String)
|
84
|
+
provider; // A unique string representing the provider e.g. "salesforce", "atlassian", etc
|
85
|
+
@Field(() => String)
|
86
|
+
application; // A unique string representing the provider application e.g. "service", "jira", etc
|
87
|
+
@Field(() => String)
|
88
|
+
uri; // A uri to locate the specific instance of the business object
|
89
|
+
@Field(() => String)
|
90
|
+
processingStage; // Indicates if the business object has been processed yet
|
91
|
+
@Field(() => Int)
|
92
|
+
processingAttempts; // Indicates the number of attempts made to process this business object
|
93
|
+
@Field(() => Float)
|
94
|
+
dateProcessed; // The date this document was last processed
|
95
|
+
@Field(() => String)
|
96
|
+
externalId; // An external identifier that can help us match the records
|
97
|
+
@Field(() => String, { nullable: true })
|
98
|
+
processingReason; // The reason the processing is at this stage
|
99
|
+
@Field(() => String, { nullable: true })
|
100
|
+
iconUrl; // The url of an icon that represents the business object
|
101
|
+
externalResponse; // The response from the external application as a JSON string
|
102
|
+
constructor(tenantIdCreated, editors, sharingTags, blockType, provider, application, uri, externalId) {
|
103
|
+
super(tenantIdCreated, editors, sharingTags, blockType);
|
104
|
+
this.archived = false;
|
105
|
+
this.provider = provider;
|
106
|
+
this.application = application;
|
107
|
+
this.uri = uri;
|
108
|
+
this.externalId = externalId;
|
109
|
+
}
|
110
|
+
}
|
111
|
+
//# sourceMappingURL=business-objects.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"business-objects.js","sourceRoot":"","sources":["../src/business-objects.ts"],"names":[],"mappings":"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"}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { Transcription } from './transcription.js';
|
2
|
+
export declare const ConferenceEntrypointQL = "\ntype ConferenceEntrypoint {\n url: String\n meetingCode: String\n}";
|
3
|
+
export declare class ConferenceEntrypoint {
|
4
|
+
url?: string | null;
|
5
|
+
meetingCode?: string | null;
|
6
|
+
}
|
7
|
+
export declare const ConferenceQL = "\ntype Conference {\n entryPoints: [ConferenceEntrypoint!]\n transcription: Transcription\n}";
|
8
|
+
export declare class Conference {
|
9
|
+
entryPoints?: ConferenceEntrypoint[];
|
10
|
+
transcription?: Transcription | null;
|
11
|
+
}
|
12
|
+
//# sourceMappingURL=conference.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"conference.d.ts","sourceRoot":"","sources":["../src/conference.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AAEnD,eAAO,MAAM,sBAAsB,2EAIjC,CAAC;AAEH,qBACa,oBAAoB;IAEhC,GAAG,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAEpB,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC5B;AAED,eAAO,MAAM,YAAY,mGAIvB,CAAC;AAEH,qBACa,UAAU;IAEtB,WAAW,CAAC,EAAE,oBAAoB,EAAE,CAAC;IAErC,aAAa,CAAC,EAAE,aAAa,GAAG,IAAI,CAAC;CACrC"}
|
@@ -0,0 +1,27 @@
|
|
1
|
+
import { Field, ObjectType } from 'type-graphql';
|
2
|
+
import { Transcription } from './transcription.js';
|
3
|
+
export const ConferenceEntrypointQL = `
|
4
|
+
type ConferenceEntrypoint {
|
5
|
+
url: String
|
6
|
+
meetingCode: String
|
7
|
+
}`;
|
8
|
+
@ObjectType()
|
9
|
+
export class ConferenceEntrypoint {
|
10
|
+
@Field(() => String, { nullable: true })
|
11
|
+
url;
|
12
|
+
@Field(() => String, { nullable: true })
|
13
|
+
meetingCode;
|
14
|
+
}
|
15
|
+
export const ConferenceQL = `
|
16
|
+
type Conference {
|
17
|
+
entryPoints: [ConferenceEntrypoint!]
|
18
|
+
transcription: Transcription
|
19
|
+
}`;
|
20
|
+
@ObjectType()
|
21
|
+
export class Conference {
|
22
|
+
@Field(() => [ConferenceEntrypoint], { nullable: true })
|
23
|
+
entryPoints;
|
24
|
+
@Field(() => Transcription, { nullable: true })
|
25
|
+
transcription;
|
26
|
+
}
|
27
|
+
//# sourceMappingURL=conference.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"conference.js","sourceRoot":"","sources":["../src/conference.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AACjD,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AAEnD,MAAM,CAAC,MAAM,sBAAsB,GAAG;;;;EAIpC,CAAC;AAEH,CAAC,UAAU,EAAE;AACb,MAAM,OAAO,oBAAoB;IAChC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACxC,GAAG,CAAiB;IACpB,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACxC,WAAW,CAAiB;CAC5B;AAED,MAAM,CAAC,MAAM,YAAY,GAAG;;;;EAI1B,CAAC;AAEH,CAAC,UAAU,EAAE;AACb,MAAM,OAAO,UAAU;IACtB,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,oBAAoB,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACxD,WAAW,CAA0B;IACrC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,aAAa,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC/C,aAAa,CAAwB;CACrC"}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import { BlockDescription } from './blocks.js';
|
2
|
+
import { BusinessObject } from './business-objects.js';
|
3
|
+
import { DocumentMetadata } from './documents.js';
|
4
|
+
import { type Editor, Metadata, type SharingTag } from './types.js';
|
5
|
+
export declare const DashboardMetadataQL = "\ntype DashboardMetadata {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n label: String!\n description: String!\n\tmetadataType: String!\n\treferences: [String]\n\tclassifiers: [String]!\n\tthreshold: Float!\n\tprovider: String\n\tapplication: String\n blockDescriptions: [BlockDescription!]!\n\tnotificationMetadataTypes: [String!]!\n}";
|
6
|
+
export declare class DashboardMetadata extends Metadata {
|
7
|
+
blockDescriptions: BlockDescription[];
|
8
|
+
notificationMetadataTypes: string[];
|
9
|
+
constructor(label: string, description: string, metadataType: string, classifiers: string[], threshold: number, blockDescriptions: BlockDescription[]);
|
10
|
+
}
|
11
|
+
export declare const TemplateQL = "\ntype Template {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n provider: String!\n application: String!\n uri: String!\n processingStage: String!\n processingAttempts: Int!\n dateProcessed: Float!\n externalId: String!\n processingReason: String\n iconUrl: String\n metadata: DocumentMetadata\n}";
|
12
|
+
export declare class Template extends BusinessObject {
|
13
|
+
metadata?: DocumentMetadata;
|
14
|
+
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string);
|
15
|
+
}
|
16
|
+
//# sourceMappingURL=dashboards.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"dashboards.d.ts","sourceRoot":"","sources":["../src/dashboards.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAa,MAAM,aAAa,CAAC;AAC1D,OAAO,EAAE,cAAc,EAAwB,MAAM,uBAAuB,CAAC;AAC7E,OAAO,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAClD,OAAO,EAAE,KAAK,MAAM,EAAE,QAAQ,EAAkB,KAAK,UAAU,EAAE,MAAM,YAAY,CAAC;AAEpF,eAAO,MAAM,mBAAmB,gYAI9B,CAAC;AAEH,qBACa,iBAAkB,SAAQ,QAAQ;IAE9C,iBAAiB,EAAE,gBAAgB,EAAE,CAAC;IAEtC,yBAAyB,EAAE,MAAM,EAAE,CAAC;gBAGnC,KAAK,EAAE,MAAM,EACb,WAAW,EAAE,MAAM,EACnB,YAAY,EAAE,MAAM,EACpB,WAAW,EAAE,MAAM,EAAE,EACrB,SAAS,EAAE,MAAM,EACjB,iBAAiB,EAAE,gBAAgB,EAAE;CAOtC;AAED,eAAO,MAAM,UAAU,i1BAGrB,CAAC;AAEH,qBACa,QAAS,SAAQ,cAAc;IAE3C,QAAQ,CAAC,EAAE,gBAAgB,CAAC;gBAG3B,eAAe,EAAE,MAAM,EACvB,OAAO,EAAE,MAAM,EAAE,EACjB,WAAW,EAAE,UAAU,EAAE,EACzB,QAAQ,EAAE,MAAM,EAChB,WAAW,EAAE,MAAM,EACnB,GAAG,EAAE,MAAM,EACX,UAAU,EAAE,MAAM;CAInB"}
|
@@ -0,0 +1,35 @@
|
|
1
|
+
import { Field, ObjectType } from 'type-graphql';
|
2
|
+
import { BlockDescription, BlockType } from './blocks.js';
|
3
|
+
import { BusinessObject, BusinessObjectFields } from './business-objects.js';
|
4
|
+
import { DocumentMetadata } from './documents.js';
|
5
|
+
import { Metadata, MetadataFields } from './types.js';
|
6
|
+
export const DashboardMetadataQL = `
|
7
|
+
type DashboardMetadata {${MetadataFields}
|
8
|
+
blockDescriptions: [BlockDescription!]!
|
9
|
+
notificationMetadataTypes: [String!]!
|
10
|
+
}`;
|
11
|
+
@ObjectType()
|
12
|
+
export class DashboardMetadata extends Metadata {
|
13
|
+
@Field(() => [BlockDescription])
|
14
|
+
blockDescriptions;
|
15
|
+
@Field(() => [String])
|
16
|
+
notificationMetadataTypes;
|
17
|
+
constructor(label, description, metadataType, classifiers, threshold, blockDescriptions) {
|
18
|
+
super(label, description, metadataType, classifiers, threshold);
|
19
|
+
this.blockDescriptions = blockDescriptions;
|
20
|
+
this.notificationMetadataTypes = [];
|
21
|
+
}
|
22
|
+
}
|
23
|
+
export const TemplateQL = `
|
24
|
+
type Template {${BusinessObjectFields}
|
25
|
+
metadata: DocumentMetadata
|
26
|
+
}`;
|
27
|
+
@ObjectType()
|
28
|
+
export class Template extends BusinessObject {
|
29
|
+
@Field(() => DocumentMetadata, { nullable: true })
|
30
|
+
metadata;
|
31
|
+
constructor(tenantIdCreated, editors, sharingTags, provider, application, uri, externalId) {
|
32
|
+
super(tenantIdCreated, editors, sharingTags, BlockType.TEMPLATE, provider, application, uri, externalId);
|
33
|
+
}
|
34
|
+
}
|
35
|
+
//# sourceMappingURL=dashboards.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"dashboards.js","sourceRoot":"","sources":["../src/dashboards.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AACjD,OAAO,EAAE,gBAAgB,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAC1D,OAAO,EAAE,cAAc,EAAE,oBAAoB,EAAE,MAAM,uBAAuB,CAAC;AAC7E,OAAO,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAClD,OAAO,EAAe,QAAQ,EAAE,cAAc,EAAmB,MAAM,YAAY,CAAC;AAEpF,MAAM,CAAC,MAAM,mBAAmB,GAAG;0BACT,cAAc;;;EAGtC,CAAC;AAEH,CAAC,UAAU,EAAE;AACb,MAAM,OAAO,iBAAkB,SAAQ,QAAQ;IAC9C,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,gBAAgB,CAAC,CAAC;IAChC,iBAAiB,CAAqB;IACtC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC;IACtB,yBAAyB,CAAW;IAEpC,YACC,KAAa,EACb,WAAmB,EACnB,YAAoB,EACpB,WAAqB,EACrB,SAAiB,EACjB,iBAAqC;QAErC,KAAK,CAAC,KAAK,EAAE,WAAW,EAAE,YAAY,EAAE,WAAW,EAAE,SAAS,CAAC,CAAC;QAEhE,IAAI,CAAC,iBAAiB,GAAG,iBAAiB,CAAC;QAC3C,IAAI,CAAC,yBAAyB,GAAG,EAAE,CAAC;IACrC,CAAC;CACD;AAED,MAAM,CAAC,MAAM,UAAU,GAAG;iBACT,oBAAoB;;EAEnC,CAAC;AAEH,CAAC,UAAU,EAAE;AACb,MAAM,OAAO,QAAS,SAAQ,cAAc;IAC3C,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,gBAAgB,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAClD,QAAQ,CAAoB;IAE5B,YACC,eAAuB,EACvB,OAAiB,EACjB,WAAyB,EACzB,QAAgB,EAChB,WAAmB,EACnB,GAAW,EACX,UAAkB;QAElB,KAAK,CAAC,eAAe,EAAE,OAAO,EAAE,WAAW,EAAE,SAAS,CAAC,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,GAAG,EAAE,UAAU,CAAC,CAAC;IAC1G,CAAC;CACD"}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import { BlockDescription } from './blocks.js';
|
2
|
+
import { BusinessObject } from './business-objects.js';
|
3
|
+
import { type Editor, type ExportType, Metadata, type SharingTag } from './types.js';
|
4
|
+
export declare const DocumentFields = "\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n provider: String!\n application: String!\n uri: String!\n processingStage: String!\n processingAttempts: Int!\n dateProcessed: Float!\n externalId: String!\n processingReason: String\n iconUrl: String\n title: String\n description: String\n previewImage: String\n htmlContent: String\n\tmetadataType: String";
|
5
|
+
export declare const DocumentQL = "\ntype Document {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n provider: String!\n application: String!\n uri: String!\n processingStage: String!\n processingAttempts: Int!\n dateProcessed: Float!\n externalId: String!\n processingReason: String\n iconUrl: String\n title: String\n description: String\n previewImage: String\n htmlContent: String\n\tmetadataType: String\n}";
|
6
|
+
export declare class Document extends BusinessObject {
|
7
|
+
title?: string;
|
8
|
+
description?: string;
|
9
|
+
previewImage?: string;
|
10
|
+
htmlContent?: string;
|
11
|
+
metadataType?: string;
|
12
|
+
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string);
|
13
|
+
}
|
14
|
+
export declare const DocumentMetadataQL = "\ntype DocumentMetadata {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n label: String!\n description: String!\n\tmetadataType: String!\n\treferences: [String]\n\tclassifiers: [String]!\n\tthreshold: Float!\n\tprovider: String\n\tapplication: String\n blockDescriptions: [BlockDescription!]!\n\texportTypes: [String!]\n}";
|
15
|
+
export declare class DocumentMetadata extends Metadata {
|
16
|
+
blockDescriptions: BlockDescription[];
|
17
|
+
exportTypes?: ExportType[];
|
18
|
+
constructor(label: string, description: string, metadataType: string, classifiers: string[], threshold: number, blockDescriptions: BlockDescription[]);
|
19
|
+
}
|
20
|
+
//# sourceMappingURL=documents.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"documents.d.ts","sourceRoot":"","sources":["../src/documents.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAa,MAAM,aAAa,CAAC;AAC1D,OAAO,EAAE,cAAc,EAAwB,MAAM,uBAAuB,CAAC;AAC7E,OAAO,EAAE,KAAK,MAAM,EAAE,KAAK,UAAU,EAAE,QAAQ,EAAkB,KAAK,UAAU,EAAE,MAAM,YAAY,CAAC;AAErG,eAAO,MAAM,cAAc,84BAKL,CAAC;AACvB,eAAO,MAAM,UAAU,k6BAErB,CAAC;AAEH,qBACa,QAAS,SAAQ,cAAc;IAE3C,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB,YAAY,CAAC,EAAE,MAAM,CAAC;gBAGrB,eAAe,EAAE,MAAM,EACvB,OAAO,EAAE,MAAM,EAAE,EACjB,WAAW,EAAE,UAAU,EAAE,EACzB,QAAQ,EAAE,MAAM,EAChB,WAAW,EAAE,MAAM,EACnB,GAAG,EAAE,MAAM,EACX,UAAU,EAAE,MAAM;CAInB;AAED,eAAO,MAAM,kBAAkB,gXAI7B,CAAC;AAEH,qBACa,gBAAiB,SAAQ,QAAQ;IAE7C,iBAAiB,EAAE,gBAAgB,EAAE,CAAC;IAEtC,WAAW,CAAC,EAAE,UAAU,EAAE,CAAC;gBAG1B,KAAK,EAAE,MAAM,EACb,WAAW,EAAE,MAAM,EACnB,YAAY,EAAE,MAAM,EACpB,WAAW,EAAE,MAAM,EAAE,EACrB,SAAS,EAAE,MAAM,EACjB,iBAAiB,EAAE,gBAAgB,EAAE;CAMtC"}
|
@@ -0,0 +1,46 @@
|
|
1
|
+
import { Field, ObjectType } from 'type-graphql';
|
2
|
+
import { BlockDescription, BlockType } from './blocks.js';
|
3
|
+
import { BusinessObject, BusinessObjectFields } from './business-objects.js';
|
4
|
+
import { Metadata, MetadataFields } from './types.js';
|
5
|
+
export const DocumentFields = `${BusinessObjectFields}
|
6
|
+
title: String
|
7
|
+
description: String
|
8
|
+
previewImage: String
|
9
|
+
htmlContent: String
|
10
|
+
metadataType: String`;
|
11
|
+
export const DocumentQL = `
|
12
|
+
type Document {${DocumentFields}
|
13
|
+
}`;
|
14
|
+
@ObjectType()
|
15
|
+
export class Document extends BusinessObject {
|
16
|
+
@Field(() => String, { nullable: true })
|
17
|
+
title;
|
18
|
+
@Field(() => String, { nullable: true })
|
19
|
+
description;
|
20
|
+
@Field(() => String, { nullable: true })
|
21
|
+
previewImage;
|
22
|
+
@Field(() => String, { nullable: true })
|
23
|
+
htmlContent;
|
24
|
+
@Field(() => String, { nullable: true })
|
25
|
+
metadataType;
|
26
|
+
constructor(tenantIdCreated, editors, sharingTags, provider, application, uri, externalId) {
|
27
|
+
super(tenantIdCreated, editors, sharingTags, BlockType.DOCUMENT, provider, application, uri, externalId);
|
28
|
+
}
|
29
|
+
}
|
30
|
+
export const DocumentMetadataQL = `
|
31
|
+
type DocumentMetadata {${MetadataFields}
|
32
|
+
blockDescriptions: [BlockDescription!]!
|
33
|
+
exportTypes: [String!]
|
34
|
+
}`;
|
35
|
+
@ObjectType()
|
36
|
+
export class DocumentMetadata extends Metadata {
|
37
|
+
@Field(() => [BlockDescription])
|
38
|
+
blockDescriptions;
|
39
|
+
@Field(() => [String], { nullable: true })
|
40
|
+
exportTypes; // What export types this document metadata should be used for
|
41
|
+
constructor(label, description, metadataType, classifiers, threshold, blockDescriptions) {
|
42
|
+
super(label, description, metadataType, classifiers, threshold);
|
43
|
+
this.blockDescriptions = blockDescriptions;
|
44
|
+
}
|
45
|
+
}
|
46
|
+
//# sourceMappingURL=documents.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"documents.js","sourceRoot":"","sources":["../src/documents.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AACjD,OAAO,EAAE,gBAAgB,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAC1D,OAAO,EAAE,cAAc,EAAE,oBAAoB,EAAE,MAAM,uBAAuB,CAAC;AAC7E,OAAO,EAAgC,QAAQ,EAAE,cAAc,EAAmB,MAAM,YAAY,CAAC;AAErG,MAAM,CAAC,MAAM,cAAc,GAAG,GAAG,oBAAoB;;;;;sBAK/B,CAAC;AACvB,MAAM,CAAC,MAAM,UAAU,GAAG;iBACT,cAAc;EAC7B,CAAC;AAEH,CAAC,UAAU,EAAE;AACb,MAAM,OAAO,QAAS,SAAQ,cAAc;IAC3C,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACxC,KAAK,CAAU;IACf,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACxC,WAAW,CAAU;IACrB,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACxC,YAAY,CAAU;IACtB,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACxC,WAAW,CAAU;IACrB,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACxC,YAAY,CAAU;IAEtB,YACC,eAAuB,EACvB,OAAiB,EACjB,WAAyB,EACzB,QAAgB,EAChB,WAAmB,EACnB,GAAW,EACX,UAAkB;QAElB,KAAK,CAAC,eAAe,EAAE,OAAO,EAAE,WAAW,EAAE,SAAS,CAAC,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,GAAG,EAAE,UAAU,CAAC,CAAC;IAC1G,CAAC;CACD;AAED,MAAM,CAAC,MAAM,kBAAkB,GAAG;yBACT,cAAc;;;EAGrC,CAAC;AAEH,CAAC,UAAU,EAAE;AACb,MAAM,OAAO,gBAAiB,SAAQ,QAAQ;IAC7C,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,gBAAgB,CAAC,CAAC;IAChC,iBAAiB,CAAqB;IACtC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC1C,WAAW,CAAgB,CAAC,8DAA8D;IAE1F,YACC,KAAa,EACb,WAAmB,EACnB,YAAoB,EACpB,WAAqB,EACrB,SAAiB,EACjB,iBAAqC;QAErC,KAAK,CAAC,KAAK,EAAE,WAAW,EAAE,YAAY,EAAE,WAAW,EAAE,SAAS,CAAC,CAAC;QAEhE,IAAI,CAAC,iBAAiB,GAAG,iBAAiB,CAAC;IAC5C,CAAC;CACD"}
|
package/dist/email.d.ts
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
import { BusinessObject } from './business-objects.js';
|
2
|
+
import { Attachment } from './events.js';
|
3
|
+
import { BlockFieldsForUpsertType, type Editor, PersonReference, type SharingTag } from './types.js';
|
4
|
+
export declare const IngestEmailInputQL = "\ninput IngestEmailInput {\n _id: ID\n dateCreated: Float\n dateUpdated: Float\n tenantIdCreated: String\n sharingTags: [SharingTagInput]\n status: String\n dateDue: Float\n dateRemindMe: Float\n\tdateAssociated: Float\n archived: Boolean\n\tfavorite: Boolean\n snoozed: Boolean\n\tparentId: String\n document: String\n to: [PersonReferenceInput!]\n cc: [PersonReferenceInput!]\n bcc: [PersonReferenceInput!]\n\tfrom: PersonReferenceInput\n subject: String\n\tattachments: [AttachmentInput!]\n\thtmlContent: String\n\ttextContent: String\n\tcreateBlockType: String\n}";
|
5
|
+
export declare class IngestEmailInput extends BlockFieldsForUpsertType {
|
6
|
+
to?: PersonReference[];
|
7
|
+
cc?: PersonReference[];
|
8
|
+
bcc?: PersonReference[];
|
9
|
+
from?: PersonReference;
|
10
|
+
subject?: string | null;
|
11
|
+
attachments?: Attachment[] | null;
|
12
|
+
htmlContent?: string;
|
13
|
+
textContent?: string;
|
14
|
+
createBlockType?: string;
|
15
|
+
}
|
16
|
+
export declare const EmailQL = "\ntype Email {\n _id: ID!\n dateCreated: Float!\n dateUpdated: Float!\n tenantIdCreated: String\n sharingTags: [SharingTag]!\n\tsubscriptionPubSubType: String\n editors: [Editor]!\n blockType: String!\n document: String\n\tdates: [EntityEntry]\n\tlocations: [EntityEntry]\n\temails: [String]\n\tbusinessObjects: [BusinessObjectLink]\n archived: Boolean!\n\tfavorite: Boolean!\n\tsnoozed: Boolean!\n\tdateDue: Float\n\tdateRemindMe: Float\n\tdateAssociated: Float\n\tdateMatched: Float\n\tstatus: String\n\tparentId: String\n\toriginReferenceBlock: ReferenceBlock\n\treactions: [Reaction]\n provider: String!\n application: String!\n uri: String!\n processingStage: String!\n processingAttempts: Int!\n dateProcessed: Float!\n externalId: String!\n processingReason: String\n iconUrl: String\n to: [PersonReference!]\n cc: [PersonReference!]\n bcc: [PersonReference!]\n\tfrom: PersonReference\n subject: String\n\tattachments: [Attachment!]\n\thtmlContent: String\n\ttextContent: String\n}";
|
17
|
+
export declare class Email extends BusinessObject {
|
18
|
+
to?: PersonReference[];
|
19
|
+
cc?: PersonReference[];
|
20
|
+
bcc?: PersonReference[];
|
21
|
+
from?: PersonReference;
|
22
|
+
subject?: string | null;
|
23
|
+
attachments?: Attachment[] | null;
|
24
|
+
htmlContent?: string;
|
25
|
+
textContent?: string;
|
26
|
+
createBlockType?: string;
|
27
|
+
constructor(tenantIdCreated: string, editors: Editor[], sharingTags: SharingTag[], provider: string, application: string, uri: string, externalId: string);
|
28
|
+
}
|
29
|
+
//# sourceMappingURL=email.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"email.d.ts","sourceRoot":"","sources":["../src/email.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,cAAc,EAAwB,MAAM,uBAAuB,CAAC;AAC7E,OAAO,EAAE,UAAU,EAAmB,MAAM,aAAa,CAAC;AAC1D,OAAO,EAEN,wBAAwB,EACxB,KAAK,MAAM,EACX,eAAe,EAEf,KAAK,UAAU,EACf,MAAM,YAAY,CAAC;AAEpB,eAAO,MAAM,kBAAkB,2kBAW7B,CAAC;AAEH,qBACa,gBAAiB,SAAQ,wBAAwB;IAE7D,EAAE,CAAC,EAAE,eAAe,EAAE,CAAC;IAEvB,EAAE,CAAC,EAAE,eAAe,EAAE,CAAC;IAEvB,GAAG,CAAC,EAAE,eAAe,EAAE,CAAC;IAExB,IAAI,CAAC,EAAE,eAAe,CAAC;IAEvB,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAExB,WAAW,CAAC,EAAE,UAAU,EAAE,GAAG,IAAI,CAAC;IAElC,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB,eAAe,CAAC,EAAE,MAAM,CAAC;CACzB;AAED,eAAO,MAAM,OAAO,u/BAUlB,CAAC;AAEH,qBACa,KAAM,SAAQ,cAAc;IAExC,EAAE,CAAC,EAAE,eAAe,EAAE,CAAC;IAEvB,EAAE,CAAC,EAAE,eAAe,EAAE,CAAC;IAEvB,GAAG,CAAC,EAAE,eAAe,EAAE,CAAC;IAExB,IAAI,CAAC,EAAE,eAAe,CAAC;IAEvB,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAExB,WAAW,CAAC,EAAE,UAAU,EAAE,GAAG,IAAI,CAAC;IAElC,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,eAAe,CAAC,EAAE,MAAM,CAAC;gBAGxB,eAAe,EAAE,MAAM,EACvB,OAAO,EAAE,MAAM,EAAE,EACjB,WAAW,EAAE,UAAU,EAAE,EACzB,QAAQ,EAAE,MAAM,EAChB,WAAW,EAAE,MAAM,EACnB,GAAG,EAAE,MAAM,EACX,UAAU,EAAE,MAAM;CAInB"}
|
package/dist/email.js
ADDED
@@ -0,0 +1,73 @@
|
|
1
|
+
import { Field, InputType, ObjectType } from 'type-graphql';
|
2
|
+
import { BlockType } from './blocks.js';
|
3
|
+
import { BusinessObject, BusinessObjectFields } from './business-objects.js';
|
4
|
+
import { Attachment, AttachmentInput } from './events.js';
|
5
|
+
import { BlockFieldsForUpsert, BlockFieldsForUpsertType, PersonReferenceInput, } from './types.js';
|
6
|
+
export const IngestEmailInputQL = `
|
7
|
+
input IngestEmailInput {${BlockFieldsForUpsert}
|
8
|
+
to: [PersonReferenceInput!]
|
9
|
+
cc: [PersonReferenceInput!]
|
10
|
+
bcc: [PersonReferenceInput!]
|
11
|
+
from: PersonReferenceInput
|
12
|
+
subject: String
|
13
|
+
attachments: [AttachmentInput!]
|
14
|
+
htmlContent: String
|
15
|
+
textContent: String
|
16
|
+
createBlockType: String
|
17
|
+
}`;
|
18
|
+
@InputType()
|
19
|
+
export class IngestEmailInput extends BlockFieldsForUpsertType {
|
20
|
+
@Field(() => [PersonReferenceInput], { nullable: true })
|
21
|
+
to;
|
22
|
+
@Field(() => [PersonReferenceInput], { nullable: true })
|
23
|
+
cc;
|
24
|
+
@Field(() => [PersonReferenceInput], { nullable: true })
|
25
|
+
bcc;
|
26
|
+
@Field(() => PersonReferenceInput, { nullable: true })
|
27
|
+
from;
|
28
|
+
@Field(() => String, { nullable: true })
|
29
|
+
subject;
|
30
|
+
@Field(() => [AttachmentInput], { nullable: true })
|
31
|
+
attachments;
|
32
|
+
@Field(() => String, { nullable: true })
|
33
|
+
htmlContent;
|
34
|
+
@Field(() => String, { nullable: true })
|
35
|
+
textContent;
|
36
|
+
@Field(() => String, { nullable: true })
|
37
|
+
createBlockType;
|
38
|
+
}
|
39
|
+
export const EmailQL = `
|
40
|
+
type Email {${BusinessObjectFields}
|
41
|
+
to: [PersonReference!]
|
42
|
+
cc: [PersonReference!]
|
43
|
+
bcc: [PersonReference!]
|
44
|
+
from: PersonReference
|
45
|
+
subject: String
|
46
|
+
attachments: [Attachment!]
|
47
|
+
htmlContent: String
|
48
|
+
textContent: String
|
49
|
+
}`;
|
50
|
+
@ObjectType()
|
51
|
+
export class Email extends BusinessObject {
|
52
|
+
@Field(() => [PersonReference], { nullable: true })
|
53
|
+
to;
|
54
|
+
@Field(() => [PersonReference], { nullable: true })
|
55
|
+
cc;
|
56
|
+
@Field(() => [PersonReference], { nullable: true })
|
57
|
+
bcc;
|
58
|
+
@Field(() => PersonReference, { nullable: true })
|
59
|
+
from;
|
60
|
+
@Field(() => String, { nullable: true })
|
61
|
+
subject;
|
62
|
+
@Field(() => [Attachment], { nullable: true })
|
63
|
+
attachments;
|
64
|
+
@Field(() => String, { nullable: true })
|
65
|
+
htmlContent;
|
66
|
+
@Field(() => String, { nullable: true })
|
67
|
+
textContent;
|
68
|
+
createBlockType;
|
69
|
+
constructor(tenantIdCreated, editors, sharingTags, provider, application, uri, externalId) {
|
70
|
+
super(tenantIdCreated, editors, sharingTags, BlockType.EMAIL, provider, application, uri, externalId);
|
71
|
+
}
|
72
|
+
}
|
73
|
+
//# sourceMappingURL=email.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"email.js","sourceRoot":"","sources":["../src/email.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC5D,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,cAAc,EAAE,oBAAoB,EAAE,MAAM,uBAAuB,CAAC;AAC7E,OAAO,EAAE,UAAU,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AAC1D,OAAO,EACN,oBAAoB,EACpB,wBAAwB,EAGxB,oBAAoB,GAEpB,MAAM,YAAY,CAAC;AAEpB,MAAM,CAAC,MAAM,kBAAkB,GAAG;0BACR,oBAAoB;;;;;;;;;;EAU5C,CAAC;AAEH,CAAC,SAAS,EAAE;AACZ,MAAM,OAAO,gBAAiB,SAAQ,wBAAwB;IAC7D,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,oBAAoB,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACxD,EAAE,CAAqB;IACvB,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,oBAAoB,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACxD,EAAE,CAAqB;IACvB,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,oBAAoB,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACxD,GAAG,CAAqB;IACxB,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,oBAAoB,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACtD,IAAI,CAAmB;IACvB,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACxC,OAAO,CAAiB;IACxB,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,eAAe,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACnD,WAAW,CAAuB;IAClC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACxC,WAAW,CAAU;IACrB,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACxC,WAAW,CAAU;IACrB,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACxC,eAAe,CAAU;CACzB;AAED,MAAM,CAAC,MAAM,OAAO,GAAG;cACT,oBAAoB;;;;;;;;;EAShC,CAAC;AAEH,CAAC,UAAU,EAAE;AACb,MAAM,OAAO,KAAM,SAAQ,cAAc;IACxC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,eAAe,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACnD,EAAE,CAAqB;IACvB,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,eAAe,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACnD,EAAE,CAAqB;IACvB,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,eAAe,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACnD,GAAG,CAAqB;IACxB,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,eAAe,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACjD,IAAI,CAAmB;IACvB,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACxC,OAAO,CAAiB;IACxB,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,UAAU,CAAC,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC9C,WAAW,CAAuB;IAClC,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACxC,WAAW,CAAU;IACrB,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACxC,WAAW,CAAU;IACrB,eAAe,CAAU;IAEzB,YACC,eAAuB,EACvB,OAAiB,EACjB,WAAyB,EACzB,QAAgB,EAChB,WAAmB,EACnB,GAAW,EACX,UAAkB;QAElB,KAAK,CAAC,eAAe,EAAE,OAAO,EAAE,WAAW,EAAE,SAAS,CAAC,KAAK,EAAE,QAAQ,EAAE,WAAW,EAAE,GAAG,EAAE,UAAU,CAAC,CAAC;IACvG,CAAC;CACD"}
|