@ukwhatn/wikidot 4.0.4 → 4.0.5

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
@@ -1665,6 +1665,21 @@ declare class Page {
1665
1665
  * @param name - メタタグ名
1666
1666
  */
1667
1667
  deleteMeta(name: string): WikidotResultAsync<void>;
1668
+ /**
1669
+ * ページソースを取得する(未取得の場合は自動取得)
1670
+ * @returns ページソース
1671
+ */
1672
+ getSource(): WikidotResultAsync<PageSource>;
1673
+ /**
1674
+ * リビジョン履歴を取得する(未取得の場合は自動取得)
1675
+ * @returns リビジョンコレクション
1676
+ */
1677
+ getRevisions(): WikidotResultAsync<PageRevisionCollection>;
1678
+ /**
1679
+ * 投票情報を取得する(未取得の場合は自動取得)
1680
+ * @returns 投票コレクション
1681
+ */
1682
+ getVotes(): WikidotResultAsync<PageVoteCollection>;
1668
1683
  toString(): string;
1669
1684
  }
1670
1685
  /**
package/dist/index.d.ts CHANGED
@@ -1665,6 +1665,21 @@ declare class Page {
1665
1665
  * @param name - メタタグ名
1666
1666
  */
1667
1667
  deleteMeta(name: string): WikidotResultAsync<void>;
1668
+ /**
1669
+ * ページソースを取得する(未取得の場合は自動取得)
1670
+ * @returns ページソース
1671
+ */
1672
+ getSource(): WikidotResultAsync<PageSource>;
1673
+ /**
1674
+ * リビジョン履歴を取得する(未取得の場合は自動取得)
1675
+ * @returns リビジョンコレクション
1676
+ */
1677
+ getRevisions(): WikidotResultAsync<PageRevisionCollection>;
1678
+ /**
1679
+ * 投票情報を取得する(未取得の場合は自動取得)
1680
+ * @returns 投票コレクション
1681
+ */
1682
+ getVotes(): WikidotResultAsync<PageVoteCollection>;
1668
1683
  toString(): string;
1669
1684
  }
1670
1685
  /**