@punks/backend-entity-manager 0.0.479 → 0.0.481
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/cjs/index.js +9 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/platforms/nest/decorators/pipelines.d.ts +1 -0
- package/dist/cjs/types/platforms/nest/services/email/index.d.ts +1 -0
- package/dist/esm/index.js +9 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/platforms/nest/decorators/pipelines.d.ts +1 -0
- package/dist/esm/types/platforms/nest/services/email/index.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -6,6 +6,7 @@ export declare class EmailService {
|
|
|
6
6
|
sendTemplatedEmail<TPayload>(input: TemplatedEmailInput<TPayload>, options?: EmailSendOptions): Promise<void>;
|
|
7
7
|
sendHtmlEmail<TPayload>(input: HtmlEmailInput<TPayload>, options?: EmailSendOptions): Promise<void>;
|
|
8
8
|
private getTemplate;
|
|
9
|
+
private hasRecipients;
|
|
9
10
|
private get templateMiddleware();
|
|
10
11
|
private get templates();
|
|
11
12
|
private get provider();
|
package/dist/index.d.ts
CHANGED
|
@@ -1518,6 +1518,7 @@ type PipelineTemplateOptions$1 = {
|
|
|
1518
1518
|
};
|
|
1519
1519
|
type PipelineTemplateProps = {
|
|
1520
1520
|
name: string;
|
|
1521
|
+
description?: string;
|
|
1521
1522
|
concurrency?: PipelineConcurrency;
|
|
1522
1523
|
options?: PipelineTemplateOptions$1;
|
|
1523
1524
|
};
|
|
@@ -2262,6 +2263,7 @@ declare class EmailService {
|
|
|
2262
2263
|
sendTemplatedEmail<TPayload>(input: TemplatedEmailInput<TPayload>, options?: EmailSendOptions): Promise<void>;
|
|
2263
2264
|
sendHtmlEmail<TPayload>(input: HtmlEmailInput<TPayload>, options?: EmailSendOptions): Promise<void>;
|
|
2264
2265
|
private getTemplate;
|
|
2266
|
+
private hasRecipients;
|
|
2265
2267
|
private get templateMiddleware();
|
|
2266
2268
|
private get templates();
|
|
2267
2269
|
private get provider();
|