@marcoappio/marco-config 2.0.166 → 2.0.167
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/account.d.ts +1 -1
- package/dist/clients/index.d.ts +2 -2
- package/dist/clients/user.d.ts +1 -1
- package/dist/sdk/endpoints/index.d.ts +17 -17
- package/dist/sdk/endpoints/private/emailMessage/getEmailMessageHTML.d.ts +1 -1
- package/dist/sdk/endpoints/private/emailMessage/index.d.ts +1 -1
- package/dist/sdk/endpoints/private/index.d.ts +13 -13
- package/dist/sdk/endpoints/private/sync/index.d.ts +11 -11
- package/dist/sdk/endpoints/private/sync/pull/account.d.ts +1 -1
- package/dist/sdk/endpoints/private/sync/pull/contact.d.ts +1 -1
- package/dist/sdk/endpoints/private/sync/pull/draft.d.ts +1 -1
- package/dist/sdk/endpoints/private/sync/pull/index.d.ts +5 -5
- package/dist/sdk/endpoints/private/sync/pull/thread.d.ts +1 -1
- package/dist/sdk/endpoints/private/sync/pull/user.d.ts +1 -1
- package/dist/sdk/endpoints/private/sync/push/account.d.ts +2 -2
- package/dist/sdk/endpoints/private/sync/push/draft.d.ts +1 -1
- package/dist/sdk/endpoints/private/sync/push/index.d.ts +6 -6
- package/dist/sdk/endpoints/private/sync/push/thread.d.ts +1 -1
- package/dist/sdk/endpoints/private/sync/push/user.d.ts +2 -2
- package/dist/sdk/endpoints/private/user/deleteUser.d.ts +1 -1
- package/dist/sdk/endpoints/private/user/index.d.ts +1 -1
- package/dist/sdk/endpoints/public/auth/index.d.ts +3 -3
- package/dist/sdk/endpoints/public/auth/refreshAuth.d.ts +1 -1
- package/dist/sdk/endpoints/public/auth/sendAuthCode.d.ts +1 -1
- package/dist/sdk/endpoints/public/auth/verifyAuthCode.d.ts +1 -1
- package/dist/sdk/endpoints/public/healthcheck/index.d.ts +1 -1
- package/dist/sdk/endpoints/public/index.d.ts +4 -4
- package/dist/sdk/index.d.ts +17 -17
- package/package.json +2 -2
|
@@ -62,7 +62,7 @@ export declare const account: {
|
|
|
62
62
|
readonly firstName: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
63
63
|
readonly lastName: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
64
64
|
};
|
|
65
|
-
readonly '~standard': v.
|
|
65
|
+
readonly '~standard': v.StandardSchemaProps<{
|
|
66
66
|
color?: string | undefined;
|
|
67
67
|
firstName?: string | null | undefined;
|
|
68
68
|
lastName?: string | null | undefined;
|
package/dist/clients/index.d.ts
CHANGED
|
@@ -63,7 +63,7 @@ export declare const marcoClients: {
|
|
|
63
63
|
readonly firstName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
64
64
|
readonly lastName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
65
65
|
};
|
|
66
|
-
readonly '~standard': import("valibot").
|
|
66
|
+
readonly '~standard': import("valibot").StandardSchemaProps<{
|
|
67
67
|
color?: string | undefined;
|
|
68
68
|
firstName?: string | null | undefined;
|
|
69
69
|
lastName?: string | null | undefined;
|
|
@@ -218,7 +218,7 @@ export declare const marcoClients: {
|
|
|
218
218
|
readonly firstName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
219
219
|
readonly lastName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
220
220
|
};
|
|
221
|
-
readonly '~standard': import("valibot").
|
|
221
|
+
readonly '~standard': import("valibot").StandardSchemaProps<{
|
|
222
222
|
firstName?: string | null | undefined;
|
|
223
223
|
lastName?: string | null | undefined;
|
|
224
224
|
}, {
|
package/dist/clients/user.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ export declare const user: {
|
|
|
19
19
|
readonly firstName: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
20
20
|
readonly lastName: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
21
21
|
};
|
|
22
|
-
readonly '~standard': v.
|
|
22
|
+
readonly '~standard': v.StandardSchemaProps<{
|
|
23
23
|
firstName?: string | null | undefined;
|
|
24
24
|
lastName?: string | null | undefined;
|
|
25
25
|
}, {
|
|
@@ -3,7 +3,7 @@ import { EndpointConfig } from '../../types';
|
|
|
3
3
|
export declare const endpoints: {
|
|
4
4
|
private: {
|
|
5
5
|
emailMessage: {
|
|
6
|
-
getHTML: EndpointConfig<"/v1/pv/message/:messageId/html", GenericSchema | undefined, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
6
|
+
getHTML: EndpointConfig<"/v1/pv/message/:messageId/html", GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
7
7
|
readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
|
|
8
8
|
readonly status: import("valibot").LiteralSchema<401, undefined>;
|
|
9
9
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -21,7 +21,7 @@ export declare const endpoints: {
|
|
|
21
21
|
account: EndpointConfig<"/v1/pv/sync/pull/account", import("valibot").ObjectSchema<{
|
|
22
22
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
23
23
|
readonly cookie: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
24
|
-
}, undefined>, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
24
|
+
}, undefined>, GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
25
25
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
26
26
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
27
27
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -71,7 +71,7 @@ export declare const endpoints: {
|
|
|
71
71
|
contact: EndpointConfig<"/v1/pv/sync/pull/contact", import("valibot").ObjectSchema<{
|
|
72
72
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
73
73
|
readonly cookie: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
74
|
-
}, undefined>, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
74
|
+
}, undefined>, GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
75
75
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
76
76
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
77
77
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -101,7 +101,7 @@ export declare const endpoints: {
|
|
|
101
101
|
draft: EndpointConfig<"/v1/pv/sync/pull/draft", import("valibot").ObjectSchema<{
|
|
102
102
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
103
103
|
readonly cookie: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
104
|
-
}, undefined>, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
104
|
+
}, undefined>, GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
105
105
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
106
106
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
107
107
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -142,7 +142,7 @@ export declare const endpoints: {
|
|
|
142
142
|
readonly order: import("valibot").StringSchema<undefined>;
|
|
143
143
|
readonly version: import("valibot").NumberSchema<undefined>;
|
|
144
144
|
}, undefined>, undefined>;
|
|
145
|
-
}, undefined>, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
145
|
+
}, undefined>, GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
146
146
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
147
147
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
148
148
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -205,7 +205,7 @@ export declare const endpoints: {
|
|
|
205
205
|
user: EndpointConfig<"/v1/pv/sync/pull/user", import("valibot").ObjectSchema<{
|
|
206
206
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
207
207
|
readonly cookie: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
208
|
-
}, undefined>, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
208
|
+
}, undefined>, GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
209
209
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
210
210
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
211
211
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -280,7 +280,7 @@ export declare const endpoints: {
|
|
|
280
280
|
readonly firstName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
281
281
|
readonly lastName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
282
282
|
};
|
|
283
|
-
readonly '~standard': import("valibot").
|
|
283
|
+
readonly '~standard': import("valibot").StandardSchemaProps<{
|
|
284
284
|
color?: string | undefined;
|
|
285
285
|
firstName?: string | null | undefined;
|
|
286
286
|
lastName?: string | null | undefined;
|
|
@@ -313,7 +313,7 @@ export declare const endpoints: {
|
|
|
313
313
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
314
314
|
readonly name: import("valibot").LiteralSchema<"setSettings", undefined>;
|
|
315
315
|
}, undefined>], undefined>, undefined>;
|
|
316
|
-
}, undefined>, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
316
|
+
}, undefined>, GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
317
317
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
318
318
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
319
319
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -348,7 +348,7 @@ export declare const endpoints: {
|
|
|
348
348
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
349
349
|
readonly name: import("valibot").LiteralSchema<"upsert", undefined>;
|
|
350
350
|
}, undefined>], undefined>, undefined>;
|
|
351
|
-
}, undefined>, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
351
|
+
}, undefined>, GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
352
352
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
353
353
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
354
354
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -369,7 +369,7 @@ export declare const endpoints: {
|
|
|
369
369
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
370
370
|
readonly name: import("valibot").LiteralSchema<"setMessageSeen", undefined>;
|
|
371
371
|
}, undefined>], undefined>, undefined>;
|
|
372
|
-
}, undefined>, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
372
|
+
}, undefined>, GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
373
373
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
374
374
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
375
375
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -394,7 +394,7 @@ export declare const endpoints: {
|
|
|
394
394
|
readonly firstName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
395
395
|
readonly lastName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
396
396
|
};
|
|
397
|
-
readonly '~standard': import("valibot").
|
|
397
|
+
readonly '~standard': import("valibot").StandardSchemaProps<{
|
|
398
398
|
firstName?: string | null | undefined;
|
|
399
399
|
lastName?: string | null | undefined;
|
|
400
400
|
}, {
|
|
@@ -422,7 +422,7 @@ export declare const endpoints: {
|
|
|
422
422
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
423
423
|
readonly name: import("valibot").LiteralSchema<"setSettings", undefined>;
|
|
424
424
|
}, undefined>], undefined>, undefined>;
|
|
425
|
-
}, undefined>, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
425
|
+
}, undefined>, GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
426
426
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
427
427
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
428
428
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -434,7 +434,7 @@ export declare const endpoints: {
|
|
|
434
434
|
};
|
|
435
435
|
};
|
|
436
436
|
user: {
|
|
437
|
-
deleteUser: EndpointConfig<"/v1/pv/user", GenericSchema | undefined, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
437
|
+
deleteUser: EndpointConfig<"/v1/pv/user", GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
438
438
|
readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
|
|
439
439
|
readonly status: import("valibot").LiteralSchema<401, undefined>;
|
|
440
440
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -446,7 +446,7 @@ export declare const endpoints: {
|
|
|
446
446
|
auth: {
|
|
447
447
|
refreshAuth: EndpointConfig<"/v1/pb/auth/refresh", import("valibot").ObjectSchema<{
|
|
448
448
|
readonly refreshToken: import("valibot").StringSchema<undefined>;
|
|
449
|
-
}, undefined>, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
449
|
+
}, undefined>, GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
450
450
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
451
451
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
452
452
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -474,7 +474,7 @@ export declare const endpoints: {
|
|
|
474
474
|
}, undefined>], undefined>>;
|
|
475
475
|
sendAuthCode: EndpointConfig<"/v1/pb/auth/send-code", import("valibot").ObjectSchema<{
|
|
476
476
|
readonly email: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
477
|
-
}, undefined>, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
477
|
+
}, undefined>, GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
478
478
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
479
479
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
480
480
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -486,7 +486,7 @@ export declare const endpoints: {
|
|
|
486
486
|
verifyAuthCode: EndpointConfig<"/v1/pb/auth/verify-code", import("valibot").ObjectSchema<{
|
|
487
487
|
readonly code: import("valibot").StringSchema<undefined>;
|
|
488
488
|
readonly email: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
489
|
-
}, undefined>, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
489
|
+
}, undefined>, GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
490
490
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
491
491
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
492
492
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -522,7 +522,7 @@ export declare const endpoints: {
|
|
|
522
522
|
readonly status: import("valibot").LiteralSchema<200, undefined>;
|
|
523
523
|
}, undefined>], undefined>>;
|
|
524
524
|
};
|
|
525
|
-
healthcheck: EndpointConfig<"/v1/pb/healthcheck", GenericSchema | undefined, GenericSchema | undefined, import("valibot").ObjectSchema<{
|
|
525
|
+
healthcheck: EndpointConfig<"/v1/pb/healthcheck", GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").ObjectSchema<{
|
|
526
526
|
readonly data: import("valibot").ObjectSchema<{
|
|
527
527
|
readonly status: import("valibot").LiteralSchema<"ok", undefined>;
|
|
528
528
|
}, undefined>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as v from 'valibot';
|
|
2
|
-
export declare const getEmailMessageHTML: import("../../../..").EndpointConfig<"/v1/pv/message/:messageId/html", v.GenericSchema | undefined, v.GenericSchema | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
2
|
+
export declare const getEmailMessageHTML: import("../../../..").EndpointConfig<"/v1/pv/message/:messageId/html", v.GenericSchema<unknown, unknown, v.BaseIssue<unknown>> | undefined, v.GenericSchema<unknown, unknown, v.BaseIssue<unknown>> | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
3
3
|
readonly code: v.LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
|
|
4
4
|
readonly status: v.LiteralSchema<401, undefined>;
|
|
5
5
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const emailMessage: {
|
|
2
|
-
getHTML: import("../../../..").EndpointConfig<"/v1/pv/message/:messageId/html", import("valibot").GenericSchema | undefined, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
2
|
+
getHTML: 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<{
|
|
3
3
|
readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
|
|
4
4
|
readonly status: import("valibot").LiteralSchema<401, undefined>;
|
|
5
5
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const privateGroup: {
|
|
2
2
|
emailMessage: {
|
|
3
|
-
getHTML: import("../../..").EndpointConfig<"/v1/pv/message/:messageId/html", import("valibot").GenericSchema | undefined, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
3
|
+
getHTML: 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<{
|
|
4
4
|
readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
|
|
5
5
|
readonly status: import("valibot").LiteralSchema<401, undefined>;
|
|
6
6
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -18,7 +18,7 @@ export declare const privateGroup: {
|
|
|
18
18
|
account: import("../../..").EndpointConfig<"/v1/pv/sync/pull/account", import("valibot").ObjectSchema<{
|
|
19
19
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
20
20
|
readonly cookie: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
21
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
21
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
22
22
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
23
23
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
24
24
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -68,7 +68,7 @@ export declare const privateGroup: {
|
|
|
68
68
|
contact: import("../../..").EndpointConfig<"/v1/pv/sync/pull/contact", import("valibot").ObjectSchema<{
|
|
69
69
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
70
70
|
readonly cookie: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
71
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
71
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
72
72
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
73
73
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
74
74
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -98,7 +98,7 @@ export declare const privateGroup: {
|
|
|
98
98
|
draft: import("../../..").EndpointConfig<"/v1/pv/sync/pull/draft", import("valibot").ObjectSchema<{
|
|
99
99
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
100
100
|
readonly cookie: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
101
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
101
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
102
102
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
103
103
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
104
104
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -139,7 +139,7 @@ export declare const privateGroup: {
|
|
|
139
139
|
readonly order: import("valibot").StringSchema<undefined>;
|
|
140
140
|
readonly version: import("valibot").NumberSchema<undefined>;
|
|
141
141
|
}, undefined>, undefined>;
|
|
142
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
142
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
143
143
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
144
144
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
145
145
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -202,7 +202,7 @@ export declare const privateGroup: {
|
|
|
202
202
|
user: import("../../..").EndpointConfig<"/v1/pv/sync/pull/user", import("valibot").ObjectSchema<{
|
|
203
203
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
204
204
|
readonly cookie: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
205
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
205
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
206
206
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
207
207
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
208
208
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -277,7 +277,7 @@ export declare const privateGroup: {
|
|
|
277
277
|
readonly firstName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
278
278
|
readonly lastName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
279
279
|
};
|
|
280
|
-
readonly '~standard': import("valibot").
|
|
280
|
+
readonly '~standard': import("valibot").StandardSchemaProps<{
|
|
281
281
|
color?: string | undefined;
|
|
282
282
|
firstName?: string | null | undefined;
|
|
283
283
|
lastName?: string | null | undefined;
|
|
@@ -310,7 +310,7 @@ export declare const privateGroup: {
|
|
|
310
310
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
311
311
|
readonly name: import("valibot").LiteralSchema<"setSettings", undefined>;
|
|
312
312
|
}, undefined>], undefined>, undefined>;
|
|
313
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
313
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
314
314
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
315
315
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
316
316
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -345,7 +345,7 @@ export declare const privateGroup: {
|
|
|
345
345
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
346
346
|
readonly name: import("valibot").LiteralSchema<"upsert", undefined>;
|
|
347
347
|
}, undefined>], undefined>, undefined>;
|
|
348
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
348
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
349
349
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
350
350
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
351
351
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -366,7 +366,7 @@ export declare const privateGroup: {
|
|
|
366
366
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
367
367
|
readonly name: import("valibot").LiteralSchema<"setMessageSeen", undefined>;
|
|
368
368
|
}, undefined>], undefined>, undefined>;
|
|
369
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
369
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
370
370
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
371
371
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
372
372
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -391,7 +391,7 @@ export declare const privateGroup: {
|
|
|
391
391
|
readonly firstName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
392
392
|
readonly lastName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
393
393
|
};
|
|
394
|
-
readonly '~standard': import("valibot").
|
|
394
|
+
readonly '~standard': import("valibot").StandardSchemaProps<{
|
|
395
395
|
firstName?: string | null | undefined;
|
|
396
396
|
lastName?: string | null | undefined;
|
|
397
397
|
}, {
|
|
@@ -419,7 +419,7 @@ export declare const privateGroup: {
|
|
|
419
419
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
420
420
|
readonly name: import("valibot").LiteralSchema<"setSettings", undefined>;
|
|
421
421
|
}, undefined>], undefined>, undefined>;
|
|
422
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
422
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
423
423
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
424
424
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
425
425
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -431,7 +431,7 @@ export declare const privateGroup: {
|
|
|
431
431
|
};
|
|
432
432
|
};
|
|
433
433
|
user: {
|
|
434
|
-
deleteUser: import("../../..").EndpointConfig<"/v1/pv/user", import("valibot").GenericSchema | undefined, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
434
|
+
deleteUser: import("../../..").EndpointConfig<"/v1/pv/user", 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<{
|
|
435
435
|
readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
|
|
436
436
|
readonly status: import("valibot").LiteralSchema<401, undefined>;
|
|
437
437
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -3,7 +3,7 @@ export declare const sync: {
|
|
|
3
3
|
account: import("../../../..").EndpointConfig<"/v1/pv/sync/pull/account", import("valibot").ObjectSchema<{
|
|
4
4
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
5
5
|
readonly cookie: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
6
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
6
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
7
7
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
8
8
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
9
9
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -53,7 +53,7 @@ export declare const sync: {
|
|
|
53
53
|
contact: import("../../../..").EndpointConfig<"/v1/pv/sync/pull/contact", import("valibot").ObjectSchema<{
|
|
54
54
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
55
55
|
readonly cookie: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
56
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
56
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
57
57
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
58
58
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
59
59
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -83,7 +83,7 @@ export declare const sync: {
|
|
|
83
83
|
draft: import("../../../..").EndpointConfig<"/v1/pv/sync/pull/draft", import("valibot").ObjectSchema<{
|
|
84
84
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
85
85
|
readonly cookie: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
86
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
86
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
87
87
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
88
88
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
89
89
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -124,7 +124,7 @@ export declare const sync: {
|
|
|
124
124
|
readonly order: import("valibot").StringSchema<undefined>;
|
|
125
125
|
readonly version: import("valibot").NumberSchema<undefined>;
|
|
126
126
|
}, undefined>, undefined>;
|
|
127
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
127
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
128
128
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
129
129
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
130
130
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -187,7 +187,7 @@ export declare const sync: {
|
|
|
187
187
|
user: import("../../../..").EndpointConfig<"/v1/pv/sync/pull/user", import("valibot").ObjectSchema<{
|
|
188
188
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
189
189
|
readonly cookie: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
190
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
190
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
191
191
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
192
192
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
193
193
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -262,7 +262,7 @@ export declare const sync: {
|
|
|
262
262
|
readonly firstName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
263
263
|
readonly lastName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
264
264
|
};
|
|
265
|
-
readonly '~standard': import("valibot").
|
|
265
|
+
readonly '~standard': import("valibot").StandardSchemaProps<{
|
|
266
266
|
color?: string | undefined;
|
|
267
267
|
firstName?: string | null | undefined;
|
|
268
268
|
lastName?: string | null | undefined;
|
|
@@ -295,7 +295,7 @@ export declare const sync: {
|
|
|
295
295
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
296
296
|
readonly name: import("valibot").LiteralSchema<"setSettings", undefined>;
|
|
297
297
|
}, undefined>], undefined>, undefined>;
|
|
298
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
298
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
299
299
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
300
300
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
301
301
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -330,7 +330,7 @@ export declare const sync: {
|
|
|
330
330
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
331
331
|
readonly name: import("valibot").LiteralSchema<"upsert", undefined>;
|
|
332
332
|
}, undefined>], undefined>, undefined>;
|
|
333
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
333
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
334
334
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
335
335
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
336
336
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -351,7 +351,7 @@ export declare const sync: {
|
|
|
351
351
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
352
352
|
readonly name: import("valibot").LiteralSchema<"setMessageSeen", undefined>;
|
|
353
353
|
}, undefined>], undefined>, undefined>;
|
|
354
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
354
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
355
355
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
356
356
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
357
357
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -376,7 +376,7 @@ export declare const sync: {
|
|
|
376
376
|
readonly firstName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
377
377
|
readonly lastName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
378
378
|
};
|
|
379
|
-
readonly '~standard': import("valibot").
|
|
379
|
+
readonly '~standard': import("valibot").StandardSchemaProps<{
|
|
380
380
|
firstName?: string | null | undefined;
|
|
381
381
|
lastName?: string | null | undefined;
|
|
382
382
|
}, {
|
|
@@ -404,7 +404,7 @@ export declare const sync: {
|
|
|
404
404
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
405
405
|
readonly name: import("valibot").LiteralSchema<"setSettings", undefined>;
|
|
406
406
|
}, undefined>], undefined>, undefined>;
|
|
407
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
407
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
408
408
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
409
409
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
410
410
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -2,7 +2,7 @@ import * as v from 'valibot';
|
|
|
2
2
|
export declare const syncPullAccount: import("../../../../..").EndpointConfig<"/v1/pv/sync/pull/account", v.ObjectSchema<{
|
|
3
3
|
readonly clientGroupID: v.StringSchema<undefined>;
|
|
4
4
|
readonly cookie: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
5
|
-
}, undefined>, v.GenericSchema | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
5
|
+
}, undefined>, v.GenericSchema<unknown, unknown, v.BaseIssue<unknown>> | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
6
6
|
readonly code: v.LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
7
7
|
readonly status: v.LiteralSchema<400, undefined>;
|
|
8
8
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -2,7 +2,7 @@ import * as v from 'valibot';
|
|
|
2
2
|
export declare const syncPullContact: import("../../../../..").EndpointConfig<"/v1/pv/sync/pull/contact", v.ObjectSchema<{
|
|
3
3
|
readonly clientGroupID: v.StringSchema<undefined>;
|
|
4
4
|
readonly cookie: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
5
|
-
}, undefined>, v.GenericSchema | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
5
|
+
}, undefined>, v.GenericSchema<unknown, unknown, v.BaseIssue<unknown>> | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
6
6
|
readonly code: v.LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
7
7
|
readonly status: v.LiteralSchema<400, undefined>;
|
|
8
8
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -2,7 +2,7 @@ import * as v from 'valibot';
|
|
|
2
2
|
export declare const syncPullDraft: import("../../../../..").EndpointConfig<"/v1/pv/sync/pull/draft", v.ObjectSchema<{
|
|
3
3
|
readonly clientGroupID: v.StringSchema<undefined>;
|
|
4
4
|
readonly cookie: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
5
|
-
}, undefined>, v.GenericSchema | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
5
|
+
}, undefined>, v.GenericSchema<unknown, unknown, v.BaseIssue<unknown>> | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
6
6
|
readonly code: v.LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
7
7
|
readonly status: v.LiteralSchema<400, undefined>;
|
|
8
8
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -2,7 +2,7 @@ export declare const pull: {
|
|
|
2
2
|
account: import("../../../../..").EndpointConfig<"/v1/pv/sync/pull/account", import("valibot").ObjectSchema<{
|
|
3
3
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
4
4
|
readonly cookie: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
5
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
5
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
6
6
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
7
7
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
8
8
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -52,7 +52,7 @@ export declare const pull: {
|
|
|
52
52
|
contact: import("../../../../..").EndpointConfig<"/v1/pv/sync/pull/contact", import("valibot").ObjectSchema<{
|
|
53
53
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
54
54
|
readonly cookie: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
55
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
55
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
56
56
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
57
57
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
58
58
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -82,7 +82,7 @@ export declare const pull: {
|
|
|
82
82
|
draft: import("../../../../..").EndpointConfig<"/v1/pv/sync/pull/draft", import("valibot").ObjectSchema<{
|
|
83
83
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
84
84
|
readonly cookie: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
85
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
85
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
86
86
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
87
87
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
88
88
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -123,7 +123,7 @@ export declare const pull: {
|
|
|
123
123
|
readonly order: import("valibot").StringSchema<undefined>;
|
|
124
124
|
readonly version: import("valibot").NumberSchema<undefined>;
|
|
125
125
|
}, undefined>, undefined>;
|
|
126
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
126
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
127
127
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
128
128
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
129
129
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -186,7 +186,7 @@ export declare const pull: {
|
|
|
186
186
|
user: import("../../../../..").EndpointConfig<"/v1/pv/sync/pull/user", import("valibot").ObjectSchema<{
|
|
187
187
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
188
188
|
readonly cookie: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
189
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
189
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
190
190
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
191
191
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
192
192
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -6,7 +6,7 @@ export declare const syncPullThread: import("../../../../..").EndpointConfig<"/v
|
|
|
6
6
|
readonly order: v.StringSchema<undefined>;
|
|
7
7
|
readonly version: v.NumberSchema<undefined>;
|
|
8
8
|
}, undefined>, undefined>;
|
|
9
|
-
}, undefined>, v.GenericSchema | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
9
|
+
}, undefined>, v.GenericSchema<unknown, unknown, v.BaseIssue<unknown>> | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
10
10
|
readonly code: v.LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
11
11
|
readonly status: v.LiteralSchema<400, undefined>;
|
|
12
12
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -2,7 +2,7 @@ import * as v from 'valibot';
|
|
|
2
2
|
export declare const syncPullUser: import("../../../../..").EndpointConfig<"/v1/pv/sync/pull/user", v.ObjectSchema<{
|
|
3
3
|
readonly clientGroupID: v.StringSchema<undefined>;
|
|
4
4
|
readonly cookie: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
|
|
5
|
-
}, undefined>, v.GenericSchema | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
5
|
+
}, undefined>, v.GenericSchema<unknown, unknown, v.BaseIssue<unknown>> | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
6
6
|
readonly code: v.LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
7
7
|
readonly status: v.LiteralSchema<400, undefined>;
|
|
8
8
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -43,7 +43,7 @@ export declare const syncPushAccount: import("../../../../..").EndpointConfig<"/
|
|
|
43
43
|
readonly firstName: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
44
44
|
readonly lastName: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
45
45
|
};
|
|
46
|
-
readonly '~standard': v.
|
|
46
|
+
readonly '~standard': v.StandardSchemaProps<{
|
|
47
47
|
color?: string | undefined;
|
|
48
48
|
firstName?: string | null | undefined;
|
|
49
49
|
lastName?: string | null | undefined;
|
|
@@ -76,7 +76,7 @@ export declare const syncPushAccount: import("../../../../..").EndpointConfig<"/
|
|
|
76
76
|
readonly id: v.NumberSchema<undefined>;
|
|
77
77
|
readonly name: v.LiteralSchema<"setSettings", undefined>;
|
|
78
78
|
}, undefined>], undefined>, undefined>;
|
|
79
|
-
}, undefined>, v.GenericSchema | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
79
|
+
}, undefined>, v.GenericSchema<unknown, unknown, v.BaseIssue<unknown>> | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
80
80
|
readonly code: v.LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
81
81
|
readonly status: v.LiteralSchema<400, undefined>;
|
|
82
82
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -25,7 +25,7 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
25
25
|
readonly id: v.NumberSchema<undefined>;
|
|
26
26
|
readonly name: v.LiteralSchema<"upsert", undefined>;
|
|
27
27
|
}, undefined>], undefined>, undefined>;
|
|
28
|
-
}, undefined>, v.GenericSchema | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
28
|
+
}, undefined>, v.GenericSchema<unknown, unknown, v.BaseIssue<unknown>> | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
29
29
|
readonly code: v.LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
30
30
|
readonly status: v.LiteralSchema<400, undefined>;
|
|
31
31
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -43,7 +43,7 @@ export declare const push: {
|
|
|
43
43
|
readonly firstName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
44
44
|
readonly lastName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
45
45
|
};
|
|
46
|
-
readonly '~standard': import("valibot").
|
|
46
|
+
readonly '~standard': import("valibot").StandardSchemaProps<{
|
|
47
47
|
color?: string | undefined;
|
|
48
48
|
firstName?: string | null | undefined;
|
|
49
49
|
lastName?: string | null | undefined;
|
|
@@ -76,7 +76,7 @@ export declare const push: {
|
|
|
76
76
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
77
77
|
readonly name: import("valibot").LiteralSchema<"setSettings", undefined>;
|
|
78
78
|
}, undefined>], undefined>, undefined>;
|
|
79
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
79
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
80
80
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
81
81
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
82
82
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -111,7 +111,7 @@ export declare const push: {
|
|
|
111
111
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
112
112
|
readonly name: import("valibot").LiteralSchema<"upsert", undefined>;
|
|
113
113
|
}, undefined>], undefined>, undefined>;
|
|
114
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
114
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
115
115
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
116
116
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
117
117
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -132,7 +132,7 @@ export declare const push: {
|
|
|
132
132
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
133
133
|
readonly name: import("valibot").LiteralSchema<"setMessageSeen", undefined>;
|
|
134
134
|
}, undefined>], undefined>, undefined>;
|
|
135
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
135
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
136
136
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
137
137
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
138
138
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -157,7 +157,7 @@ export declare const push: {
|
|
|
157
157
|
readonly firstName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
158
158
|
readonly lastName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
159
159
|
};
|
|
160
|
-
readonly '~standard': import("valibot").
|
|
160
|
+
readonly '~standard': import("valibot").StandardSchemaProps<{
|
|
161
161
|
firstName?: string | null | undefined;
|
|
162
162
|
lastName?: string | null | undefined;
|
|
163
163
|
}, {
|
|
@@ -185,7 +185,7 @@ export declare const push: {
|
|
|
185
185
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
186
186
|
readonly name: import("valibot").LiteralSchema<"setSettings", undefined>;
|
|
187
187
|
}, undefined>], undefined>, undefined>;
|
|
188
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
188
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
189
189
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
190
190
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
191
191
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -11,7 +11,7 @@ export declare const syncPushThread: import("../../../../..").EndpointConfig<"/v
|
|
|
11
11
|
readonly id: v.NumberSchema<undefined>;
|
|
12
12
|
readonly name: v.LiteralSchema<"setMessageSeen", undefined>;
|
|
13
13
|
}, undefined>], undefined>, undefined>;
|
|
14
|
-
}, undefined>, v.GenericSchema | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
14
|
+
}, undefined>, v.GenericSchema<unknown, unknown, v.BaseIssue<unknown>> | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
15
15
|
readonly code: v.LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
16
16
|
readonly status: v.LiteralSchema<400, undefined>;
|
|
17
17
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -12,7 +12,7 @@ export declare const syncPushUser: import("../../../../..").EndpointConfig<"/v1/
|
|
|
12
12
|
readonly firstName: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
13
13
|
readonly lastName: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
14
14
|
};
|
|
15
|
-
readonly '~standard': v.
|
|
15
|
+
readonly '~standard': v.StandardSchemaProps<{
|
|
16
16
|
firstName?: string | null | undefined;
|
|
17
17
|
lastName?: string | null | undefined;
|
|
18
18
|
}, {
|
|
@@ -40,7 +40,7 @@ export declare const syncPushUser: import("../../../../..").EndpointConfig<"/v1/
|
|
|
40
40
|
readonly id: v.NumberSchema<undefined>;
|
|
41
41
|
readonly name: v.LiteralSchema<"setSettings", undefined>;
|
|
42
42
|
}, undefined>], undefined>, undefined>;
|
|
43
|
-
}, undefined>, v.GenericSchema | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
43
|
+
}, undefined>, v.GenericSchema<unknown, unknown, v.BaseIssue<unknown>> | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
44
44
|
readonly code: v.LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
45
45
|
readonly status: v.LiteralSchema<400, undefined>;
|
|
46
46
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as v from 'valibot';
|
|
2
|
-
export declare const deleteUser: import("../../../..").EndpointConfig<"/v1/pv/user", v.GenericSchema | undefined, v.GenericSchema | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
2
|
+
export declare const deleteUser: import("../../../..").EndpointConfig<"/v1/pv/user", v.GenericSchema<unknown, unknown, v.BaseIssue<unknown>> | undefined, v.GenericSchema<unknown, unknown, v.BaseIssue<unknown>> | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
3
3
|
readonly code: v.LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
|
|
4
4
|
readonly status: v.LiteralSchema<401, undefined>;
|
|
5
5
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const user: {
|
|
2
|
-
deleteUser: import("../../../..").EndpointConfig<"/v1/pv/user", import("valibot").GenericSchema | undefined, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
2
|
+
deleteUser: import("../../../..").EndpointConfig<"/v1/pv/user", 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<{
|
|
3
3
|
readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
|
|
4
4
|
readonly status: import("valibot").LiteralSchema<401, undefined>;
|
|
5
5
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare const auth: {
|
|
2
2
|
refreshAuth: import("../../../..").EndpointConfig<"/v1/pb/auth/refresh", import("valibot").ObjectSchema<{
|
|
3
3
|
readonly refreshToken: import("valibot").StringSchema<undefined>;
|
|
4
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
4
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
5
5
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
6
6
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
7
7
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -29,7 +29,7 @@ export declare const auth: {
|
|
|
29
29
|
}, undefined>], undefined>>;
|
|
30
30
|
sendAuthCode: import("../../../..").EndpointConfig<"/v1/pb/auth/send-code", import("valibot").ObjectSchema<{
|
|
31
31
|
readonly email: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
32
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
32
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
33
33
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
34
34
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
35
35
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -41,7 +41,7 @@ export declare const auth: {
|
|
|
41
41
|
verifyAuthCode: import("../../../..").EndpointConfig<"/v1/pb/auth/verify-code", import("valibot").ObjectSchema<{
|
|
42
42
|
readonly code: import("valibot").StringSchema<undefined>;
|
|
43
43
|
readonly email: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
44
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
44
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
45
45
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
46
46
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
47
47
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as v from 'valibot';
|
|
2
2
|
export declare const refreshAuth: import("../../../..").EndpointConfig<"/v1/pb/auth/refresh", v.ObjectSchema<{
|
|
3
3
|
readonly refreshToken: v.StringSchema<undefined>;
|
|
4
|
-
}, undefined>, v.GenericSchema | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
4
|
+
}, undefined>, v.GenericSchema<unknown, unknown, v.BaseIssue<unknown>> | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
5
5
|
readonly code: v.LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
6
6
|
readonly status: v.LiteralSchema<400, undefined>;
|
|
7
7
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as v from 'valibot';
|
|
2
2
|
export declare const sendAuthCode: import("../../../..").EndpointConfig<"/v1/pb/auth/send-code", v.ObjectSchema<{
|
|
3
3
|
readonly email: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
4
|
-
}, undefined>, v.GenericSchema | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
4
|
+
}, undefined>, v.GenericSchema<unknown, unknown, v.BaseIssue<unknown>> | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
5
5
|
readonly code: v.LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
6
6
|
readonly status: v.LiteralSchema<400, undefined>;
|
|
7
7
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -2,7 +2,7 @@ import * as v from 'valibot';
|
|
|
2
2
|
export declare const verifyAuthCode: import("../../../..").EndpointConfig<"/v1/pb/auth/verify-code", v.ObjectSchema<{
|
|
3
3
|
readonly code: v.StringSchema<undefined>;
|
|
4
4
|
readonly email: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
5
|
-
}, undefined>, v.GenericSchema | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
5
|
+
}, undefined>, v.GenericSchema<unknown, unknown, v.BaseIssue<unknown>> | undefined, v.UnionSchema<[v.ObjectSchema<{
|
|
6
6
|
readonly code: v.LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
7
7
|
readonly status: v.LiteralSchema<400, undefined>;
|
|
8
8
|
}, undefined>, v.ObjectSchema<{
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as v from 'valibot';
|
|
2
|
-
export declare const healthcheck: import("../../../..").EndpointConfig<"/v1/pb/healthcheck", v.GenericSchema | undefined, v.GenericSchema | undefined, v.ObjectSchema<{
|
|
2
|
+
export declare const healthcheck: import("../../../..").EndpointConfig<"/v1/pb/healthcheck", v.GenericSchema<unknown, unknown, v.BaseIssue<unknown>> | undefined, v.GenericSchema<unknown, unknown, v.BaseIssue<unknown>> | undefined, v.ObjectSchema<{
|
|
3
3
|
readonly data: v.ObjectSchema<{
|
|
4
4
|
readonly status: v.LiteralSchema<"ok", undefined>;
|
|
5
5
|
}, undefined>;
|
|
@@ -2,7 +2,7 @@ export declare const publicGroup: {
|
|
|
2
2
|
auth: {
|
|
3
3
|
refreshAuth: import("../../..").EndpointConfig<"/v1/pb/auth/refresh", import("valibot").ObjectSchema<{
|
|
4
4
|
readonly refreshToken: import("valibot").StringSchema<undefined>;
|
|
5
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
5
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
6
6
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
7
7
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
8
8
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -30,7 +30,7 @@ export declare const publicGroup: {
|
|
|
30
30
|
}, undefined>], undefined>>;
|
|
31
31
|
sendAuthCode: import("../../..").EndpointConfig<"/v1/pb/auth/send-code", import("valibot").ObjectSchema<{
|
|
32
32
|
readonly email: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
33
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
33
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
34
34
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
35
35
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
36
36
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -42,7 +42,7 @@ export declare const publicGroup: {
|
|
|
42
42
|
verifyAuthCode: import("../../..").EndpointConfig<"/v1/pb/auth/verify-code", import("valibot").ObjectSchema<{
|
|
43
43
|
readonly code: import("valibot").StringSchema<undefined>;
|
|
44
44
|
readonly email: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
45
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
45
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
46
46
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
47
47
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
48
48
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -78,7 +78,7 @@ export declare const publicGroup: {
|
|
|
78
78
|
readonly status: import("valibot").LiteralSchema<200, undefined>;
|
|
79
79
|
}, undefined>], undefined>>;
|
|
80
80
|
};
|
|
81
|
-
healthcheck: import("../../..").EndpointConfig<"/v1/pb/healthcheck", import("valibot").GenericSchema | undefined, import("valibot").GenericSchema | undefined, import("valibot").ObjectSchema<{
|
|
81
|
+
healthcheck: import("../../..").EndpointConfig<"/v1/pb/healthcheck", import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").ObjectSchema<{
|
|
82
82
|
readonly data: import("valibot").ObjectSchema<{
|
|
83
83
|
readonly status: import("valibot").LiteralSchema<"ok", undefined>;
|
|
84
84
|
}, undefined>;
|
package/dist/sdk/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ export declare const marcoSDK: {
|
|
|
2
2
|
endpoints: {
|
|
3
3
|
private: {
|
|
4
4
|
emailMessage: {
|
|
5
|
-
getHTML: import("..").EndpointConfig<"/v1/pv/message/:messageId/html", import("valibot").GenericSchema | undefined, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
5
|
+
getHTML: 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
6
|
readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
|
|
7
7
|
readonly status: import("valibot").LiteralSchema<401, undefined>;
|
|
8
8
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -20,7 +20,7 @@ export declare const marcoSDK: {
|
|
|
20
20
|
account: import("..").EndpointConfig<"/v1/pv/sync/pull/account", import("valibot").ObjectSchema<{
|
|
21
21
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
22
22
|
readonly cookie: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
23
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
23
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
24
24
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
25
25
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
26
26
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -70,7 +70,7 @@ export declare const marcoSDK: {
|
|
|
70
70
|
contact: import("..").EndpointConfig<"/v1/pv/sync/pull/contact", import("valibot").ObjectSchema<{
|
|
71
71
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
72
72
|
readonly cookie: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
73
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
73
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
74
74
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
75
75
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
76
76
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -100,7 +100,7 @@ export declare const marcoSDK: {
|
|
|
100
100
|
draft: import("..").EndpointConfig<"/v1/pv/sync/pull/draft", import("valibot").ObjectSchema<{
|
|
101
101
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
102
102
|
readonly cookie: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
103
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
103
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
104
104
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
105
105
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
106
106
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -141,7 +141,7 @@ export declare const marcoSDK: {
|
|
|
141
141
|
readonly order: import("valibot").StringSchema<undefined>;
|
|
142
142
|
readonly version: import("valibot").NumberSchema<undefined>;
|
|
143
143
|
}, undefined>, undefined>;
|
|
144
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
144
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
145
145
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
146
146
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
147
147
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -204,7 +204,7 @@ export declare const marcoSDK: {
|
|
|
204
204
|
user: import("..").EndpointConfig<"/v1/pv/sync/pull/user", import("valibot").ObjectSchema<{
|
|
205
205
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
206
206
|
readonly cookie: import("valibot").NullableSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
207
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
207
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
208
208
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
209
209
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
210
210
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -279,7 +279,7 @@ export declare const marcoSDK: {
|
|
|
279
279
|
readonly firstName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
280
280
|
readonly lastName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
281
281
|
};
|
|
282
|
-
readonly '~standard': import("valibot").
|
|
282
|
+
readonly '~standard': import("valibot").StandardSchemaProps<{
|
|
283
283
|
color?: string | undefined;
|
|
284
284
|
firstName?: string | null | undefined;
|
|
285
285
|
lastName?: string | null | undefined;
|
|
@@ -312,7 +312,7 @@ export declare const marcoSDK: {
|
|
|
312
312
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
313
313
|
readonly name: import("valibot").LiteralSchema<"setSettings", undefined>;
|
|
314
314
|
}, undefined>], undefined>, undefined>;
|
|
315
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
315
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
316
316
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
317
317
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
318
318
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -347,7 +347,7 @@ export declare const marcoSDK: {
|
|
|
347
347
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
348
348
|
readonly name: import("valibot").LiteralSchema<"upsert", undefined>;
|
|
349
349
|
}, undefined>], undefined>, undefined>;
|
|
350
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
350
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
351
351
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
352
352
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
353
353
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -368,7 +368,7 @@ export declare const marcoSDK: {
|
|
|
368
368
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
369
369
|
readonly name: import("valibot").LiteralSchema<"setMessageSeen", undefined>;
|
|
370
370
|
}, undefined>], undefined>, undefined>;
|
|
371
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
371
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
372
372
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
373
373
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
374
374
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -393,7 +393,7 @@ export declare const marcoSDK: {
|
|
|
393
393
|
readonly firstName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
394
394
|
readonly lastName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>, undefined>;
|
|
395
395
|
};
|
|
396
|
-
readonly '~standard': import("valibot").
|
|
396
|
+
readonly '~standard': import("valibot").StandardSchemaProps<{
|
|
397
397
|
firstName?: string | null | undefined;
|
|
398
398
|
lastName?: string | null | undefined;
|
|
399
399
|
}, {
|
|
@@ -421,7 +421,7 @@ export declare const marcoSDK: {
|
|
|
421
421
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
422
422
|
readonly name: import("valibot").LiteralSchema<"setSettings", undefined>;
|
|
423
423
|
}, undefined>], undefined>, undefined>;
|
|
424
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
424
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
425
425
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
426
426
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
427
427
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -433,7 +433,7 @@ export declare const marcoSDK: {
|
|
|
433
433
|
};
|
|
434
434
|
};
|
|
435
435
|
user: {
|
|
436
|
-
deleteUser: import("..").EndpointConfig<"/v1/pv/user", import("valibot").GenericSchema | undefined, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
436
|
+
deleteUser: import("..").EndpointConfig<"/v1/pv/user", 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<{
|
|
437
437
|
readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
|
|
438
438
|
readonly status: import("valibot").LiteralSchema<401, undefined>;
|
|
439
439
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -445,7 +445,7 @@ export declare const marcoSDK: {
|
|
|
445
445
|
auth: {
|
|
446
446
|
refreshAuth: import("..").EndpointConfig<"/v1/pb/auth/refresh", import("valibot").ObjectSchema<{
|
|
447
447
|
readonly refreshToken: import("valibot").StringSchema<undefined>;
|
|
448
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
448
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
449
449
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
450
450
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
451
451
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -473,7 +473,7 @@ export declare const marcoSDK: {
|
|
|
473
473
|
}, undefined>], undefined>>;
|
|
474
474
|
sendAuthCode: import("..").EndpointConfig<"/v1/pb/auth/send-code", import("valibot").ObjectSchema<{
|
|
475
475
|
readonly email: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
476
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
476
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
477
477
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
478
478
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
479
479
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -485,7 +485,7 @@ export declare const marcoSDK: {
|
|
|
485
485
|
verifyAuthCode: import("..").EndpointConfig<"/v1/pb/auth/verify-code", import("valibot").ObjectSchema<{
|
|
486
486
|
readonly code: import("valibot").StringSchema<undefined>;
|
|
487
487
|
readonly email: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
488
|
-
}, undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
488
|
+
}, undefined>, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
489
489
|
readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
|
|
490
490
|
readonly status: import("valibot").LiteralSchema<400, undefined>;
|
|
491
491
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
@@ -521,7 +521,7 @@ export declare const marcoSDK: {
|
|
|
521
521
|
readonly status: import("valibot").LiteralSchema<200, undefined>;
|
|
522
522
|
}, undefined>], undefined>>;
|
|
523
523
|
};
|
|
524
|
-
healthcheck: import("..").EndpointConfig<"/v1/pb/healthcheck", import("valibot").GenericSchema | undefined, import("valibot").GenericSchema | undefined, import("valibot").ObjectSchema<{
|
|
524
|
+
healthcheck: import("..").EndpointConfig<"/v1/pb/healthcheck", import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").GenericSchema<unknown, unknown, import("valibot").BaseIssue<unknown>> | undefined, import("valibot").ObjectSchema<{
|
|
525
525
|
readonly data: import("valibot").ObjectSchema<{
|
|
526
526
|
readonly status: import("valibot").LiteralSchema<"ok", undefined>;
|
|
527
527
|
}, undefined>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@marcoappio/marco-config",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.167",
|
|
4
4
|
"author": "team@marcoapp.io",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"repository": "git@github.com:marcoappio/marco-config.git",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"eslint-plugin-sort-destructure-keys": "1.4.0",
|
|
31
31
|
"eslint-plugin-sort-keys-fix": "1.1.2",
|
|
32
32
|
"eslint-plugin-typescript-sort-keys": "2.3.0",
|
|
33
|
-
"valibot": "1.0.0-beta.
|
|
33
|
+
"valibot": "1.0.0-beta.9"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@auto-it/npm": "11.2.0",
|