@iflyrpa/actions 4.0.4-beta.5 → 4.0.4-beta.6
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/actions/searchPublishInfo/types.d.ts +3 -0
- package/dist/bundle.js +8 -4
- package/dist/bundle.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +8 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -174,6 +174,7 @@ export declare class Action {
|
|
|
174
174
|
postType: string;
|
|
175
175
|
postStatus: number;
|
|
176
176
|
originalData?: unknown;
|
|
177
|
+
effectiveTime?: number | undefined;
|
|
177
178
|
})[] | undefined;
|
|
178
179
|
timerPublish?: ({
|
|
179
180
|
title: string;
|
|
@@ -248,6 +249,7 @@ export declare class Action {
|
|
|
248
249
|
postType: string;
|
|
249
250
|
postStatus: number;
|
|
250
251
|
originalData?: unknown;
|
|
252
|
+
effectiveTime?: number | undefined;
|
|
251
253
|
})[] | undefined;
|
|
252
254
|
pagination?: {
|
|
253
255
|
pageNum: number;
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="c84bf1c2-549b-54ff-9b48-f44dd094326b")}catch(e){}}();
|
|
3
3
|
var __webpack_modules__ = {
|
|
4
4
|
"./src/utils/XhsXsCommonEnc.js": function(module) {
|
|
5
5
|
var encrypt_lookup = [
|
|
@@ -4402,7 +4402,7 @@ var __webpack_exports__ = {};
|
|
|
4402
4402
|
});
|
|
4403
4403
|
const package_json_namespaceObject = require("@iflyrpa/share/package.json");
|
|
4404
4404
|
var package_json_default = /*#__PURE__*/ __webpack_require__.n(package_json_namespaceObject);
|
|
4405
|
-
var package_namespaceObject = JSON.parse('{"i8":"4.0.4-beta.
|
|
4405
|
+
var package_namespaceObject = JSON.parse('{"i8":"4.0.4-beta.6"}');
|
|
4406
4406
|
const share_namespaceObject = require("@iflyrpa/share");
|
|
4407
4407
|
const external_node_fs_namespaceObject = require("node:fs");
|
|
4408
4408
|
var external_node_fs_default = /*#__PURE__*/ __webpack_require__.n(external_node_fs_namespaceObject);
|
|
@@ -15931,7 +15931,8 @@ var __webpack_exports__ = {};
|
|
|
15931
15931
|
favNum: schemas_number(),
|
|
15932
15932
|
objectId: schemas_string(),
|
|
15933
15933
|
postType: schemas_string(),
|
|
15934
|
-
postStatus: schemas_number()
|
|
15934
|
+
postStatus: schemas_number(),
|
|
15935
|
+
effectiveTime: schemas_number().optional()
|
|
15935
15936
|
});
|
|
15936
15937
|
const FetchArticlesDataSchema = schemas_object({
|
|
15937
15938
|
articleCell: schemas_array(union([
|
|
@@ -16267,6 +16268,9 @@ var __webpack_exports__ = {};
|
|
|
16267
16268
|
objectId: item.exportId || item.objectId || "",
|
|
16268
16269
|
postType: forcePostType,
|
|
16269
16270
|
postStatus: item.status || item.post_status || 0,
|
|
16271
|
+
...item.effectiveTime ? {
|
|
16272
|
+
effectiveTime: item.effectiveTime
|
|
16273
|
+
} : {},
|
|
16270
16274
|
...showOriginalData ? {
|
|
16271
16275
|
originalData: item
|
|
16272
16276
|
} : {}
|
|
@@ -25676,4 +25680,4 @@ if (__webpack_exports__.__esModule) Object.defineProperty(__webpack_export_targe
|
|
|
25676
25680
|
});
|
|
25677
25681
|
|
|
25678
25682
|
//# sourceMappingURL=index.js.map
|
|
25679
|
-
//# debugId=
|
|
25683
|
+
//# debugId=c84bf1c2-549b-54ff-9b48-f44dd094326b
|