@marcoappio/marco-config 2.0.159 → 2.0.161

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.
Files changed (34) hide show
  1. package/dist/clients/draft.d.ts +107 -0
  2. package/dist/clients/draft.d.ts.map +1 -0
  3. package/dist/clients/draft.js +43 -0
  4. package/dist/clients/index.d.ts +105 -0
  5. package/dist/clients/index.d.ts.map +1 -1
  6. package/dist/clients/index.js +2 -0
  7. package/dist/sdk/endpoints/index.d.ts +151 -0
  8. package/dist/sdk/endpoints/index.d.ts.map +1 -1
  9. package/dist/sdk/endpoints/private/email-message/email-message-html-get.d.ts +11 -0
  10. package/dist/sdk/endpoints/private/email-message/email-message-html-get.d.ts.map +1 -0
  11. package/dist/sdk/endpoints/private/email-message/email-message-html-get.js +14 -0
  12. package/dist/sdk/endpoints/private/email-message/index.d.ts +12 -0
  13. package/dist/sdk/endpoints/private/email-message/index.d.ts.map +1 -0
  14. package/dist/sdk/endpoints/private/email-message/index.js +4 -0
  15. package/dist/sdk/endpoints/private/index.d.ts +151 -0
  16. package/dist/sdk/endpoints/private/index.d.ts.map +1 -1
  17. package/dist/sdk/endpoints/private/index.js +2 -0
  18. package/dist/sdk/endpoints/private/sync/index.d.ts +140 -0
  19. package/dist/sdk/endpoints/private/sync/index.d.ts.map +1 -1
  20. package/dist/sdk/endpoints/private/sync/pull/draft.d.ts +40 -0
  21. package/dist/sdk/endpoints/private/sync/pull/draft.d.ts.map +1 -0
  22. package/dist/sdk/endpoints/private/sync/pull/draft.js +28 -0
  23. package/dist/sdk/endpoints/private/sync/pull/index.d.ts +38 -0
  24. package/dist/sdk/endpoints/private/sync/pull/index.d.ts.map +1 -1
  25. package/dist/sdk/endpoints/private/sync/pull/index.js +2 -1
  26. package/dist/sdk/endpoints/private/sync/push/draft.d.ts +104 -0
  27. package/dist/sdk/endpoints/private/sync/push/draft.d.ts.map +1 -0
  28. package/dist/sdk/endpoints/private/sync/push/draft.js +36 -0
  29. package/dist/sdk/endpoints/private/sync/push/index.d.ts +102 -0
  30. package/dist/sdk/endpoints/private/sync/push/index.d.ts.map +1 -1
  31. package/dist/sdk/endpoints/private/sync/push/index.js +2 -1
  32. package/dist/sdk/index.d.ts +151 -0
  33. package/dist/sdk/index.d.ts.map +1 -1
  34. package/package.json +1 -1
@@ -0,0 +1,104 @@
1
+ import * as v from 'valibot';
2
+ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1/pv/sync/push/draft", v.ObjectSchema<{
3
+ readonly clientGroupID: v.StringSchema<undefined>;
4
+ readonly mutations: v.ArraySchema<v.UnionSchema<[v.ObjectSchema<{
5
+ readonly args: v.ObjectSchema<{
6
+ readonly id: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
7
+ }, undefined>;
8
+ readonly clientID: v.StringSchema<undefined>;
9
+ readonly id: v.NumberSchema<undefined>;
10
+ readonly name: v.LiteralSchema<"delete", undefined>;
11
+ }, undefined>, v.ObjectSchema<{
12
+ readonly args: v.ObjectSchema<{
13
+ readonly body: Omit<v.ObjectSchema<{
14
+ readonly bcc: v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
15
+ readonly cc: v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
16
+ readonly content: v.UnknownSchema;
17
+ readonly replyTo: v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
18
+ readonly subject: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
19
+ readonly to: v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
20
+ }, undefined>, "entries" | "~standard" | "~run" | "~types"> & {
21
+ readonly entries: {
22
+ readonly bcc: v.OptionalSchema<v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>, undefined>;
23
+ readonly cc: v.OptionalSchema<v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>, undefined>;
24
+ readonly content: v.OptionalSchema<v.UnknownSchema, undefined>;
25
+ readonly replyTo: v.OptionalSchema<v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>, undefined>;
26
+ readonly subject: v.OptionalSchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
27
+ readonly to: v.OptionalSchema<v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>, undefined>;
28
+ };
29
+ readonly '~standard': v.StandardSchemaProps<{
30
+ bcc?: string[] | undefined;
31
+ cc?: string[] | undefined;
32
+ replyTo?: string[] | undefined;
33
+ to?: string[] | undefined;
34
+ content?: unknown;
35
+ subject?: string | undefined;
36
+ }, {
37
+ bcc?: string[] | undefined;
38
+ cc?: string[] | undefined;
39
+ replyTo?: string[] | undefined;
40
+ to?: string[] | undefined;
41
+ content?: unknown;
42
+ subject?: string | undefined;
43
+ }>;
44
+ readonly '~run': (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
45
+ bcc?: string[] | undefined;
46
+ cc?: string[] | undefined;
47
+ replyTo?: string[] | undefined;
48
+ to?: string[] | undefined;
49
+ content?: unknown;
50
+ subject?: string | undefined;
51
+ }, v.StringIssue | v.EmailIssue<string> | v.MaxLengthIssue<string, 255> | v.NonEmptyIssue<string> | v.ObjectIssue | v.NonOptionalIssue | v.ArrayIssue>;
52
+ readonly '~types'?: {
53
+ readonly input: {
54
+ bcc?: string[] | undefined;
55
+ cc?: string[] | undefined;
56
+ replyTo?: string[] | undefined;
57
+ to?: string[] | undefined;
58
+ content?: unknown;
59
+ subject?: string | undefined;
60
+ };
61
+ readonly output: {
62
+ bcc?: string[] | undefined;
63
+ cc?: string[] | undefined;
64
+ replyTo?: string[] | undefined;
65
+ to?: string[] | undefined;
66
+ content?: unknown;
67
+ subject?: string | undefined;
68
+ };
69
+ readonly issue: v.StringIssue | v.EmailIssue<string> | v.MaxLengthIssue<string, 255> | v.NonEmptyIssue<string> | v.ObjectIssue | v.NonOptionalIssue | v.ArrayIssue;
70
+ } | undefined;
71
+ };
72
+ readonly id: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
73
+ }, undefined>;
74
+ readonly clientID: v.StringSchema<undefined>;
75
+ readonly id: v.NumberSchema<undefined>;
76
+ readonly name: v.LiteralSchema<"update", undefined>;
77
+ }, undefined>, v.ObjectSchema<{
78
+ readonly args: v.ObjectSchema<{
79
+ readonly body: v.ObjectSchema<{
80
+ readonly bcc: v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
81
+ readonly cc: v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
82
+ readonly content: v.UnknownSchema;
83
+ readonly replyTo: v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
84
+ readonly subject: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
85
+ readonly to: v.ArraySchema<v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
86
+ }, undefined>;
87
+ readonly emailAccountId: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
88
+ readonly id: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
89
+ readonly referencedMessageId: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
90
+ }, undefined>;
91
+ readonly clientID: v.StringSchema<undefined>;
92
+ readonly id: v.NumberSchema<undefined>;
93
+ readonly name: v.LiteralSchema<"create", undefined>;
94
+ }, undefined>], undefined>, undefined>;
95
+ }, undefined>, v.GenericSchema<unknown, unknown, v.BaseIssue<unknown>> | undefined, v.UnionSchema<[v.ObjectSchema<{
96
+ readonly code: v.LiteralSchema<"VALIDATION_FAILED", undefined>;
97
+ readonly status: v.LiteralSchema<400, undefined>;
98
+ }, undefined>, v.ObjectSchema<{
99
+ readonly code: v.LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
100
+ readonly status: v.LiteralSchema<401, undefined>;
101
+ }, undefined>, v.ObjectSchema<{
102
+ readonly status: v.LiteralSchema<200, undefined>;
103
+ }, undefined>], undefined>>;
104
+ //# sourceMappingURL=draft.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"draft.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/push/draft.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAM5B,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BA+BxB,CAAA"}
@@ -0,0 +1,36 @@
1
+ import * as v from 'valibot';
2
+ import { draft } from '../../../../../clients/draft';
3
+ import { createEndpoint } from '../../../../../sdk/endpoints/createEndpointConfig';
4
+ import { errorManifest } from '../../../../../sdk/validation/errors';
5
+ export const syncPushDraft = createEndpoint({
6
+ body: v.object({
7
+ clientGroupID: v.string(),
8
+ mutations: v.array(v.union([
9
+ v.object({
10
+ args: draft.mutators.delete.delta,
11
+ clientID: v.string(),
12
+ id: v.number(),
13
+ name: v.literal('delete'),
14
+ }),
15
+ v.object({
16
+ args: draft.mutators.update.delta,
17
+ clientID: v.string(),
18
+ id: v.number(),
19
+ name: v.literal('update'),
20
+ }),
21
+ v.object({
22
+ args: draft.mutators.create.delta,
23
+ clientID: v.string(),
24
+ id: v.number(),
25
+ name: v.literal('create'),
26
+ }),
27
+ ])),
28
+ }),
29
+ method: 'POST',
30
+ path: draft.pushURL,
31
+ response: v.union([
32
+ errorManifest.validationFailedErrorSchema,
33
+ errorManifest.authenticationFailedErrorSchema,
34
+ v.object({ status: v.literal(200) }),
35
+ ]),
36
+ });
@@ -85,6 +85,108 @@ export declare const push: {
85
85
  }, undefined>, import("valibot").ObjectSchema<{
86
86
  readonly status: import("valibot").LiteralSchema<200, undefined>;
87
87
  }, undefined>], undefined>>;
88
+ draft: import("../../../../..").EndpointConfig<"/v1/pv/sync/push/draft", import("valibot").ObjectSchema<{
89
+ readonly clientGroupID: import("valibot").StringSchema<undefined>;
90
+ readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
91
+ readonly args: import("valibot").ObjectSchema<{
92
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
93
+ }, undefined>;
94
+ readonly clientID: import("valibot").StringSchema<undefined>;
95
+ readonly id: import("valibot").NumberSchema<undefined>;
96
+ readonly name: import("valibot").LiteralSchema<"delete", undefined>;
97
+ }, undefined>, import("valibot").ObjectSchema<{
98
+ readonly args: import("valibot").ObjectSchema<{
99
+ readonly body: Omit<import("valibot").ObjectSchema<{
100
+ readonly bcc: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
101
+ readonly cc: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
102
+ readonly content: import("valibot").UnknownSchema;
103
+ readonly replyTo: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
104
+ readonly subject: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
105
+ readonly to: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
106
+ }, undefined>, "entries" | "~standard" | "~run" | "~types"> & {
107
+ readonly entries: {
108
+ readonly bcc: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>, undefined>;
109
+ readonly cc: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>, undefined>;
110
+ readonly content: import("valibot").OptionalSchema<import("valibot").UnknownSchema, undefined>;
111
+ readonly replyTo: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>, undefined>;
112
+ readonly subject: import("valibot").OptionalSchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
113
+ readonly to: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>, undefined>;
114
+ };
115
+ readonly '~standard': import("valibot").StandardSchemaProps<{
116
+ bcc?: string[] | undefined;
117
+ cc?: string[] | undefined;
118
+ replyTo?: string[] | undefined;
119
+ to?: string[] | undefined;
120
+ content?: unknown;
121
+ subject?: string | undefined;
122
+ }, {
123
+ bcc?: string[] | undefined;
124
+ cc?: string[] | undefined;
125
+ replyTo?: string[] | undefined;
126
+ to?: string[] | undefined;
127
+ content?: unknown;
128
+ subject?: string | undefined;
129
+ }>;
130
+ readonly '~run': (dataset: import("valibot").UnknownDataset, config: import("valibot").Config<import("valibot").BaseIssue<unknown>>) => import("valibot").OutputDataset<{
131
+ bcc?: string[] | undefined;
132
+ cc?: string[] | undefined;
133
+ replyTo?: string[] | undefined;
134
+ to?: string[] | undefined;
135
+ content?: unknown;
136
+ subject?: string | undefined;
137
+ }, import("valibot").StringIssue | import("valibot").EmailIssue<string> | import("valibot").MaxLengthIssue<string, 255> | import("valibot").NonEmptyIssue<string> | import("valibot").ObjectIssue | import("valibot").NonOptionalIssue | import("valibot").ArrayIssue>;
138
+ readonly '~types'?: {
139
+ readonly input: {
140
+ bcc?: string[] | undefined;
141
+ cc?: string[] | undefined;
142
+ replyTo?: string[] | undefined;
143
+ to?: string[] | undefined;
144
+ content?: unknown;
145
+ subject?: string | undefined;
146
+ };
147
+ readonly output: {
148
+ bcc?: string[] | undefined;
149
+ cc?: string[] | undefined;
150
+ replyTo?: string[] | undefined;
151
+ to?: string[] | undefined;
152
+ content?: unknown;
153
+ subject?: string | undefined;
154
+ };
155
+ readonly issue: import("valibot").StringIssue | import("valibot").EmailIssue<string> | import("valibot").MaxLengthIssue<string, 255> | import("valibot").NonEmptyIssue<string> | import("valibot").ObjectIssue | import("valibot").NonOptionalIssue | import("valibot").ArrayIssue;
156
+ } | undefined;
157
+ };
158
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
159
+ }, undefined>;
160
+ readonly clientID: import("valibot").StringSchema<undefined>;
161
+ readonly id: import("valibot").NumberSchema<undefined>;
162
+ readonly name: import("valibot").LiteralSchema<"update", undefined>;
163
+ }, undefined>, import("valibot").ObjectSchema<{
164
+ readonly args: import("valibot").ObjectSchema<{
165
+ readonly body: import("valibot").ObjectSchema<{
166
+ readonly bcc: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
167
+ readonly cc: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
168
+ readonly content: import("valibot").UnknownSchema;
169
+ readonly replyTo: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
170
+ readonly subject: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
171
+ readonly to: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
172
+ }, undefined>;
173
+ readonly emailAccountId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
174
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
175
+ readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
176
+ }, undefined>;
177
+ readonly clientID: import("valibot").StringSchema<undefined>;
178
+ readonly id: import("valibot").NumberSchema<undefined>;
179
+ readonly name: import("valibot").LiteralSchema<"create", undefined>;
180
+ }, undefined>], undefined>, undefined>;
181
+ }, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
182
+ readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
183
+ readonly status: import("valibot").LiteralSchema<400, undefined>;
184
+ }, undefined>, import("valibot").ObjectSchema<{
185
+ readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
186
+ readonly status: import("valibot").LiteralSchema<401, undefined>;
187
+ }, undefined>, import("valibot").ObjectSchema<{
188
+ readonly status: import("valibot").LiteralSchema<200, undefined>;
189
+ }, undefined>], undefined>>;
88
190
  thread: import("../../../../..").EndpointConfig<"/v1/pv/sync/push/thread", import("valibot").ObjectSchema<{
89
191
  readonly clientGroupID: import("valibot").StringSchema<undefined>;
90
192
  readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/push/index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA4B,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/push/index.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAmC,CAAA"}
@@ -1,4 +1,5 @@
1
1
  import { syncPushAccount as account } from './account';
2
+ import { syncPushDraft as draft } from './draft';
2
3
  import { syncPushThread as thread } from './thread';
3
4
  import { syncPushUser as user } from './user';
4
- export const push = { account, thread, user };
5
+ export const push = { account, draft, thread, user };
@@ -1,6 +1,17 @@
1
1
  export declare const marcoSDK: {
2
2
  endpoints: {
3
3
  private: {
4
+ emailMessage: {
5
+ htmlGet: import("..").EndpointConfig<"/v1/pv/message/:messageId/html", import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
6
+ readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
7
+ readonly status: import("valibot").LiteralSchema<401, undefined>;
8
+ }, undefined>, import("valibot").ObjectSchema<{
9
+ readonly code: import("valibot").LiteralSchema<"MESSAGE_NOT_FOUND", undefined>;
10
+ readonly status: import("valibot").LiteralSchema<404, undefined>;
11
+ }, undefined>, import("valibot").ObjectSchema<{
12
+ readonly status: import("valibot").LiteralSchema<204, undefined>;
13
+ }, undefined>], undefined>>;
14
+ };
4
15
  sync: {
5
16
  pull: {
6
17
  account: import("..").EndpointConfig<"/v1/pv/sync/pull/account", import("valibot").ObjectSchema<{
@@ -83,6 +94,44 @@ export declare const marcoSDK: {
83
94
  }, undefined>;
84
95
  readonly status: import("valibot").LiteralSchema<200, undefined>;
85
96
  }, undefined>], undefined>>;
97
+ draft: import("..").EndpointConfig<"/v1/pv/sync/pull/draft", import("valibot").ObjectSchema<{
98
+ readonly clientGroupID: import("valibot").StringSchema<undefined>;
99
+ readonly cookie: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
100
+ }, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
101
+ readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
102
+ readonly status: import("valibot").LiteralSchema<400, undefined>;
103
+ }, undefined>, import("valibot").ObjectSchema<{
104
+ readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
105
+ readonly status: import("valibot").LiteralSchema<401, undefined>;
106
+ }, undefined>, import("valibot").ObjectSchema<{
107
+ readonly data: import("valibot").ObjectSchema<{
108
+ readonly cookie: import("valibot").NumberSchema<undefined>;
109
+ readonly lastMutationIDChanges: import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").NumberSchema<undefined>, undefined>;
110
+ readonly patch: import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
111
+ readonly op: import("valibot").LiteralSchema<"clear", undefined>;
112
+ }, undefined>, import("valibot").ObjectSchema<{
113
+ readonly key: import("valibot").StringSchema<undefined>;
114
+ readonly op: import("valibot").LiteralSchema<"del", undefined>;
115
+ }, undefined>, import("valibot").ObjectSchema<{
116
+ readonly key: import("valibot").StringSchema<undefined>;
117
+ readonly op: import("valibot").LiteralSchema<"put", undefined>;
118
+ readonly value: import("valibot").ObjectSchema<{
119
+ readonly body: import("valibot").ObjectSchema<{
120
+ readonly bcc: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
121
+ readonly cc: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
122
+ readonly content: import("valibot").UnknownSchema;
123
+ readonly replyTo: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
124
+ readonly subject: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
125
+ readonly to: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
126
+ }, undefined>;
127
+ readonly emailAccountId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
128
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
129
+ readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
130
+ }, undefined>;
131
+ }, undefined>], undefined>, undefined>;
132
+ }, undefined>;
133
+ readonly status: import("valibot").LiteralSchema<200, undefined>;
134
+ }, undefined>], undefined>>;
86
135
  thread: import("..").EndpointConfig<"/v1/pv/sync/pull/thread", import("valibot").ObjectSchema<{
87
136
  readonly clientGroupID: import("valibot").StringSchema<undefined>;
88
137
  readonly cookie: import("valibot").NullableSchema<import("valibot").ObjectSchema<{
@@ -270,6 +319,108 @@ export declare const marcoSDK: {
270
319
  }, undefined>, import("valibot").ObjectSchema<{
271
320
  readonly status: import("valibot").LiteralSchema<200, undefined>;
272
321
  }, undefined>], undefined>>;
322
+ draft: import("..").EndpointConfig<"/v1/pv/sync/push/draft", import("valibot").ObjectSchema<{
323
+ readonly clientGroupID: import("valibot").StringSchema<undefined>;
324
+ readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
325
+ readonly args: import("valibot").ObjectSchema<{
326
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
327
+ }, undefined>;
328
+ readonly clientID: import("valibot").StringSchema<undefined>;
329
+ readonly id: import("valibot").NumberSchema<undefined>;
330
+ readonly name: import("valibot").LiteralSchema<"delete", undefined>;
331
+ }, undefined>, import("valibot").ObjectSchema<{
332
+ readonly args: import("valibot").ObjectSchema<{
333
+ readonly body: Omit<import("valibot").ObjectSchema<{
334
+ readonly bcc: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
335
+ readonly cc: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
336
+ readonly content: import("valibot").UnknownSchema;
337
+ readonly replyTo: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
338
+ readonly subject: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
339
+ readonly to: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
340
+ }, undefined>, "entries" | "~standard" | "~run" | "~types"> & {
341
+ readonly entries: {
342
+ readonly bcc: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>, undefined>;
343
+ readonly cc: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>, undefined>;
344
+ readonly content: import("valibot").OptionalSchema<import("valibot").UnknownSchema, undefined>;
345
+ readonly replyTo: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>, undefined>;
346
+ readonly subject: import("valibot").OptionalSchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
347
+ readonly to: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>, undefined>;
348
+ };
349
+ readonly '~standard': import("valibot").StandardSchemaProps<{
350
+ bcc?: string[] | undefined;
351
+ cc?: string[] | undefined;
352
+ replyTo?: string[] | undefined;
353
+ to?: string[] | undefined;
354
+ content?: unknown;
355
+ subject?: string | undefined;
356
+ }, {
357
+ bcc?: string[] | undefined;
358
+ cc?: string[] | undefined;
359
+ replyTo?: string[] | undefined;
360
+ to?: string[] | undefined;
361
+ content?: unknown;
362
+ subject?: string | undefined;
363
+ }>;
364
+ readonly '~run': (dataset: import("valibot").UnknownDataset, config: import("valibot").Config<import("valibot").BaseIssue<unknown>>) => import("valibot").OutputDataset<{
365
+ bcc?: string[] | undefined;
366
+ cc?: string[] | undefined;
367
+ replyTo?: string[] | undefined;
368
+ to?: string[] | undefined;
369
+ content?: unknown;
370
+ subject?: string | undefined;
371
+ }, import("valibot").StringIssue | import("valibot").EmailIssue<string> | import("valibot").MaxLengthIssue<string, 255> | import("valibot").NonEmptyIssue<string> | import("valibot").ObjectIssue | import("valibot").NonOptionalIssue | import("valibot").ArrayIssue>;
372
+ readonly '~types'?: {
373
+ readonly input: {
374
+ bcc?: string[] | undefined;
375
+ cc?: string[] | undefined;
376
+ replyTo?: string[] | undefined;
377
+ to?: string[] | undefined;
378
+ content?: unknown;
379
+ subject?: string | undefined;
380
+ };
381
+ readonly output: {
382
+ bcc?: string[] | undefined;
383
+ cc?: string[] | undefined;
384
+ replyTo?: string[] | undefined;
385
+ to?: string[] | undefined;
386
+ content?: unknown;
387
+ subject?: string | undefined;
388
+ };
389
+ readonly issue: import("valibot").StringIssue | import("valibot").EmailIssue<string> | import("valibot").MaxLengthIssue<string, 255> | import("valibot").NonEmptyIssue<string> | import("valibot").ObjectIssue | import("valibot").NonOptionalIssue | import("valibot").ArrayIssue;
390
+ } | undefined;
391
+ };
392
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
393
+ }, undefined>;
394
+ readonly clientID: import("valibot").StringSchema<undefined>;
395
+ readonly id: import("valibot").NumberSchema<undefined>;
396
+ readonly name: import("valibot").LiteralSchema<"update", undefined>;
397
+ }, undefined>, import("valibot").ObjectSchema<{
398
+ readonly args: import("valibot").ObjectSchema<{
399
+ readonly body: import("valibot").ObjectSchema<{
400
+ readonly bcc: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
401
+ readonly cc: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
402
+ readonly content: import("valibot").UnknownSchema;
403
+ readonly replyTo: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
404
+ readonly subject: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
405
+ readonly to: import("valibot").ArraySchema<import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
406
+ }, undefined>;
407
+ readonly emailAccountId: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
408
+ readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
409
+ readonly referencedMessageId: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
410
+ }, undefined>;
411
+ readonly clientID: import("valibot").StringSchema<undefined>;
412
+ readonly id: import("valibot").NumberSchema<undefined>;
413
+ readonly name: import("valibot").LiteralSchema<"create", undefined>;
414
+ }, undefined>], undefined>, undefined>;
415
+ }, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
416
+ readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
417
+ readonly status: import("valibot").LiteralSchema<400, undefined>;
418
+ }, undefined>, import("valibot").ObjectSchema<{
419
+ readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
420
+ readonly status: import("valibot").LiteralSchema<401, undefined>;
421
+ }, undefined>, import("valibot").ObjectSchema<{
422
+ readonly status: import("valibot").LiteralSchema<200, undefined>;
423
+ }, undefined>], undefined>>;
273
424
  thread: import("..").EndpointConfig<"/v1/pv/sync/push/thread", import("valibot").ObjectSchema<{
274
425
  readonly clientGroupID: import("valibot").StringSchema<undefined>;
275
426
  readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/sdk/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGpB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/sdk/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGpB,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marcoappio/marco-config",
3
- "version": "2.0.159",
3
+ "version": "2.0.161",
4
4
  "author": "team@marcoapp.io",
5
5
  "main": "dist/index.js",
6
6
  "repository": "git@github.com:marcoappio/marco-config.git",