@brivioio/api-server-types 7.14.0 → 7.16.0
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/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -0
- package/dist/organizationDomains.types.d.ts +80 -0
- package/dist/organizationDomains.types.d.ts.map +1 -0
- package/dist/organizationDomains.types.js +1 -0
- package/dist/slackChannels.types.d.ts +20 -0
- package/dist/slackChannels.types.d.ts.map +1 -0
- package/dist/slackChannels.types.js +1 -0
- package/dist/slackMessages.types.d.ts +26 -0
- package/dist/slackMessages.types.d.ts.map +1 -0
- package/dist/slackMessages.types.js +1 -0
- package/dist/slackWorkspaces.types.d.ts +44 -0
- package/dist/slackWorkspaces.types.d.ts.map +1 -0
- package/dist/slackWorkspaces.types.js +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
export * from './jobRoleChatHistory.types';
|
|
2
2
|
export * from './jobRoles.types';
|
|
3
3
|
export * from './meetingBots.types';
|
|
4
|
+
export * from './organizationDomains.types';
|
|
4
5
|
export * from './organizationUsers.types';
|
|
5
6
|
export * from './organizations.types';
|
|
7
|
+
export * from './slackChannels.types';
|
|
8
|
+
export * from './slackMessages.types';
|
|
9
|
+
export * from './slackWorkspaces.types';
|
|
6
10
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC;AAC3C,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,uBAAuB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC;AAC3C,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,uBAAuB,CAAC;AACtC,cAAc,yBAAyB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
export * from './jobRoleChatHistory.types';
|
|
2
2
|
export * from './jobRoles.types';
|
|
3
3
|
export * from './meetingBots.types';
|
|
4
|
+
export * from './organizationDomains.types';
|
|
4
5
|
export * from './organizationUsers.types';
|
|
5
6
|
export * from './organizations.types';
|
|
7
|
+
export * from './slackChannels.types';
|
|
8
|
+
export * from './slackMessages.types';
|
|
9
|
+
export * from './slackWorkspaces.types';
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import type { IResponse } from './utils.types';
|
|
2
|
+
export type TDomainCapability = 'enabled' | 'disabled';
|
|
3
|
+
export type TDomainStatus = 'not_started' | 'pending' | 'verified' | 'failed' | 'temporary_failure';
|
|
4
|
+
export type TDomainTlsMode = 'opportunistic' | 'enforced';
|
|
5
|
+
export type TDomainDnsRecordType = 'TXT' | 'MX' | 'CNAME';
|
|
6
|
+
export interface IDomainDnsRecord {
|
|
7
|
+
record: string;
|
|
8
|
+
name: string;
|
|
9
|
+
type: TDomainDnsRecordType;
|
|
10
|
+
value: string;
|
|
11
|
+
ttl?: string;
|
|
12
|
+
priority?: number;
|
|
13
|
+
status?: TDomainStatus;
|
|
14
|
+
}
|
|
15
|
+
export interface IOrganizationDomain {
|
|
16
|
+
_id: string;
|
|
17
|
+
organization: string;
|
|
18
|
+
resendDomainId: string;
|
|
19
|
+
name: string;
|
|
20
|
+
region: string;
|
|
21
|
+
status: TDomainStatus;
|
|
22
|
+
capabilities: {
|
|
23
|
+
sending: TDomainCapability;
|
|
24
|
+
receiving: TDomainCapability;
|
|
25
|
+
};
|
|
26
|
+
tls: TDomainTlsMode;
|
|
27
|
+
openTracking: boolean;
|
|
28
|
+
clickTracking: boolean;
|
|
29
|
+
customReturnPath?: string;
|
|
30
|
+
dnsRecords: IDomainDnsRecord[];
|
|
31
|
+
lastVerificationAttemptAt?: string;
|
|
32
|
+
verifiedAt?: string;
|
|
33
|
+
isDeleted: boolean;
|
|
34
|
+
createdAt: string;
|
|
35
|
+
updatedAt: string;
|
|
36
|
+
}
|
|
37
|
+
export type TOrganizationDomainPublic = {
|
|
38
|
+
id: string;
|
|
39
|
+
name: string;
|
|
40
|
+
region: string;
|
|
41
|
+
status: TDomainStatus;
|
|
42
|
+
capabilities: {
|
|
43
|
+
sending: TDomainCapability;
|
|
44
|
+
receiving: TDomainCapability;
|
|
45
|
+
};
|
|
46
|
+
tls: TDomainTlsMode;
|
|
47
|
+
openTracking: boolean;
|
|
48
|
+
clickTracking: boolean;
|
|
49
|
+
customReturnPath?: string;
|
|
50
|
+
dnsRecords: IDomainDnsRecord[];
|
|
51
|
+
lastVerificationAttemptAt: string | null;
|
|
52
|
+
verifiedAt: string | null;
|
|
53
|
+
createdAt: string;
|
|
54
|
+
updatedAt: string;
|
|
55
|
+
};
|
|
56
|
+
export declare namespace OrganizationDomainAPITypes {
|
|
57
|
+
type TGetDomainResponse = IResponse<{
|
|
58
|
+
domain: TOrganizationDomainPublic | null;
|
|
59
|
+
} | null>;
|
|
60
|
+
type TCreateDomainRequestBody = {
|
|
61
|
+
domain: string;
|
|
62
|
+
};
|
|
63
|
+
type TCreateDomainResponse = IResponse<{
|
|
64
|
+
domain: TOrganizationDomainPublic;
|
|
65
|
+
} | null>;
|
|
66
|
+
type TVerifyDomainResponse = IResponse<{
|
|
67
|
+
domain: TOrganizationDomainPublic;
|
|
68
|
+
} | null>;
|
|
69
|
+
type TRefreshDomainResponse = IResponse<{
|
|
70
|
+
domain: TOrganizationDomainPublic;
|
|
71
|
+
} | null>;
|
|
72
|
+
type TDeleteDomainResponse = IResponse<null>;
|
|
73
|
+
type TSendItInstructionsRequestBody = {
|
|
74
|
+
receivers: string[];
|
|
75
|
+
};
|
|
76
|
+
type TSendItInstructionsResponse = IResponse<{
|
|
77
|
+
sentCount: number;
|
|
78
|
+
} | null>;
|
|
79
|
+
}
|
|
80
|
+
//# sourceMappingURL=organizationDomains.types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"organizationDomains.types.d.ts","sourceRoot":"","sources":["../src/organizationDomains.types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export type TSlackChannelDrainStatus = 'idle' | 'draining' | 'failed';
|
|
2
|
+
export type TSlackChannelBackfillStatus = 'pending' | 'running' | 'success' | 'failed';
|
|
3
|
+
export interface ISlackChannel {
|
|
4
|
+
_id: string;
|
|
5
|
+
slackWorkspaceId: string;
|
|
6
|
+
organizationId: string;
|
|
7
|
+
channelId: string;
|
|
8
|
+
channelName: string;
|
|
9
|
+
isPrivate: boolean;
|
|
10
|
+
joinedAt: string;
|
|
11
|
+
lastProcessedTs: string | null;
|
|
12
|
+
lastDrainAt: Date | null;
|
|
13
|
+
unprocessedCount: number;
|
|
14
|
+
drainStatus: TSlackChannelDrainStatus;
|
|
15
|
+
backfillStatus: TSlackChannelBackfillStatus;
|
|
16
|
+
isDeleted: boolean;
|
|
17
|
+
createdAt: string;
|
|
18
|
+
updatedAt: string;
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=slackChannels.types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"slackChannels.types.d.ts","sourceRoot":"","sources":["../src/slackChannels.types.ts"],"names":[],"mappings":"AACA,MAAM,MAAM,wBAAwB,GAAG,MAAM,GAAG,UAAU,GAAG,QAAQ,CAAC;AACtE,MAAM,MAAM,2BAA2B,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,CAAC;AAEvF,MAAM,WAAW,aAAa;IAC5B,GAAG,EAAE,MAAM,CAAC;IACZ,gBAAgB,EAAE,MAAM,CAAC;IACzB,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,OAAO,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B,WAAW,EAAE,IAAI,GAAG,IAAI,CAAC;IACzB,gBAAgB,EAAE,MAAM,CAAC;IACzB,WAAW,EAAE,wBAAwB,CAAC;IACtC,cAAc,EAAE,2BAA2B,CAAC;IAC5C,SAAS,EAAE,OAAO,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;CACnB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export type TSlackFileExtraction = {
|
|
2
|
+
slackFileId: string;
|
|
3
|
+
name: string;
|
|
4
|
+
mimeType: string;
|
|
5
|
+
sizeBytes: number;
|
|
6
|
+
extractedText: string | null;
|
|
7
|
+
visionDescription: string | null;
|
|
8
|
+
rawDiscarded: boolean;
|
|
9
|
+
};
|
|
10
|
+
export interface ISlackMessage {
|
|
11
|
+
_id: string;
|
|
12
|
+
slackChannelId: string;
|
|
13
|
+
organizationId: string;
|
|
14
|
+
slackMessageTs: string;
|
|
15
|
+
slackUserId: string | null;
|
|
16
|
+
text: string;
|
|
17
|
+
threadTs: string | null;
|
|
18
|
+
files: TSlackFileExtraction[];
|
|
19
|
+
messageSubtype: string | null;
|
|
20
|
+
processed: boolean;
|
|
21
|
+
processedAt: Date | null;
|
|
22
|
+
isDeleted: boolean;
|
|
23
|
+
createdAt: string;
|
|
24
|
+
updatedAt: string;
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=slackMessages.types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"slackMessages.types.d.ts","sourceRoot":"","sources":["../src/slackMessages.types.ts"],"names":[],"mappings":"AACA,MAAM,MAAM,oBAAoB,GAAG;IACjC,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;IAElB,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IAE7B,iBAAiB,EAAE,MAAM,GAAG,IAAI,CAAC;IAEjC,YAAY,EAAE,OAAO,CAAC;CACvB,CAAC;AAEF,MAAM,WAAW,aAAa;IAC5B,GAAG,EAAE,MAAM,CAAC;IACZ,cAAc,EAAE,MAAM,CAAC;IACvB,cAAc,EAAE,MAAM,CAAC;IACvB,cAAc,EAAE,MAAM,CAAC;IACvB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,KAAK,EAAE,oBAAoB,EAAE,CAAC;IAC9B,cAAc,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,SAAS,EAAE,OAAO,CAAC;IACnB,WAAW,EAAE,IAAI,GAAG,IAAI,CAAC;IACzB,SAAS,EAAE,OAAO,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;CACnB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import type { IResponse } from './utils.types';
|
|
2
|
+
export interface ISlackWorkspace {
|
|
3
|
+
_id: string;
|
|
4
|
+
organizationId: string;
|
|
5
|
+
teamId: string;
|
|
6
|
+
teamName: string;
|
|
7
|
+
botUserId: string;
|
|
8
|
+
botAccessTokenEncrypted: string;
|
|
9
|
+
authedUserId: string;
|
|
10
|
+
scopes: string[];
|
|
11
|
+
installedAt: string;
|
|
12
|
+
isActive: boolean;
|
|
13
|
+
uninstalledAt?: string;
|
|
14
|
+
isDeleted: boolean;
|
|
15
|
+
createdAt: string;
|
|
16
|
+
updatedAt: string;
|
|
17
|
+
}
|
|
18
|
+
export type TSlackWorkspaceSummary = {
|
|
19
|
+
teamId: string;
|
|
20
|
+
teamName: string;
|
|
21
|
+
botUserId: string;
|
|
22
|
+
installedAt: string;
|
|
23
|
+
isActive: boolean;
|
|
24
|
+
};
|
|
25
|
+
export type TSlackChannelSummary = {
|
|
26
|
+
channelId: string;
|
|
27
|
+
channelName: string;
|
|
28
|
+
isPrivate: boolean;
|
|
29
|
+
joinedAt: string;
|
|
30
|
+
lastDrainAt: string | null;
|
|
31
|
+
unprocessedCount: number;
|
|
32
|
+
drainStatus: 'idle' | 'draining' | 'failed';
|
|
33
|
+
backfillStatus: 'pending' | 'running' | 'success' | 'failed';
|
|
34
|
+
};
|
|
35
|
+
export declare namespace SlackAPITypes {
|
|
36
|
+
type TGetWorkspaceResponse = IResponse<{
|
|
37
|
+
workspace: TSlackWorkspaceSummary | null;
|
|
38
|
+
channels: TSlackChannelSummary[];
|
|
39
|
+
} | null>;
|
|
40
|
+
type TDisconnectResponse = IResponse<{
|
|
41
|
+
ok: true;
|
|
42
|
+
} | null>;
|
|
43
|
+
}
|
|
44
|
+
//# sourceMappingURL=slackWorkspaces.types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"slackWorkspaces.types.d.ts","sourceRoot":"","sources":["../src/slackWorkspaces.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAE/C,MAAM,WAAW,eAAe;IAC9B,GAAG,EAAE,MAAM,CAAC;IACZ,cAAc,EAAE,MAAM,CAAC;IACvB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,uBAAuB,EAAE,MAAM,CAAC;IAChC,YAAY,EAAE,MAAM,CAAC;IACrB,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,OAAO,CAAC;IAClB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,OAAO,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,MAAM,sBAAsB,GAAG;IACnC,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAAG;IACjC,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,OAAO,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,gBAAgB,EAAE,MAAM,CAAC;IACzB,WAAW,EAAE,MAAM,GAAG,UAAU,GAAG,QAAQ,CAAC;IAC5C,cAAc,EAAE,SAAS,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,CAAC;CAC9D,CAAC;AAEF,yBAAiB,aAAa,CAAC;IAC7B,KAAY,qBAAqB,GAAG,SAAS,CAAC;QAC5C,SAAS,EAAE,sBAAsB,GAAG,IAAI,CAAC;QACzC,QAAQ,EAAE,oBAAoB,EAAE,CAAC;KAClC,GAAG,IAAI,CAAC,CAAC;IAEV,KAAY,mBAAmB,GAAG,SAAS,CAAC;QAAE,EAAE,EAAE,IAAI,CAAA;KAAE,GAAG,IAAI,CAAC,CAAC;CAClE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|