@webiny/api-website-builder-scheduler 6.1.0-beta.3 → 6.2.0-beta.0
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/package.json +18 -18
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 {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/api-website-builder-scheduler",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.2.0-beta.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"description": "Schedule for Webiny Website Builder",
|
|
@@ -14,30 +14,30 @@
|
|
|
14
14
|
},
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@webiny/api": "6.
|
|
18
|
-
"@webiny/api-scheduler": "6.
|
|
19
|
-
"@webiny/api-website-builder": "6.
|
|
20
|
-
"@webiny/feature": "6.
|
|
21
|
-
"@webiny/handler-graphql": "6.
|
|
17
|
+
"@webiny/api": "6.2.0-beta.0",
|
|
18
|
+
"@webiny/api-scheduler": "6.2.0-beta.0",
|
|
19
|
+
"@webiny/api-website-builder": "6.2.0-beta.0",
|
|
20
|
+
"@webiny/feature": "6.2.0-beta.0",
|
|
21
|
+
"@webiny/handler-graphql": "6.2.0-beta.0"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@webiny/api-core": "6.
|
|
25
|
-
"@webiny/api-headless-cms": "6.
|
|
26
|
-
"@webiny/aws-sdk": "6.
|
|
27
|
-
"@webiny/build-tools": "6.
|
|
28
|
-
"@webiny/handler": "6.
|
|
29
|
-
"@webiny/handler-aws": "6.
|
|
30
|
-
"@webiny/plugins": "6.
|
|
31
|
-
"@webiny/project-utils": "6.
|
|
32
|
-
"@webiny/tasks": "6.
|
|
33
|
-
"@webiny/wcp": "6.
|
|
24
|
+
"@webiny/api-core": "6.2.0-beta.0",
|
|
25
|
+
"@webiny/api-headless-cms": "6.2.0-beta.0",
|
|
26
|
+
"@webiny/aws-sdk": "6.2.0-beta.0",
|
|
27
|
+
"@webiny/build-tools": "6.2.0-beta.0",
|
|
28
|
+
"@webiny/handler": "6.2.0-beta.0",
|
|
29
|
+
"@webiny/handler-aws": "6.2.0-beta.0",
|
|
30
|
+
"@webiny/plugins": "6.2.0-beta.0",
|
|
31
|
+
"@webiny/project-utils": "6.2.0-beta.0",
|
|
32
|
+
"@webiny/tasks": "6.2.0-beta.0",
|
|
33
|
+
"@webiny/wcp": "6.2.0-beta.0",
|
|
34
34
|
"aws-sdk-client-mock": "4.1.0",
|
|
35
35
|
"typescript": "5.9.3",
|
|
36
|
-
"vitest": "4.1.
|
|
36
|
+
"vitest": "4.1.4"
|
|
37
37
|
},
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"access": "public",
|
|
40
40
|
"directory": "dist"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "3d3148358b6febbc857371930871743bec3b3939"
|
|
43
43
|
}
|