@meistrari/vault-http-client 2.3.1 → 2.3.3
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/index.cjs +47 -53
- package/dist/index.d.cts +218 -278
- package/dist/index.d.mts +218 -278
- package/dist/index.d.ts +218 -278
- package/dist/index.mjs +47 -53
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -40,77 +40,47 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
40
40
|
response: z.ZodObject<{
|
|
41
41
|
files: z.ZodArray<z.ZodObject<{
|
|
42
42
|
id: z.ZodString;
|
|
43
|
-
path: z.ZodString;
|
|
44
|
-
workspaceId: z.ZodString;
|
|
45
43
|
originalFileName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
46
|
-
mimeType: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47
44
|
size: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
48
|
-
legacyKey: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
49
|
-
bucketName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
50
|
-
encryptionKey: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
51
|
-
createdBy: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
52
45
|
createdAt: z.ZodString;
|
|
46
|
+
createdBy: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
53
47
|
deletedAt: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
54
|
-
}, "
|
|
55
|
-
path: string;
|
|
56
|
-
workspaceId: string;
|
|
48
|
+
}, "strip", z.ZodTypeAny, {
|
|
57
49
|
id: string;
|
|
58
50
|
createdAt: string;
|
|
59
|
-
bucketName?: string | null | undefined;
|
|
60
51
|
size?: number | null | undefined;
|
|
61
|
-
mimeType?: string | null | undefined;
|
|
62
52
|
createdBy?: string | null | undefined;
|
|
63
53
|
deletedAt?: string | null | undefined;
|
|
64
54
|
originalFileName?: string | null | undefined;
|
|
65
|
-
legacyKey?: string | null | undefined;
|
|
66
|
-
encryptionKey?: string | null | undefined;
|
|
67
55
|
}, {
|
|
68
|
-
path: string;
|
|
69
|
-
workspaceId: string;
|
|
70
56
|
id: string;
|
|
71
57
|
createdAt: string;
|
|
72
|
-
bucketName?: string | null | undefined;
|
|
73
58
|
size?: number | null | undefined;
|
|
74
|
-
mimeType?: string | null | undefined;
|
|
75
59
|
createdBy?: string | null | undefined;
|
|
76
60
|
deletedAt?: string | null | undefined;
|
|
77
61
|
originalFileName?: string | null | undefined;
|
|
78
|
-
legacyKey?: string | null | undefined;
|
|
79
|
-
encryptionKey?: string | null | undefined;
|
|
80
62
|
}>, "many">;
|
|
81
63
|
count: z.ZodNumber;
|
|
82
64
|
pages: z.ZodNumber;
|
|
83
|
-
}, "
|
|
65
|
+
}, "strip", z.ZodTypeAny, {
|
|
84
66
|
files: {
|
|
85
|
-
path: string;
|
|
86
|
-
workspaceId: string;
|
|
87
67
|
id: string;
|
|
88
68
|
createdAt: string;
|
|
89
|
-
bucketName?: string | null | undefined;
|
|
90
69
|
size?: number | null | undefined;
|
|
91
|
-
mimeType?: string | null | undefined;
|
|
92
70
|
createdBy?: string | null | undefined;
|
|
93
71
|
deletedAt?: string | null | undefined;
|
|
94
72
|
originalFileName?: string | null | undefined;
|
|
95
|
-
legacyKey?: string | null | undefined;
|
|
96
|
-
encryptionKey?: string | null | undefined;
|
|
97
73
|
}[];
|
|
98
74
|
count: number;
|
|
99
75
|
pages: number;
|
|
100
76
|
}, {
|
|
101
77
|
files: {
|
|
102
|
-
path: string;
|
|
103
|
-
workspaceId: string;
|
|
104
78
|
id: string;
|
|
105
79
|
createdAt: string;
|
|
106
|
-
bucketName?: string | null | undefined;
|
|
107
80
|
size?: number | null | undefined;
|
|
108
|
-
mimeType?: string | null | undefined;
|
|
109
81
|
createdBy?: string | null | undefined;
|
|
110
82
|
deletedAt?: string | null | undefined;
|
|
111
83
|
originalFileName?: string | null | undefined;
|
|
112
|
-
legacyKey?: string | null | undefined;
|
|
113
|
-
encryptionKey?: string | null | undefined;
|
|
114
84
|
}[];
|
|
115
85
|
count: number;
|
|
116
86
|
pages: number;
|
|
@@ -129,7 +99,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
129
99
|
size: z.ZodOptional<z.ZodNumber>;
|
|
130
100
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
131
101
|
createdBy: z.ZodOptional<z.ZodString>;
|
|
132
|
-
}, "
|
|
102
|
+
}, "strip", z.ZodTypeAny, {
|
|
133
103
|
fileName: string;
|
|
134
104
|
sha256sum?: string | undefined;
|
|
135
105
|
size?: number | undefined;
|
|
@@ -168,7 +138,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
168
138
|
createdBy: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
169
139
|
createdAt: z.ZodString;
|
|
170
140
|
deletedAt: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
171
|
-
}, "
|
|
141
|
+
}, "strip", z.ZodTypeAny, {
|
|
172
142
|
path: string;
|
|
173
143
|
workspaceId: string;
|
|
174
144
|
id: string;
|
|
@@ -195,7 +165,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
195
165
|
legacyKey?: string | null | undefined;
|
|
196
166
|
encryptionKey?: string | null | undefined;
|
|
197
167
|
}>;
|
|
198
|
-
}, "
|
|
168
|
+
}, "strip", z.ZodTypeAny, {
|
|
199
169
|
id: string;
|
|
200
170
|
uploadUrl: string;
|
|
201
171
|
expiresAt: string;
|
|
@@ -234,7 +204,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
234
204
|
}>, z.ZodObject<{
|
|
235
205
|
url: z.ZodString;
|
|
236
206
|
expiresAt: z.ZodString;
|
|
237
|
-
}, "
|
|
207
|
+
}, "strip", z.ZodTypeAny, {
|
|
238
208
|
expiresAt: string;
|
|
239
209
|
url: string;
|
|
240
210
|
}, {
|
|
@@ -275,7 +245,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
275
245
|
createdBy: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
276
246
|
createdAt: z.ZodString;
|
|
277
247
|
deletedAt: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
278
|
-
}, "
|
|
248
|
+
}, "strip", z.ZodTypeAny, {
|
|
279
249
|
path: string;
|
|
280
250
|
workspaceId: string;
|
|
281
251
|
id: string;
|
|
@@ -302,7 +272,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
302
272
|
legacyKey?: string | null | undefined;
|
|
303
273
|
encryptionKey?: string | null | undefined;
|
|
304
274
|
}>, z.ZodNull]>;
|
|
305
|
-
}, "
|
|
275
|
+
}, "strip", z.ZodTypeAny, {
|
|
306
276
|
expiresAt: string;
|
|
307
277
|
metadata: {
|
|
308
278
|
path: string;
|
|
@@ -377,7 +347,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
377
347
|
createdBy: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
378
348
|
createdAt: z.ZodString;
|
|
379
349
|
deletedAt: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
380
|
-
}, "
|
|
350
|
+
}, "strip", z.ZodTypeAny, {
|
|
381
351
|
path: string;
|
|
382
352
|
workspaceId: string;
|
|
383
353
|
id: string;
|
|
@@ -404,7 +374,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
404
374
|
legacyKey?: string | null | undefined;
|
|
405
375
|
encryptionKey?: string | null | undefined;
|
|
406
376
|
}>;
|
|
407
|
-
}, "
|
|
377
|
+
}, "strip", z.ZodTypeAny, {
|
|
408
378
|
id: string;
|
|
409
379
|
uploadUrl: string;
|
|
410
380
|
expiresAt: string;
|
|
@@ -443,7 +413,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
443
413
|
}>, z.ZodObject<{
|
|
444
414
|
url: z.ZodString;
|
|
445
415
|
expiresAt: z.ZodString;
|
|
446
|
-
}, "
|
|
416
|
+
}, "strip", z.ZodTypeAny, {
|
|
447
417
|
expiresAt: string;
|
|
448
418
|
url: string;
|
|
449
419
|
}, {
|
|
@@ -492,7 +462,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
492
462
|
createdBy: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
493
463
|
createdAt: z.ZodString;
|
|
494
464
|
deletedAt: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
495
|
-
}, "
|
|
465
|
+
}, "strip", z.ZodTypeAny, {
|
|
496
466
|
path: string;
|
|
497
467
|
workspaceId: string;
|
|
498
468
|
id: string;
|
|
@@ -534,7 +504,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
534
504
|
files: z.ZodNumber;
|
|
535
505
|
permalinks: z.ZodNumber;
|
|
536
506
|
hasCustomSettings: z.ZodBoolean;
|
|
537
|
-
}, "
|
|
507
|
+
}, "strip", z.ZodTypeAny, {
|
|
538
508
|
files: number;
|
|
539
509
|
workspaceId: string;
|
|
540
510
|
permalinks: number;
|
|
@@ -557,7 +527,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
557
527
|
bucketName: z.ZodString;
|
|
558
528
|
keyArns: z.ZodArray<z.ZodString, "many">;
|
|
559
529
|
defaultS3LinkTtl: z.ZodNumber;
|
|
560
|
-
}, "
|
|
530
|
+
}, "strip", z.ZodTypeAny, {
|
|
561
531
|
bucketName: string;
|
|
562
532
|
keyArns: string[];
|
|
563
533
|
defaultS3LinkTtl: number;
|
|
@@ -591,7 +561,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
591
561
|
bucketName: z.ZodString;
|
|
592
562
|
keyArns: z.ZodArray<z.ZodString, "many">;
|
|
593
563
|
defaultS3LinkTtl: z.ZodNumber;
|
|
594
|
-
}, "
|
|
564
|
+
}, "strip", z.ZodTypeAny, {
|
|
595
565
|
bucketName: string;
|
|
596
566
|
keyArns: string[];
|
|
597
567
|
defaultS3LinkTtl: number;
|
|
@@ -626,7 +596,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
626
596
|
createdBy: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
627
597
|
createdAt: z.ZodString;
|
|
628
598
|
deletedAt: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
629
|
-
}, "
|
|
599
|
+
}, "strip", z.ZodTypeAny, {
|
|
630
600
|
path: string;
|
|
631
601
|
workspaceId: string;
|
|
632
602
|
id: string;
|
|
@@ -653,7 +623,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
653
623
|
legacyKey?: string | null | undefined;
|
|
654
624
|
encryptionKey?: string | null | undefined;
|
|
655
625
|
}>, z.ZodNull]>;
|
|
656
|
-
}, "
|
|
626
|
+
}, "strip", z.ZodTypeAny, {
|
|
657
627
|
expiresAt: string;
|
|
658
628
|
metadata: {
|
|
659
629
|
path: string;
|
|
@@ -703,7 +673,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
703
673
|
type: "Body";
|
|
704
674
|
schema: z.ZodObject<{
|
|
705
675
|
expiresAt: z.ZodOptional<z.ZodString>;
|
|
706
|
-
}, "
|
|
676
|
+
}, "strip", z.ZodTypeAny, {
|
|
707
677
|
expiresAt?: string | undefined;
|
|
708
678
|
}, {
|
|
709
679
|
expiresAt?: string | undefined;
|
|
@@ -720,7 +690,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
720
690
|
createdAt: z.ZodString;
|
|
721
691
|
expiresAt: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
722
692
|
createdBy: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
723
|
-
}, "
|
|
693
|
+
}, "strip", z.ZodTypeAny, {
|
|
724
694
|
createdBy: string | null;
|
|
725
695
|
workspaceId: string;
|
|
726
696
|
id: string;
|
|
@@ -752,7 +722,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
752
722
|
createdAt: z.ZodString;
|
|
753
723
|
expiresAt: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
754
724
|
createdBy: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
755
|
-
}, "
|
|
725
|
+
}, "strip", z.ZodTypeAny, {
|
|
756
726
|
createdBy: string | null;
|
|
757
727
|
workspaceId: string;
|
|
758
728
|
id: string;
|
|
@@ -781,7 +751,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
781
751
|
size: z.ZodOptional<z.ZodNumber>;
|
|
782
752
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
783
753
|
createdBy: z.ZodOptional<z.ZodString>;
|
|
784
|
-
}, "
|
|
754
|
+
}, "strip", z.ZodTypeAny, {
|
|
785
755
|
fileName?: string | undefined;
|
|
786
756
|
sha256sum?: string | undefined;
|
|
787
757
|
size?: number | undefined;
|
|
@@ -820,7 +790,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
820
790
|
createdBy: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
821
791
|
createdAt: z.ZodString;
|
|
822
792
|
deletedAt: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
823
|
-
}, "
|
|
793
|
+
}, "strip", z.ZodTypeAny, {
|
|
824
794
|
path: string;
|
|
825
795
|
workspaceId: string;
|
|
826
796
|
id: string;
|
|
@@ -847,7 +817,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
847
817
|
legacyKey?: string | null | undefined;
|
|
848
818
|
encryptionKey?: string | null | undefined;
|
|
849
819
|
}>;
|
|
850
|
-
}, "
|
|
820
|
+
}, "strip", z.ZodTypeAny, {
|
|
851
821
|
id: string;
|
|
852
822
|
uploadUrl: string;
|
|
853
823
|
expiresAt: string;
|
|
@@ -886,7 +856,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
886
856
|
}>, z.ZodObject<{
|
|
887
857
|
url: z.ZodString;
|
|
888
858
|
expiresAt: z.ZodString;
|
|
889
|
-
}, "
|
|
859
|
+
}, "strip", z.ZodTypeAny, {
|
|
890
860
|
expiresAt: string;
|
|
891
861
|
url: string;
|
|
892
862
|
}, {
|
|
@@ -924,7 +894,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
924
894
|
createdBy: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
925
895
|
createdAt: z.ZodString;
|
|
926
896
|
deletedAt: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
927
|
-
}, "
|
|
897
|
+
}, "strip", z.ZodTypeAny, {
|
|
928
898
|
path: string;
|
|
929
899
|
workspaceId: string;
|
|
930
900
|
id: string;
|
|
@@ -951,7 +921,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
951
921
|
legacyKey?: string | null | undefined;
|
|
952
922
|
encryptionKey?: string | null | undefined;
|
|
953
923
|
}>;
|
|
954
|
-
}, "
|
|
924
|
+
}, "strip", z.ZodTypeAny, {
|
|
955
925
|
id: string;
|
|
956
926
|
uploadUrl: string;
|
|
957
927
|
expiresAt: string;
|
|
@@ -990,7 +960,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
990
960
|
}>, z.ZodObject<{
|
|
991
961
|
url: z.ZodString;
|
|
992
962
|
expiresAt: z.ZodString;
|
|
993
|
-
}, "
|
|
963
|
+
}, "strip", z.ZodTypeAny, {
|
|
994
964
|
expiresAt: string;
|
|
995
965
|
url: string;
|
|
996
966
|
}, {
|
|
@@ -1031,7 +1001,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
1031
1001
|
createdBy: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
1032
1002
|
createdAt: z.ZodString;
|
|
1033
1003
|
deletedAt: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
1034
|
-
}, "
|
|
1004
|
+
}, "strip", z.ZodTypeAny, {
|
|
1035
1005
|
path: string;
|
|
1036
1006
|
workspaceId: string;
|
|
1037
1007
|
id: string;
|
|
@@ -1077,7 +1047,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
1077
1047
|
size: z.ZodOptional<z.ZodNumber>;
|
|
1078
1048
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
1079
1049
|
createdBy: z.ZodOptional<z.ZodString>;
|
|
1080
|
-
}, "
|
|
1050
|
+
}, "strip", z.ZodTypeAny, {
|
|
1081
1051
|
fileName: string;
|
|
1082
1052
|
sha256sum?: string | undefined;
|
|
1083
1053
|
size?: number | undefined;
|
|
@@ -1091,7 +1061,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
1091
1061
|
createdBy?: string | undefined;
|
|
1092
1062
|
}>, "many">, z.ZodObject<{
|
|
1093
1063
|
files: z.ZodArray<z.ZodString, "many">;
|
|
1094
|
-
}, "
|
|
1064
|
+
}, "strip", z.ZodTypeAny, {
|
|
1095
1065
|
files: string[];
|
|
1096
1066
|
}, {
|
|
1097
1067
|
files: string[];
|
|
@@ -1110,7 +1080,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
1110
1080
|
createdBy: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
1111
1081
|
createdAt: z.ZodString;
|
|
1112
1082
|
deletedAt: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
1113
|
-
}, "
|
|
1083
|
+
}, "strip", z.ZodTypeAny, {
|
|
1114
1084
|
path: string;
|
|
1115
1085
|
workspaceId: string;
|
|
1116
1086
|
id: string;
|
|
@@ -1150,7 +1120,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
1150
1120
|
createdBy: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
1151
1121
|
createdAt: z.ZodString;
|
|
1152
1122
|
deletedAt: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
1153
|
-
}, "
|
|
1123
|
+
}, "strip", z.ZodTypeAny, {
|
|
1154
1124
|
path: string;
|
|
1155
1125
|
workspaceId: string;
|
|
1156
1126
|
id: string;
|
|
@@ -1177,7 +1147,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
1177
1147
|
legacyKey?: string | null | undefined;
|
|
1178
1148
|
encryptionKey?: string | null | undefined;
|
|
1179
1149
|
}>, "many">;
|
|
1180
|
-
}, "
|
|
1150
|
+
}, "strip", z.ZodTypeAny, {
|
|
1181
1151
|
files: {
|
|
1182
1152
|
path: string;
|
|
1183
1153
|
workspaceId: string;
|
|
@@ -1256,7 +1226,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
1256
1226
|
createdAt: z.ZodString;
|
|
1257
1227
|
expiresAt: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
1258
1228
|
createdBy: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
1259
|
-
}, "
|
|
1229
|
+
}, "strip", z.ZodTypeAny, {
|
|
1260
1230
|
createdBy: string | null;
|
|
1261
1231
|
workspaceId: string;
|
|
1262
1232
|
id: string;
|
|
@@ -1302,7 +1272,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
1302
1272
|
createdBy: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
1303
1273
|
createdAt: z.ZodString;
|
|
1304
1274
|
deletedAt: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
1305
|
-
}, "
|
|
1275
|
+
}, "strip", z.ZodTypeAny, {
|
|
1306
1276
|
path: string;
|
|
1307
1277
|
workspaceId: string;
|
|
1308
1278
|
id: string;
|
|
@@ -1329,7 +1299,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
1329
1299
|
legacyKey?: string | null | undefined;
|
|
1330
1300
|
encryptionKey?: string | null | undefined;
|
|
1331
1301
|
}>, z.ZodNull]>;
|
|
1332
|
-
}, "
|
|
1302
|
+
}, "strip", z.ZodTypeAny, {
|
|
1333
1303
|
expiresAt: string;
|
|
1334
1304
|
metadata: {
|
|
1335
1305
|
path: string;
|
|
@@ -1383,7 +1353,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
1383
1353
|
size: z.ZodOptional<z.ZodNumber>;
|
|
1384
1354
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
1385
1355
|
createdBy: z.ZodOptional<z.ZodString>;
|
|
1386
|
-
}, "
|
|
1356
|
+
}, "strip", z.ZodTypeAny, {
|
|
1387
1357
|
fileName?: string | undefined;
|
|
1388
1358
|
sha256sum?: string | undefined;
|
|
1389
1359
|
size?: number | undefined;
|
|
@@ -1422,7 +1392,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
1422
1392
|
createdBy: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
1423
1393
|
createdAt: z.ZodString;
|
|
1424
1394
|
deletedAt: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
1425
|
-
}, "
|
|
1395
|
+
}, "strip", z.ZodTypeAny, {
|
|
1426
1396
|
path: string;
|
|
1427
1397
|
workspaceId: string;
|
|
1428
1398
|
id: string;
|
|
@@ -1449,7 +1419,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
1449
1419
|
legacyKey?: string | null | undefined;
|
|
1450
1420
|
encryptionKey?: string | null | undefined;
|
|
1451
1421
|
}>;
|
|
1452
|
-
}, "
|
|
1422
|
+
}, "strip", z.ZodTypeAny, {
|
|
1453
1423
|
id: string;
|
|
1454
1424
|
uploadUrl: string;
|
|
1455
1425
|
expiresAt: string;
|
|
@@ -1488,7 +1458,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
1488
1458
|
}>, z.ZodObject<{
|
|
1489
1459
|
url: z.ZodString;
|
|
1490
1460
|
expiresAt: z.ZodString;
|
|
1491
|
-
}, "
|
|
1461
|
+
}, "strip", z.ZodTypeAny, {
|
|
1492
1462
|
expiresAt: string;
|
|
1493
1463
|
url: string;
|
|
1494
1464
|
}, {
|
|
@@ -1526,7 +1496,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
1526
1496
|
createdBy: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
1527
1497
|
createdAt: z.ZodString;
|
|
1528
1498
|
deletedAt: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
1529
|
-
}, "
|
|
1499
|
+
}, "strip", z.ZodTypeAny, {
|
|
1530
1500
|
path: string;
|
|
1531
1501
|
workspaceId: string;
|
|
1532
1502
|
id: string;
|
|
@@ -1553,7 +1523,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
1553
1523
|
legacyKey?: string | null | undefined;
|
|
1554
1524
|
encryptionKey?: string | null | undefined;
|
|
1555
1525
|
}>;
|
|
1556
|
-
}, "
|
|
1526
|
+
}, "strip", z.ZodTypeAny, {
|
|
1557
1527
|
id: string;
|
|
1558
1528
|
uploadUrl: string;
|
|
1559
1529
|
expiresAt: string;
|
|
@@ -1592,7 +1562,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
1592
1562
|
}>, z.ZodObject<{
|
|
1593
1563
|
url: z.ZodString;
|
|
1594
1564
|
expiresAt: z.ZodString;
|
|
1595
|
-
}, "
|
|
1565
|
+
}, "strip", z.ZodTypeAny, {
|
|
1596
1566
|
expiresAt: string;
|
|
1597
1567
|
url: string;
|
|
1598
1568
|
}, {
|
|
@@ -1633,7 +1603,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
1633
1603
|
createdBy: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
1634
1604
|
createdAt: z.ZodString;
|
|
1635
1605
|
deletedAt: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
1636
|
-
}, "
|
|
1606
|
+
}, "strip", z.ZodTypeAny, {
|
|
1637
1607
|
path: string;
|
|
1638
1608
|
workspaceId: string;
|
|
1639
1609
|
id: string;
|
|
@@ -1679,7 +1649,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
1679
1649
|
size: z.ZodOptional<z.ZodNumber>;
|
|
1680
1650
|
mimeType: z.ZodOptional<z.ZodString>;
|
|
1681
1651
|
createdBy: z.ZodOptional<z.ZodString>;
|
|
1682
|
-
}, "
|
|
1652
|
+
}, "strip", z.ZodTypeAny, {
|
|
1683
1653
|
fileName: string;
|
|
1684
1654
|
sha256sum?: string | undefined;
|
|
1685
1655
|
size?: number | undefined;
|
|
@@ -1693,7 +1663,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
1693
1663
|
createdBy?: string | undefined;
|
|
1694
1664
|
}>, "many">, z.ZodObject<{
|
|
1695
1665
|
files: z.ZodArray<z.ZodString, "many">;
|
|
1696
|
-
}, "
|
|
1666
|
+
}, "strip", z.ZodTypeAny, {
|
|
1697
1667
|
files: string[];
|
|
1698
1668
|
}, {
|
|
1699
1669
|
files: string[];
|
|
@@ -1712,7 +1682,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
1712
1682
|
createdBy: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
1713
1683
|
createdAt: z.ZodString;
|
|
1714
1684
|
deletedAt: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
1715
|
-
}, "
|
|
1685
|
+
}, "strip", z.ZodTypeAny, {
|
|
1716
1686
|
path: string;
|
|
1717
1687
|
workspaceId: string;
|
|
1718
1688
|
id: string;
|
|
@@ -1752,7 +1722,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
1752
1722
|
createdBy: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
1753
1723
|
createdAt: z.ZodString;
|
|
1754
1724
|
deletedAt: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
1755
|
-
}, "
|
|
1725
|
+
}, "strip", z.ZodTypeAny, {
|
|
1756
1726
|
path: string;
|
|
1757
1727
|
workspaceId: string;
|
|
1758
1728
|
id: string;
|
|
@@ -1779,7 +1749,7 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
1779
1749
|
legacyKey?: string | null | undefined;
|
|
1780
1750
|
encryptionKey?: string | null | undefined;
|
|
1781
1751
|
}>, "many">;
|
|
1782
|
-
}, "
|
|
1752
|
+
}, "strip", z.ZodTypeAny, {
|
|
1783
1753
|
files: {
|
|
1784
1754
|
path: string;
|
|
1785
1755
|
workspaceId: string;
|
|
@@ -1849,76 +1819,46 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
1849
1819
|
response: zod.ZodObject<{
|
|
1850
1820
|
files: zod.ZodArray<zod.ZodObject<{
|
|
1851
1821
|
id: zod.ZodString;
|
|
1852
|
-
path: zod.ZodString;
|
|
1853
|
-
workspaceId: zod.ZodString;
|
|
1854
1822
|
originalFileName: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
1855
|
-
mimeType: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
1856
1823
|
size: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodNull]>>;
|
|
1857
|
-
legacyKey: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
1858
|
-
bucketName: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
1859
|
-
encryptionKey: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
1860
|
-
createdBy: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
1861
1824
|
createdAt: zod.ZodString;
|
|
1825
|
+
createdBy: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
1862
1826
|
deletedAt: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
1863
|
-
}, "
|
|
1864
|
-
path: string;
|
|
1865
|
-
workspaceId: string;
|
|
1827
|
+
}, "strip", zod.ZodTypeAny, {
|
|
1866
1828
|
id: string;
|
|
1867
1829
|
createdAt: string;
|
|
1868
1830
|
deletedAt?: string | null | undefined;
|
|
1869
1831
|
originalFileName?: string | null | undefined;
|
|
1870
|
-
mimeType?: string | null | undefined;
|
|
1871
1832
|
size?: number | null | undefined;
|
|
1872
|
-
legacyKey?: string | null | undefined;
|
|
1873
|
-
bucketName?: string | null | undefined;
|
|
1874
|
-
encryptionKey?: string | null | undefined;
|
|
1875
1833
|
createdBy?: string | null | undefined;
|
|
1876
1834
|
}, {
|
|
1877
|
-
path: string;
|
|
1878
|
-
workspaceId: string;
|
|
1879
1835
|
id: string;
|
|
1880
1836
|
createdAt: string;
|
|
1881
1837
|
deletedAt?: string | null | undefined;
|
|
1882
1838
|
originalFileName?: string | null | undefined;
|
|
1883
|
-
mimeType?: string | null | undefined;
|
|
1884
1839
|
size?: number | null | undefined;
|
|
1885
|
-
legacyKey?: string | null | undefined;
|
|
1886
|
-
bucketName?: string | null | undefined;
|
|
1887
|
-
encryptionKey?: string | null | undefined;
|
|
1888
1840
|
createdBy?: string | null | undefined;
|
|
1889
1841
|
}>, "many">;
|
|
1890
1842
|
count: zod.ZodNumber;
|
|
1891
1843
|
pages: zod.ZodNumber;
|
|
1892
|
-
}, "
|
|
1844
|
+
}, "strip", zod.ZodTypeAny, {
|
|
1893
1845
|
files: {
|
|
1894
|
-
path: string;
|
|
1895
|
-
workspaceId: string;
|
|
1896
1846
|
id: string;
|
|
1897
1847
|
createdAt: string;
|
|
1898
1848
|
deletedAt?: string | null | undefined;
|
|
1899
1849
|
originalFileName?: string | null | undefined;
|
|
1900
|
-
mimeType?: string | null | undefined;
|
|
1901
1850
|
size?: number | null | undefined;
|
|
1902
|
-
legacyKey?: string | null | undefined;
|
|
1903
|
-
bucketName?: string | null | undefined;
|
|
1904
|
-
encryptionKey?: string | null | undefined;
|
|
1905
1851
|
createdBy?: string | null | undefined;
|
|
1906
1852
|
}[];
|
|
1907
1853
|
count: number;
|
|
1908
1854
|
pages: number;
|
|
1909
1855
|
}, {
|
|
1910
1856
|
files: {
|
|
1911
|
-
path: string;
|
|
1912
|
-
workspaceId: string;
|
|
1913
1857
|
id: string;
|
|
1914
1858
|
createdAt: string;
|
|
1915
1859
|
deletedAt?: string | null | undefined;
|
|
1916
1860
|
originalFileName?: string | null | undefined;
|
|
1917
|
-
mimeType?: string | null | undefined;
|
|
1918
1861
|
size?: number | null | undefined;
|
|
1919
|
-
legacyKey?: string | null | undefined;
|
|
1920
|
-
bucketName?: string | null | undefined;
|
|
1921
|
-
encryptionKey?: string | null | undefined;
|
|
1922
1862
|
createdBy?: string | null | undefined;
|
|
1923
1863
|
}[];
|
|
1924
1864
|
count: number;
|
|
@@ -1938,18 +1878,18 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
1938
1878
|
size: zod.ZodOptional<zod.ZodNumber>;
|
|
1939
1879
|
mimeType: zod.ZodOptional<zod.ZodString>;
|
|
1940
1880
|
createdBy: zod.ZodOptional<zod.ZodString>;
|
|
1941
|
-
}, "
|
|
1881
|
+
}, "strip", zod.ZodTypeAny, {
|
|
1942
1882
|
fileName: string;
|
|
1943
|
-
mimeType?: string | undefined;
|
|
1944
1883
|
size?: number | undefined;
|
|
1945
1884
|
createdBy?: string | undefined;
|
|
1946
1885
|
sha256sum?: string | undefined;
|
|
1886
|
+
mimeType?: string | undefined;
|
|
1947
1887
|
}, {
|
|
1948
1888
|
fileName: string;
|
|
1949
|
-
mimeType?: string | undefined;
|
|
1950
1889
|
size?: number | undefined;
|
|
1951
1890
|
createdBy?: string | undefined;
|
|
1952
1891
|
sha256sum?: string | undefined;
|
|
1892
|
+
mimeType?: string | undefined;
|
|
1953
1893
|
}>;
|
|
1954
1894
|
}, {
|
|
1955
1895
|
name: "expiresIn";
|
|
@@ -1977,19 +1917,19 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
1977
1917
|
createdBy: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
1978
1918
|
createdAt: zod.ZodString;
|
|
1979
1919
|
deletedAt: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
1980
|
-
}, "
|
|
1920
|
+
}, "strip", zod.ZodTypeAny, {
|
|
1981
1921
|
path: string;
|
|
1982
1922
|
workspaceId: string;
|
|
1983
1923
|
id: string;
|
|
1984
1924
|
createdAt: string;
|
|
1985
1925
|
deletedAt?: string | null | undefined;
|
|
1986
1926
|
originalFileName?: string | null | undefined;
|
|
1987
|
-
mimeType?: string | null | undefined;
|
|
1988
1927
|
size?: number | null | undefined;
|
|
1928
|
+
createdBy?: string | null | undefined;
|
|
1929
|
+
mimeType?: string | null | undefined;
|
|
1989
1930
|
legacyKey?: string | null | undefined;
|
|
1990
1931
|
bucketName?: string | null | undefined;
|
|
1991
1932
|
encryptionKey?: string | null | undefined;
|
|
1992
|
-
createdBy?: string | null | undefined;
|
|
1993
1933
|
}, {
|
|
1994
1934
|
path: string;
|
|
1995
1935
|
workspaceId: string;
|
|
@@ -1997,14 +1937,14 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
1997
1937
|
createdAt: string;
|
|
1998
1938
|
deletedAt?: string | null | undefined;
|
|
1999
1939
|
originalFileName?: string | null | undefined;
|
|
2000
|
-
mimeType?: string | null | undefined;
|
|
2001
1940
|
size?: number | null | undefined;
|
|
1941
|
+
createdBy?: string | null | undefined;
|
|
1942
|
+
mimeType?: string | null | undefined;
|
|
2002
1943
|
legacyKey?: string | null | undefined;
|
|
2003
1944
|
bucketName?: string | null | undefined;
|
|
2004
1945
|
encryptionKey?: string | null | undefined;
|
|
2005
|
-
createdBy?: string | null | undefined;
|
|
2006
1946
|
}>;
|
|
2007
|
-
}, "
|
|
1947
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2008
1948
|
id: string;
|
|
2009
1949
|
uploadUrl: string;
|
|
2010
1950
|
expiresAt: string;
|
|
@@ -2015,12 +1955,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2015
1955
|
createdAt: string;
|
|
2016
1956
|
deletedAt?: string | null | undefined;
|
|
2017
1957
|
originalFileName?: string | null | undefined;
|
|
2018
|
-
mimeType?: string | null | undefined;
|
|
2019
1958
|
size?: number | null | undefined;
|
|
1959
|
+
createdBy?: string | null | undefined;
|
|
1960
|
+
mimeType?: string | null | undefined;
|
|
2020
1961
|
legacyKey?: string | null | undefined;
|
|
2021
1962
|
bucketName?: string | null | undefined;
|
|
2022
1963
|
encryptionKey?: string | null | undefined;
|
|
2023
|
-
createdBy?: string | null | undefined;
|
|
2024
1964
|
};
|
|
2025
1965
|
}, {
|
|
2026
1966
|
id: string;
|
|
@@ -2033,17 +1973,17 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2033
1973
|
createdAt: string;
|
|
2034
1974
|
deletedAt?: string | null | undefined;
|
|
2035
1975
|
originalFileName?: string | null | undefined;
|
|
2036
|
-
mimeType?: string | null | undefined;
|
|
2037
1976
|
size?: number | null | undefined;
|
|
1977
|
+
createdBy?: string | null | undefined;
|
|
1978
|
+
mimeType?: string | null | undefined;
|
|
2038
1979
|
legacyKey?: string | null | undefined;
|
|
2039
1980
|
bucketName?: string | null | undefined;
|
|
2040
1981
|
encryptionKey?: string | null | undefined;
|
|
2041
|
-
createdBy?: string | null | undefined;
|
|
2042
1982
|
};
|
|
2043
1983
|
}>, zod.ZodObject<{
|
|
2044
1984
|
url: zod.ZodString;
|
|
2045
1985
|
expiresAt: zod.ZodString;
|
|
2046
|
-
}, "
|
|
1986
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2047
1987
|
expiresAt: string;
|
|
2048
1988
|
url: string;
|
|
2049
1989
|
}, {
|
|
@@ -2084,19 +2024,19 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2084
2024
|
createdBy: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
2085
2025
|
createdAt: zod.ZodString;
|
|
2086
2026
|
deletedAt: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
2087
|
-
}, "
|
|
2027
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2088
2028
|
path: string;
|
|
2089
2029
|
workspaceId: string;
|
|
2090
2030
|
id: string;
|
|
2091
2031
|
createdAt: string;
|
|
2092
2032
|
deletedAt?: string | null | undefined;
|
|
2093
2033
|
originalFileName?: string | null | undefined;
|
|
2094
|
-
mimeType?: string | null | undefined;
|
|
2095
2034
|
size?: number | null | undefined;
|
|
2035
|
+
createdBy?: string | null | undefined;
|
|
2036
|
+
mimeType?: string | null | undefined;
|
|
2096
2037
|
legacyKey?: string | null | undefined;
|
|
2097
2038
|
bucketName?: string | null | undefined;
|
|
2098
2039
|
encryptionKey?: string | null | undefined;
|
|
2099
|
-
createdBy?: string | null | undefined;
|
|
2100
2040
|
}, {
|
|
2101
2041
|
path: string;
|
|
2102
2042
|
workspaceId: string;
|
|
@@ -2104,14 +2044,14 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2104
2044
|
createdAt: string;
|
|
2105
2045
|
deletedAt?: string | null | undefined;
|
|
2106
2046
|
originalFileName?: string | null | undefined;
|
|
2107
|
-
mimeType?: string | null | undefined;
|
|
2108
2047
|
size?: number | null | undefined;
|
|
2048
|
+
createdBy?: string | null | undefined;
|
|
2049
|
+
mimeType?: string | null | undefined;
|
|
2109
2050
|
legacyKey?: string | null | undefined;
|
|
2110
2051
|
bucketName?: string | null | undefined;
|
|
2111
2052
|
encryptionKey?: string | null | undefined;
|
|
2112
|
-
createdBy?: string | null | undefined;
|
|
2113
2053
|
}>, zod.ZodNull]>;
|
|
2114
|
-
}, "
|
|
2054
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2115
2055
|
expiresAt: string;
|
|
2116
2056
|
metadata: {
|
|
2117
2057
|
path: string;
|
|
@@ -2120,12 +2060,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2120
2060
|
createdAt: string;
|
|
2121
2061
|
deletedAt?: string | null | undefined;
|
|
2122
2062
|
originalFileName?: string | null | undefined;
|
|
2123
|
-
mimeType?: string | null | undefined;
|
|
2124
2063
|
size?: number | null | undefined;
|
|
2064
|
+
createdBy?: string | null | undefined;
|
|
2065
|
+
mimeType?: string | null | undefined;
|
|
2125
2066
|
legacyKey?: string | null | undefined;
|
|
2126
2067
|
bucketName?: string | null | undefined;
|
|
2127
2068
|
encryptionKey?: string | null | undefined;
|
|
2128
|
-
createdBy?: string | null | undefined;
|
|
2129
2069
|
} | null;
|
|
2130
2070
|
url: string;
|
|
2131
2071
|
}, {
|
|
@@ -2137,12 +2077,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2137
2077
|
createdAt: string;
|
|
2138
2078
|
deletedAt?: string | null | undefined;
|
|
2139
2079
|
originalFileName?: string | null | undefined;
|
|
2140
|
-
mimeType?: string | null | undefined;
|
|
2141
2080
|
size?: number | null | undefined;
|
|
2081
|
+
createdBy?: string | null | undefined;
|
|
2082
|
+
mimeType?: string | null | undefined;
|
|
2142
2083
|
legacyKey?: string | null | undefined;
|
|
2143
2084
|
bucketName?: string | null | undefined;
|
|
2144
2085
|
encryptionKey?: string | null | undefined;
|
|
2145
|
-
createdBy?: string | null | undefined;
|
|
2146
2086
|
} | null;
|
|
2147
2087
|
url: string;
|
|
2148
2088
|
}>;
|
|
@@ -2186,19 +2126,19 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2186
2126
|
createdBy: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
2187
2127
|
createdAt: zod.ZodString;
|
|
2188
2128
|
deletedAt: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
2189
|
-
}, "
|
|
2129
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2190
2130
|
path: string;
|
|
2191
2131
|
workspaceId: string;
|
|
2192
2132
|
id: string;
|
|
2193
2133
|
createdAt: string;
|
|
2194
2134
|
deletedAt?: string | null | undefined;
|
|
2195
2135
|
originalFileName?: string | null | undefined;
|
|
2196
|
-
mimeType?: string | null | undefined;
|
|
2197
2136
|
size?: number | null | undefined;
|
|
2137
|
+
createdBy?: string | null | undefined;
|
|
2138
|
+
mimeType?: string | null | undefined;
|
|
2198
2139
|
legacyKey?: string | null | undefined;
|
|
2199
2140
|
bucketName?: string | null | undefined;
|
|
2200
2141
|
encryptionKey?: string | null | undefined;
|
|
2201
|
-
createdBy?: string | null | undefined;
|
|
2202
2142
|
}, {
|
|
2203
2143
|
path: string;
|
|
2204
2144
|
workspaceId: string;
|
|
@@ -2206,14 +2146,14 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2206
2146
|
createdAt: string;
|
|
2207
2147
|
deletedAt?: string | null | undefined;
|
|
2208
2148
|
originalFileName?: string | null | undefined;
|
|
2209
|
-
mimeType?: string | null | undefined;
|
|
2210
2149
|
size?: number | null | undefined;
|
|
2150
|
+
createdBy?: string | null | undefined;
|
|
2151
|
+
mimeType?: string | null | undefined;
|
|
2211
2152
|
legacyKey?: string | null | undefined;
|
|
2212
2153
|
bucketName?: string | null | undefined;
|
|
2213
2154
|
encryptionKey?: string | null | undefined;
|
|
2214
|
-
createdBy?: string | null | undefined;
|
|
2215
2155
|
}>;
|
|
2216
|
-
}, "
|
|
2156
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2217
2157
|
id: string;
|
|
2218
2158
|
uploadUrl: string;
|
|
2219
2159
|
expiresAt: string;
|
|
@@ -2224,12 +2164,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2224
2164
|
createdAt: string;
|
|
2225
2165
|
deletedAt?: string | null | undefined;
|
|
2226
2166
|
originalFileName?: string | null | undefined;
|
|
2227
|
-
mimeType?: string | null | undefined;
|
|
2228
2167
|
size?: number | null | undefined;
|
|
2168
|
+
createdBy?: string | null | undefined;
|
|
2169
|
+
mimeType?: string | null | undefined;
|
|
2229
2170
|
legacyKey?: string | null | undefined;
|
|
2230
2171
|
bucketName?: string | null | undefined;
|
|
2231
2172
|
encryptionKey?: string | null | undefined;
|
|
2232
|
-
createdBy?: string | null | undefined;
|
|
2233
2173
|
};
|
|
2234
2174
|
}, {
|
|
2235
2175
|
id: string;
|
|
@@ -2242,17 +2182,17 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2242
2182
|
createdAt: string;
|
|
2243
2183
|
deletedAt?: string | null | undefined;
|
|
2244
2184
|
originalFileName?: string | null | undefined;
|
|
2245
|
-
mimeType?: string | null | undefined;
|
|
2246
2185
|
size?: number | null | undefined;
|
|
2186
|
+
createdBy?: string | null | undefined;
|
|
2187
|
+
mimeType?: string | null | undefined;
|
|
2247
2188
|
legacyKey?: string | null | undefined;
|
|
2248
2189
|
bucketName?: string | null | undefined;
|
|
2249
2190
|
encryptionKey?: string | null | undefined;
|
|
2250
|
-
createdBy?: string | null | undefined;
|
|
2251
2191
|
};
|
|
2252
2192
|
}>, zod.ZodObject<{
|
|
2253
2193
|
url: zod.ZodString;
|
|
2254
2194
|
expiresAt: zod.ZodString;
|
|
2255
|
-
}, "
|
|
2195
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2256
2196
|
expiresAt: string;
|
|
2257
2197
|
url: string;
|
|
2258
2198
|
}, {
|
|
@@ -2301,19 +2241,19 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2301
2241
|
createdBy: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
2302
2242
|
createdAt: zod.ZodString;
|
|
2303
2243
|
deletedAt: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
2304
|
-
}, "
|
|
2244
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2305
2245
|
path: string;
|
|
2306
2246
|
workspaceId: string;
|
|
2307
2247
|
id: string;
|
|
2308
2248
|
createdAt: string;
|
|
2309
2249
|
deletedAt?: string | null | undefined;
|
|
2310
2250
|
originalFileName?: string | null | undefined;
|
|
2311
|
-
mimeType?: string | null | undefined;
|
|
2312
2251
|
size?: number | null | undefined;
|
|
2252
|
+
createdBy?: string | null | undefined;
|
|
2253
|
+
mimeType?: string | null | undefined;
|
|
2313
2254
|
legacyKey?: string | null | undefined;
|
|
2314
2255
|
bucketName?: string | null | undefined;
|
|
2315
2256
|
encryptionKey?: string | null | undefined;
|
|
2316
|
-
createdBy?: string | null | undefined;
|
|
2317
2257
|
}, {
|
|
2318
2258
|
path: string;
|
|
2319
2259
|
workspaceId: string;
|
|
@@ -2321,12 +2261,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2321
2261
|
createdAt: string;
|
|
2322
2262
|
deletedAt?: string | null | undefined;
|
|
2323
2263
|
originalFileName?: string | null | undefined;
|
|
2324
|
-
mimeType?: string | null | undefined;
|
|
2325
2264
|
size?: number | null | undefined;
|
|
2265
|
+
createdBy?: string | null | undefined;
|
|
2266
|
+
mimeType?: string | null | undefined;
|
|
2326
2267
|
legacyKey?: string | null | undefined;
|
|
2327
2268
|
bucketName?: string | null | undefined;
|
|
2328
2269
|
encryptionKey?: string | null | undefined;
|
|
2329
|
-
createdBy?: string | null | undefined;
|
|
2330
2270
|
}>;
|
|
2331
2271
|
errors: [{
|
|
2332
2272
|
status: 404;
|
|
@@ -2343,7 +2283,7 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2343
2283
|
files: zod.ZodNumber;
|
|
2344
2284
|
permalinks: zod.ZodNumber;
|
|
2345
2285
|
hasCustomSettings: zod.ZodBoolean;
|
|
2346
|
-
}, "
|
|
2286
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2347
2287
|
workspaceId: string;
|
|
2348
2288
|
files: number;
|
|
2349
2289
|
permalinks: number;
|
|
@@ -2366,7 +2306,7 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2366
2306
|
bucketName: zod.ZodString;
|
|
2367
2307
|
keyArns: zod.ZodArray<zod.ZodString, "many">;
|
|
2368
2308
|
defaultS3LinkTtl: zod.ZodNumber;
|
|
2369
|
-
}, "
|
|
2309
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2370
2310
|
bucketName: string;
|
|
2371
2311
|
keyArns: string[];
|
|
2372
2312
|
defaultS3LinkTtl: number;
|
|
@@ -2400,7 +2340,7 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2400
2340
|
bucketName: zod.ZodString;
|
|
2401
2341
|
keyArns: zod.ZodArray<zod.ZodString, "many">;
|
|
2402
2342
|
defaultS3LinkTtl: zod.ZodNumber;
|
|
2403
|
-
}, "
|
|
2343
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2404
2344
|
bucketName: string;
|
|
2405
2345
|
keyArns: string[];
|
|
2406
2346
|
defaultS3LinkTtl: number;
|
|
@@ -2435,19 +2375,19 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2435
2375
|
createdBy: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
2436
2376
|
createdAt: zod.ZodString;
|
|
2437
2377
|
deletedAt: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
2438
|
-
}, "
|
|
2378
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2439
2379
|
path: string;
|
|
2440
2380
|
workspaceId: string;
|
|
2441
2381
|
id: string;
|
|
2442
2382
|
createdAt: string;
|
|
2443
2383
|
deletedAt?: string | null | undefined;
|
|
2444
2384
|
originalFileName?: string | null | undefined;
|
|
2445
|
-
mimeType?: string | null | undefined;
|
|
2446
2385
|
size?: number | null | undefined;
|
|
2386
|
+
createdBy?: string | null | undefined;
|
|
2387
|
+
mimeType?: string | null | undefined;
|
|
2447
2388
|
legacyKey?: string | null | undefined;
|
|
2448
2389
|
bucketName?: string | null | undefined;
|
|
2449
2390
|
encryptionKey?: string | null | undefined;
|
|
2450
|
-
createdBy?: string | null | undefined;
|
|
2451
2391
|
}, {
|
|
2452
2392
|
path: string;
|
|
2453
2393
|
workspaceId: string;
|
|
@@ -2455,14 +2395,14 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2455
2395
|
createdAt: string;
|
|
2456
2396
|
deletedAt?: string | null | undefined;
|
|
2457
2397
|
originalFileName?: string | null | undefined;
|
|
2458
|
-
mimeType?: string | null | undefined;
|
|
2459
2398
|
size?: number | null | undefined;
|
|
2399
|
+
createdBy?: string | null | undefined;
|
|
2400
|
+
mimeType?: string | null | undefined;
|
|
2460
2401
|
legacyKey?: string | null | undefined;
|
|
2461
2402
|
bucketName?: string | null | undefined;
|
|
2462
2403
|
encryptionKey?: string | null | undefined;
|
|
2463
|
-
createdBy?: string | null | undefined;
|
|
2464
2404
|
}>, zod.ZodNull]>;
|
|
2465
|
-
}, "
|
|
2405
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2466
2406
|
expiresAt: string;
|
|
2467
2407
|
metadata: {
|
|
2468
2408
|
path: string;
|
|
@@ -2471,12 +2411,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2471
2411
|
createdAt: string;
|
|
2472
2412
|
deletedAt?: string | null | undefined;
|
|
2473
2413
|
originalFileName?: string | null | undefined;
|
|
2474
|
-
mimeType?: string | null | undefined;
|
|
2475
2414
|
size?: number | null | undefined;
|
|
2415
|
+
createdBy?: string | null | undefined;
|
|
2416
|
+
mimeType?: string | null | undefined;
|
|
2476
2417
|
legacyKey?: string | null | undefined;
|
|
2477
2418
|
bucketName?: string | null | undefined;
|
|
2478
2419
|
encryptionKey?: string | null | undefined;
|
|
2479
|
-
createdBy?: string | null | undefined;
|
|
2480
2420
|
} | null;
|
|
2481
2421
|
url: string;
|
|
2482
2422
|
}, {
|
|
@@ -2488,12 +2428,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2488
2428
|
createdAt: string;
|
|
2489
2429
|
deletedAt?: string | null | undefined;
|
|
2490
2430
|
originalFileName?: string | null | undefined;
|
|
2491
|
-
mimeType?: string | null | undefined;
|
|
2492
2431
|
size?: number | null | undefined;
|
|
2432
|
+
createdBy?: string | null | undefined;
|
|
2433
|
+
mimeType?: string | null | undefined;
|
|
2493
2434
|
legacyKey?: string | null | undefined;
|
|
2494
2435
|
bucketName?: string | null | undefined;
|
|
2495
2436
|
encryptionKey?: string | null | undefined;
|
|
2496
|
-
createdBy?: string | null | undefined;
|
|
2497
2437
|
} | null;
|
|
2498
2438
|
url: string;
|
|
2499
2439
|
}>;
|
|
@@ -2512,7 +2452,7 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2512
2452
|
type: "Body";
|
|
2513
2453
|
schema: zod.ZodObject<{
|
|
2514
2454
|
expiresAt: zod.ZodOptional<zod.ZodString>;
|
|
2515
|
-
}, "
|
|
2455
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2516
2456
|
expiresAt?: string | undefined;
|
|
2517
2457
|
}, {
|
|
2518
2458
|
expiresAt?: string | undefined;
|
|
@@ -2529,7 +2469,7 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2529
2469
|
createdAt: zod.ZodString;
|
|
2530
2470
|
expiresAt: zod.ZodUnion<[zod.ZodString, zod.ZodNull]>;
|
|
2531
2471
|
createdBy: zod.ZodUnion<[zod.ZodString, zod.ZodNull]>;
|
|
2532
|
-
}, "
|
|
2472
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2533
2473
|
workspaceId: string;
|
|
2534
2474
|
id: string;
|
|
2535
2475
|
createdAt: string;
|
|
@@ -2561,7 +2501,7 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2561
2501
|
createdAt: zod.ZodString;
|
|
2562
2502
|
expiresAt: zod.ZodUnion<[zod.ZodString, zod.ZodNull]>;
|
|
2563
2503
|
createdBy: zod.ZodUnion<[zod.ZodString, zod.ZodNull]>;
|
|
2564
|
-
}, "
|
|
2504
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2565
2505
|
workspaceId: string;
|
|
2566
2506
|
id: string;
|
|
2567
2507
|
createdAt: string;
|
|
@@ -2590,18 +2530,18 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2590
2530
|
size: zod.ZodOptional<zod.ZodNumber>;
|
|
2591
2531
|
mimeType: zod.ZodOptional<zod.ZodString>;
|
|
2592
2532
|
createdBy: zod.ZodOptional<zod.ZodString>;
|
|
2593
|
-
}, "
|
|
2594
|
-
mimeType?: string | undefined;
|
|
2533
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2595
2534
|
size?: number | undefined;
|
|
2596
2535
|
createdBy?: string | undefined;
|
|
2597
2536
|
fileName?: string | undefined;
|
|
2598
2537
|
sha256sum?: string | undefined;
|
|
2599
|
-
}, {
|
|
2600
2538
|
mimeType?: string | undefined;
|
|
2539
|
+
}, {
|
|
2601
2540
|
size?: number | undefined;
|
|
2602
2541
|
createdBy?: string | undefined;
|
|
2603
2542
|
fileName?: string | undefined;
|
|
2604
2543
|
sha256sum?: string | undefined;
|
|
2544
|
+
mimeType?: string | undefined;
|
|
2605
2545
|
}>;
|
|
2606
2546
|
}, {
|
|
2607
2547
|
name: "expiresIn";
|
|
@@ -2629,19 +2569,19 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2629
2569
|
createdBy: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
2630
2570
|
createdAt: zod.ZodString;
|
|
2631
2571
|
deletedAt: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
2632
|
-
}, "
|
|
2572
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2633
2573
|
path: string;
|
|
2634
2574
|
workspaceId: string;
|
|
2635
2575
|
id: string;
|
|
2636
2576
|
createdAt: string;
|
|
2637
2577
|
deletedAt?: string | null | undefined;
|
|
2638
2578
|
originalFileName?: string | null | undefined;
|
|
2639
|
-
mimeType?: string | null | undefined;
|
|
2640
2579
|
size?: number | null | undefined;
|
|
2580
|
+
createdBy?: string | null | undefined;
|
|
2581
|
+
mimeType?: string | null | undefined;
|
|
2641
2582
|
legacyKey?: string | null | undefined;
|
|
2642
2583
|
bucketName?: string | null | undefined;
|
|
2643
2584
|
encryptionKey?: string | null | undefined;
|
|
2644
|
-
createdBy?: string | null | undefined;
|
|
2645
2585
|
}, {
|
|
2646
2586
|
path: string;
|
|
2647
2587
|
workspaceId: string;
|
|
@@ -2649,14 +2589,14 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2649
2589
|
createdAt: string;
|
|
2650
2590
|
deletedAt?: string | null | undefined;
|
|
2651
2591
|
originalFileName?: string | null | undefined;
|
|
2652
|
-
mimeType?: string | null | undefined;
|
|
2653
2592
|
size?: number | null | undefined;
|
|
2593
|
+
createdBy?: string | null | undefined;
|
|
2594
|
+
mimeType?: string | null | undefined;
|
|
2654
2595
|
legacyKey?: string | null | undefined;
|
|
2655
2596
|
bucketName?: string | null | undefined;
|
|
2656
2597
|
encryptionKey?: string | null | undefined;
|
|
2657
|
-
createdBy?: string | null | undefined;
|
|
2658
2598
|
}>;
|
|
2659
|
-
}, "
|
|
2599
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2660
2600
|
id: string;
|
|
2661
2601
|
uploadUrl: string;
|
|
2662
2602
|
expiresAt: string;
|
|
@@ -2667,12 +2607,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2667
2607
|
createdAt: string;
|
|
2668
2608
|
deletedAt?: string | null | undefined;
|
|
2669
2609
|
originalFileName?: string | null | undefined;
|
|
2670
|
-
mimeType?: string | null | undefined;
|
|
2671
2610
|
size?: number | null | undefined;
|
|
2611
|
+
createdBy?: string | null | undefined;
|
|
2612
|
+
mimeType?: string | null | undefined;
|
|
2672
2613
|
legacyKey?: string | null | undefined;
|
|
2673
2614
|
bucketName?: string | null | undefined;
|
|
2674
2615
|
encryptionKey?: string | null | undefined;
|
|
2675
|
-
createdBy?: string | null | undefined;
|
|
2676
2616
|
};
|
|
2677
2617
|
}, {
|
|
2678
2618
|
id: string;
|
|
@@ -2685,17 +2625,17 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2685
2625
|
createdAt: string;
|
|
2686
2626
|
deletedAt?: string | null | undefined;
|
|
2687
2627
|
originalFileName?: string | null | undefined;
|
|
2688
|
-
mimeType?: string | null | undefined;
|
|
2689
2628
|
size?: number | null | undefined;
|
|
2629
|
+
createdBy?: string | null | undefined;
|
|
2630
|
+
mimeType?: string | null | undefined;
|
|
2690
2631
|
legacyKey?: string | null | undefined;
|
|
2691
2632
|
bucketName?: string | null | undefined;
|
|
2692
2633
|
encryptionKey?: string | null | undefined;
|
|
2693
|
-
createdBy?: string | null | undefined;
|
|
2694
2634
|
};
|
|
2695
2635
|
}>, zod.ZodObject<{
|
|
2696
2636
|
url: zod.ZodString;
|
|
2697
2637
|
expiresAt: zod.ZodString;
|
|
2698
|
-
}, "
|
|
2638
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2699
2639
|
expiresAt: string;
|
|
2700
2640
|
url: string;
|
|
2701
2641
|
}, {
|
|
@@ -2733,19 +2673,19 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2733
2673
|
createdBy: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
2734
2674
|
createdAt: zod.ZodString;
|
|
2735
2675
|
deletedAt: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
2736
|
-
}, "
|
|
2676
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2737
2677
|
path: string;
|
|
2738
2678
|
workspaceId: string;
|
|
2739
2679
|
id: string;
|
|
2740
2680
|
createdAt: string;
|
|
2741
2681
|
deletedAt?: string | null | undefined;
|
|
2742
2682
|
originalFileName?: string | null | undefined;
|
|
2743
|
-
mimeType?: string | null | undefined;
|
|
2744
2683
|
size?: number | null | undefined;
|
|
2684
|
+
createdBy?: string | null | undefined;
|
|
2685
|
+
mimeType?: string | null | undefined;
|
|
2745
2686
|
legacyKey?: string | null | undefined;
|
|
2746
2687
|
bucketName?: string | null | undefined;
|
|
2747
2688
|
encryptionKey?: string | null | undefined;
|
|
2748
|
-
createdBy?: string | null | undefined;
|
|
2749
2689
|
}, {
|
|
2750
2690
|
path: string;
|
|
2751
2691
|
workspaceId: string;
|
|
@@ -2753,14 +2693,14 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2753
2693
|
createdAt: string;
|
|
2754
2694
|
deletedAt?: string | null | undefined;
|
|
2755
2695
|
originalFileName?: string | null | undefined;
|
|
2756
|
-
mimeType?: string | null | undefined;
|
|
2757
2696
|
size?: number | null | undefined;
|
|
2697
|
+
createdBy?: string | null | undefined;
|
|
2698
|
+
mimeType?: string | null | undefined;
|
|
2758
2699
|
legacyKey?: string | null | undefined;
|
|
2759
2700
|
bucketName?: string | null | undefined;
|
|
2760
2701
|
encryptionKey?: string | null | undefined;
|
|
2761
|
-
createdBy?: string | null | undefined;
|
|
2762
2702
|
}>;
|
|
2763
|
-
}, "
|
|
2703
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2764
2704
|
id: string;
|
|
2765
2705
|
uploadUrl: string;
|
|
2766
2706
|
expiresAt: string;
|
|
@@ -2771,12 +2711,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2771
2711
|
createdAt: string;
|
|
2772
2712
|
deletedAt?: string | null | undefined;
|
|
2773
2713
|
originalFileName?: string | null | undefined;
|
|
2774
|
-
mimeType?: string | null | undefined;
|
|
2775
2714
|
size?: number | null | undefined;
|
|
2715
|
+
createdBy?: string | null | undefined;
|
|
2716
|
+
mimeType?: string | null | undefined;
|
|
2776
2717
|
legacyKey?: string | null | undefined;
|
|
2777
2718
|
bucketName?: string | null | undefined;
|
|
2778
2719
|
encryptionKey?: string | null | undefined;
|
|
2779
|
-
createdBy?: string | null | undefined;
|
|
2780
2720
|
};
|
|
2781
2721
|
}, {
|
|
2782
2722
|
id: string;
|
|
@@ -2789,17 +2729,17 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2789
2729
|
createdAt: string;
|
|
2790
2730
|
deletedAt?: string | null | undefined;
|
|
2791
2731
|
originalFileName?: string | null | undefined;
|
|
2792
|
-
mimeType?: string | null | undefined;
|
|
2793
2732
|
size?: number | null | undefined;
|
|
2733
|
+
createdBy?: string | null | undefined;
|
|
2734
|
+
mimeType?: string | null | undefined;
|
|
2794
2735
|
legacyKey?: string | null | undefined;
|
|
2795
2736
|
bucketName?: string | null | undefined;
|
|
2796
2737
|
encryptionKey?: string | null | undefined;
|
|
2797
|
-
createdBy?: string | null | undefined;
|
|
2798
2738
|
};
|
|
2799
2739
|
}>, zod.ZodObject<{
|
|
2800
2740
|
url: zod.ZodString;
|
|
2801
2741
|
expiresAt: zod.ZodString;
|
|
2802
|
-
}, "
|
|
2742
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2803
2743
|
expiresAt: string;
|
|
2804
2744
|
url: string;
|
|
2805
2745
|
}, {
|
|
@@ -2840,19 +2780,19 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2840
2780
|
createdBy: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
2841
2781
|
createdAt: zod.ZodString;
|
|
2842
2782
|
deletedAt: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
2843
|
-
}, "
|
|
2783
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2844
2784
|
path: string;
|
|
2845
2785
|
workspaceId: string;
|
|
2846
2786
|
id: string;
|
|
2847
2787
|
createdAt: string;
|
|
2848
2788
|
deletedAt?: string | null | undefined;
|
|
2849
2789
|
originalFileName?: string | null | undefined;
|
|
2850
|
-
mimeType?: string | null | undefined;
|
|
2851
2790
|
size?: number | null | undefined;
|
|
2791
|
+
createdBy?: string | null | undefined;
|
|
2792
|
+
mimeType?: string | null | undefined;
|
|
2852
2793
|
legacyKey?: string | null | undefined;
|
|
2853
2794
|
bucketName?: string | null | undefined;
|
|
2854
2795
|
encryptionKey?: string | null | undefined;
|
|
2855
|
-
createdBy?: string | null | undefined;
|
|
2856
2796
|
}, {
|
|
2857
2797
|
path: string;
|
|
2858
2798
|
workspaceId: string;
|
|
@@ -2860,12 +2800,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2860
2800
|
createdAt: string;
|
|
2861
2801
|
deletedAt?: string | null | undefined;
|
|
2862
2802
|
originalFileName?: string | null | undefined;
|
|
2863
|
-
mimeType?: string | null | undefined;
|
|
2864
2803
|
size?: number | null | undefined;
|
|
2804
|
+
createdBy?: string | null | undefined;
|
|
2805
|
+
mimeType?: string | null | undefined;
|
|
2865
2806
|
legacyKey?: string | null | undefined;
|
|
2866
2807
|
bucketName?: string | null | undefined;
|
|
2867
2808
|
encryptionKey?: string | null | undefined;
|
|
2868
|
-
createdBy?: string | null | undefined;
|
|
2869
2809
|
}>;
|
|
2870
2810
|
errors: [{
|
|
2871
2811
|
status: 404;
|
|
@@ -2886,21 +2826,21 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2886
2826
|
size: zod.ZodOptional<zod.ZodNumber>;
|
|
2887
2827
|
mimeType: zod.ZodOptional<zod.ZodString>;
|
|
2888
2828
|
createdBy: zod.ZodOptional<zod.ZodString>;
|
|
2889
|
-
}, "
|
|
2829
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2890
2830
|
fileName: string;
|
|
2891
|
-
mimeType?: string | undefined;
|
|
2892
2831
|
size?: number | undefined;
|
|
2893
2832
|
createdBy?: string | undefined;
|
|
2894
2833
|
sha256sum?: string | undefined;
|
|
2834
|
+
mimeType?: string | undefined;
|
|
2895
2835
|
}, {
|
|
2896
2836
|
fileName: string;
|
|
2897
|
-
mimeType?: string | undefined;
|
|
2898
2837
|
size?: number | undefined;
|
|
2899
2838
|
createdBy?: string | undefined;
|
|
2900
2839
|
sha256sum?: string | undefined;
|
|
2840
|
+
mimeType?: string | undefined;
|
|
2901
2841
|
}>, "many">, zod.ZodObject<{
|
|
2902
2842
|
files: zod.ZodArray<zod.ZodString, "many">;
|
|
2903
|
-
}, "
|
|
2843
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2904
2844
|
files: string[];
|
|
2905
2845
|
}, {
|
|
2906
2846
|
files: string[];
|
|
@@ -2919,19 +2859,19 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2919
2859
|
createdBy: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
2920
2860
|
createdAt: zod.ZodString;
|
|
2921
2861
|
deletedAt: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
2922
|
-
}, "
|
|
2862
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2923
2863
|
path: string;
|
|
2924
2864
|
workspaceId: string;
|
|
2925
2865
|
id: string;
|
|
2926
2866
|
createdAt: string;
|
|
2927
2867
|
deletedAt?: string | null | undefined;
|
|
2928
2868
|
originalFileName?: string | null | undefined;
|
|
2929
|
-
mimeType?: string | null | undefined;
|
|
2930
2869
|
size?: number | null | undefined;
|
|
2870
|
+
createdBy?: string | null | undefined;
|
|
2871
|
+
mimeType?: string | null | undefined;
|
|
2931
2872
|
legacyKey?: string | null | undefined;
|
|
2932
2873
|
bucketName?: string | null | undefined;
|
|
2933
2874
|
encryptionKey?: string | null | undefined;
|
|
2934
|
-
createdBy?: string | null | undefined;
|
|
2935
2875
|
}, {
|
|
2936
2876
|
path: string;
|
|
2937
2877
|
workspaceId: string;
|
|
@@ -2939,12 +2879,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2939
2879
|
createdAt: string;
|
|
2940
2880
|
deletedAt?: string | null | undefined;
|
|
2941
2881
|
originalFileName?: string | null | undefined;
|
|
2942
|
-
mimeType?: string | null | undefined;
|
|
2943
2882
|
size?: number | null | undefined;
|
|
2883
|
+
createdBy?: string | null | undefined;
|
|
2884
|
+
mimeType?: string | null | undefined;
|
|
2944
2885
|
legacyKey?: string | null | undefined;
|
|
2945
2886
|
bucketName?: string | null | undefined;
|
|
2946
2887
|
encryptionKey?: string | null | undefined;
|
|
2947
|
-
createdBy?: string | null | undefined;
|
|
2948
2888
|
}>, "many">, zod.ZodObject<{
|
|
2949
2889
|
files: zod.ZodArray<zod.ZodObject<{
|
|
2950
2890
|
id: zod.ZodString;
|
|
@@ -2959,19 +2899,19 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2959
2899
|
createdBy: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
2960
2900
|
createdAt: zod.ZodString;
|
|
2961
2901
|
deletedAt: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
2962
|
-
}, "
|
|
2902
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2963
2903
|
path: string;
|
|
2964
2904
|
workspaceId: string;
|
|
2965
2905
|
id: string;
|
|
2966
2906
|
createdAt: string;
|
|
2967
2907
|
deletedAt?: string | null | undefined;
|
|
2968
2908
|
originalFileName?: string | null | undefined;
|
|
2969
|
-
mimeType?: string | null | undefined;
|
|
2970
2909
|
size?: number | null | undefined;
|
|
2910
|
+
createdBy?: string | null | undefined;
|
|
2911
|
+
mimeType?: string | null | undefined;
|
|
2971
2912
|
legacyKey?: string | null | undefined;
|
|
2972
2913
|
bucketName?: string | null | undefined;
|
|
2973
2914
|
encryptionKey?: string | null | undefined;
|
|
2974
|
-
createdBy?: string | null | undefined;
|
|
2975
2915
|
}, {
|
|
2976
2916
|
path: string;
|
|
2977
2917
|
workspaceId: string;
|
|
@@ -2979,14 +2919,14 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2979
2919
|
createdAt: string;
|
|
2980
2920
|
deletedAt?: string | null | undefined;
|
|
2981
2921
|
originalFileName?: string | null | undefined;
|
|
2982
|
-
mimeType?: string | null | undefined;
|
|
2983
2922
|
size?: number | null | undefined;
|
|
2923
|
+
createdBy?: string | null | undefined;
|
|
2924
|
+
mimeType?: string | null | undefined;
|
|
2984
2925
|
legacyKey?: string | null | undefined;
|
|
2985
2926
|
bucketName?: string | null | undefined;
|
|
2986
2927
|
encryptionKey?: string | null | undefined;
|
|
2987
|
-
createdBy?: string | null | undefined;
|
|
2988
2928
|
}>, "many">;
|
|
2989
|
-
}, "
|
|
2929
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2990
2930
|
files: {
|
|
2991
2931
|
path: string;
|
|
2992
2932
|
workspaceId: string;
|
|
@@ -2994,12 +2934,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2994
2934
|
createdAt: string;
|
|
2995
2935
|
deletedAt?: string | null | undefined;
|
|
2996
2936
|
originalFileName?: string | null | undefined;
|
|
2997
|
-
mimeType?: string | null | undefined;
|
|
2998
2937
|
size?: number | null | undefined;
|
|
2938
|
+
createdBy?: string | null | undefined;
|
|
2939
|
+
mimeType?: string | null | undefined;
|
|
2999
2940
|
legacyKey?: string | null | undefined;
|
|
3000
2941
|
bucketName?: string | null | undefined;
|
|
3001
2942
|
encryptionKey?: string | null | undefined;
|
|
3002
|
-
createdBy?: string | null | undefined;
|
|
3003
2943
|
}[];
|
|
3004
2944
|
}, {
|
|
3005
2945
|
files: {
|
|
@@ -3009,12 +2949,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3009
2949
|
createdAt: string;
|
|
3010
2950
|
deletedAt?: string | null | undefined;
|
|
3011
2951
|
originalFileName?: string | null | undefined;
|
|
3012
|
-
mimeType?: string | null | undefined;
|
|
3013
2952
|
size?: number | null | undefined;
|
|
2953
|
+
createdBy?: string | null | undefined;
|
|
2954
|
+
mimeType?: string | null | undefined;
|
|
3014
2955
|
legacyKey?: string | null | undefined;
|
|
3015
2956
|
bucketName?: string | null | undefined;
|
|
3016
2957
|
encryptionKey?: string | null | undefined;
|
|
3017
|
-
createdBy?: string | null | undefined;
|
|
3018
2958
|
}[];
|
|
3019
2959
|
}>]>;
|
|
3020
2960
|
}, {
|
|
@@ -3065,7 +3005,7 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3065
3005
|
createdAt: zod.ZodString;
|
|
3066
3006
|
expiresAt: zod.ZodUnion<[zod.ZodString, zod.ZodNull]>;
|
|
3067
3007
|
createdBy: zod.ZodUnion<[zod.ZodString, zod.ZodNull]>;
|
|
3068
|
-
}, "
|
|
3008
|
+
}, "strip", zod.ZodTypeAny, {
|
|
3069
3009
|
workspaceId: string;
|
|
3070
3010
|
id: string;
|
|
3071
3011
|
createdAt: string;
|
|
@@ -3111,19 +3051,19 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3111
3051
|
createdBy: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
3112
3052
|
createdAt: zod.ZodString;
|
|
3113
3053
|
deletedAt: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
3114
|
-
}, "
|
|
3054
|
+
}, "strip", zod.ZodTypeAny, {
|
|
3115
3055
|
path: string;
|
|
3116
3056
|
workspaceId: string;
|
|
3117
3057
|
id: string;
|
|
3118
3058
|
createdAt: string;
|
|
3119
3059
|
deletedAt?: string | null | undefined;
|
|
3120
3060
|
originalFileName?: string | null | undefined;
|
|
3121
|
-
mimeType?: string | null | undefined;
|
|
3122
3061
|
size?: number | null | undefined;
|
|
3062
|
+
createdBy?: string | null | undefined;
|
|
3063
|
+
mimeType?: string | null | undefined;
|
|
3123
3064
|
legacyKey?: string | null | undefined;
|
|
3124
3065
|
bucketName?: string | null | undefined;
|
|
3125
3066
|
encryptionKey?: string | null | undefined;
|
|
3126
|
-
createdBy?: string | null | undefined;
|
|
3127
3067
|
}, {
|
|
3128
3068
|
path: string;
|
|
3129
3069
|
workspaceId: string;
|
|
@@ -3131,14 +3071,14 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3131
3071
|
createdAt: string;
|
|
3132
3072
|
deletedAt?: string | null | undefined;
|
|
3133
3073
|
originalFileName?: string | null | undefined;
|
|
3134
|
-
mimeType?: string | null | undefined;
|
|
3135
3074
|
size?: number | null | undefined;
|
|
3075
|
+
createdBy?: string | null | undefined;
|
|
3076
|
+
mimeType?: string | null | undefined;
|
|
3136
3077
|
legacyKey?: string | null | undefined;
|
|
3137
3078
|
bucketName?: string | null | undefined;
|
|
3138
3079
|
encryptionKey?: string | null | undefined;
|
|
3139
|
-
createdBy?: string | null | undefined;
|
|
3140
3080
|
}>, zod.ZodNull]>;
|
|
3141
|
-
}, "
|
|
3081
|
+
}, "strip", zod.ZodTypeAny, {
|
|
3142
3082
|
expiresAt: string;
|
|
3143
3083
|
metadata: {
|
|
3144
3084
|
path: string;
|
|
@@ -3147,12 +3087,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3147
3087
|
createdAt: string;
|
|
3148
3088
|
deletedAt?: string | null | undefined;
|
|
3149
3089
|
originalFileName?: string | null | undefined;
|
|
3150
|
-
mimeType?: string | null | undefined;
|
|
3151
3090
|
size?: number | null | undefined;
|
|
3091
|
+
createdBy?: string | null | undefined;
|
|
3092
|
+
mimeType?: string | null | undefined;
|
|
3152
3093
|
legacyKey?: string | null | undefined;
|
|
3153
3094
|
bucketName?: string | null | undefined;
|
|
3154
3095
|
encryptionKey?: string | null | undefined;
|
|
3155
|
-
createdBy?: string | null | undefined;
|
|
3156
3096
|
} | null;
|
|
3157
3097
|
url: string;
|
|
3158
3098
|
}, {
|
|
@@ -3164,12 +3104,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3164
3104
|
createdAt: string;
|
|
3165
3105
|
deletedAt?: string | null | undefined;
|
|
3166
3106
|
originalFileName?: string | null | undefined;
|
|
3167
|
-
mimeType?: string | null | undefined;
|
|
3168
3107
|
size?: number | null | undefined;
|
|
3108
|
+
createdBy?: string | null | undefined;
|
|
3109
|
+
mimeType?: string | null | undefined;
|
|
3169
3110
|
legacyKey?: string | null | undefined;
|
|
3170
3111
|
bucketName?: string | null | undefined;
|
|
3171
3112
|
encryptionKey?: string | null | undefined;
|
|
3172
|
-
createdBy?: string | null | undefined;
|
|
3173
3113
|
} | null;
|
|
3174
3114
|
url: string;
|
|
3175
3115
|
}>;
|
|
@@ -3192,18 +3132,18 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3192
3132
|
size: zod.ZodOptional<zod.ZodNumber>;
|
|
3193
3133
|
mimeType: zod.ZodOptional<zod.ZodString>;
|
|
3194
3134
|
createdBy: zod.ZodOptional<zod.ZodString>;
|
|
3195
|
-
}, "
|
|
3196
|
-
mimeType?: string | undefined;
|
|
3135
|
+
}, "strip", zod.ZodTypeAny, {
|
|
3197
3136
|
size?: number | undefined;
|
|
3198
3137
|
createdBy?: string | undefined;
|
|
3199
3138
|
fileName?: string | undefined;
|
|
3200
3139
|
sha256sum?: string | undefined;
|
|
3201
|
-
}, {
|
|
3202
3140
|
mimeType?: string | undefined;
|
|
3141
|
+
}, {
|
|
3203
3142
|
size?: number | undefined;
|
|
3204
3143
|
createdBy?: string | undefined;
|
|
3205
3144
|
fileName?: string | undefined;
|
|
3206
3145
|
sha256sum?: string | undefined;
|
|
3146
|
+
mimeType?: string | undefined;
|
|
3207
3147
|
}>;
|
|
3208
3148
|
}, {
|
|
3209
3149
|
name: "expiresIn";
|
|
@@ -3231,19 +3171,19 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3231
3171
|
createdBy: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
3232
3172
|
createdAt: zod.ZodString;
|
|
3233
3173
|
deletedAt: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
3234
|
-
}, "
|
|
3174
|
+
}, "strip", zod.ZodTypeAny, {
|
|
3235
3175
|
path: string;
|
|
3236
3176
|
workspaceId: string;
|
|
3237
3177
|
id: string;
|
|
3238
3178
|
createdAt: string;
|
|
3239
3179
|
deletedAt?: string | null | undefined;
|
|
3240
3180
|
originalFileName?: string | null | undefined;
|
|
3241
|
-
mimeType?: string | null | undefined;
|
|
3242
3181
|
size?: number | null | undefined;
|
|
3182
|
+
createdBy?: string | null | undefined;
|
|
3183
|
+
mimeType?: string | null | undefined;
|
|
3243
3184
|
legacyKey?: string | null | undefined;
|
|
3244
3185
|
bucketName?: string | null | undefined;
|
|
3245
3186
|
encryptionKey?: string | null | undefined;
|
|
3246
|
-
createdBy?: string | null | undefined;
|
|
3247
3187
|
}, {
|
|
3248
3188
|
path: string;
|
|
3249
3189
|
workspaceId: string;
|
|
@@ -3251,14 +3191,14 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3251
3191
|
createdAt: string;
|
|
3252
3192
|
deletedAt?: string | null | undefined;
|
|
3253
3193
|
originalFileName?: string | null | undefined;
|
|
3254
|
-
mimeType?: string | null | undefined;
|
|
3255
3194
|
size?: number | null | undefined;
|
|
3195
|
+
createdBy?: string | null | undefined;
|
|
3196
|
+
mimeType?: string | null | undefined;
|
|
3256
3197
|
legacyKey?: string | null | undefined;
|
|
3257
3198
|
bucketName?: string | null | undefined;
|
|
3258
3199
|
encryptionKey?: string | null | undefined;
|
|
3259
|
-
createdBy?: string | null | undefined;
|
|
3260
3200
|
}>;
|
|
3261
|
-
}, "
|
|
3201
|
+
}, "strip", zod.ZodTypeAny, {
|
|
3262
3202
|
id: string;
|
|
3263
3203
|
uploadUrl: string;
|
|
3264
3204
|
expiresAt: string;
|
|
@@ -3269,12 +3209,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3269
3209
|
createdAt: string;
|
|
3270
3210
|
deletedAt?: string | null | undefined;
|
|
3271
3211
|
originalFileName?: string | null | undefined;
|
|
3272
|
-
mimeType?: string | null | undefined;
|
|
3273
3212
|
size?: number | null | undefined;
|
|
3213
|
+
createdBy?: string | null | undefined;
|
|
3214
|
+
mimeType?: string | null | undefined;
|
|
3274
3215
|
legacyKey?: string | null | undefined;
|
|
3275
3216
|
bucketName?: string | null | undefined;
|
|
3276
3217
|
encryptionKey?: string | null | undefined;
|
|
3277
|
-
createdBy?: string | null | undefined;
|
|
3278
3218
|
};
|
|
3279
3219
|
}, {
|
|
3280
3220
|
id: string;
|
|
@@ -3287,17 +3227,17 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3287
3227
|
createdAt: string;
|
|
3288
3228
|
deletedAt?: string | null | undefined;
|
|
3289
3229
|
originalFileName?: string | null | undefined;
|
|
3290
|
-
mimeType?: string | null | undefined;
|
|
3291
3230
|
size?: number | null | undefined;
|
|
3231
|
+
createdBy?: string | null | undefined;
|
|
3232
|
+
mimeType?: string | null | undefined;
|
|
3292
3233
|
legacyKey?: string | null | undefined;
|
|
3293
3234
|
bucketName?: string | null | undefined;
|
|
3294
3235
|
encryptionKey?: string | null | undefined;
|
|
3295
|
-
createdBy?: string | null | undefined;
|
|
3296
3236
|
};
|
|
3297
3237
|
}>, zod.ZodObject<{
|
|
3298
3238
|
url: zod.ZodString;
|
|
3299
3239
|
expiresAt: zod.ZodString;
|
|
3300
|
-
}, "
|
|
3240
|
+
}, "strip", zod.ZodTypeAny, {
|
|
3301
3241
|
expiresAt: string;
|
|
3302
3242
|
url: string;
|
|
3303
3243
|
}, {
|
|
@@ -3335,19 +3275,19 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3335
3275
|
createdBy: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
3336
3276
|
createdAt: zod.ZodString;
|
|
3337
3277
|
deletedAt: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
3338
|
-
}, "
|
|
3278
|
+
}, "strip", zod.ZodTypeAny, {
|
|
3339
3279
|
path: string;
|
|
3340
3280
|
workspaceId: string;
|
|
3341
3281
|
id: string;
|
|
3342
3282
|
createdAt: string;
|
|
3343
3283
|
deletedAt?: string | null | undefined;
|
|
3344
3284
|
originalFileName?: string | null | undefined;
|
|
3345
|
-
mimeType?: string | null | undefined;
|
|
3346
3285
|
size?: number | null | undefined;
|
|
3286
|
+
createdBy?: string | null | undefined;
|
|
3287
|
+
mimeType?: string | null | undefined;
|
|
3347
3288
|
legacyKey?: string | null | undefined;
|
|
3348
3289
|
bucketName?: string | null | undefined;
|
|
3349
3290
|
encryptionKey?: string | null | undefined;
|
|
3350
|
-
createdBy?: string | null | undefined;
|
|
3351
3291
|
}, {
|
|
3352
3292
|
path: string;
|
|
3353
3293
|
workspaceId: string;
|
|
@@ -3355,14 +3295,14 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3355
3295
|
createdAt: string;
|
|
3356
3296
|
deletedAt?: string | null | undefined;
|
|
3357
3297
|
originalFileName?: string | null | undefined;
|
|
3358
|
-
mimeType?: string | null | undefined;
|
|
3359
3298
|
size?: number | null | undefined;
|
|
3299
|
+
createdBy?: string | null | undefined;
|
|
3300
|
+
mimeType?: string | null | undefined;
|
|
3360
3301
|
legacyKey?: string | null | undefined;
|
|
3361
3302
|
bucketName?: string | null | undefined;
|
|
3362
3303
|
encryptionKey?: string | null | undefined;
|
|
3363
|
-
createdBy?: string | null | undefined;
|
|
3364
3304
|
}>;
|
|
3365
|
-
}, "
|
|
3305
|
+
}, "strip", zod.ZodTypeAny, {
|
|
3366
3306
|
id: string;
|
|
3367
3307
|
uploadUrl: string;
|
|
3368
3308
|
expiresAt: string;
|
|
@@ -3373,12 +3313,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3373
3313
|
createdAt: string;
|
|
3374
3314
|
deletedAt?: string | null | undefined;
|
|
3375
3315
|
originalFileName?: string | null | undefined;
|
|
3376
|
-
mimeType?: string | null | undefined;
|
|
3377
3316
|
size?: number | null | undefined;
|
|
3317
|
+
createdBy?: string | null | undefined;
|
|
3318
|
+
mimeType?: string | null | undefined;
|
|
3378
3319
|
legacyKey?: string | null | undefined;
|
|
3379
3320
|
bucketName?: string | null | undefined;
|
|
3380
3321
|
encryptionKey?: string | null | undefined;
|
|
3381
|
-
createdBy?: string | null | undefined;
|
|
3382
3322
|
};
|
|
3383
3323
|
}, {
|
|
3384
3324
|
id: string;
|
|
@@ -3391,17 +3331,17 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3391
3331
|
createdAt: string;
|
|
3392
3332
|
deletedAt?: string | null | undefined;
|
|
3393
3333
|
originalFileName?: string | null | undefined;
|
|
3394
|
-
mimeType?: string | null | undefined;
|
|
3395
3334
|
size?: number | null | undefined;
|
|
3335
|
+
createdBy?: string | null | undefined;
|
|
3336
|
+
mimeType?: string | null | undefined;
|
|
3396
3337
|
legacyKey?: string | null | undefined;
|
|
3397
3338
|
bucketName?: string | null | undefined;
|
|
3398
3339
|
encryptionKey?: string | null | undefined;
|
|
3399
|
-
createdBy?: string | null | undefined;
|
|
3400
3340
|
};
|
|
3401
3341
|
}>, zod.ZodObject<{
|
|
3402
3342
|
url: zod.ZodString;
|
|
3403
3343
|
expiresAt: zod.ZodString;
|
|
3404
|
-
}, "
|
|
3344
|
+
}, "strip", zod.ZodTypeAny, {
|
|
3405
3345
|
expiresAt: string;
|
|
3406
3346
|
url: string;
|
|
3407
3347
|
}, {
|
|
@@ -3442,19 +3382,19 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3442
3382
|
createdBy: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
3443
3383
|
createdAt: zod.ZodString;
|
|
3444
3384
|
deletedAt: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
3445
|
-
}, "
|
|
3385
|
+
}, "strip", zod.ZodTypeAny, {
|
|
3446
3386
|
path: string;
|
|
3447
3387
|
workspaceId: string;
|
|
3448
3388
|
id: string;
|
|
3449
3389
|
createdAt: string;
|
|
3450
3390
|
deletedAt?: string | null | undefined;
|
|
3451
3391
|
originalFileName?: string | null | undefined;
|
|
3452
|
-
mimeType?: string | null | undefined;
|
|
3453
3392
|
size?: number | null | undefined;
|
|
3393
|
+
createdBy?: string | null | undefined;
|
|
3394
|
+
mimeType?: string | null | undefined;
|
|
3454
3395
|
legacyKey?: string | null | undefined;
|
|
3455
3396
|
bucketName?: string | null | undefined;
|
|
3456
3397
|
encryptionKey?: string | null | undefined;
|
|
3457
|
-
createdBy?: string | null | undefined;
|
|
3458
3398
|
}, {
|
|
3459
3399
|
path: string;
|
|
3460
3400
|
workspaceId: string;
|
|
@@ -3462,12 +3402,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3462
3402
|
createdAt: string;
|
|
3463
3403
|
deletedAt?: string | null | undefined;
|
|
3464
3404
|
originalFileName?: string | null | undefined;
|
|
3465
|
-
mimeType?: string | null | undefined;
|
|
3466
3405
|
size?: number | null | undefined;
|
|
3406
|
+
createdBy?: string | null | undefined;
|
|
3407
|
+
mimeType?: string | null | undefined;
|
|
3467
3408
|
legacyKey?: string | null | undefined;
|
|
3468
3409
|
bucketName?: string | null | undefined;
|
|
3469
3410
|
encryptionKey?: string | null | undefined;
|
|
3470
|
-
createdBy?: string | null | undefined;
|
|
3471
3411
|
}>;
|
|
3472
3412
|
errors: [{
|
|
3473
3413
|
status: 404;
|
|
@@ -3488,21 +3428,21 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3488
3428
|
size: zod.ZodOptional<zod.ZodNumber>;
|
|
3489
3429
|
mimeType: zod.ZodOptional<zod.ZodString>;
|
|
3490
3430
|
createdBy: zod.ZodOptional<zod.ZodString>;
|
|
3491
|
-
}, "
|
|
3431
|
+
}, "strip", zod.ZodTypeAny, {
|
|
3492
3432
|
fileName: string;
|
|
3493
|
-
mimeType?: string | undefined;
|
|
3494
3433
|
size?: number | undefined;
|
|
3495
3434
|
createdBy?: string | undefined;
|
|
3496
3435
|
sha256sum?: string | undefined;
|
|
3436
|
+
mimeType?: string | undefined;
|
|
3497
3437
|
}, {
|
|
3498
3438
|
fileName: string;
|
|
3499
|
-
mimeType?: string | undefined;
|
|
3500
3439
|
size?: number | undefined;
|
|
3501
3440
|
createdBy?: string | undefined;
|
|
3502
3441
|
sha256sum?: string | undefined;
|
|
3442
|
+
mimeType?: string | undefined;
|
|
3503
3443
|
}>, "many">, zod.ZodObject<{
|
|
3504
3444
|
files: zod.ZodArray<zod.ZodString, "many">;
|
|
3505
|
-
}, "
|
|
3445
|
+
}, "strip", zod.ZodTypeAny, {
|
|
3506
3446
|
files: string[];
|
|
3507
3447
|
}, {
|
|
3508
3448
|
files: string[];
|
|
@@ -3521,19 +3461,19 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3521
3461
|
createdBy: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
3522
3462
|
createdAt: zod.ZodString;
|
|
3523
3463
|
deletedAt: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
3524
|
-
}, "
|
|
3464
|
+
}, "strip", zod.ZodTypeAny, {
|
|
3525
3465
|
path: string;
|
|
3526
3466
|
workspaceId: string;
|
|
3527
3467
|
id: string;
|
|
3528
3468
|
createdAt: string;
|
|
3529
3469
|
deletedAt?: string | null | undefined;
|
|
3530
3470
|
originalFileName?: string | null | undefined;
|
|
3531
|
-
mimeType?: string | null | undefined;
|
|
3532
3471
|
size?: number | null | undefined;
|
|
3472
|
+
createdBy?: string | null | undefined;
|
|
3473
|
+
mimeType?: string | null | undefined;
|
|
3533
3474
|
legacyKey?: string | null | undefined;
|
|
3534
3475
|
bucketName?: string | null | undefined;
|
|
3535
3476
|
encryptionKey?: string | null | undefined;
|
|
3536
|
-
createdBy?: string | null | undefined;
|
|
3537
3477
|
}, {
|
|
3538
3478
|
path: string;
|
|
3539
3479
|
workspaceId: string;
|
|
@@ -3541,12 +3481,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3541
3481
|
createdAt: string;
|
|
3542
3482
|
deletedAt?: string | null | undefined;
|
|
3543
3483
|
originalFileName?: string | null | undefined;
|
|
3544
|
-
mimeType?: string | null | undefined;
|
|
3545
3484
|
size?: number | null | undefined;
|
|
3485
|
+
createdBy?: string | null | undefined;
|
|
3486
|
+
mimeType?: string | null | undefined;
|
|
3546
3487
|
legacyKey?: string | null | undefined;
|
|
3547
3488
|
bucketName?: string | null | undefined;
|
|
3548
3489
|
encryptionKey?: string | null | undefined;
|
|
3549
|
-
createdBy?: string | null | undefined;
|
|
3550
3490
|
}>, "many">, zod.ZodObject<{
|
|
3551
3491
|
files: zod.ZodArray<zod.ZodObject<{
|
|
3552
3492
|
id: zod.ZodString;
|
|
@@ -3561,19 +3501,19 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3561
3501
|
createdBy: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
3562
3502
|
createdAt: zod.ZodString;
|
|
3563
3503
|
deletedAt: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
3564
|
-
}, "
|
|
3504
|
+
}, "strip", zod.ZodTypeAny, {
|
|
3565
3505
|
path: string;
|
|
3566
3506
|
workspaceId: string;
|
|
3567
3507
|
id: string;
|
|
3568
3508
|
createdAt: string;
|
|
3569
3509
|
deletedAt?: string | null | undefined;
|
|
3570
3510
|
originalFileName?: string | null | undefined;
|
|
3571
|
-
mimeType?: string | null | undefined;
|
|
3572
3511
|
size?: number | null | undefined;
|
|
3512
|
+
createdBy?: string | null | undefined;
|
|
3513
|
+
mimeType?: string | null | undefined;
|
|
3573
3514
|
legacyKey?: string | null | undefined;
|
|
3574
3515
|
bucketName?: string | null | undefined;
|
|
3575
3516
|
encryptionKey?: string | null | undefined;
|
|
3576
|
-
createdBy?: string | null | undefined;
|
|
3577
3517
|
}, {
|
|
3578
3518
|
path: string;
|
|
3579
3519
|
workspaceId: string;
|
|
@@ -3581,14 +3521,14 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3581
3521
|
createdAt: string;
|
|
3582
3522
|
deletedAt?: string | null | undefined;
|
|
3583
3523
|
originalFileName?: string | null | undefined;
|
|
3584
|
-
mimeType?: string | null | undefined;
|
|
3585
3524
|
size?: number | null | undefined;
|
|
3525
|
+
createdBy?: string | null | undefined;
|
|
3526
|
+
mimeType?: string | null | undefined;
|
|
3586
3527
|
legacyKey?: string | null | undefined;
|
|
3587
3528
|
bucketName?: string | null | undefined;
|
|
3588
3529
|
encryptionKey?: string | null | undefined;
|
|
3589
|
-
createdBy?: string | null | undefined;
|
|
3590
3530
|
}>, "many">;
|
|
3591
|
-
}, "
|
|
3531
|
+
}, "strip", zod.ZodTypeAny, {
|
|
3592
3532
|
files: {
|
|
3593
3533
|
path: string;
|
|
3594
3534
|
workspaceId: string;
|
|
@@ -3596,12 +3536,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3596
3536
|
createdAt: string;
|
|
3597
3537
|
deletedAt?: string | null | undefined;
|
|
3598
3538
|
originalFileName?: string | null | undefined;
|
|
3599
|
-
mimeType?: string | null | undefined;
|
|
3600
3539
|
size?: number | null | undefined;
|
|
3540
|
+
createdBy?: string | null | undefined;
|
|
3541
|
+
mimeType?: string | null | undefined;
|
|
3601
3542
|
legacyKey?: string | null | undefined;
|
|
3602
3543
|
bucketName?: string | null | undefined;
|
|
3603
3544
|
encryptionKey?: string | null | undefined;
|
|
3604
|
-
createdBy?: string | null | undefined;
|
|
3605
3545
|
}[];
|
|
3606
3546
|
}, {
|
|
3607
3547
|
files: {
|
|
@@ -3611,12 +3551,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3611
3551
|
createdAt: string;
|
|
3612
3552
|
deletedAt?: string | null | undefined;
|
|
3613
3553
|
originalFileName?: string | null | undefined;
|
|
3614
|
-
mimeType?: string | null | undefined;
|
|
3615
3554
|
size?: number | null | undefined;
|
|
3555
|
+
createdBy?: string | null | undefined;
|
|
3556
|
+
mimeType?: string | null | undefined;
|
|
3616
3557
|
legacyKey?: string | null | undefined;
|
|
3617
3558
|
bucketName?: string | null | undefined;
|
|
3618
3559
|
encryptionKey?: string | null | undefined;
|
|
3619
|
-
createdBy?: string | null | undefined;
|
|
3620
3560
|
}[];
|
|
3621
3561
|
}>]>;
|
|
3622
3562
|
}]>;
|