@webiny/api-website-builder-scheduler 0.0.0-unstable.81ae05e56b → 0.0.0-unstable.e6f0dc8ca7
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/features/CancelScheduledActionOnChange/CancelScheduledActionOnPageDeleteEventHandler.d.ts +1 -1
- package/features/CancelScheduledActionOnChange/CancelScheduledActionOnPagePublishEventHandler.d.ts +1 -1
- package/features/CancelScheduledActionOnChange/CancelScheduledActionOnPageUnpublishEventHandler.d.ts +1 -1
- package/features/CancelScheduledActionOnChange/CancelScheduledActionOnRedirectDeleteEventHandler.d.ts +1 -1
- package/features/CancelScheduledActionOnChange/feature.d.ts +4 -1
- package/package.json +23 -20
package/features/CancelScheduledActionOnChange/CancelScheduledActionOnPageDeleteEventHandler.d.ts
CHANGED
|
@@ -13,6 +13,6 @@ declare class CancelScheduledActionOnPageDeleteHandlerImpl implements PageAfterD
|
|
|
13
13
|
handle(event: PageAfterDeleteEventHandler.Event): Promise<void>;
|
|
14
14
|
}
|
|
15
15
|
export declare const CancelScheduledActionOnPageDeleteEventHandler: typeof CancelScheduledActionOnPageDeleteHandlerImpl & {
|
|
16
|
-
__abstraction: import("@webiny/di").Abstraction<import("@webiny/api-core/features/
|
|
16
|
+
__abstraction: import("@webiny/di").Abstraction<import("@webiny/api-core/features/eventPublisher").IEventHandler<import("@webiny/api-core/features/eventPublisher").DomainEvent<import("@webiny/api-website-builder/features/pages/DeletePage/abstractions").PageAfterDeletePayload>>>;
|
|
17
17
|
};
|
|
18
18
|
export {};
|
package/features/CancelScheduledActionOnChange/CancelScheduledActionOnPagePublishEventHandler.d.ts
CHANGED
|
@@ -14,6 +14,6 @@ declare class CancelScheduledActionOnPublishEventHandlerImpl implements PageAfte
|
|
|
14
14
|
handle(event: PageAfterPublishEventHandler.Event): Promise<void>;
|
|
15
15
|
}
|
|
16
16
|
export declare const CancelScheduledActionOnPagePublishEventHandler: typeof CancelScheduledActionOnPublishEventHandlerImpl & {
|
|
17
|
-
__abstraction: import("@webiny/di").Abstraction<import("@webiny/api-core/features/
|
|
17
|
+
__abstraction: import("@webiny/di").Abstraction<import("@webiny/api-core/features/eventPublisher").IEventHandler<import("@webiny/api-core/features/eventPublisher").DomainEvent<import("@webiny/api-website-builder/features/pages/PublishPage/abstractions").PageAfterPublishPayload>>>;
|
|
18
18
|
};
|
|
19
19
|
export {};
|
package/features/CancelScheduledActionOnChange/CancelScheduledActionOnPageUnpublishEventHandler.d.ts
CHANGED
|
@@ -14,6 +14,6 @@ declare class CancelScheduledActionOnUnpublishHandlerImpl implements PageAfterUn
|
|
|
14
14
|
handle(event: PageAfterUnpublishEventHandler.Event): Promise<void>;
|
|
15
15
|
}
|
|
16
16
|
export declare const CancelScheduledActionOnPageUnpublishEventHandler: typeof CancelScheduledActionOnUnpublishHandlerImpl & {
|
|
17
|
-
__abstraction: import("@webiny/di").Abstraction<import("@webiny/api-core/features/
|
|
17
|
+
__abstraction: import("@webiny/di").Abstraction<import("@webiny/api-core/features/eventPublisher").IEventHandler<import("@webiny/api-core/features/eventPublisher").DomainEvent<import("@webiny/api-website-builder/features/pages/UnpublishPage/abstractions").PageAfterUnpublishPayload>>>;
|
|
18
18
|
};
|
|
19
19
|
export {};
|
|
@@ -14,6 +14,6 @@ declare class CancelScheduledActionOnRedirectDeleteHandlerImpl implements Redire
|
|
|
14
14
|
handle(event: RedirectAfterDeleteEventHandler.Event): Promise<void>;
|
|
15
15
|
}
|
|
16
16
|
export declare const CancelScheduledActionOnRedirectDeleteEventHandler: typeof CancelScheduledActionOnRedirectDeleteHandlerImpl & {
|
|
17
|
-
__abstraction: import("@webiny/di").Abstraction<import("@webiny/api-core/features/
|
|
17
|
+
__abstraction: import("@webiny/di").Abstraction<import("@webiny/api-core/features/eventPublisher").IEventHandler<import("@webiny/api-core/features/eventPublisher").DomainEvent<import("@webiny/api-website-builder/features/redirects/DeleteRedirect/abstractions").RedirectAfterDeletePayload>>>;
|
|
18
18
|
};
|
|
19
19
|
export {};
|
|
@@ -5,4 +5,7 @@
|
|
|
5
5
|
* published, unpublished, or deleted. This ensures scheduled actions
|
|
6
6
|
* don't execute after a user has already performed the action manually.
|
|
7
7
|
*/
|
|
8
|
-
export declare const CancelScheduledActionOnChangeFeature:
|
|
8
|
+
export declare const CancelScheduledActionOnChangeFeature: {
|
|
9
|
+
name: string;
|
|
10
|
+
register(container: import("@webiny/di").Container): void;
|
|
11
|
+
};
|
package/package.json
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/api-website-builder-scheduler",
|
|
3
|
-
"version": "0.0.0-unstable.
|
|
3
|
+
"version": "0.0.0-unstable.e6f0dc8ca7",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"
|
|
5
|
+
"exports": {
|
|
6
|
+
".": "./index.js",
|
|
7
|
+
"./*": "./*"
|
|
8
|
+
},
|
|
6
9
|
"description": "Schedule for Webiny Website Builder",
|
|
7
10
|
"keywords": [
|
|
8
11
|
"api-website-builder-scheduler:base"
|
|
@@ -14,30 +17,30 @@
|
|
|
14
17
|
},
|
|
15
18
|
"license": "MIT",
|
|
16
19
|
"dependencies": {
|
|
17
|
-
"@webiny/api": "0.0.0-unstable.
|
|
18
|
-
"@webiny/api-scheduler": "0.0.0-unstable.
|
|
19
|
-
"@webiny/api-website-builder": "0.0.0-unstable.
|
|
20
|
-
"@webiny/feature": "0.0.0-unstable.
|
|
21
|
-
"@webiny/handler-graphql": "0.0.0-unstable.
|
|
20
|
+
"@webiny/api": "0.0.0-unstable.e6f0dc8ca7",
|
|
21
|
+
"@webiny/api-scheduler": "0.0.0-unstable.e6f0dc8ca7",
|
|
22
|
+
"@webiny/api-website-builder": "0.0.0-unstable.e6f0dc8ca7",
|
|
23
|
+
"@webiny/feature": "0.0.0-unstable.e6f0dc8ca7",
|
|
24
|
+
"@webiny/handler-graphql": "0.0.0-unstable.e6f0dc8ca7"
|
|
22
25
|
},
|
|
23
26
|
"devDependencies": {
|
|
24
|
-
"@webiny/api-core": "0.0.0-unstable.
|
|
25
|
-
"@webiny/api-headless-cms": "0.0.0-unstable.
|
|
26
|
-
"@webiny/aws-sdk": "0.0.0-unstable.
|
|
27
|
-
"@webiny/build-tools": "0.0.0-unstable.
|
|
28
|
-
"@webiny/handler": "0.0.0-unstable.
|
|
29
|
-
"@webiny/handler-aws": "0.0.0-unstable.
|
|
30
|
-
"@webiny/plugins": "0.0.0-unstable.
|
|
31
|
-
"@webiny/project-utils": "0.0.0-unstable.
|
|
32
|
-
"@webiny/tasks": "0.0.0-unstable.
|
|
33
|
-
"@webiny/wcp": "0.0.0-unstable.
|
|
27
|
+
"@webiny/api-core": "0.0.0-unstable.e6f0dc8ca7",
|
|
28
|
+
"@webiny/api-headless-cms": "0.0.0-unstable.e6f0dc8ca7",
|
|
29
|
+
"@webiny/aws-sdk": "0.0.0-unstable.e6f0dc8ca7",
|
|
30
|
+
"@webiny/build-tools": "0.0.0-unstable.e6f0dc8ca7",
|
|
31
|
+
"@webiny/handler": "0.0.0-unstable.e6f0dc8ca7",
|
|
32
|
+
"@webiny/handler-aws": "0.0.0-unstable.e6f0dc8ca7",
|
|
33
|
+
"@webiny/plugins": "0.0.0-unstable.e6f0dc8ca7",
|
|
34
|
+
"@webiny/project-utils": "0.0.0-unstable.e6f0dc8ca7",
|
|
35
|
+
"@webiny/tasks": "0.0.0-unstable.e6f0dc8ca7",
|
|
36
|
+
"@webiny/wcp": "0.0.0-unstable.e6f0dc8ca7",
|
|
34
37
|
"aws-sdk-client-mock": "4.1.0",
|
|
35
|
-
"typescript": "
|
|
36
|
-
"vitest": "4.1.
|
|
38
|
+
"typescript": "6.0.3",
|
|
39
|
+
"vitest": "4.1.5"
|
|
37
40
|
},
|
|
38
41
|
"publishConfig": {
|
|
39
42
|
"access": "public",
|
|
40
43
|
"directory": "dist"
|
|
41
44
|
},
|
|
42
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "e6f0dc8ca741c1fcc3fec9a5b9e86fdd49544641"
|
|
43
46
|
}
|