@foru-ms/sdk 2.0.6 → 2.0.7
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/cjs/BaseClient.js +2 -2
- package/dist/cjs/api/resources/auth/types/GetAuthMeResponse.d.ts +7 -2
- package/dist/cjs/api/resources/auth/types/PostAuthForgotPasswordResponse.d.ts +7 -2
- package/dist/cjs/api/resources/auth/types/PostAuthLoginResponse.d.ts +20 -1
- package/dist/cjs/api/resources/auth/types/PostAuthRegisterResponse.d.ts +20 -1
- package/dist/cjs/api/resources/auth/types/PostAuthResetPasswordResponse.d.ts +6 -1
- package/dist/cjs/api/resources/integrations/types/GetIntegrationsResponse.d.ts +35 -32
- package/dist/cjs/api/resources/integrations/types/GetIntegrationsResponse.js +15 -12
- package/dist/cjs/api/resources/notifications/types/GetNotificationsResponse.d.ts +35 -32
- package/dist/cjs/api/resources/posts/types/GetPostsResponse.d.ts +28 -25
- package/dist/cjs/api/resources/privateMessages/types/GetPrivateMessagesResponse.d.ts +31 -28
- package/dist/cjs/api/resources/reports/types/GetReportsResponse.d.ts +33 -30
- package/dist/cjs/api/resources/roles/types/GetRolesResponse.d.ts +27 -24
- package/dist/cjs/api/resources/ssOs/types/GetSsoResponse.d.ts +32 -29
- package/dist/cjs/api/resources/ssOs/types/GetSsoResponse.js +12 -9
- package/dist/cjs/api/resources/tags/types/GetTagsResponse.d.ts +27 -24
- package/dist/cjs/api/resources/threads/types/GetThreadsResponse.d.ts +55 -52
- package/dist/cjs/api/resources/users/types/GetUsersResponse.d.ts +46 -43
- package/dist/cjs/api/resources/webhooks/types/GetWebhooksResponse.d.ts +29 -26
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/BaseClient.mjs +2 -2
- package/dist/esm/api/resources/auth/types/GetAuthMeResponse.d.mts +7 -2
- package/dist/esm/api/resources/auth/types/PostAuthForgotPasswordResponse.d.mts +7 -2
- package/dist/esm/api/resources/auth/types/PostAuthLoginResponse.d.mts +20 -1
- package/dist/esm/api/resources/auth/types/PostAuthRegisterResponse.d.mts +20 -1
- package/dist/esm/api/resources/auth/types/PostAuthResetPasswordResponse.d.mts +6 -1
- package/dist/esm/api/resources/integrations/types/GetIntegrationsResponse.d.mts +35 -32
- package/dist/esm/api/resources/integrations/types/GetIntegrationsResponse.mjs +15 -12
- package/dist/esm/api/resources/notifications/types/GetNotificationsResponse.d.mts +35 -32
- package/dist/esm/api/resources/posts/types/GetPostsResponse.d.mts +28 -25
- package/dist/esm/api/resources/privateMessages/types/GetPrivateMessagesResponse.d.mts +31 -28
- package/dist/esm/api/resources/reports/types/GetReportsResponse.d.mts +33 -30
- package/dist/esm/api/resources/roles/types/GetRolesResponse.d.mts +27 -24
- package/dist/esm/api/resources/ssOs/types/GetSsoResponse.d.mts +32 -29
- package/dist/esm/api/resources/ssOs/types/GetSsoResponse.mjs +12 -9
- package/dist/esm/api/resources/tags/types/GetTagsResponse.d.mts +27 -24
- package/dist/esm/api/resources/threads/types/GetThreadsResponse.d.mts +55 -52
- package/dist/esm/api/resources/users/types/GetUsersResponse.d.mts +46 -43
- package/dist/esm/api/resources/webhooks/types/GetWebhooksResponse.d.mts +29 -26
- package/dist/esm/version.d.mts +1 -1
- package/dist/esm/version.mjs +1 -1
- package/package.json +2 -4
|
@@ -1,31 +1,34 @@
|
|
|
1
1
|
export interface GetTagsResponse {
|
|
2
|
-
data: GetTagsResponse.Data
|
|
3
|
-
meta: GetTagsResponse.Meta;
|
|
2
|
+
data: GetTagsResponse.Data;
|
|
4
3
|
}
|
|
5
4
|
export declare namespace GetTagsResponse {
|
|
6
|
-
|
|
5
|
+
interface Data {
|
|
6
|
+
items: Data.Items.Item[];
|
|
7
|
+
/** Cursor for next page */
|
|
8
|
+
nextCursor?: string;
|
|
9
|
+
/** Total count of items */
|
|
10
|
+
count: number;
|
|
11
|
+
}
|
|
7
12
|
namespace Data {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
13
|
+
type Items = Items.Item[];
|
|
14
|
+
namespace Items {
|
|
15
|
+
interface Item {
|
|
16
|
+
/** Tag name */
|
|
17
|
+
name: string;
|
|
18
|
+
/** Tag slug (unique identifier) */
|
|
19
|
+
slug?: string;
|
|
20
|
+
/** Tag description */
|
|
21
|
+
description?: string;
|
|
22
|
+
/** Hex color code */
|
|
23
|
+
color?: string;
|
|
24
|
+
/** Extended data */
|
|
25
|
+
extendedData?: Record<string, unknown>;
|
|
26
|
+
id: string;
|
|
27
|
+
/** Tag creation timestamp */
|
|
28
|
+
createdAt: string;
|
|
29
|
+
/** Tag last update timestamp */
|
|
30
|
+
updatedAt: string;
|
|
31
|
+
}
|
|
24
32
|
}
|
|
25
33
|
}
|
|
26
|
-
interface Meta {
|
|
27
|
-
total: number;
|
|
28
|
-
page: number;
|
|
29
|
-
limit: number;
|
|
30
|
-
}
|
|
31
34
|
}
|
|
@@ -1,64 +1,67 @@
|
|
|
1
1
|
export interface GetThreadsResponse {
|
|
2
|
-
data: GetThreadsResponse.Data
|
|
3
|
-
meta: GetThreadsResponse.Meta;
|
|
2
|
+
data: GetThreadsResponse.Data;
|
|
4
3
|
}
|
|
5
4
|
export declare namespace GetThreadsResponse {
|
|
6
|
-
|
|
5
|
+
interface Data {
|
|
6
|
+
items: Data.Items.Item[];
|
|
7
|
+
/** Cursor for next page */
|
|
8
|
+
nextCursor?: string;
|
|
9
|
+
/** Total count of items */
|
|
10
|
+
count: number;
|
|
11
|
+
}
|
|
7
12
|
namespace Data {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
body: string;
|
|
13
|
-
/** Author user ID (required for API key auth, ignored for JWT auth) */
|
|
14
|
-
userId?: string;
|
|
15
|
-
/** List of tag slugs, names, or IDs to attach */
|
|
16
|
-
tags?: string[];
|
|
17
|
-
/** Poll data */
|
|
18
|
-
poll?: Item.Poll;
|
|
19
|
-
id: string;
|
|
20
|
-
/** URL-friendly identifier */
|
|
21
|
-
slug: string | null;
|
|
22
|
-
/** Whether thread is locked */
|
|
23
|
-
locked: boolean | null;
|
|
24
|
-
/** Whether thread is pinned */
|
|
25
|
-
pinned: boolean | null;
|
|
26
|
-
/** View count */
|
|
27
|
-
views: number;
|
|
28
|
-
/** Number of posts/replies */
|
|
29
|
-
postsCount: number;
|
|
30
|
-
/** Timestamp of the last post */
|
|
31
|
-
lastPostAt: string | null;
|
|
32
|
-
/** Custom metadata */
|
|
33
|
-
extendedData: Record<string, unknown> | null;
|
|
34
|
-
createdAt: string;
|
|
35
|
-
updatedAt: string;
|
|
36
|
-
}
|
|
37
|
-
namespace Item {
|
|
38
|
-
/**
|
|
39
|
-
* Poll data
|
|
40
|
-
*/
|
|
41
|
-
interface Poll {
|
|
42
|
-
/** Poll title */
|
|
13
|
+
type Items = Items.Item[];
|
|
14
|
+
namespace Items {
|
|
15
|
+
interface Item {
|
|
16
|
+
/** Thread title */
|
|
43
17
|
title: string;
|
|
44
|
-
/**
|
|
45
|
-
|
|
18
|
+
/** Thread content (Markdown supported) */
|
|
19
|
+
body: string;
|
|
20
|
+
/** Author user ID (required for API key auth, ignored for JWT auth) */
|
|
21
|
+
userId?: string;
|
|
22
|
+
/** List of tag slugs, names, or IDs to attach */
|
|
23
|
+
tags?: string[];
|
|
24
|
+
/** Poll data */
|
|
25
|
+
poll?: Item.Poll;
|
|
26
|
+
id: string;
|
|
27
|
+
/** URL-friendly identifier */
|
|
28
|
+
slug: string | null;
|
|
29
|
+
/** Whether thread is locked */
|
|
30
|
+
locked: boolean | null;
|
|
31
|
+
/** Whether thread is pinned */
|
|
32
|
+
pinned: boolean | null;
|
|
33
|
+
/** View count */
|
|
34
|
+
views: number;
|
|
35
|
+
/** Number of posts/replies */
|
|
36
|
+
postsCount: number;
|
|
37
|
+
/** Timestamp of the last post */
|
|
38
|
+
lastPostAt: string | null;
|
|
39
|
+
/** Custom metadata */
|
|
40
|
+
extendedData: Record<string, unknown> | null;
|
|
41
|
+
createdAt: string;
|
|
42
|
+
updatedAt: string;
|
|
46
43
|
}
|
|
47
|
-
namespace
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
44
|
+
namespace Item {
|
|
45
|
+
/**
|
|
46
|
+
* Poll data
|
|
47
|
+
*/
|
|
48
|
+
interface Poll {
|
|
49
|
+
/** Poll title */
|
|
50
|
+
title: string;
|
|
51
|
+
/** Poll options */
|
|
52
|
+
options: Poll.Options.Item[];
|
|
53
|
+
}
|
|
54
|
+
namespace Poll {
|
|
55
|
+
type Options = Options.Item[];
|
|
56
|
+
namespace Options {
|
|
57
|
+
interface Item {
|
|
58
|
+
title: string;
|
|
59
|
+
color?: string;
|
|
60
|
+
extendedData?: Record<string, unknown>;
|
|
61
|
+
}
|
|
54
62
|
}
|
|
55
63
|
}
|
|
56
64
|
}
|
|
57
65
|
}
|
|
58
66
|
}
|
|
59
|
-
interface Meta {
|
|
60
|
-
total: number;
|
|
61
|
-
page: number;
|
|
62
|
-
limit: number;
|
|
63
|
-
}
|
|
64
67
|
}
|
|
@@ -1,52 +1,55 @@
|
|
|
1
1
|
export interface GetUsersResponse {
|
|
2
|
-
data: GetUsersResponse.Data
|
|
3
|
-
meta: GetUsersResponse.Meta;
|
|
2
|
+
data: GetUsersResponse.Data;
|
|
4
3
|
}
|
|
5
4
|
export declare namespace GetUsersResponse {
|
|
6
|
-
|
|
5
|
+
interface Data {
|
|
6
|
+
items: Data.Items.Item[];
|
|
7
|
+
/** Cursor for next page */
|
|
8
|
+
nextCursor?: string;
|
|
9
|
+
/** Total count of items */
|
|
10
|
+
count: number;
|
|
11
|
+
}
|
|
7
12
|
namespace Data {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
namespace
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
13
|
+
type Items = Items.Item[];
|
|
14
|
+
namespace Items {
|
|
15
|
+
interface Item {
|
|
16
|
+
id: string;
|
|
17
|
+
username: string;
|
|
18
|
+
/** Display name */
|
|
19
|
+
displayName: string | null;
|
|
20
|
+
/** User bio */
|
|
21
|
+
bio: string | null;
|
|
22
|
+
/** Forum signature */
|
|
23
|
+
signature: string | null;
|
|
24
|
+
/** User website URL */
|
|
25
|
+
url: string | null;
|
|
26
|
+
/** Total posts by user */
|
|
27
|
+
postsCount?: number;
|
|
28
|
+
/** Total threads by user */
|
|
29
|
+
threadsCount?: number;
|
|
30
|
+
/** Online status */
|
|
31
|
+
isOnline: boolean | null;
|
|
32
|
+
/** Last activity timestamp */
|
|
33
|
+
lastSeenAt: string | null;
|
|
34
|
+
/** User roles */
|
|
35
|
+
roles?: Item.Roles.Item[];
|
|
36
|
+
/** Custom user data */
|
|
37
|
+
extendedData: Record<string, unknown> | null;
|
|
38
|
+
/** Account creation timestamp */
|
|
39
|
+
createdAt: string;
|
|
40
|
+
/** Profile last update timestamp */
|
|
41
|
+
updatedAt: string;
|
|
42
|
+
}
|
|
43
|
+
namespace Item {
|
|
44
|
+
type Roles = Roles.Item[];
|
|
45
|
+
namespace Roles {
|
|
46
|
+
interface Item {
|
|
47
|
+
id: string;
|
|
48
|
+
name: string;
|
|
49
|
+
slug: string | null;
|
|
50
|
+
}
|
|
43
51
|
}
|
|
44
52
|
}
|
|
45
53
|
}
|
|
46
54
|
}
|
|
47
|
-
interface Meta {
|
|
48
|
-
total: number;
|
|
49
|
-
page: number;
|
|
50
|
-
limit: number;
|
|
51
|
-
}
|
|
52
55
|
}
|
|
@@ -1,33 +1,36 @@
|
|
|
1
1
|
export interface GetWebhooksResponse {
|
|
2
|
-
data: GetWebhooksResponse.Data
|
|
3
|
-
meta: GetWebhooksResponse.Meta;
|
|
2
|
+
data: GetWebhooksResponse.Data;
|
|
4
3
|
}
|
|
5
4
|
export declare namespace GetWebhooksResponse {
|
|
6
|
-
|
|
5
|
+
interface Data {
|
|
6
|
+
items: Data.Items.Item[];
|
|
7
|
+
/** Cursor for next page */
|
|
8
|
+
nextCursor?: string;
|
|
9
|
+
/** Total count of items */
|
|
10
|
+
count: number;
|
|
11
|
+
}
|
|
7
12
|
namespace Data {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
13
|
+
type Items = Items.Item[];
|
|
14
|
+
namespace Items {
|
|
15
|
+
interface Item {
|
|
16
|
+
id: string;
|
|
17
|
+
/** Webhook name */
|
|
18
|
+
name: string;
|
|
19
|
+
/** Webhook endpoint URL */
|
|
20
|
+
url: string;
|
|
21
|
+
/** Event types to trigger on */
|
|
22
|
+
events: string[];
|
|
23
|
+
/** Whether webhook is active */
|
|
24
|
+
active: boolean;
|
|
25
|
+
/** Last trigger timestamp */
|
|
26
|
+
lastTriggered: string | null;
|
|
27
|
+
/** Consecutive failure count */
|
|
28
|
+
failureCount: number;
|
|
29
|
+
/** Webhook creation timestamp */
|
|
30
|
+
createdAt: string;
|
|
31
|
+
/** Webhook last update timestamp */
|
|
32
|
+
updatedAt: string;
|
|
33
|
+
}
|
|
26
34
|
}
|
|
27
35
|
}
|
|
28
|
-
interface Meta {
|
|
29
|
-
total: number;
|
|
30
|
-
page: number;
|
|
31
|
-
limit: number;
|
|
32
|
-
}
|
|
33
36
|
}
|
package/dist/cjs/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "2.0.
|
|
1
|
+
export declare const SDK_VERSION = "2.0.7";
|
package/dist/cjs/version.js
CHANGED
package/dist/esm/BaseClient.mjs
CHANGED
|
@@ -6,8 +6,8 @@ export function normalizeClientOptions(options) {
|
|
|
6
6
|
const headers = mergeHeaders({
|
|
7
7
|
"X-Fern-Language": "JavaScript",
|
|
8
8
|
"X-Fern-SDK-Name": "@foru-ms/sdk",
|
|
9
|
-
"X-Fern-SDK-Version": "2.0.
|
|
10
|
-
"User-Agent": "@foru-ms/sdk/2.0.
|
|
9
|
+
"X-Fern-SDK-Version": "2.0.7",
|
|
10
|
+
"User-Agent": "@foru-ms/sdk/2.0.7",
|
|
11
11
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
12
12
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
13
13
|
}, options === null || options === void 0 ? void 0 : options.headers);
|
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
export interface PostAuthForgotPasswordResponse {
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
data: PostAuthForgotPasswordResponse.Data;
|
|
3
|
+
}
|
|
4
|
+
export declare namespace PostAuthForgotPasswordResponse {
|
|
5
|
+
interface Data {
|
|
6
|
+
message: string;
|
|
7
|
+
resetToken?: string;
|
|
8
|
+
}
|
|
4
9
|
}
|
|
@@ -1,3 +1,22 @@
|
|
|
1
1
|
export interface PostAuthLoginResponse {
|
|
2
|
-
|
|
2
|
+
data: PostAuthLoginResponse.Data;
|
|
3
|
+
}
|
|
4
|
+
export declare namespace PostAuthLoginResponse {
|
|
5
|
+
interface Data {
|
|
6
|
+
/** JWT token for authenticated requests */
|
|
7
|
+
token: string;
|
|
8
|
+
/** Authenticated user profile */
|
|
9
|
+
user: Data.User;
|
|
10
|
+
}
|
|
11
|
+
namespace Data {
|
|
12
|
+
/**
|
|
13
|
+
* Authenticated user profile
|
|
14
|
+
*/
|
|
15
|
+
interface User {
|
|
16
|
+
id: string;
|
|
17
|
+
username: string;
|
|
18
|
+
email?: string;
|
|
19
|
+
displayName: string | null;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
3
22
|
}
|
|
@@ -1,3 +1,22 @@
|
|
|
1
1
|
export interface PostAuthRegisterResponse {
|
|
2
|
-
|
|
2
|
+
data: PostAuthRegisterResponse.Data;
|
|
3
|
+
}
|
|
4
|
+
export declare namespace PostAuthRegisterResponse {
|
|
5
|
+
interface Data {
|
|
6
|
+
/** JWT token for authenticated requests */
|
|
7
|
+
token: string;
|
|
8
|
+
/** Registered user profile */
|
|
9
|
+
user: Data.User;
|
|
10
|
+
}
|
|
11
|
+
namespace Data {
|
|
12
|
+
/**
|
|
13
|
+
* Registered user profile
|
|
14
|
+
*/
|
|
15
|
+
interface User {
|
|
16
|
+
id: string;
|
|
17
|
+
username: string;
|
|
18
|
+
email?: string;
|
|
19
|
+
displayName: string | null;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
3
22
|
}
|
|
@@ -1,39 +1,42 @@
|
|
|
1
1
|
export interface GetIntegrationsResponse {
|
|
2
|
-
data: GetIntegrationsResponse.Data
|
|
3
|
-
meta: GetIntegrationsResponse.Meta;
|
|
2
|
+
data: GetIntegrationsResponse.Data;
|
|
4
3
|
}
|
|
5
4
|
export declare namespace GetIntegrationsResponse {
|
|
6
|
-
|
|
5
|
+
interface Data {
|
|
6
|
+
items: Data.Items.Item[];
|
|
7
|
+
/** Cursor for next page */
|
|
8
|
+
nextCursor?: string;
|
|
9
|
+
/** Total count of items */
|
|
10
|
+
count: number;
|
|
11
|
+
}
|
|
7
12
|
namespace Data {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
13
|
+
type Items = Items.Item[];
|
|
14
|
+
namespace Items {
|
|
15
|
+
interface Item {
|
|
16
|
+
id: string;
|
|
17
|
+
/** Integration type */
|
|
18
|
+
type: Item.Type;
|
|
19
|
+
/** Integration name */
|
|
20
|
+
name: string;
|
|
21
|
+
/** Whether integration is active */
|
|
22
|
+
active: boolean;
|
|
23
|
+
/** Integration creation timestamp */
|
|
24
|
+
createdAt: string;
|
|
25
|
+
/** Integration last update timestamp */
|
|
26
|
+
updatedAt: string;
|
|
27
|
+
}
|
|
28
|
+
namespace Item {
|
|
29
|
+
/** Integration type */
|
|
30
|
+
const Type: {
|
|
31
|
+
readonly Slack: "SLACK";
|
|
32
|
+
readonly Discord: "DISCORD";
|
|
33
|
+
readonly Salesforce: "SALESFORCE";
|
|
34
|
+
readonly Hubspot: "HUBSPOT";
|
|
35
|
+
readonly Okta: "OKTA";
|
|
36
|
+
readonly Auth0: "AUTH0";
|
|
37
|
+
};
|
|
38
|
+
type Type = (typeof Type)[keyof typeof Type];
|
|
39
|
+
}
|
|
32
40
|
}
|
|
33
41
|
}
|
|
34
|
-
interface Meta {
|
|
35
|
-
total: number;
|
|
36
|
-
page: number;
|
|
37
|
-
limit: number;
|
|
38
|
-
}
|
|
39
42
|
}
|
|
@@ -3,17 +3,20 @@ export var GetIntegrationsResponse;
|
|
|
3
3
|
(function (GetIntegrationsResponse) {
|
|
4
4
|
let Data;
|
|
5
5
|
(function (Data) {
|
|
6
|
-
let
|
|
7
|
-
(function (
|
|
8
|
-
|
|
9
|
-
Item
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
6
|
+
let Items;
|
|
7
|
+
(function (Items) {
|
|
8
|
+
let Item;
|
|
9
|
+
(function (Item) {
|
|
10
|
+
/** Integration type */
|
|
11
|
+
Item.Type = {
|
|
12
|
+
Slack: "SLACK",
|
|
13
|
+
Discord: "DISCORD",
|
|
14
|
+
Salesforce: "SALESFORCE",
|
|
15
|
+
Hubspot: "HUBSPOT",
|
|
16
|
+
Okta: "OKTA",
|
|
17
|
+
Auth0: "AUTH0",
|
|
18
|
+
};
|
|
19
|
+
})(Item = Items.Item || (Items.Item = {}));
|
|
20
|
+
})(Items = Data.Items || (Data.Items = {}));
|
|
18
21
|
})(Data = GetIntegrationsResponse.Data || (GetIntegrationsResponse.Data = {}));
|
|
19
22
|
})(GetIntegrationsResponse || (GetIntegrationsResponse = {}));
|
|
@@ -1,39 +1,42 @@
|
|
|
1
1
|
export interface GetNotificationsResponse {
|
|
2
|
-
data: GetNotificationsResponse.Data
|
|
3
|
-
meta: GetNotificationsResponse.Meta;
|
|
2
|
+
data: GetNotificationsResponse.Data;
|
|
4
3
|
}
|
|
5
4
|
export declare namespace GetNotificationsResponse {
|
|
6
|
-
|
|
5
|
+
interface Data {
|
|
6
|
+
items: Data.Items.Item[];
|
|
7
|
+
/** Cursor for next page */
|
|
8
|
+
nextCursor?: string;
|
|
9
|
+
/** Total count of items */
|
|
10
|
+
count: number;
|
|
11
|
+
}
|
|
7
12
|
namespace Data {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
13
|
+
type Items = Items.Item[];
|
|
14
|
+
namespace Items {
|
|
15
|
+
interface Item {
|
|
16
|
+
id: string;
|
|
17
|
+
/** Recipient user ID */
|
|
18
|
+
userId: string;
|
|
19
|
+
/** User ID who triggered the notification */
|
|
20
|
+
notifierId: string;
|
|
21
|
+
/** Notification type */
|
|
22
|
+
type: string | null;
|
|
23
|
+
/** Notification text content */
|
|
24
|
+
description: string | null;
|
|
25
|
+
/** Notification status (read, unread, dismissed, archived) */
|
|
26
|
+
status: string | null;
|
|
27
|
+
/** Related thread ID */
|
|
28
|
+
threadId: string | null;
|
|
29
|
+
/** Related post ID */
|
|
30
|
+
postId: string | null;
|
|
31
|
+
/** Related private message ID */
|
|
32
|
+
privateMessageId: string | null;
|
|
33
|
+
/** Additional notification data */
|
|
34
|
+
extendedData: Record<string, unknown> | null;
|
|
35
|
+
/** Notification creation timestamp */
|
|
36
|
+
createdAt: string;
|
|
37
|
+
/** Notification last update timestamp */
|
|
38
|
+
updatedAt: string;
|
|
39
|
+
}
|
|
32
40
|
}
|
|
33
41
|
}
|
|
34
|
-
interface Meta {
|
|
35
|
-
total: number;
|
|
36
|
-
page: number;
|
|
37
|
-
limit: number;
|
|
38
|
-
}
|
|
39
42
|
}
|