@marcoappio/marco-config 2.0.206 → 2.0.207
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 +8 -16
- package/dist/clients/index.d.ts.map +1 -1
- package/dist/clients/user.d.ts +8 -16
- package/dist/clients/user.d.ts.map +1 -1
- package/dist/clients/user.js +1 -2
- package/dist/sdk/endpoints/index.d.ts +8 -16
- package/dist/sdk/endpoints/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/index.d.ts +8 -16
- package/dist/sdk/endpoints/private/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/sync/index.d.ts +8 -16
- package/dist/sdk/endpoints/private/sync/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/sync/pull/index.d.ts +1 -2
- package/dist/sdk/endpoints/private/sync/pull/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/sync/pull/user.d.ts +1 -2
- package/dist/sdk/endpoints/private/sync/pull/user.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/sync/push/index.d.ts +7 -14
- package/dist/sdk/endpoints/private/sync/push/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/sync/push/user.d.ts +7 -14
- package/dist/sdk/endpoints/private/sync/push/user.d.ts.map +1 -1
- package/dist/sdk/index.d.ts +8 -16
- package/dist/sdk/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/clients/index.d.ts
CHANGED
|
@@ -300,8 +300,7 @@ export declare const marcoClients: {
|
|
|
300
300
|
model: import("valibot").ObjectSchema<{
|
|
301
301
|
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
302
302
|
readonly settings: import("valibot").ObjectSchema<{
|
|
303
|
-
readonly
|
|
304
|
-
readonly lastName: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
303
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
305
304
|
}, undefined>;
|
|
306
305
|
}, undefined>;
|
|
307
306
|
mutators: {
|
|
@@ -309,32 +308,25 @@ export declare const marcoClients: {
|
|
|
309
308
|
delta: import("valibot").ObjectSchema<{
|
|
310
309
|
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
311
310
|
readonly settings: Omit<import("valibot").ObjectSchema<{
|
|
312
|
-
readonly
|
|
313
|
-
readonly lastName: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
311
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
314
312
|
}, undefined>, "~types" | "~run" | "~standard" | "entries"> & {
|
|
315
313
|
readonly entries: {
|
|
316
|
-
readonly
|
|
317
|
-
readonly lastName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
314
|
+
readonly name: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
318
315
|
};
|
|
319
316
|
readonly '~standard': import("valibot").StandardSchemaProps<{
|
|
320
|
-
|
|
321
|
-
lastName?: string | null | undefined;
|
|
317
|
+
name?: string | null | undefined;
|
|
322
318
|
}, {
|
|
323
|
-
|
|
324
|
-
lastName?: string | null | undefined;
|
|
319
|
+
name?: string | null | undefined;
|
|
325
320
|
}>;
|
|
326
321
|
readonly '~run': (dataset: import("valibot").UnknownDataset, config: import("valibot").Config<import("valibot").BaseIssue<unknown>>) => import("valibot").OutputDataset<{
|
|
327
|
-
|
|
328
|
-
lastName?: string | null | undefined;
|
|
322
|
+
name?: string | null | undefined;
|
|
329
323
|
}, import("valibot").StringIssue | import("valibot").ObjectIssue | import("valibot").MaxLengthIssue<string, number>>;
|
|
330
324
|
readonly '~types'?: {
|
|
331
325
|
readonly input: {
|
|
332
|
-
|
|
333
|
-
lastName?: string | null | undefined;
|
|
326
|
+
name?: string | null | undefined;
|
|
334
327
|
};
|
|
335
328
|
readonly output: {
|
|
336
|
-
|
|
337
|
-
lastName?: string | null | undefined;
|
|
329
|
+
name?: string | null | undefined;
|
|
338
330
|
};
|
|
339
331
|
readonly issue: import("valibot").StringIssue | import("valibot").ObjectIssue | import("valibot").MaxLengthIssue<string, number>;
|
|
340
332
|
} | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/clients/index.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAA;AAE3C,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/clients/index.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAA;AAE3C,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMc,CAAA"}
|
package/dist/clients/user.d.ts
CHANGED
|
@@ -3,8 +3,7 @@ export declare const user: {
|
|
|
3
3
|
model: v.ObjectSchema<{
|
|
4
4
|
readonly id: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
5
5
|
readonly settings: v.ObjectSchema<{
|
|
6
|
-
readonly
|
|
7
|
-
readonly lastName: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
6
|
+
readonly name: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
8
7
|
}, undefined>;
|
|
9
8
|
}, undefined>;
|
|
10
9
|
mutators: {
|
|
@@ -12,32 +11,25 @@ export declare const user: {
|
|
|
12
11
|
delta: v.ObjectSchema<{
|
|
13
12
|
readonly id: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
14
13
|
readonly settings: Omit<v.ObjectSchema<{
|
|
15
|
-
readonly
|
|
16
|
-
readonly lastName: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
14
|
+
readonly name: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
17
15
|
}, undefined>, "~types" | "~run" | "~standard" | "entries"> & {
|
|
18
16
|
readonly entries: {
|
|
19
|
-
readonly
|
|
20
|
-
readonly lastName: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
17
|
+
readonly name: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
21
18
|
};
|
|
22
19
|
readonly '~standard': v.StandardSchemaProps<{
|
|
23
|
-
|
|
24
|
-
lastName?: string | null | undefined;
|
|
20
|
+
name?: string | null | undefined;
|
|
25
21
|
}, {
|
|
26
|
-
|
|
27
|
-
lastName?: string | null | undefined;
|
|
22
|
+
name?: string | null | undefined;
|
|
28
23
|
}>;
|
|
29
24
|
readonly '~run': (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
30
|
-
|
|
31
|
-
lastName?: string | null | undefined;
|
|
25
|
+
name?: string | null | undefined;
|
|
32
26
|
}, v.StringIssue | v.ObjectIssue | v.MaxLengthIssue<string, number>>;
|
|
33
27
|
readonly '~types'?: {
|
|
34
28
|
readonly input: {
|
|
35
|
-
|
|
36
|
-
lastName?: string | null | undefined;
|
|
29
|
+
name?: string | null | undefined;
|
|
37
30
|
};
|
|
38
31
|
readonly output: {
|
|
39
|
-
|
|
40
|
-
lastName?: string | null | undefined;
|
|
32
|
+
name?: string | null | undefined;
|
|
41
33
|
};
|
|
42
34
|
readonly issue: v.StringIssue | v.ObjectIssue | v.MaxLengthIssue<string, number>;
|
|
43
35
|
} | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.d.ts","sourceRoot":"","sources":["../../src/clients/user.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;
|
|
1
|
+
{"version":3,"file":"user.d.ts","sourceRoot":"","sources":["../../src/clients/user.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAS5B,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiBM,CAAA"}
|
package/dist/clients/user.js
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import * as v from 'valibot';
|
|
2
2
|
import { marcoSchemas } from '../schemas';
|
|
3
3
|
const userSettings = v.object({
|
|
4
|
-
|
|
5
|
-
lastName: marcoSchemas.string.nullable(),
|
|
4
|
+
name: marcoSchemas.string.nullable(),
|
|
6
5
|
});
|
|
7
6
|
export const user = {
|
|
8
7
|
model: v.object({
|
|
@@ -281,8 +281,7 @@ export declare const endpoints: {
|
|
|
281
281
|
readonly value: import("valibot").ObjectSchema<{
|
|
282
282
|
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
283
283
|
readonly settings: import("valibot").ObjectSchema<{
|
|
284
|
-
readonly
|
|
285
|
-
readonly lastName: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
284
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
286
285
|
}, undefined>;
|
|
287
286
|
}, undefined>;
|
|
288
287
|
}, undefined>], undefined>, undefined>;
|
|
@@ -577,32 +576,25 @@ export declare const endpoints: {
|
|
|
577
576
|
readonly args: import("valibot").ObjectSchema<{
|
|
578
577
|
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
579
578
|
readonly settings: Omit<import("valibot").ObjectSchema<{
|
|
580
|
-
readonly
|
|
581
|
-
readonly lastName: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
579
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
582
580
|
}, undefined>, "~types" | "~run" | "~standard" | "entries"> & {
|
|
583
581
|
readonly entries: {
|
|
584
|
-
readonly
|
|
585
|
-
readonly lastName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
582
|
+
readonly name: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
586
583
|
};
|
|
587
584
|
readonly '~standard': import("valibot").StandardSchemaProps<{
|
|
588
|
-
|
|
589
|
-
lastName?: string | null | undefined;
|
|
585
|
+
name?: string | null | undefined;
|
|
590
586
|
}, {
|
|
591
|
-
|
|
592
|
-
lastName?: string | null | undefined;
|
|
587
|
+
name?: string | null | undefined;
|
|
593
588
|
}>;
|
|
594
589
|
readonly '~run': (dataset: import("valibot").UnknownDataset, config: import("valibot").Config<import("valibot").BaseIssue<unknown>>) => import("valibot").OutputDataset<{
|
|
595
|
-
|
|
596
|
-
lastName?: string | null | undefined;
|
|
590
|
+
name?: string | null | undefined;
|
|
597
591
|
}, import("valibot").StringIssue | import("valibot").ObjectIssue | import("valibot").MaxLengthIssue<string, number>>;
|
|
598
592
|
readonly '~types'?: {
|
|
599
593
|
readonly input: {
|
|
600
|
-
|
|
601
|
-
lastName?: string | null | undefined;
|
|
594
|
+
name?: string | null | undefined;
|
|
602
595
|
};
|
|
603
596
|
readonly output: {
|
|
604
|
-
|
|
605
|
-
lastName?: string | null | undefined;
|
|
597
|
+
name?: string | null | undefined;
|
|
606
598
|
};
|
|
607
599
|
readonly issue: import("valibot").StringIssue | import("valibot").ObjectIssue | import("valibot").MaxLengthIssue<string, number>;
|
|
608
600
|
} | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/sdk/endpoints/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAEvC,OAAO,EAAE,cAAc,EAAe,MAAM,qBAAqB,CAAA;AAcjE,eAAO,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/sdk/endpoints/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAEvC,OAAO,EAAE,cAAc,EAAe,MAAM,qBAAqB,CAAA;AAcjE,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGM,CAAA"}
|
|
@@ -278,8 +278,7 @@ export declare const privateGroup: {
|
|
|
278
278
|
readonly value: import("valibot").ObjectSchema<{
|
|
279
279
|
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
280
280
|
readonly settings: import("valibot").ObjectSchema<{
|
|
281
|
-
readonly
|
|
282
|
-
readonly lastName: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
281
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
283
282
|
}, undefined>;
|
|
284
283
|
}, undefined>;
|
|
285
284
|
}, undefined>], undefined>, undefined>;
|
|
@@ -574,32 +573,25 @@ export declare const privateGroup: {
|
|
|
574
573
|
readonly args: import("valibot").ObjectSchema<{
|
|
575
574
|
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
576
575
|
readonly settings: Omit<import("valibot").ObjectSchema<{
|
|
577
|
-
readonly
|
|
578
|
-
readonly lastName: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
576
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
579
577
|
}, undefined>, "~types" | "~run" | "~standard" | "entries"> & {
|
|
580
578
|
readonly entries: {
|
|
581
|
-
readonly
|
|
582
|
-
readonly lastName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
579
|
+
readonly name: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
583
580
|
};
|
|
584
581
|
readonly '~standard': import("valibot").StandardSchemaProps<{
|
|
585
|
-
|
|
586
|
-
lastName?: string | null | undefined;
|
|
582
|
+
name?: string | null | undefined;
|
|
587
583
|
}, {
|
|
588
|
-
|
|
589
|
-
lastName?: string | null | undefined;
|
|
584
|
+
name?: string | null | undefined;
|
|
590
585
|
}>;
|
|
591
586
|
readonly '~run': (dataset: import("valibot").UnknownDataset, config: import("valibot").Config<import("valibot").BaseIssue<unknown>>) => import("valibot").OutputDataset<{
|
|
592
|
-
|
|
593
|
-
lastName?: string | null | undefined;
|
|
587
|
+
name?: string | null | undefined;
|
|
594
588
|
}, import("valibot").StringIssue | import("valibot").ObjectIssue | import("valibot").MaxLengthIssue<string, number>>;
|
|
595
589
|
readonly '~types'?: {
|
|
596
590
|
readonly input: {
|
|
597
|
-
|
|
598
|
-
lastName?: string | null | undefined;
|
|
591
|
+
name?: string | null | undefined;
|
|
599
592
|
};
|
|
600
593
|
readonly output: {
|
|
601
|
-
|
|
602
|
-
lastName?: string | null | undefined;
|
|
594
|
+
name?: string | null | undefined;
|
|
603
595
|
};
|
|
604
596
|
readonly issue: import("valibot").StringIssue | import("valibot").ObjectIssue | import("valibot").MaxLengthIssue<string, number>;
|
|
605
597
|
} | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/sdk/endpoints/private/index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/sdk/endpoints/private/index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIxB,CAAA"}
|
|
@@ -259,8 +259,7 @@ export declare const sync: {
|
|
|
259
259
|
readonly value: import("valibot").ObjectSchema<{
|
|
260
260
|
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
261
261
|
readonly settings: import("valibot").ObjectSchema<{
|
|
262
|
-
readonly
|
|
263
|
-
readonly lastName: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
262
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
264
263
|
}, undefined>;
|
|
265
264
|
}, undefined>;
|
|
266
265
|
}, undefined>], undefined>, undefined>;
|
|
@@ -555,32 +554,25 @@ export declare const sync: {
|
|
|
555
554
|
readonly args: import("valibot").ObjectSchema<{
|
|
556
555
|
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
557
556
|
readonly settings: Omit<import("valibot").ObjectSchema<{
|
|
558
|
-
readonly
|
|
559
|
-
readonly lastName: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
557
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
560
558
|
}, undefined>, "~types" | "~run" | "~standard" | "entries"> & {
|
|
561
559
|
readonly entries: {
|
|
562
|
-
readonly
|
|
563
|
-
readonly lastName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
560
|
+
readonly name: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
564
561
|
};
|
|
565
562
|
readonly '~standard': import("valibot").StandardSchemaProps<{
|
|
566
|
-
|
|
567
|
-
lastName?: string | null | undefined;
|
|
563
|
+
name?: string | null | undefined;
|
|
568
564
|
}, {
|
|
569
|
-
|
|
570
|
-
lastName?: string | null | undefined;
|
|
565
|
+
name?: string | null | undefined;
|
|
571
566
|
}>;
|
|
572
567
|
readonly '~run': (dataset: import("valibot").UnknownDataset, config: import("valibot").Config<import("valibot").BaseIssue<unknown>>) => import("valibot").OutputDataset<{
|
|
573
|
-
|
|
574
|
-
lastName?: string | null | undefined;
|
|
568
|
+
name?: string | null | undefined;
|
|
575
569
|
}, import("valibot").StringIssue | import("valibot").ObjectIssue | import("valibot").MaxLengthIssue<string, number>>;
|
|
576
570
|
readonly '~types'?: {
|
|
577
571
|
readonly input: {
|
|
578
|
-
|
|
579
|
-
lastName?: string | null | undefined;
|
|
572
|
+
name?: string | null | undefined;
|
|
580
573
|
};
|
|
581
574
|
readonly output: {
|
|
582
|
-
|
|
583
|
-
lastName?: string | null | undefined;
|
|
575
|
+
name?: string | null | undefined;
|
|
584
576
|
};
|
|
585
577
|
readonly issue: import("valibot").StringIssue | import("valibot").ObjectIssue | import("valibot").MaxLengthIssue<string, number>;
|
|
586
578
|
} | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/sdk/endpoints/private/sync/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,IAAI
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/sdk/endpoints/private/sync/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAiB,CAAA"}
|
|
@@ -258,8 +258,7 @@ export declare const pull: {
|
|
|
258
258
|
readonly value: import("valibot").ObjectSchema<{
|
|
259
259
|
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
260
260
|
readonly settings: import("valibot").ObjectSchema<{
|
|
261
|
-
readonly
|
|
262
|
-
readonly lastName: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
261
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
263
262
|
}, undefined>;
|
|
264
263
|
}, undefined>;
|
|
265
264
|
}, undefined>], undefined>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/pull/index.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,IAAI
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/pull/index.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA4C,CAAA"}
|
|
@@ -32,8 +32,7 @@ export declare const syncPullUser: import("../../../../..").EndpointConfig<"/v1/
|
|
|
32
32
|
readonly value: v.ObjectSchema<{
|
|
33
33
|
readonly id: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
34
34
|
readonly settings: v.ObjectSchema<{
|
|
35
|
-
readonly
|
|
36
|
-
readonly lastName: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
35
|
+
readonly name: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
37
36
|
}, undefined>;
|
|
38
37
|
}, undefined>;
|
|
39
38
|
}, undefined>], undefined>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/pull/user.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAM5B,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"user.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/pull/user.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAM5B,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAwBvB,CAAA"}
|
|
@@ -285,32 +285,25 @@ export declare const push: {
|
|
|
285
285
|
readonly args: import("valibot").ObjectSchema<{
|
|
286
286
|
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
287
287
|
readonly settings: Omit<import("valibot").ObjectSchema<{
|
|
288
|
-
readonly
|
|
289
|
-
readonly lastName: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
288
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
290
289
|
}, undefined>, "~types" | "~run" | "~standard" | "entries"> & {
|
|
291
290
|
readonly entries: {
|
|
292
|
-
readonly
|
|
293
|
-
readonly lastName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
291
|
+
readonly name: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
294
292
|
};
|
|
295
293
|
readonly '~standard': import("valibot").StandardSchemaProps<{
|
|
296
|
-
|
|
297
|
-
lastName?: string | null | undefined;
|
|
294
|
+
name?: string | null | undefined;
|
|
298
295
|
}, {
|
|
299
|
-
|
|
300
|
-
lastName?: string | null | undefined;
|
|
296
|
+
name?: string | null | undefined;
|
|
301
297
|
}>;
|
|
302
298
|
readonly '~run': (dataset: import("valibot").UnknownDataset, config: import("valibot").Config<import("valibot").BaseIssue<unknown>>) => import("valibot").OutputDataset<{
|
|
303
|
-
|
|
304
|
-
lastName?: string | null | undefined;
|
|
299
|
+
name?: string | null | undefined;
|
|
305
300
|
}, import("valibot").StringIssue | import("valibot").ObjectIssue | import("valibot").MaxLengthIssue<string, number>>;
|
|
306
301
|
readonly '~types'?: {
|
|
307
302
|
readonly input: {
|
|
308
|
-
|
|
309
|
-
lastName?: string | null | undefined;
|
|
303
|
+
name?: string | null | undefined;
|
|
310
304
|
};
|
|
311
305
|
readonly output: {
|
|
312
|
-
|
|
313
|
-
lastName?: string | null | undefined;
|
|
306
|
+
name?: string | null | undefined;
|
|
314
307
|
};
|
|
315
308
|
readonly issue: import("valibot").StringIssue | import("valibot").ObjectIssue | import("valibot").MaxLengthIssue<string, number>;
|
|
316
309
|
} | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/push/index.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,IAAI
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/push/index.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAmC,CAAA"}
|
|
@@ -5,32 +5,25 @@ export declare const syncPushUser: import("../../../../..").EndpointConfig<"/v1/
|
|
|
5
5
|
readonly args: v.ObjectSchema<{
|
|
6
6
|
readonly id: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
7
7
|
readonly settings: Omit<v.ObjectSchema<{
|
|
8
|
-
readonly
|
|
9
|
-
readonly lastName: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
8
|
+
readonly name: v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
10
9
|
}, undefined>, "~types" | "~run" | "~standard" | "entries"> & {
|
|
11
10
|
readonly entries: {
|
|
12
|
-
readonly
|
|
13
|
-
readonly lastName: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
11
|
+
readonly name: v.OptionalSchema<v.NullableSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
14
12
|
};
|
|
15
13
|
readonly '~standard': v.StandardSchemaProps<{
|
|
16
|
-
|
|
17
|
-
lastName?: string | null | undefined;
|
|
14
|
+
name?: string | null | undefined;
|
|
18
15
|
}, {
|
|
19
|
-
|
|
20
|
-
lastName?: string | null | undefined;
|
|
16
|
+
name?: string | null | undefined;
|
|
21
17
|
}>;
|
|
22
18
|
readonly '~run': (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
23
|
-
|
|
24
|
-
lastName?: string | null | undefined;
|
|
19
|
+
name?: string | null | undefined;
|
|
25
20
|
}, v.StringIssue | v.ObjectIssue | v.MaxLengthIssue<string, number>>;
|
|
26
21
|
readonly '~types'?: {
|
|
27
22
|
readonly input: {
|
|
28
|
-
|
|
29
|
-
lastName?: string | null | undefined;
|
|
23
|
+
name?: string | null | undefined;
|
|
30
24
|
};
|
|
31
25
|
readonly output: {
|
|
32
|
-
|
|
33
|
-
lastName?: string | null | undefined;
|
|
26
|
+
name?: string | null | undefined;
|
|
34
27
|
};
|
|
35
28
|
readonly issue: v.StringIssue | v.ObjectIssue | v.MaxLengthIssue<string, number>;
|
|
36
29
|
} | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/push/user.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAM5B,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"user.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/push/user.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAM5B,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAuBvB,CAAA"}
|
package/dist/sdk/index.d.ts
CHANGED
|
@@ -280,8 +280,7 @@ export declare const marcoSDK: {
|
|
|
280
280
|
readonly value: import("valibot").ObjectSchema<{
|
|
281
281
|
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
282
282
|
readonly settings: import("valibot").ObjectSchema<{
|
|
283
|
-
readonly
|
|
284
|
-
readonly lastName: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
283
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
285
284
|
}, undefined>;
|
|
286
285
|
}, undefined>;
|
|
287
286
|
}, undefined>], undefined>, undefined>;
|
|
@@ -576,32 +575,25 @@ export declare const marcoSDK: {
|
|
|
576
575
|
readonly args: import("valibot").ObjectSchema<{
|
|
577
576
|
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
578
577
|
readonly settings: Omit<import("valibot").ObjectSchema<{
|
|
579
|
-
readonly
|
|
580
|
-
readonly lastName: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
578
|
+
readonly name: import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
581
579
|
}, undefined>, "~types" | "~run" | "~standard" | "entries"> & {
|
|
582
580
|
readonly entries: {
|
|
583
|
-
readonly
|
|
584
|
-
readonly lastName: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
581
|
+
readonly name: import("valibot").OptionalSchema<import("valibot").NullableSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>, undefined>;
|
|
585
582
|
};
|
|
586
583
|
readonly '~standard': import("valibot").StandardSchemaProps<{
|
|
587
|
-
|
|
588
|
-
lastName?: string | null | undefined;
|
|
584
|
+
name?: string | null | undefined;
|
|
589
585
|
}, {
|
|
590
|
-
|
|
591
|
-
lastName?: string | null | undefined;
|
|
586
|
+
name?: string | null | undefined;
|
|
592
587
|
}>;
|
|
593
588
|
readonly '~run': (dataset: import("valibot").UnknownDataset, config: import("valibot").Config<import("valibot").BaseIssue<unknown>>) => import("valibot").OutputDataset<{
|
|
594
|
-
|
|
595
|
-
lastName?: string | null | undefined;
|
|
589
|
+
name?: string | null | undefined;
|
|
596
590
|
}, import("valibot").StringIssue | import("valibot").ObjectIssue | import("valibot").MaxLengthIssue<string, number>>;
|
|
597
591
|
readonly '~types'?: {
|
|
598
592
|
readonly input: {
|
|
599
|
-
|
|
600
|
-
lastName?: string | null | undefined;
|
|
593
|
+
name?: string | null | undefined;
|
|
601
594
|
};
|
|
602
595
|
readonly output: {
|
|
603
|
-
|
|
604
|
-
lastName?: string | null | undefined;
|
|
596
|
+
name?: string | null | undefined;
|
|
605
597
|
};
|
|
606
598
|
readonly issue: import("valibot").StringIssue | import("valibot").ObjectIssue | import("valibot").MaxLengthIssue<string, number>;
|
|
607
599
|
} | undefined;
|
package/dist/sdk/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/sdk/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,QAAQ
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/sdk/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGpB,CAAA"}
|
package/package.json
CHANGED