@ikenxuan/amagi 6.0.0-beta.1 → 6.0.0-beta.2
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/default/index.cjs +2 -2
- package/dist/default/index.mjs +2 -2
- package/package.json +1 -1
package/dist/default/index.cjs
CHANGED
|
@@ -4043,7 +4043,7 @@ const DouyinData = async (data$1, cookie, requestConfig) => {
|
|
|
4043
4043
|
...params,
|
|
4044
4044
|
max_cursor: resp.max_cursor?.toString() ?? "0"
|
|
4045
4045
|
}),
|
|
4046
|
-
hasMore: (resp) => resp.has_more ===
|
|
4046
|
+
hasMore: (resp) => resp.has_more === true,
|
|
4047
4047
|
formatFinalResponse: (resp, list) => ({
|
|
4048
4048
|
...resp,
|
|
4049
4049
|
aweme_list: list
|
|
@@ -8008,7 +8008,7 @@ function getApiRoute(platform, methodType) {
|
|
|
8008
8008
|
* 构建后使用 __VERSION__,开发环境从 package.json 读取
|
|
8009
8009
|
*/
|
|
8010
8010
|
const getVersion = () => {
|
|
8011
|
-
return "6.0.0-beta.
|
|
8011
|
+
return "6.0.0-beta.1";
|
|
8012
8012
|
};
|
|
8013
8013
|
const VERSION = getVersion();
|
|
8014
8014
|
/**
|
package/dist/default/index.mjs
CHANGED
|
@@ -4035,7 +4035,7 @@ const DouyinData = async (data$1, cookie, requestConfig) => {
|
|
|
4035
4035
|
...params,
|
|
4036
4036
|
max_cursor: resp.max_cursor?.toString() ?? "0"
|
|
4037
4037
|
}),
|
|
4038
|
-
hasMore: (resp) => resp.has_more ===
|
|
4038
|
+
hasMore: (resp) => resp.has_more === true,
|
|
4039
4039
|
formatFinalResponse: (resp, list) => ({
|
|
4040
4040
|
...resp,
|
|
4041
4041
|
aweme_list: list
|
|
@@ -8000,7 +8000,7 @@ function getApiRoute(platform, methodType) {
|
|
|
8000
8000
|
* 构建后使用 __VERSION__,开发环境从 package.json 读取
|
|
8001
8001
|
*/
|
|
8002
8002
|
const getVersion = () => {
|
|
8003
|
-
return "6.0.0-beta.
|
|
8003
|
+
return "6.0.0-beta.1";
|
|
8004
8004
|
};
|
|
8005
8005
|
const VERSION = getVersion();
|
|
8006
8006
|
/**
|