rmapi-js 9.0.0 → 9.0.1

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/README.md CHANGED
@@ -90,3 +90,6 @@ Since this has all been reverse engineered, any help expanding the api would be
90
90
  helpful. For example, There's currently a function to download the entire state
91
91
  of a document, but I ran into trouble trying to reupload that exact same file as
92
92
  a clone.
93
+
94
+ You can also run `bun doc:md` to generate Markdown docs in `docs-md/`, which can
95
+ be handy when sharing context.
package/dist/raw.d.ts CHANGED
@@ -138,7 +138,7 @@ export interface CPages {
138
138
  /** [speculative] information about individual pages */
139
139
  pages: CPagePage[];
140
140
  /** [unknown] */
141
- uuids: CPageUUID[];
141
+ uuids: CPageUUID[] | null;
142
142
  }
143
143
  /** the content metadata for collections (folders) */
144
144
  export interface CollectionContent {
package/dist/raw.js CHANGED
@@ -57,10 +57,10 @@ const cPages = properties({
57
57
  value: int32(),
58
58
  }, undefined, true),
59
59
  pages: elements(cPagePage),
60
- uuids: elements(properties({
60
+ uuids: nullable(elements(properties({
61
61
  first: string(),
62
62
  second: uint32(),
63
- }, undefined, true)),
63
+ }, undefined, true))),
64
64
  }, undefined, true);
65
65
  const collectionContent = properties(undefined, {
66
66
  tags: elements(tag),