@redhat-cloud-services/notifications-client 0.0.40 → 1.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/README.md +8 -8
- package/dist/EventResourceV1GetEvents/index.d.ts +111 -0
- package/dist/EventResourceV1GetEvents/index.js +143 -0
- package/dist/NotificationResourceV1AppendBehaviorGroupToEventType/index.d.ts +26 -0
- package/dist/NotificationResourceV1AppendBehaviorGroupToEventType/index.js +93 -0
- package/dist/NotificationResourceV1CreateBehaviorGroup/index.d.ts +21 -0
- package/dist/NotificationResourceV1CreateBehaviorGroup/index.js +93 -0
- package/dist/NotificationResourceV1DeleteBehaviorGroup/index.d.ts +20 -0
- package/dist/NotificationResourceV1DeleteBehaviorGroup/index.js +92 -0
- package/dist/NotificationResourceV1DeleteBehaviorGroupFromEventType/index.d.ts +26 -0
- package/dist/NotificationResourceV1DeleteBehaviorGroupFromEventType/index.js +93 -0
- package/dist/NotificationResourceV1FindBehaviorGroupsByBundleId/index.d.ts +20 -0
- package/dist/NotificationResourceV1FindBehaviorGroupsByBundleId/index.js +92 -0
- package/dist/NotificationResourceV1GetApplicationByNameAndBundleName/index.d.ts +26 -0
- package/dist/NotificationResourceV1GetApplicationByNameAndBundleName/index.js +93 -0
- package/dist/NotificationResourceV1GetApplicationsFacets/index.d.ts +20 -0
- package/dist/NotificationResourceV1GetApplicationsFacets/index.js +94 -0
- package/dist/NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpoint/index.d.ts +20 -0
- package/dist/NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpoint/index.js +92 -0
- package/dist/NotificationResourceV1GetBundleByName/index.d.ts +20 -0
- package/dist/NotificationResourceV1GetBundleByName/index.js +92 -0
- package/dist/NotificationResourceV1GetBundleFacets/index.d.ts +20 -0
- package/dist/NotificationResourceV1GetBundleFacets/index.js +94 -0
- package/dist/NotificationResourceV1GetEventTypes/index.d.ts +62 -0
- package/dist/NotificationResourceV1GetEventTypes/index.js +115 -0
- package/dist/NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroup/index.d.ts +20 -0
- package/dist/NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroup/index.js +92 -0
- package/dist/NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationName/index.d.ts +32 -0
- package/dist/NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationName/index.js +94 -0
- package/dist/NotificationResourceV1GetLinkedBehaviorGroups/index.d.ts +50 -0
- package/dist/NotificationResourceV1GetLinkedBehaviorGroups/index.js +116 -0
- package/dist/NotificationResourceV1UpdateBehaviorGroup/index.d.ts +27 -0
- package/dist/NotificationResourceV1UpdateBehaviorGroup/index.js +94 -0
- package/dist/NotificationResourceV1UpdateBehaviorGroupActions/index.d.ts +26 -0
- package/dist/NotificationResourceV1UpdateBehaviorGroupActions/index.js +94 -0
- package/dist/NotificationResourceV1UpdateEventTypeBehaviors/index.d.ts +26 -0
- package/dist/NotificationResourceV1UpdateEventTypeBehaviors/index.js +94 -0
- package/dist/OrgConfigResourceV1GetDailyDigestTimePreference/index.d.ts +13 -0
- package/dist/OrgConfigResourceV1GetDailyDigestTimePreference/index.js +90 -0
- package/dist/OrgConfigResourceV1SaveDailyDigestTimePreference/index.d.ts +20 -0
- package/dist/OrgConfigResourceV1SaveDailyDigestTimePreference/index.js +93 -0
- package/dist/UserConfigResourceV1GetPreferences/index.d.ts +25 -0
- package/dist/UserConfigResourceV1GetPreferences/index.js +92 -0
- package/dist/UserConfigResourceV1GetSettingsSchema/index.d.ts +19 -0
- package/dist/UserConfigResourceV1GetSettingsSchema/index.js +93 -0
- package/dist/UserConfigResourceV1SaveSettings/index.d.ts +20 -0
- package/dist/UserConfigResourceV1SaveSettings/index.js +92 -0
- package/dist/api.d.ts +2536 -759
- package/dist/api.js +2833 -778
- package/dist/base.d.ts +54 -0
- package/dist/base.js +80 -0
- package/dist/common.d.ts +65 -0
- package/dist/common.js +252 -0
- package/dist/configuration.d.ts +24 -15
- package/dist/configuration.js +19 -12
- package/dist/index.d.ts +27 -13
- package/dist/index.js +89 -17
- package/dist/types/index.d.ts +1657 -0
- package/dist/types/index.js +90 -0
- package/dist/utils/base.d.ts +84 -0
- package/dist/utils/base.js +251 -0
- package/dist/utils/common.d.ts +54 -0
- package/dist/utils/common.js +241 -0
- package/dist/utils/configuration.d.ts +72 -0
- package/dist/utils/configuration.js +33 -0
- package/dist/utils/index.d.ts +3 -0
- package/dist/utils/index.js +19 -0
- package/doc/.nojekyll +1 -0
- package/doc/README.md +11 -420
- package/doc/classes/BaseAPI.md +125 -0
- package/doc/classes/Configuration.md +194 -0
- package/doc/classes/RequiredError.md +179 -0
- package/doc/enums/EmailSubscriptionType.md +21 -0
- package/doc/enums/EndpointStatus.md +76 -0
- package/doc/enums/EndpointType.md +65 -0
- package/doc/enums/Environment.md +54 -0
- package/doc/enums/EventLogEntryActionStatus.md +65 -0
- package/doc/enums/HttpType.md +43 -0
- package/doc/enums/NotificationStatus.md +65 -0
- package/doc/enums/Status.md +32 -0
- package/doc/interfaces/AddAccessRequest.md +44 -0
- package/doc/interfaces/AddApplicationRequest.md +74 -0
- package/doc/interfaces/AggregationEmailTemplate.md +164 -0
- package/doc/interfaces/ApiConfig.md +30 -0
- package/doc/interfaces/Application.md +104 -0
- package/doc/interfaces/Application1.md +44 -0
- package/doc/interfaces/ApplicationSettingsValue.md +33 -0
- package/doc/interfaces/ApplicationSettingsValue1.md +48 -0
- package/doc/interfaces/BasicAuthentication.md +44 -0
- package/doc/interfaces/BehaviorGroup.md +149 -0
- package/doc/interfaces/BehaviorGroupAction.md +59 -0
- package/doc/interfaces/BehaviorGroupActionId.md +44 -0
- package/doc/interfaces/Bundle.md +89 -0
- package/doc/interfaces/BundleSettingsValue.md +33 -0
- package/doc/interfaces/BundleSettingsValue1.md +33 -0
- package/doc/interfaces/CamelProperties.md +93 -0
- package/doc/interfaces/ConfigurationParameters.md +89 -0
- package/doc/interfaces/CreateBehaviorGroupRequest.md +104 -0
- package/doc/interfaces/CreateBehaviorGroupResponse.md +104 -0
- package/doc/interfaces/CurrentStatus.md +59 -0
- package/doc/interfaces/DuplicateNameMigrationReport.md +44 -0
- package/doc/interfaces/Endpoint.md +179 -0
- package/doc/interfaces/EndpointPage.md +63 -0
- package/doc/interfaces/EndpointTestRequest.md +29 -0
- package/doc/interfaces/EventLogEntry.md +119 -0
- package/doc/interfaces/EventLogEntryAction.md +125 -0
- package/doc/interfaces/EventType.md +119 -0
- package/doc/interfaces/EventTypeBehavior.md +59 -0
- package/doc/interfaces/EventTypeBehaviorId.md +44 -0
- package/doc/interfaces/EventTypeSettingsValue.md +48 -0
- package/doc/interfaces/Facet.md +74 -0
- package/doc/interfaces/InstantEmailTemplate.md +149 -0
- package/doc/interfaces/InternalApplicationUserPermission.md +59 -0
- package/doc/interfaces/InternalRoleAccess.md +59 -0
- package/doc/interfaces/InternalUserPermissions.md +59 -0
- package/doc/interfaces/MessageValidationResponse.md +33 -0
- package/doc/interfaces/Meta.md +29 -0
- package/doc/interfaces/NotificationHistory.md +155 -0
- package/doc/interfaces/PageBehaviorGroup.md +63 -0
- package/doc/interfaces/PageEventLogEntry.md +63 -0
- package/doc/interfaces/PageEventType.md +63 -0
- package/doc/interfaces/PageNotificationHistory.md +63 -0
- package/doc/interfaces/RenderEmailTemplateRequest.md +44 -0
- package/doc/interfaces/RequestArgs.md +58 -0
- package/doc/interfaces/RequestDefaultBehaviorGroupPropertyList.md +44 -0
- package/doc/interfaces/RequestSystemSubscriptionProperties.md +44 -0
- package/doc/interfaces/ServerInfo.md +29 -0
- package/doc/interfaces/SettingsValues.md +33 -0
- package/doc/interfaces/SettingsValuesByEventType.md +33 -0
- package/doc/interfaces/SystemSubscriptionProperties.md +59 -0
- package/doc/interfaces/Template.md +104 -0
- package/doc/interfaces/TriggerDailyDigestRequest.md +89 -0
- package/doc/interfaces/UpdateBehaviorGroupRequest.md +74 -0
- package/doc/interfaces/UserConfigPreferences.md +44 -0
- package/doc/interfaces/WebhookProperties.md +89 -0
- package/doc/modules.md +1080 -0
- package/git_push.sh +57 -0
- package/openapitools.json +7 -0
- package/package.json +26 -31
- package/postProcess.sh +3 -11
- package/tsconfig-cjs.json +19 -0
- package/tsconfig-esm.json +21 -0
- package/tsconfig.json +18 -0
- package/doc/classes/appregistrationapi.md +0 -123
- package/doc/classes/appsapi.md +0 -149
- package/doc/classes/baseapi.md +0 -86
- package/doc/classes/configuration.md +0 -140
- package/doc/classes/endpointsapi.md +0 -255
- package/doc/classes/filtersapi.md +0 -124
- package/doc/classes/requirederror.md +0 -109
- package/doc/enums/app.typeenum.md +0 -28
- package/doc/enums/endpoint.typeenum.md +0 -28
- package/doc/enums/endpointattributes.lastdeliverystatusenum.md +0 -38
- package/doc/enums/eventtype.typeenum.md +0 -28
- package/doc/enums/inlineresponse2004data.typeenum.md +0 -28
- package/doc/enums/level.typeenum.md +0 -28
- package/doc/interfaces/appattributes.md +0 -54
- package/doc/interfaces/apprelationships.md +0 -36
- package/doc/interfaces/appsregisterapplication.md +0 -50
- package/doc/interfaces/appsregistereventtypes.md +0 -64
- package/doc/interfaces/appsregistereventtypeslevels.md +0 -50
- package/doc/interfaces/configurationparameters.md +0 -84
- package/doc/interfaces/endpointsendpoint.md +0 -78
- package/doc/interfaces/endpointsendpointfilter.md +0 -64
- package/doc/interfaces/endpointsidendpoint.md +0 -78
- package/doc/interfaces/endpointsidendpointfilter.md +0 -78
- package/doc/interfaces/errors.md +0 -36
- package/doc/interfaces/errorserrors.md +0 -120
- package/doc/interfaces/errorssource.md +0 -50
- package/doc/interfaces/eventtypeattributes.md +0 -54
- package/doc/interfaces/eventtyperelationships.md +0 -36
- package/doc/interfaces/inlineobject.md +0 -50
- package/doc/interfaces/inlineobject1.md +0 -36
- package/doc/interfaces/inlineobject2.md +0 -36
- package/doc/interfaces/inlineresponse200.md +0 -50
- package/doc/interfaces/inlineresponse2001.md +0 -36
- package/doc/interfaces/inlineresponse2002.md +0 -50
- package/doc/interfaces/inlineresponse2003.md +0 -64
- package/doc/interfaces/inlineresponse2004.md +0 -36
- package/doc/interfaces/inlineresponse2004dataattributes.md +0 -36
- package/doc/interfaces/inlineresponse2004datarelationships.md +0 -78
- package/doc/interfaces/inlineresponse201.md +0 -36
- package/doc/interfaces/levelattributes.md +0 -38
- package/doc/interfaces/links.md +0 -86
- package/doc/interfaces/metadata.md +0 -70
- package/doc/interfaces/relationship.md +0 -50
- package/doc/interfaces/relationships.md +0 -36
- package/doc/interfaces/requestargs.md +0 -42
- package/doc/modules/app.md +0 -82
- package/doc/modules/endpoint.md +0 -68
- package/doc/modules/endpointattributes.md +0 -118
- package/doc/modules/eventtype.md +0 -82
- package/doc/modules/inlineresponse2004data.md +0 -78
- package/doc/modules/level.md +0 -68
package/dist/index.js
CHANGED
|
@@ -1,19 +1,91 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
//
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
for (var p in m) if (!
|
|
16
|
-
}
|
|
2
|
+
// This is a sample supporting file mustache template.
|
|
3
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
4
|
+
if (k2 === undefined) k2 = k;
|
|
5
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
6
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
7
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
8
|
+
}
|
|
9
|
+
Object.defineProperty(o, k2, desc);
|
|
10
|
+
}) : (function(o, m, k, k2) {
|
|
11
|
+
if (k2 === undefined) k2 = k;
|
|
12
|
+
o[k2] = m[k];
|
|
13
|
+
}));
|
|
14
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
15
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
16
|
+
};
|
|
17
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
exports.userConfigResourceV1SaveSettingsParamCreator = exports.userConfigResourceV1GetSettingsSchemaParamCreator = exports.userConfigResourceV1GetPreferencesParamCreator = exports.orgConfigResourceV1SaveDailyDigestTimePreferenceParamCreator = exports.orgConfigResourceV1GetDailyDigestTimePreferenceParamCreator = exports.notificationResourceV1UpdateEventTypeBehaviorsParamCreator = exports.notificationResourceV1UpdateBehaviorGroupActionsParamCreator = exports.notificationResourceV1UpdateBehaviorGroupParamCreator = exports.notificationResourceV1GetLinkedBehaviorGroupsParamCreator = exports.notificationResourceV1GetEventTypesByNameAndBundleAndApplicationNameParamCreator = exports.notificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroupParamCreator = exports.notificationResourceV1GetEventTypesParamCreator = exports.notificationResourceV1GetBundleFacetsParamCreator = exports.notificationResourceV1GetBundleByNameParamCreator = exports.notificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpointParamCreator = exports.notificationResourceV1GetApplicationsFacetsParamCreator = exports.notificationResourceV1GetApplicationByNameAndBundleNameParamCreator = exports.notificationResourceV1FindBehaviorGroupsByBundleIdParamCreator = exports.notificationResourceV1DeleteBehaviorGroupFromEventTypeParamCreator = exports.notificationResourceV1DeleteBehaviorGroupParamCreator = exports.notificationResourceV1CreateBehaviorGroupParamCreator = exports.notificationResourceV1AppendBehaviorGroupToEventTypeParamCreator = exports.eventResourceV1GetEventsParamCreator = void 0;
|
|
19
|
+
__exportStar(require("./utils/base"), exports);
|
|
20
|
+
__exportStar(require("./utils/common"), exports);
|
|
21
|
+
__exportStar(require("./utils/configuration"), exports);
|
|
22
|
+
__exportStar(require("./types"), exports);
|
|
23
|
+
var EventResourceV1GetEvents_1 = require("./EventResourceV1GetEvents");
|
|
24
|
+
Object.defineProperty(exports, "eventResourceV1GetEventsParamCreator", { enumerable: true, get: function () { return EventResourceV1GetEvents_1.default; } });
|
|
25
|
+
// end of operations block
|
|
26
|
+
var NotificationResourceV1AppendBehaviorGroupToEventType_1 = require("./NotificationResourceV1AppendBehaviorGroupToEventType");
|
|
27
|
+
Object.defineProperty(exports, "notificationResourceV1AppendBehaviorGroupToEventTypeParamCreator", { enumerable: true, get: function () { return NotificationResourceV1AppendBehaviorGroupToEventType_1.default; } });
|
|
28
|
+
// end of operations block
|
|
29
|
+
var NotificationResourceV1CreateBehaviorGroup_1 = require("./NotificationResourceV1CreateBehaviorGroup");
|
|
30
|
+
Object.defineProperty(exports, "notificationResourceV1CreateBehaviorGroupParamCreator", { enumerable: true, get: function () { return NotificationResourceV1CreateBehaviorGroup_1.default; } });
|
|
31
|
+
// end of operations block
|
|
32
|
+
var NotificationResourceV1DeleteBehaviorGroup_1 = require("./NotificationResourceV1DeleteBehaviorGroup");
|
|
33
|
+
Object.defineProperty(exports, "notificationResourceV1DeleteBehaviorGroupParamCreator", { enumerable: true, get: function () { return NotificationResourceV1DeleteBehaviorGroup_1.default; } });
|
|
34
|
+
// end of operations block
|
|
35
|
+
var NotificationResourceV1DeleteBehaviorGroupFromEventType_1 = require("./NotificationResourceV1DeleteBehaviorGroupFromEventType");
|
|
36
|
+
Object.defineProperty(exports, "notificationResourceV1DeleteBehaviorGroupFromEventTypeParamCreator", { enumerable: true, get: function () { return NotificationResourceV1DeleteBehaviorGroupFromEventType_1.default; } });
|
|
37
|
+
// end of operations block
|
|
38
|
+
var NotificationResourceV1FindBehaviorGroupsByBundleId_1 = require("./NotificationResourceV1FindBehaviorGroupsByBundleId");
|
|
39
|
+
Object.defineProperty(exports, "notificationResourceV1FindBehaviorGroupsByBundleIdParamCreator", { enumerable: true, get: function () { return NotificationResourceV1FindBehaviorGroupsByBundleId_1.default; } });
|
|
40
|
+
// end of operations block
|
|
41
|
+
var NotificationResourceV1GetApplicationByNameAndBundleName_1 = require("./NotificationResourceV1GetApplicationByNameAndBundleName");
|
|
42
|
+
Object.defineProperty(exports, "notificationResourceV1GetApplicationByNameAndBundleNameParamCreator", { enumerable: true, get: function () { return NotificationResourceV1GetApplicationByNameAndBundleName_1.default; } });
|
|
43
|
+
// end of operations block
|
|
44
|
+
var NotificationResourceV1GetApplicationsFacets_1 = require("./NotificationResourceV1GetApplicationsFacets");
|
|
45
|
+
Object.defineProperty(exports, "notificationResourceV1GetApplicationsFacetsParamCreator", { enumerable: true, get: function () { return NotificationResourceV1GetApplicationsFacets_1.default; } });
|
|
46
|
+
// end of operations block
|
|
47
|
+
var NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpoint_1 = require("./NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpoint");
|
|
48
|
+
Object.defineProperty(exports, "notificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpointParamCreator", { enumerable: true, get: function () { return NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpoint_1.default; } });
|
|
49
|
+
// end of operations block
|
|
50
|
+
var NotificationResourceV1GetBundleByName_1 = require("./NotificationResourceV1GetBundleByName");
|
|
51
|
+
Object.defineProperty(exports, "notificationResourceV1GetBundleByNameParamCreator", { enumerable: true, get: function () { return NotificationResourceV1GetBundleByName_1.default; } });
|
|
52
|
+
// end of operations block
|
|
53
|
+
var NotificationResourceV1GetBundleFacets_1 = require("./NotificationResourceV1GetBundleFacets");
|
|
54
|
+
Object.defineProperty(exports, "notificationResourceV1GetBundleFacetsParamCreator", { enumerable: true, get: function () { return NotificationResourceV1GetBundleFacets_1.default; } });
|
|
55
|
+
// end of operations block
|
|
56
|
+
var NotificationResourceV1GetEventTypes_1 = require("./NotificationResourceV1GetEventTypes");
|
|
57
|
+
Object.defineProperty(exports, "notificationResourceV1GetEventTypesParamCreator", { enumerable: true, get: function () { return NotificationResourceV1GetEventTypes_1.default; } });
|
|
58
|
+
// end of operations block
|
|
59
|
+
var NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroup_1 = require("./NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroup");
|
|
60
|
+
Object.defineProperty(exports, "notificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroupParamCreator", { enumerable: true, get: function () { return NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroup_1.default; } });
|
|
61
|
+
// end of operations block
|
|
62
|
+
var NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationName_1 = require("./NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationName");
|
|
63
|
+
Object.defineProperty(exports, "notificationResourceV1GetEventTypesByNameAndBundleAndApplicationNameParamCreator", { enumerable: true, get: function () { return NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationName_1.default; } });
|
|
64
|
+
// end of operations block
|
|
65
|
+
var NotificationResourceV1GetLinkedBehaviorGroups_1 = require("./NotificationResourceV1GetLinkedBehaviorGroups");
|
|
66
|
+
Object.defineProperty(exports, "notificationResourceV1GetLinkedBehaviorGroupsParamCreator", { enumerable: true, get: function () { return NotificationResourceV1GetLinkedBehaviorGroups_1.default; } });
|
|
67
|
+
// end of operations block
|
|
68
|
+
var NotificationResourceV1UpdateBehaviorGroup_1 = require("./NotificationResourceV1UpdateBehaviorGroup");
|
|
69
|
+
Object.defineProperty(exports, "notificationResourceV1UpdateBehaviorGroupParamCreator", { enumerable: true, get: function () { return NotificationResourceV1UpdateBehaviorGroup_1.default; } });
|
|
70
|
+
// end of operations block
|
|
71
|
+
var NotificationResourceV1UpdateBehaviorGroupActions_1 = require("./NotificationResourceV1UpdateBehaviorGroupActions");
|
|
72
|
+
Object.defineProperty(exports, "notificationResourceV1UpdateBehaviorGroupActionsParamCreator", { enumerable: true, get: function () { return NotificationResourceV1UpdateBehaviorGroupActions_1.default; } });
|
|
73
|
+
// end of operations block
|
|
74
|
+
var NotificationResourceV1UpdateEventTypeBehaviors_1 = require("./NotificationResourceV1UpdateEventTypeBehaviors");
|
|
75
|
+
Object.defineProperty(exports, "notificationResourceV1UpdateEventTypeBehaviorsParamCreator", { enumerable: true, get: function () { return NotificationResourceV1UpdateEventTypeBehaviors_1.default; } });
|
|
76
|
+
// end of operations block
|
|
77
|
+
var OrgConfigResourceV1GetDailyDigestTimePreference_1 = require("./OrgConfigResourceV1GetDailyDigestTimePreference");
|
|
78
|
+
Object.defineProperty(exports, "orgConfigResourceV1GetDailyDigestTimePreferenceParamCreator", { enumerable: true, get: function () { return OrgConfigResourceV1GetDailyDigestTimePreference_1.default; } });
|
|
79
|
+
// end of operations block
|
|
80
|
+
var OrgConfigResourceV1SaveDailyDigestTimePreference_1 = require("./OrgConfigResourceV1SaveDailyDigestTimePreference");
|
|
81
|
+
Object.defineProperty(exports, "orgConfigResourceV1SaveDailyDigestTimePreferenceParamCreator", { enumerable: true, get: function () { return OrgConfigResourceV1SaveDailyDigestTimePreference_1.default; } });
|
|
82
|
+
// end of operations block
|
|
83
|
+
var UserConfigResourceV1GetPreferences_1 = require("./UserConfigResourceV1GetPreferences");
|
|
84
|
+
Object.defineProperty(exports, "userConfigResourceV1GetPreferencesParamCreator", { enumerable: true, get: function () { return UserConfigResourceV1GetPreferences_1.default; } });
|
|
85
|
+
// end of operations block
|
|
86
|
+
var UserConfigResourceV1GetSettingsSchema_1 = require("./UserConfigResourceV1GetSettingsSchema");
|
|
87
|
+
Object.defineProperty(exports, "userConfigResourceV1GetSettingsSchemaParamCreator", { enumerable: true, get: function () { return UserConfigResourceV1GetSettingsSchema_1.default; } });
|
|
88
|
+
// end of operations block
|
|
89
|
+
var UserConfigResourceV1SaveSettings_1 = require("./UserConfigResourceV1SaveSettings");
|
|
90
|
+
Object.defineProperty(exports, "userConfigResourceV1SaveSettingsParamCreator", { enumerable: true, get: function () { return UserConfigResourceV1SaveSettings_1.default; } });
|
|
91
|
+
// end of operations block
|