@mx-space/api-client 4.0.0-next.0 → 4.0.0-next.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/dist/index.d.cts CHANGED
@@ -959,6 +959,18 @@ type RecentlyRefType = {
959
959
  title: string;
960
960
  url: string;
961
961
  };
962
+ /**
963
+ * 服务端 attachRef 注入:when `refType`/`refId` 指向 post/note/page/recently,
964
+ * 列表/详情会附此扁形 summary;orphan ref(目标已删)则为 null。
965
+ */
966
+ interface RecentlyRefSummary {
967
+ id: string;
968
+ type: RecentlyRefTypes;
969
+ title?: string;
970
+ slug?: string | null;
971
+ nid?: number;
972
+ url?: string;
973
+ }
962
974
  declare enum RecentlyTypeEnum {
963
975
  Text = "text",
964
976
  Book = "book",
@@ -1032,6 +1044,7 @@ interface RecentlyModel {
1032
1044
  metadata: RecentlyMetadata | null;
1033
1045
  refType: RecentlyRefTypes;
1034
1046
  refId: string | null;
1047
+ ref?: RecentlyRefSummary | null;
1035
1048
  up: number;
1036
1049
  down: number;
1037
1050
  commentsIndex: number;
@@ -2705,35 +2718,35 @@ declare class SearchController<ResponseWrapper> implements IController {
2705
2718
  search(type: 'note', keyword: string, options?: SearchOption): Promise<RequestProxyResult<PaginateResult<Pick<NoteModel, 'modifiedAt' | 'id' | 'title' | 'createdAt' | 'nid'> & SearchResultHighlight>, ResponseWrapper>>;
2706
2719
  search(type: 'post', keyword: string, options?: SearchOption): Promise<RequestProxyResult<PaginateResult<Pick<PostModel, 'modifiedAt' | 'id' | 'title' | 'createdAt' | 'slug' | 'category'> & SearchResultHighlight>, ResponseWrapper>>;
2707
2720
  search(type: 'page', keyword: string, options?: SearchOption): Promise<RequestProxyResult<PaginateResult<Pick<PageModel, 'modifiedAt' | 'id' | 'title' | 'createdAt' | 'slug'> & SearchResultHighlight>, ResponseWrapper>>;
2708
- searchAll(keyword: string, options?: SearchOption): RequestProxyResult<RequestProxyResult<PaginateResult<(Pick<PostModel, "category" | "id" | "createdAt" | "modifiedAt" | "title" | "slug"> & SearchResultHighlight & {
2721
+ searchAll(keyword: string, options?: SearchOption): RequestProxyResult<RequestProxyResult<PaginateResult<(Pick<PostModel, "category" | "id" | "title" | "slug" | "modifiedAt" | "createdAt"> & SearchResultHighlight & {
2709
2722
  type: "post";
2710
- }) | (Pick<NoteModel, "id" | "createdAt" | "modifiedAt" | "title" | "nid"> & SearchResultHighlight & {
2723
+ }) | (Pick<NoteModel, "id" | "title" | "modifiedAt" | "createdAt" | "nid"> & SearchResultHighlight & {
2711
2724
  type: "note";
2712
- }) | (Pick<PageModel, "id" | "createdAt" | "modifiedAt" | "title" | "slug"> & SearchResultHighlight & {
2725
+ }) | (Pick<PageModel, "id" | "title" | "slug" | "modifiedAt" | "createdAt"> & SearchResultHighlight & {
2713
2726
  type: "page";
2714
2727
  })>, ResponseWrapper>, ResponseWrapper, ResponseWrapper extends unknown ? {
2715
2728
  [key: string]: any;
2716
- data: RequestProxyResult<PaginateResult<(Pick<PostModel, "category" | "id" | "createdAt" | "modifiedAt" | "title" | "slug"> & SearchResultHighlight & {
2729
+ data: RequestProxyResult<PaginateResult<(Pick<PostModel, "category" | "id" | "title" | "slug" | "modifiedAt" | "createdAt"> & SearchResultHighlight & {
2717
2730
  type: "post";
2718
- }) | (Pick<NoteModel, "id" | "createdAt" | "modifiedAt" | "title" | "nid"> & SearchResultHighlight & {
2731
+ }) | (Pick<NoteModel, "id" | "title" | "modifiedAt" | "createdAt" | "nid"> & SearchResultHighlight & {
2719
2732
  type: "note";
2720
- }) | (Pick<PageModel, "id" | "createdAt" | "modifiedAt" | "title" | "slug"> & SearchResultHighlight & {
2733
+ }) | (Pick<PageModel, "id" | "title" | "slug" | "modifiedAt" | "createdAt"> & SearchResultHighlight & {
2721
2734
  type: "page";
2722
2735
  })>, ResponseWrapper>;
2723
2736
  } : ResponseWrapper extends {
2724
- data: RequestProxyResult<PaginateResult<(Pick<PostModel, "category" | "id" | "createdAt" | "modifiedAt" | "title" | "slug"> & SearchResultHighlight & {
2737
+ data: RequestProxyResult<PaginateResult<(Pick<PostModel, "category" | "id" | "title" | "slug" | "modifiedAt" | "createdAt"> & SearchResultHighlight & {
2725
2738
  type: "post";
2726
- }) | (Pick<NoteModel, "id" | "createdAt" | "modifiedAt" | "title" | "nid"> & SearchResultHighlight & {
2739
+ }) | (Pick<NoteModel, "id" | "title" | "modifiedAt" | "createdAt" | "nid"> & SearchResultHighlight & {
2727
2740
  type: "note";
2728
- }) | (Pick<PageModel, "id" | "createdAt" | "modifiedAt" | "title" | "slug"> & SearchResultHighlight & {
2741
+ }) | (Pick<PageModel, "id" | "title" | "slug" | "modifiedAt" | "createdAt"> & SearchResultHighlight & {
2729
2742
  type: "page";
2730
2743
  })>, ResponseWrapper>;
2731
2744
  } ? ResponseWrapper : Omit<ResponseWrapper, "data"> & {
2732
- data: RequestProxyResult<PaginateResult<(Pick<PostModel, "category" | "id" | "createdAt" | "modifiedAt" | "title" | "slug"> & SearchResultHighlight & {
2745
+ data: RequestProxyResult<PaginateResult<(Pick<PostModel, "category" | "id" | "title" | "slug" | "modifiedAt" | "createdAt"> & SearchResultHighlight & {
2733
2746
  type: "post";
2734
- }) | (Pick<NoteModel, "id" | "createdAt" | "modifiedAt" | "title" | "nid"> & SearchResultHighlight & {
2747
+ }) | (Pick<NoteModel, "id" | "title" | "modifiedAt" | "createdAt" | "nid"> & SearchResultHighlight & {
2735
2748
  type: "note";
2736
- }) | (Pick<PageModel, "id" | "createdAt" | "modifiedAt" | "title" | "slug"> & SearchResultHighlight & {
2749
+ }) | (Pick<PageModel, "id" | "title" | "slug" | "modifiedAt" | "createdAt"> & SearchResultHighlight & {
2737
2750
  type: "page";
2738
2751
  })>, ResponseWrapper>;
2739
2752
  }>;
@@ -2877,4 +2890,4 @@ declare const allControllerNames: readonly ["ai", "ack", "activity", "aggregate"
2877
2890
  */
2878
2891
  declare const camelcaseKeys: <T = any>(obj: any) => T;
2879
2892
  //#endregion
2880
- export { AIController, AIDeepReadingModel, AIInsightsModel, AIInsightsStreamEvent, AISummaryModel, AISummaryStreamEvent, AITranslationModel, AITranslationStreamEvent, AcademicMetadata, AckController, ActivityController, ActivityPresence, AdminExtraModel, AggregateAIConfig, AggregateController, AggregateRoot, AggregateRootWithTheme, AggregateSiteInfo, AggregateStat, AggregateTop, AggregateTopNote, AggregateTopPost, AnonymousCommentDto, AuthUser, BackupOptionsModel, BaiduSearchOptionsModel, BetterAuthSession, BetterAuthSessionResult, BetterAuthSignInResult, BetterAuthUser, BetterAuthUserRole, BingSearchOptionsModel, BookMetadata, CategoryChildPost, CategoryController, CategoryEntries, CategoryModel, CategoryType, CategoryWithChildrenModel, CheckLoggedResult, CodeMetadata, CollectionRefTypes, CommentController, CommentDto, CommentModel, CommentOptionsModel, CommentParentPreview, CommentRef, CommentReplyWindow, CommentState, CommentThreadItem, CommentThreadReplies, CommentUploadConfigDto, CommentUploadResultDto, Coordinate, EnumPageType, GithubMetadata, type HTTPClient, IConfig, IConfigKeys, type IRequestAdapter, Image, LastYearPublication, LatestCombinedItem, LatestData, LatestNoteItem, LatestPostItem, LinkController, LinkMetadata, LinkModel, LinkState, LinkType, MailOptionsModel, MediaMetadata, ModelWithLiked, ModelWithTranslation, MusicMetadata, NoteController, type NoteMiddleListOptions, NoteModel, type NoteTimelineItem, type NoteTopicListItem, type NoteTopicListOptions, NoteWrappedPayload, NoteWrappedWithLikedAndTranslationPayload, NoteWrappedWithLikedPayload, OwnerAllowLoginResult, OwnerSessionResult, PageController, PageModel, PageModelLexical, PageModelMarkdown, Pager, PaginateResult, PostContentFormat, PostController, type PostListItem, type PostListOptions, PostModel, PostModelLexical, PostModelMarkdown, PostRelatedSummary, ProjectController, ProjectModel, ReaderCommentDto, ReaderModel, RecentActivities, RecentComment, RecentLike, RecentNote, RecentPost, RecentRecent, RecentlyAttitudeEnum, RecentlyAttitudeResultEnum, RecentlyController, RecentlyMetadata, RecentlyModel, RecentlyRefType, RecentlyRefTypes, RecentlyTypeEnum, RequestError, RoomOmittedNote, RoomOmittedPage, RoomOmittedPost, RoomsData, SayController, SayModel, SearchController, SeoOptionModel, ServerlessController, SnippetController, SnippetModel, SnippetType, SubscribeAllBit, SubscribeController, SubscribeNoteCreateBit, SubscribePostCreateBit, SubscribeRecentCreateBit, SubscribeSayCreateBit, SubscribeType, SubscribeTypeToBitMap, TLogin, TagDetailPost, TagModel, ThirdPartyServiceIntegrationModel, TimelineData, TimelineType, TopicController, TopicModel, TranslationMeta, Url, UrlOptionModel, UserController, UserModel, allControllerNames, allControllers, createClient, createClient as default, camelcaseKeys as simpleCamelcaseKeys };
2893
+ export { AIController, AIDeepReadingModel, AIInsightsModel, AIInsightsStreamEvent, AISummaryModel, AISummaryStreamEvent, AITranslationModel, AITranslationStreamEvent, AcademicMetadata, AckController, ActivityController, ActivityPresence, AdminExtraModel, AggregateAIConfig, AggregateController, AggregateRoot, AggregateRootWithTheme, AggregateSiteInfo, AggregateStat, AggregateTop, AggregateTopNote, AggregateTopPost, AnonymousCommentDto, AuthUser, BackupOptionsModel, BaiduSearchOptionsModel, BetterAuthSession, BetterAuthSessionResult, BetterAuthSignInResult, BetterAuthUser, BetterAuthUserRole, BingSearchOptionsModel, BookMetadata, CategoryChildPost, CategoryController, CategoryEntries, CategoryModel, CategoryType, CategoryWithChildrenModel, CheckLoggedResult, CodeMetadata, CollectionRefTypes, CommentController, CommentDto, CommentModel, CommentOptionsModel, CommentParentPreview, CommentRef, CommentReplyWindow, CommentState, CommentThreadItem, CommentThreadReplies, CommentUploadConfigDto, CommentUploadResultDto, Coordinate, EnumPageType, GithubMetadata, type HTTPClient, IConfig, IConfigKeys, type IRequestAdapter, Image, LastYearPublication, LatestCombinedItem, LatestData, LatestNoteItem, LatestPostItem, LinkController, LinkMetadata, LinkModel, LinkState, LinkType, MailOptionsModel, MediaMetadata, ModelWithLiked, ModelWithTranslation, MusicMetadata, NoteController, type NoteMiddleListOptions, NoteModel, type NoteTimelineItem, type NoteTopicListItem, type NoteTopicListOptions, NoteWrappedPayload, NoteWrappedWithLikedAndTranslationPayload, NoteWrappedWithLikedPayload, OwnerAllowLoginResult, OwnerSessionResult, PageController, PageModel, PageModelLexical, PageModelMarkdown, Pager, PaginateResult, PostContentFormat, PostController, type PostListItem, type PostListOptions, PostModel, PostModelLexical, PostModelMarkdown, PostRelatedSummary, ProjectController, ProjectModel, ReaderCommentDto, ReaderModel, RecentActivities, RecentComment, RecentLike, RecentNote, RecentPost, RecentRecent, RecentlyAttitudeEnum, RecentlyAttitudeResultEnum, RecentlyController, RecentlyMetadata, RecentlyModel, RecentlyRefSummary, RecentlyRefType, RecentlyRefTypes, RecentlyTypeEnum, RequestError, RoomOmittedNote, RoomOmittedPage, RoomOmittedPost, RoomsData, SayController, SayModel, SearchController, SeoOptionModel, ServerlessController, SnippetController, SnippetModel, SnippetType, SubscribeAllBit, SubscribeController, SubscribeNoteCreateBit, SubscribePostCreateBit, SubscribeRecentCreateBit, SubscribeSayCreateBit, SubscribeType, SubscribeTypeToBitMap, TLogin, TagDetailPost, TagModel, ThirdPartyServiceIntegrationModel, TimelineData, TimelineType, TopicController, TopicModel, TranslationMeta, Url, UrlOptionModel, UserController, UserModel, allControllerNames, allControllers, createClient, createClient as default, camelcaseKeys as simpleCamelcaseKeys };
package/dist/index.d.mts CHANGED
@@ -959,6 +959,18 @@ type RecentlyRefType = {
959
959
  title: string;
960
960
  url: string;
961
961
  };
962
+ /**
963
+ * 服务端 attachRef 注入:when `refType`/`refId` 指向 post/note/page/recently,
964
+ * 列表/详情会附此扁形 summary;orphan ref(目标已删)则为 null。
965
+ */
966
+ interface RecentlyRefSummary {
967
+ id: string;
968
+ type: RecentlyRefTypes;
969
+ title?: string;
970
+ slug?: string | null;
971
+ nid?: number;
972
+ url?: string;
973
+ }
962
974
  declare enum RecentlyTypeEnum {
963
975
  Text = "text",
964
976
  Book = "book",
@@ -1032,6 +1044,7 @@ interface RecentlyModel {
1032
1044
  metadata: RecentlyMetadata | null;
1033
1045
  refType: RecentlyRefTypes;
1034
1046
  refId: string | null;
1047
+ ref?: RecentlyRefSummary | null;
1035
1048
  up: number;
1036
1049
  down: number;
1037
1050
  commentsIndex: number;
@@ -2705,35 +2718,35 @@ declare class SearchController<ResponseWrapper> implements IController {
2705
2718
  search(type: 'note', keyword: string, options?: SearchOption): Promise<RequestProxyResult<PaginateResult<Pick<NoteModel, 'modifiedAt' | 'id' | 'title' | 'createdAt' | 'nid'> & SearchResultHighlight>, ResponseWrapper>>;
2706
2719
  search(type: 'post', keyword: string, options?: SearchOption): Promise<RequestProxyResult<PaginateResult<Pick<PostModel, 'modifiedAt' | 'id' | 'title' | 'createdAt' | 'slug' | 'category'> & SearchResultHighlight>, ResponseWrapper>>;
2707
2720
  search(type: 'page', keyword: string, options?: SearchOption): Promise<RequestProxyResult<PaginateResult<Pick<PageModel, 'modifiedAt' | 'id' | 'title' | 'createdAt' | 'slug'> & SearchResultHighlight>, ResponseWrapper>>;
2708
- searchAll(keyword: string, options?: SearchOption): RequestProxyResult<RequestProxyResult<PaginateResult<(Pick<PostModel, "category" | "id" | "createdAt" | "modifiedAt" | "title" | "slug"> & SearchResultHighlight & {
2721
+ searchAll(keyword: string, options?: SearchOption): RequestProxyResult<RequestProxyResult<PaginateResult<(Pick<PostModel, "category" | "id" | "title" | "slug" | "modifiedAt" | "createdAt"> & SearchResultHighlight & {
2709
2722
  type: "post";
2710
- }) | (Pick<NoteModel, "id" | "createdAt" | "modifiedAt" | "title" | "nid"> & SearchResultHighlight & {
2723
+ }) | (Pick<NoteModel, "id" | "title" | "modifiedAt" | "createdAt" | "nid"> & SearchResultHighlight & {
2711
2724
  type: "note";
2712
- }) | (Pick<PageModel, "id" | "createdAt" | "modifiedAt" | "title" | "slug"> & SearchResultHighlight & {
2725
+ }) | (Pick<PageModel, "id" | "title" | "slug" | "modifiedAt" | "createdAt"> & SearchResultHighlight & {
2713
2726
  type: "page";
2714
2727
  })>, ResponseWrapper>, ResponseWrapper, ResponseWrapper extends unknown ? {
2715
2728
  [key: string]: any;
2716
- data: RequestProxyResult<PaginateResult<(Pick<PostModel, "category" | "id" | "createdAt" | "modifiedAt" | "title" | "slug"> & SearchResultHighlight & {
2729
+ data: RequestProxyResult<PaginateResult<(Pick<PostModel, "category" | "id" | "title" | "slug" | "modifiedAt" | "createdAt"> & SearchResultHighlight & {
2717
2730
  type: "post";
2718
- }) | (Pick<NoteModel, "id" | "createdAt" | "modifiedAt" | "title" | "nid"> & SearchResultHighlight & {
2731
+ }) | (Pick<NoteModel, "id" | "title" | "modifiedAt" | "createdAt" | "nid"> & SearchResultHighlight & {
2719
2732
  type: "note";
2720
- }) | (Pick<PageModel, "id" | "createdAt" | "modifiedAt" | "title" | "slug"> & SearchResultHighlight & {
2733
+ }) | (Pick<PageModel, "id" | "title" | "slug" | "modifiedAt" | "createdAt"> & SearchResultHighlight & {
2721
2734
  type: "page";
2722
2735
  })>, ResponseWrapper>;
2723
2736
  } : ResponseWrapper extends {
2724
- data: RequestProxyResult<PaginateResult<(Pick<PostModel, "category" | "id" | "createdAt" | "modifiedAt" | "title" | "slug"> & SearchResultHighlight & {
2737
+ data: RequestProxyResult<PaginateResult<(Pick<PostModel, "category" | "id" | "title" | "slug" | "modifiedAt" | "createdAt"> & SearchResultHighlight & {
2725
2738
  type: "post";
2726
- }) | (Pick<NoteModel, "id" | "createdAt" | "modifiedAt" | "title" | "nid"> & SearchResultHighlight & {
2739
+ }) | (Pick<NoteModel, "id" | "title" | "modifiedAt" | "createdAt" | "nid"> & SearchResultHighlight & {
2727
2740
  type: "note";
2728
- }) | (Pick<PageModel, "id" | "createdAt" | "modifiedAt" | "title" | "slug"> & SearchResultHighlight & {
2741
+ }) | (Pick<PageModel, "id" | "title" | "slug" | "modifiedAt" | "createdAt"> & SearchResultHighlight & {
2729
2742
  type: "page";
2730
2743
  })>, ResponseWrapper>;
2731
2744
  } ? ResponseWrapper : Omit<ResponseWrapper, "data"> & {
2732
- data: RequestProxyResult<PaginateResult<(Pick<PostModel, "category" | "id" | "createdAt" | "modifiedAt" | "title" | "slug"> & SearchResultHighlight & {
2745
+ data: RequestProxyResult<PaginateResult<(Pick<PostModel, "category" | "id" | "title" | "slug" | "modifiedAt" | "createdAt"> & SearchResultHighlight & {
2733
2746
  type: "post";
2734
- }) | (Pick<NoteModel, "id" | "createdAt" | "modifiedAt" | "title" | "nid"> & SearchResultHighlight & {
2747
+ }) | (Pick<NoteModel, "id" | "title" | "modifiedAt" | "createdAt" | "nid"> & SearchResultHighlight & {
2735
2748
  type: "note";
2736
- }) | (Pick<PageModel, "id" | "createdAt" | "modifiedAt" | "title" | "slug"> & SearchResultHighlight & {
2749
+ }) | (Pick<PageModel, "id" | "title" | "slug" | "modifiedAt" | "createdAt"> & SearchResultHighlight & {
2737
2750
  type: "page";
2738
2751
  })>, ResponseWrapper>;
2739
2752
  }>;
@@ -2877,4 +2890,4 @@ declare const allControllerNames: readonly ["ai", "ack", "activity", "aggregate"
2877
2890
  */
2878
2891
  declare const camelcaseKeys: <T = any>(obj: any) => T;
2879
2892
  //#endregion
2880
- export { AIController, AIDeepReadingModel, AIInsightsModel, AIInsightsStreamEvent, AISummaryModel, AISummaryStreamEvent, AITranslationModel, AITranslationStreamEvent, AcademicMetadata, AckController, ActivityController, ActivityPresence, AdminExtraModel, AggregateAIConfig, AggregateController, AggregateRoot, AggregateRootWithTheme, AggregateSiteInfo, AggregateStat, AggregateTop, AggregateTopNote, AggregateTopPost, AnonymousCommentDto, AuthUser, BackupOptionsModel, BaiduSearchOptionsModel, BetterAuthSession, BetterAuthSessionResult, BetterAuthSignInResult, BetterAuthUser, BetterAuthUserRole, BingSearchOptionsModel, BookMetadata, CategoryChildPost, CategoryController, CategoryEntries, CategoryModel, CategoryType, CategoryWithChildrenModel, CheckLoggedResult, CodeMetadata, CollectionRefTypes, CommentController, CommentDto, CommentModel, CommentOptionsModel, CommentParentPreview, CommentRef, CommentReplyWindow, CommentState, CommentThreadItem, CommentThreadReplies, CommentUploadConfigDto, CommentUploadResultDto, Coordinate, EnumPageType, GithubMetadata, type HTTPClient, IConfig, IConfigKeys, type IRequestAdapter, Image, LastYearPublication, LatestCombinedItem, LatestData, LatestNoteItem, LatestPostItem, LinkController, LinkMetadata, LinkModel, LinkState, LinkType, MailOptionsModel, MediaMetadata, ModelWithLiked, ModelWithTranslation, MusicMetadata, NoteController, type NoteMiddleListOptions, NoteModel, type NoteTimelineItem, type NoteTopicListItem, type NoteTopicListOptions, NoteWrappedPayload, NoteWrappedWithLikedAndTranslationPayload, NoteWrappedWithLikedPayload, OwnerAllowLoginResult, OwnerSessionResult, PageController, PageModel, PageModelLexical, PageModelMarkdown, Pager, PaginateResult, PostContentFormat, PostController, type PostListItem, type PostListOptions, PostModel, PostModelLexical, PostModelMarkdown, PostRelatedSummary, ProjectController, ProjectModel, ReaderCommentDto, ReaderModel, RecentActivities, RecentComment, RecentLike, RecentNote, RecentPost, RecentRecent, RecentlyAttitudeEnum, RecentlyAttitudeResultEnum, RecentlyController, RecentlyMetadata, RecentlyModel, RecentlyRefType, RecentlyRefTypes, RecentlyTypeEnum, RequestError, RoomOmittedNote, RoomOmittedPage, RoomOmittedPost, RoomsData, SayController, SayModel, SearchController, SeoOptionModel, ServerlessController, SnippetController, SnippetModel, SnippetType, SubscribeAllBit, SubscribeController, SubscribeNoteCreateBit, SubscribePostCreateBit, SubscribeRecentCreateBit, SubscribeSayCreateBit, SubscribeType, SubscribeTypeToBitMap, TLogin, TagDetailPost, TagModel, ThirdPartyServiceIntegrationModel, TimelineData, TimelineType, TopicController, TopicModel, TranslationMeta, Url, UrlOptionModel, UserController, UserModel, allControllerNames, allControllers, createClient, createClient as default, camelcaseKeys as simpleCamelcaseKeys };
2893
+ export { AIController, AIDeepReadingModel, AIInsightsModel, AIInsightsStreamEvent, AISummaryModel, AISummaryStreamEvent, AITranslationModel, AITranslationStreamEvent, AcademicMetadata, AckController, ActivityController, ActivityPresence, AdminExtraModel, AggregateAIConfig, AggregateController, AggregateRoot, AggregateRootWithTheme, AggregateSiteInfo, AggregateStat, AggregateTop, AggregateTopNote, AggregateTopPost, AnonymousCommentDto, AuthUser, BackupOptionsModel, BaiduSearchOptionsModel, BetterAuthSession, BetterAuthSessionResult, BetterAuthSignInResult, BetterAuthUser, BetterAuthUserRole, BingSearchOptionsModel, BookMetadata, CategoryChildPost, CategoryController, CategoryEntries, CategoryModel, CategoryType, CategoryWithChildrenModel, CheckLoggedResult, CodeMetadata, CollectionRefTypes, CommentController, CommentDto, CommentModel, CommentOptionsModel, CommentParentPreview, CommentRef, CommentReplyWindow, CommentState, CommentThreadItem, CommentThreadReplies, CommentUploadConfigDto, CommentUploadResultDto, Coordinate, EnumPageType, GithubMetadata, type HTTPClient, IConfig, IConfigKeys, type IRequestAdapter, Image, LastYearPublication, LatestCombinedItem, LatestData, LatestNoteItem, LatestPostItem, LinkController, LinkMetadata, LinkModel, LinkState, LinkType, MailOptionsModel, MediaMetadata, ModelWithLiked, ModelWithTranslation, MusicMetadata, NoteController, type NoteMiddleListOptions, NoteModel, type NoteTimelineItem, type NoteTopicListItem, type NoteTopicListOptions, NoteWrappedPayload, NoteWrappedWithLikedAndTranslationPayload, NoteWrappedWithLikedPayload, OwnerAllowLoginResult, OwnerSessionResult, PageController, PageModel, PageModelLexical, PageModelMarkdown, Pager, PaginateResult, PostContentFormat, PostController, type PostListItem, type PostListOptions, PostModel, PostModelLexical, PostModelMarkdown, PostRelatedSummary, ProjectController, ProjectModel, ReaderCommentDto, ReaderModel, RecentActivities, RecentComment, RecentLike, RecentNote, RecentPost, RecentRecent, RecentlyAttitudeEnum, RecentlyAttitudeResultEnum, RecentlyController, RecentlyMetadata, RecentlyModel, RecentlyRefSummary, RecentlyRefType, RecentlyRefTypes, RecentlyTypeEnum, RequestError, RoomOmittedNote, RoomOmittedPage, RoomOmittedPost, RoomsData, SayController, SayModel, SearchController, SeoOptionModel, ServerlessController, SnippetController, SnippetModel, SnippetType, SubscribeAllBit, SubscribeController, SubscribeNoteCreateBit, SubscribePostCreateBit, SubscribeRecentCreateBit, SubscribeSayCreateBit, SubscribeType, SubscribeTypeToBitMap, TLogin, TagDetailPost, TagModel, ThirdPartyServiceIntegrationModel, TimelineData, TimelineType, TopicController, TopicModel, TranslationMeta, Url, UrlOptionModel, UserController, UserModel, allControllerNames, allControllers, createClient, createClient as default, camelcaseKeys as simpleCamelcaseKeys };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mx-space/api-client",
3
- "version": "4.0.0-next.0",
3
+ "version": "4.0.0-next.1",
4
4
  "description": "A api client for mx-space server@next",
5
5
  "type": "module",
6
6
  "engines": {