@marcoappio/marco-config 2.0.292 → 2.0.294
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 +3 -0
- package/dist/clients/account.d.ts.map +1 -1
- package/dist/clients/account.js +3 -0
- package/dist/clients/draft.d.ts +5 -0
- package/dist/clients/draft.d.ts.map +1 -1
- package/dist/clients/draft.js +5 -0
- package/dist/clients/index.d.ts +8 -0
- package/dist/clients/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/index.d.ts +8 -0
- package/dist/sdk/endpoints/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/index.d.ts +8 -0
- package/dist/sdk/endpoints/private/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/sync/index.d.ts +8 -0
- package/dist/sdk/endpoints/private/sync/index.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/sync/push/account.d.ts +3 -0
- package/dist/sdk/endpoints/private/sync/push/account.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/sync/push/draft.d.ts +5 -0
- package/dist/sdk/endpoints/private/sync/push/draft.d.ts.map +1 -1
- package/dist/sdk/endpoints/private/sync/push/index.d.ts +8 -0
- package/dist/sdk/endpoints/private/sync/push/index.d.ts.map +1 -1
- package/dist/sdk/index.d.ts +8 -0
- package/dist/sdk/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -51,17 +51,20 @@ export declare const account: {
|
|
|
51
51
|
};
|
|
52
52
|
deleteAlias: {
|
|
53
53
|
delta: v.ObjectSchema<{
|
|
54
|
+
readonly accountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
54
55
|
readonly aliasId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
55
56
|
}, undefined>;
|
|
56
57
|
};
|
|
57
58
|
setAliasHidden: {
|
|
58
59
|
delta: v.ObjectSchema<{
|
|
60
|
+
readonly accountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
59
61
|
readonly aliasId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
60
62
|
readonly hidden: v.BooleanSchema<undefined>;
|
|
61
63
|
}, undefined>;
|
|
62
64
|
};
|
|
63
65
|
setAliasPrimary: {
|
|
64
66
|
delta: v.ObjectSchema<{
|
|
67
|
+
readonly accountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
65
68
|
readonly aliasId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
66
69
|
}, undefined>;
|
|
67
70
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../src/clients/account.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAiB5B,eAAO,MAAM,OAAO
|
|
1
|
+
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../src/clients/account.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAiB5B,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiFG,CAAA"}
|
package/dist/clients/account.js
CHANGED
|
@@ -49,17 +49,20 @@ export const account = {
|
|
|
49
49
|
},
|
|
50
50
|
deleteAlias: {
|
|
51
51
|
delta: v.object({
|
|
52
|
+
accountId: marcoSchemas.string.shortUUID(),
|
|
52
53
|
aliasId: marcoSchemas.string.shortUUID(),
|
|
53
54
|
}),
|
|
54
55
|
},
|
|
55
56
|
setAliasHidden: {
|
|
56
57
|
delta: v.object({
|
|
58
|
+
accountId: marcoSchemas.string.shortUUID(),
|
|
57
59
|
aliasId: marcoSchemas.string.shortUUID(),
|
|
58
60
|
hidden: v.boolean(),
|
|
59
61
|
}),
|
|
60
62
|
},
|
|
61
63
|
setAliasPrimary: {
|
|
62
64
|
delta: v.object({
|
|
65
|
+
accountId: marcoSchemas.string.shortUUID(),
|
|
63
66
|
aliasId: marcoSchemas.string.shortUUID(),
|
|
64
67
|
}),
|
|
65
68
|
},
|
package/dist/clients/draft.d.ts
CHANGED
|
@@ -30,6 +30,7 @@ export declare const draft: {
|
|
|
30
30
|
cancelDraftSend: {
|
|
31
31
|
delta: v.ObjectSchema<{
|
|
32
32
|
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
33
|
+
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
33
34
|
}, undefined>;
|
|
34
35
|
};
|
|
35
36
|
createAttachment: {
|
|
@@ -44,6 +45,7 @@ export declare const draft: {
|
|
|
44
45
|
readonly uploadedChunks: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
45
46
|
}, undefined>;
|
|
46
47
|
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
48
|
+
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
47
49
|
}, undefined>;
|
|
48
50
|
};
|
|
49
51
|
createDraft: {
|
|
@@ -78,16 +80,19 @@ export declare const draft: {
|
|
|
78
80
|
delta: v.ObjectSchema<{
|
|
79
81
|
readonly attachmentId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
80
82
|
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
83
|
+
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
81
84
|
}, undefined>;
|
|
82
85
|
};
|
|
83
86
|
deleteDraft: {
|
|
84
87
|
delta: v.ObjectSchema<{
|
|
85
88
|
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
89
|
+
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
86
90
|
}, undefined>;
|
|
87
91
|
};
|
|
88
92
|
sendDraft: {
|
|
89
93
|
delta: v.ObjectSchema<{
|
|
90
94
|
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
95
|
+
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
91
96
|
}, undefined>;
|
|
92
97
|
};
|
|
93
98
|
setContent: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"draft.d.ts","sourceRoot":"","sources":["../../src/clients/draft.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAmD5B,eAAO,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"draft.d.ts","sourceRoot":"","sources":["../../src/clients/draft.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAmD5B,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8EK,CAAA"}
|
package/dist/clients/draft.js
CHANGED
|
@@ -46,12 +46,14 @@ export const draft = {
|
|
|
46
46
|
cancelDraftSend: {
|
|
47
47
|
delta: v.object({
|
|
48
48
|
id: marcoSchemas.string.shortUUID(),
|
|
49
|
+
updatedAt: marcoSchemas.number.positiveInteger(),
|
|
49
50
|
}),
|
|
50
51
|
},
|
|
51
52
|
createAttachment: {
|
|
52
53
|
delta: v.object({
|
|
53
54
|
attachment: attachmentSchema,
|
|
54
55
|
id: marcoSchemas.string.shortUUID(),
|
|
56
|
+
updatedAt: marcoSchemas.number.positiveInteger(),
|
|
55
57
|
}),
|
|
56
58
|
},
|
|
57
59
|
createDraft: {
|
|
@@ -61,16 +63,19 @@ export const draft = {
|
|
|
61
63
|
delta: v.object({
|
|
62
64
|
attachmentId: marcoSchemas.string.shortUUID(),
|
|
63
65
|
id: marcoSchemas.string.shortUUID(),
|
|
66
|
+
updatedAt: marcoSchemas.number.positiveInteger(),
|
|
64
67
|
}),
|
|
65
68
|
},
|
|
66
69
|
deleteDraft: {
|
|
67
70
|
delta: v.object({
|
|
68
71
|
id: marcoSchemas.string.shortUUID(),
|
|
72
|
+
updatedAt: marcoSchemas.number.positiveInteger(),
|
|
69
73
|
}),
|
|
70
74
|
},
|
|
71
75
|
sendDraft: {
|
|
72
76
|
delta: v.object({
|
|
73
77
|
id: marcoSchemas.string.shortUUID(),
|
|
78
|
+
updatedAt: marcoSchemas.number.positiveInteger(),
|
|
74
79
|
}),
|
|
75
80
|
},
|
|
76
81
|
setContent: {
|
package/dist/clients/index.d.ts
CHANGED
|
@@ -52,17 +52,20 @@ export declare const marcoClients: {
|
|
|
52
52
|
};
|
|
53
53
|
deleteAlias: {
|
|
54
54
|
delta: import("valibot").ObjectSchema<{
|
|
55
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
55
56
|
readonly aliasId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
56
57
|
}, undefined>;
|
|
57
58
|
};
|
|
58
59
|
setAliasHidden: {
|
|
59
60
|
delta: import("valibot").ObjectSchema<{
|
|
61
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
60
62
|
readonly aliasId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
61
63
|
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
62
64
|
}, undefined>;
|
|
63
65
|
};
|
|
64
66
|
setAliasPrimary: {
|
|
65
67
|
delta: import("valibot").ObjectSchema<{
|
|
68
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
66
69
|
readonly aliasId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
67
70
|
}, undefined>;
|
|
68
71
|
};
|
|
@@ -173,6 +176,7 @@ export declare const marcoClients: {
|
|
|
173
176
|
cancelDraftSend: {
|
|
174
177
|
delta: import("valibot").ObjectSchema<{
|
|
175
178
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
179
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
176
180
|
}, undefined>;
|
|
177
181
|
};
|
|
178
182
|
createAttachment: {
|
|
@@ -187,6 +191,7 @@ export declare const marcoClients: {
|
|
|
187
191
|
readonly uploadedChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
188
192
|
}, undefined>;
|
|
189
193
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
194
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
190
195
|
}, undefined>;
|
|
191
196
|
};
|
|
192
197
|
createDraft: {
|
|
@@ -221,16 +226,19 @@ export declare const marcoClients: {
|
|
|
221
226
|
delta: import("valibot").ObjectSchema<{
|
|
222
227
|
readonly attachmentId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
223
228
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
229
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
224
230
|
}, undefined>;
|
|
225
231
|
};
|
|
226
232
|
deleteDraft: {
|
|
227
233
|
delta: import("valibot").ObjectSchema<{
|
|
228
234
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
235
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
229
236
|
}, undefined>;
|
|
230
237
|
};
|
|
231
238
|
sendDraft: {
|
|
232
239
|
delta: import("valibot").ObjectSchema<{
|
|
233
240
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
241
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
234
242
|
}, undefined>;
|
|
235
243
|
};
|
|
236
244
|
setContent: {
|
|
@@ -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"}
|
|
@@ -391,6 +391,7 @@ export declare const endpoints: {
|
|
|
391
391
|
readonly name: import("valibot").LiteralSchema<"deleteAccount", undefined>;
|
|
392
392
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
393
393
|
readonly args: import("valibot").ObjectSchema<{
|
|
394
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
394
395
|
readonly aliasId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
395
396
|
}, undefined>;
|
|
396
397
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -398,6 +399,7 @@ export declare const endpoints: {
|
|
|
398
399
|
readonly name: import("valibot").LiteralSchema<"deleteAlias", undefined>;
|
|
399
400
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
400
401
|
readonly args: import("valibot").ObjectSchema<{
|
|
402
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
401
403
|
readonly aliasId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
402
404
|
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
403
405
|
}, undefined>;
|
|
@@ -406,6 +408,7 @@ export declare const endpoints: {
|
|
|
406
408
|
readonly name: import("valibot").LiteralSchema<"setAliasHidden", undefined>;
|
|
407
409
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
408
410
|
readonly args: import("valibot").ObjectSchema<{
|
|
411
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
409
412
|
readonly aliasId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
410
413
|
}, undefined>;
|
|
411
414
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -499,6 +502,7 @@ export declare const endpoints: {
|
|
|
499
502
|
readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<(import("valibot").ObjectSchema<{
|
|
500
503
|
readonly args: import("valibot").ObjectSchema<{
|
|
501
504
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
505
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
502
506
|
}, undefined>;
|
|
503
507
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
504
508
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -515,6 +519,7 @@ export declare const endpoints: {
|
|
|
515
519
|
readonly uploadedChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
516
520
|
}, undefined>;
|
|
517
521
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
522
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
518
523
|
}, undefined>;
|
|
519
524
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
520
525
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -553,6 +558,7 @@ export declare const endpoints: {
|
|
|
553
558
|
readonly args: import("valibot").ObjectSchema<{
|
|
554
559
|
readonly attachmentId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
555
560
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
561
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
556
562
|
}, undefined>;
|
|
557
563
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
558
564
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -560,6 +566,7 @@ export declare const endpoints: {
|
|
|
560
566
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
561
567
|
readonly args: import("valibot").ObjectSchema<{
|
|
562
568
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
569
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
563
570
|
}, undefined>;
|
|
564
571
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
565
572
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -567,6 +574,7 @@ export declare const endpoints: {
|
|
|
567
574
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
568
575
|
readonly args: import("valibot").ObjectSchema<{
|
|
569
576
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
577
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
570
578
|
}, undefined>;
|
|
571
579
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
572
580
|
readonly id: import("valibot").NumberSchema<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"}
|
|
@@ -388,6 +388,7 @@ export declare const privateGroup: {
|
|
|
388
388
|
readonly name: import("valibot").LiteralSchema<"deleteAccount", undefined>;
|
|
389
389
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
390
390
|
readonly args: import("valibot").ObjectSchema<{
|
|
391
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
391
392
|
readonly aliasId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
392
393
|
}, undefined>;
|
|
393
394
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -395,6 +396,7 @@ export declare const privateGroup: {
|
|
|
395
396
|
readonly name: import("valibot").LiteralSchema<"deleteAlias", undefined>;
|
|
396
397
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
397
398
|
readonly args: import("valibot").ObjectSchema<{
|
|
399
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
398
400
|
readonly aliasId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
399
401
|
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
400
402
|
}, undefined>;
|
|
@@ -403,6 +405,7 @@ export declare const privateGroup: {
|
|
|
403
405
|
readonly name: import("valibot").LiteralSchema<"setAliasHidden", undefined>;
|
|
404
406
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
405
407
|
readonly args: import("valibot").ObjectSchema<{
|
|
408
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
406
409
|
readonly aliasId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
407
410
|
}, undefined>;
|
|
408
411
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -496,6 +499,7 @@ export declare const privateGroup: {
|
|
|
496
499
|
readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<(import("valibot").ObjectSchema<{
|
|
497
500
|
readonly args: import("valibot").ObjectSchema<{
|
|
498
501
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
502
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
499
503
|
}, undefined>;
|
|
500
504
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
501
505
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -512,6 +516,7 @@ export declare const privateGroup: {
|
|
|
512
516
|
readonly uploadedChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
513
517
|
}, undefined>;
|
|
514
518
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
519
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
515
520
|
}, undefined>;
|
|
516
521
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
517
522
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -550,6 +555,7 @@ export declare const privateGroup: {
|
|
|
550
555
|
readonly args: import("valibot").ObjectSchema<{
|
|
551
556
|
readonly attachmentId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
552
557
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
558
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
553
559
|
}, undefined>;
|
|
554
560
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
555
561
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -557,6 +563,7 @@ export declare const privateGroup: {
|
|
|
557
563
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
558
564
|
readonly args: import("valibot").ObjectSchema<{
|
|
559
565
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
566
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
560
567
|
}, undefined>;
|
|
561
568
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
562
569
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -564,6 +571,7 @@ export declare const privateGroup: {
|
|
|
564
571
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
565
572
|
readonly args: import("valibot").ObjectSchema<{
|
|
566
573
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
574
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
567
575
|
}, undefined>;
|
|
568
576
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
569
577
|
readonly id: import("valibot").NumberSchema<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"}
|
|
@@ -322,6 +322,7 @@ export declare const sync: {
|
|
|
322
322
|
readonly name: import("valibot").LiteralSchema<"deleteAccount", undefined>;
|
|
323
323
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
324
324
|
readonly args: import("valibot").ObjectSchema<{
|
|
325
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
325
326
|
readonly aliasId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
326
327
|
}, undefined>;
|
|
327
328
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -329,6 +330,7 @@ export declare const sync: {
|
|
|
329
330
|
readonly name: import("valibot").LiteralSchema<"deleteAlias", undefined>;
|
|
330
331
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
331
332
|
readonly args: import("valibot").ObjectSchema<{
|
|
333
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
332
334
|
readonly aliasId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
333
335
|
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
334
336
|
}, undefined>;
|
|
@@ -337,6 +339,7 @@ export declare const sync: {
|
|
|
337
339
|
readonly name: import("valibot").LiteralSchema<"setAliasHidden", undefined>;
|
|
338
340
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
339
341
|
readonly args: import("valibot").ObjectSchema<{
|
|
342
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
340
343
|
readonly aliasId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
341
344
|
}, undefined>;
|
|
342
345
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -430,6 +433,7 @@ export declare const sync: {
|
|
|
430
433
|
readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<(import("valibot").ObjectSchema<{
|
|
431
434
|
readonly args: import("valibot").ObjectSchema<{
|
|
432
435
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
436
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
433
437
|
}, undefined>;
|
|
434
438
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
435
439
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -446,6 +450,7 @@ export declare const sync: {
|
|
|
446
450
|
readonly uploadedChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
447
451
|
}, undefined>;
|
|
448
452
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
453
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
449
454
|
}, undefined>;
|
|
450
455
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
451
456
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -484,6 +489,7 @@ export declare const sync: {
|
|
|
484
489
|
readonly args: import("valibot").ObjectSchema<{
|
|
485
490
|
readonly attachmentId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
486
491
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
492
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
487
493
|
}, undefined>;
|
|
488
494
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
489
495
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -491,6 +497,7 @@ export declare const sync: {
|
|
|
491
497
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
492
498
|
readonly args: import("valibot").ObjectSchema<{
|
|
493
499
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
500
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
494
501
|
}, undefined>;
|
|
495
502
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
496
503
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -498,6 +505,7 @@ export declare const sync: {
|
|
|
498
505
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
499
506
|
readonly args: import("valibot").ObjectSchema<{
|
|
500
507
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
508
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
501
509
|
}, undefined>;
|
|
502
510
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
503
511
|
readonly id: import("valibot").NumberSchema<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,6 +32,7 @@ export declare const syncPushAccount: import("../../../../..").EndpointConfig<"/
|
|
|
32
32
|
readonly name: v.LiteralSchema<"deleteAccount", undefined>;
|
|
33
33
|
}, undefined> | v.ObjectSchema<{
|
|
34
34
|
readonly args: v.ObjectSchema<{
|
|
35
|
+
readonly accountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
35
36
|
readonly aliasId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
36
37
|
}, undefined>;
|
|
37
38
|
readonly clientID: v.StringSchema<undefined>;
|
|
@@ -39,6 +40,7 @@ export declare const syncPushAccount: import("../../../../..").EndpointConfig<"/
|
|
|
39
40
|
readonly name: v.LiteralSchema<"deleteAlias", undefined>;
|
|
40
41
|
}, undefined> | v.ObjectSchema<{
|
|
41
42
|
readonly args: v.ObjectSchema<{
|
|
43
|
+
readonly accountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
42
44
|
readonly aliasId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
43
45
|
readonly hidden: v.BooleanSchema<undefined>;
|
|
44
46
|
}, undefined>;
|
|
@@ -47,6 +49,7 @@ export declare const syncPushAccount: import("../../../../..").EndpointConfig<"/
|
|
|
47
49
|
readonly name: v.LiteralSchema<"setAliasHidden", undefined>;
|
|
48
50
|
}, undefined> | v.ObjectSchema<{
|
|
49
51
|
readonly args: v.ObjectSchema<{
|
|
52
|
+
readonly accountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
50
53
|
readonly aliasId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
51
54
|
}, undefined>;
|
|
52
55
|
readonly clientID: v.StringSchema<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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAuE1B,CAAA"}
|
|
@@ -4,6 +4,7 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
4
4
|
readonly mutations: v.ArraySchema<v.UnionSchema<(v.ObjectSchema<{
|
|
5
5
|
readonly args: v.ObjectSchema<{
|
|
6
6
|
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
7
|
+
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
7
8
|
}, undefined>;
|
|
8
9
|
readonly clientID: v.StringSchema<undefined>;
|
|
9
10
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -20,6 +21,7 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
20
21
|
readonly uploadedChunks: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
21
22
|
}, undefined>;
|
|
22
23
|
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
24
|
+
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
23
25
|
}, undefined>;
|
|
24
26
|
readonly clientID: v.StringSchema<undefined>;
|
|
25
27
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -58,6 +60,7 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
58
60
|
readonly args: v.ObjectSchema<{
|
|
59
61
|
readonly attachmentId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
60
62
|
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
63
|
+
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
61
64
|
}, undefined>;
|
|
62
65
|
readonly clientID: v.StringSchema<undefined>;
|
|
63
66
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -65,6 +68,7 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
65
68
|
}, undefined> | v.ObjectSchema<{
|
|
66
69
|
readonly args: v.ObjectSchema<{
|
|
67
70
|
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
71
|
+
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
68
72
|
}, undefined>;
|
|
69
73
|
readonly clientID: v.StringSchema<undefined>;
|
|
70
74
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -72,6 +76,7 @@ export declare const syncPushDraft: import("../../../../..").EndpointConfig<"/v1
|
|
|
72
76
|
}, undefined> | v.ObjectSchema<{
|
|
73
77
|
readonly args: v.ObjectSchema<{
|
|
74
78
|
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
79
|
+
readonly updatedAt: v.NonOptionalSchema<v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, undefined>;
|
|
75
80
|
}, undefined>;
|
|
76
81
|
readonly clientID: v.StringSchema<undefined>;
|
|
77
82
|
readonly id: v.NumberSchema<undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"draft.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/push/draft.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAM5B,eAAO,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"draft.d.ts","sourceRoot":"","sources":["../../../../../../src/sdk/endpoints/private/sync/push/draft.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAM5B,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAmFxB,CAAA"}
|
|
@@ -32,6 +32,7 @@ export declare const push: {
|
|
|
32
32
|
readonly name: import("valibot").LiteralSchema<"deleteAccount", undefined>;
|
|
33
33
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
34
34
|
readonly args: import("valibot").ObjectSchema<{
|
|
35
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
35
36
|
readonly aliasId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
36
37
|
}, undefined>;
|
|
37
38
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -39,6 +40,7 @@ export declare const push: {
|
|
|
39
40
|
readonly name: import("valibot").LiteralSchema<"deleteAlias", undefined>;
|
|
40
41
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
41
42
|
readonly args: import("valibot").ObjectSchema<{
|
|
43
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
42
44
|
readonly aliasId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
43
45
|
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
44
46
|
}, undefined>;
|
|
@@ -47,6 +49,7 @@ export declare const push: {
|
|
|
47
49
|
readonly name: import("valibot").LiteralSchema<"setAliasHidden", undefined>;
|
|
48
50
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
49
51
|
readonly args: import("valibot").ObjectSchema<{
|
|
52
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
50
53
|
readonly aliasId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
51
54
|
}, undefined>;
|
|
52
55
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -140,6 +143,7 @@ export declare const push: {
|
|
|
140
143
|
readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<(import("valibot").ObjectSchema<{
|
|
141
144
|
readonly args: import("valibot").ObjectSchema<{
|
|
142
145
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
146
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
143
147
|
}, undefined>;
|
|
144
148
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
145
149
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -156,6 +160,7 @@ export declare const push: {
|
|
|
156
160
|
readonly uploadedChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
157
161
|
}, undefined>;
|
|
158
162
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
163
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
159
164
|
}, undefined>;
|
|
160
165
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
161
166
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -194,6 +199,7 @@ export declare const push: {
|
|
|
194
199
|
readonly args: import("valibot").ObjectSchema<{
|
|
195
200
|
readonly attachmentId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
196
201
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
202
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
197
203
|
}, undefined>;
|
|
198
204
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
199
205
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -201,6 +207,7 @@ export declare const push: {
|
|
|
201
207
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
202
208
|
readonly args: import("valibot").ObjectSchema<{
|
|
203
209
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
210
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
204
211
|
}, undefined>;
|
|
205
212
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
206
213
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -208,6 +215,7 @@ export declare const push: {
|
|
|
208
215
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
209
216
|
readonly args: import("valibot").ObjectSchema<{
|
|
210
217
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
218
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
211
219
|
}, undefined>;
|
|
212
220
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
213
221
|
readonly id: import("valibot").NumberSchema<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
|
@@ -390,6 +390,7 @@ export declare const marcoSDK: {
|
|
|
390
390
|
readonly name: import("valibot").LiteralSchema<"deleteAccount", undefined>;
|
|
391
391
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
392
392
|
readonly args: import("valibot").ObjectSchema<{
|
|
393
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
393
394
|
readonly aliasId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
394
395
|
}, undefined>;
|
|
395
396
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -397,6 +398,7 @@ export declare const marcoSDK: {
|
|
|
397
398
|
readonly name: import("valibot").LiteralSchema<"deleteAlias", undefined>;
|
|
398
399
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
399
400
|
readonly args: import("valibot").ObjectSchema<{
|
|
401
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
400
402
|
readonly aliasId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
401
403
|
readonly hidden: import("valibot").BooleanSchema<undefined>;
|
|
402
404
|
}, undefined>;
|
|
@@ -405,6 +407,7 @@ export declare const marcoSDK: {
|
|
|
405
407
|
readonly name: import("valibot").LiteralSchema<"setAliasHidden", undefined>;
|
|
406
408
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
407
409
|
readonly args: import("valibot").ObjectSchema<{
|
|
410
|
+
readonly accountId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
408
411
|
readonly aliasId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
409
412
|
}, undefined>;
|
|
410
413
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
@@ -498,6 +501,7 @@ export declare const marcoSDK: {
|
|
|
498
501
|
readonly mutations: import("valibot").ArraySchema<import("valibot").UnionSchema<(import("valibot").ObjectSchema<{
|
|
499
502
|
readonly args: import("valibot").ObjectSchema<{
|
|
500
503
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
504
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
501
505
|
}, undefined>;
|
|
502
506
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
503
507
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -514,6 +518,7 @@ export declare const marcoSDK: {
|
|
|
514
518
|
readonly uploadedChunks: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
515
519
|
}, undefined>;
|
|
516
520
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
521
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
517
522
|
}, undefined>;
|
|
518
523
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
519
524
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -552,6 +557,7 @@ export declare const marcoSDK: {
|
|
|
552
557
|
readonly args: import("valibot").ObjectSchema<{
|
|
553
558
|
readonly attachmentId: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
554
559
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
560
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
555
561
|
}, undefined>;
|
|
556
562
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
557
563
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -559,6 +565,7 @@ export declare const marcoSDK: {
|
|
|
559
565
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
560
566
|
readonly args: import("valibot").ObjectSchema<{
|
|
561
567
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
568
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
562
569
|
}, undefined>;
|
|
563
570
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
564
571
|
readonly id: import("valibot").NumberSchema<undefined>;
|
|
@@ -566,6 +573,7 @@ export declare const marcoSDK: {
|
|
|
566
573
|
}, undefined> | import("valibot").ObjectSchema<{
|
|
567
574
|
readonly args: import("valibot").ObjectSchema<{
|
|
568
575
|
readonly id: import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").CheckAction<string | import("short-uuid").SUUID, "Invalid short UUID format">]>;
|
|
576
|
+
readonly updatedAt: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>, import("valibot").MinValueAction<number, 0, undefined>]>, undefined>;
|
|
569
577
|
}, undefined>;
|
|
570
578
|
readonly clientID: import("valibot").StringSchema<undefined>;
|
|
571
579
|
readonly id: import("valibot").NumberSchema<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