agentmail 0.4.11 → 0.4.12

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.
@@ -43,8 +43,8 @@ function normalizeClientOptions(options) {
43
43
  const headers = (0, headers_js_1.mergeHeaders)({
44
44
  "X-Fern-Language": "JavaScript",
45
45
  "X-Fern-SDK-Name": "agentmail",
46
- "X-Fern-SDK-Version": "0.4.11",
47
- "User-Agent": "agentmail/0.4.11",
46
+ "X-Fern-SDK-Version": "0.4.12",
47
+ "User-Agent": "agentmail/0.4.12",
48
48
  "X-Fern-Runtime": core.RUNTIME.type,
49
49
  "X-Fern-Runtime-Version": core.RUNTIME.version,
50
50
  }, options === null || options === void 0 ? void 0 : options.headers);
@@ -3,73 +3,73 @@
3
3
  */
4
4
  export interface ApiKeyPermissions {
5
5
  /** Read inbox details. */
6
- readInbox?: boolean;
6
+ inboxRead?: boolean;
7
7
  /** Create new inboxes. */
8
- createInbox?: boolean;
8
+ inboxCreate?: boolean;
9
9
  /** Update inbox settings. */
10
- updateInbox?: boolean;
10
+ inboxUpdate?: boolean;
11
11
  /** Delete inboxes. */
12
- deleteInbox?: boolean;
12
+ inboxDelete?: boolean;
13
13
  /** Read threads. */
14
- readThread?: boolean;
14
+ threadRead?: boolean;
15
15
  /** Delete threads. */
16
- deleteThread?: boolean;
16
+ threadDelete?: boolean;
17
17
  /** Read messages. */
18
- readMessage?: boolean;
18
+ messageRead?: boolean;
19
19
  /** Send messages. */
20
- sendMessage?: boolean;
20
+ messageSend?: boolean;
21
21
  /** Update message labels. */
22
- updateMessage?: boolean;
22
+ messageUpdate?: boolean;
23
23
  /** Access messages labeled spam. */
24
- readSpam?: boolean;
24
+ labelSpamRead?: boolean;
25
25
  /** Access messages labeled blocked. */
26
- readBlocked?: boolean;
26
+ labelBlockedRead?: boolean;
27
27
  /** Access messages labeled trash. */
28
- readTrash?: boolean;
28
+ labelTrashRead?: boolean;
29
29
  /** Read drafts. */
30
- readDraft?: boolean;
30
+ draftRead?: boolean;
31
31
  /** Create drafts. */
32
- createDraft?: boolean;
32
+ draftCreate?: boolean;
33
33
  /** Update drafts. */
34
- updateDraft?: boolean;
34
+ draftUpdate?: boolean;
35
35
  /** Delete drafts. */
36
- deleteDraft?: boolean;
36
+ draftDelete?: boolean;
37
37
  /** Send drafts. */
38
- sendDraft?: boolean;
38
+ draftSend?: boolean;
39
39
  /** Read webhook configurations. */
40
- readWebhook?: boolean;
40
+ webhookRead?: boolean;
41
41
  /** Create webhooks. */
42
- createWebhook?: boolean;
42
+ webhookCreate?: boolean;
43
43
  /** Update webhooks. */
44
- updateWebhook?: boolean;
44
+ webhookUpdate?: boolean;
45
45
  /** Delete webhooks. */
46
- deleteWebhook?: boolean;
46
+ webhookDelete?: boolean;
47
47
  /** Read domain details. */
48
- readDomain?: boolean;
48
+ domainRead?: boolean;
49
49
  /** Create domains. */
50
- createDomain?: boolean;
50
+ domainCreate?: boolean;
51
51
  /** Update domains. */
52
- updateDomain?: boolean;
52
+ domainUpdate?: boolean;
53
53
  /** Delete domains. */
54
- deleteDomain?: boolean;
54
+ domainDelete?: boolean;
55
55
  /** Read list entries. */
56
- readListEntry?: boolean;
56
+ listEntryRead?: boolean;
57
57
  /** Create list entries. */
58
- createListEntry?: boolean;
58
+ listEntryCreate?: boolean;
59
59
  /** Delete list entries. */
60
- deleteListEntry?: boolean;
60
+ listEntryDelete?: boolean;
61
61
  /** Read metrics. */
62
- readMetrics?: boolean;
62
+ metricsRead?: boolean;
63
63
  /** Read API keys. */
64
- readApiKey?: boolean;
64
+ apiKeyRead?: boolean;
65
65
  /** Create API keys. */
66
- createApiKey?: boolean;
66
+ apiKeyCreate?: boolean;
67
67
  /** Delete API keys. */
68
- deleteApiKey?: boolean;
68
+ apiKeyDelete?: boolean;
69
69
  /** Read pods. */
70
- readPod?: boolean;
70
+ podRead?: boolean;
71
71
  /** Create pods. */
72
- createPod?: boolean;
72
+ podCreate?: boolean;
73
73
  /** Delete pods. */
74
- deletePod?: boolean;
74
+ podDelete?: boolean;
75
75
  }
@@ -4,40 +4,40 @@ import type * as serializers from "../../../index.js";
4
4
  export declare const ApiKeyPermissions: core.serialization.ObjectSchema<serializers.ApiKeyPermissions.Raw, AgentMail.ApiKeyPermissions>;
5
5
  export declare namespace ApiKeyPermissions {
6
6
  interface Raw {
7
- read_inbox?: boolean | null;
8
- create_inbox?: boolean | null;
9
- update_inbox?: boolean | null;
10
- delete_inbox?: boolean | null;
11
- read_thread?: boolean | null;
12
- delete_thread?: boolean | null;
13
- read_message?: boolean | null;
14
- send_message?: boolean | null;
15
- update_message?: boolean | null;
16
- read_spam?: boolean | null;
17
- read_blocked?: boolean | null;
18
- read_trash?: boolean | null;
19
- read_draft?: boolean | null;
20
- create_draft?: boolean | null;
21
- update_draft?: boolean | null;
22
- delete_draft?: boolean | null;
23
- send_draft?: boolean | null;
24
- read_webhook?: boolean | null;
25
- create_webhook?: boolean | null;
26
- update_webhook?: boolean | null;
27
- delete_webhook?: boolean | null;
28
- read_domain?: boolean | null;
29
- create_domain?: boolean | null;
30
- update_domain?: boolean | null;
31
- delete_domain?: boolean | null;
32
- read_list_entry?: boolean | null;
33
- create_list_entry?: boolean | null;
34
- delete_list_entry?: boolean | null;
35
- read_metrics?: boolean | null;
36
- read_api_key?: boolean | null;
37
- create_api_key?: boolean | null;
38
- delete_api_key?: boolean | null;
39
- read_pod?: boolean | null;
40
- create_pod?: boolean | null;
41
- delete_pod?: boolean | null;
7
+ inbox_read?: boolean | null;
8
+ inbox_create?: boolean | null;
9
+ inbox_update?: boolean | null;
10
+ inbox_delete?: boolean | null;
11
+ thread_read?: boolean | null;
12
+ thread_delete?: boolean | null;
13
+ message_read?: boolean | null;
14
+ message_send?: boolean | null;
15
+ message_update?: boolean | null;
16
+ label_spam_read?: boolean | null;
17
+ label_blocked_read?: boolean | null;
18
+ label_trash_read?: boolean | null;
19
+ draft_read?: boolean | null;
20
+ draft_create?: boolean | null;
21
+ draft_update?: boolean | null;
22
+ draft_delete?: boolean | null;
23
+ draft_send?: boolean | null;
24
+ webhook_read?: boolean | null;
25
+ webhook_create?: boolean | null;
26
+ webhook_update?: boolean | null;
27
+ webhook_delete?: boolean | null;
28
+ domain_read?: boolean | null;
29
+ domain_create?: boolean | null;
30
+ domain_update?: boolean | null;
31
+ domain_delete?: boolean | null;
32
+ list_entry_read?: boolean | null;
33
+ list_entry_create?: boolean | null;
34
+ list_entry_delete?: boolean | null;
35
+ metrics_read?: boolean | null;
36
+ api_key_read?: boolean | null;
37
+ api_key_create?: boolean | null;
38
+ api_key_delete?: boolean | null;
39
+ pod_read?: boolean | null;
40
+ pod_create?: boolean | null;
41
+ pod_delete?: boolean | null;
42
42
  }
43
43
  }
@@ -37,39 +37,39 @@ Object.defineProperty(exports, "__esModule", { value: true });
37
37
  exports.ApiKeyPermissions = void 0;
38
38
  const core = __importStar(require("../../../../core/index.js"));
39
39
  exports.ApiKeyPermissions = core.serialization.object({
40
- readInbox: core.serialization.property("read_inbox", core.serialization.boolean().optional()),
41
- createInbox: core.serialization.property("create_inbox", core.serialization.boolean().optional()),
42
- updateInbox: core.serialization.property("update_inbox", core.serialization.boolean().optional()),
43
- deleteInbox: core.serialization.property("delete_inbox", core.serialization.boolean().optional()),
44
- readThread: core.serialization.property("read_thread", core.serialization.boolean().optional()),
45
- deleteThread: core.serialization.property("delete_thread", core.serialization.boolean().optional()),
46
- readMessage: core.serialization.property("read_message", core.serialization.boolean().optional()),
47
- sendMessage: core.serialization.property("send_message", core.serialization.boolean().optional()),
48
- updateMessage: core.serialization.property("update_message", core.serialization.boolean().optional()),
49
- readSpam: core.serialization.property("read_spam", core.serialization.boolean().optional()),
50
- readBlocked: core.serialization.property("read_blocked", core.serialization.boolean().optional()),
51
- readTrash: core.serialization.property("read_trash", core.serialization.boolean().optional()),
52
- readDraft: core.serialization.property("read_draft", core.serialization.boolean().optional()),
53
- createDraft: core.serialization.property("create_draft", core.serialization.boolean().optional()),
54
- updateDraft: core.serialization.property("update_draft", core.serialization.boolean().optional()),
55
- deleteDraft: core.serialization.property("delete_draft", core.serialization.boolean().optional()),
56
- sendDraft: core.serialization.property("send_draft", core.serialization.boolean().optional()),
57
- readWebhook: core.serialization.property("read_webhook", core.serialization.boolean().optional()),
58
- createWebhook: core.serialization.property("create_webhook", core.serialization.boolean().optional()),
59
- updateWebhook: core.serialization.property("update_webhook", core.serialization.boolean().optional()),
60
- deleteWebhook: core.serialization.property("delete_webhook", core.serialization.boolean().optional()),
61
- readDomain: core.serialization.property("read_domain", core.serialization.boolean().optional()),
62
- createDomain: core.serialization.property("create_domain", core.serialization.boolean().optional()),
63
- updateDomain: core.serialization.property("update_domain", core.serialization.boolean().optional()),
64
- deleteDomain: core.serialization.property("delete_domain", core.serialization.boolean().optional()),
65
- readListEntry: core.serialization.property("read_list_entry", core.serialization.boolean().optional()),
66
- createListEntry: core.serialization.property("create_list_entry", core.serialization.boolean().optional()),
67
- deleteListEntry: core.serialization.property("delete_list_entry", core.serialization.boolean().optional()),
68
- readMetrics: core.serialization.property("read_metrics", core.serialization.boolean().optional()),
69
- readApiKey: core.serialization.property("read_api_key", core.serialization.boolean().optional()),
70
- createApiKey: core.serialization.property("create_api_key", core.serialization.boolean().optional()),
71
- deleteApiKey: core.serialization.property("delete_api_key", core.serialization.boolean().optional()),
72
- readPod: core.serialization.property("read_pod", core.serialization.boolean().optional()),
73
- createPod: core.serialization.property("create_pod", core.serialization.boolean().optional()),
74
- deletePod: core.serialization.property("delete_pod", core.serialization.boolean().optional()),
40
+ inboxRead: core.serialization.property("inbox_read", core.serialization.boolean().optional()),
41
+ inboxCreate: core.serialization.property("inbox_create", core.serialization.boolean().optional()),
42
+ inboxUpdate: core.serialization.property("inbox_update", core.serialization.boolean().optional()),
43
+ inboxDelete: core.serialization.property("inbox_delete", core.serialization.boolean().optional()),
44
+ threadRead: core.serialization.property("thread_read", core.serialization.boolean().optional()),
45
+ threadDelete: core.serialization.property("thread_delete", core.serialization.boolean().optional()),
46
+ messageRead: core.serialization.property("message_read", core.serialization.boolean().optional()),
47
+ messageSend: core.serialization.property("message_send", core.serialization.boolean().optional()),
48
+ messageUpdate: core.serialization.property("message_update", core.serialization.boolean().optional()),
49
+ labelSpamRead: core.serialization.property("label_spam_read", core.serialization.boolean().optional()),
50
+ labelBlockedRead: core.serialization.property("label_blocked_read", core.serialization.boolean().optional()),
51
+ labelTrashRead: core.serialization.property("label_trash_read", core.serialization.boolean().optional()),
52
+ draftRead: core.serialization.property("draft_read", core.serialization.boolean().optional()),
53
+ draftCreate: core.serialization.property("draft_create", core.serialization.boolean().optional()),
54
+ draftUpdate: core.serialization.property("draft_update", core.serialization.boolean().optional()),
55
+ draftDelete: core.serialization.property("draft_delete", core.serialization.boolean().optional()),
56
+ draftSend: core.serialization.property("draft_send", core.serialization.boolean().optional()),
57
+ webhookRead: core.serialization.property("webhook_read", core.serialization.boolean().optional()),
58
+ webhookCreate: core.serialization.property("webhook_create", core.serialization.boolean().optional()),
59
+ webhookUpdate: core.serialization.property("webhook_update", core.serialization.boolean().optional()),
60
+ webhookDelete: core.serialization.property("webhook_delete", core.serialization.boolean().optional()),
61
+ domainRead: core.serialization.property("domain_read", core.serialization.boolean().optional()),
62
+ domainCreate: core.serialization.property("domain_create", core.serialization.boolean().optional()),
63
+ domainUpdate: core.serialization.property("domain_update", core.serialization.boolean().optional()),
64
+ domainDelete: core.serialization.property("domain_delete", core.serialization.boolean().optional()),
65
+ listEntryRead: core.serialization.property("list_entry_read", core.serialization.boolean().optional()),
66
+ listEntryCreate: core.serialization.property("list_entry_create", core.serialization.boolean().optional()),
67
+ listEntryDelete: core.serialization.property("list_entry_delete", core.serialization.boolean().optional()),
68
+ metricsRead: core.serialization.property("metrics_read", core.serialization.boolean().optional()),
69
+ apiKeyRead: core.serialization.property("api_key_read", core.serialization.boolean().optional()),
70
+ apiKeyCreate: core.serialization.property("api_key_create", core.serialization.boolean().optional()),
71
+ apiKeyDelete: core.serialization.property("api_key_delete", core.serialization.boolean().optional()),
72
+ podRead: core.serialization.property("pod_read", core.serialization.boolean().optional()),
73
+ podCreate: core.serialization.property("pod_create", core.serialization.boolean().optional()),
74
+ podDelete: core.serialization.property("pod_delete", core.serialization.boolean().optional()),
75
75
  });
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "0.4.11";
1
+ export declare const SDK_VERSION = "0.4.12";
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "0.4.11";
4
+ exports.SDK_VERSION = "0.4.12";
@@ -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": "agentmail",
9
- "X-Fern-SDK-Version": "0.4.11",
10
- "User-Agent": "agentmail/0.4.11",
9
+ "X-Fern-SDK-Version": "0.4.12",
10
+ "User-Agent": "agentmail/0.4.12",
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);
@@ -3,73 +3,73 @@
3
3
  */
4
4
  export interface ApiKeyPermissions {
5
5
  /** Read inbox details. */
6
- readInbox?: boolean;
6
+ inboxRead?: boolean;
7
7
  /** Create new inboxes. */
8
- createInbox?: boolean;
8
+ inboxCreate?: boolean;
9
9
  /** Update inbox settings. */
10
- updateInbox?: boolean;
10
+ inboxUpdate?: boolean;
11
11
  /** Delete inboxes. */
12
- deleteInbox?: boolean;
12
+ inboxDelete?: boolean;
13
13
  /** Read threads. */
14
- readThread?: boolean;
14
+ threadRead?: boolean;
15
15
  /** Delete threads. */
16
- deleteThread?: boolean;
16
+ threadDelete?: boolean;
17
17
  /** Read messages. */
18
- readMessage?: boolean;
18
+ messageRead?: boolean;
19
19
  /** Send messages. */
20
- sendMessage?: boolean;
20
+ messageSend?: boolean;
21
21
  /** Update message labels. */
22
- updateMessage?: boolean;
22
+ messageUpdate?: boolean;
23
23
  /** Access messages labeled spam. */
24
- readSpam?: boolean;
24
+ labelSpamRead?: boolean;
25
25
  /** Access messages labeled blocked. */
26
- readBlocked?: boolean;
26
+ labelBlockedRead?: boolean;
27
27
  /** Access messages labeled trash. */
28
- readTrash?: boolean;
28
+ labelTrashRead?: boolean;
29
29
  /** Read drafts. */
30
- readDraft?: boolean;
30
+ draftRead?: boolean;
31
31
  /** Create drafts. */
32
- createDraft?: boolean;
32
+ draftCreate?: boolean;
33
33
  /** Update drafts. */
34
- updateDraft?: boolean;
34
+ draftUpdate?: boolean;
35
35
  /** Delete drafts. */
36
- deleteDraft?: boolean;
36
+ draftDelete?: boolean;
37
37
  /** Send drafts. */
38
- sendDraft?: boolean;
38
+ draftSend?: boolean;
39
39
  /** Read webhook configurations. */
40
- readWebhook?: boolean;
40
+ webhookRead?: boolean;
41
41
  /** Create webhooks. */
42
- createWebhook?: boolean;
42
+ webhookCreate?: boolean;
43
43
  /** Update webhooks. */
44
- updateWebhook?: boolean;
44
+ webhookUpdate?: boolean;
45
45
  /** Delete webhooks. */
46
- deleteWebhook?: boolean;
46
+ webhookDelete?: boolean;
47
47
  /** Read domain details. */
48
- readDomain?: boolean;
48
+ domainRead?: boolean;
49
49
  /** Create domains. */
50
- createDomain?: boolean;
50
+ domainCreate?: boolean;
51
51
  /** Update domains. */
52
- updateDomain?: boolean;
52
+ domainUpdate?: boolean;
53
53
  /** Delete domains. */
54
- deleteDomain?: boolean;
54
+ domainDelete?: boolean;
55
55
  /** Read list entries. */
56
- readListEntry?: boolean;
56
+ listEntryRead?: boolean;
57
57
  /** Create list entries. */
58
- createListEntry?: boolean;
58
+ listEntryCreate?: boolean;
59
59
  /** Delete list entries. */
60
- deleteListEntry?: boolean;
60
+ listEntryDelete?: boolean;
61
61
  /** Read metrics. */
62
- readMetrics?: boolean;
62
+ metricsRead?: boolean;
63
63
  /** Read API keys. */
64
- readApiKey?: boolean;
64
+ apiKeyRead?: boolean;
65
65
  /** Create API keys. */
66
- createApiKey?: boolean;
66
+ apiKeyCreate?: boolean;
67
67
  /** Delete API keys. */
68
- deleteApiKey?: boolean;
68
+ apiKeyDelete?: boolean;
69
69
  /** Read pods. */
70
- readPod?: boolean;
70
+ podRead?: boolean;
71
71
  /** Create pods. */
72
- createPod?: boolean;
72
+ podCreate?: boolean;
73
73
  /** Delete pods. */
74
- deletePod?: boolean;
74
+ podDelete?: boolean;
75
75
  }
@@ -4,40 +4,40 @@ import type * as serializers from "../../../index.mjs";
4
4
  export declare const ApiKeyPermissions: core.serialization.ObjectSchema<serializers.ApiKeyPermissions.Raw, AgentMail.ApiKeyPermissions>;
5
5
  export declare namespace ApiKeyPermissions {
6
6
  interface Raw {
7
- read_inbox?: boolean | null;
8
- create_inbox?: boolean | null;
9
- update_inbox?: boolean | null;
10
- delete_inbox?: boolean | null;
11
- read_thread?: boolean | null;
12
- delete_thread?: boolean | null;
13
- read_message?: boolean | null;
14
- send_message?: boolean | null;
15
- update_message?: boolean | null;
16
- read_spam?: boolean | null;
17
- read_blocked?: boolean | null;
18
- read_trash?: boolean | null;
19
- read_draft?: boolean | null;
20
- create_draft?: boolean | null;
21
- update_draft?: boolean | null;
22
- delete_draft?: boolean | null;
23
- send_draft?: boolean | null;
24
- read_webhook?: boolean | null;
25
- create_webhook?: boolean | null;
26
- update_webhook?: boolean | null;
27
- delete_webhook?: boolean | null;
28
- read_domain?: boolean | null;
29
- create_domain?: boolean | null;
30
- update_domain?: boolean | null;
31
- delete_domain?: boolean | null;
32
- read_list_entry?: boolean | null;
33
- create_list_entry?: boolean | null;
34
- delete_list_entry?: boolean | null;
35
- read_metrics?: boolean | null;
36
- read_api_key?: boolean | null;
37
- create_api_key?: boolean | null;
38
- delete_api_key?: boolean | null;
39
- read_pod?: boolean | null;
40
- create_pod?: boolean | null;
41
- delete_pod?: boolean | null;
7
+ inbox_read?: boolean | null;
8
+ inbox_create?: boolean | null;
9
+ inbox_update?: boolean | null;
10
+ inbox_delete?: boolean | null;
11
+ thread_read?: boolean | null;
12
+ thread_delete?: boolean | null;
13
+ message_read?: boolean | null;
14
+ message_send?: boolean | null;
15
+ message_update?: boolean | null;
16
+ label_spam_read?: boolean | null;
17
+ label_blocked_read?: boolean | null;
18
+ label_trash_read?: boolean | null;
19
+ draft_read?: boolean | null;
20
+ draft_create?: boolean | null;
21
+ draft_update?: boolean | null;
22
+ draft_delete?: boolean | null;
23
+ draft_send?: boolean | null;
24
+ webhook_read?: boolean | null;
25
+ webhook_create?: boolean | null;
26
+ webhook_update?: boolean | null;
27
+ webhook_delete?: boolean | null;
28
+ domain_read?: boolean | null;
29
+ domain_create?: boolean | null;
30
+ domain_update?: boolean | null;
31
+ domain_delete?: boolean | null;
32
+ list_entry_read?: boolean | null;
33
+ list_entry_create?: boolean | null;
34
+ list_entry_delete?: boolean | null;
35
+ metrics_read?: boolean | null;
36
+ api_key_read?: boolean | null;
37
+ api_key_create?: boolean | null;
38
+ api_key_delete?: boolean | null;
39
+ pod_read?: boolean | null;
40
+ pod_create?: boolean | null;
41
+ pod_delete?: boolean | null;
42
42
  }
43
43
  }
@@ -1,39 +1,39 @@
1
1
  // This file was auto-generated by Fern from our API Definition.
2
2
  import * as core from "../../../../core/index.mjs";
3
3
  export const ApiKeyPermissions = core.serialization.object({
4
- readInbox: core.serialization.property("read_inbox", core.serialization.boolean().optional()),
5
- createInbox: core.serialization.property("create_inbox", core.serialization.boolean().optional()),
6
- updateInbox: core.serialization.property("update_inbox", core.serialization.boolean().optional()),
7
- deleteInbox: core.serialization.property("delete_inbox", core.serialization.boolean().optional()),
8
- readThread: core.serialization.property("read_thread", core.serialization.boolean().optional()),
9
- deleteThread: core.serialization.property("delete_thread", core.serialization.boolean().optional()),
10
- readMessage: core.serialization.property("read_message", core.serialization.boolean().optional()),
11
- sendMessage: core.serialization.property("send_message", core.serialization.boolean().optional()),
12
- updateMessage: core.serialization.property("update_message", core.serialization.boolean().optional()),
13
- readSpam: core.serialization.property("read_spam", core.serialization.boolean().optional()),
14
- readBlocked: core.serialization.property("read_blocked", core.serialization.boolean().optional()),
15
- readTrash: core.serialization.property("read_trash", core.serialization.boolean().optional()),
16
- readDraft: core.serialization.property("read_draft", core.serialization.boolean().optional()),
17
- createDraft: core.serialization.property("create_draft", core.serialization.boolean().optional()),
18
- updateDraft: core.serialization.property("update_draft", core.serialization.boolean().optional()),
19
- deleteDraft: core.serialization.property("delete_draft", core.serialization.boolean().optional()),
20
- sendDraft: core.serialization.property("send_draft", core.serialization.boolean().optional()),
21
- readWebhook: core.serialization.property("read_webhook", core.serialization.boolean().optional()),
22
- createWebhook: core.serialization.property("create_webhook", core.serialization.boolean().optional()),
23
- updateWebhook: core.serialization.property("update_webhook", core.serialization.boolean().optional()),
24
- deleteWebhook: core.serialization.property("delete_webhook", core.serialization.boolean().optional()),
25
- readDomain: core.serialization.property("read_domain", core.serialization.boolean().optional()),
26
- createDomain: core.serialization.property("create_domain", core.serialization.boolean().optional()),
27
- updateDomain: core.serialization.property("update_domain", core.serialization.boolean().optional()),
28
- deleteDomain: core.serialization.property("delete_domain", core.serialization.boolean().optional()),
29
- readListEntry: core.serialization.property("read_list_entry", core.serialization.boolean().optional()),
30
- createListEntry: core.serialization.property("create_list_entry", core.serialization.boolean().optional()),
31
- deleteListEntry: core.serialization.property("delete_list_entry", core.serialization.boolean().optional()),
32
- readMetrics: core.serialization.property("read_metrics", core.serialization.boolean().optional()),
33
- readApiKey: core.serialization.property("read_api_key", core.serialization.boolean().optional()),
34
- createApiKey: core.serialization.property("create_api_key", core.serialization.boolean().optional()),
35
- deleteApiKey: core.serialization.property("delete_api_key", core.serialization.boolean().optional()),
36
- readPod: core.serialization.property("read_pod", core.serialization.boolean().optional()),
37
- createPod: core.serialization.property("create_pod", core.serialization.boolean().optional()),
38
- deletePod: core.serialization.property("delete_pod", core.serialization.boolean().optional()),
4
+ inboxRead: core.serialization.property("inbox_read", core.serialization.boolean().optional()),
5
+ inboxCreate: core.serialization.property("inbox_create", core.serialization.boolean().optional()),
6
+ inboxUpdate: core.serialization.property("inbox_update", core.serialization.boolean().optional()),
7
+ inboxDelete: core.serialization.property("inbox_delete", core.serialization.boolean().optional()),
8
+ threadRead: core.serialization.property("thread_read", core.serialization.boolean().optional()),
9
+ threadDelete: core.serialization.property("thread_delete", core.serialization.boolean().optional()),
10
+ messageRead: core.serialization.property("message_read", core.serialization.boolean().optional()),
11
+ messageSend: core.serialization.property("message_send", core.serialization.boolean().optional()),
12
+ messageUpdate: core.serialization.property("message_update", core.serialization.boolean().optional()),
13
+ labelSpamRead: core.serialization.property("label_spam_read", core.serialization.boolean().optional()),
14
+ labelBlockedRead: core.serialization.property("label_blocked_read", core.serialization.boolean().optional()),
15
+ labelTrashRead: core.serialization.property("label_trash_read", core.serialization.boolean().optional()),
16
+ draftRead: core.serialization.property("draft_read", core.serialization.boolean().optional()),
17
+ draftCreate: core.serialization.property("draft_create", core.serialization.boolean().optional()),
18
+ draftUpdate: core.serialization.property("draft_update", core.serialization.boolean().optional()),
19
+ draftDelete: core.serialization.property("draft_delete", core.serialization.boolean().optional()),
20
+ draftSend: core.serialization.property("draft_send", core.serialization.boolean().optional()),
21
+ webhookRead: core.serialization.property("webhook_read", core.serialization.boolean().optional()),
22
+ webhookCreate: core.serialization.property("webhook_create", core.serialization.boolean().optional()),
23
+ webhookUpdate: core.serialization.property("webhook_update", core.serialization.boolean().optional()),
24
+ webhookDelete: core.serialization.property("webhook_delete", core.serialization.boolean().optional()),
25
+ domainRead: core.serialization.property("domain_read", core.serialization.boolean().optional()),
26
+ domainCreate: core.serialization.property("domain_create", core.serialization.boolean().optional()),
27
+ domainUpdate: core.serialization.property("domain_update", core.serialization.boolean().optional()),
28
+ domainDelete: core.serialization.property("domain_delete", core.serialization.boolean().optional()),
29
+ listEntryRead: core.serialization.property("list_entry_read", core.serialization.boolean().optional()),
30
+ listEntryCreate: core.serialization.property("list_entry_create", core.serialization.boolean().optional()),
31
+ listEntryDelete: core.serialization.property("list_entry_delete", core.serialization.boolean().optional()),
32
+ metricsRead: core.serialization.property("metrics_read", core.serialization.boolean().optional()),
33
+ apiKeyRead: core.serialization.property("api_key_read", core.serialization.boolean().optional()),
34
+ apiKeyCreate: core.serialization.property("api_key_create", core.serialization.boolean().optional()),
35
+ apiKeyDelete: core.serialization.property("api_key_delete", core.serialization.boolean().optional()),
36
+ podRead: core.serialization.property("pod_read", core.serialization.boolean().optional()),
37
+ podCreate: core.serialization.property("pod_create", core.serialization.boolean().optional()),
38
+ podDelete: core.serialization.property("pod_delete", core.serialization.boolean().optional()),
39
39
  });
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "0.4.11";
1
+ export declare const SDK_VERSION = "0.4.12";
@@ -1 +1 @@
1
- export const SDK_VERSION = "0.4.11";
1
+ export const SDK_VERSION = "0.4.12";