@mx-space/api-client 3.8.0 → 4.0.0-next.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -1245,15 +1245,11 @@ let TimelineType = /* @__PURE__ */ function(TimelineType) {
1245
1245
  }({});
1246
1246
  //#endregion
1247
1247
  //#region ../../apps/core/src/constants/db.constant.ts
1248
- const NOTE_COLLECTION_NAME = "notes";
1249
- const PAGE_COLLECTION_NAME = "pages";
1250
- const POST_COLLECTION_NAME = "posts";
1251
- const RECENTLY_COLLECTION_NAME = "recentlies";
1252
1248
  let CollectionRefTypes = /* @__PURE__ */ function(CollectionRefTypes) {
1253
- CollectionRefTypes[CollectionRefTypes["Post"] = POST_COLLECTION_NAME] = "Post";
1254
- CollectionRefTypes[CollectionRefTypes["Note"] = NOTE_COLLECTION_NAME] = "Note";
1255
- CollectionRefTypes[CollectionRefTypes["Page"] = PAGE_COLLECTION_NAME] = "Page";
1256
- CollectionRefTypes[CollectionRefTypes["Recently"] = RECENTLY_COLLECTION_NAME] = "Recently";
1249
+ CollectionRefTypes["Post"] = "post";
1250
+ CollectionRefTypes["Note"] = "note";
1251
+ CollectionRefTypes["Page"] = "page";
1252
+ CollectionRefTypes["Recently"] = "recently";
1257
1253
  return CollectionRefTypes;
1258
1254
  }({});
1259
1255
  //#endregion
@@ -1290,9 +1286,10 @@ let EnumPageType = /* @__PURE__ */ function(EnumPageType) {
1290
1286
  //#endregion
1291
1287
  //#region models/recently.ts
1292
1288
  let RecentlyRefTypes = /* @__PURE__ */ function(RecentlyRefTypes) {
1293
- RecentlyRefTypes["Post"] = "Post";
1294
- RecentlyRefTypes["Note"] = "Note";
1295
- RecentlyRefTypes["Page"] = "Page";
1289
+ RecentlyRefTypes["Post"] = "post";
1290
+ RecentlyRefTypes["Note"] = "note";
1291
+ RecentlyRefTypes["Page"] = "page";
1292
+ RecentlyRefTypes["Recently"] = "recently";
1296
1293
  return RecentlyRefTypes;
1297
1294
  }({});
1298
1295
  let RecentlyTypeEnum = /* @__PURE__ */ function(RecentlyTypeEnum) {
@@ -1310,6 +1307,7 @@ let RecentlyTypeEnum = /* @__PURE__ */ function(RecentlyTypeEnum) {
1310
1307
  //#region models/snippet.ts
1311
1308
  let SnippetType = /* @__PURE__ */ function(SnippetType) {
1312
1309
  SnippetType["JSON"] = "json";
1310
+ SnippetType["JSON5"] = "json5";
1313
1311
  SnippetType["Function"] = "function";
1314
1312
  SnippetType["Text"] = "text";
1315
1313
  SnippetType["YAML"] = "yaml";