@prezly/sdk 21.15.0 → 21.16.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/Client.cjs +1 -0
- package/dist/Client.d.ts +2 -1
- package/dist/Client.js +2 -1
- package/dist/api/constants.cjs +1 -1
- package/dist/api/constants.js +1 -1
- package/dist/endpoints/CoverageIntegrations/Client.cjs +52 -0
- package/dist/endpoints/CoverageIntegrations/Client.d.ts +13 -0
- package/dist/endpoints/CoverageIntegrations/Client.js +46 -0
- package/dist/endpoints/CoverageIntegrations/index.cjs +27 -0
- package/dist/endpoints/CoverageIntegrations/index.d.ts +2 -0
- package/dist/endpoints/CoverageIntegrations/index.js +2 -0
- package/dist/endpoints/CoverageIntegrations/types.cjs +4 -0
- package/dist/endpoints/CoverageIntegrations/types.d.ts +18 -0
- package/dist/endpoints/CoverageIntegrations/types.js +2 -0
- package/dist/endpoints/index.cjs +3 -1
- package/dist/endpoints/index.d.ts +1 -0
- package/dist/endpoints/index.js +1 -0
- package/dist/routing.cjs +1 -0
- package/dist/routing.d.ts +1 -0
- package/dist/routing.js +1 -0
- package/dist/types/CoverageIntegration.cjs +1 -0
- package/dist/types/CoverageIntegration.d.ts +18 -0
- package/dist/types/CoverageIntegration.js +1 -0
- package/dist/types/CoverageIntegrationRun.cjs +12 -0
- package/dist/types/CoverageIntegrationRun.d.ts +19 -0
- package/dist/types/CoverageIntegrationRun.js +6 -0
- package/dist/types/index.cjs +22 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/index.js +2 -0
- package/package.json +1 -1
package/dist/Client.cjs
CHANGED
|
@@ -33,6 +33,7 @@ function createClient({
|
|
|
33
33
|
contactTagGroups: _index2.ContactTagGroups.createClient(api),
|
|
34
34
|
contactsExports: _index2.ContactsExports.createClient(api),
|
|
35
35
|
coverage: _index2.Coverage.createClient(api),
|
|
36
|
+
coverageIntegrations: _index2.CoverageIntegrations.createClient(api),
|
|
36
37
|
jobs: _index2.Jobs.createClient(api),
|
|
37
38
|
licenses: _index2.Licenses.createClient(api),
|
|
38
39
|
newsrooms: _index2.Newsrooms.createClient(api),
|
package/dist/Client.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { DeferredJobsApiClient } from './api';
|
|
2
2
|
import { type Fetch } from './api';
|
|
3
|
-
import { Accounts, Billing, NewsroomSubscriptions, Campaigns, CampaignRecipients, Contacts, ContactTags, ContactTagGroups, ContactsExports, Coverage, Jobs, Licenses, Newsrooms, NewsroomCategories, NewsroomContacts, NewsroomLanguages, NewsroomThemes, NewsroomWebhooks, NewsroomPrivacyRequests, NewsroomDomains, NewsroomGalleries, NewsroomHub, PricingTables, SenderAddresses, Stories, Snippets, Subscriptions, NotificationSubscriptions } from './endpoints';
|
|
3
|
+
import { Accounts, Billing, NewsroomSubscriptions, Campaigns, CampaignRecipients, Contacts, ContactTags, ContactTagGroups, ContactsExports, Coverage, Jobs, Licenses, Newsrooms, NewsroomCategories, NewsroomContacts, NewsroomLanguages, NewsroomThemes, NewsroomWebhooks, NewsroomPrivacyRequests, NewsroomDomains, NewsroomGalleries, NewsroomHub, PricingTables, SenderAddresses, Stories, Snippets, Subscriptions, NotificationSubscriptions, CoverageIntegrations } from './endpoints';
|
|
4
4
|
import type { HeadersMap } from './http';
|
|
5
5
|
export interface ClientOptions {
|
|
6
6
|
accessToken: string;
|
|
@@ -19,6 +19,7 @@ export interface Client {
|
|
|
19
19
|
contactTagGroups: ContactTagGroups.Client;
|
|
20
20
|
contactsExports: ContactsExports.Client;
|
|
21
21
|
coverage: Coverage.Client;
|
|
22
|
+
coverageIntegrations: CoverageIntegrations.Client;
|
|
22
23
|
jobs: Jobs.Client;
|
|
23
24
|
licenses: Licenses.Client;
|
|
24
25
|
newsrooms: Newsrooms.Client;
|
package/dist/Client.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { createApiClient, createDeferredJobsApiClient } from "./api/index.js";
|
|
2
|
-
import { Accounts, Billing, NewsroomSubscriptions, Campaigns, CampaignRecipients, Contacts, ContactTags, ContactTagGroups, ContactsExports, Coverage, Jobs, Licenses, Newsrooms, NewsroomCategories, NewsroomContacts, NewsroomLanguages, NewsroomThemes, NewsroomWebhooks, NewsroomPrivacyRequests, NewsroomDomains, NewsroomGalleries, NewsroomHub, PricingTables, SenderAddresses, Stories, Snippets, Subscriptions, NotificationSubscriptions } from "./endpoints/index.js";
|
|
2
|
+
import { Accounts, Billing, NewsroomSubscriptions, Campaigns, CampaignRecipients, Contacts, ContactTags, ContactTagGroups, ContactsExports, Coverage, Jobs, Licenses, Newsrooms, NewsroomCategories, NewsroomContacts, NewsroomLanguages, NewsroomThemes, NewsroomWebhooks, NewsroomPrivacyRequests, NewsroomDomains, NewsroomGalleries, NewsroomHub, PricingTables, SenderAddresses, Stories, Snippets, Subscriptions, NotificationSubscriptions, CoverageIntegrations } from "./endpoints/index.js";
|
|
3
3
|
import { createHttpClient } from "./http/index.js";
|
|
4
4
|
const DEFAULT_BASE_URL = 'https://api.prezly.com';
|
|
5
5
|
export function createClient({
|
|
@@ -27,6 +27,7 @@ export function createClient({
|
|
|
27
27
|
contactTagGroups: ContactTagGroups.createClient(api),
|
|
28
28
|
contactsExports: ContactsExports.createClient(api),
|
|
29
29
|
coverage: Coverage.createClient(api),
|
|
30
|
+
coverageIntegrations: CoverageIntegrations.createClient(api),
|
|
30
31
|
jobs: Jobs.createClient(api),
|
|
31
32
|
licenses: Licenses.createClient(api),
|
|
32
33
|
newsrooms: Newsrooms.createClient(api),
|
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 = "21.
|
|
7
|
+
const VERSION = "21.15.0";
|
|
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
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.createClient = createClient;
|
|
7
|
+
var _routing = require("../../routing.cjs");
|
|
8
|
+
function createClient(api) {
|
|
9
|
+
async function list() {
|
|
10
|
+
const url = _routing.routing.coverageIntegrationsUrl;
|
|
11
|
+
const {
|
|
12
|
+
integrations
|
|
13
|
+
} = await api.get(url);
|
|
14
|
+
return integrations;
|
|
15
|
+
}
|
|
16
|
+
async function get(integrationId) {
|
|
17
|
+
const url = _routing.routing.coverageIntegrationsUrl;
|
|
18
|
+
const {
|
|
19
|
+
integration
|
|
20
|
+
} = await api.get(`${url}/${integrationId}`);
|
|
21
|
+
return integration;
|
|
22
|
+
}
|
|
23
|
+
async function create(payload) {
|
|
24
|
+
const url = _routing.routing.coverageIntegrationsUrl;
|
|
25
|
+
const {
|
|
26
|
+
integration
|
|
27
|
+
} = await api.post(url, {
|
|
28
|
+
payload
|
|
29
|
+
});
|
|
30
|
+
return integration;
|
|
31
|
+
}
|
|
32
|
+
async function update(integrationId, payload) {
|
|
33
|
+
const url = _routing.routing.coverageIntegrationsUrl;
|
|
34
|
+
const {
|
|
35
|
+
integration
|
|
36
|
+
} = await api.patch(`${url}/${integrationId}`, {
|
|
37
|
+
payload
|
|
38
|
+
});
|
|
39
|
+
return integration;
|
|
40
|
+
}
|
|
41
|
+
async function doDelete(integrationId) {
|
|
42
|
+
const url = _routing.routing.coverageIntegrationsUrl;
|
|
43
|
+
return api.delete(`${url}/${integrationId}`);
|
|
44
|
+
}
|
|
45
|
+
return {
|
|
46
|
+
list,
|
|
47
|
+
get,
|
|
48
|
+
create,
|
|
49
|
+
update,
|
|
50
|
+
delete: doDelete
|
|
51
|
+
};
|
|
52
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { DeferredJobsApiClient } from '../../api';
|
|
2
|
+
import type { CoverageIntegration } from '../../types';
|
|
3
|
+
import type { CreateRequest, UpdateRequest } from './types';
|
|
4
|
+
type IntegrationId = CoverageIntegration['id'];
|
|
5
|
+
export type Client = ReturnType<typeof createClient>;
|
|
6
|
+
export declare function createClient(api: DeferredJobsApiClient): {
|
|
7
|
+
list: () => Promise<CoverageIntegration[]>;
|
|
8
|
+
get: (integrationId: IntegrationId) => Promise<CoverageIntegration>;
|
|
9
|
+
create: (payload: CreateRequest) => Promise<CoverageIntegration>;
|
|
10
|
+
update: (integrationId: IntegrationId, payload: UpdateRequest) => Promise<CoverageIntegration>;
|
|
11
|
+
delete: (integrationId: IntegrationId) => Promise<void>;
|
|
12
|
+
};
|
|
13
|
+
export {};
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { routing } from "../../routing.js";
|
|
2
|
+
export function createClient(api) {
|
|
3
|
+
async function list() {
|
|
4
|
+
const url = routing.coverageIntegrationsUrl;
|
|
5
|
+
const {
|
|
6
|
+
integrations
|
|
7
|
+
} = await api.get(url);
|
|
8
|
+
return integrations;
|
|
9
|
+
}
|
|
10
|
+
async function get(integrationId) {
|
|
11
|
+
const url = routing.coverageIntegrationsUrl;
|
|
12
|
+
const {
|
|
13
|
+
integration
|
|
14
|
+
} = await api.get(`${url}/${integrationId}`);
|
|
15
|
+
return integration;
|
|
16
|
+
}
|
|
17
|
+
async function create(payload) {
|
|
18
|
+
const url = routing.coverageIntegrationsUrl;
|
|
19
|
+
const {
|
|
20
|
+
integration
|
|
21
|
+
} = await api.post(url, {
|
|
22
|
+
payload
|
|
23
|
+
});
|
|
24
|
+
return integration;
|
|
25
|
+
}
|
|
26
|
+
async function update(integrationId, payload) {
|
|
27
|
+
const url = routing.coverageIntegrationsUrl;
|
|
28
|
+
const {
|
|
29
|
+
integration
|
|
30
|
+
} = await api.patch(`${url}/${integrationId}`, {
|
|
31
|
+
payload
|
|
32
|
+
});
|
|
33
|
+
return integration;
|
|
34
|
+
}
|
|
35
|
+
async function doDelete(integrationId) {
|
|
36
|
+
const url = routing.coverageIntegrationsUrl;
|
|
37
|
+
return api.delete(`${url}/${integrationId}`);
|
|
38
|
+
}
|
|
39
|
+
return {
|
|
40
|
+
list,
|
|
41
|
+
get,
|
|
42
|
+
create,
|
|
43
|
+
update,
|
|
44
|
+
delete: doDelete
|
|
45
|
+
};
|
|
46
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
var _Client = require("./Client.cjs");
|
|
7
|
+
Object.keys(_Client).forEach(function (key) {
|
|
8
|
+
if (key === "default" || key === "__esModule") return;
|
|
9
|
+
if (key in exports && exports[key] === _Client[key]) return;
|
|
10
|
+
Object.defineProperty(exports, key, {
|
|
11
|
+
enumerable: true,
|
|
12
|
+
get: function () {
|
|
13
|
+
return _Client[key];
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
});
|
|
17
|
+
var _types = require("./types.cjs");
|
|
18
|
+
Object.keys(_types).forEach(function (key) {
|
|
19
|
+
if (key === "default" || key === "__esModule") return;
|
|
20
|
+
if (key in exports && exports[key] === _types[key]) return;
|
|
21
|
+
Object.defineProperty(exports, key, {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
get: function () {
|
|
24
|
+
return _types[key];
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { CoverageEntry, type Newsroom } from '../../types';
|
|
2
|
+
import Provider = CoverageEntry.Provider;
|
|
3
|
+
export interface CreateRequest {
|
|
4
|
+
newsroom: Newsroom['id'] | Newsroom['uuid'];
|
|
5
|
+
provider: Provider;
|
|
6
|
+
input: string;
|
|
7
|
+
name: string;
|
|
8
|
+
description?: string;
|
|
9
|
+
skip_author?: boolean;
|
|
10
|
+
skip_organisation?: boolean;
|
|
11
|
+
}
|
|
12
|
+
export interface UpdateRequest {
|
|
13
|
+
input?: string;
|
|
14
|
+
name?: string;
|
|
15
|
+
description?: string;
|
|
16
|
+
skip_author?: boolean;
|
|
17
|
+
skip_organisation?: boolean;
|
|
18
|
+
}
|
package/dist/endpoints/index.cjs
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.Subscriptions = exports.Stories = exports.Snippets = exports.SenderAddresses = exports.PricingTables = exports.NotificationSubscriptions = exports.Newsrooms = exports.NewsroomWebhooks = exports.NewsroomThemes = exports.NewsroomSubscriptions = exports.NewsroomPrivacyRequests = exports.NewsroomLanguages = exports.NewsroomHub = exports.NewsroomGalleries = exports.NewsroomDomains = exports.NewsroomContacts = exports.NewsroomCategories = exports.Licenses = exports.Jobs = exports.Coverage = exports.ContactsExports = exports.Contacts = exports.ContactTags = exports.ContactTagGroups = exports.Campaigns = exports.CampaignRecipients = exports.Billing = exports.Accounts = void 0;
|
|
6
|
+
exports.Subscriptions = exports.Stories = exports.Snippets = exports.SenderAddresses = exports.PricingTables = exports.NotificationSubscriptions = exports.Newsrooms = exports.NewsroomWebhooks = exports.NewsroomThemes = exports.NewsroomSubscriptions = exports.NewsroomPrivacyRequests = exports.NewsroomLanguages = exports.NewsroomHub = exports.NewsroomGalleries = exports.NewsroomDomains = exports.NewsroomContacts = exports.NewsroomCategories = exports.Licenses = exports.Jobs = exports.CoverageIntegrations = exports.Coverage = exports.ContactsExports = exports.Contacts = exports.ContactTags = exports.ContactTagGroups = exports.Campaigns = exports.CampaignRecipients = exports.Billing = exports.Accounts = void 0;
|
|
7
7
|
var _Accounts = _interopRequireWildcard(require("./Accounts/index.cjs"));
|
|
8
8
|
exports.Accounts = _Accounts;
|
|
9
9
|
var _Billing = _interopRequireWildcard(require("./Billing/index.cjs"));
|
|
@@ -22,6 +22,8 @@ var _ContactsExports = _interopRequireWildcard(require("./ContactsExports/index.
|
|
|
22
22
|
exports.ContactsExports = _ContactsExports;
|
|
23
23
|
var _Coverage = _interopRequireWildcard(require("./Coverage/index.cjs"));
|
|
24
24
|
exports.Coverage = _Coverage;
|
|
25
|
+
var _CoverageIntegrations = _interopRequireWildcard(require("./CoverageIntegrations/index.cjs"));
|
|
26
|
+
exports.CoverageIntegrations = _CoverageIntegrations;
|
|
25
27
|
var _Jobs = _interopRequireWildcard(require("./Jobs/index.cjs"));
|
|
26
28
|
exports.Jobs = _Jobs;
|
|
27
29
|
var _Licenses = _interopRequireWildcard(require("./Licenses/index.cjs"));
|
|
@@ -7,6 +7,7 @@ export * as ContactTags from './ContactTags';
|
|
|
7
7
|
export * as Contacts from './Contacts';
|
|
8
8
|
export * as ContactsExports from './ContactsExports';
|
|
9
9
|
export * as Coverage from './Coverage';
|
|
10
|
+
export * as CoverageIntegrations from './CoverageIntegrations';
|
|
10
11
|
export * as Jobs from './Jobs';
|
|
11
12
|
export * as Licenses from './Licenses';
|
|
12
13
|
export * as NewsroomCategories from './NewsroomCategories';
|
package/dist/endpoints/index.js
CHANGED
|
@@ -7,6 +7,7 @@ export * as ContactTags from "./ContactTags/index.js";
|
|
|
7
7
|
export * as Contacts from "./Contacts/index.js";
|
|
8
8
|
export * as ContactsExports from "./ContactsExports/index.js";
|
|
9
9
|
export * as Coverage from "./Coverage/index.js";
|
|
10
|
+
export * as CoverageIntegrations from "./CoverageIntegrations/index.js";
|
|
10
11
|
export * as Jobs from "./Jobs/index.js";
|
|
11
12
|
export * as Licenses from "./Licenses/index.js";
|
|
12
13
|
export * as NewsroomCategories from "./NewsroomCategories/index.js";
|
package/dist/routing.cjs
CHANGED
|
@@ -14,6 +14,7 @@ const routing = exports.routing = {
|
|
|
14
14
|
contactTagGroupsUrl: '/v2/contact-tag-groups',
|
|
15
15
|
contactTagsUrl: '/v2/contact-tags',
|
|
16
16
|
coverageUrl: '/v2/coverage',
|
|
17
|
+
coverageIntegrationsUrl: '/v2/coverage-integrations',
|
|
17
18
|
jobsUrl: '/v2/jobs',
|
|
18
19
|
licenseUrl: '/v2/licenses',
|
|
19
20
|
licenseUnsubscribeUrl: '/v2/unsubscribe',
|
package/dist/routing.d.ts
CHANGED
package/dist/routing.js
CHANGED
|
@@ -8,6 +8,7 @@ export const routing = {
|
|
|
8
8
|
contactTagGroupsUrl: '/v2/contact-tag-groups',
|
|
9
9
|
contactTagsUrl: '/v2/contact-tags',
|
|
10
10
|
coverageUrl: '/v2/coverage',
|
|
11
|
+
coverageIntegrationsUrl: '/v2/coverage-integrations',
|
|
11
12
|
jobsUrl: '/v2/jobs',
|
|
12
13
|
licenseUrl: '/v2/licenses',
|
|
13
14
|
licenseUnsubscribeUrl: '/v2/unsubscribe',
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { CoverageEntry } from './CoverageEntry';
|
|
2
|
+
import type { CoverageIntegrationRun } from './CoverageIntegrationRun';
|
|
3
|
+
import type { NewsroomRef } from './Newsroom';
|
|
4
|
+
type Iso8601DateTime = string;
|
|
5
|
+
export interface CoverageIntegration {
|
|
6
|
+
id: number;
|
|
7
|
+
name: string;
|
|
8
|
+
description: string | null;
|
|
9
|
+
newsroom: NewsroomRef;
|
|
10
|
+
provider: CoverageEntry.Provider;
|
|
11
|
+
input: string;
|
|
12
|
+
skip_author: boolean;
|
|
13
|
+
skip_organisation: boolean;
|
|
14
|
+
last_run: CoverageIntegrationRun | null;
|
|
15
|
+
next_run_at: Iso8601DateTime;
|
|
16
|
+
created_at: Iso8601DateTime;
|
|
17
|
+
}
|
|
18
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.Status = void 0;
|
|
7
|
+
let Status = exports.Status = /*#__PURE__*/function (Status) {
|
|
8
|
+
Status["DONE"] = "done";
|
|
9
|
+
Status["ERROR"] = "error";
|
|
10
|
+
Status["RUNNING"] = "running";
|
|
11
|
+
return Status;
|
|
12
|
+
}({});
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
type Iso8601DateTime = string;
|
|
2
|
+
export declare enum Status {
|
|
3
|
+
DONE = "done",
|
|
4
|
+
ERROR = "error",
|
|
5
|
+
RUNNING = "running"
|
|
6
|
+
}
|
|
7
|
+
export interface CoverageIntegrationRun {
|
|
8
|
+
id: number;
|
|
9
|
+
uuid: string;
|
|
10
|
+
created_at: Iso8601DateTime;
|
|
11
|
+
updated_at: Iso8601DateTime;
|
|
12
|
+
status: Status;
|
|
13
|
+
/**
|
|
14
|
+
* Following properties will be `null` when status = 'running'
|
|
15
|
+
*/
|
|
16
|
+
stats_processed: number | null;
|
|
17
|
+
stats_added: number | null;
|
|
18
|
+
}
|
|
19
|
+
export {};
|
package/dist/types/index.cjs
CHANGED
|
@@ -146,6 +146,28 @@ Object.keys(_CoverageEntry).forEach(function (key) {
|
|
|
146
146
|
}
|
|
147
147
|
});
|
|
148
148
|
});
|
|
149
|
+
var _CoverageIntegration = require("./CoverageIntegration.cjs");
|
|
150
|
+
Object.keys(_CoverageIntegration).forEach(function (key) {
|
|
151
|
+
if (key === "default" || key === "__esModule") return;
|
|
152
|
+
if (key in exports && exports[key] === _CoverageIntegration[key]) return;
|
|
153
|
+
Object.defineProperty(exports, key, {
|
|
154
|
+
enumerable: true,
|
|
155
|
+
get: function () {
|
|
156
|
+
return _CoverageIntegration[key];
|
|
157
|
+
}
|
|
158
|
+
});
|
|
159
|
+
});
|
|
160
|
+
var _CoverageIntegrationRun = require("./CoverageIntegrationRun.cjs");
|
|
161
|
+
Object.keys(_CoverageIntegrationRun).forEach(function (key) {
|
|
162
|
+
if (key === "default" || key === "__esModule") return;
|
|
163
|
+
if (key in exports && exports[key] === _CoverageIntegrationRun[key]) return;
|
|
164
|
+
Object.defineProperty(exports, key, {
|
|
165
|
+
enumerable: true,
|
|
166
|
+
get: function () {
|
|
167
|
+
return _CoverageIntegrationRun[key];
|
|
168
|
+
}
|
|
169
|
+
});
|
|
170
|
+
});
|
|
149
171
|
var _Culture = require("./Culture.cjs");
|
|
150
172
|
Object.keys(_Culture).forEach(function (key) {
|
|
151
173
|
if (key === "default" || key === "__esModule") return;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -11,6 +11,8 @@ export * from './ContactsExport';
|
|
|
11
11
|
export * from './ContactsScope';
|
|
12
12
|
export * from './Country';
|
|
13
13
|
export * from './CoverageEntry';
|
|
14
|
+
export * from './CoverageIntegration';
|
|
15
|
+
export * from './CoverageIntegrationRun';
|
|
14
16
|
export * from './Culture';
|
|
15
17
|
export * from './Currency';
|
|
16
18
|
export * from './DnsConfigurationInstruction';
|
package/dist/types/index.js
CHANGED
|
@@ -12,6 +12,8 @@ export * from "./ContactsExport.js";
|
|
|
12
12
|
export * from "./ContactsScope.js";
|
|
13
13
|
export * from "./Country.js";
|
|
14
14
|
export * from "./CoverageEntry.js";
|
|
15
|
+
export * from "./CoverageIntegration.js";
|
|
16
|
+
export * from "./CoverageIntegrationRun.js";
|
|
15
17
|
export * from "./Culture.js";
|
|
16
18
|
export * from "./Currency.js";
|
|
17
19
|
export * from "./DnsConfigurationInstruction.js";
|