@develit-services/notification 1.0.1 → 2.0.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/dist/export/worker.cjs
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
3
|
const backendSdk = require('@develit-io/backend-sdk');
|
|
6
4
|
const webhook_connector = require('../shared/notification.BLPB8Ib2.cjs');
|
|
7
5
|
require('@develit-io/backend-sdk/signature');
|
|
@@ -570,7 +568,4 @@ function defineNotificationService() {
|
|
|
570
568
|
};
|
|
571
569
|
}
|
|
572
570
|
|
|
573
|
-
const NotificationService = defineNotificationService();
|
|
574
|
-
|
|
575
|
-
exports.default = NotificationService;
|
|
576
571
|
exports.defineNotificationService = defineNotificationService;
|
package/dist/export/worker.d.cts
CHANGED
|
@@ -41,10 +41,6 @@ declare class NotificationServiceBase extends NotificationServiceBase_base {
|
|
|
41
41
|
*/
|
|
42
42
|
clearReceivedEmails(input: ClearReceivedEmailsInput): Promise<IRPCResponse<ClearReceivedEmailsOutput>>;
|
|
43
43
|
}
|
|
44
|
-
declare function defineNotificationService():
|
|
44
|
+
declare function defineNotificationService(): typeof NotificationServiceBase;
|
|
45
45
|
|
|
46
|
-
declare const _default: new (ctx: ExecutionContext, env: NotificationEnv) => WorkerEntrypoint<NotificationEnv>;
|
|
47
|
-
|
|
48
|
-
// @ts-ignore
|
|
49
|
-
export = _default;
|
|
50
46
|
export { defineNotificationService };
|
package/dist/export/worker.d.mts
CHANGED
|
@@ -41,8 +41,6 @@ declare class NotificationServiceBase extends NotificationServiceBase_base {
|
|
|
41
41
|
*/
|
|
42
42
|
clearReceivedEmails(input: ClearReceivedEmailsInput): Promise<IRPCResponse<ClearReceivedEmailsOutput>>;
|
|
43
43
|
}
|
|
44
|
-
declare function defineNotificationService():
|
|
44
|
+
declare function defineNotificationService(): typeof NotificationServiceBase;
|
|
45
45
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
export { _default as default, defineNotificationService };
|
|
46
|
+
export { defineNotificationService };
|
package/dist/export/worker.d.ts
CHANGED
|
@@ -41,10 +41,6 @@ declare class NotificationServiceBase extends NotificationServiceBase_base {
|
|
|
41
41
|
*/
|
|
42
42
|
clearReceivedEmails(input: ClearReceivedEmailsInput): Promise<IRPCResponse<ClearReceivedEmailsOutput>>;
|
|
43
43
|
}
|
|
44
|
-
declare function defineNotificationService():
|
|
44
|
+
declare function defineNotificationService(): typeof NotificationServiceBase;
|
|
45
45
|
|
|
46
|
-
declare const _default: new (ctx: ExecutionContext, env: NotificationEnv) => WorkerEntrypoint<NotificationEnv>;
|
|
47
|
-
|
|
48
|
-
// @ts-ignore
|
|
49
|
-
export = _default;
|
|
50
46
|
export { defineNotificationService };
|
package/dist/export/worker.mjs
CHANGED