@punks/backend-entity-manager 0.0.502 → 0.0.503
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 +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/platforms/nest/plugins/email/aws-ses/abstractions/index.d.ts +1 -1
- package/dist/cjs/types/platforms/nest/plugins/email/aws-ses/decorators/template.d.ts +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/platforms/nest/plugins/email/aws-ses/abstractions/index.d.ts +1 -1
- package/dist/esm/types/platforms/nest/plugins/email/aws-ses/decorators/template.d.ts +1 -1
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { AwsSesEmailTemplateData } from "../abstractions";
|
|
2
|
-
export declare const WpAwsSesEmailTemplate: (templateId: string,
|
|
2
|
+
export declare const WpAwsSesEmailTemplate: (templateId: string, templateData: AwsSesEmailTemplateData) => <TFunction extends Function, Y>(target: object | TFunction, propertyKey?: string | symbol | undefined, descriptor?: TypedPropertyDescriptor<Y> | undefined) => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -3636,7 +3636,7 @@ declare class AwsDynamoDbModule {
|
|
|
3636
3636
|
|
|
3637
3637
|
type AwsSesEmailTemplateData = {
|
|
3638
3638
|
subjectTemplate: string;
|
|
3639
|
-
|
|
3639
|
+
bodyTemplate: string;
|
|
3640
3640
|
from?: string;
|
|
3641
3641
|
to?: string[];
|
|
3642
3642
|
cc?: string[];
|
|
@@ -3649,7 +3649,7 @@ declare abstract class AwsSesEmailTemplate<TPayload, TAugmentedPayload = TPayloa
|
|
|
3649
3649
|
getTemplateData(payload: TAugmentedPayload): Promise<AwsSesEmailTemplateData>;
|
|
3650
3650
|
}
|
|
3651
3651
|
|
|
3652
|
-
declare const WpAwsSesEmailTemplate: (templateId: string,
|
|
3652
|
+
declare const WpAwsSesEmailTemplate: (templateId: string, templateData: AwsSesEmailTemplateData) => <TFunction extends Function, Y>(target: object | TFunction, propertyKey?: string | symbol | undefined, descriptor?: TypedPropertyDescriptor<Y> | undefined) => void;
|
|
3653
3653
|
|
|
3654
3654
|
type AwsSesSettings = {
|
|
3655
3655
|
awsAccessKeyId?: string;
|