@marcoappio/marco-config 2.0.308 → 2.0.309
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 +0 -9
- package/dist/clients/account.d.ts.map +1 -1
- package/dist/clients/account.js +0 -8
- package/dist/clients/index.d.ts +0 -9
- package/dist/clients/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/index.d.ts +0 -11
- package/dist/sdk/endpoints/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/index.d.ts +0 -11
- package/dist/sdk/endpoints/private/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/sync/index.d.ts +0 -11
- package/dist/sdk/endpoints/private/sync/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/sync/pull/account.d.ts +0 -1
- package/dist/sdk/endpoints/private/sync/pull/account.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/sync/pull/index.d.ts +0 -1
- package/dist/sdk/endpoints/private/sync/pull/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/sync/push/account.d.ts +0 -10
- package/dist/sdk/endpoints/private/sync/push/account.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/sync/push/account.js +0 -6
- package/dist/sdk/endpoints/private/sync/push/index.d.ts +0 -10
- package/dist/sdk/endpoints/private/sync/push/index.d.ts.map +1 -1
- package/dist/sdk/index.d.ts +0 -11
- package/dist/sdk/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -3,7 +3,6 @@ export declare const account: {
|
|
|
3
3
|
model: v.ObjectSchema<{
|
|
4
4
|
readonly aliases: v.ArraySchema<v.ObjectSchema<{
|
|
5
5
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
6
|
-
readonly hidden: v.BooleanSchema<undefined>;
|
|
7
6
|
readonly id: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
8
7
|
readonly primary: v.BooleanSchema<undefined>;
|
|
9
8
|
}, undefined>, undefined>;
|
|
@@ -39,7 +38,6 @@ export declare const account: {
|
|
|
39
38
|
readonly accountId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
40
39
|
readonly alias: v.ObjectSchema<{
|
|
41
40
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
42
|
-
readonly hidden: v.BooleanSchema<undefined>;
|
|
43
41
|
readonly id: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
44
42
|
readonly primary: v.BooleanSchema<undefined>;
|
|
45
43
|
}, undefined>;
|
|
@@ -56,13 +54,6 @@ export declare const account: {
|
|
|
56
54
|
readonly aliasId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
57
55
|
}, undefined>;
|
|
58
56
|
};
|
|
59
|
-
setAliasHidden: {
|
|
60
|
-
delta: v.ObjectSchema<{
|
|
61
|
-
readonly accountId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
62
|
-
readonly aliasId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
63
|
-
readonly hidden: v.BooleanSchema<undefined>;
|
|
64
|
-
}, undefined>;
|
|
65
|
-
};
|
|
66
57
|
setAliasPrimary: {
|
|
67
58
|
delta: v.ObjectSchema<{
|
|
68
59
|
readonly accountId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../src/clients/account.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;
|
|
1
|
+
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../src/clients/account.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAgB5B,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2EG,CAAA"}
|
package/dist/clients/account.js
CHANGED
|
@@ -6,7 +6,6 @@ const accountSettingsSchema = v.object({
|
|
|
6
6
|
});
|
|
7
7
|
const aliasSchema = v.object({
|
|
8
8
|
emailAddress: marcoSchemas.string.email(),
|
|
9
|
-
hidden: v.boolean(),
|
|
10
9
|
id: marcoSchemas.string.shortUUID(),
|
|
11
10
|
primary: v.boolean(),
|
|
12
11
|
});
|
|
@@ -54,13 +53,6 @@ export const account = {
|
|
|
54
53
|
aliasId: marcoSchemas.string.shortUUID(),
|
|
55
54
|
}),
|
|
56
55
|
},
|
|
57
|
-
setAliasHidden: {
|
|
58
|
-
delta: v.object({
|
|
59
|
-
accountId: marcoSchemas.string.shortUUID(),
|
|
60
|
-
aliasId: marcoSchemas.string.shortUUID(),
|
|
61
|
-
hidden: v.boolean(),
|
|
62
|
-
}),
|
|
63
|
-
},
|
|
64
56
|
setAliasPrimary: {
|
|
65
57
|
delta: v.object({
|
|
66
58
|
accountId: marcoSchemas.string.shortUUID(),
|
package/dist/clients/index.d.ts
CHANGED
|
@@ -4,7 +4,6 @@ export declare const marcoClients: {
|
|
|
4
4
|
model: import("valibot").ObjectSchema<{
|
|
5
5
|
readonly aliases: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
6
6
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
7
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
8
7
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
9
8
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
10
9
|
}, undefined>, undefined>;
|
|
@@ -40,7 +39,6 @@ export declare const marcoClients: {
|
|
|
40
39
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
41
40
|
readonly alias: import("valibot").ObjectSchema<{
|
|
42
41
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
43
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
44
42
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
45
43
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
46
44
|
}, undefined>;
|
|
@@ -57,13 +55,6 @@ export declare const marcoClients: {
|
|
|
57
55
|
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
58
56
|
}, undefined>;
|
|
59
57
|
};
|
|
60
|
-
setAliasHidden: {
|
|
61
|
-
delta: import("valibot").ObjectSchema<{
|
|
62
|
-
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
63
|
-
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
64
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
65
|
-
}, undefined>;
|
|
66
|
-
};
|
|
67
58
|
setAliasPrimary: {
|
|
68
59
|
delta: import("valibot").ObjectSchema<{
|
|
69
60
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | 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"}
|
|
@@ -102,7 +102,6 @@ export declare const endpoints: {
|
|
|
102
102
|
readonly value: import("valibot").ObjectSchema<{
|
|
103
103
|
readonly aliases: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
104
104
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
105
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
106
105
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
107
106
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
108
107
|
}, undefined>, undefined>;
|
|
@@ -376,7 +375,6 @@ export declare const endpoints: {
|
|
|
376
375
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
377
376
|
readonly alias: import("valibot").ObjectSchema<{
|
|
378
377
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
379
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
380
378
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
381
379
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
382
380
|
}, undefined>;
|
|
@@ -399,15 +397,6 @@ export declare const endpoints: {
|
|
|
399
397
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
400
398
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
401
399
|
readonly name: import("valibot").LiteralSchema<"deleteAlias", undefined>;
|
|
402
|
-
}, undefined> | import("valibot").ObjectSchema<{
|
|
403
|
-
readonly args: import("valibot").ObjectSchema<{
|
|
404
|
-
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
405
|
-
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
406
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
407
|
-
}, undefined>;
|
|
408
|
-
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
409
|
-
readonly id: import("valibot").NumberSchema<undefined>;
|
|
410
|
-
readonly name: import("valibot").LiteralSchema<"setAliasHidden", undefined>;
|
|
411
400
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
412
401
|
readonly args: import("valibot").ObjectSchema<{
|
|
413
402
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | 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"}
|
|
@@ -99,7 +99,6 @@ export declare const privateGroup: {
|
|
|
99
99
|
readonly value: import("valibot").ObjectSchema<{
|
|
100
100
|
readonly aliases: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
101
101
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
102
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
103
102
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
104
103
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
105
104
|
}, undefined>, undefined>;
|
|
@@ -373,7 +372,6 @@ export declare const privateGroup: {
|
|
|
373
372
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
374
373
|
readonly alias: import("valibot").ObjectSchema<{
|
|
375
374
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
376
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
377
375
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
378
376
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
379
377
|
}, undefined>;
|
|
@@ -396,15 +394,6 @@ export declare const privateGroup: {
|
|
|
396
394
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
397
395
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
398
396
|
readonly name: import("valibot").LiteralSchema<"deleteAlias", undefined>;
|
|
399
|
-
}, undefined> | import("valibot").ObjectSchema<{
|
|
400
|
-
readonly args: import("valibot").ObjectSchema<{
|
|
401
|
-
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
402
|
-
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
403
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
404
|
-
}, undefined>;
|
|
405
|
-
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
406
|
-
readonly id: import("valibot").NumberSchema<undefined>;
|
|
407
|
-
readonly name: import("valibot").LiteralSchema<"setAliasHidden", undefined>;
|
|
408
397
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
409
398
|
readonly args: import("valibot").ObjectSchema<{
|
|
410
399
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/sdk/endpoints/private/index.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/sdk/endpoints/private/index.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKxB,CAAA"}
|
|
@@ -33,7 +33,6 @@ export declare const sync: {
|
|
|
33
33
|
readonly value: import("valibot").ObjectSchema<{
|
|
34
34
|
readonly aliases: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
35
35
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
36
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
37
36
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
38
37
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
39
38
|
}, undefined>, undefined>;
|
|
@@ -307,7 +306,6 @@ export declare const sync: {
|
|
|
307
306
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
308
307
|
readonly alias: import("valibot").ObjectSchema<{
|
|
309
308
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
310
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
311
309
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
312
310
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
313
311
|
}, undefined>;
|
|
@@ -330,15 +328,6 @@ export declare const sync: {
|
|
|
330
328
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
331
329
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
332
330
|
readonly name: import("valibot").LiteralSchema<"deleteAlias", undefined>;
|
|
333
|
-
}, undefined> | import("valibot").ObjectSchema<{
|
|
334
|
-
readonly args: import("valibot").ObjectSchema<{
|
|
335
|
-
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
336
|
-
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
337
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
338
|
-
}, undefined>;
|
|
339
|
-
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
340
|
-
readonly id: import("valibot").NumberSchema<undefined>;
|
|
341
|
-
readonly name: import("valibot").LiteralSchema<"setAliasHidden", undefined>;
|
|
342
331
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
343
332
|
readonly args: import("valibot").ObjectSchema<{
|
|
344
333
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | 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"}
|
|
@@ -32,7 +32,6 @@ export declare const syncPullAccount: import("../../../../..").EndpointConfig<"/
|
|
|
32
32
|
readonly value: v.ObjectSchema<{
|
|
33
33
|
readonly aliases: v.ArraySchema<v.ObjectSchema<{
|
|
34
34
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
35
|
-
readonly hidden: v.BooleanSchema<undefined>;
|
|
36
35
|
readonly id: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
37
36
|
readonly primary: v.BooleanSchema<undefined>;
|
|
38
37
|
}, undefined>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/pull/account.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAM5B,eAAO,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/pull/account.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAM5B,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAwB1B,CAAA"}
|
|
@@ -32,7 +32,6 @@ export declare const pull: {
|
|
|
32
32
|
readonly value: import("valibot").ObjectSchema<{
|
|
33
33
|
readonly aliases: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
34
34
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
35
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
36
35
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
37
36
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
38
37
|
}, 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"}
|
|
@@ -16,7 +16,6 @@ export declare const syncPushAccount: import("../../../../..").EndpointConfig<"/
|
|
|
16
16
|
readonly accountId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
17
17
|
readonly alias: v.ObjectSchema<{
|
|
18
18
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
19
|
-
readonly hidden: v.BooleanSchema<undefined>;
|
|
20
19
|
readonly id: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
21
20
|
readonly primary: v.BooleanSchema<undefined>;
|
|
22
21
|
}, undefined>;
|
|
@@ -39,15 +38,6 @@ export declare const syncPushAccount: import("../../../../..").EndpointConfig<"/
|
|
|
39
38
|
readonly clientID: v.StringSchema<undefined>;
|
|
40
39
|
readonly id: v.NumberSchema<undefined>;
|
|
41
40
|
readonly name: v.LiteralSchema<"deleteAlias", undefined>;
|
|
42
|
-
}, undefined> | v.ObjectSchema<{
|
|
43
|
-
readonly args: v.ObjectSchema<{
|
|
44
|
-
readonly accountId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
45
|
-
readonly aliasId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
46
|
-
readonly hidden: v.BooleanSchema<undefined>;
|
|
47
|
-
}, undefined>;
|
|
48
|
-
readonly clientID: v.StringSchema<undefined>;
|
|
49
|
-
readonly id: v.NumberSchema<undefined>;
|
|
50
|
-
readonly name: v.LiteralSchema<"setAliasHidden", undefined>;
|
|
51
41
|
}, undefined> | v.ObjectSchema<{
|
|
52
42
|
readonly args: v.ObjectSchema<{
|
|
53
43
|
readonly accountId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/push/account.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAM5B,eAAO,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/push/account.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAM5B,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAiE1B,CAAA"}
|
|
@@ -30,12 +30,6 @@ export const syncPushAccount = createEndpoint({
|
|
|
30
30
|
id: v.number(),
|
|
31
31
|
name: v.literal('deleteAlias'),
|
|
32
32
|
}),
|
|
33
|
-
setAliasHidden: v.object({
|
|
34
|
-
args: account.mutators.setAliasHidden.delta,
|
|
35
|
-
clientID: v.string(),
|
|
36
|
-
id: v.number(),
|
|
37
|
-
name: v.literal('setAliasHidden'),
|
|
38
|
-
}),
|
|
39
33
|
setAliasPrimary: v.object({
|
|
40
34
|
args: account.mutators.setAliasPrimary.delta,
|
|
41
35
|
clientID: v.string(),
|
|
@@ -16,7 +16,6 @@ export declare const push: {
|
|
|
16
16
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
17
17
|
readonly alias: import("valibot").ObjectSchema<{
|
|
18
18
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
19
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
20
19
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
21
20
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
22
21
|
}, undefined>;
|
|
@@ -39,15 +38,6 @@ export declare const push: {
|
|
|
39
38
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
40
39
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
41
40
|
readonly name: import("valibot").LiteralSchema<"deleteAlias", undefined>;
|
|
42
|
-
}, undefined> | import("valibot").ObjectSchema<{
|
|
43
|
-
readonly args: import("valibot").ObjectSchema<{
|
|
44
|
-
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
45
|
-
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
46
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
47
|
-
}, undefined>;
|
|
48
|
-
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
49
|
-
readonly id: import("valibot").NumberSchema<undefined>;
|
|
50
|
-
readonly name: import("valibot").LiteralSchema<"setAliasHidden", undefined>;
|
|
51
41
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
52
42
|
readonly args: import("valibot").ObjectSchema<{
|
|
53
43
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | 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"}
|
package/dist/sdk/index.d.ts
CHANGED
|
@@ -101,7 +101,6 @@ export declare const marcoSDK: {
|
|
|
101
101
|
readonly value: import("valibot").ObjectSchema<{
|
|
102
102
|
readonly aliases: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
103
103
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
104
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
105
104
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
106
105
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
107
106
|
}, undefined>, undefined>;
|
|
@@ -375,7 +374,6 @@ export declare const marcoSDK: {
|
|
|
375
374
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
376
375
|
readonly alias: import("valibot").ObjectSchema<{
|
|
377
376
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
378
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
379
377
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
380
378
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
381
379
|
}, undefined>;
|
|
@@ -398,15 +396,6 @@ export declare const marcoSDK: {
|
|
|
398
396
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
399
397
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
400
398
|
readonly name: import("valibot").LiteralSchema<"deleteAlias", undefined>;
|
|
401
|
-
}, undefined> | import("valibot").ObjectSchema<{
|
|
402
|
-
readonly args: import("valibot").ObjectSchema<{
|
|
403
|
-
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
404
|
-
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
405
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
406
|
-
}, undefined>;
|
|
407
|
-
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
408
|
-
readonly id: import("valibot").NumberSchema<undefined>;
|
|
409
|
-
readonly name: import("valibot").LiteralSchema<"setAliasHidden", undefined>;
|
|
410
399
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
411
400
|
readonly args: import("valibot").ObjectSchema<{
|
|
412
401
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | 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