@seed-hypermedia/client 0.0.37 → 0.0.38
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/{chunk-2BRMXRIG.mjs → chunk-PY2VJAIE.mjs} +21 -0
- package/dist/hm-types.d.ts +12182 -7074
- package/dist/hm-types.mjs +7 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
|
@@ -883,6 +883,22 @@ var HMListCapabilitiesRequestSchema = z.object({
|
|
|
883
883
|
input: HMListCapabilitiesInputSchema,
|
|
884
884
|
output: HMListCapabilitiesOutputSchema
|
|
885
885
|
});
|
|
886
|
+
var HMListDocumentCollaboratorsInputSchema = z.object({
|
|
887
|
+
targetId: unpackedHmIdSchema
|
|
888
|
+
});
|
|
889
|
+
var HMListDocumentCollaboratorsOutputSchema = z.object({
|
|
890
|
+
publisherUid: z.string(),
|
|
891
|
+
parentCapabilities: z.array(HMCapabilitySchema),
|
|
892
|
+
grantedCapabilities: z.array(HMCapabilitySchema),
|
|
893
|
+
grantedMembers: z.array(HMSiteMemberSchema),
|
|
894
|
+
members: z.array(HMSiteMemberSchema),
|
|
895
|
+
accounts: HMAccountsMetadataSchema
|
|
896
|
+
});
|
|
897
|
+
var HMListDocumentCollaboratorsRequestSchema = z.object({
|
|
898
|
+
key: z.literal("ListDocumentCollaborators"),
|
|
899
|
+
input: HMListDocumentCollaboratorsInputSchema,
|
|
900
|
+
output: HMListDocumentCollaboratorsOutputSchema
|
|
901
|
+
});
|
|
886
902
|
var HMInteractionSummaryInputSchema = z.object({
|
|
887
903
|
id: unpackedHmIdSchema
|
|
888
904
|
});
|
|
@@ -1039,6 +1055,7 @@ var HMGetRequestSchema = z.discriminatedUnion("key", [
|
|
|
1039
1055
|
HMListCitationsRequestSchema,
|
|
1040
1056
|
HMListChangesRequestSchema,
|
|
1041
1057
|
HMListCapabilitiesRequestSchema,
|
|
1058
|
+
HMListDocumentCollaboratorsRequestSchema,
|
|
1042
1059
|
HMInteractionSummaryRequestSchema,
|
|
1043
1060
|
HMListCommentVersionsRequestSchema,
|
|
1044
1061
|
HMGetDomainRequestSchema,
|
|
@@ -1068,6 +1085,7 @@ var HMRequestSchema = z.discriminatedUnion("key", [
|
|
|
1068
1085
|
HMListCitationsRequestSchema,
|
|
1069
1086
|
HMListChangesRequestSchema,
|
|
1070
1087
|
HMListCapabilitiesRequestSchema,
|
|
1088
|
+
HMListDocumentCollaboratorsRequestSchema,
|
|
1071
1089
|
HMInteractionSummaryRequestSchema,
|
|
1072
1090
|
HMListCommentVersionsRequestSchema,
|
|
1073
1091
|
HMGetDomainRequestSchema,
|
|
@@ -1369,6 +1387,9 @@ export {
|
|
|
1369
1387
|
HMListCapabilitiesOutputSchema,
|
|
1370
1388
|
HMListCapabilitiesInputSchema,
|
|
1371
1389
|
HMListCapabilitiesRequestSchema,
|
|
1390
|
+
HMListDocumentCollaboratorsInputSchema,
|
|
1391
|
+
HMListDocumentCollaboratorsOutputSchema,
|
|
1392
|
+
HMListDocumentCollaboratorsRequestSchema,
|
|
1372
1393
|
HMInteractionSummaryInputSchema,
|
|
1373
1394
|
HMInteractionSummaryOutputSchema,
|
|
1374
1395
|
HMInteractionSummaryRequestSchema,
|