@escapenavigator/types 2.1.3 → 2.1.4
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/emails/index.d.ts +7 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/user/crud/user.ro.d.ts +2 -0
- package/dist/user/crud/user.ro.js +6 -0
- package/dist/user/current/update-current-user-notifications.dto.d.ts +6 -0
- package/dist/user/current/update-current-user-notifications.dto.js +7 -0
- package/dist/user/enum/order-notify-horizon.enum.d.ts +12 -0
- package/dist/user/enum/order-notify-horizon.enum.js +16 -0
- package/package.json +2 -2
package/dist/emails/index.d.ts
CHANGED
|
@@ -143,6 +143,12 @@ export type EmailDataV2 = EmailContentJsonV2 & {
|
|
|
143
143
|
* still contain `{servicesList}` are silently dropped by the converter.
|
|
144
144
|
*/
|
|
145
145
|
blockPayloads?: Record<string, string>;
|
|
146
|
+
/**
|
|
147
|
+
* All team-photo URLs from the booking. `variables.photos` stays the
|
|
148
|
+
* first URL (image-node `src`); the renderer clones that tile for
|
|
149
|
+
* the rest at send-time. Omitted / one URL — no expansion.
|
|
150
|
+
*/
|
|
151
|
+
expandPhotos?: string[];
|
|
146
152
|
};
|
|
147
153
|
/**
|
|
148
154
|
* Payload письма, тело которого — готовый HTML из внешнего редактора
|
|
@@ -159,6 +165,7 @@ export type EmailDataRawHtml = EmailContentRawHtml & {
|
|
|
159
165
|
preheader?: string | null;
|
|
160
166
|
footer: EmailDataV2['footer'];
|
|
161
167
|
utm?: EmailDataV2['utm'];
|
|
168
|
+
expandPhotos?: string[];
|
|
162
169
|
};
|
|
163
170
|
export type SendEmailData = EmailDataV1 | EmailDataV2 | EmailDataRawHtml;
|
|
164
171
|
export type SendEmailRequestParams = {
|