@seed-hypermedia/client 0.0.57 → 0.0.58
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-RJAN7AV6.mjs → chunk-MNRFUFMX.mjs} +14 -1
- package/dist/hm-types.d.ts +9901 -8193
- package/dist/hm-types.mjs +5 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/hm-types.mjs
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import {
|
|
2
|
+
BUILTIN_METADATA_KEYS,
|
|
2
3
|
BackgroundColorAnnotationSchema,
|
|
3
4
|
BlockRangeSchema,
|
|
4
5
|
BoldAnnotationSchema,
|
|
@@ -166,6 +167,7 @@ import {
|
|
|
166
167
|
TextSizeAnnotationSchema,
|
|
167
168
|
UnderlineAnnotationSchema,
|
|
168
169
|
codePointLength,
|
|
170
|
+
countCustomMetadataFields,
|
|
169
171
|
entityQueryPathToHmIdPath,
|
|
170
172
|
getHMQueryString,
|
|
171
173
|
hmIdPathToEntityQueryPath,
|
|
@@ -182,8 +184,9 @@ import {
|
|
|
182
184
|
toNumber,
|
|
183
185
|
unpackHmId,
|
|
184
186
|
unpackedHmIdSchema
|
|
185
|
-
} from "./chunk-
|
|
187
|
+
} from "./chunk-MNRFUFMX.mjs";
|
|
186
188
|
export {
|
|
189
|
+
BUILTIN_METADATA_KEYS,
|
|
187
190
|
BackgroundColorAnnotationSchema,
|
|
188
191
|
BlockRangeSchema,
|
|
189
192
|
BoldAnnotationSchema,
|
|
@@ -351,6 +354,7 @@ export {
|
|
|
351
354
|
TextSizeAnnotationSchema,
|
|
352
355
|
UnderlineAnnotationSchema,
|
|
353
356
|
codePointLength,
|
|
357
|
+
countCustomMetadataFields,
|
|
354
358
|
entityQueryPathToHmIdPath,
|
|
355
359
|
getHMQueryString,
|
|
356
360
|
hmIdPathToEntityQueryPath,
|
package/dist/index.mjs
CHANGED