@marcoappio/marco-config 2.0.360 → 2.0.362

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.
@@ -29,7 +29,7 @@ export declare const draft: {
29
29
  readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
30
30
  }, undefined>;
31
31
  mutators: {
32
- cancelDraftSend: {
32
+ cancelDraftScheduledSend: {
33
33
  delta: v.ObjectSchema<{
34
34
  readonly id: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
35
35
  readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
@@ -46,7 +46,7 @@ const draftSchema = v.object({
46
46
  export const draft = {
47
47
  model: draftSchema,
48
48
  mutators: {
49
- cancelDraftSend: {
49
+ cancelDraftScheduledSend: {
50
50
  delta: v.object({
51
51
  id: marcoSchemas.string.required(),
52
52
  updatedAt: marcoSchemas.number.positiveInteger(),
@@ -182,7 +182,7 @@ export declare const marcoClients: {
182
182
  readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
183
183
  }, undefined>;
184
184
  mutators: {
185
- cancelDraftSend: {
185
+ cancelDraftScheduledSend: {
186
186
  delta: import("valibot").ObjectSchema<{
187
187
  readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
188
188
  readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
@@ -10,7 +10,7 @@ const connectionDefaults = {
10
10
  imapHost: 'imap.mail.me.com',
11
11
  imapPort: 993,
12
12
  smtpHost: 'smtp.mail.me.com',
13
- smtpPort: 465,
13
+ smtpPort: 587,
14
14
  },
15
15
  };
16
16
  export const emailProvider = {
@@ -499,7 +499,7 @@ export declare const endpoints: {
499
499
  }, undefined>;
500
500
  readonly clientID: import("valibot").StringSchema<undefined>;
501
501
  readonly id: import("valibot").NumberSchema<undefined>;
502
- readonly name: import("valibot").LiteralSchema<"cancelDraftSend", undefined>;
502
+ readonly name: import("valibot").LiteralSchema<"cancelDraftScheduledSend", undefined>;
503
503
  }, undefined> | import("valibot").ObjectSchema<{
504
504
  readonly args: import("valibot").ObjectSchema<{
505
505
  readonly attachment: import("valibot").ObjectSchema<{
@@ -496,7 +496,7 @@ export declare const privateGroup: {
496
496
  }, undefined>;
497
497
  readonly clientID: import("valibot").StringSchema<undefined>;
498
498
  readonly id: import("valibot").NumberSchema<undefined>;
499
- readonly name: import("valibot").LiteralSchema<"cancelDraftSend", undefined>;
499
+ readonly name: import("valibot").LiteralSchema<"cancelDraftScheduledSend", undefined>;
500
500
  }, undefined> | import("valibot").ObjectSchema<{
501
501
  readonly args: import("valibot").ObjectSchema<{
502
502
  readonly attachment: import("valibot").ObjectSchema<{
@@ -458,7 +458,7 @@ export declare const sync: {
458
458
  }, undefined>;
459
459
  readonly clientID: import("valibot").StringSchema<undefined>;
460
460
  readonly id: import("valibot").NumberSchema<undefined>;
461
- readonly name: import("valibot").LiteralSchema<"cancelDraftSend", undefined>;
461
+ readonly name: import("valibot").LiteralSchema<"cancelDraftScheduledSend", undefined>;
462
462
  }, undefined> | import("valibot").ObjectSchema<{
463
463
  readonly args: import("valibot").ObjectSchema<{
464
464
  readonly attachment: import("valibot").ObjectSchema<{
@@ -8,7 +8,7 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
8
8
  }, undefined>;
9
9
  readonly clientID: v.StringSchema<undefined>;
10
10
  readonly id: v.NumberSchema<undefined>;
11
- readonly name: v.LiteralSchema<"cancelDraftSend", undefined>;
11
+ readonly name: v.LiteralSchema<"cancelDraftScheduledSend", undefined>;
12
12
  }, undefined> | v.ObjectSchema<{
13
13
  readonly args: v.ObjectSchema<{
14
14
  readonly attachment: v.ObjectSchema<{
@@ -6,11 +6,11 @@ export const syncPushDraft = createEndpoint({
6
6
  body: v.object({
7
7
  clientGroupID: v.string(),
8
8
  mutations: v.array(v.union(Object.values({
9
- cancelDraftSend: v.object({
10
- args: draft.mutators.cancelDraftSend.delta,
9
+ cancelDraftScheduledSend: v.object({
10
+ args: draft.mutators.cancelDraftScheduledSend.delta,
11
11
  clientID: v.string(),
12
12
  id: v.number(),
13
- name: v.literal('cancelDraftSend'),
13
+ name: v.literal('cancelDraftScheduledSend'),
14
14
  }),
15
15
  createAttachment: v.object({
16
16
  args: draft.mutators.createAttachment.delta,
@@ -155,7 +155,7 @@ export declare const push: {
155
155
  }, undefined>;
156
156
  readonly clientID: import("valibot").StringSchema<undefined>;
157
157
  readonly id: import("valibot").NumberSchema<undefined>;
158
- readonly name: import("valibot").LiteralSchema<"cancelDraftSend", undefined>;
158
+ readonly name: import("valibot").LiteralSchema<"cancelDraftScheduledSend", undefined>;
159
159
  }, undefined> | import("valibot").ObjectSchema<{
160
160
  readonly args: import("valibot").ObjectSchema<{
161
161
  readonly attachment: import("valibot").ObjectSchema<{
@@ -498,7 +498,7 @@ export declare const marcoSDK: {
498
498
  }, undefined>;
499
499
  readonly clientID: import("valibot").StringSchema<undefined>;
500
500
  readonly id: import("valibot").NumberSchema<undefined>;
501
- readonly name: import("valibot").LiteralSchema<"cancelDraftSend", undefined>;
501
+ readonly name: import("valibot").LiteralSchema<"cancelDraftScheduledSend", undefined>;
502
502
  }, undefined> | import("valibot").ObjectSchema<{
503
503
  readonly args: import("valibot").ObjectSchema<{
504
504
  readonly attachment: import("valibot").ObjectSchema<{
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@marcoappio/marco-config",
3
3
  "packageManager": "bun@1.2.0",
4
- "version": "2.0.360",
4
+ "version": "2.0.362",
5
5
  "author": "team@marcoapp.io",
6
6
  "main": "dist/index.js",
7
7
  "repository": "git@github.com:marcoappio/marco-config.git",