@seed-hypermedia/client 0.0.3 → 0.0.5
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/blocks-to-markdown.d.ts +27 -0
- package/dist/{chunk-X57BIZUK.mjs → chunk-B5WCMFR5.mjs} +23 -2
- package/dist/comment.d.ts +13 -0
- package/dist/editor-types.d.ts +157 -0
- package/dist/editorblock-to-hmblock.d.ts +12 -0
- package/dist/hm-types.d.ts +1062 -0
- package/dist/hm-types.mjs +7 -1
- package/dist/hmblock-to-editorblock.d.ts +23 -0
- package/dist/index.d.ts +9 -4
- package/dist/index.mjs +717 -1
- package/dist/markdown-to-blocks.d.ts +10 -1
- package/dist/unicode.d.ts +35 -0
- package/package.json +1 -1
- package/src/index.ts +43 -4
package/dist/hm-types.d.ts
CHANGED
|
@@ -1905,6 +1905,7 @@ export declare const HMCommentSchema: z.ZodObject<{
|
|
|
1905
1905
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
1906
1906
|
targetVersion: z.ZodString;
|
|
1907
1907
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
1908
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
1908
1909
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
1909
1910
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
1910
1911
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -1948,6 +1949,7 @@ export declare const HMCommentSchema: z.ZodObject<{
|
|
|
1948
1949
|
visibility: "PUBLIC" | "PRIVATE";
|
|
1949
1950
|
targetPath?: string | undefined;
|
|
1950
1951
|
replyParent?: string | undefined;
|
|
1952
|
+
replyParentVersion?: string | undefined;
|
|
1951
1953
|
threadRoot?: string | undefined;
|
|
1952
1954
|
threadRootVersion?: string | undefined;
|
|
1953
1955
|
capability?: string | undefined;
|
|
@@ -1969,6 +1971,7 @@ export declare const HMCommentSchema: z.ZodObject<{
|
|
|
1969
1971
|
visibility: string | number;
|
|
1970
1972
|
targetPath?: string | undefined;
|
|
1971
1973
|
replyParent?: string | undefined;
|
|
1974
|
+
replyParentVersion?: string | undefined;
|
|
1972
1975
|
threadRoot?: string | undefined;
|
|
1973
1976
|
threadRootVersion?: string | undefined;
|
|
1974
1977
|
capability?: string | undefined;
|
|
@@ -1997,6 +2000,7 @@ export declare const HMCommentGroupSchema: z.ZodObject<{
|
|
|
1997
2000
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
1998
2001
|
targetVersion: z.ZodString;
|
|
1999
2002
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
2003
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
2000
2004
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
2001
2005
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
2002
2006
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -2040,6 +2044,7 @@ export declare const HMCommentGroupSchema: z.ZodObject<{
|
|
|
2040
2044
|
visibility: "PUBLIC" | "PRIVATE";
|
|
2041
2045
|
targetPath?: string | undefined;
|
|
2042
2046
|
replyParent?: string | undefined;
|
|
2047
|
+
replyParentVersion?: string | undefined;
|
|
2043
2048
|
threadRoot?: string | undefined;
|
|
2044
2049
|
threadRootVersion?: string | undefined;
|
|
2045
2050
|
capability?: string | undefined;
|
|
@@ -2061,6 +2066,7 @@ export declare const HMCommentGroupSchema: z.ZodObject<{
|
|
|
2061
2066
|
visibility: string | number;
|
|
2062
2067
|
targetPath?: string | undefined;
|
|
2063
2068
|
replyParent?: string | undefined;
|
|
2069
|
+
replyParentVersion?: string | undefined;
|
|
2064
2070
|
threadRoot?: string | undefined;
|
|
2065
2071
|
threadRootVersion?: string | undefined;
|
|
2066
2072
|
capability?: string | undefined;
|
|
@@ -2089,6 +2095,7 @@ export declare const HMCommentGroupSchema: z.ZodObject<{
|
|
|
2089
2095
|
visibility: "PUBLIC" | "PRIVATE";
|
|
2090
2096
|
targetPath?: string | undefined;
|
|
2091
2097
|
replyParent?: string | undefined;
|
|
2098
|
+
replyParentVersion?: string | undefined;
|
|
2092
2099
|
threadRoot?: string | undefined;
|
|
2093
2100
|
threadRootVersion?: string | undefined;
|
|
2094
2101
|
capability?: string | undefined;
|
|
@@ -2115,6 +2122,7 @@ export declare const HMCommentGroupSchema: z.ZodObject<{
|
|
|
2115
2122
|
visibility: string | number;
|
|
2116
2123
|
targetPath?: string | undefined;
|
|
2117
2124
|
replyParent?: string | undefined;
|
|
2125
|
+
replyParentVersion?: string | undefined;
|
|
2118
2126
|
threadRoot?: string | undefined;
|
|
2119
2127
|
threadRootVersion?: string | undefined;
|
|
2120
2128
|
capability?: string | undefined;
|
|
@@ -2131,6 +2139,7 @@ export declare const HMExternalCommentGroupSchema: z.ZodObject<{
|
|
|
2131
2139
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
2132
2140
|
targetVersion: z.ZodString;
|
|
2133
2141
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
2142
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
2134
2143
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
2135
2144
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
2136
2145
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -2174,6 +2183,7 @@ export declare const HMExternalCommentGroupSchema: z.ZodObject<{
|
|
|
2174
2183
|
visibility: "PUBLIC" | "PRIVATE";
|
|
2175
2184
|
targetPath?: string | undefined;
|
|
2176
2185
|
replyParent?: string | undefined;
|
|
2186
|
+
replyParentVersion?: string | undefined;
|
|
2177
2187
|
threadRoot?: string | undefined;
|
|
2178
2188
|
threadRootVersion?: string | undefined;
|
|
2179
2189
|
capability?: string | undefined;
|
|
@@ -2195,6 +2205,7 @@ export declare const HMExternalCommentGroupSchema: z.ZodObject<{
|
|
|
2195
2205
|
visibility: string | number;
|
|
2196
2206
|
targetPath?: string | undefined;
|
|
2197
2207
|
replyParent?: string | undefined;
|
|
2208
|
+
replyParentVersion?: string | undefined;
|
|
2198
2209
|
threadRoot?: string | undefined;
|
|
2199
2210
|
threadRootVersion?: string | undefined;
|
|
2200
2211
|
capability?: string | undefined;
|
|
@@ -2428,6 +2439,7 @@ export declare const HMExternalCommentGroupSchema: z.ZodObject<{
|
|
|
2428
2439
|
visibility: "PUBLIC" | "PRIVATE";
|
|
2429
2440
|
targetPath?: string | undefined;
|
|
2430
2441
|
replyParent?: string | undefined;
|
|
2442
|
+
replyParentVersion?: string | undefined;
|
|
2431
2443
|
threadRoot?: string | undefined;
|
|
2432
2444
|
threadRootVersion?: string | undefined;
|
|
2433
2445
|
capability?: string | undefined;
|
|
@@ -2495,6 +2507,7 @@ export declare const HMExternalCommentGroupSchema: z.ZodObject<{
|
|
|
2495
2507
|
visibility: string | number;
|
|
2496
2508
|
targetPath?: string | undefined;
|
|
2497
2509
|
replyParent?: string | undefined;
|
|
2510
|
+
replyParentVersion?: string | undefined;
|
|
2498
2511
|
threadRoot?: string | undefined;
|
|
2499
2512
|
threadRootVersion?: string | undefined;
|
|
2500
2513
|
capability?: string | undefined;
|
|
@@ -8189,6 +8202,7 @@ export declare const HMResourceCommentSchema: z.ZodObject<{
|
|
|
8189
8202
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
8190
8203
|
targetVersion: z.ZodString;
|
|
8191
8204
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
8205
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
8192
8206
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
8193
8207
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
8194
8208
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -8232,6 +8246,7 @@ export declare const HMResourceCommentSchema: z.ZodObject<{
|
|
|
8232
8246
|
visibility: "PUBLIC" | "PRIVATE";
|
|
8233
8247
|
targetPath?: string | undefined;
|
|
8234
8248
|
replyParent?: string | undefined;
|
|
8249
|
+
replyParentVersion?: string | undefined;
|
|
8235
8250
|
threadRoot?: string | undefined;
|
|
8236
8251
|
threadRootVersion?: string | undefined;
|
|
8237
8252
|
capability?: string | undefined;
|
|
@@ -8253,6 +8268,7 @@ export declare const HMResourceCommentSchema: z.ZodObject<{
|
|
|
8253
8268
|
visibility: string | number;
|
|
8254
8269
|
targetPath?: string | undefined;
|
|
8255
8270
|
replyParent?: string | undefined;
|
|
8271
|
+
replyParentVersion?: string | undefined;
|
|
8256
8272
|
threadRoot?: string | undefined;
|
|
8257
8273
|
threadRootVersion?: string | undefined;
|
|
8258
8274
|
capability?: string | undefined;
|
|
@@ -8351,6 +8367,7 @@ export declare const HMResourceCommentSchema: z.ZodObject<{
|
|
|
8351
8367
|
visibility: "PUBLIC" | "PRIVATE";
|
|
8352
8368
|
targetPath?: string | undefined;
|
|
8353
8369
|
replyParent?: string | undefined;
|
|
8370
|
+
replyParentVersion?: string | undefined;
|
|
8354
8371
|
threadRoot?: string | undefined;
|
|
8355
8372
|
threadRootVersion?: string | undefined;
|
|
8356
8373
|
capability?: string | undefined;
|
|
@@ -8392,6 +8409,7 @@ export declare const HMResourceCommentSchema: z.ZodObject<{
|
|
|
8392
8409
|
visibility: string | number;
|
|
8393
8410
|
targetPath?: string | undefined;
|
|
8394
8411
|
replyParent?: string | undefined;
|
|
8412
|
+
replyParentVersion?: string | undefined;
|
|
8395
8413
|
threadRoot?: string | undefined;
|
|
8396
8414
|
threadRootVersion?: string | undefined;
|
|
8397
8415
|
capability?: string | undefined;
|
|
@@ -9270,6 +9288,7 @@ export declare const HMResourceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
9270
9288
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
9271
9289
|
targetVersion: z.ZodString;
|
|
9272
9290
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
9291
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
9273
9292
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
9274
9293
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
9275
9294
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -9313,6 +9332,7 @@ export declare const HMResourceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
9313
9332
|
visibility: "PUBLIC" | "PRIVATE";
|
|
9314
9333
|
targetPath?: string | undefined;
|
|
9315
9334
|
replyParent?: string | undefined;
|
|
9335
|
+
replyParentVersion?: string | undefined;
|
|
9316
9336
|
threadRoot?: string | undefined;
|
|
9317
9337
|
threadRootVersion?: string | undefined;
|
|
9318
9338
|
capability?: string | undefined;
|
|
@@ -9334,6 +9354,7 @@ export declare const HMResourceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
9334
9354
|
visibility: string | number;
|
|
9335
9355
|
targetPath?: string | undefined;
|
|
9336
9356
|
replyParent?: string | undefined;
|
|
9357
|
+
replyParentVersion?: string | undefined;
|
|
9337
9358
|
threadRoot?: string | undefined;
|
|
9338
9359
|
threadRootVersion?: string | undefined;
|
|
9339
9360
|
capability?: string | undefined;
|
|
@@ -9432,6 +9453,7 @@ export declare const HMResourceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
9432
9453
|
visibility: "PUBLIC" | "PRIVATE";
|
|
9433
9454
|
targetPath?: string | undefined;
|
|
9434
9455
|
replyParent?: string | undefined;
|
|
9456
|
+
replyParentVersion?: string | undefined;
|
|
9435
9457
|
threadRoot?: string | undefined;
|
|
9436
9458
|
threadRootVersion?: string | undefined;
|
|
9437
9459
|
capability?: string | undefined;
|
|
@@ -9473,6 +9495,7 @@ export declare const HMResourceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
9473
9495
|
visibility: string | number;
|
|
9474
9496
|
targetPath?: string | undefined;
|
|
9475
9497
|
replyParent?: string | undefined;
|
|
9498
|
+
replyParentVersion?: string | undefined;
|
|
9476
9499
|
threadRoot?: string | undefined;
|
|
9477
9500
|
threadRootVersion?: string | undefined;
|
|
9478
9501
|
capability?: string | undefined;
|
|
@@ -10343,6 +10366,7 @@ export declare const HMResolvedResourceSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
10343
10366
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
10344
10367
|
targetVersion: z.ZodString;
|
|
10345
10368
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
10369
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
10346
10370
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
10347
10371
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
10348
10372
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -10386,6 +10410,7 @@ export declare const HMResolvedResourceSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
10386
10410
|
visibility: "PUBLIC" | "PRIVATE";
|
|
10387
10411
|
targetPath?: string | undefined;
|
|
10388
10412
|
replyParent?: string | undefined;
|
|
10413
|
+
replyParentVersion?: string | undefined;
|
|
10389
10414
|
threadRoot?: string | undefined;
|
|
10390
10415
|
threadRootVersion?: string | undefined;
|
|
10391
10416
|
capability?: string | undefined;
|
|
@@ -10407,6 +10432,7 @@ export declare const HMResolvedResourceSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
10407
10432
|
visibility: string | number;
|
|
10408
10433
|
targetPath?: string | undefined;
|
|
10409
10434
|
replyParent?: string | undefined;
|
|
10435
|
+
replyParentVersion?: string | undefined;
|
|
10410
10436
|
threadRoot?: string | undefined;
|
|
10411
10437
|
threadRootVersion?: string | undefined;
|
|
10412
10438
|
capability?: string | undefined;
|
|
@@ -10505,6 +10531,7 @@ export declare const HMResolvedResourceSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
10505
10531
|
visibility: "PUBLIC" | "PRIVATE";
|
|
10506
10532
|
targetPath?: string | undefined;
|
|
10507
10533
|
replyParent?: string | undefined;
|
|
10534
|
+
replyParentVersion?: string | undefined;
|
|
10508
10535
|
threadRoot?: string | undefined;
|
|
10509
10536
|
threadRootVersion?: string | undefined;
|
|
10510
10537
|
capability?: string | undefined;
|
|
@@ -10546,6 +10573,7 @@ export declare const HMResolvedResourceSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
10546
10573
|
visibility: string | number;
|
|
10547
10574
|
targetPath?: string | undefined;
|
|
10548
10575
|
replyParent?: string | undefined;
|
|
10576
|
+
replyParentVersion?: string | undefined;
|
|
10549
10577
|
threadRoot?: string | undefined;
|
|
10550
10578
|
threadRootVersion?: string | undefined;
|
|
10551
10579
|
capability?: string | undefined;
|
|
@@ -12314,6 +12342,23 @@ export declare const HMDraftMetaSchema: z.ZodEffects<z.ZodObject<{
|
|
|
12314
12342
|
importTags?: string | undefined;
|
|
12315
12343
|
}>;
|
|
12316
12344
|
visibility: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "PUBLIC" | "PRIVATE", string | number>>>;
|
|
12345
|
+
deps: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
12346
|
+
navigation: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12347
|
+
type: z.ZodLiteral<"Link">;
|
|
12348
|
+
id: z.ZodString;
|
|
12349
|
+
text: z.ZodString;
|
|
12350
|
+
link: z.ZodString;
|
|
12351
|
+
}, "strip", z.ZodTypeAny, {
|
|
12352
|
+
link: string;
|
|
12353
|
+
type: "Link";
|
|
12354
|
+
id: string;
|
|
12355
|
+
text: string;
|
|
12356
|
+
}, {
|
|
12357
|
+
link: string;
|
|
12358
|
+
type: "Link";
|
|
12359
|
+
id: string;
|
|
12360
|
+
text: string;
|
|
12361
|
+
}>, "many">>;
|
|
12317
12362
|
}, "strip", z.ZodTypeAny, {
|
|
12318
12363
|
id: string;
|
|
12319
12364
|
visibility: "PUBLIC" | "PRIVATE";
|
|
@@ -12338,6 +12383,13 @@ export declare const HMDraftMetaSchema: z.ZodEffects<z.ZodObject<{
|
|
|
12338
12383
|
importCategories?: string | undefined;
|
|
12339
12384
|
importTags?: string | undefined;
|
|
12340
12385
|
};
|
|
12386
|
+
deps: string[];
|
|
12387
|
+
navigation?: {
|
|
12388
|
+
link: string;
|
|
12389
|
+
type: "Link";
|
|
12390
|
+
id: string;
|
|
12391
|
+
text: string;
|
|
12392
|
+
}[] | undefined;
|
|
12341
12393
|
locationUid?: string | undefined;
|
|
12342
12394
|
locationPath?: string[] | undefined;
|
|
12343
12395
|
editUid?: string | undefined;
|
|
@@ -12366,6 +12418,13 @@ export declare const HMDraftMetaSchema: z.ZodEffects<z.ZodObject<{
|
|
|
12366
12418
|
importTags?: string | undefined;
|
|
12367
12419
|
};
|
|
12368
12420
|
visibility?: string | number | undefined;
|
|
12421
|
+
deps?: string[] | undefined;
|
|
12422
|
+
navigation?: {
|
|
12423
|
+
link: string;
|
|
12424
|
+
type: "Link";
|
|
12425
|
+
id: string;
|
|
12426
|
+
text: string;
|
|
12427
|
+
}[] | undefined;
|
|
12369
12428
|
locationUid?: string | undefined;
|
|
12370
12429
|
locationPath?: string[] | undefined;
|
|
12371
12430
|
editUid?: string | undefined;
|
|
@@ -12394,6 +12453,13 @@ export declare const HMDraftMetaSchema: z.ZodEffects<z.ZodObject<{
|
|
|
12394
12453
|
importCategories?: string | undefined;
|
|
12395
12454
|
importTags?: string | undefined;
|
|
12396
12455
|
};
|
|
12456
|
+
deps: string[];
|
|
12457
|
+
navigation?: {
|
|
12458
|
+
link: string;
|
|
12459
|
+
type: "Link";
|
|
12460
|
+
id: string;
|
|
12461
|
+
text: string;
|
|
12462
|
+
}[] | undefined;
|
|
12397
12463
|
locationUid?: string | undefined;
|
|
12398
12464
|
locationPath?: string[] | undefined;
|
|
12399
12465
|
editUid?: string | undefined;
|
|
@@ -12422,6 +12488,13 @@ export declare const HMDraftMetaSchema: z.ZodEffects<z.ZodObject<{
|
|
|
12422
12488
|
importTags?: string | undefined;
|
|
12423
12489
|
};
|
|
12424
12490
|
visibility?: string | number | undefined;
|
|
12491
|
+
deps?: string[] | undefined;
|
|
12492
|
+
navigation?: {
|
|
12493
|
+
link: string;
|
|
12494
|
+
type: "Link";
|
|
12495
|
+
id: string;
|
|
12496
|
+
text: string;
|
|
12497
|
+
}[] | undefined;
|
|
12425
12498
|
locationUid?: string | undefined;
|
|
12426
12499
|
locationPath?: string[] | undefined;
|
|
12427
12500
|
editUid?: string | undefined;
|
|
@@ -12433,6 +12506,8 @@ type HMDraftMetaBase = {
|
|
|
12433
12506
|
editPath?: string[];
|
|
12434
12507
|
metadata: HMMetadata;
|
|
12435
12508
|
visibility: HMResourceVisibility;
|
|
12509
|
+
deps: string[];
|
|
12510
|
+
navigation?: HMNavigationItem[];
|
|
12436
12511
|
};
|
|
12437
12512
|
export type HMDraftMeta = HMDraftMetaBase & ({
|
|
12438
12513
|
editUid: string;
|
|
@@ -12513,6 +12588,23 @@ export declare const HMListedDraftSchema: z.ZodEffects<z.ZodObject<{
|
|
|
12513
12588
|
importTags?: string | undefined;
|
|
12514
12589
|
}>;
|
|
12515
12590
|
visibility: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "PUBLIC" | "PRIVATE", string | number>>>;
|
|
12591
|
+
deps: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
12592
|
+
navigation: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12593
|
+
type: z.ZodLiteral<"Link">;
|
|
12594
|
+
id: z.ZodString;
|
|
12595
|
+
text: z.ZodString;
|
|
12596
|
+
link: z.ZodString;
|
|
12597
|
+
}, "strip", z.ZodTypeAny, {
|
|
12598
|
+
link: string;
|
|
12599
|
+
type: "Link";
|
|
12600
|
+
id: string;
|
|
12601
|
+
text: string;
|
|
12602
|
+
}, {
|
|
12603
|
+
link: string;
|
|
12604
|
+
type: "Link";
|
|
12605
|
+
id: string;
|
|
12606
|
+
text: string;
|
|
12607
|
+
}>, "many">>;
|
|
12516
12608
|
} & {
|
|
12517
12609
|
lastUpdateTime: z.ZodNumber;
|
|
12518
12610
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12540,6 +12632,13 @@ export declare const HMListedDraftSchema: z.ZodEffects<z.ZodObject<{
|
|
|
12540
12632
|
importTags?: string | undefined;
|
|
12541
12633
|
};
|
|
12542
12634
|
lastUpdateTime: number;
|
|
12635
|
+
deps: string[];
|
|
12636
|
+
navigation?: {
|
|
12637
|
+
link: string;
|
|
12638
|
+
type: "Link";
|
|
12639
|
+
id: string;
|
|
12640
|
+
text: string;
|
|
12641
|
+
}[] | undefined;
|
|
12543
12642
|
locationUid?: string | undefined;
|
|
12544
12643
|
locationPath?: string[] | undefined;
|
|
12545
12644
|
editUid?: string | undefined;
|
|
@@ -12569,6 +12668,13 @@ export declare const HMListedDraftSchema: z.ZodEffects<z.ZodObject<{
|
|
|
12569
12668
|
};
|
|
12570
12669
|
lastUpdateTime: number;
|
|
12571
12670
|
visibility?: string | number | undefined;
|
|
12671
|
+
deps?: string[] | undefined;
|
|
12672
|
+
navigation?: {
|
|
12673
|
+
link: string;
|
|
12674
|
+
type: "Link";
|
|
12675
|
+
id: string;
|
|
12676
|
+
text: string;
|
|
12677
|
+
}[] | undefined;
|
|
12572
12678
|
locationUid?: string | undefined;
|
|
12573
12679
|
locationPath?: string[] | undefined;
|
|
12574
12680
|
editUid?: string | undefined;
|
|
@@ -12598,6 +12704,13 @@ export declare const HMListedDraftSchema: z.ZodEffects<z.ZodObject<{
|
|
|
12598
12704
|
importTags?: string | undefined;
|
|
12599
12705
|
};
|
|
12600
12706
|
lastUpdateTime: number;
|
|
12707
|
+
deps: string[];
|
|
12708
|
+
navigation?: {
|
|
12709
|
+
link: string;
|
|
12710
|
+
type: "Link";
|
|
12711
|
+
id: string;
|
|
12712
|
+
text: string;
|
|
12713
|
+
}[] | undefined;
|
|
12601
12714
|
locationUid?: string | undefined;
|
|
12602
12715
|
locationPath?: string[] | undefined;
|
|
12603
12716
|
editUid?: string | undefined;
|
|
@@ -12627,6 +12740,13 @@ export declare const HMListedDraftSchema: z.ZodEffects<z.ZodObject<{
|
|
|
12627
12740
|
};
|
|
12628
12741
|
lastUpdateTime: number;
|
|
12629
12742
|
visibility?: string | number | undefined;
|
|
12743
|
+
deps?: string[] | undefined;
|
|
12744
|
+
navigation?: {
|
|
12745
|
+
link: string;
|
|
12746
|
+
type: "Link";
|
|
12747
|
+
id: string;
|
|
12748
|
+
text: string;
|
|
12749
|
+
}[] | undefined;
|
|
12630
12750
|
locationUid?: string | undefined;
|
|
12631
12751
|
locationPath?: string[] | undefined;
|
|
12632
12752
|
editUid?: string | undefined;
|
|
@@ -12704,6 +12824,23 @@ export declare const HMListedDraftReadSchema: z.ZodObject<{
|
|
|
12704
12824
|
importTags?: string | undefined;
|
|
12705
12825
|
}>;
|
|
12706
12826
|
visibility: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "PUBLIC" | "PRIVATE", string | number>>>;
|
|
12827
|
+
deps: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
12828
|
+
navigation: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12829
|
+
type: z.ZodLiteral<"Link">;
|
|
12830
|
+
id: z.ZodString;
|
|
12831
|
+
text: z.ZodString;
|
|
12832
|
+
link: z.ZodString;
|
|
12833
|
+
}, "strip", z.ZodTypeAny, {
|
|
12834
|
+
link: string;
|
|
12835
|
+
type: "Link";
|
|
12836
|
+
id: string;
|
|
12837
|
+
text: string;
|
|
12838
|
+
}, {
|
|
12839
|
+
link: string;
|
|
12840
|
+
type: "Link";
|
|
12841
|
+
id: string;
|
|
12842
|
+
text: string;
|
|
12843
|
+
}>, "many">>;
|
|
12707
12844
|
} & {
|
|
12708
12845
|
lastUpdateTime: z.ZodNumber;
|
|
12709
12846
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -12731,6 +12868,13 @@ export declare const HMListedDraftReadSchema: z.ZodObject<{
|
|
|
12731
12868
|
importTags?: string | undefined;
|
|
12732
12869
|
};
|
|
12733
12870
|
lastUpdateTime: number;
|
|
12871
|
+
deps: string[];
|
|
12872
|
+
navigation?: {
|
|
12873
|
+
link: string;
|
|
12874
|
+
type: "Link";
|
|
12875
|
+
id: string;
|
|
12876
|
+
text: string;
|
|
12877
|
+
}[] | undefined;
|
|
12734
12878
|
locationUid?: string | undefined;
|
|
12735
12879
|
locationPath?: string[] | undefined;
|
|
12736
12880
|
editUid?: string | undefined;
|
|
@@ -12760,6 +12904,13 @@ export declare const HMListedDraftReadSchema: z.ZodObject<{
|
|
|
12760
12904
|
};
|
|
12761
12905
|
lastUpdateTime: number;
|
|
12762
12906
|
visibility?: string | number | undefined;
|
|
12907
|
+
deps?: string[] | undefined;
|
|
12908
|
+
navigation?: {
|
|
12909
|
+
link: string;
|
|
12910
|
+
type: "Link";
|
|
12911
|
+
id: string;
|
|
12912
|
+
text: string;
|
|
12913
|
+
}[] | undefined;
|
|
12763
12914
|
locationUid?: string | undefined;
|
|
12764
12915
|
locationPath?: string[] | undefined;
|
|
12765
12916
|
editUid?: string | undefined;
|
|
@@ -13363,6 +13514,7 @@ export declare const HMResourceRequestSchema: z.ZodObject<{
|
|
|
13363
13514
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
13364
13515
|
targetVersion: z.ZodString;
|
|
13365
13516
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
13517
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
13366
13518
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
13367
13519
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
13368
13520
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -13406,6 +13558,7 @@ export declare const HMResourceRequestSchema: z.ZodObject<{
|
|
|
13406
13558
|
visibility: "PUBLIC" | "PRIVATE";
|
|
13407
13559
|
targetPath?: string | undefined;
|
|
13408
13560
|
replyParent?: string | undefined;
|
|
13561
|
+
replyParentVersion?: string | undefined;
|
|
13409
13562
|
threadRoot?: string | undefined;
|
|
13410
13563
|
threadRootVersion?: string | undefined;
|
|
13411
13564
|
capability?: string | undefined;
|
|
@@ -13427,6 +13580,7 @@ export declare const HMResourceRequestSchema: z.ZodObject<{
|
|
|
13427
13580
|
visibility: string | number;
|
|
13428
13581
|
targetPath?: string | undefined;
|
|
13429
13582
|
replyParent?: string | undefined;
|
|
13583
|
+
replyParentVersion?: string | undefined;
|
|
13430
13584
|
threadRoot?: string | undefined;
|
|
13431
13585
|
threadRootVersion?: string | undefined;
|
|
13432
13586
|
capability?: string | undefined;
|
|
@@ -13525,6 +13679,7 @@ export declare const HMResourceRequestSchema: z.ZodObject<{
|
|
|
13525
13679
|
visibility: "PUBLIC" | "PRIVATE";
|
|
13526
13680
|
targetPath?: string | undefined;
|
|
13527
13681
|
replyParent?: string | undefined;
|
|
13682
|
+
replyParentVersion?: string | undefined;
|
|
13528
13683
|
threadRoot?: string | undefined;
|
|
13529
13684
|
threadRootVersion?: string | undefined;
|
|
13530
13685
|
capability?: string | undefined;
|
|
@@ -13566,6 +13721,7 @@ export declare const HMResourceRequestSchema: z.ZodObject<{
|
|
|
13566
13721
|
visibility: string | number;
|
|
13567
13722
|
targetPath?: string | undefined;
|
|
13568
13723
|
replyParent?: string | undefined;
|
|
13724
|
+
replyParentVersion?: string | undefined;
|
|
13569
13725
|
threadRoot?: string | undefined;
|
|
13570
13726
|
threadRootVersion?: string | undefined;
|
|
13571
13727
|
capability?: string | undefined;
|
|
@@ -14171,6 +14327,7 @@ export declare const HMResourceRequestSchema: z.ZodObject<{
|
|
|
14171
14327
|
visibility: "PUBLIC" | "PRIVATE";
|
|
14172
14328
|
targetPath?: string | undefined;
|
|
14173
14329
|
replyParent?: string | undefined;
|
|
14330
|
+
replyParentVersion?: string | undefined;
|
|
14174
14331
|
threadRoot?: string | undefined;
|
|
14175
14332
|
threadRootVersion?: string | undefined;
|
|
14176
14333
|
capability?: string | undefined;
|
|
@@ -14388,6 +14545,7 @@ export declare const HMResourceRequestSchema: z.ZodObject<{
|
|
|
14388
14545
|
visibility: string | number;
|
|
14389
14546
|
targetPath?: string | undefined;
|
|
14390
14547
|
replyParent?: string | undefined;
|
|
14548
|
+
replyParentVersion?: string | undefined;
|
|
14391
14549
|
threadRoot?: string | undefined;
|
|
14392
14550
|
threadRootVersion?: string | undefined;
|
|
14393
14551
|
capability?: string | undefined;
|
|
@@ -15205,6 +15363,7 @@ export declare const HMCommentRequestSchema: z.ZodObject<{
|
|
|
15205
15363
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
15206
15364
|
targetVersion: z.ZodString;
|
|
15207
15365
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
15366
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
15208
15367
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
15209
15368
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
15210
15369
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -15248,6 +15407,7 @@ export declare const HMCommentRequestSchema: z.ZodObject<{
|
|
|
15248
15407
|
visibility: "PUBLIC" | "PRIVATE";
|
|
15249
15408
|
targetPath?: string | undefined;
|
|
15250
15409
|
replyParent?: string | undefined;
|
|
15410
|
+
replyParentVersion?: string | undefined;
|
|
15251
15411
|
threadRoot?: string | undefined;
|
|
15252
15412
|
threadRootVersion?: string | undefined;
|
|
15253
15413
|
capability?: string | undefined;
|
|
@@ -15269,6 +15429,7 @@ export declare const HMCommentRequestSchema: z.ZodObject<{
|
|
|
15269
15429
|
visibility: string | number;
|
|
15270
15430
|
targetPath?: string | undefined;
|
|
15271
15431
|
replyParent?: string | undefined;
|
|
15432
|
+
replyParentVersion?: string | undefined;
|
|
15272
15433
|
threadRoot?: string | undefined;
|
|
15273
15434
|
threadRootVersion?: string | undefined;
|
|
15274
15435
|
capability?: string | undefined;
|
|
@@ -15294,6 +15455,7 @@ export declare const HMCommentRequestSchema: z.ZodObject<{
|
|
|
15294
15455
|
visibility: "PUBLIC" | "PRIVATE";
|
|
15295
15456
|
targetPath?: string | undefined;
|
|
15296
15457
|
replyParent?: string | undefined;
|
|
15458
|
+
replyParentVersion?: string | undefined;
|
|
15297
15459
|
threadRoot?: string | undefined;
|
|
15298
15460
|
threadRootVersion?: string | undefined;
|
|
15299
15461
|
capability?: string | undefined;
|
|
@@ -15319,6 +15481,7 @@ export declare const HMCommentRequestSchema: z.ZodObject<{
|
|
|
15319
15481
|
visibility: string | number;
|
|
15320
15482
|
targetPath?: string | undefined;
|
|
15321
15483
|
replyParent?: string | undefined;
|
|
15484
|
+
replyParentVersion?: string | undefined;
|
|
15322
15485
|
threadRoot?: string | undefined;
|
|
15323
15486
|
threadRootVersion?: string | undefined;
|
|
15324
15487
|
capability?: string | undefined;
|
|
@@ -17399,6 +17562,7 @@ export declare const HMListCommentsOutputSchema: z.ZodObject<{
|
|
|
17399
17562
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
17400
17563
|
targetVersion: z.ZodString;
|
|
17401
17564
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
17565
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
17402
17566
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
17403
17567
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
17404
17568
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -17442,6 +17606,7 @@ export declare const HMListCommentsOutputSchema: z.ZodObject<{
|
|
|
17442
17606
|
visibility: "PUBLIC" | "PRIVATE";
|
|
17443
17607
|
targetPath?: string | undefined;
|
|
17444
17608
|
replyParent?: string | undefined;
|
|
17609
|
+
replyParentVersion?: string | undefined;
|
|
17445
17610
|
threadRoot?: string | undefined;
|
|
17446
17611
|
threadRootVersion?: string | undefined;
|
|
17447
17612
|
capability?: string | undefined;
|
|
@@ -17463,6 +17628,7 @@ export declare const HMListCommentsOutputSchema: z.ZodObject<{
|
|
|
17463
17628
|
visibility: string | number;
|
|
17464
17629
|
targetPath?: string | undefined;
|
|
17465
17630
|
replyParent?: string | undefined;
|
|
17631
|
+
replyParentVersion?: string | undefined;
|
|
17466
17632
|
threadRoot?: string | undefined;
|
|
17467
17633
|
threadRootVersion?: string | undefined;
|
|
17468
17634
|
capability?: string | undefined;
|
|
@@ -17691,6 +17857,7 @@ export declare const HMListCommentsOutputSchema: z.ZodObject<{
|
|
|
17691
17857
|
visibility: "PUBLIC" | "PRIVATE";
|
|
17692
17858
|
targetPath?: string | undefined;
|
|
17693
17859
|
replyParent?: string | undefined;
|
|
17860
|
+
replyParentVersion?: string | undefined;
|
|
17694
17861
|
threadRoot?: string | undefined;
|
|
17695
17862
|
threadRootVersion?: string | undefined;
|
|
17696
17863
|
capability?: string | undefined;
|
|
@@ -17755,6 +17922,7 @@ export declare const HMListCommentsOutputSchema: z.ZodObject<{
|
|
|
17755
17922
|
visibility: string | number;
|
|
17756
17923
|
targetPath?: string | undefined;
|
|
17757
17924
|
replyParent?: string | undefined;
|
|
17925
|
+
replyParentVersion?: string | undefined;
|
|
17758
17926
|
threadRoot?: string | undefined;
|
|
17759
17927
|
threadRootVersion?: string | undefined;
|
|
17760
17928
|
capability?: string | undefined;
|
|
@@ -17908,6 +18076,7 @@ export declare const HMListCommentsRequestSchema: z.ZodObject<{
|
|
|
17908
18076
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
17909
18077
|
targetVersion: z.ZodString;
|
|
17910
18078
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
18079
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
17911
18080
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
17912
18081
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
17913
18082
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -17951,6 +18120,7 @@ export declare const HMListCommentsRequestSchema: z.ZodObject<{
|
|
|
17951
18120
|
visibility: "PUBLIC" | "PRIVATE";
|
|
17952
18121
|
targetPath?: string | undefined;
|
|
17953
18122
|
replyParent?: string | undefined;
|
|
18123
|
+
replyParentVersion?: string | undefined;
|
|
17954
18124
|
threadRoot?: string | undefined;
|
|
17955
18125
|
threadRootVersion?: string | undefined;
|
|
17956
18126
|
capability?: string | undefined;
|
|
@@ -17972,6 +18142,7 @@ export declare const HMListCommentsRequestSchema: z.ZodObject<{
|
|
|
17972
18142
|
visibility: string | number;
|
|
17973
18143
|
targetPath?: string | undefined;
|
|
17974
18144
|
replyParent?: string | undefined;
|
|
18145
|
+
replyParentVersion?: string | undefined;
|
|
17975
18146
|
threadRoot?: string | undefined;
|
|
17976
18147
|
threadRootVersion?: string | undefined;
|
|
17977
18148
|
capability?: string | undefined;
|
|
@@ -18200,6 +18371,7 @@ export declare const HMListCommentsRequestSchema: z.ZodObject<{
|
|
|
18200
18371
|
visibility: "PUBLIC" | "PRIVATE";
|
|
18201
18372
|
targetPath?: string | undefined;
|
|
18202
18373
|
replyParent?: string | undefined;
|
|
18374
|
+
replyParentVersion?: string | undefined;
|
|
18203
18375
|
threadRoot?: string | undefined;
|
|
18204
18376
|
threadRootVersion?: string | undefined;
|
|
18205
18377
|
capability?: string | undefined;
|
|
@@ -18264,6 +18436,7 @@ export declare const HMListCommentsRequestSchema: z.ZodObject<{
|
|
|
18264
18436
|
visibility: string | number;
|
|
18265
18437
|
targetPath?: string | undefined;
|
|
18266
18438
|
replyParent?: string | undefined;
|
|
18439
|
+
replyParentVersion?: string | undefined;
|
|
18267
18440
|
threadRoot?: string | undefined;
|
|
18268
18441
|
threadRootVersion?: string | undefined;
|
|
18269
18442
|
capability?: string | undefined;
|
|
@@ -18350,6 +18523,7 @@ export declare const HMListCommentsRequestSchema: z.ZodObject<{
|
|
|
18350
18523
|
visibility: "PUBLIC" | "PRIVATE";
|
|
18351
18524
|
targetPath?: string | undefined;
|
|
18352
18525
|
replyParent?: string | undefined;
|
|
18526
|
+
replyParentVersion?: string | undefined;
|
|
18353
18527
|
threadRoot?: string | undefined;
|
|
18354
18528
|
threadRootVersion?: string | undefined;
|
|
18355
18529
|
capability?: string | undefined;
|
|
@@ -18436,6 +18610,7 @@ export declare const HMListCommentsRequestSchema: z.ZodObject<{
|
|
|
18436
18610
|
visibility: string | number;
|
|
18437
18611
|
targetPath?: string | undefined;
|
|
18438
18612
|
replyParent?: string | undefined;
|
|
18613
|
+
replyParentVersion?: string | undefined;
|
|
18439
18614
|
threadRoot?: string | undefined;
|
|
18440
18615
|
threadRootVersion?: string | undefined;
|
|
18441
18616
|
capability?: string | undefined;
|
|
@@ -18593,6 +18768,7 @@ export declare const HMListDiscussionsOutputSchema: z.ZodObject<{
|
|
|
18593
18768
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
18594
18769
|
targetVersion: z.ZodString;
|
|
18595
18770
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
18771
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
18596
18772
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
18597
18773
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
18598
18774
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -18636,6 +18812,7 @@ export declare const HMListDiscussionsOutputSchema: z.ZodObject<{
|
|
|
18636
18812
|
visibility: "PUBLIC" | "PRIVATE";
|
|
18637
18813
|
targetPath?: string | undefined;
|
|
18638
18814
|
replyParent?: string | undefined;
|
|
18815
|
+
replyParentVersion?: string | undefined;
|
|
18639
18816
|
threadRoot?: string | undefined;
|
|
18640
18817
|
threadRootVersion?: string | undefined;
|
|
18641
18818
|
capability?: string | undefined;
|
|
@@ -18657,6 +18834,7 @@ export declare const HMListDiscussionsOutputSchema: z.ZodObject<{
|
|
|
18657
18834
|
visibility: string | number;
|
|
18658
18835
|
targetPath?: string | undefined;
|
|
18659
18836
|
replyParent?: string | undefined;
|
|
18837
|
+
replyParentVersion?: string | undefined;
|
|
18660
18838
|
threadRoot?: string | undefined;
|
|
18661
18839
|
threadRootVersion?: string | undefined;
|
|
18662
18840
|
capability?: string | undefined;
|
|
@@ -18685,6 +18863,7 @@ export declare const HMListDiscussionsOutputSchema: z.ZodObject<{
|
|
|
18685
18863
|
visibility: "PUBLIC" | "PRIVATE";
|
|
18686
18864
|
targetPath?: string | undefined;
|
|
18687
18865
|
replyParent?: string | undefined;
|
|
18866
|
+
replyParentVersion?: string | undefined;
|
|
18688
18867
|
threadRoot?: string | undefined;
|
|
18689
18868
|
threadRootVersion?: string | undefined;
|
|
18690
18869
|
capability?: string | undefined;
|
|
@@ -18711,6 +18890,7 @@ export declare const HMListDiscussionsOutputSchema: z.ZodObject<{
|
|
|
18711
18890
|
visibility: string | number;
|
|
18712
18891
|
targetPath?: string | undefined;
|
|
18713
18892
|
replyParent?: string | undefined;
|
|
18893
|
+
replyParentVersion?: string | undefined;
|
|
18714
18894
|
threadRoot?: string | undefined;
|
|
18715
18895
|
threadRootVersion?: string | undefined;
|
|
18716
18896
|
capability?: string | undefined;
|
|
@@ -18931,6 +19111,7 @@ export declare const HMListDiscussionsOutputSchema: z.ZodObject<{
|
|
|
18931
19111
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
18932
19112
|
targetVersion: z.ZodString;
|
|
18933
19113
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
19114
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
18934
19115
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
18935
19116
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
18936
19117
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -18974,6 +19155,7 @@ export declare const HMListDiscussionsOutputSchema: z.ZodObject<{
|
|
|
18974
19155
|
visibility: "PUBLIC" | "PRIVATE";
|
|
18975
19156
|
targetPath?: string | undefined;
|
|
18976
19157
|
replyParent?: string | undefined;
|
|
19158
|
+
replyParentVersion?: string | undefined;
|
|
18977
19159
|
threadRoot?: string | undefined;
|
|
18978
19160
|
threadRootVersion?: string | undefined;
|
|
18979
19161
|
capability?: string | undefined;
|
|
@@ -18995,6 +19177,7 @@ export declare const HMListDiscussionsOutputSchema: z.ZodObject<{
|
|
|
18995
19177
|
visibility: string | number;
|
|
18996
19178
|
targetPath?: string | undefined;
|
|
18997
19179
|
replyParent?: string | undefined;
|
|
19180
|
+
replyParentVersion?: string | undefined;
|
|
18998
19181
|
threadRoot?: string | undefined;
|
|
18999
19182
|
threadRootVersion?: string | undefined;
|
|
19000
19183
|
capability?: string | undefined;
|
|
@@ -19228,6 +19411,7 @@ export declare const HMListDiscussionsOutputSchema: z.ZodObject<{
|
|
|
19228
19411
|
visibility: "PUBLIC" | "PRIVATE";
|
|
19229
19412
|
targetPath?: string | undefined;
|
|
19230
19413
|
replyParent?: string | undefined;
|
|
19414
|
+
replyParentVersion?: string | undefined;
|
|
19231
19415
|
threadRoot?: string | undefined;
|
|
19232
19416
|
threadRootVersion?: string | undefined;
|
|
19233
19417
|
capability?: string | undefined;
|
|
@@ -19295,6 +19479,7 @@ export declare const HMListDiscussionsOutputSchema: z.ZodObject<{
|
|
|
19295
19479
|
visibility: string | number;
|
|
19296
19480
|
targetPath?: string | undefined;
|
|
19297
19481
|
replyParent?: string | undefined;
|
|
19482
|
+
replyParentVersion?: string | undefined;
|
|
19298
19483
|
threadRoot?: string | undefined;
|
|
19299
19484
|
threadRootVersion?: string | undefined;
|
|
19300
19485
|
capability?: string | undefined;
|
|
@@ -19405,6 +19590,7 @@ export declare const HMListDiscussionsOutputSchema: z.ZodObject<{
|
|
|
19405
19590
|
visibility: "PUBLIC" | "PRIVATE";
|
|
19406
19591
|
targetPath?: string | undefined;
|
|
19407
19592
|
replyParent?: string | undefined;
|
|
19593
|
+
replyParentVersion?: string | undefined;
|
|
19408
19594
|
threadRoot?: string | undefined;
|
|
19409
19595
|
threadRootVersion?: string | undefined;
|
|
19410
19596
|
capability?: string | undefined;
|
|
@@ -19432,6 +19618,7 @@ export declare const HMListDiscussionsOutputSchema: z.ZodObject<{
|
|
|
19432
19618
|
visibility: "PUBLIC" | "PRIVATE";
|
|
19433
19619
|
targetPath?: string | undefined;
|
|
19434
19620
|
replyParent?: string | undefined;
|
|
19621
|
+
replyParentVersion?: string | undefined;
|
|
19435
19622
|
threadRoot?: string | undefined;
|
|
19436
19623
|
threadRootVersion?: string | undefined;
|
|
19437
19624
|
capability?: string | undefined;
|
|
@@ -19542,6 +19729,7 @@ export declare const HMListDiscussionsOutputSchema: z.ZodObject<{
|
|
|
19542
19729
|
visibility: string | number;
|
|
19543
19730
|
targetPath?: string | undefined;
|
|
19544
19731
|
replyParent?: string | undefined;
|
|
19732
|
+
replyParentVersion?: string | undefined;
|
|
19545
19733
|
threadRoot?: string | undefined;
|
|
19546
19734
|
threadRootVersion?: string | undefined;
|
|
19547
19735
|
capability?: string | undefined;
|
|
@@ -19569,6 +19757,7 @@ export declare const HMListDiscussionsOutputSchema: z.ZodObject<{
|
|
|
19569
19757
|
visibility: string | number;
|
|
19570
19758
|
targetPath?: string | undefined;
|
|
19571
19759
|
replyParent?: string | undefined;
|
|
19760
|
+
replyParentVersion?: string | undefined;
|
|
19572
19761
|
threadRoot?: string | undefined;
|
|
19573
19762
|
threadRootVersion?: string | undefined;
|
|
19574
19763
|
capability?: string | undefined;
|
|
@@ -19728,6 +19917,7 @@ export declare const HMListDiscussionsRequestSchema: z.ZodObject<{
|
|
|
19728
19917
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
19729
19918
|
targetVersion: z.ZodString;
|
|
19730
19919
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
19920
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
19731
19921
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
19732
19922
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
19733
19923
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -19771,6 +19961,7 @@ export declare const HMListDiscussionsRequestSchema: z.ZodObject<{
|
|
|
19771
19961
|
visibility: "PUBLIC" | "PRIVATE";
|
|
19772
19962
|
targetPath?: string | undefined;
|
|
19773
19963
|
replyParent?: string | undefined;
|
|
19964
|
+
replyParentVersion?: string | undefined;
|
|
19774
19965
|
threadRoot?: string | undefined;
|
|
19775
19966
|
threadRootVersion?: string | undefined;
|
|
19776
19967
|
capability?: string | undefined;
|
|
@@ -19792,6 +19983,7 @@ export declare const HMListDiscussionsRequestSchema: z.ZodObject<{
|
|
|
19792
19983
|
visibility: string | number;
|
|
19793
19984
|
targetPath?: string | undefined;
|
|
19794
19985
|
replyParent?: string | undefined;
|
|
19986
|
+
replyParentVersion?: string | undefined;
|
|
19795
19987
|
threadRoot?: string | undefined;
|
|
19796
19988
|
threadRootVersion?: string | undefined;
|
|
19797
19989
|
capability?: string | undefined;
|
|
@@ -19820,6 +20012,7 @@ export declare const HMListDiscussionsRequestSchema: z.ZodObject<{
|
|
|
19820
20012
|
visibility: "PUBLIC" | "PRIVATE";
|
|
19821
20013
|
targetPath?: string | undefined;
|
|
19822
20014
|
replyParent?: string | undefined;
|
|
20015
|
+
replyParentVersion?: string | undefined;
|
|
19823
20016
|
threadRoot?: string | undefined;
|
|
19824
20017
|
threadRootVersion?: string | undefined;
|
|
19825
20018
|
capability?: string | undefined;
|
|
@@ -19846,6 +20039,7 @@ export declare const HMListDiscussionsRequestSchema: z.ZodObject<{
|
|
|
19846
20039
|
visibility: string | number;
|
|
19847
20040
|
targetPath?: string | undefined;
|
|
19848
20041
|
replyParent?: string | undefined;
|
|
20042
|
+
replyParentVersion?: string | undefined;
|
|
19849
20043
|
threadRoot?: string | undefined;
|
|
19850
20044
|
threadRootVersion?: string | undefined;
|
|
19851
20045
|
capability?: string | undefined;
|
|
@@ -20066,6 +20260,7 @@ export declare const HMListDiscussionsRequestSchema: z.ZodObject<{
|
|
|
20066
20260
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
20067
20261
|
targetVersion: z.ZodString;
|
|
20068
20262
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
20263
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
20069
20264
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
20070
20265
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
20071
20266
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -20109,6 +20304,7 @@ export declare const HMListDiscussionsRequestSchema: z.ZodObject<{
|
|
|
20109
20304
|
visibility: "PUBLIC" | "PRIVATE";
|
|
20110
20305
|
targetPath?: string | undefined;
|
|
20111
20306
|
replyParent?: string | undefined;
|
|
20307
|
+
replyParentVersion?: string | undefined;
|
|
20112
20308
|
threadRoot?: string | undefined;
|
|
20113
20309
|
threadRootVersion?: string | undefined;
|
|
20114
20310
|
capability?: string | undefined;
|
|
@@ -20130,6 +20326,7 @@ export declare const HMListDiscussionsRequestSchema: z.ZodObject<{
|
|
|
20130
20326
|
visibility: string | number;
|
|
20131
20327
|
targetPath?: string | undefined;
|
|
20132
20328
|
replyParent?: string | undefined;
|
|
20329
|
+
replyParentVersion?: string | undefined;
|
|
20133
20330
|
threadRoot?: string | undefined;
|
|
20134
20331
|
threadRootVersion?: string | undefined;
|
|
20135
20332
|
capability?: string | undefined;
|
|
@@ -20363,6 +20560,7 @@ export declare const HMListDiscussionsRequestSchema: z.ZodObject<{
|
|
|
20363
20560
|
visibility: "PUBLIC" | "PRIVATE";
|
|
20364
20561
|
targetPath?: string | undefined;
|
|
20365
20562
|
replyParent?: string | undefined;
|
|
20563
|
+
replyParentVersion?: string | undefined;
|
|
20366
20564
|
threadRoot?: string | undefined;
|
|
20367
20565
|
threadRootVersion?: string | undefined;
|
|
20368
20566
|
capability?: string | undefined;
|
|
@@ -20430,6 +20628,7 @@ export declare const HMListDiscussionsRequestSchema: z.ZodObject<{
|
|
|
20430
20628
|
visibility: string | number;
|
|
20431
20629
|
targetPath?: string | undefined;
|
|
20432
20630
|
replyParent?: string | undefined;
|
|
20631
|
+
replyParentVersion?: string | undefined;
|
|
20433
20632
|
threadRoot?: string | undefined;
|
|
20434
20633
|
threadRootVersion?: string | undefined;
|
|
20435
20634
|
capability?: string | undefined;
|
|
@@ -20540,6 +20739,7 @@ export declare const HMListDiscussionsRequestSchema: z.ZodObject<{
|
|
|
20540
20739
|
visibility: "PUBLIC" | "PRIVATE";
|
|
20541
20740
|
targetPath?: string | undefined;
|
|
20542
20741
|
replyParent?: string | undefined;
|
|
20742
|
+
replyParentVersion?: string | undefined;
|
|
20543
20743
|
threadRoot?: string | undefined;
|
|
20544
20744
|
threadRootVersion?: string | undefined;
|
|
20545
20745
|
capability?: string | undefined;
|
|
@@ -20567,6 +20767,7 @@ export declare const HMListDiscussionsRequestSchema: z.ZodObject<{
|
|
|
20567
20767
|
visibility: "PUBLIC" | "PRIVATE";
|
|
20568
20768
|
targetPath?: string | undefined;
|
|
20569
20769
|
replyParent?: string | undefined;
|
|
20770
|
+
replyParentVersion?: string | undefined;
|
|
20570
20771
|
threadRoot?: string | undefined;
|
|
20571
20772
|
threadRootVersion?: string | undefined;
|
|
20572
20773
|
capability?: string | undefined;
|
|
@@ -20677,6 +20878,7 @@ export declare const HMListDiscussionsRequestSchema: z.ZodObject<{
|
|
|
20677
20878
|
visibility: string | number;
|
|
20678
20879
|
targetPath?: string | undefined;
|
|
20679
20880
|
replyParent?: string | undefined;
|
|
20881
|
+
replyParentVersion?: string | undefined;
|
|
20680
20882
|
threadRoot?: string | undefined;
|
|
20681
20883
|
threadRootVersion?: string | undefined;
|
|
20682
20884
|
capability?: string | undefined;
|
|
@@ -20704,6 +20906,7 @@ export declare const HMListDiscussionsRequestSchema: z.ZodObject<{
|
|
|
20704
20906
|
visibility: string | number;
|
|
20705
20907
|
targetPath?: string | undefined;
|
|
20706
20908
|
replyParent?: string | undefined;
|
|
20909
|
+
replyParentVersion?: string | undefined;
|
|
20707
20910
|
threadRoot?: string | undefined;
|
|
20708
20911
|
threadRootVersion?: string | undefined;
|
|
20709
20912
|
capability?: string | undefined;
|
|
@@ -20837,6 +21040,7 @@ export declare const HMListDiscussionsRequestSchema: z.ZodObject<{
|
|
|
20837
21040
|
visibility: "PUBLIC" | "PRIVATE";
|
|
20838
21041
|
targetPath?: string | undefined;
|
|
20839
21042
|
replyParent?: string | undefined;
|
|
21043
|
+
replyParentVersion?: string | undefined;
|
|
20840
21044
|
threadRoot?: string | undefined;
|
|
20841
21045
|
threadRootVersion?: string | undefined;
|
|
20842
21046
|
capability?: string | undefined;
|
|
@@ -20864,6 +21068,7 @@ export declare const HMListDiscussionsRequestSchema: z.ZodObject<{
|
|
|
20864
21068
|
visibility: "PUBLIC" | "PRIVATE";
|
|
20865
21069
|
targetPath?: string | undefined;
|
|
20866
21070
|
replyParent?: string | undefined;
|
|
21071
|
+
replyParentVersion?: string | undefined;
|
|
20867
21072
|
threadRoot?: string | undefined;
|
|
20868
21073
|
threadRootVersion?: string | undefined;
|
|
20869
21074
|
capability?: string | undefined;
|
|
@@ -20997,6 +21202,7 @@ export declare const HMListDiscussionsRequestSchema: z.ZodObject<{
|
|
|
20997
21202
|
visibility: string | number;
|
|
20998
21203
|
targetPath?: string | undefined;
|
|
20999
21204
|
replyParent?: string | undefined;
|
|
21205
|
+
replyParentVersion?: string | undefined;
|
|
21000
21206
|
threadRoot?: string | undefined;
|
|
21001
21207
|
threadRootVersion?: string | undefined;
|
|
21002
21208
|
capability?: string | undefined;
|
|
@@ -21024,6 +21230,7 @@ export declare const HMListDiscussionsRequestSchema: z.ZodObject<{
|
|
|
21024
21230
|
visibility: string | number;
|
|
21025
21231
|
targetPath?: string | undefined;
|
|
21026
21232
|
replyParent?: string | undefined;
|
|
21233
|
+
replyParentVersion?: string | undefined;
|
|
21027
21234
|
threadRoot?: string | undefined;
|
|
21028
21235
|
threadRootVersion?: string | undefined;
|
|
21029
21236
|
capability?: string | undefined;
|
|
@@ -21276,6 +21483,7 @@ export declare const HMListCommentsByReferenceRequestSchema: z.ZodObject<{
|
|
|
21276
21483
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
21277
21484
|
targetVersion: z.ZodString;
|
|
21278
21485
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
21486
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
21279
21487
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
21280
21488
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
21281
21489
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -21319,6 +21527,7 @@ export declare const HMListCommentsByReferenceRequestSchema: z.ZodObject<{
|
|
|
21319
21527
|
visibility: "PUBLIC" | "PRIVATE";
|
|
21320
21528
|
targetPath?: string | undefined;
|
|
21321
21529
|
replyParent?: string | undefined;
|
|
21530
|
+
replyParentVersion?: string | undefined;
|
|
21322
21531
|
threadRoot?: string | undefined;
|
|
21323
21532
|
threadRootVersion?: string | undefined;
|
|
21324
21533
|
capability?: string | undefined;
|
|
@@ -21340,6 +21549,7 @@ export declare const HMListCommentsByReferenceRequestSchema: z.ZodObject<{
|
|
|
21340
21549
|
visibility: string | number;
|
|
21341
21550
|
targetPath?: string | undefined;
|
|
21342
21551
|
replyParent?: string | undefined;
|
|
21552
|
+
replyParentVersion?: string | undefined;
|
|
21343
21553
|
threadRoot?: string | undefined;
|
|
21344
21554
|
threadRootVersion?: string | undefined;
|
|
21345
21555
|
capability?: string | undefined;
|
|
@@ -21568,6 +21778,7 @@ export declare const HMListCommentsByReferenceRequestSchema: z.ZodObject<{
|
|
|
21568
21778
|
visibility: "PUBLIC" | "PRIVATE";
|
|
21569
21779
|
targetPath?: string | undefined;
|
|
21570
21780
|
replyParent?: string | undefined;
|
|
21781
|
+
replyParentVersion?: string | undefined;
|
|
21571
21782
|
threadRoot?: string | undefined;
|
|
21572
21783
|
threadRootVersion?: string | undefined;
|
|
21573
21784
|
capability?: string | undefined;
|
|
@@ -21632,6 +21843,7 @@ export declare const HMListCommentsByReferenceRequestSchema: z.ZodObject<{
|
|
|
21632
21843
|
visibility: string | number;
|
|
21633
21844
|
targetPath?: string | undefined;
|
|
21634
21845
|
replyParent?: string | undefined;
|
|
21846
|
+
replyParentVersion?: string | undefined;
|
|
21635
21847
|
threadRoot?: string | undefined;
|
|
21636
21848
|
threadRootVersion?: string | undefined;
|
|
21637
21849
|
capability?: string | undefined;
|
|
@@ -21718,6 +21930,7 @@ export declare const HMListCommentsByReferenceRequestSchema: z.ZodObject<{
|
|
|
21718
21930
|
visibility: "PUBLIC" | "PRIVATE";
|
|
21719
21931
|
targetPath?: string | undefined;
|
|
21720
21932
|
replyParent?: string | undefined;
|
|
21933
|
+
replyParentVersion?: string | undefined;
|
|
21721
21934
|
threadRoot?: string | undefined;
|
|
21722
21935
|
threadRootVersion?: string | undefined;
|
|
21723
21936
|
capability?: string | undefined;
|
|
@@ -21804,6 +22017,7 @@ export declare const HMListCommentsByReferenceRequestSchema: z.ZodObject<{
|
|
|
21804
22017
|
visibility: string | number;
|
|
21805
22018
|
targetPath?: string | undefined;
|
|
21806
22019
|
replyParent?: string | undefined;
|
|
22020
|
+
replyParentVersion?: string | undefined;
|
|
21807
22021
|
threadRoot?: string | undefined;
|
|
21808
22022
|
threadRootVersion?: string | undefined;
|
|
21809
22023
|
capability?: string | undefined;
|
|
@@ -22732,6 +22946,7 @@ export declare const HMListCommentsByAuthorOutputSchema: z.ZodObject<{
|
|
|
22732
22946
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
22733
22947
|
targetVersion: z.ZodString;
|
|
22734
22948
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
22949
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
22735
22950
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
22736
22951
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
22737
22952
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -22775,6 +22990,7 @@ export declare const HMListCommentsByAuthorOutputSchema: z.ZodObject<{
|
|
|
22775
22990
|
visibility: "PUBLIC" | "PRIVATE";
|
|
22776
22991
|
targetPath?: string | undefined;
|
|
22777
22992
|
replyParent?: string | undefined;
|
|
22993
|
+
replyParentVersion?: string | undefined;
|
|
22778
22994
|
threadRoot?: string | undefined;
|
|
22779
22995
|
threadRootVersion?: string | undefined;
|
|
22780
22996
|
capability?: string | undefined;
|
|
@@ -22796,6 +23012,7 @@ export declare const HMListCommentsByAuthorOutputSchema: z.ZodObject<{
|
|
|
22796
23012
|
visibility: string | number;
|
|
22797
23013
|
targetPath?: string | undefined;
|
|
22798
23014
|
replyParent?: string | undefined;
|
|
23015
|
+
replyParentVersion?: string | undefined;
|
|
22799
23016
|
threadRoot?: string | undefined;
|
|
22800
23017
|
threadRootVersion?: string | undefined;
|
|
22801
23018
|
capability?: string | undefined;
|
|
@@ -23024,6 +23241,7 @@ export declare const HMListCommentsByAuthorOutputSchema: z.ZodObject<{
|
|
|
23024
23241
|
visibility: "PUBLIC" | "PRIVATE";
|
|
23025
23242
|
targetPath?: string | undefined;
|
|
23026
23243
|
replyParent?: string | undefined;
|
|
23244
|
+
replyParentVersion?: string | undefined;
|
|
23027
23245
|
threadRoot?: string | undefined;
|
|
23028
23246
|
threadRootVersion?: string | undefined;
|
|
23029
23247
|
capability?: string | undefined;
|
|
@@ -23088,6 +23306,7 @@ export declare const HMListCommentsByAuthorOutputSchema: z.ZodObject<{
|
|
|
23088
23306
|
visibility: string | number;
|
|
23089
23307
|
targetPath?: string | undefined;
|
|
23090
23308
|
replyParent?: string | undefined;
|
|
23309
|
+
replyParentVersion?: string | undefined;
|
|
23091
23310
|
threadRoot?: string | undefined;
|
|
23092
23311
|
threadRootVersion?: string | undefined;
|
|
23093
23312
|
capability?: string | undefined;
|
|
@@ -23337,6 +23556,7 @@ export declare const HMListCommentsByAuthorRequestSchema: z.ZodObject<{
|
|
|
23337
23556
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
23338
23557
|
targetVersion: z.ZodString;
|
|
23339
23558
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
23559
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
23340
23560
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
23341
23561
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
23342
23562
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -23380,6 +23600,7 @@ export declare const HMListCommentsByAuthorRequestSchema: z.ZodObject<{
|
|
|
23380
23600
|
visibility: "PUBLIC" | "PRIVATE";
|
|
23381
23601
|
targetPath?: string | undefined;
|
|
23382
23602
|
replyParent?: string | undefined;
|
|
23603
|
+
replyParentVersion?: string | undefined;
|
|
23383
23604
|
threadRoot?: string | undefined;
|
|
23384
23605
|
threadRootVersion?: string | undefined;
|
|
23385
23606
|
capability?: string | undefined;
|
|
@@ -23401,6 +23622,7 @@ export declare const HMListCommentsByAuthorRequestSchema: z.ZodObject<{
|
|
|
23401
23622
|
visibility: string | number;
|
|
23402
23623
|
targetPath?: string | undefined;
|
|
23403
23624
|
replyParent?: string | undefined;
|
|
23625
|
+
replyParentVersion?: string | undefined;
|
|
23404
23626
|
threadRoot?: string | undefined;
|
|
23405
23627
|
threadRootVersion?: string | undefined;
|
|
23406
23628
|
capability?: string | undefined;
|
|
@@ -23629,6 +23851,7 @@ export declare const HMListCommentsByAuthorRequestSchema: z.ZodObject<{
|
|
|
23629
23851
|
visibility: "PUBLIC" | "PRIVATE";
|
|
23630
23852
|
targetPath?: string | undefined;
|
|
23631
23853
|
replyParent?: string | undefined;
|
|
23854
|
+
replyParentVersion?: string | undefined;
|
|
23632
23855
|
threadRoot?: string | undefined;
|
|
23633
23856
|
threadRootVersion?: string | undefined;
|
|
23634
23857
|
capability?: string | undefined;
|
|
@@ -23693,6 +23916,7 @@ export declare const HMListCommentsByAuthorRequestSchema: z.ZodObject<{
|
|
|
23693
23916
|
visibility: string | number;
|
|
23694
23917
|
targetPath?: string | undefined;
|
|
23695
23918
|
replyParent?: string | undefined;
|
|
23919
|
+
replyParentVersion?: string | undefined;
|
|
23696
23920
|
threadRoot?: string | undefined;
|
|
23697
23921
|
threadRootVersion?: string | undefined;
|
|
23698
23922
|
capability?: string | undefined;
|
|
@@ -23779,6 +24003,7 @@ export declare const HMListCommentsByAuthorRequestSchema: z.ZodObject<{
|
|
|
23779
24003
|
visibility: "PUBLIC" | "PRIVATE";
|
|
23780
24004
|
targetPath?: string | undefined;
|
|
23781
24005
|
replyParent?: string | undefined;
|
|
24006
|
+
replyParentVersion?: string | undefined;
|
|
23782
24007
|
threadRoot?: string | undefined;
|
|
23783
24008
|
threadRootVersion?: string | undefined;
|
|
23784
24009
|
capability?: string | undefined;
|
|
@@ -23865,6 +24090,7 @@ export declare const HMListCommentsByAuthorRequestSchema: z.ZodObject<{
|
|
|
23865
24090
|
visibility: string | number;
|
|
23866
24091
|
targetPath?: string | undefined;
|
|
23867
24092
|
replyParent?: string | undefined;
|
|
24093
|
+
replyParentVersion?: string | undefined;
|
|
23868
24094
|
threadRoot?: string | undefined;
|
|
23869
24095
|
threadRootVersion?: string | undefined;
|
|
23870
24096
|
capability?: string | undefined;
|
|
@@ -26722,6 +26948,344 @@ export declare const HMPrepareDocumentChangeRequestSchema: z.ZodObject<{
|
|
|
26722
26948
|
};
|
|
26723
26949
|
}>;
|
|
26724
26950
|
export type HMPrepareDocumentChangeRequest = z.infer<typeof HMPrepareDocumentChangeRequestSchema>;
|
|
26951
|
+
export declare const HMListCommentVersionsInputSchema: z.ZodObject<{
|
|
26952
|
+
id: z.ZodString;
|
|
26953
|
+
}, "strip", z.ZodTypeAny, {
|
|
26954
|
+
id: string;
|
|
26955
|
+
}, {
|
|
26956
|
+
id: string;
|
|
26957
|
+
}>;
|
|
26958
|
+
export type HMListCommentVersionsInput = z.infer<typeof HMListCommentVersionsInputSchema>;
|
|
26959
|
+
export declare const HMListCommentVersionsOutputSchema: z.ZodObject<{
|
|
26960
|
+
versions: z.ZodArray<z.ZodObject<{
|
|
26961
|
+
id: z.ZodString;
|
|
26962
|
+
version: z.ZodString;
|
|
26963
|
+
author: z.ZodString;
|
|
26964
|
+
targetAccount: z.ZodString;
|
|
26965
|
+
targetPath: z.ZodOptional<z.ZodString>;
|
|
26966
|
+
targetVersion: z.ZodString;
|
|
26967
|
+
replyParent: z.ZodOptional<z.ZodString>;
|
|
26968
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
26969
|
+
threadRoot: z.ZodOptional<z.ZodString>;
|
|
26970
|
+
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
26971
|
+
capability: z.ZodOptional<z.ZodString>;
|
|
26972
|
+
content: z.ZodArray<z.ZodType<HMBlockNode, z.ZodTypeDef, HMBlockNode>, "many">;
|
|
26973
|
+
createTime: z.ZodUnion<[z.ZodObject<{
|
|
26974
|
+
seconds: z.ZodUnion<[z.ZodBigInt, z.ZodNumber]>;
|
|
26975
|
+
nanos: z.ZodNumber;
|
|
26976
|
+
}, "strict", z.ZodTypeAny, {
|
|
26977
|
+
seconds: number | bigint;
|
|
26978
|
+
nanos: number;
|
|
26979
|
+
}, {
|
|
26980
|
+
seconds: number | bigint;
|
|
26981
|
+
nanos: number;
|
|
26982
|
+
}>, z.ZodString]>;
|
|
26983
|
+
updateTime: z.ZodUnion<[z.ZodObject<{
|
|
26984
|
+
seconds: z.ZodUnion<[z.ZodBigInt, z.ZodNumber]>;
|
|
26985
|
+
nanos: z.ZodNumber;
|
|
26986
|
+
}, "strict", z.ZodTypeAny, {
|
|
26987
|
+
seconds: number | bigint;
|
|
26988
|
+
nanos: number;
|
|
26989
|
+
}, {
|
|
26990
|
+
seconds: number | bigint;
|
|
26991
|
+
nanos: number;
|
|
26992
|
+
}>, z.ZodString]>;
|
|
26993
|
+
visibility: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "PUBLIC" | "PRIVATE", string | number>;
|
|
26994
|
+
}, "strip", z.ZodTypeAny, {
|
|
26995
|
+
version: string;
|
|
26996
|
+
id: string;
|
|
26997
|
+
author: string;
|
|
26998
|
+
targetAccount: string;
|
|
26999
|
+
targetVersion: string;
|
|
27000
|
+
content: HMBlockNode[];
|
|
27001
|
+
createTime: string | {
|
|
27002
|
+
seconds: number | bigint;
|
|
27003
|
+
nanos: number;
|
|
27004
|
+
};
|
|
27005
|
+
updateTime: string | {
|
|
27006
|
+
seconds: number | bigint;
|
|
27007
|
+
nanos: number;
|
|
27008
|
+
};
|
|
27009
|
+
visibility: "PUBLIC" | "PRIVATE";
|
|
27010
|
+
targetPath?: string | undefined;
|
|
27011
|
+
replyParent?: string | undefined;
|
|
27012
|
+
replyParentVersion?: string | undefined;
|
|
27013
|
+
threadRoot?: string | undefined;
|
|
27014
|
+
threadRootVersion?: string | undefined;
|
|
27015
|
+
capability?: string | undefined;
|
|
27016
|
+
}, {
|
|
27017
|
+
version: string;
|
|
27018
|
+
id: string;
|
|
27019
|
+
author: string;
|
|
27020
|
+
targetAccount: string;
|
|
27021
|
+
targetVersion: string;
|
|
27022
|
+
content: HMBlockNode[];
|
|
27023
|
+
createTime: string | {
|
|
27024
|
+
seconds: number | bigint;
|
|
27025
|
+
nanos: number;
|
|
27026
|
+
};
|
|
27027
|
+
updateTime: string | {
|
|
27028
|
+
seconds: number | bigint;
|
|
27029
|
+
nanos: number;
|
|
27030
|
+
};
|
|
27031
|
+
visibility: string | number;
|
|
27032
|
+
targetPath?: string | undefined;
|
|
27033
|
+
replyParent?: string | undefined;
|
|
27034
|
+
replyParentVersion?: string | undefined;
|
|
27035
|
+
threadRoot?: string | undefined;
|
|
27036
|
+
threadRootVersion?: string | undefined;
|
|
27037
|
+
capability?: string | undefined;
|
|
27038
|
+
}>, "many">;
|
|
27039
|
+
}, "strip", z.ZodTypeAny, {
|
|
27040
|
+
versions: {
|
|
27041
|
+
version: string;
|
|
27042
|
+
id: string;
|
|
27043
|
+
author: string;
|
|
27044
|
+
targetAccount: string;
|
|
27045
|
+
targetVersion: string;
|
|
27046
|
+
content: HMBlockNode[];
|
|
27047
|
+
createTime: string | {
|
|
27048
|
+
seconds: number | bigint;
|
|
27049
|
+
nanos: number;
|
|
27050
|
+
};
|
|
27051
|
+
updateTime: string | {
|
|
27052
|
+
seconds: number | bigint;
|
|
27053
|
+
nanos: number;
|
|
27054
|
+
};
|
|
27055
|
+
visibility: "PUBLIC" | "PRIVATE";
|
|
27056
|
+
targetPath?: string | undefined;
|
|
27057
|
+
replyParent?: string | undefined;
|
|
27058
|
+
replyParentVersion?: string | undefined;
|
|
27059
|
+
threadRoot?: string | undefined;
|
|
27060
|
+
threadRootVersion?: string | undefined;
|
|
27061
|
+
capability?: string | undefined;
|
|
27062
|
+
}[];
|
|
27063
|
+
}, {
|
|
27064
|
+
versions: {
|
|
27065
|
+
version: string;
|
|
27066
|
+
id: string;
|
|
27067
|
+
author: string;
|
|
27068
|
+
targetAccount: string;
|
|
27069
|
+
targetVersion: string;
|
|
27070
|
+
content: HMBlockNode[];
|
|
27071
|
+
createTime: string | {
|
|
27072
|
+
seconds: number | bigint;
|
|
27073
|
+
nanos: number;
|
|
27074
|
+
};
|
|
27075
|
+
updateTime: string | {
|
|
27076
|
+
seconds: number | bigint;
|
|
27077
|
+
nanos: number;
|
|
27078
|
+
};
|
|
27079
|
+
visibility: string | number;
|
|
27080
|
+
targetPath?: string | undefined;
|
|
27081
|
+
replyParent?: string | undefined;
|
|
27082
|
+
replyParentVersion?: string | undefined;
|
|
27083
|
+
threadRoot?: string | undefined;
|
|
27084
|
+
threadRootVersion?: string | undefined;
|
|
27085
|
+
capability?: string | undefined;
|
|
27086
|
+
}[];
|
|
27087
|
+
}>;
|
|
27088
|
+
export type HMListCommentVersionsOutput = z.infer<typeof HMListCommentVersionsOutputSchema>;
|
|
27089
|
+
export declare const HMListCommentVersionsRequestSchema: z.ZodObject<{
|
|
27090
|
+
key: z.ZodLiteral<"ListCommentVersions">;
|
|
27091
|
+
input: z.ZodObject<{
|
|
27092
|
+
id: z.ZodString;
|
|
27093
|
+
}, "strip", z.ZodTypeAny, {
|
|
27094
|
+
id: string;
|
|
27095
|
+
}, {
|
|
27096
|
+
id: string;
|
|
27097
|
+
}>;
|
|
27098
|
+
output: z.ZodObject<{
|
|
27099
|
+
versions: z.ZodArray<z.ZodObject<{
|
|
27100
|
+
id: z.ZodString;
|
|
27101
|
+
version: z.ZodString;
|
|
27102
|
+
author: z.ZodString;
|
|
27103
|
+
targetAccount: z.ZodString;
|
|
27104
|
+
targetPath: z.ZodOptional<z.ZodString>;
|
|
27105
|
+
targetVersion: z.ZodString;
|
|
27106
|
+
replyParent: z.ZodOptional<z.ZodString>;
|
|
27107
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
27108
|
+
threadRoot: z.ZodOptional<z.ZodString>;
|
|
27109
|
+
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
27110
|
+
capability: z.ZodOptional<z.ZodString>;
|
|
27111
|
+
content: z.ZodArray<z.ZodType<HMBlockNode, z.ZodTypeDef, HMBlockNode>, "many">;
|
|
27112
|
+
createTime: z.ZodUnion<[z.ZodObject<{
|
|
27113
|
+
seconds: z.ZodUnion<[z.ZodBigInt, z.ZodNumber]>;
|
|
27114
|
+
nanos: z.ZodNumber;
|
|
27115
|
+
}, "strict", z.ZodTypeAny, {
|
|
27116
|
+
seconds: number | bigint;
|
|
27117
|
+
nanos: number;
|
|
27118
|
+
}, {
|
|
27119
|
+
seconds: number | bigint;
|
|
27120
|
+
nanos: number;
|
|
27121
|
+
}>, z.ZodString]>;
|
|
27122
|
+
updateTime: z.ZodUnion<[z.ZodObject<{
|
|
27123
|
+
seconds: z.ZodUnion<[z.ZodBigInt, z.ZodNumber]>;
|
|
27124
|
+
nanos: z.ZodNumber;
|
|
27125
|
+
}, "strict", z.ZodTypeAny, {
|
|
27126
|
+
seconds: number | bigint;
|
|
27127
|
+
nanos: number;
|
|
27128
|
+
}, {
|
|
27129
|
+
seconds: number | bigint;
|
|
27130
|
+
nanos: number;
|
|
27131
|
+
}>, z.ZodString]>;
|
|
27132
|
+
visibility: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "PUBLIC" | "PRIVATE", string | number>;
|
|
27133
|
+
}, "strip", z.ZodTypeAny, {
|
|
27134
|
+
version: string;
|
|
27135
|
+
id: string;
|
|
27136
|
+
author: string;
|
|
27137
|
+
targetAccount: string;
|
|
27138
|
+
targetVersion: string;
|
|
27139
|
+
content: HMBlockNode[];
|
|
27140
|
+
createTime: string | {
|
|
27141
|
+
seconds: number | bigint;
|
|
27142
|
+
nanos: number;
|
|
27143
|
+
};
|
|
27144
|
+
updateTime: string | {
|
|
27145
|
+
seconds: number | bigint;
|
|
27146
|
+
nanos: number;
|
|
27147
|
+
};
|
|
27148
|
+
visibility: "PUBLIC" | "PRIVATE";
|
|
27149
|
+
targetPath?: string | undefined;
|
|
27150
|
+
replyParent?: string | undefined;
|
|
27151
|
+
replyParentVersion?: string | undefined;
|
|
27152
|
+
threadRoot?: string | undefined;
|
|
27153
|
+
threadRootVersion?: string | undefined;
|
|
27154
|
+
capability?: string | undefined;
|
|
27155
|
+
}, {
|
|
27156
|
+
version: string;
|
|
27157
|
+
id: string;
|
|
27158
|
+
author: string;
|
|
27159
|
+
targetAccount: string;
|
|
27160
|
+
targetVersion: string;
|
|
27161
|
+
content: HMBlockNode[];
|
|
27162
|
+
createTime: string | {
|
|
27163
|
+
seconds: number | bigint;
|
|
27164
|
+
nanos: number;
|
|
27165
|
+
};
|
|
27166
|
+
updateTime: string | {
|
|
27167
|
+
seconds: number | bigint;
|
|
27168
|
+
nanos: number;
|
|
27169
|
+
};
|
|
27170
|
+
visibility: string | number;
|
|
27171
|
+
targetPath?: string | undefined;
|
|
27172
|
+
replyParent?: string | undefined;
|
|
27173
|
+
replyParentVersion?: string | undefined;
|
|
27174
|
+
threadRoot?: string | undefined;
|
|
27175
|
+
threadRootVersion?: string | undefined;
|
|
27176
|
+
capability?: string | undefined;
|
|
27177
|
+
}>, "many">;
|
|
27178
|
+
}, "strip", z.ZodTypeAny, {
|
|
27179
|
+
versions: {
|
|
27180
|
+
version: string;
|
|
27181
|
+
id: string;
|
|
27182
|
+
author: string;
|
|
27183
|
+
targetAccount: string;
|
|
27184
|
+
targetVersion: string;
|
|
27185
|
+
content: HMBlockNode[];
|
|
27186
|
+
createTime: string | {
|
|
27187
|
+
seconds: number | bigint;
|
|
27188
|
+
nanos: number;
|
|
27189
|
+
};
|
|
27190
|
+
updateTime: string | {
|
|
27191
|
+
seconds: number | bigint;
|
|
27192
|
+
nanos: number;
|
|
27193
|
+
};
|
|
27194
|
+
visibility: "PUBLIC" | "PRIVATE";
|
|
27195
|
+
targetPath?: string | undefined;
|
|
27196
|
+
replyParent?: string | undefined;
|
|
27197
|
+
replyParentVersion?: string | undefined;
|
|
27198
|
+
threadRoot?: string | undefined;
|
|
27199
|
+
threadRootVersion?: string | undefined;
|
|
27200
|
+
capability?: string | undefined;
|
|
27201
|
+
}[];
|
|
27202
|
+
}, {
|
|
27203
|
+
versions: {
|
|
27204
|
+
version: string;
|
|
27205
|
+
id: string;
|
|
27206
|
+
author: string;
|
|
27207
|
+
targetAccount: string;
|
|
27208
|
+
targetVersion: string;
|
|
27209
|
+
content: HMBlockNode[];
|
|
27210
|
+
createTime: string | {
|
|
27211
|
+
seconds: number | bigint;
|
|
27212
|
+
nanos: number;
|
|
27213
|
+
};
|
|
27214
|
+
updateTime: string | {
|
|
27215
|
+
seconds: number | bigint;
|
|
27216
|
+
nanos: number;
|
|
27217
|
+
};
|
|
27218
|
+
visibility: string | number;
|
|
27219
|
+
targetPath?: string | undefined;
|
|
27220
|
+
replyParent?: string | undefined;
|
|
27221
|
+
replyParentVersion?: string | undefined;
|
|
27222
|
+
threadRoot?: string | undefined;
|
|
27223
|
+
threadRootVersion?: string | undefined;
|
|
27224
|
+
capability?: string | undefined;
|
|
27225
|
+
}[];
|
|
27226
|
+
}>;
|
|
27227
|
+
}, "strip", z.ZodTypeAny, {
|
|
27228
|
+
key: "ListCommentVersions";
|
|
27229
|
+
input: {
|
|
27230
|
+
id: string;
|
|
27231
|
+
};
|
|
27232
|
+
output: {
|
|
27233
|
+
versions: {
|
|
27234
|
+
version: string;
|
|
27235
|
+
id: string;
|
|
27236
|
+
author: string;
|
|
27237
|
+
targetAccount: string;
|
|
27238
|
+
targetVersion: string;
|
|
27239
|
+
content: HMBlockNode[];
|
|
27240
|
+
createTime: string | {
|
|
27241
|
+
seconds: number | bigint;
|
|
27242
|
+
nanos: number;
|
|
27243
|
+
};
|
|
27244
|
+
updateTime: string | {
|
|
27245
|
+
seconds: number | bigint;
|
|
27246
|
+
nanos: number;
|
|
27247
|
+
};
|
|
27248
|
+
visibility: "PUBLIC" | "PRIVATE";
|
|
27249
|
+
targetPath?: string | undefined;
|
|
27250
|
+
replyParent?: string | undefined;
|
|
27251
|
+
replyParentVersion?: string | undefined;
|
|
27252
|
+
threadRoot?: string | undefined;
|
|
27253
|
+
threadRootVersion?: string | undefined;
|
|
27254
|
+
capability?: string | undefined;
|
|
27255
|
+
}[];
|
|
27256
|
+
};
|
|
27257
|
+
}, {
|
|
27258
|
+
key: "ListCommentVersions";
|
|
27259
|
+
input: {
|
|
27260
|
+
id: string;
|
|
27261
|
+
};
|
|
27262
|
+
output: {
|
|
27263
|
+
versions: {
|
|
27264
|
+
version: string;
|
|
27265
|
+
id: string;
|
|
27266
|
+
author: string;
|
|
27267
|
+
targetAccount: string;
|
|
27268
|
+
targetVersion: string;
|
|
27269
|
+
content: HMBlockNode[];
|
|
27270
|
+
createTime: string | {
|
|
27271
|
+
seconds: number | bigint;
|
|
27272
|
+
nanos: number;
|
|
27273
|
+
};
|
|
27274
|
+
updateTime: string | {
|
|
27275
|
+
seconds: number | bigint;
|
|
27276
|
+
nanos: number;
|
|
27277
|
+
};
|
|
27278
|
+
visibility: string | number;
|
|
27279
|
+
targetPath?: string | undefined;
|
|
27280
|
+
replyParent?: string | undefined;
|
|
27281
|
+
replyParentVersion?: string | undefined;
|
|
27282
|
+
threadRoot?: string | undefined;
|
|
27283
|
+
threadRootVersion?: string | undefined;
|
|
27284
|
+
capability?: string | undefined;
|
|
27285
|
+
}[];
|
|
27286
|
+
};
|
|
27287
|
+
}>;
|
|
27288
|
+
export type HMListCommentVersionsRequest = z.infer<typeof HMListCommentVersionsRequestSchema>;
|
|
26725
27289
|
export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObject<{
|
|
26726
27290
|
key: z.ZodLiteral<"Resource">;
|
|
26727
27291
|
input: z.ZodObject<{
|
|
@@ -27163,6 +27727,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
27163
27727
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
27164
27728
|
targetVersion: z.ZodString;
|
|
27165
27729
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
27730
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
27166
27731
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
27167
27732
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
27168
27733
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -27206,6 +27771,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
27206
27771
|
visibility: "PUBLIC" | "PRIVATE";
|
|
27207
27772
|
targetPath?: string | undefined;
|
|
27208
27773
|
replyParent?: string | undefined;
|
|
27774
|
+
replyParentVersion?: string | undefined;
|
|
27209
27775
|
threadRoot?: string | undefined;
|
|
27210
27776
|
threadRootVersion?: string | undefined;
|
|
27211
27777
|
capability?: string | undefined;
|
|
@@ -27227,6 +27793,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
27227
27793
|
visibility: string | number;
|
|
27228
27794
|
targetPath?: string | undefined;
|
|
27229
27795
|
replyParent?: string | undefined;
|
|
27796
|
+
replyParentVersion?: string | undefined;
|
|
27230
27797
|
threadRoot?: string | undefined;
|
|
27231
27798
|
threadRootVersion?: string | undefined;
|
|
27232
27799
|
capability?: string | undefined;
|
|
@@ -27325,6 +27892,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
27325
27892
|
visibility: "PUBLIC" | "PRIVATE";
|
|
27326
27893
|
targetPath?: string | undefined;
|
|
27327
27894
|
replyParent?: string | undefined;
|
|
27895
|
+
replyParentVersion?: string | undefined;
|
|
27328
27896
|
threadRoot?: string | undefined;
|
|
27329
27897
|
threadRootVersion?: string | undefined;
|
|
27330
27898
|
capability?: string | undefined;
|
|
@@ -27366,6 +27934,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
27366
27934
|
visibility: string | number;
|
|
27367
27935
|
targetPath?: string | undefined;
|
|
27368
27936
|
replyParent?: string | undefined;
|
|
27937
|
+
replyParentVersion?: string | undefined;
|
|
27369
27938
|
threadRoot?: string | undefined;
|
|
27370
27939
|
threadRootVersion?: string | undefined;
|
|
27371
27940
|
capability?: string | undefined;
|
|
@@ -27971,6 +28540,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
27971
28540
|
visibility: "PUBLIC" | "PRIVATE";
|
|
27972
28541
|
targetPath?: string | undefined;
|
|
27973
28542
|
replyParent?: string | undefined;
|
|
28543
|
+
replyParentVersion?: string | undefined;
|
|
27974
28544
|
threadRoot?: string | undefined;
|
|
27975
28545
|
threadRootVersion?: string | undefined;
|
|
27976
28546
|
capability?: string | undefined;
|
|
@@ -28188,6 +28758,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
28188
28758
|
visibility: string | number;
|
|
28189
28759
|
targetPath?: string | undefined;
|
|
28190
28760
|
replyParent?: string | undefined;
|
|
28761
|
+
replyParentVersion?: string | undefined;
|
|
28191
28762
|
threadRoot?: string | undefined;
|
|
28192
28763
|
threadRootVersion?: string | undefined;
|
|
28193
28764
|
capability?: string | undefined;
|
|
@@ -28999,6 +29570,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
28999
29570
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
29000
29571
|
targetVersion: z.ZodString;
|
|
29001
29572
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
29573
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
29002
29574
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
29003
29575
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
29004
29576
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -29042,6 +29614,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
29042
29614
|
visibility: "PUBLIC" | "PRIVATE";
|
|
29043
29615
|
targetPath?: string | undefined;
|
|
29044
29616
|
replyParent?: string | undefined;
|
|
29617
|
+
replyParentVersion?: string | undefined;
|
|
29045
29618
|
threadRoot?: string | undefined;
|
|
29046
29619
|
threadRootVersion?: string | undefined;
|
|
29047
29620
|
capability?: string | undefined;
|
|
@@ -29063,6 +29636,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
29063
29636
|
visibility: string | number;
|
|
29064
29637
|
targetPath?: string | undefined;
|
|
29065
29638
|
replyParent?: string | undefined;
|
|
29639
|
+
replyParentVersion?: string | undefined;
|
|
29066
29640
|
threadRoot?: string | undefined;
|
|
29067
29641
|
threadRootVersion?: string | undefined;
|
|
29068
29642
|
capability?: string | undefined;
|
|
@@ -29088,6 +29662,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
29088
29662
|
visibility: "PUBLIC" | "PRIVATE";
|
|
29089
29663
|
targetPath?: string | undefined;
|
|
29090
29664
|
replyParent?: string | undefined;
|
|
29665
|
+
replyParentVersion?: string | undefined;
|
|
29091
29666
|
threadRoot?: string | undefined;
|
|
29092
29667
|
threadRootVersion?: string | undefined;
|
|
29093
29668
|
capability?: string | undefined;
|
|
@@ -29113,6 +29688,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
29113
29688
|
visibility: string | number;
|
|
29114
29689
|
targetPath?: string | undefined;
|
|
29115
29690
|
replyParent?: string | undefined;
|
|
29691
|
+
replyParentVersion?: string | undefined;
|
|
29116
29692
|
threadRoot?: string | undefined;
|
|
29117
29693
|
threadRootVersion?: string | undefined;
|
|
29118
29694
|
capability?: string | undefined;
|
|
@@ -30862,6 +31438,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
30862
31438
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
30863
31439
|
targetVersion: z.ZodString;
|
|
30864
31440
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
31441
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
30865
31442
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
30866
31443
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
30867
31444
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -30905,6 +31482,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
30905
31482
|
visibility: "PUBLIC" | "PRIVATE";
|
|
30906
31483
|
targetPath?: string | undefined;
|
|
30907
31484
|
replyParent?: string | undefined;
|
|
31485
|
+
replyParentVersion?: string | undefined;
|
|
30908
31486
|
threadRoot?: string | undefined;
|
|
30909
31487
|
threadRootVersion?: string | undefined;
|
|
30910
31488
|
capability?: string | undefined;
|
|
@@ -30926,6 +31504,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
30926
31504
|
visibility: string | number;
|
|
30927
31505
|
targetPath?: string | undefined;
|
|
30928
31506
|
replyParent?: string | undefined;
|
|
31507
|
+
replyParentVersion?: string | undefined;
|
|
30929
31508
|
threadRoot?: string | undefined;
|
|
30930
31509
|
threadRootVersion?: string | undefined;
|
|
30931
31510
|
capability?: string | undefined;
|
|
@@ -31154,6 +31733,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
31154
31733
|
visibility: "PUBLIC" | "PRIVATE";
|
|
31155
31734
|
targetPath?: string | undefined;
|
|
31156
31735
|
replyParent?: string | undefined;
|
|
31736
|
+
replyParentVersion?: string | undefined;
|
|
31157
31737
|
threadRoot?: string | undefined;
|
|
31158
31738
|
threadRootVersion?: string | undefined;
|
|
31159
31739
|
capability?: string | undefined;
|
|
@@ -31218,6 +31798,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
31218
31798
|
visibility: string | number;
|
|
31219
31799
|
targetPath?: string | undefined;
|
|
31220
31800
|
replyParent?: string | undefined;
|
|
31801
|
+
replyParentVersion?: string | undefined;
|
|
31221
31802
|
threadRoot?: string | undefined;
|
|
31222
31803
|
threadRootVersion?: string | undefined;
|
|
31223
31804
|
capability?: string | undefined;
|
|
@@ -31304,6 +31885,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
31304
31885
|
visibility: "PUBLIC" | "PRIVATE";
|
|
31305
31886
|
targetPath?: string | undefined;
|
|
31306
31887
|
replyParent?: string | undefined;
|
|
31888
|
+
replyParentVersion?: string | undefined;
|
|
31307
31889
|
threadRoot?: string | undefined;
|
|
31308
31890
|
threadRootVersion?: string | undefined;
|
|
31309
31891
|
capability?: string | undefined;
|
|
@@ -31390,6 +31972,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
31390
31972
|
visibility: string | number;
|
|
31391
31973
|
targetPath?: string | undefined;
|
|
31392
31974
|
replyParent?: string | undefined;
|
|
31975
|
+
replyParentVersion?: string | undefined;
|
|
31393
31976
|
threadRoot?: string | undefined;
|
|
31394
31977
|
threadRootVersion?: string | undefined;
|
|
31395
31978
|
capability?: string | undefined;
|
|
@@ -31546,6 +32129,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
31546
32129
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
31547
32130
|
targetVersion: z.ZodString;
|
|
31548
32131
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
32132
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
31549
32133
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
31550
32134
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
31551
32135
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -31589,6 +32173,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
31589
32173
|
visibility: "PUBLIC" | "PRIVATE";
|
|
31590
32174
|
targetPath?: string | undefined;
|
|
31591
32175
|
replyParent?: string | undefined;
|
|
32176
|
+
replyParentVersion?: string | undefined;
|
|
31592
32177
|
threadRoot?: string | undefined;
|
|
31593
32178
|
threadRootVersion?: string | undefined;
|
|
31594
32179
|
capability?: string | undefined;
|
|
@@ -31610,6 +32195,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
31610
32195
|
visibility: string | number;
|
|
31611
32196
|
targetPath?: string | undefined;
|
|
31612
32197
|
replyParent?: string | undefined;
|
|
32198
|
+
replyParentVersion?: string | undefined;
|
|
31613
32199
|
threadRoot?: string | undefined;
|
|
31614
32200
|
threadRootVersion?: string | undefined;
|
|
31615
32201
|
capability?: string | undefined;
|
|
@@ -31638,6 +32224,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
31638
32224
|
visibility: "PUBLIC" | "PRIVATE";
|
|
31639
32225
|
targetPath?: string | undefined;
|
|
31640
32226
|
replyParent?: string | undefined;
|
|
32227
|
+
replyParentVersion?: string | undefined;
|
|
31641
32228
|
threadRoot?: string | undefined;
|
|
31642
32229
|
threadRootVersion?: string | undefined;
|
|
31643
32230
|
capability?: string | undefined;
|
|
@@ -31664,6 +32251,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
31664
32251
|
visibility: string | number;
|
|
31665
32252
|
targetPath?: string | undefined;
|
|
31666
32253
|
replyParent?: string | undefined;
|
|
32254
|
+
replyParentVersion?: string | undefined;
|
|
31667
32255
|
threadRoot?: string | undefined;
|
|
31668
32256
|
threadRootVersion?: string | undefined;
|
|
31669
32257
|
capability?: string | undefined;
|
|
@@ -31884,6 +32472,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
31884
32472
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
31885
32473
|
targetVersion: z.ZodString;
|
|
31886
32474
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
32475
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
31887
32476
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
31888
32477
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
31889
32478
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -31927,6 +32516,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
31927
32516
|
visibility: "PUBLIC" | "PRIVATE";
|
|
31928
32517
|
targetPath?: string | undefined;
|
|
31929
32518
|
replyParent?: string | undefined;
|
|
32519
|
+
replyParentVersion?: string | undefined;
|
|
31930
32520
|
threadRoot?: string | undefined;
|
|
31931
32521
|
threadRootVersion?: string | undefined;
|
|
31932
32522
|
capability?: string | undefined;
|
|
@@ -31948,6 +32538,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
31948
32538
|
visibility: string | number;
|
|
31949
32539
|
targetPath?: string | undefined;
|
|
31950
32540
|
replyParent?: string | undefined;
|
|
32541
|
+
replyParentVersion?: string | undefined;
|
|
31951
32542
|
threadRoot?: string | undefined;
|
|
31952
32543
|
threadRootVersion?: string | undefined;
|
|
31953
32544
|
capability?: string | undefined;
|
|
@@ -32181,6 +32772,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
32181
32772
|
visibility: "PUBLIC" | "PRIVATE";
|
|
32182
32773
|
targetPath?: string | undefined;
|
|
32183
32774
|
replyParent?: string | undefined;
|
|
32775
|
+
replyParentVersion?: string | undefined;
|
|
32184
32776
|
threadRoot?: string | undefined;
|
|
32185
32777
|
threadRootVersion?: string | undefined;
|
|
32186
32778
|
capability?: string | undefined;
|
|
@@ -32248,6 +32840,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
32248
32840
|
visibility: string | number;
|
|
32249
32841
|
targetPath?: string | undefined;
|
|
32250
32842
|
replyParent?: string | undefined;
|
|
32843
|
+
replyParentVersion?: string | undefined;
|
|
32251
32844
|
threadRoot?: string | undefined;
|
|
32252
32845
|
threadRootVersion?: string | undefined;
|
|
32253
32846
|
capability?: string | undefined;
|
|
@@ -32358,6 +32951,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
32358
32951
|
visibility: "PUBLIC" | "PRIVATE";
|
|
32359
32952
|
targetPath?: string | undefined;
|
|
32360
32953
|
replyParent?: string | undefined;
|
|
32954
|
+
replyParentVersion?: string | undefined;
|
|
32361
32955
|
threadRoot?: string | undefined;
|
|
32362
32956
|
threadRootVersion?: string | undefined;
|
|
32363
32957
|
capability?: string | undefined;
|
|
@@ -32385,6 +32979,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
32385
32979
|
visibility: "PUBLIC" | "PRIVATE";
|
|
32386
32980
|
targetPath?: string | undefined;
|
|
32387
32981
|
replyParent?: string | undefined;
|
|
32982
|
+
replyParentVersion?: string | undefined;
|
|
32388
32983
|
threadRoot?: string | undefined;
|
|
32389
32984
|
threadRootVersion?: string | undefined;
|
|
32390
32985
|
capability?: string | undefined;
|
|
@@ -32495,6 +33090,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
32495
33090
|
visibility: string | number;
|
|
32496
33091
|
targetPath?: string | undefined;
|
|
32497
33092
|
replyParent?: string | undefined;
|
|
33093
|
+
replyParentVersion?: string | undefined;
|
|
32498
33094
|
threadRoot?: string | undefined;
|
|
32499
33095
|
threadRootVersion?: string | undefined;
|
|
32500
33096
|
capability?: string | undefined;
|
|
@@ -32522,6 +33118,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
32522
33118
|
visibility: string | number;
|
|
32523
33119
|
targetPath?: string | undefined;
|
|
32524
33120
|
replyParent?: string | undefined;
|
|
33121
|
+
replyParentVersion?: string | undefined;
|
|
32525
33122
|
threadRoot?: string | undefined;
|
|
32526
33123
|
threadRootVersion?: string | undefined;
|
|
32527
33124
|
capability?: string | undefined;
|
|
@@ -32655,6 +33252,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
32655
33252
|
visibility: "PUBLIC" | "PRIVATE";
|
|
32656
33253
|
targetPath?: string | undefined;
|
|
32657
33254
|
replyParent?: string | undefined;
|
|
33255
|
+
replyParentVersion?: string | undefined;
|
|
32658
33256
|
threadRoot?: string | undefined;
|
|
32659
33257
|
threadRootVersion?: string | undefined;
|
|
32660
33258
|
capability?: string | undefined;
|
|
@@ -32682,6 +33280,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
32682
33280
|
visibility: "PUBLIC" | "PRIVATE";
|
|
32683
33281
|
targetPath?: string | undefined;
|
|
32684
33282
|
replyParent?: string | undefined;
|
|
33283
|
+
replyParentVersion?: string | undefined;
|
|
32685
33284
|
threadRoot?: string | undefined;
|
|
32686
33285
|
threadRootVersion?: string | undefined;
|
|
32687
33286
|
capability?: string | undefined;
|
|
@@ -32815,6 +33414,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
32815
33414
|
visibility: string | number;
|
|
32816
33415
|
targetPath?: string | undefined;
|
|
32817
33416
|
replyParent?: string | undefined;
|
|
33417
|
+
replyParentVersion?: string | undefined;
|
|
32818
33418
|
threadRoot?: string | undefined;
|
|
32819
33419
|
threadRootVersion?: string | undefined;
|
|
32820
33420
|
capability?: string | undefined;
|
|
@@ -32842,6 +33442,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
32842
33442
|
visibility: string | number;
|
|
32843
33443
|
targetPath?: string | undefined;
|
|
32844
33444
|
replyParent?: string | undefined;
|
|
33445
|
+
replyParentVersion?: string | undefined;
|
|
32845
33446
|
threadRoot?: string | undefined;
|
|
32846
33447
|
threadRootVersion?: string | undefined;
|
|
32847
33448
|
capability?: string | undefined;
|
|
@@ -32996,6 +33597,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
32996
33597
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
32997
33598
|
targetVersion: z.ZodString;
|
|
32998
33599
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
33600
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
32999
33601
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
33000
33602
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
33001
33603
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -33039,6 +33641,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
33039
33641
|
visibility: "PUBLIC" | "PRIVATE";
|
|
33040
33642
|
targetPath?: string | undefined;
|
|
33041
33643
|
replyParent?: string | undefined;
|
|
33644
|
+
replyParentVersion?: string | undefined;
|
|
33042
33645
|
threadRoot?: string | undefined;
|
|
33043
33646
|
threadRootVersion?: string | undefined;
|
|
33044
33647
|
capability?: string | undefined;
|
|
@@ -33060,6 +33663,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
33060
33663
|
visibility: string | number;
|
|
33061
33664
|
targetPath?: string | undefined;
|
|
33062
33665
|
replyParent?: string | undefined;
|
|
33666
|
+
replyParentVersion?: string | undefined;
|
|
33063
33667
|
threadRoot?: string | undefined;
|
|
33064
33668
|
threadRootVersion?: string | undefined;
|
|
33065
33669
|
capability?: string | undefined;
|
|
@@ -33288,6 +33892,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
33288
33892
|
visibility: "PUBLIC" | "PRIVATE";
|
|
33289
33893
|
targetPath?: string | undefined;
|
|
33290
33894
|
replyParent?: string | undefined;
|
|
33895
|
+
replyParentVersion?: string | undefined;
|
|
33291
33896
|
threadRoot?: string | undefined;
|
|
33292
33897
|
threadRootVersion?: string | undefined;
|
|
33293
33898
|
capability?: string | undefined;
|
|
@@ -33352,6 +33957,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
33352
33957
|
visibility: string | number;
|
|
33353
33958
|
targetPath?: string | undefined;
|
|
33354
33959
|
replyParent?: string | undefined;
|
|
33960
|
+
replyParentVersion?: string | undefined;
|
|
33355
33961
|
threadRoot?: string | undefined;
|
|
33356
33962
|
threadRootVersion?: string | undefined;
|
|
33357
33963
|
capability?: string | undefined;
|
|
@@ -33438,6 +34044,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
33438
34044
|
visibility: "PUBLIC" | "PRIVATE";
|
|
33439
34045
|
targetPath?: string | undefined;
|
|
33440
34046
|
replyParent?: string | undefined;
|
|
34047
|
+
replyParentVersion?: string | undefined;
|
|
33441
34048
|
threadRoot?: string | undefined;
|
|
33442
34049
|
threadRootVersion?: string | undefined;
|
|
33443
34050
|
capability?: string | undefined;
|
|
@@ -33524,6 +34131,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
33524
34131
|
visibility: string | number;
|
|
33525
34132
|
targetPath?: string | undefined;
|
|
33526
34133
|
replyParent?: string | undefined;
|
|
34134
|
+
replyParentVersion?: string | undefined;
|
|
33527
34135
|
threadRoot?: string | undefined;
|
|
33528
34136
|
threadRootVersion?: string | undefined;
|
|
33529
34137
|
capability?: string | undefined;
|
|
@@ -34183,6 +34791,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
34183
34791
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
34184
34792
|
targetVersion: z.ZodString;
|
|
34185
34793
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
34794
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
34186
34795
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
34187
34796
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
34188
34797
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -34226,6 +34835,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
34226
34835
|
visibility: "PUBLIC" | "PRIVATE";
|
|
34227
34836
|
targetPath?: string | undefined;
|
|
34228
34837
|
replyParent?: string | undefined;
|
|
34838
|
+
replyParentVersion?: string | undefined;
|
|
34229
34839
|
threadRoot?: string | undefined;
|
|
34230
34840
|
threadRootVersion?: string | undefined;
|
|
34231
34841
|
capability?: string | undefined;
|
|
@@ -34247,6 +34857,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
34247
34857
|
visibility: string | number;
|
|
34248
34858
|
targetPath?: string | undefined;
|
|
34249
34859
|
replyParent?: string | undefined;
|
|
34860
|
+
replyParentVersion?: string | undefined;
|
|
34250
34861
|
threadRoot?: string | undefined;
|
|
34251
34862
|
threadRootVersion?: string | undefined;
|
|
34252
34863
|
capability?: string | undefined;
|
|
@@ -34475,6 +35086,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
34475
35086
|
visibility: "PUBLIC" | "PRIVATE";
|
|
34476
35087
|
targetPath?: string | undefined;
|
|
34477
35088
|
replyParent?: string | undefined;
|
|
35089
|
+
replyParentVersion?: string | undefined;
|
|
34478
35090
|
threadRoot?: string | undefined;
|
|
34479
35091
|
threadRootVersion?: string | undefined;
|
|
34480
35092
|
capability?: string | undefined;
|
|
@@ -34539,6 +35151,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
34539
35151
|
visibility: string | number;
|
|
34540
35152
|
targetPath?: string | undefined;
|
|
34541
35153
|
replyParent?: string | undefined;
|
|
35154
|
+
replyParentVersion?: string | undefined;
|
|
34542
35155
|
threadRoot?: string | undefined;
|
|
34543
35156
|
threadRootVersion?: string | undefined;
|
|
34544
35157
|
capability?: string | undefined;
|
|
@@ -34625,6 +35238,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
34625
35238
|
visibility: "PUBLIC" | "PRIVATE";
|
|
34626
35239
|
targetPath?: string | undefined;
|
|
34627
35240
|
replyParent?: string | undefined;
|
|
35241
|
+
replyParentVersion?: string | undefined;
|
|
34628
35242
|
threadRoot?: string | undefined;
|
|
34629
35243
|
threadRootVersion?: string | undefined;
|
|
34630
35244
|
capability?: string | undefined;
|
|
@@ -34711,6 +35325,7 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
34711
35325
|
visibility: string | number;
|
|
34712
35326
|
targetPath?: string | undefined;
|
|
34713
35327
|
replyParent?: string | undefined;
|
|
35328
|
+
replyParentVersion?: string | undefined;
|
|
34714
35329
|
threadRoot?: string | undefined;
|
|
34715
35330
|
threadRootVersion?: string | undefined;
|
|
34716
35331
|
capability?: string | undefined;
|
|
@@ -35563,6 +36178,204 @@ export declare const HMGetRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodOb
|
|
|
35563
36178
|
changes: number;
|
|
35564
36179
|
authorUids?: string[] | undefined;
|
|
35565
36180
|
};
|
|
36181
|
+
}>, z.ZodObject<{
|
|
36182
|
+
key: z.ZodLiteral<"ListCommentVersions">;
|
|
36183
|
+
input: z.ZodObject<{
|
|
36184
|
+
id: z.ZodString;
|
|
36185
|
+
}, "strip", z.ZodTypeAny, {
|
|
36186
|
+
id: string;
|
|
36187
|
+
}, {
|
|
36188
|
+
id: string;
|
|
36189
|
+
}>;
|
|
36190
|
+
output: z.ZodObject<{
|
|
36191
|
+
versions: z.ZodArray<z.ZodObject<{
|
|
36192
|
+
id: z.ZodString;
|
|
36193
|
+
version: z.ZodString;
|
|
36194
|
+
author: z.ZodString;
|
|
36195
|
+
targetAccount: z.ZodString;
|
|
36196
|
+
targetPath: z.ZodOptional<z.ZodString>;
|
|
36197
|
+
targetVersion: z.ZodString;
|
|
36198
|
+
replyParent: z.ZodOptional<z.ZodString>;
|
|
36199
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
36200
|
+
threadRoot: z.ZodOptional<z.ZodString>;
|
|
36201
|
+
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
36202
|
+
capability: z.ZodOptional<z.ZodString>;
|
|
36203
|
+
content: z.ZodArray<z.ZodType<HMBlockNode, z.ZodTypeDef, HMBlockNode>, "many">;
|
|
36204
|
+
createTime: z.ZodUnion<[z.ZodObject<{
|
|
36205
|
+
seconds: z.ZodUnion<[z.ZodBigInt, z.ZodNumber]>;
|
|
36206
|
+
nanos: z.ZodNumber;
|
|
36207
|
+
}, "strict", z.ZodTypeAny, {
|
|
36208
|
+
seconds: number | bigint;
|
|
36209
|
+
nanos: number;
|
|
36210
|
+
}, {
|
|
36211
|
+
seconds: number | bigint;
|
|
36212
|
+
nanos: number;
|
|
36213
|
+
}>, z.ZodString]>;
|
|
36214
|
+
updateTime: z.ZodUnion<[z.ZodObject<{
|
|
36215
|
+
seconds: z.ZodUnion<[z.ZodBigInt, z.ZodNumber]>;
|
|
36216
|
+
nanos: z.ZodNumber;
|
|
36217
|
+
}, "strict", z.ZodTypeAny, {
|
|
36218
|
+
seconds: number | bigint;
|
|
36219
|
+
nanos: number;
|
|
36220
|
+
}, {
|
|
36221
|
+
seconds: number | bigint;
|
|
36222
|
+
nanos: number;
|
|
36223
|
+
}>, z.ZodString]>;
|
|
36224
|
+
visibility: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "PUBLIC" | "PRIVATE", string | number>;
|
|
36225
|
+
}, "strip", z.ZodTypeAny, {
|
|
36226
|
+
version: string;
|
|
36227
|
+
id: string;
|
|
36228
|
+
author: string;
|
|
36229
|
+
targetAccount: string;
|
|
36230
|
+
targetVersion: string;
|
|
36231
|
+
content: HMBlockNode[];
|
|
36232
|
+
createTime: string | {
|
|
36233
|
+
seconds: number | bigint;
|
|
36234
|
+
nanos: number;
|
|
36235
|
+
};
|
|
36236
|
+
updateTime: string | {
|
|
36237
|
+
seconds: number | bigint;
|
|
36238
|
+
nanos: number;
|
|
36239
|
+
};
|
|
36240
|
+
visibility: "PUBLIC" | "PRIVATE";
|
|
36241
|
+
targetPath?: string | undefined;
|
|
36242
|
+
replyParent?: string | undefined;
|
|
36243
|
+
replyParentVersion?: string | undefined;
|
|
36244
|
+
threadRoot?: string | undefined;
|
|
36245
|
+
threadRootVersion?: string | undefined;
|
|
36246
|
+
capability?: string | undefined;
|
|
36247
|
+
}, {
|
|
36248
|
+
version: string;
|
|
36249
|
+
id: string;
|
|
36250
|
+
author: string;
|
|
36251
|
+
targetAccount: string;
|
|
36252
|
+
targetVersion: string;
|
|
36253
|
+
content: HMBlockNode[];
|
|
36254
|
+
createTime: string | {
|
|
36255
|
+
seconds: number | bigint;
|
|
36256
|
+
nanos: number;
|
|
36257
|
+
};
|
|
36258
|
+
updateTime: string | {
|
|
36259
|
+
seconds: number | bigint;
|
|
36260
|
+
nanos: number;
|
|
36261
|
+
};
|
|
36262
|
+
visibility: string | number;
|
|
36263
|
+
targetPath?: string | undefined;
|
|
36264
|
+
replyParent?: string | undefined;
|
|
36265
|
+
replyParentVersion?: string | undefined;
|
|
36266
|
+
threadRoot?: string | undefined;
|
|
36267
|
+
threadRootVersion?: string | undefined;
|
|
36268
|
+
capability?: string | undefined;
|
|
36269
|
+
}>, "many">;
|
|
36270
|
+
}, "strip", z.ZodTypeAny, {
|
|
36271
|
+
versions: {
|
|
36272
|
+
version: string;
|
|
36273
|
+
id: string;
|
|
36274
|
+
author: string;
|
|
36275
|
+
targetAccount: string;
|
|
36276
|
+
targetVersion: string;
|
|
36277
|
+
content: HMBlockNode[];
|
|
36278
|
+
createTime: string | {
|
|
36279
|
+
seconds: number | bigint;
|
|
36280
|
+
nanos: number;
|
|
36281
|
+
};
|
|
36282
|
+
updateTime: string | {
|
|
36283
|
+
seconds: number | bigint;
|
|
36284
|
+
nanos: number;
|
|
36285
|
+
};
|
|
36286
|
+
visibility: "PUBLIC" | "PRIVATE";
|
|
36287
|
+
targetPath?: string | undefined;
|
|
36288
|
+
replyParent?: string | undefined;
|
|
36289
|
+
replyParentVersion?: string | undefined;
|
|
36290
|
+
threadRoot?: string | undefined;
|
|
36291
|
+
threadRootVersion?: string | undefined;
|
|
36292
|
+
capability?: string | undefined;
|
|
36293
|
+
}[];
|
|
36294
|
+
}, {
|
|
36295
|
+
versions: {
|
|
36296
|
+
version: string;
|
|
36297
|
+
id: string;
|
|
36298
|
+
author: string;
|
|
36299
|
+
targetAccount: string;
|
|
36300
|
+
targetVersion: string;
|
|
36301
|
+
content: HMBlockNode[];
|
|
36302
|
+
createTime: string | {
|
|
36303
|
+
seconds: number | bigint;
|
|
36304
|
+
nanos: number;
|
|
36305
|
+
};
|
|
36306
|
+
updateTime: string | {
|
|
36307
|
+
seconds: number | bigint;
|
|
36308
|
+
nanos: number;
|
|
36309
|
+
};
|
|
36310
|
+
visibility: string | number;
|
|
36311
|
+
targetPath?: string | undefined;
|
|
36312
|
+
replyParent?: string | undefined;
|
|
36313
|
+
replyParentVersion?: string | undefined;
|
|
36314
|
+
threadRoot?: string | undefined;
|
|
36315
|
+
threadRootVersion?: string | undefined;
|
|
36316
|
+
capability?: string | undefined;
|
|
36317
|
+
}[];
|
|
36318
|
+
}>;
|
|
36319
|
+
}, "strip", z.ZodTypeAny, {
|
|
36320
|
+
key: "ListCommentVersions";
|
|
36321
|
+
input: {
|
|
36322
|
+
id: string;
|
|
36323
|
+
};
|
|
36324
|
+
output: {
|
|
36325
|
+
versions: {
|
|
36326
|
+
version: string;
|
|
36327
|
+
id: string;
|
|
36328
|
+
author: string;
|
|
36329
|
+
targetAccount: string;
|
|
36330
|
+
targetVersion: string;
|
|
36331
|
+
content: HMBlockNode[];
|
|
36332
|
+
createTime: string | {
|
|
36333
|
+
seconds: number | bigint;
|
|
36334
|
+
nanos: number;
|
|
36335
|
+
};
|
|
36336
|
+
updateTime: string | {
|
|
36337
|
+
seconds: number | bigint;
|
|
36338
|
+
nanos: number;
|
|
36339
|
+
};
|
|
36340
|
+
visibility: "PUBLIC" | "PRIVATE";
|
|
36341
|
+
targetPath?: string | undefined;
|
|
36342
|
+
replyParent?: string | undefined;
|
|
36343
|
+
replyParentVersion?: string | undefined;
|
|
36344
|
+
threadRoot?: string | undefined;
|
|
36345
|
+
threadRootVersion?: string | undefined;
|
|
36346
|
+
capability?: string | undefined;
|
|
36347
|
+
}[];
|
|
36348
|
+
};
|
|
36349
|
+
}, {
|
|
36350
|
+
key: "ListCommentVersions";
|
|
36351
|
+
input: {
|
|
36352
|
+
id: string;
|
|
36353
|
+
};
|
|
36354
|
+
output: {
|
|
36355
|
+
versions: {
|
|
36356
|
+
version: string;
|
|
36357
|
+
id: string;
|
|
36358
|
+
author: string;
|
|
36359
|
+
targetAccount: string;
|
|
36360
|
+
targetVersion: string;
|
|
36361
|
+
content: HMBlockNode[];
|
|
36362
|
+
createTime: string | {
|
|
36363
|
+
seconds: number | bigint;
|
|
36364
|
+
nanos: number;
|
|
36365
|
+
};
|
|
36366
|
+
updateTime: string | {
|
|
36367
|
+
seconds: number | bigint;
|
|
36368
|
+
nanos: number;
|
|
36369
|
+
};
|
|
36370
|
+
visibility: string | number;
|
|
36371
|
+
targetPath?: string | undefined;
|
|
36372
|
+
replyParent?: string | undefined;
|
|
36373
|
+
replyParentVersion?: string | undefined;
|
|
36374
|
+
threadRoot?: string | undefined;
|
|
36375
|
+
threadRootVersion?: string | undefined;
|
|
36376
|
+
capability?: string | undefined;
|
|
36377
|
+
}[];
|
|
36378
|
+
};
|
|
35566
36379
|
}>]>;
|
|
35567
36380
|
export type HMGetRequest = z.infer<typeof HMGetRequestSchema>;
|
|
35568
36381
|
export declare const HMActionSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObject<{
|
|
@@ -36776,6 +37589,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
36776
37589
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
36777
37590
|
targetVersion: z.ZodString;
|
|
36778
37591
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
37592
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
36779
37593
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
36780
37594
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
36781
37595
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -36819,6 +37633,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
36819
37633
|
visibility: "PUBLIC" | "PRIVATE";
|
|
36820
37634
|
targetPath?: string | undefined;
|
|
36821
37635
|
replyParent?: string | undefined;
|
|
37636
|
+
replyParentVersion?: string | undefined;
|
|
36822
37637
|
threadRoot?: string | undefined;
|
|
36823
37638
|
threadRootVersion?: string | undefined;
|
|
36824
37639
|
capability?: string | undefined;
|
|
@@ -36840,6 +37655,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
36840
37655
|
visibility: string | number;
|
|
36841
37656
|
targetPath?: string | undefined;
|
|
36842
37657
|
replyParent?: string | undefined;
|
|
37658
|
+
replyParentVersion?: string | undefined;
|
|
36843
37659
|
threadRoot?: string | undefined;
|
|
36844
37660
|
threadRootVersion?: string | undefined;
|
|
36845
37661
|
capability?: string | undefined;
|
|
@@ -36938,6 +37754,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
36938
37754
|
visibility: "PUBLIC" | "PRIVATE";
|
|
36939
37755
|
targetPath?: string | undefined;
|
|
36940
37756
|
replyParent?: string | undefined;
|
|
37757
|
+
replyParentVersion?: string | undefined;
|
|
36941
37758
|
threadRoot?: string | undefined;
|
|
36942
37759
|
threadRootVersion?: string | undefined;
|
|
36943
37760
|
capability?: string | undefined;
|
|
@@ -36979,6 +37796,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
36979
37796
|
visibility: string | number;
|
|
36980
37797
|
targetPath?: string | undefined;
|
|
36981
37798
|
replyParent?: string | undefined;
|
|
37799
|
+
replyParentVersion?: string | undefined;
|
|
36982
37800
|
threadRoot?: string | undefined;
|
|
36983
37801
|
threadRootVersion?: string | undefined;
|
|
36984
37802
|
capability?: string | undefined;
|
|
@@ -37584,6 +38402,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
37584
38402
|
visibility: "PUBLIC" | "PRIVATE";
|
|
37585
38403
|
targetPath?: string | undefined;
|
|
37586
38404
|
replyParent?: string | undefined;
|
|
38405
|
+
replyParentVersion?: string | undefined;
|
|
37587
38406
|
threadRoot?: string | undefined;
|
|
37588
38407
|
threadRootVersion?: string | undefined;
|
|
37589
38408
|
capability?: string | undefined;
|
|
@@ -37801,6 +38620,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
37801
38620
|
visibility: string | number;
|
|
37802
38621
|
targetPath?: string | undefined;
|
|
37803
38622
|
replyParent?: string | undefined;
|
|
38623
|
+
replyParentVersion?: string | undefined;
|
|
37804
38624
|
threadRoot?: string | undefined;
|
|
37805
38625
|
threadRootVersion?: string | undefined;
|
|
37806
38626
|
capability?: string | undefined;
|
|
@@ -38612,6 +39432,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
38612
39432
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
38613
39433
|
targetVersion: z.ZodString;
|
|
38614
39434
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
39435
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
38615
39436
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
38616
39437
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
38617
39438
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -38655,6 +39476,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
38655
39476
|
visibility: "PUBLIC" | "PRIVATE";
|
|
38656
39477
|
targetPath?: string | undefined;
|
|
38657
39478
|
replyParent?: string | undefined;
|
|
39479
|
+
replyParentVersion?: string | undefined;
|
|
38658
39480
|
threadRoot?: string | undefined;
|
|
38659
39481
|
threadRootVersion?: string | undefined;
|
|
38660
39482
|
capability?: string | undefined;
|
|
@@ -38676,6 +39498,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
38676
39498
|
visibility: string | number;
|
|
38677
39499
|
targetPath?: string | undefined;
|
|
38678
39500
|
replyParent?: string | undefined;
|
|
39501
|
+
replyParentVersion?: string | undefined;
|
|
38679
39502
|
threadRoot?: string | undefined;
|
|
38680
39503
|
threadRootVersion?: string | undefined;
|
|
38681
39504
|
capability?: string | undefined;
|
|
@@ -38701,6 +39524,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
38701
39524
|
visibility: "PUBLIC" | "PRIVATE";
|
|
38702
39525
|
targetPath?: string | undefined;
|
|
38703
39526
|
replyParent?: string | undefined;
|
|
39527
|
+
replyParentVersion?: string | undefined;
|
|
38704
39528
|
threadRoot?: string | undefined;
|
|
38705
39529
|
threadRootVersion?: string | undefined;
|
|
38706
39530
|
capability?: string | undefined;
|
|
@@ -38726,6 +39550,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
38726
39550
|
visibility: string | number;
|
|
38727
39551
|
targetPath?: string | undefined;
|
|
38728
39552
|
replyParent?: string | undefined;
|
|
39553
|
+
replyParentVersion?: string | undefined;
|
|
38729
39554
|
threadRoot?: string | undefined;
|
|
38730
39555
|
threadRootVersion?: string | undefined;
|
|
38731
39556
|
capability?: string | undefined;
|
|
@@ -40475,6 +41300,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
40475
41300
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
40476
41301
|
targetVersion: z.ZodString;
|
|
40477
41302
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
41303
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
40478
41304
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
40479
41305
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
40480
41306
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -40518,6 +41344,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
40518
41344
|
visibility: "PUBLIC" | "PRIVATE";
|
|
40519
41345
|
targetPath?: string | undefined;
|
|
40520
41346
|
replyParent?: string | undefined;
|
|
41347
|
+
replyParentVersion?: string | undefined;
|
|
40521
41348
|
threadRoot?: string | undefined;
|
|
40522
41349
|
threadRootVersion?: string | undefined;
|
|
40523
41350
|
capability?: string | undefined;
|
|
@@ -40539,6 +41366,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
40539
41366
|
visibility: string | number;
|
|
40540
41367
|
targetPath?: string | undefined;
|
|
40541
41368
|
replyParent?: string | undefined;
|
|
41369
|
+
replyParentVersion?: string | undefined;
|
|
40542
41370
|
threadRoot?: string | undefined;
|
|
40543
41371
|
threadRootVersion?: string | undefined;
|
|
40544
41372
|
capability?: string | undefined;
|
|
@@ -40767,6 +41595,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
40767
41595
|
visibility: "PUBLIC" | "PRIVATE";
|
|
40768
41596
|
targetPath?: string | undefined;
|
|
40769
41597
|
replyParent?: string | undefined;
|
|
41598
|
+
replyParentVersion?: string | undefined;
|
|
40770
41599
|
threadRoot?: string | undefined;
|
|
40771
41600
|
threadRootVersion?: string | undefined;
|
|
40772
41601
|
capability?: string | undefined;
|
|
@@ -40831,6 +41660,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
40831
41660
|
visibility: string | number;
|
|
40832
41661
|
targetPath?: string | undefined;
|
|
40833
41662
|
replyParent?: string | undefined;
|
|
41663
|
+
replyParentVersion?: string | undefined;
|
|
40834
41664
|
threadRoot?: string | undefined;
|
|
40835
41665
|
threadRootVersion?: string | undefined;
|
|
40836
41666
|
capability?: string | undefined;
|
|
@@ -40917,6 +41747,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
40917
41747
|
visibility: "PUBLIC" | "PRIVATE";
|
|
40918
41748
|
targetPath?: string | undefined;
|
|
40919
41749
|
replyParent?: string | undefined;
|
|
41750
|
+
replyParentVersion?: string | undefined;
|
|
40920
41751
|
threadRoot?: string | undefined;
|
|
40921
41752
|
threadRootVersion?: string | undefined;
|
|
40922
41753
|
capability?: string | undefined;
|
|
@@ -41003,6 +41834,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
41003
41834
|
visibility: string | number;
|
|
41004
41835
|
targetPath?: string | undefined;
|
|
41005
41836
|
replyParent?: string | undefined;
|
|
41837
|
+
replyParentVersion?: string | undefined;
|
|
41006
41838
|
threadRoot?: string | undefined;
|
|
41007
41839
|
threadRootVersion?: string | undefined;
|
|
41008
41840
|
capability?: string | undefined;
|
|
@@ -41159,6 +41991,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
41159
41991
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
41160
41992
|
targetVersion: z.ZodString;
|
|
41161
41993
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
41994
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
41162
41995
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
41163
41996
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
41164
41997
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -41202,6 +42035,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
41202
42035
|
visibility: "PUBLIC" | "PRIVATE";
|
|
41203
42036
|
targetPath?: string | undefined;
|
|
41204
42037
|
replyParent?: string | undefined;
|
|
42038
|
+
replyParentVersion?: string | undefined;
|
|
41205
42039
|
threadRoot?: string | undefined;
|
|
41206
42040
|
threadRootVersion?: string | undefined;
|
|
41207
42041
|
capability?: string | undefined;
|
|
@@ -41223,6 +42057,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
41223
42057
|
visibility: string | number;
|
|
41224
42058
|
targetPath?: string | undefined;
|
|
41225
42059
|
replyParent?: string | undefined;
|
|
42060
|
+
replyParentVersion?: string | undefined;
|
|
41226
42061
|
threadRoot?: string | undefined;
|
|
41227
42062
|
threadRootVersion?: string | undefined;
|
|
41228
42063
|
capability?: string | undefined;
|
|
@@ -41251,6 +42086,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
41251
42086
|
visibility: "PUBLIC" | "PRIVATE";
|
|
41252
42087
|
targetPath?: string | undefined;
|
|
41253
42088
|
replyParent?: string | undefined;
|
|
42089
|
+
replyParentVersion?: string | undefined;
|
|
41254
42090
|
threadRoot?: string | undefined;
|
|
41255
42091
|
threadRootVersion?: string | undefined;
|
|
41256
42092
|
capability?: string | undefined;
|
|
@@ -41277,6 +42113,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
41277
42113
|
visibility: string | number;
|
|
41278
42114
|
targetPath?: string | undefined;
|
|
41279
42115
|
replyParent?: string | undefined;
|
|
42116
|
+
replyParentVersion?: string | undefined;
|
|
41280
42117
|
threadRoot?: string | undefined;
|
|
41281
42118
|
threadRootVersion?: string | undefined;
|
|
41282
42119
|
capability?: string | undefined;
|
|
@@ -41497,6 +42334,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
41497
42334
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
41498
42335
|
targetVersion: z.ZodString;
|
|
41499
42336
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
42337
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
41500
42338
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
41501
42339
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
41502
42340
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -41540,6 +42378,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
41540
42378
|
visibility: "PUBLIC" | "PRIVATE";
|
|
41541
42379
|
targetPath?: string | undefined;
|
|
41542
42380
|
replyParent?: string | undefined;
|
|
42381
|
+
replyParentVersion?: string | undefined;
|
|
41543
42382
|
threadRoot?: string | undefined;
|
|
41544
42383
|
threadRootVersion?: string | undefined;
|
|
41545
42384
|
capability?: string | undefined;
|
|
@@ -41561,6 +42400,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
41561
42400
|
visibility: string | number;
|
|
41562
42401
|
targetPath?: string | undefined;
|
|
41563
42402
|
replyParent?: string | undefined;
|
|
42403
|
+
replyParentVersion?: string | undefined;
|
|
41564
42404
|
threadRoot?: string | undefined;
|
|
41565
42405
|
threadRootVersion?: string | undefined;
|
|
41566
42406
|
capability?: string | undefined;
|
|
@@ -41794,6 +42634,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
41794
42634
|
visibility: "PUBLIC" | "PRIVATE";
|
|
41795
42635
|
targetPath?: string | undefined;
|
|
41796
42636
|
replyParent?: string | undefined;
|
|
42637
|
+
replyParentVersion?: string | undefined;
|
|
41797
42638
|
threadRoot?: string | undefined;
|
|
41798
42639
|
threadRootVersion?: string | undefined;
|
|
41799
42640
|
capability?: string | undefined;
|
|
@@ -41861,6 +42702,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
41861
42702
|
visibility: string | number;
|
|
41862
42703
|
targetPath?: string | undefined;
|
|
41863
42704
|
replyParent?: string | undefined;
|
|
42705
|
+
replyParentVersion?: string | undefined;
|
|
41864
42706
|
threadRoot?: string | undefined;
|
|
41865
42707
|
threadRootVersion?: string | undefined;
|
|
41866
42708
|
capability?: string | undefined;
|
|
@@ -41971,6 +42813,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
41971
42813
|
visibility: "PUBLIC" | "PRIVATE";
|
|
41972
42814
|
targetPath?: string | undefined;
|
|
41973
42815
|
replyParent?: string | undefined;
|
|
42816
|
+
replyParentVersion?: string | undefined;
|
|
41974
42817
|
threadRoot?: string | undefined;
|
|
41975
42818
|
threadRootVersion?: string | undefined;
|
|
41976
42819
|
capability?: string | undefined;
|
|
@@ -41998,6 +42841,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
41998
42841
|
visibility: "PUBLIC" | "PRIVATE";
|
|
41999
42842
|
targetPath?: string | undefined;
|
|
42000
42843
|
replyParent?: string | undefined;
|
|
42844
|
+
replyParentVersion?: string | undefined;
|
|
42001
42845
|
threadRoot?: string | undefined;
|
|
42002
42846
|
threadRootVersion?: string | undefined;
|
|
42003
42847
|
capability?: string | undefined;
|
|
@@ -42108,6 +42952,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
42108
42952
|
visibility: string | number;
|
|
42109
42953
|
targetPath?: string | undefined;
|
|
42110
42954
|
replyParent?: string | undefined;
|
|
42955
|
+
replyParentVersion?: string | undefined;
|
|
42111
42956
|
threadRoot?: string | undefined;
|
|
42112
42957
|
threadRootVersion?: string | undefined;
|
|
42113
42958
|
capability?: string | undefined;
|
|
@@ -42135,6 +42980,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
42135
42980
|
visibility: string | number;
|
|
42136
42981
|
targetPath?: string | undefined;
|
|
42137
42982
|
replyParent?: string | undefined;
|
|
42983
|
+
replyParentVersion?: string | undefined;
|
|
42138
42984
|
threadRoot?: string | undefined;
|
|
42139
42985
|
threadRootVersion?: string | undefined;
|
|
42140
42986
|
capability?: string | undefined;
|
|
@@ -42268,6 +43114,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
42268
43114
|
visibility: "PUBLIC" | "PRIVATE";
|
|
42269
43115
|
targetPath?: string | undefined;
|
|
42270
43116
|
replyParent?: string | undefined;
|
|
43117
|
+
replyParentVersion?: string | undefined;
|
|
42271
43118
|
threadRoot?: string | undefined;
|
|
42272
43119
|
threadRootVersion?: string | undefined;
|
|
42273
43120
|
capability?: string | undefined;
|
|
@@ -42295,6 +43142,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
42295
43142
|
visibility: "PUBLIC" | "PRIVATE";
|
|
42296
43143
|
targetPath?: string | undefined;
|
|
42297
43144
|
replyParent?: string | undefined;
|
|
43145
|
+
replyParentVersion?: string | undefined;
|
|
42298
43146
|
threadRoot?: string | undefined;
|
|
42299
43147
|
threadRootVersion?: string | undefined;
|
|
42300
43148
|
capability?: string | undefined;
|
|
@@ -42428,6 +43276,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
42428
43276
|
visibility: string | number;
|
|
42429
43277
|
targetPath?: string | undefined;
|
|
42430
43278
|
replyParent?: string | undefined;
|
|
43279
|
+
replyParentVersion?: string | undefined;
|
|
42431
43280
|
threadRoot?: string | undefined;
|
|
42432
43281
|
threadRootVersion?: string | undefined;
|
|
42433
43282
|
capability?: string | undefined;
|
|
@@ -42455,6 +43304,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
42455
43304
|
visibility: string | number;
|
|
42456
43305
|
targetPath?: string | undefined;
|
|
42457
43306
|
replyParent?: string | undefined;
|
|
43307
|
+
replyParentVersion?: string | undefined;
|
|
42458
43308
|
threadRoot?: string | undefined;
|
|
42459
43309
|
threadRootVersion?: string | undefined;
|
|
42460
43310
|
capability?: string | undefined;
|
|
@@ -42609,6 +43459,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
42609
43459
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
42610
43460
|
targetVersion: z.ZodString;
|
|
42611
43461
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
43462
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
42612
43463
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
42613
43464
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
42614
43465
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -42652,6 +43503,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
42652
43503
|
visibility: "PUBLIC" | "PRIVATE";
|
|
42653
43504
|
targetPath?: string | undefined;
|
|
42654
43505
|
replyParent?: string | undefined;
|
|
43506
|
+
replyParentVersion?: string | undefined;
|
|
42655
43507
|
threadRoot?: string | undefined;
|
|
42656
43508
|
threadRootVersion?: string | undefined;
|
|
42657
43509
|
capability?: string | undefined;
|
|
@@ -42673,6 +43525,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
42673
43525
|
visibility: string | number;
|
|
42674
43526
|
targetPath?: string | undefined;
|
|
42675
43527
|
replyParent?: string | undefined;
|
|
43528
|
+
replyParentVersion?: string | undefined;
|
|
42676
43529
|
threadRoot?: string | undefined;
|
|
42677
43530
|
threadRootVersion?: string | undefined;
|
|
42678
43531
|
capability?: string | undefined;
|
|
@@ -42901,6 +43754,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
42901
43754
|
visibility: "PUBLIC" | "PRIVATE";
|
|
42902
43755
|
targetPath?: string | undefined;
|
|
42903
43756
|
replyParent?: string | undefined;
|
|
43757
|
+
replyParentVersion?: string | undefined;
|
|
42904
43758
|
threadRoot?: string | undefined;
|
|
42905
43759
|
threadRootVersion?: string | undefined;
|
|
42906
43760
|
capability?: string | undefined;
|
|
@@ -42965,6 +43819,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
42965
43819
|
visibility: string | number;
|
|
42966
43820
|
targetPath?: string | undefined;
|
|
42967
43821
|
replyParent?: string | undefined;
|
|
43822
|
+
replyParentVersion?: string | undefined;
|
|
42968
43823
|
threadRoot?: string | undefined;
|
|
42969
43824
|
threadRootVersion?: string | undefined;
|
|
42970
43825
|
capability?: string | undefined;
|
|
@@ -43051,6 +43906,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
43051
43906
|
visibility: "PUBLIC" | "PRIVATE";
|
|
43052
43907
|
targetPath?: string | undefined;
|
|
43053
43908
|
replyParent?: string | undefined;
|
|
43909
|
+
replyParentVersion?: string | undefined;
|
|
43054
43910
|
threadRoot?: string | undefined;
|
|
43055
43911
|
threadRootVersion?: string | undefined;
|
|
43056
43912
|
capability?: string | undefined;
|
|
@@ -43137,6 +43993,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
43137
43993
|
visibility: string | number;
|
|
43138
43994
|
targetPath?: string | undefined;
|
|
43139
43995
|
replyParent?: string | undefined;
|
|
43996
|
+
replyParentVersion?: string | undefined;
|
|
43140
43997
|
threadRoot?: string | undefined;
|
|
43141
43998
|
threadRootVersion?: string | undefined;
|
|
43142
43999
|
capability?: string | undefined;
|
|
@@ -43796,6 +44653,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
43796
44653
|
targetPath: z.ZodOptional<z.ZodString>;
|
|
43797
44654
|
targetVersion: z.ZodString;
|
|
43798
44655
|
replyParent: z.ZodOptional<z.ZodString>;
|
|
44656
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
43799
44657
|
threadRoot: z.ZodOptional<z.ZodString>;
|
|
43800
44658
|
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
43801
44659
|
capability: z.ZodOptional<z.ZodString>;
|
|
@@ -43839,6 +44697,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
43839
44697
|
visibility: "PUBLIC" | "PRIVATE";
|
|
43840
44698
|
targetPath?: string | undefined;
|
|
43841
44699
|
replyParent?: string | undefined;
|
|
44700
|
+
replyParentVersion?: string | undefined;
|
|
43842
44701
|
threadRoot?: string | undefined;
|
|
43843
44702
|
threadRootVersion?: string | undefined;
|
|
43844
44703
|
capability?: string | undefined;
|
|
@@ -43860,6 +44719,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
43860
44719
|
visibility: string | number;
|
|
43861
44720
|
targetPath?: string | undefined;
|
|
43862
44721
|
replyParent?: string | undefined;
|
|
44722
|
+
replyParentVersion?: string | undefined;
|
|
43863
44723
|
threadRoot?: string | undefined;
|
|
43864
44724
|
threadRootVersion?: string | undefined;
|
|
43865
44725
|
capability?: string | undefined;
|
|
@@ -44088,6 +44948,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
44088
44948
|
visibility: "PUBLIC" | "PRIVATE";
|
|
44089
44949
|
targetPath?: string | undefined;
|
|
44090
44950
|
replyParent?: string | undefined;
|
|
44951
|
+
replyParentVersion?: string | undefined;
|
|
44091
44952
|
threadRoot?: string | undefined;
|
|
44092
44953
|
threadRootVersion?: string | undefined;
|
|
44093
44954
|
capability?: string | undefined;
|
|
@@ -44152,6 +45013,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
44152
45013
|
visibility: string | number;
|
|
44153
45014
|
targetPath?: string | undefined;
|
|
44154
45015
|
replyParent?: string | undefined;
|
|
45016
|
+
replyParentVersion?: string | undefined;
|
|
44155
45017
|
threadRoot?: string | undefined;
|
|
44156
45018
|
threadRootVersion?: string | undefined;
|
|
44157
45019
|
capability?: string | undefined;
|
|
@@ -44238,6 +45100,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
44238
45100
|
visibility: "PUBLIC" | "PRIVATE";
|
|
44239
45101
|
targetPath?: string | undefined;
|
|
44240
45102
|
replyParent?: string | undefined;
|
|
45103
|
+
replyParentVersion?: string | undefined;
|
|
44241
45104
|
threadRoot?: string | undefined;
|
|
44242
45105
|
threadRootVersion?: string | undefined;
|
|
44243
45106
|
capability?: string | undefined;
|
|
@@ -44324,6 +45187,7 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
44324
45187
|
visibility: string | number;
|
|
44325
45188
|
targetPath?: string | undefined;
|
|
44326
45189
|
replyParent?: string | undefined;
|
|
45190
|
+
replyParentVersion?: string | undefined;
|
|
44327
45191
|
threadRoot?: string | undefined;
|
|
44328
45192
|
threadRootVersion?: string | undefined;
|
|
44329
45193
|
capability?: string | undefined;
|
|
@@ -45176,6 +46040,204 @@ export declare const HMRequestSchema: z.ZodDiscriminatedUnion<"key", [z.ZodObjec
|
|
|
45176
46040
|
changes: number;
|
|
45177
46041
|
authorUids?: string[] | undefined;
|
|
45178
46042
|
};
|
|
46043
|
+
}>, z.ZodObject<{
|
|
46044
|
+
key: z.ZodLiteral<"ListCommentVersions">;
|
|
46045
|
+
input: z.ZodObject<{
|
|
46046
|
+
id: z.ZodString;
|
|
46047
|
+
}, "strip", z.ZodTypeAny, {
|
|
46048
|
+
id: string;
|
|
46049
|
+
}, {
|
|
46050
|
+
id: string;
|
|
46051
|
+
}>;
|
|
46052
|
+
output: z.ZodObject<{
|
|
46053
|
+
versions: z.ZodArray<z.ZodObject<{
|
|
46054
|
+
id: z.ZodString;
|
|
46055
|
+
version: z.ZodString;
|
|
46056
|
+
author: z.ZodString;
|
|
46057
|
+
targetAccount: z.ZodString;
|
|
46058
|
+
targetPath: z.ZodOptional<z.ZodString>;
|
|
46059
|
+
targetVersion: z.ZodString;
|
|
46060
|
+
replyParent: z.ZodOptional<z.ZodString>;
|
|
46061
|
+
replyParentVersion: z.ZodOptional<z.ZodString>;
|
|
46062
|
+
threadRoot: z.ZodOptional<z.ZodString>;
|
|
46063
|
+
threadRootVersion: z.ZodOptional<z.ZodString>;
|
|
46064
|
+
capability: z.ZodOptional<z.ZodString>;
|
|
46065
|
+
content: z.ZodArray<z.ZodType<HMBlockNode, z.ZodTypeDef, HMBlockNode>, "many">;
|
|
46066
|
+
createTime: z.ZodUnion<[z.ZodObject<{
|
|
46067
|
+
seconds: z.ZodUnion<[z.ZodBigInt, z.ZodNumber]>;
|
|
46068
|
+
nanos: z.ZodNumber;
|
|
46069
|
+
}, "strict", z.ZodTypeAny, {
|
|
46070
|
+
seconds: number | bigint;
|
|
46071
|
+
nanos: number;
|
|
46072
|
+
}, {
|
|
46073
|
+
seconds: number | bigint;
|
|
46074
|
+
nanos: number;
|
|
46075
|
+
}>, z.ZodString]>;
|
|
46076
|
+
updateTime: z.ZodUnion<[z.ZodObject<{
|
|
46077
|
+
seconds: z.ZodUnion<[z.ZodBigInt, z.ZodNumber]>;
|
|
46078
|
+
nanos: z.ZodNumber;
|
|
46079
|
+
}, "strict", z.ZodTypeAny, {
|
|
46080
|
+
seconds: number | bigint;
|
|
46081
|
+
nanos: number;
|
|
46082
|
+
}, {
|
|
46083
|
+
seconds: number | bigint;
|
|
46084
|
+
nanos: number;
|
|
46085
|
+
}>, z.ZodString]>;
|
|
46086
|
+
visibility: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "PUBLIC" | "PRIVATE", string | number>;
|
|
46087
|
+
}, "strip", z.ZodTypeAny, {
|
|
46088
|
+
version: string;
|
|
46089
|
+
id: string;
|
|
46090
|
+
author: string;
|
|
46091
|
+
targetAccount: string;
|
|
46092
|
+
targetVersion: string;
|
|
46093
|
+
content: HMBlockNode[];
|
|
46094
|
+
createTime: string | {
|
|
46095
|
+
seconds: number | bigint;
|
|
46096
|
+
nanos: number;
|
|
46097
|
+
};
|
|
46098
|
+
updateTime: string | {
|
|
46099
|
+
seconds: number | bigint;
|
|
46100
|
+
nanos: number;
|
|
46101
|
+
};
|
|
46102
|
+
visibility: "PUBLIC" | "PRIVATE";
|
|
46103
|
+
targetPath?: string | undefined;
|
|
46104
|
+
replyParent?: string | undefined;
|
|
46105
|
+
replyParentVersion?: string | undefined;
|
|
46106
|
+
threadRoot?: string | undefined;
|
|
46107
|
+
threadRootVersion?: string | undefined;
|
|
46108
|
+
capability?: string | undefined;
|
|
46109
|
+
}, {
|
|
46110
|
+
version: string;
|
|
46111
|
+
id: string;
|
|
46112
|
+
author: string;
|
|
46113
|
+
targetAccount: string;
|
|
46114
|
+
targetVersion: string;
|
|
46115
|
+
content: HMBlockNode[];
|
|
46116
|
+
createTime: string | {
|
|
46117
|
+
seconds: number | bigint;
|
|
46118
|
+
nanos: number;
|
|
46119
|
+
};
|
|
46120
|
+
updateTime: string | {
|
|
46121
|
+
seconds: number | bigint;
|
|
46122
|
+
nanos: number;
|
|
46123
|
+
};
|
|
46124
|
+
visibility: string | number;
|
|
46125
|
+
targetPath?: string | undefined;
|
|
46126
|
+
replyParent?: string | undefined;
|
|
46127
|
+
replyParentVersion?: string | undefined;
|
|
46128
|
+
threadRoot?: string | undefined;
|
|
46129
|
+
threadRootVersion?: string | undefined;
|
|
46130
|
+
capability?: string | undefined;
|
|
46131
|
+
}>, "many">;
|
|
46132
|
+
}, "strip", z.ZodTypeAny, {
|
|
46133
|
+
versions: {
|
|
46134
|
+
version: string;
|
|
46135
|
+
id: string;
|
|
46136
|
+
author: string;
|
|
46137
|
+
targetAccount: string;
|
|
46138
|
+
targetVersion: string;
|
|
46139
|
+
content: HMBlockNode[];
|
|
46140
|
+
createTime: string | {
|
|
46141
|
+
seconds: number | bigint;
|
|
46142
|
+
nanos: number;
|
|
46143
|
+
};
|
|
46144
|
+
updateTime: string | {
|
|
46145
|
+
seconds: number | bigint;
|
|
46146
|
+
nanos: number;
|
|
46147
|
+
};
|
|
46148
|
+
visibility: "PUBLIC" | "PRIVATE";
|
|
46149
|
+
targetPath?: string | undefined;
|
|
46150
|
+
replyParent?: string | undefined;
|
|
46151
|
+
replyParentVersion?: string | undefined;
|
|
46152
|
+
threadRoot?: string | undefined;
|
|
46153
|
+
threadRootVersion?: string | undefined;
|
|
46154
|
+
capability?: string | undefined;
|
|
46155
|
+
}[];
|
|
46156
|
+
}, {
|
|
46157
|
+
versions: {
|
|
46158
|
+
version: string;
|
|
46159
|
+
id: string;
|
|
46160
|
+
author: string;
|
|
46161
|
+
targetAccount: string;
|
|
46162
|
+
targetVersion: string;
|
|
46163
|
+
content: HMBlockNode[];
|
|
46164
|
+
createTime: string | {
|
|
46165
|
+
seconds: number | bigint;
|
|
46166
|
+
nanos: number;
|
|
46167
|
+
};
|
|
46168
|
+
updateTime: string | {
|
|
46169
|
+
seconds: number | bigint;
|
|
46170
|
+
nanos: number;
|
|
46171
|
+
};
|
|
46172
|
+
visibility: string | number;
|
|
46173
|
+
targetPath?: string | undefined;
|
|
46174
|
+
replyParent?: string | undefined;
|
|
46175
|
+
replyParentVersion?: string | undefined;
|
|
46176
|
+
threadRoot?: string | undefined;
|
|
46177
|
+
threadRootVersion?: string | undefined;
|
|
46178
|
+
capability?: string | undefined;
|
|
46179
|
+
}[];
|
|
46180
|
+
}>;
|
|
46181
|
+
}, "strip", z.ZodTypeAny, {
|
|
46182
|
+
key: "ListCommentVersions";
|
|
46183
|
+
input: {
|
|
46184
|
+
id: string;
|
|
46185
|
+
};
|
|
46186
|
+
output: {
|
|
46187
|
+
versions: {
|
|
46188
|
+
version: string;
|
|
46189
|
+
id: string;
|
|
46190
|
+
author: string;
|
|
46191
|
+
targetAccount: string;
|
|
46192
|
+
targetVersion: string;
|
|
46193
|
+
content: HMBlockNode[];
|
|
46194
|
+
createTime: string | {
|
|
46195
|
+
seconds: number | bigint;
|
|
46196
|
+
nanos: number;
|
|
46197
|
+
};
|
|
46198
|
+
updateTime: string | {
|
|
46199
|
+
seconds: number | bigint;
|
|
46200
|
+
nanos: number;
|
|
46201
|
+
};
|
|
46202
|
+
visibility: "PUBLIC" | "PRIVATE";
|
|
46203
|
+
targetPath?: string | undefined;
|
|
46204
|
+
replyParent?: string | undefined;
|
|
46205
|
+
replyParentVersion?: string | undefined;
|
|
46206
|
+
threadRoot?: string | undefined;
|
|
46207
|
+
threadRootVersion?: string | undefined;
|
|
46208
|
+
capability?: string | undefined;
|
|
46209
|
+
}[];
|
|
46210
|
+
};
|
|
46211
|
+
}, {
|
|
46212
|
+
key: "ListCommentVersions";
|
|
46213
|
+
input: {
|
|
46214
|
+
id: string;
|
|
46215
|
+
};
|
|
46216
|
+
output: {
|
|
46217
|
+
versions: {
|
|
46218
|
+
version: string;
|
|
46219
|
+
id: string;
|
|
46220
|
+
author: string;
|
|
46221
|
+
targetAccount: string;
|
|
46222
|
+
targetVersion: string;
|
|
46223
|
+
content: HMBlockNode[];
|
|
46224
|
+
createTime: string | {
|
|
46225
|
+
seconds: number | bigint;
|
|
46226
|
+
nanos: number;
|
|
46227
|
+
};
|
|
46228
|
+
updateTime: string | {
|
|
46229
|
+
seconds: number | bigint;
|
|
46230
|
+
nanos: number;
|
|
46231
|
+
};
|
|
46232
|
+
visibility: string | number;
|
|
46233
|
+
targetPath?: string | undefined;
|
|
46234
|
+
replyParent?: string | undefined;
|
|
46235
|
+
replyParentVersion?: string | undefined;
|
|
46236
|
+
threadRoot?: string | undefined;
|
|
46237
|
+
threadRootVersion?: string | undefined;
|
|
46238
|
+
capability?: string | undefined;
|
|
46239
|
+
}[];
|
|
46240
|
+
};
|
|
45179
46241
|
}>, z.ZodObject<{
|
|
45180
46242
|
key: z.ZodLiteral<"PublishBlobs">;
|
|
45181
46243
|
input: z.ZodObject<{
|