@marcoappio/marco-config 2.0.303 → 2.0.305
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/clients/index.d.ts +1 -1
- package/dist/clients/thread.d.ts +1 -1
- package/dist/clients/thread.js +1 -1
- package/dist/sdk/endpoints/index.d.ts +1 -1
- package/dist/sdk/endpoints/private/index.d.ts +1 -1
- package/dist/sdk/endpoints/private/sync/index.d.ts +1 -1
- package/dist/sdk/endpoints/private/sync/pull/index.d.ts +1 -1
- package/dist/sdk/endpoints/private/sync/pull/thread.d.ts +1 -1
- package/dist/sdk/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/clients/index.d.ts
CHANGED
|
@@ -353,7 +353,7 @@ export declare const marcoClients: {
|
|
|
353
353
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
354
354
|
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
355
355
|
}, undefined>, undefined>;
|
|
356
|
-
readonly draftId: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
356
|
+
readonly draftId: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>, undefined>;
|
|
357
357
|
readonly envelopeDate: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
358
358
|
readonly envelopeSubject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
359
359
|
readonly from: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
package/dist/clients/thread.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export declare const thread: {
|
|
|
20
20
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
21
21
|
readonly name: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
22
22
|
}, undefined>, undefined>;
|
|
23
|
-
readonly draftId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
23
|
+
readonly draftId: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>, undefined>;
|
|
24
24
|
readonly envelopeDate: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
25
25
|
readonly envelopeSubject: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
26
26
|
readonly from: v.ArraySchema<v.ObjectSchema<{
|
package/dist/clients/thread.js
CHANGED
|
@@ -43,7 +43,7 @@ export const thread = {
|
|
|
43
43
|
attachments: v.array(inlineAttachment),
|
|
44
44
|
bcc: v.array(inlineContact),
|
|
45
45
|
cc: v.array(inlineContact),
|
|
46
|
-
draftId: v.nullable(
|
|
46
|
+
draftId: v.nullable(marcoSchemas.string.shortUUID()),
|
|
47
47
|
envelopeDate: marcoSchemas.number.positiveInteger(),
|
|
48
48
|
envelopeSubject: marcoSchemas.string.nullable(),
|
|
49
49
|
from: v.array(inlineContact),
|
|
@@ -292,7 +292,7 @@ export declare const endpoints: {
|
|
|
292
292
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
293
293
|
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
294
294
|
}, undefined>, undefined>;
|
|
295
|
-
readonly draftId: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
295
|
+
readonly draftId: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>, undefined>;
|
|
296
296
|
readonly envelopeDate: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
297
297
|
readonly envelopeSubject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
298
298
|
readonly from: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
@@ -289,7 +289,7 @@ export declare const privateGroup: {
|
|
|
289
289
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
290
290
|
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
291
291
|
}, undefined>, undefined>;
|
|
292
|
-
readonly draftId: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
292
|
+
readonly draftId: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>, undefined>;
|
|
293
293
|
readonly envelopeDate: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
294
294
|
readonly envelopeSubject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
295
295
|
readonly from: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
@@ -223,7 +223,7 @@ export declare const sync: {
|
|
|
223
223
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
224
224
|
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
225
225
|
}, undefined>, undefined>;
|
|
226
|
-
readonly draftId: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
226
|
+
readonly draftId: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>, undefined>;
|
|
227
227
|
readonly envelopeDate: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
228
228
|
readonly envelopeSubject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
229
229
|
readonly from: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
@@ -222,7 +222,7 @@ export declare const pull: {
|
|
|
222
222
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
223
223
|
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
224
224
|
}, undefined>, undefined>;
|
|
225
|
-
readonly draftId: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
225
|
+
readonly draftId: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>, undefined>;
|
|
226
226
|
readonly envelopeDate: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
227
227
|
readonly envelopeSubject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
228
228
|
readonly from: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
@@ -64,7 +64,7 @@ export declare const syncPullThread: import("../../../../..").EndpointConfig<"/v
|
|
|
64
64
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
65
65
|
readonly name: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
66
66
|
}, undefined>, undefined>;
|
|
67
|
-
readonly draftId: v.NullableSchema<v.StringSchema<undefined>, undefined>;
|
|
67
|
+
readonly draftId: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>, undefined>;
|
|
68
68
|
readonly envelopeDate: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
69
69
|
readonly envelopeSubject: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
70
70
|
readonly from: v.ArraySchema<v.ObjectSchema<{
|
package/dist/sdk/index.d.ts
CHANGED
|
@@ -291,7 +291,7 @@ export declare const marcoSDK: {
|
|
|
291
291
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
292
292
|
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
293
293
|
}, undefined>, undefined>;
|
|
294
|
-
readonly draftId: import("valibot").NullableSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
294
|
+
readonly draftId: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>, undefined>;
|
|
295
295
|
readonly envelopeDate: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
296
296
|
readonly envelopeSubject: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
297
297
|
readonly from: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
package/package.json
CHANGED