@prezly/sdk 23.17.0 → 23.18.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/api/constants.cjs
CHANGED
|
@@ -4,6 +4,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.DEFAULT_USER_AGENT = void 0;
|
|
7
|
-
const VERSION = "23.
|
|
7
|
+
const VERSION = "23.17.1";
|
|
8
8
|
const URL = 'https://github.com/prezly/javascript-sdk';
|
|
9
9
|
const DEFAULT_USER_AGENT = exports.DEFAULT_USER_AGENT = `prezly-javascript-sdk/${VERSION} (+${URL})`;
|
package/dist/api/constants.js
CHANGED
|
@@ -12,6 +12,7 @@ export interface NewsroomTheme {
|
|
|
12
12
|
preview_image: UploadedImage | null;
|
|
13
13
|
demo_url: string | null;
|
|
14
14
|
status: NewsroomTheme.Status;
|
|
15
|
+
content_width: number | null;
|
|
15
16
|
}
|
|
16
17
|
export type NewroomThemeRef = Pick<NewsroomTheme, 'id' | 'codename' | 'name'>;
|
|
17
18
|
export declare namespace NewsroomTheme {
|
|
@@ -33,6 +33,10 @@ export interface SenderDomain {
|
|
|
33
33
|
* Expirable URL linking to the domain-specific instructions page users can share with their IT departments.
|
|
34
34
|
*/
|
|
35
35
|
shareable_dns_instructions_url: string | null;
|
|
36
|
+
/**
|
|
37
|
+
* Indicates whether microsoft Prezly IP whitelisting is required for the domain
|
|
38
|
+
*/
|
|
39
|
+
microsoft_setup_recommended: boolean;
|
|
36
40
|
}
|
|
37
41
|
export declare namespace SenderDomain {
|
|
38
42
|
enum VerificationFlowVersion {
|