@redhat-cloud-services/notifications-client 4.0.6 → 5.0.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/esm/index.js +0 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/tests/integration/notifications.v1.integration.test.js.map +1 -1
- package/dist/esm/types/index.d.ts +8 -8
- package/dist/esm/types/index.d.ts.map +1 -1
- package/dist/esm/v2/NotificationResourceV2V2GetLinkedBehaviorGroups/index.d.ts +53 -0
- package/dist/esm/v2/NotificationResourceV2V2GetLinkedBehaviorGroups/index.d.ts.map +1 -0
- package/dist/esm/v2/NotificationResourceV2V2GetLinkedBehaviorGroups/index.js +51 -0
- package/dist/esm/v2/NotificationResourceV2V2GetLinkedBehaviorGroups/index.js.map +1 -0
- package/dist/esm/v2/api.d.ts +2 -46
- package/dist/esm/v2/api.d.ts.map +1 -1
- package/dist/esm/v2/api.js +2 -24
- package/dist/esm/v2/api.js.map +1 -1
- package/dist/esm/v2/index.d.ts +1 -23
- package/dist/esm/v2/index.d.ts.map +1 -1
- package/dist/esm/v2/index.js +1 -23
- package/dist/esm/v2/index.js.map +1 -1
- package/dist/esm/v2/tests/integration/notifications.v2.integration.test.js +1 -122
- package/dist/esm/v2/tests/integration/notifications.v2.integration.test.js.map +1 -1
- package/dist/esm/v2/types/index.d.ts +13 -397
- package/dist/esm/v2/types/index.d.ts.map +1 -1
- package/dist/index.js +0 -1
- package/dist/index.js.map +1 -1
- package/dist/package.json +2 -2
- package/dist/tests/integration/notifications.v1.integration.test.js.map +1 -1
- package/dist/types/index.d.ts +8 -8
- package/dist/types/index.d.ts.map +1 -1
- package/dist/v2/NotificationResourceV2V2GetLinkedBehaviorGroups/index.d.ts +53 -0
- package/dist/v2/NotificationResourceV2V2GetLinkedBehaviorGroups/index.d.ts.map +1 -0
- package/dist/v2/NotificationResourceV2V2GetLinkedBehaviorGroups/index.js +67 -0
- package/dist/v2/NotificationResourceV2V2GetLinkedBehaviorGroups/index.js.map +1 -0
- package/dist/v2/api.d.ts +2 -46
- package/dist/v2/api.d.ts.map +1 -1
- package/dist/v2/api.js +1 -23
- package/dist/v2/api.js.map +1 -1
- package/dist/v2/index.d.ts +1 -23
- package/dist/v2/index.d.ts.map +1 -1
- package/dist/v2/index.js +3 -47
- package/dist/v2/index.js.map +1 -1
- package/dist/v2/tests/integration/notifications.v2.integration.test.js +1 -275
- package/dist/v2/tests/integration/notifications.v2.integration.test.js.map +1 -1
- package/dist/v2/types/index.d.ts +13 -397
- package/dist/v2/types/index.d.ts.map +1 -1
- package/package.json +2 -2
- package/project.json +2 -16
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import type { AxiosRequestConfig } from 'axios';
|
|
2
|
+
import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base';
|
|
3
|
+
import type { PageBehaviorGroup } from '../types';
|
|
4
|
+
export type NotificationResourceV2V2GetLinkedBehaviorGroupsParams = {
|
|
5
|
+
/**
|
|
6
|
+
*
|
|
7
|
+
* @type { any }
|
|
8
|
+
* @memberof NotificationResourceV2V2GetLinkedBehaviorGroupsApi
|
|
9
|
+
*/
|
|
10
|
+
eventTypeId: any;
|
|
11
|
+
/**
|
|
12
|
+
* Number of items per page, if not specified 20 is used.
|
|
13
|
+
* @type { any }
|
|
14
|
+
* @memberof NotificationResourceV2V2GetLinkedBehaviorGroupsApi
|
|
15
|
+
*/
|
|
16
|
+
limit?: any;
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @type { any }
|
|
20
|
+
* @memberof NotificationResourceV2V2GetLinkedBehaviorGroupsApi
|
|
21
|
+
*/
|
|
22
|
+
offset?: any;
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type { any }
|
|
26
|
+
* @memberof NotificationResourceV2V2GetLinkedBehaviorGroupsApi
|
|
27
|
+
*/
|
|
28
|
+
pageNumber?: any;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type { any }
|
|
32
|
+
* @memberof NotificationResourceV2V2GetLinkedBehaviorGroupsApi
|
|
33
|
+
*/
|
|
34
|
+
sortBy?: any;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type { any }
|
|
38
|
+
* @memberof NotificationResourceV2V2GetLinkedBehaviorGroupsApi
|
|
39
|
+
*/
|
|
40
|
+
sortBy2?: any;
|
|
41
|
+
options?: AxiosRequestConfig;
|
|
42
|
+
};
|
|
43
|
+
export type NotificationResourceV2V2GetLinkedBehaviorGroupsReturnType = PageBehaviorGroup;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @summary Retrieve the behavior groups linked to an event type.
|
|
47
|
+
* @param {NotificationResourceV2V2GetLinkedBehaviorGroupsParams} config with all available params.
|
|
48
|
+
* @param {*} [options] Override http request option.
|
|
49
|
+
* @throws {RequiredError}
|
|
50
|
+
*/
|
|
51
|
+
export declare const notificationResourceV2V2GetLinkedBehaviorGroupsParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([NotificationResourceV2V2GetLinkedBehaviorGroupsParams] | [any, any, any, any, any, any, AxiosRequestConfig])) => Promise<import("axios").AxiosResponse<PageBehaviorGroup, any, {}>>;
|
|
52
|
+
export default notificationResourceV2V2GetLinkedBehaviorGroupsParamCreator;
|
|
53
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../v2/NotificationResourceV2V2GetLinkedBehaviorGroups/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAA+B,kBAAkB,EAAU,MAAM,OAAO,CAAC;AAKrF,OAAO,EAAE,OAAO,EAAE,MAAM,4DAA4D,CAAC;AAIrF,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAC;AAGlD,MAAM,MAAM,qDAAqD,GAAG;IAClE;;;;MAIE;IACF,WAAW,EAAE,GAAG,CAAC;IACjB;;;;MAIE;IACF,KAAK,CAAC,EAAE,GAAG,CAAC;IACZ;;;;MAIE;IACF,MAAM,CAAC,EAAE,GAAG,CAAC;IACb;;;;MAIE;IACF,UAAU,CAAC,EAAE,GAAG,CAAC;IACjB;;;;MAIE;IACF,MAAM,CAAC,EAAE,GAAG,CAAC;IACb;;;;MAIE;IACF,OAAO,CAAC,EAAE,GAAG,CAAC;IACd,OAAO,CAAC,EAAE,kBAAkB,CAAA;CAC7B,CAAA;AAED,MAAM,MAAM,yDAAyD,GAAG,iBAAiB,CAAC;AAS1F;;;;;;EAME;AACF,eAAO,MAAM,2DAA2D,GAAU,aAAa,OAAO,CAAC,aAAa,CAAC,EAAE,GAAG,QAAQ,CAAC,CAAC,qDAAqD,CAAC,GAAG,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,kBAAkB,CAAC,CAAC,uEA0C/O,CAAA;AAED,eAAe,2DAA2D,CAAC"}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.notificationResourceV2V2GetLinkedBehaviorGroupsParamCreator = void 0;
|
|
4
|
+
var tslib_1 = require("tslib");
|
|
5
|
+
// @ts-ignore
|
|
6
|
+
var common_1 = require("@redhat-cloud-services/javascript-clients-shared/dist/common");
|
|
7
|
+
var isNotificationResourceV2V2GetLinkedBehaviorGroupsObjectParams = function (params) {
|
|
8
|
+
var l = params.length === 1;
|
|
9
|
+
if (l && typeof params[0] === 'object' && !Array.isArray(params[0])) {
|
|
10
|
+
return true && Object.prototype.hasOwnProperty.call(params[0], 'eventTypeId');
|
|
11
|
+
}
|
|
12
|
+
return false;
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @summary Retrieve the behavior groups linked to an event type.
|
|
17
|
+
* @param {NotificationResourceV2V2GetLinkedBehaviorGroupsParams} config with all available params.
|
|
18
|
+
* @param {*} [options] Override http request option.
|
|
19
|
+
* @throws {RequiredError}
|
|
20
|
+
*/
|
|
21
|
+
var notificationResourceV2V2GetLinkedBehaviorGroupsParamCreator = function (sendRequest) {
|
|
22
|
+
var config = [];
|
|
23
|
+
for (var _i = 1; _i < arguments.length; _i++) {
|
|
24
|
+
config[_i - 1] = arguments[_i];
|
|
25
|
+
}
|
|
26
|
+
return tslib_1.__awaiter(void 0, void 0, void 0, function () {
|
|
27
|
+
var params, eventTypeId, limit, offset, pageNumber, sortBy, sortBy2, _a, options, localVarPath, localVarUrlObj, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, args;
|
|
28
|
+
return tslib_1.__generator(this, function (_b) {
|
|
29
|
+
params = isNotificationResourceV2V2GetLinkedBehaviorGroupsObjectParams(config) ? config[0] : ['eventTypeId', 'limit', 'offset', 'pageNumber', 'sortBy', 'sortBy2', 'options'].reduce(function (acc, curr, index) {
|
|
30
|
+
var _a;
|
|
31
|
+
return (tslib_1.__assign(tslib_1.__assign({}, acc), (_a = {}, _a[curr] = config[index], _a)));
|
|
32
|
+
}, {});
|
|
33
|
+
eventTypeId = params.eventTypeId, limit = params.limit, offset = params.offset, pageNumber = params.pageNumber, sortBy = params.sortBy, sortBy2 = params.sortBy2, _a = params.options, options = _a === void 0 ? {} : _a;
|
|
34
|
+
localVarPath = "/notifications/eventTypes/{eventTypeId}/behaviorGroups"
|
|
35
|
+
.replace("{".concat("eventTypeId", "}"), encodeURIComponent(String(eventTypeId)));
|
|
36
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
37
|
+
localVarRequestOptions = tslib_1.__assign({ method: 'GET' }, options);
|
|
38
|
+
localVarHeaderParameter = {};
|
|
39
|
+
localVarQueryParameter = {};
|
|
40
|
+
if (limit !== undefined) {
|
|
41
|
+
localVarQueryParameter['limit'] = limit;
|
|
42
|
+
}
|
|
43
|
+
if (offset !== undefined) {
|
|
44
|
+
localVarQueryParameter['offset'] = offset;
|
|
45
|
+
}
|
|
46
|
+
if (pageNumber !== undefined) {
|
|
47
|
+
localVarQueryParameter['pageNumber'] = pageNumber;
|
|
48
|
+
}
|
|
49
|
+
if (sortBy !== undefined) {
|
|
50
|
+
localVarQueryParameter['sortBy'] = sortBy;
|
|
51
|
+
}
|
|
52
|
+
if (sortBy2 !== undefined) {
|
|
53
|
+
localVarQueryParameter['sort_by'] = sortBy2;
|
|
54
|
+
}
|
|
55
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
56
|
+
localVarRequestOptions.headers = tslib_1.__assign(tslib_1.__assign({}, localVarHeaderParameter), options.headers);
|
|
57
|
+
args = {
|
|
58
|
+
urlObj: localVarUrlObj,
|
|
59
|
+
options: localVarRequestOptions,
|
|
60
|
+
};
|
|
61
|
+
return [2 /*return*/, sendRequest(Promise.resolve(args))];
|
|
62
|
+
});
|
|
63
|
+
});
|
|
64
|
+
};
|
|
65
|
+
exports.notificationResourceV2V2GetLinkedBehaviorGroupsParamCreator = notificationResourceV2V2GetLinkedBehaviorGroupsParamCreator;
|
|
66
|
+
exports.default = exports.notificationResourceV2V2GetLinkedBehaviorGroupsParamCreator;
|
|
67
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../v2/NotificationResourceV2V2GetLinkedBehaviorGroups/index.ts"],"names":[],"mappings":"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"}
|
package/dist/v2/api.d.ts
CHANGED
|
@@ -1,52 +1,8 @@
|
|
|
1
1
|
import { ApiConfig } from '@redhat-cloud-services/javascript-clients-shared/dist/common';
|
|
2
2
|
export declare const NotificationsClient: (BASE_PATH: string, instance?: ApiConfig) => import("packages/shared/dist/base").BaseAPI & import("@redhat-cloud-services/javascript-clients-shared/dist/utils").APIFactoryResponse<{
|
|
3
|
-
|
|
4
|
-
drawerResourceV1UpdateNotificationReadStatus: (sendRequest: import("packages/shared/dist/base").BaseAPI["sendRequest"], ...config: ([import("./DrawerResourceV1UpdateNotificationReadStatus").DrawerResourceV1UpdateNotificationReadStatusParams] | [import("./types").UpdateNotificationDrawerStatus, import("axios").AxiosRequestConfig])) => Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
5
|
-
eventResourceV1GetEvents: (sendRequest: import("packages/shared/dist/base").BaseAPI["sendRequest"], ...config: ([import("./EventResourceV1GetEvents").EventResourceV1GetEventsParams] | [any, any, any, any, any, any, any, any, any, any, any, any, any, any, any, any, import("axios").AxiosRequestConfig])) => Promise<import("axios").AxiosResponse<import("./types").PageEventLogEntry, any, {}>>;
|
|
6
|
-
notificationResourceV1AppendBehaviorGroupToEventType: (sendRequest: import("packages/shared/dist/base").BaseAPI["sendRequest"], ...config: ([import("./NotificationResourceV1AppendBehaviorGroupToEventType").NotificationResourceV1AppendBehaviorGroupToEventTypeParams] | [any, any, import("axios").AxiosRequestConfig])) => Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
7
|
-
notificationResourceV1CreateBehaviorGroup: (sendRequest: import("packages/shared/dist/base").BaseAPI["sendRequest"], ...config: ([import("./NotificationResourceV1CreateBehaviorGroup").NotificationResourceV1CreateBehaviorGroupParams] | [import("./types").CreateBehaviorGroupRequest, import("axios").AxiosRequestConfig])) => Promise<import("axios").AxiosResponse<import("./types").CreateBehaviorGroupResponse, any, {}>>;
|
|
8
|
-
notificationResourceV1DeleteBehaviorGroup: (sendRequest: import("packages/shared/dist/base").BaseAPI["sendRequest"], ...config: ([import("./NotificationResourceV1DeleteBehaviorGroup").NotificationResourceV1DeleteBehaviorGroupParams] | [any, import("axios").AxiosRequestConfig])) => Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
9
|
-
notificationResourceV1DeleteBehaviorGroupFromEventType: (sendRequest: import("packages/shared/dist/base").BaseAPI["sendRequest"], ...config: ([import("./NotificationResourceV1DeleteBehaviorGroupFromEventType").NotificationResourceV1DeleteBehaviorGroupFromEventTypeParams] | [any, any, import("axios").AxiosRequestConfig])) => Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
10
|
-
notificationResourceV1FindBehaviorGroupsByBundleId: (sendRequest: import("packages/shared/dist/base").BaseAPI["sendRequest"], ...config: ([import("./NotificationResourceV1FindBehaviorGroupsByBundleId").NotificationResourceV1FindBehaviorGroupsByBundleIdParams] | [any, import("axios").AxiosRequestConfig])) => Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
11
|
-
notificationResourceV1GetApplicationByNameAndBundleName: (sendRequest: import("packages/shared/dist/base").BaseAPI["sendRequest"], ...config: ([import("./NotificationResourceV1GetApplicationByNameAndBundleName").NotificationResourceV1GetApplicationByNameAndBundleNameParams] | [any, any, import("axios").AxiosRequestConfig])) => Promise<import("axios").AxiosResponse<import("./types").Application, any, {}>>;
|
|
12
|
-
notificationResourceV1GetApplicationsFacets: (sendRequest: import("packages/shared/dist/base").BaseAPI["sendRequest"], ...config: ([import("./NotificationResourceV1GetApplicationsFacets").NotificationResourceV1GetApplicationsFacetsParams] | [any, import("axios").AxiosRequestConfig])) => Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
13
|
-
notificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpoint: (sendRequest: import("packages/shared/dist/base").BaseAPI["sendRequest"], ...config: ([import("./NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpoint").NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpointParams] | [any, import("axios").AxiosRequestConfig])) => Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
14
|
-
notificationResourceV1GetBundleByName: (sendRequest: import("packages/shared/dist/base").BaseAPI["sendRequest"], ...config: ([import("./NotificationResourceV1GetBundleByName").NotificationResourceV1GetBundleByNameParams] | [any, import("axios").AxiosRequestConfig])) => Promise<import("axios").AxiosResponse<import("./types").Bundle, any, {}>>;
|
|
15
|
-
notificationResourceV1GetBundleFacets: (sendRequest: import("packages/shared/dist/base").BaseAPI["sendRequest"], ...config: ([import("./NotificationResourceV1GetBundleFacets").NotificationResourceV1GetBundleFacetsParams] | [any, import("axios").AxiosRequestConfig])) => Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
16
|
-
notificationResourceV1GetEventTypes: (sendRequest: import("packages/shared/dist/base").BaseAPI["sendRequest"], ...config: ([import("./NotificationResourceV1GetEventTypes").NotificationResourceV1GetEventTypesParams] | [any, any, any, any, any, any, any, any, any, import("axios").AxiosRequestConfig])) => Promise<import("axios").AxiosResponse<import("./types").PageEventType, any, {}>>;
|
|
17
|
-
notificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroup: (sendRequest: import("packages/shared/dist/base").BaseAPI["sendRequest"], ...config: ([import("./NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroup").NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroupParams] | [any, import("axios").AxiosRequestConfig])) => Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
18
|
-
notificationResourceV1GetEventTypesByNameAndBundleAndApplicationName: (sendRequest: import("packages/shared/dist/base").BaseAPI["sendRequest"], ...config: ([import("./NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationName").NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationNameParams] | [any, any, any, import("axios").AxiosRequestConfig])) => Promise<import("axios").AxiosResponse<import("./types").EventType, any, {}>>;
|
|
19
|
-
notificationResourceV1GetLinkedBehaviorGroups: (sendRequest: import("packages/shared/dist/base").BaseAPI["sendRequest"], ...config: ([import("./NotificationResourceV1GetLinkedBehaviorGroups").NotificationResourceV1GetLinkedBehaviorGroupsParams] | [any, any, any, any, any, any, import("axios").AxiosRequestConfig])) => Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
20
|
-
notificationResourceV1UpdateBehaviorGroup: (sendRequest: import("packages/shared/dist/base").BaseAPI["sendRequest"], ...config: ([import("./NotificationResourceV1UpdateBehaviorGroup").NotificationResourceV1UpdateBehaviorGroupParams] | [any, import("./types").UpdateBehaviorGroupRequest, import("axios").AxiosRequestConfig])) => Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
21
|
-
notificationResourceV1UpdateBehaviorGroupActions: (sendRequest: import("packages/shared/dist/base").BaseAPI["sendRequest"], ...config: ([import("./NotificationResourceV1UpdateBehaviorGroupActions").NotificationResourceV1UpdateBehaviorGroupActionsParams] | [any, any, import("axios").AxiosRequestConfig])) => Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
22
|
-
notificationResourceV1UpdateEventTypeBehaviors: (sendRequest: import("packages/shared/dist/base").BaseAPI["sendRequest"], ...config: ([import("./NotificationResourceV1UpdateEventTypeBehaviors").NotificationResourceV1UpdateEventTypeBehaviorsParams] | [any, any, import("axios").AxiosRequestConfig])) => Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
23
|
-
notificationResourceV1UpdateEventTypeEndpoints: (sendRequest: import("packages/shared/dist/base").BaseAPI["sendRequest"], ...config: ([import("./NotificationResourceV1UpdateEventTypeEndpoints").NotificationResourceV1UpdateEventTypeEndpointsParams] | [any, any, import("axios").AxiosRequestConfig])) => Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
24
|
-
orgConfigResourceV1GetDailyDigestTimePreference: (sendRequest: import("packages/shared/dist/base").BaseAPI["sendRequest"], ...config: ([import("./OrgConfigResourceV1GetDailyDigestTimePreference").OrgConfigResourceV1GetDailyDigestTimePreferenceParams] | [import("axios").AxiosRequestConfig])) => Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
25
|
-
orgConfigResourceV1SaveDailyDigestTimePreference: (sendRequest: import("packages/shared/dist/base").BaseAPI["sendRequest"], ...config: ([import("./OrgConfigResourceV1SaveDailyDigestTimePreference").OrgConfigResourceV1SaveDailyDigestTimePreferenceParams] | [any, import("axios").AxiosRequestConfig])) => Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
3
|
+
notificationResourceV2V2GetLinkedBehaviorGroups: (sendRequest: import("packages/shared/dist/base").BaseAPI["sendRequest"], ...config: ([import("./NotificationResourceV2V2GetLinkedBehaviorGroups").NotificationResourceV2V2GetLinkedBehaviorGroupsParams] | [any, any, any, any, any, any, import("axios").AxiosRequestConfig])) => Promise<import("axios").AxiosResponse<import("./types").PageBehaviorGroup, any, {}>>;
|
|
26
4
|
}, {
|
|
27
|
-
|
|
28
|
-
drawerResourceV1UpdateNotificationReadStatus: Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
29
|
-
eventResourceV1GetEvents: Promise<import("axios").AxiosResponse<import("./types").PageEventLogEntry, any, {}>>;
|
|
30
|
-
notificationResourceV1AppendBehaviorGroupToEventType: Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
31
|
-
notificationResourceV1CreateBehaviorGroup: Promise<import("axios").AxiosResponse<import("./types").CreateBehaviorGroupResponse, any, {}>>;
|
|
32
|
-
notificationResourceV1DeleteBehaviorGroup: Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
33
|
-
notificationResourceV1DeleteBehaviorGroupFromEventType: Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
34
|
-
notificationResourceV1FindBehaviorGroupsByBundleId: Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
35
|
-
notificationResourceV1GetApplicationByNameAndBundleName: Promise<import("axios").AxiosResponse<import("./types").Application, any, {}>>;
|
|
36
|
-
notificationResourceV1GetApplicationsFacets: Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
37
|
-
notificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpoint: Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
38
|
-
notificationResourceV1GetBundleByName: Promise<import("axios").AxiosResponse<import("./types").Bundle, any, {}>>;
|
|
39
|
-
notificationResourceV1GetBundleFacets: Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
40
|
-
notificationResourceV1GetEventTypes: Promise<import("axios").AxiosResponse<import("./types").PageEventType, any, {}>>;
|
|
41
|
-
notificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroup: Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
42
|
-
notificationResourceV1GetEventTypesByNameAndBundleAndApplicationName: Promise<import("axios").AxiosResponse<import("./types").EventType, any, {}>>;
|
|
43
|
-
notificationResourceV1GetLinkedBehaviorGroups: Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
44
|
-
notificationResourceV1UpdateBehaviorGroup: Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
45
|
-
notificationResourceV1UpdateBehaviorGroupActions: Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
46
|
-
notificationResourceV1UpdateEventTypeBehaviors: Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
47
|
-
notificationResourceV1UpdateEventTypeEndpoints: Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
48
|
-
orgConfigResourceV1GetDailyDigestTimePreference: Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
49
|
-
orgConfigResourceV1SaveDailyDigestTimePreference: Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
5
|
+
notificationResourceV2V2GetLinkedBehaviorGroups: Promise<import("axios").AxiosResponse<import("./types").PageBehaviorGroup, any, {}>>;
|
|
50
6
|
}>;
|
|
51
7
|
export default NotificationsClient;
|
|
52
8
|
//# sourceMappingURL=api.d.ts.map
|
package/dist/v2/api.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../v2/api.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,SAAS,EAAE,MAAM,8DAA8D,CAAA;
|
|
1
|
+
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../v2/api.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,SAAS,EAAE,MAAM,8DAA8D,CAAA;AAYxF,eAAO,MAAM,mBAAmB,GAAI,WAAW,MAAM,EAAE,WAAW,SAAS;;;;EAE1E,CAAA;AAED,eAAe,mBAAmB,CAAC"}
|
package/dist/v2/api.js
CHANGED
|
@@ -6,29 +6,7 @@ exports.NotificationsClient = void 0;
|
|
|
6
6
|
var utils_1 = require("@redhat-cloud-services/javascript-clients-shared/dist/utils");
|
|
7
7
|
var index_1 = require("./index");
|
|
8
8
|
var endpointList = {
|
|
9
|
-
|
|
10
|
-
drawerResourceV1UpdateNotificationReadStatus: index_1.drawerResourceV1UpdateNotificationReadStatus,
|
|
11
|
-
eventResourceV1GetEvents: index_1.eventResourceV1GetEvents,
|
|
12
|
-
notificationResourceV1AppendBehaviorGroupToEventType: index_1.notificationResourceV1AppendBehaviorGroupToEventType,
|
|
13
|
-
notificationResourceV1CreateBehaviorGroup: index_1.notificationResourceV1CreateBehaviorGroup,
|
|
14
|
-
notificationResourceV1DeleteBehaviorGroup: index_1.notificationResourceV1DeleteBehaviorGroup,
|
|
15
|
-
notificationResourceV1DeleteBehaviorGroupFromEventType: index_1.notificationResourceV1DeleteBehaviorGroupFromEventType,
|
|
16
|
-
notificationResourceV1FindBehaviorGroupsByBundleId: index_1.notificationResourceV1FindBehaviorGroupsByBundleId,
|
|
17
|
-
notificationResourceV1GetApplicationByNameAndBundleName: index_1.notificationResourceV1GetApplicationByNameAndBundleName,
|
|
18
|
-
notificationResourceV1GetApplicationsFacets: index_1.notificationResourceV1GetApplicationsFacets,
|
|
19
|
-
notificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpoint: index_1.notificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpoint,
|
|
20
|
-
notificationResourceV1GetBundleByName: index_1.notificationResourceV1GetBundleByName,
|
|
21
|
-
notificationResourceV1GetBundleFacets: index_1.notificationResourceV1GetBundleFacets,
|
|
22
|
-
notificationResourceV1GetEventTypes: index_1.notificationResourceV1GetEventTypes,
|
|
23
|
-
notificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroup: index_1.notificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroup,
|
|
24
|
-
notificationResourceV1GetEventTypesByNameAndBundleAndApplicationName: index_1.notificationResourceV1GetEventTypesByNameAndBundleAndApplicationName,
|
|
25
|
-
notificationResourceV1GetLinkedBehaviorGroups: index_1.notificationResourceV1GetLinkedBehaviorGroups,
|
|
26
|
-
notificationResourceV1UpdateBehaviorGroup: index_1.notificationResourceV1UpdateBehaviorGroup,
|
|
27
|
-
notificationResourceV1UpdateBehaviorGroupActions: index_1.notificationResourceV1UpdateBehaviorGroupActions,
|
|
28
|
-
notificationResourceV1UpdateEventTypeBehaviors: index_1.notificationResourceV1UpdateEventTypeBehaviors,
|
|
29
|
-
notificationResourceV1UpdateEventTypeEndpoints: index_1.notificationResourceV1UpdateEventTypeEndpoints,
|
|
30
|
-
orgConfigResourceV1GetDailyDigestTimePreference: index_1.orgConfigResourceV1GetDailyDigestTimePreference,
|
|
31
|
-
orgConfigResourceV1SaveDailyDigestTimePreference: index_1.orgConfigResourceV1SaveDailyDigestTimePreference,
|
|
9
|
+
notificationResourceV2V2GetLinkedBehaviorGroups: index_1.notificationResourceV2V2GetLinkedBehaviorGroups,
|
|
32
10
|
};
|
|
33
11
|
var NotificationsClient = function (BASE_PATH, instance) {
|
|
34
12
|
return (0, utils_1.APIFactory)(BASE_PATH, endpointList, instance);
|
package/dist/v2/api.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../v2/api.ts"],"names":[],"mappings":";;;AAAA,oBAAoB;AACpB,oBAAoB;AACpB,qFAAyF;AAEzF,
|
|
1
|
+
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../v2/api.ts"],"names":[],"mappings":";;;AAAA,oBAAoB;AACpB,oBAAoB;AACpB,qFAAyF;AAEzF,iCAGmB;AAEnB,IAAM,YAAY,GAAG;IACf,+CAA+C,yDAAA;CAGpD,CAAC;AAEK,IAAM,mBAAmB,GAAG,UAAC,SAAiB,EAAE,QAAoB;IACzE,OAAO,IAAA,kBAAU,EAAC,SAAS,EAAE,YAAY,EAAE,QAAQ,CAAC,CAAC;AACvD,CAAC,CAAA;AAFY,QAAA,mBAAmB,uBAE/B;AAED,kBAAe,2BAAmB,CAAC"}
|
package/dist/v2/index.d.ts
CHANGED
|
@@ -1,25 +1,3 @@
|
|
|
1
|
-
export { default as
|
|
2
|
-
export { default as drawerResourceV1UpdateNotificationReadStatus, type DrawerResourceV1UpdateNotificationReadStatusReturnType } from './DrawerResourceV1UpdateNotificationReadStatus';
|
|
3
|
-
export { default as eventResourceV1GetEvents, type EventResourceV1GetEventsReturnType } from './EventResourceV1GetEvents';
|
|
4
|
-
export { default as notificationResourceV1AppendBehaviorGroupToEventType, type NotificationResourceV1AppendBehaviorGroupToEventTypeReturnType } from './NotificationResourceV1AppendBehaviorGroupToEventType';
|
|
5
|
-
export { default as notificationResourceV1CreateBehaviorGroup, type NotificationResourceV1CreateBehaviorGroupReturnType } from './NotificationResourceV1CreateBehaviorGroup';
|
|
6
|
-
export { default as notificationResourceV1DeleteBehaviorGroup, type NotificationResourceV1DeleteBehaviorGroupReturnType } from './NotificationResourceV1DeleteBehaviorGroup';
|
|
7
|
-
export { default as notificationResourceV1DeleteBehaviorGroupFromEventType, type NotificationResourceV1DeleteBehaviorGroupFromEventTypeReturnType } from './NotificationResourceV1DeleteBehaviorGroupFromEventType';
|
|
8
|
-
export { default as notificationResourceV1FindBehaviorGroupsByBundleId, type NotificationResourceV1FindBehaviorGroupsByBundleIdReturnType } from './NotificationResourceV1FindBehaviorGroupsByBundleId';
|
|
9
|
-
export { default as notificationResourceV1GetApplicationByNameAndBundleName, type NotificationResourceV1GetApplicationByNameAndBundleNameReturnType } from './NotificationResourceV1GetApplicationByNameAndBundleName';
|
|
10
|
-
export { default as notificationResourceV1GetApplicationsFacets, type NotificationResourceV1GetApplicationsFacetsReturnType } from './NotificationResourceV1GetApplicationsFacets';
|
|
11
|
-
export { default as notificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpoint, type NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpointReturnType } from './NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpoint';
|
|
12
|
-
export { default as notificationResourceV1GetBundleByName, type NotificationResourceV1GetBundleByNameReturnType } from './NotificationResourceV1GetBundleByName';
|
|
13
|
-
export { default as notificationResourceV1GetBundleFacets, type NotificationResourceV1GetBundleFacetsReturnType } from './NotificationResourceV1GetBundleFacets';
|
|
14
|
-
export { default as notificationResourceV1GetEventTypes, type NotificationResourceV1GetEventTypesReturnType } from './NotificationResourceV1GetEventTypes';
|
|
15
|
-
export { default as notificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroup, type NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroupReturnType } from './NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroup';
|
|
16
|
-
export { default as notificationResourceV1GetEventTypesByNameAndBundleAndApplicationName, type NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationNameReturnType } from './NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationName';
|
|
17
|
-
export { default as notificationResourceV1GetLinkedBehaviorGroups, type NotificationResourceV1GetLinkedBehaviorGroupsReturnType } from './NotificationResourceV1GetLinkedBehaviorGroups';
|
|
18
|
-
export { default as notificationResourceV1UpdateBehaviorGroup, type NotificationResourceV1UpdateBehaviorGroupReturnType } from './NotificationResourceV1UpdateBehaviorGroup';
|
|
19
|
-
export { default as notificationResourceV1UpdateBehaviorGroupActions, type NotificationResourceV1UpdateBehaviorGroupActionsReturnType } from './NotificationResourceV1UpdateBehaviorGroupActions';
|
|
20
|
-
export { default as notificationResourceV1UpdateEventTypeBehaviors, type NotificationResourceV1UpdateEventTypeBehaviorsReturnType } from './NotificationResourceV1UpdateEventTypeBehaviors';
|
|
21
|
-
export { default as notificationResourceV1UpdateEventTypeEndpoints, type NotificationResourceV1UpdateEventTypeEndpointsReturnType } from './NotificationResourceV1UpdateEventTypeEndpoints';
|
|
22
|
-
export { default as orgConfigResourceV1GetDailyDigestTimePreference, type OrgConfigResourceV1GetDailyDigestTimePreferenceReturnType } from './OrgConfigResourceV1GetDailyDigestTimePreference';
|
|
23
|
-
export { default as orgConfigResourceV1SaveDailyDigestTimePreference, type OrgConfigResourceV1SaveDailyDigestTimePreferenceReturnType } from './OrgConfigResourceV1SaveDailyDigestTimePreference';
|
|
1
|
+
export { default as notificationResourceV2V2GetLinkedBehaviorGroups, type NotificationResourceV2V2GetLinkedBehaviorGroupsReturnType } from './NotificationResourceV2V2GetLinkedBehaviorGroups';
|
|
24
2
|
export * from './types';
|
|
25
3
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/v2/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../v2/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../v2/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,+CAA+C,EAAE,KAAK,yDAAyD,EAAE,MAAM,mDAAmD,CAAA;AAG9L,cAAc,SAAS,CAAA"}
|
package/dist/v2/index.js
CHANGED
|
@@ -1,52 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.notificationResourceV2V2GetLinkedBehaviorGroups = void 0;
|
|
4
4
|
var tslib_1 = require("tslib");
|
|
5
|
-
var
|
|
6
|
-
Object.defineProperty(exports, "
|
|
7
|
-
var DrawerResourceV1UpdateNotificationReadStatus_1 = require("./DrawerResourceV1UpdateNotificationReadStatus");
|
|
8
|
-
Object.defineProperty(exports, "drawerResourceV1UpdateNotificationReadStatus", { enumerable: true, get: function () { return DrawerResourceV1UpdateNotificationReadStatus_1.default; } });
|
|
9
|
-
var EventResourceV1GetEvents_1 = require("./EventResourceV1GetEvents");
|
|
10
|
-
Object.defineProperty(exports, "eventResourceV1GetEvents", { enumerable: true, get: function () { return EventResourceV1GetEvents_1.default; } });
|
|
11
|
-
var NotificationResourceV1AppendBehaviorGroupToEventType_1 = require("./NotificationResourceV1AppendBehaviorGroupToEventType");
|
|
12
|
-
Object.defineProperty(exports, "notificationResourceV1AppendBehaviorGroupToEventType", { enumerable: true, get: function () { return NotificationResourceV1AppendBehaviorGroupToEventType_1.default; } });
|
|
13
|
-
var NotificationResourceV1CreateBehaviorGroup_1 = require("./NotificationResourceV1CreateBehaviorGroup");
|
|
14
|
-
Object.defineProperty(exports, "notificationResourceV1CreateBehaviorGroup", { enumerable: true, get: function () { return NotificationResourceV1CreateBehaviorGroup_1.default; } });
|
|
15
|
-
var NotificationResourceV1DeleteBehaviorGroup_1 = require("./NotificationResourceV1DeleteBehaviorGroup");
|
|
16
|
-
Object.defineProperty(exports, "notificationResourceV1DeleteBehaviorGroup", { enumerable: true, get: function () { return NotificationResourceV1DeleteBehaviorGroup_1.default; } });
|
|
17
|
-
var NotificationResourceV1DeleteBehaviorGroupFromEventType_1 = require("./NotificationResourceV1DeleteBehaviorGroupFromEventType");
|
|
18
|
-
Object.defineProperty(exports, "notificationResourceV1DeleteBehaviorGroupFromEventType", { enumerable: true, get: function () { return NotificationResourceV1DeleteBehaviorGroupFromEventType_1.default; } });
|
|
19
|
-
var NotificationResourceV1FindBehaviorGroupsByBundleId_1 = require("./NotificationResourceV1FindBehaviorGroupsByBundleId");
|
|
20
|
-
Object.defineProperty(exports, "notificationResourceV1FindBehaviorGroupsByBundleId", { enumerable: true, get: function () { return NotificationResourceV1FindBehaviorGroupsByBundleId_1.default; } });
|
|
21
|
-
var NotificationResourceV1GetApplicationByNameAndBundleName_1 = require("./NotificationResourceV1GetApplicationByNameAndBundleName");
|
|
22
|
-
Object.defineProperty(exports, "notificationResourceV1GetApplicationByNameAndBundleName", { enumerable: true, get: function () { return NotificationResourceV1GetApplicationByNameAndBundleName_1.default; } });
|
|
23
|
-
var NotificationResourceV1GetApplicationsFacets_1 = require("./NotificationResourceV1GetApplicationsFacets");
|
|
24
|
-
Object.defineProperty(exports, "notificationResourceV1GetApplicationsFacets", { enumerable: true, get: function () { return NotificationResourceV1GetApplicationsFacets_1.default; } });
|
|
25
|
-
var NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpoint_1 = require("./NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpoint");
|
|
26
|
-
Object.defineProperty(exports, "notificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpoint", { enumerable: true, get: function () { return NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpoint_1.default; } });
|
|
27
|
-
var NotificationResourceV1GetBundleByName_1 = require("./NotificationResourceV1GetBundleByName");
|
|
28
|
-
Object.defineProperty(exports, "notificationResourceV1GetBundleByName", { enumerable: true, get: function () { return NotificationResourceV1GetBundleByName_1.default; } });
|
|
29
|
-
var NotificationResourceV1GetBundleFacets_1 = require("./NotificationResourceV1GetBundleFacets");
|
|
30
|
-
Object.defineProperty(exports, "notificationResourceV1GetBundleFacets", { enumerable: true, get: function () { return NotificationResourceV1GetBundleFacets_1.default; } });
|
|
31
|
-
var NotificationResourceV1GetEventTypes_1 = require("./NotificationResourceV1GetEventTypes");
|
|
32
|
-
Object.defineProperty(exports, "notificationResourceV1GetEventTypes", { enumerable: true, get: function () { return NotificationResourceV1GetEventTypes_1.default; } });
|
|
33
|
-
var NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroup_1 = require("./NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroup");
|
|
34
|
-
Object.defineProperty(exports, "notificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroup", { enumerable: true, get: function () { return NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroup_1.default; } });
|
|
35
|
-
var NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationName_1 = require("./NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationName");
|
|
36
|
-
Object.defineProperty(exports, "notificationResourceV1GetEventTypesByNameAndBundleAndApplicationName", { enumerable: true, get: function () { return NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationName_1.default; } });
|
|
37
|
-
var NotificationResourceV1GetLinkedBehaviorGroups_1 = require("./NotificationResourceV1GetLinkedBehaviorGroups");
|
|
38
|
-
Object.defineProperty(exports, "notificationResourceV1GetLinkedBehaviorGroups", { enumerable: true, get: function () { return NotificationResourceV1GetLinkedBehaviorGroups_1.default; } });
|
|
39
|
-
var NotificationResourceV1UpdateBehaviorGroup_1 = require("./NotificationResourceV1UpdateBehaviorGroup");
|
|
40
|
-
Object.defineProperty(exports, "notificationResourceV1UpdateBehaviorGroup", { enumerable: true, get: function () { return NotificationResourceV1UpdateBehaviorGroup_1.default; } });
|
|
41
|
-
var NotificationResourceV1UpdateBehaviorGroupActions_1 = require("./NotificationResourceV1UpdateBehaviorGroupActions");
|
|
42
|
-
Object.defineProperty(exports, "notificationResourceV1UpdateBehaviorGroupActions", { enumerable: true, get: function () { return NotificationResourceV1UpdateBehaviorGroupActions_1.default; } });
|
|
43
|
-
var NotificationResourceV1UpdateEventTypeBehaviors_1 = require("./NotificationResourceV1UpdateEventTypeBehaviors");
|
|
44
|
-
Object.defineProperty(exports, "notificationResourceV1UpdateEventTypeBehaviors", { enumerable: true, get: function () { return NotificationResourceV1UpdateEventTypeBehaviors_1.default; } });
|
|
45
|
-
var NotificationResourceV1UpdateEventTypeEndpoints_1 = require("./NotificationResourceV1UpdateEventTypeEndpoints");
|
|
46
|
-
Object.defineProperty(exports, "notificationResourceV1UpdateEventTypeEndpoints", { enumerable: true, get: function () { return NotificationResourceV1UpdateEventTypeEndpoints_1.default; } });
|
|
47
|
-
var OrgConfigResourceV1GetDailyDigestTimePreference_1 = require("./OrgConfigResourceV1GetDailyDigestTimePreference");
|
|
48
|
-
Object.defineProperty(exports, "orgConfigResourceV1GetDailyDigestTimePreference", { enumerable: true, get: function () { return OrgConfigResourceV1GetDailyDigestTimePreference_1.default; } });
|
|
49
|
-
var OrgConfigResourceV1SaveDailyDigestTimePreference_1 = require("./OrgConfigResourceV1SaveDailyDigestTimePreference");
|
|
50
|
-
Object.defineProperty(exports, "orgConfigResourceV1SaveDailyDigestTimePreference", { enumerable: true, get: function () { return OrgConfigResourceV1SaveDailyDigestTimePreference_1.default; } });
|
|
5
|
+
var NotificationResourceV2V2GetLinkedBehaviorGroups_1 = require("./NotificationResourceV2V2GetLinkedBehaviorGroups");
|
|
6
|
+
Object.defineProperty(exports, "notificationResourceV2V2GetLinkedBehaviorGroups", { enumerable: true, get: function () { return NotificationResourceV2V2GetLinkedBehaviorGroups_1.default; } });
|
|
51
7
|
tslib_1.__exportStar(require("./types"), exports);
|
|
52
8
|
//# sourceMappingURL=index.js.map
|
package/dist/v2/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../v2/index.ts"],"names":[],"mappings":";;;;AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../v2/index.ts"],"names":[],"mappings":";;;;AAAA,qHAA8L;AAArL,kLAAA,OAAO,OAAmD;AAGnE,kDAAuB"}
|