@marcoappio/marco-config 2.0.307 → 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 +1 -9
- package/dist/clients/account.d.ts.map +1 -1
- package/dist/clients/account.js +1 -8
- package/dist/clients/index.d.ts +1 -9
- package/dist/clients/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/index.d.ts +1 -11
- package/dist/sdk/endpoints/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/index.d.ts +1 -11
- package/dist/sdk/endpoints/private/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/sync/index.d.ts +1 -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 +1 -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 +1 -10
- package/dist/sdk/endpoints/private/sync/push/index.d.ts.map +1 -1
- package/dist/sdk/index.d.ts +1 -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>;
|
|
@@ -28,6 +27,7 @@ export declare const account: {
|
|
|
28
27
|
mutators: {
|
|
29
28
|
createAccount: {
|
|
30
29
|
delta: v.ObjectSchema<{
|
|
30
|
+
readonly aliasId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
31
31
|
readonly color: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
32
32
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
33
33
|
readonly id: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
@@ -38,7 +38,6 @@ export declare const account: {
|
|
|
38
38
|
readonly accountId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
39
39
|
readonly alias: v.ObjectSchema<{
|
|
40
40
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
41
|
-
readonly hidden: v.BooleanSchema<undefined>;
|
|
42
41
|
readonly id: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
43
42
|
readonly primary: v.BooleanSchema<undefined>;
|
|
44
43
|
}, undefined>;
|
|
@@ -55,13 +54,6 @@ export declare const account: {
|
|
|
55
54
|
readonly aliasId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
56
55
|
}, undefined>;
|
|
57
56
|
};
|
|
58
|
-
setAliasHidden: {
|
|
59
|
-
delta: v.ObjectSchema<{
|
|
60
|
-
readonly accountId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
61
|
-
readonly aliasId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
62
|
-
readonly hidden: v.BooleanSchema<undefined>;
|
|
63
|
-
}, undefined>;
|
|
64
|
-
};
|
|
65
57
|
setAliasPrimary: {
|
|
66
58
|
delta: v.ObjectSchema<{
|
|
67
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
|
});
|
|
@@ -31,6 +30,7 @@ export const account = {
|
|
|
31
30
|
mutators: {
|
|
32
31
|
createAccount: {
|
|
33
32
|
delta: v.object({
|
|
33
|
+
aliasId: marcoSchemas.string.shortUUID(),
|
|
34
34
|
color: marcoSchemas.string.required(),
|
|
35
35
|
emailAddress: marcoSchemas.string.email(),
|
|
36
36
|
id: marcoSchemas.string.shortUUID(),
|
|
@@ -53,13 +53,6 @@ export const account = {
|
|
|
53
53
|
aliasId: marcoSchemas.string.shortUUID(),
|
|
54
54
|
}),
|
|
55
55
|
},
|
|
56
|
-
setAliasHidden: {
|
|
57
|
-
delta: v.object({
|
|
58
|
-
accountId: marcoSchemas.string.shortUUID(),
|
|
59
|
-
aliasId: marcoSchemas.string.shortUUID(),
|
|
60
|
-
hidden: v.boolean(),
|
|
61
|
-
}),
|
|
62
|
-
},
|
|
63
56
|
setAliasPrimary: {
|
|
64
57
|
delta: v.object({
|
|
65
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>;
|
|
@@ -29,6 +28,7 @@ export declare const marcoClients: {
|
|
|
29
28
|
mutators: {
|
|
30
29
|
createAccount: {
|
|
31
30
|
delta: import("valibot").ObjectSchema<{
|
|
31
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
32
32
|
readonly color: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
33
33
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
34
34
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
@@ -39,7 +39,6 @@ export declare const marcoClients: {
|
|
|
39
39
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
40
40
|
readonly alias: import("valibot").ObjectSchema<{
|
|
41
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>;
|
|
42
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
43
42
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
44
43
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
45
44
|
}, undefined>;
|
|
@@ -56,13 +55,6 @@ export declare const marcoClients: {
|
|
|
56
55
|
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
57
56
|
}, undefined>;
|
|
58
57
|
};
|
|
59
|
-
setAliasHidden: {
|
|
60
|
-
delta: import("valibot").ObjectSchema<{
|
|
61
|
-
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
62
|
-
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
63
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
64
|
-
}, undefined>;
|
|
65
|
-
};
|
|
66
58
|
setAliasPrimary: {
|
|
67
59
|
delta: import("valibot").ObjectSchema<{
|
|
68
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>;
|
|
@@ -363,6 +362,7 @@ export declare const endpoints: {
|
|
|
363
362
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
364
363
|
readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<(import("valibot").ObjectSchema<{
|
|
365
364
|
readonly args: import("valibot").ObjectSchema<{
|
|
365
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
366
366
|
readonly color: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
367
367
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
368
368
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
@@ -375,7 +375,6 @@ export declare const endpoints: {
|
|
|
375
375
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
376
376
|
readonly alias: import("valibot").ObjectSchema<{
|
|
377
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>;
|
|
378
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
379
378
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
380
379
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
381
380
|
}, undefined>;
|
|
@@ -398,15 +397,6 @@ export declare const endpoints: {
|
|
|
398
397
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
399
398
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
400
399
|
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
400
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
411
401
|
readonly args: import("valibot").ObjectSchema<{
|
|
412
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>;
|
|
@@ -360,6 +359,7 @@ export declare const privateGroup: {
|
|
|
360
359
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
361
360
|
readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<(import("valibot").ObjectSchema<{
|
|
362
361
|
readonly args: import("valibot").ObjectSchema<{
|
|
362
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
363
363
|
readonly color: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
364
364
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
365
365
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
@@ -372,7 +372,6 @@ export declare const privateGroup: {
|
|
|
372
372
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
373
373
|
readonly alias: import("valibot").ObjectSchema<{
|
|
374
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>;
|
|
375
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
376
375
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
377
376
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
378
377
|
}, undefined>;
|
|
@@ -395,15 +394,6 @@ export declare const privateGroup: {
|
|
|
395
394
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
396
395
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
397
396
|
readonly name: import("valibot").LiteralSchema<"deleteAlias", undefined>;
|
|
398
|
-
}, undefined> | import("valibot").ObjectSchema<{
|
|
399
|
-
readonly args: import("valibot").ObjectSchema<{
|
|
400
|
-
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
401
|
-
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
402
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
403
|
-
}, undefined>;
|
|
404
|
-
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
405
|
-
readonly id: import("valibot").NumberSchema<undefined>;
|
|
406
|
-
readonly name: import("valibot").LiteralSchema<"setAliasHidden", undefined>;
|
|
407
397
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
408
398
|
readonly args: import("valibot").ObjectSchema<{
|
|
409
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>;
|
|
@@ -294,6 +293,7 @@ export declare const sync: {
|
|
|
294
293
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
295
294
|
readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<(import("valibot").ObjectSchema<{
|
|
296
295
|
readonly args: import("valibot").ObjectSchema<{
|
|
296
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
297
297
|
readonly color: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
298
298
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
299
299
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
@@ -306,7 +306,6 @@ export declare const sync: {
|
|
|
306
306
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
307
307
|
readonly alias: import("valibot").ObjectSchema<{
|
|
308
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>;
|
|
309
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
310
309
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
311
310
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
312
311
|
}, undefined>;
|
|
@@ -329,15 +328,6 @@ export declare const sync: {
|
|
|
329
328
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
330
329
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
331
330
|
readonly name: import("valibot").LiteralSchema<"deleteAlias", undefined>;
|
|
332
|
-
}, undefined> | import("valibot").ObjectSchema<{
|
|
333
|
-
readonly args: import("valibot").ObjectSchema<{
|
|
334
|
-
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
335
|
-
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
336
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
337
|
-
}, undefined>;
|
|
338
|
-
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
339
|
-
readonly id: import("valibot").NumberSchema<undefined>;
|
|
340
|
-
readonly name: import("valibot").LiteralSchema<"setAliasHidden", undefined>;
|
|
341
331
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
342
332
|
readonly args: import("valibot").ObjectSchema<{
|
|
343
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"}
|
|
@@ -3,6 +3,7 @@ export declare const syncPushAccount: import("../../../../..").EndpointConfig<"/
|
|
|
3
3
|
readonly clientGroupID: v.StringSchema<undefined>;
|
|
4
4
|
readonly mutations: v.ArraySchema<v.UnionSchema<(v.ObjectSchema<{
|
|
5
5
|
readonly args: v.ObjectSchema<{
|
|
6
|
+
readonly aliasId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
6
7
|
readonly color: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
7
8
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
8
9
|
readonly id: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
@@ -15,7 +16,6 @@ export declare const syncPushAccount: import("../../../../..").EndpointConfig<"/
|
|
|
15
16
|
readonly accountId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
16
17
|
readonly alias: v.ObjectSchema<{
|
|
17
18
|
readonly emailAddress: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.EmailAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
18
|
-
readonly hidden: v.BooleanSchema<undefined>;
|
|
19
19
|
readonly id: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
20
20
|
readonly primary: v.BooleanSchema<undefined>;
|
|
21
21
|
}, undefined>;
|
|
@@ -38,15 +38,6 @@ export declare const syncPushAccount: import("../../../../..").EndpointConfig<"/
|
|
|
38
38
|
readonly clientID: v.StringSchema<undefined>;
|
|
39
39
|
readonly id: v.NumberSchema<undefined>;
|
|
40
40
|
readonly name: v.LiteralSchema<"deleteAlias", undefined>;
|
|
41
|
-
}, undefined> | v.ObjectSchema<{
|
|
42
|
-
readonly args: v.ObjectSchema<{
|
|
43
|
-
readonly accountId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
44
|
-
readonly aliasId: v.CustomSchema<string, v.ErrorMessage<v.CustomIssue> | undefined>;
|
|
45
|
-
readonly hidden: v.BooleanSchema<undefined>;
|
|
46
|
-
}, undefined>;
|
|
47
|
-
readonly clientID: v.StringSchema<undefined>;
|
|
48
|
-
readonly id: v.NumberSchema<undefined>;
|
|
49
|
-
readonly name: v.LiteralSchema<"setAliasHidden", undefined>;
|
|
50
41
|
}, undefined> | v.ObjectSchema<{
|
|
51
42
|
readonly args: v.ObjectSchema<{
|
|
52
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(),
|
|
@@ -3,6 +3,7 @@ export declare const push: {
|
|
|
3
3
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
4
4
|
readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<(import("valibot").ObjectSchema<{
|
|
5
5
|
readonly args: import("valibot").ObjectSchema<{
|
|
6
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
6
7
|
readonly color: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
7
8
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
8
9
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
@@ -15,7 +16,6 @@ export declare const push: {
|
|
|
15
16
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
16
17
|
readonly alias: import("valibot").ObjectSchema<{
|
|
17
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>;
|
|
18
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
19
19
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
20
20
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
21
21
|
}, undefined>;
|
|
@@ -38,15 +38,6 @@ export declare const push: {
|
|
|
38
38
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
39
39
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
40
40
|
readonly name: import("valibot").LiteralSchema<"deleteAlias", undefined>;
|
|
41
|
-
}, undefined> | import("valibot").ObjectSchema<{
|
|
42
|
-
readonly args: import("valibot").ObjectSchema<{
|
|
43
|
-
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
44
|
-
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
45
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
46
|
-
}, undefined>;
|
|
47
|
-
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
48
|
-
readonly id: import("valibot").NumberSchema<undefined>;
|
|
49
|
-
readonly name: import("valibot").LiteralSchema<"setAliasHidden", undefined>;
|
|
50
41
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
51
42
|
readonly args: import("valibot").ObjectSchema<{
|
|
52
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>;
|
|
@@ -362,6 +361,7 @@ export declare const marcoSDK: {
|
|
|
362
361
|
readonly clientGroupID: import("valibot").StringSchema<undefined>;
|
|
363
362
|
readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<(import("valibot").ObjectSchema<{
|
|
364
363
|
readonly args: import("valibot").ObjectSchema<{
|
|
364
|
+
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
365
365
|
readonly color: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, number, undefined>]>, undefined>;
|
|
366
366
|
readonly emailAddress: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").EmailAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
367
367
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
@@ -374,7 +374,6 @@ export declare const marcoSDK: {
|
|
|
374
374
|
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
375
375
|
readonly alias: import("valibot").ObjectSchema<{
|
|
376
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>;
|
|
377
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
378
377
|
readonly id: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
379
378
|
readonly primary: import("valibot").BooleanSchema<undefined>;
|
|
380
379
|
}, undefined>;
|
|
@@ -397,15 +396,6 @@ export declare const marcoSDK: {
|
|
|
397
396
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
398
397
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
399
398
|
readonly name: import("valibot").LiteralSchema<"deleteAlias", undefined>;
|
|
400
|
-
}, undefined> | import("valibot").ObjectSchema<{
|
|
401
|
-
readonly args: import("valibot").ObjectSchema<{
|
|
402
|
-
readonly accountId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
403
|
-
readonly aliasId: import("valibot").CustomSchema<string, import("valibot").ErrorMessage<import("valibot").CustomIssue> | undefined>;
|
|
404
|
-
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
405
|
-
}, undefined>;
|
|
406
|
-
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
407
|
-
readonly id: import("valibot").NumberSchema<undefined>;
|
|
408
|
-
readonly name: import("valibot").LiteralSchema<"setAliasHidden", undefined>;
|
|
409
399
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
410
400
|
readonly args: import("valibot").ObjectSchema<{
|
|
411
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