@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/api.d.ts
CHANGED
|
@@ -1,1376 +1,3153 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
2
|
+
* Notifications
|
|
3
|
+
* The API for Notifications
|
|
4
4
|
*
|
|
5
|
-
* OpenAPI
|
|
5
|
+
* The version of the OpenAPI document: v1.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
12
|
+
import type { Configuration } from './configuration';
|
|
13
|
+
import type { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
14
|
+
import type { RequestArgs } from './base';
|
|
15
|
+
import { BaseAPI } from './base';
|
|
15
16
|
/**
|
|
16
17
|
*
|
|
17
18
|
* @export
|
|
19
|
+
* @interface AddAccessRequest
|
|
18
20
|
*/
|
|
19
|
-
export
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
options: any;
|
|
33
|
-
}
|
|
34
|
-
/**
|
|
35
|
-
*
|
|
36
|
-
* @export
|
|
37
|
-
* @class BaseAPI
|
|
38
|
-
*/
|
|
39
|
-
export declare class BaseAPI {
|
|
40
|
-
protected basePath: string;
|
|
41
|
-
protected axios: AxiosInstance;
|
|
42
|
-
protected configuration: Configuration | undefined;
|
|
43
|
-
constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance);
|
|
21
|
+
export interface AddAccessRequest {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof AddAccessRequest
|
|
26
|
+
*/
|
|
27
|
+
'role'?: string;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof AddAccessRequest
|
|
32
|
+
*/
|
|
33
|
+
'application_id'?: string;
|
|
44
34
|
}
|
|
45
35
|
/**
|
|
46
36
|
*
|
|
47
37
|
* @export
|
|
48
|
-
* @
|
|
49
|
-
* @extends {Error}
|
|
50
|
-
*/
|
|
51
|
-
export declare class RequiredError extends Error {
|
|
52
|
-
field: string;
|
|
53
|
-
name: "RequiredError";
|
|
54
|
-
constructor(field: string, msg?: string);
|
|
55
|
-
}
|
|
56
|
-
/**
|
|
57
|
-
* Application object properties
|
|
58
|
-
* @export
|
|
59
|
-
* @interface App
|
|
38
|
+
* @interface AddApplicationRequest
|
|
60
39
|
*/
|
|
61
|
-
export interface
|
|
40
|
+
export interface AddApplicationRequest {
|
|
62
41
|
/**
|
|
63
|
-
*
|
|
42
|
+
*
|
|
64
43
|
* @type {string}
|
|
65
|
-
* @memberof
|
|
44
|
+
* @memberof AddApplicationRequest
|
|
66
45
|
*/
|
|
67
|
-
|
|
46
|
+
'name': string;
|
|
68
47
|
/**
|
|
69
|
-
*
|
|
48
|
+
*
|
|
70
49
|
* @type {string}
|
|
71
|
-
* @memberof
|
|
50
|
+
* @memberof AddApplicationRequest
|
|
72
51
|
*/
|
|
73
|
-
|
|
52
|
+
'display_name': string;
|
|
74
53
|
/**
|
|
75
54
|
*
|
|
76
|
-
* @type {
|
|
77
|
-
* @memberof
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof AddApplicationRequest
|
|
78
57
|
*/
|
|
79
|
-
|
|
58
|
+
'bundle_id': string;
|
|
80
59
|
/**
|
|
81
60
|
*
|
|
82
|
-
* @type {
|
|
83
|
-
* @memberof
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof AddApplicationRequest
|
|
84
63
|
*/
|
|
85
|
-
|
|
64
|
+
'owner_role'?: string;
|
|
86
65
|
}
|
|
87
66
|
/**
|
|
67
|
+
*
|
|
88
68
|
* @export
|
|
89
|
-
* @
|
|
69
|
+
* @interface AggregationEmailTemplate
|
|
90
70
|
*/
|
|
91
|
-
export
|
|
71
|
+
export interface AggregationEmailTemplate {
|
|
92
72
|
/**
|
|
93
|
-
*
|
|
94
|
-
* @
|
|
73
|
+
*
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof AggregationEmailTemplate
|
|
95
76
|
*/
|
|
96
|
-
|
|
97
|
-
App = "app"
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
/**
|
|
101
|
-
*
|
|
102
|
-
* @export
|
|
103
|
-
* @interface AppAttributes
|
|
104
|
-
*/
|
|
105
|
-
export interface AppAttributes {
|
|
77
|
+
'created'?: string;
|
|
106
78
|
/**
|
|
107
|
-
*
|
|
79
|
+
*
|
|
108
80
|
* @type {string}
|
|
109
|
-
* @memberof
|
|
81
|
+
* @memberof AggregationEmailTemplate
|
|
110
82
|
*/
|
|
111
|
-
|
|
83
|
+
'updated'?: string;
|
|
112
84
|
/**
|
|
113
|
-
*
|
|
85
|
+
*
|
|
114
86
|
* @type {string}
|
|
115
|
-
* @memberof
|
|
87
|
+
* @memberof AggregationEmailTemplate
|
|
116
88
|
*/
|
|
117
|
-
|
|
118
|
-
}
|
|
119
|
-
/**
|
|
120
|
-
*
|
|
121
|
-
* @export
|
|
122
|
-
* @interface AppRelationships
|
|
123
|
-
*/
|
|
124
|
-
export interface AppRelationships {
|
|
89
|
+
'id'?: string;
|
|
125
90
|
/**
|
|
126
91
|
*
|
|
127
|
-
* @type {
|
|
128
|
-
* @memberof
|
|
92
|
+
* @type {Application}
|
|
93
|
+
* @memberof AggregationEmailTemplate
|
|
129
94
|
*/
|
|
130
|
-
|
|
131
|
-
}
|
|
132
|
-
/**
|
|
133
|
-
*
|
|
134
|
-
* @export
|
|
135
|
-
* @interface AppsRegisterApplication
|
|
136
|
-
*/
|
|
137
|
-
export interface AppsRegisterApplication {
|
|
95
|
+
'application'?: Application;
|
|
138
96
|
/**
|
|
139
97
|
*
|
|
140
98
|
* @type {string}
|
|
141
|
-
* @memberof
|
|
99
|
+
* @memberof AggregationEmailTemplate
|
|
142
100
|
*/
|
|
143
|
-
|
|
101
|
+
'application_id'?: string;
|
|
144
102
|
/**
|
|
145
103
|
*
|
|
146
|
-
* @type {
|
|
147
|
-
* @memberof
|
|
104
|
+
* @type {EmailSubscriptionType}
|
|
105
|
+
* @memberof AggregationEmailTemplate
|
|
148
106
|
*/
|
|
149
|
-
|
|
150
|
-
}
|
|
151
|
-
/**
|
|
152
|
-
*
|
|
153
|
-
* @export
|
|
154
|
-
* @interface AppsRegisterEventTypes
|
|
155
|
-
*/
|
|
156
|
-
export interface AppsRegisterEventTypes {
|
|
107
|
+
'subscription_type': EmailSubscriptionType;
|
|
157
108
|
/**
|
|
158
109
|
*
|
|
159
|
-
* @type {
|
|
160
|
-
* @memberof
|
|
110
|
+
* @type {Template}
|
|
111
|
+
* @memberof AggregationEmailTemplate
|
|
161
112
|
*/
|
|
162
|
-
|
|
113
|
+
'subject_template'?: Template;
|
|
163
114
|
/**
|
|
164
115
|
*
|
|
165
116
|
* @type {string}
|
|
166
|
-
* @memberof
|
|
117
|
+
* @memberof AggregationEmailTemplate
|
|
167
118
|
*/
|
|
168
|
-
|
|
119
|
+
'subject_template_id': string;
|
|
169
120
|
/**
|
|
170
121
|
*
|
|
171
|
-
* @type {
|
|
172
|
-
* @memberof
|
|
122
|
+
* @type {Template}
|
|
123
|
+
* @memberof AggregationEmailTemplate
|
|
124
|
+
*/
|
|
125
|
+
'body_template'?: Template;
|
|
126
|
+
/**
|
|
127
|
+
*
|
|
128
|
+
* @type {string}
|
|
129
|
+
* @memberof AggregationEmailTemplate
|
|
173
130
|
*/
|
|
174
|
-
|
|
131
|
+
'body_template_id': string;
|
|
175
132
|
}
|
|
176
133
|
/**
|
|
177
134
|
*
|
|
178
135
|
* @export
|
|
179
|
-
* @interface
|
|
136
|
+
* @interface Application
|
|
180
137
|
*/
|
|
181
|
-
export interface
|
|
138
|
+
export interface Application {
|
|
182
139
|
/**
|
|
183
140
|
*
|
|
184
|
-
* @type {
|
|
185
|
-
* @memberof
|
|
141
|
+
* @type {string}
|
|
142
|
+
* @memberof Application
|
|
186
143
|
*/
|
|
187
|
-
|
|
144
|
+
'created'?: string;
|
|
188
145
|
/**
|
|
189
146
|
*
|
|
190
147
|
* @type {string}
|
|
191
|
-
* @memberof
|
|
148
|
+
* @memberof Application
|
|
192
149
|
*/
|
|
193
|
-
|
|
194
|
-
}
|
|
195
|
-
/**
|
|
196
|
-
*
|
|
197
|
-
* @export
|
|
198
|
-
* @interface Endpoint
|
|
199
|
-
*/
|
|
200
|
-
export interface Endpoint {
|
|
150
|
+
'updated'?: string;
|
|
201
151
|
/**
|
|
202
|
-
*
|
|
152
|
+
*
|
|
203
153
|
* @type {string}
|
|
204
|
-
* @memberof
|
|
154
|
+
* @memberof Application
|
|
205
155
|
*/
|
|
206
|
-
id?: string;
|
|
156
|
+
'id'?: string;
|
|
207
157
|
/**
|
|
208
|
-
*
|
|
158
|
+
*
|
|
209
159
|
* @type {string}
|
|
210
|
-
* @memberof
|
|
160
|
+
* @memberof Application
|
|
211
161
|
*/
|
|
212
|
-
|
|
162
|
+
'name': string;
|
|
213
163
|
/**
|
|
214
164
|
*
|
|
215
|
-
* @type {
|
|
216
|
-
* @memberof
|
|
165
|
+
* @type {string}
|
|
166
|
+
* @memberof Application
|
|
217
167
|
*/
|
|
218
|
-
|
|
219
|
-
}
|
|
220
|
-
/**
|
|
221
|
-
* @export
|
|
222
|
-
* @namespace Endpoint
|
|
223
|
-
*/
|
|
224
|
-
export declare namespace Endpoint {
|
|
168
|
+
'display_name': string;
|
|
225
169
|
/**
|
|
226
|
-
*
|
|
227
|
-
* @
|
|
170
|
+
*
|
|
171
|
+
* @type {string}
|
|
172
|
+
* @memberof Application
|
|
228
173
|
*/
|
|
229
|
-
|
|
230
|
-
Endpoint = "endpoint"
|
|
231
|
-
}
|
|
174
|
+
'bundle_id': string;
|
|
232
175
|
}
|
|
233
176
|
/**
|
|
234
177
|
*
|
|
235
178
|
* @export
|
|
236
|
-
* @interface
|
|
179
|
+
* @interface Application1
|
|
237
180
|
*/
|
|
238
|
-
export interface
|
|
239
|
-
/**
|
|
240
|
-
* Human readable description of the endpoint
|
|
241
|
-
* @type {string}
|
|
242
|
-
* @memberof EndpointAttributes
|
|
243
|
-
*/
|
|
244
|
-
name?: string;
|
|
245
|
-
/**
|
|
246
|
-
* A flag determining whether this endpoint should be used
|
|
247
|
-
* @type {boolean}
|
|
248
|
-
* @memberof EndpointAttributes
|
|
249
|
-
*/
|
|
250
|
-
active?: boolean;
|
|
181
|
+
export interface Application1 {
|
|
251
182
|
/**
|
|
252
|
-
*
|
|
183
|
+
*
|
|
253
184
|
* @type {string}
|
|
254
|
-
* @memberof
|
|
185
|
+
* @memberof Application1
|
|
255
186
|
*/
|
|
256
|
-
|
|
187
|
+
'id': string;
|
|
257
188
|
/**
|
|
258
|
-
*
|
|
189
|
+
*
|
|
259
190
|
* @type {string}
|
|
260
|
-
* @memberof
|
|
261
|
-
*/
|
|
262
|
-
lastDeliveryStatus?: EndpointAttributes.LastDeliveryStatusEnum;
|
|
263
|
-
/**
|
|
264
|
-
* Timestamp of last delivery attempt
|
|
265
|
-
* @type {Date}
|
|
266
|
-
* @memberof EndpointAttributes
|
|
267
|
-
*/
|
|
268
|
-
lastDeliveryTime?: Date | null;
|
|
269
|
-
/**
|
|
270
|
-
* Timestamp of first failure. If the status is \"failure\", this marks when the endpoint \"went down\"
|
|
271
|
-
* @type {Date}
|
|
272
|
-
* @memberof EndpointAttributes
|
|
191
|
+
* @memberof Application1
|
|
273
192
|
*/
|
|
274
|
-
|
|
193
|
+
'display_name': string;
|
|
275
194
|
}
|
|
276
195
|
/**
|
|
196
|
+
*
|
|
277
197
|
* @export
|
|
278
|
-
* @
|
|
198
|
+
* @interface ApplicationSettingsValue
|
|
279
199
|
*/
|
|
280
|
-
export
|
|
200
|
+
export interface ApplicationSettingsValue {
|
|
281
201
|
/**
|
|
282
|
-
*
|
|
283
|
-
* @
|
|
202
|
+
*
|
|
203
|
+
* @type {{ [key: string]: EventTypeSettingsValue; }}
|
|
204
|
+
* @memberof ApplicationSettingsValue
|
|
284
205
|
*/
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
}
|
|
206
|
+
'eventTypes'?: {
|
|
207
|
+
[key: string]: EventTypeSettingsValue;
|
|
208
|
+
};
|
|
289
209
|
}
|
|
290
210
|
/**
|
|
291
211
|
*
|
|
292
212
|
* @export
|
|
293
|
-
* @interface
|
|
213
|
+
* @interface ApplicationSettingsValue1
|
|
294
214
|
*/
|
|
295
|
-
export interface
|
|
296
|
-
/**
|
|
297
|
-
*
|
|
298
|
-
* @type {string}
|
|
299
|
-
* @memberof EndpointsEndpoint
|
|
300
|
-
*/
|
|
301
|
-
url?: string;
|
|
302
|
-
/**
|
|
303
|
-
*
|
|
304
|
-
* @type {string}
|
|
305
|
-
* @memberof EndpointsEndpoint
|
|
306
|
-
*/
|
|
307
|
-
name?: string;
|
|
215
|
+
export interface ApplicationSettingsValue1 {
|
|
308
216
|
/**
|
|
309
217
|
*
|
|
310
|
-
* @type {string}
|
|
311
|
-
* @memberof
|
|
218
|
+
* @type {{ [key: string]: boolean; }}
|
|
219
|
+
* @memberof ApplicationSettingsValue1
|
|
312
220
|
*/
|
|
313
|
-
|
|
221
|
+
'notifications'?: {
|
|
222
|
+
[key: string]: boolean;
|
|
223
|
+
};
|
|
314
224
|
/**
|
|
315
225
|
*
|
|
316
|
-
* @type {
|
|
317
|
-
* @memberof
|
|
226
|
+
* @type {boolean}
|
|
227
|
+
* @memberof ApplicationSettingsValue1
|
|
318
228
|
*/
|
|
319
|
-
|
|
229
|
+
'hasForcedEmail'?: boolean;
|
|
320
230
|
}
|
|
321
231
|
/**
|
|
322
232
|
*
|
|
323
233
|
* @export
|
|
324
|
-
* @interface
|
|
234
|
+
* @interface BasicAuthentication
|
|
325
235
|
*/
|
|
326
|
-
export interface
|
|
327
|
-
/**
|
|
328
|
-
*
|
|
329
|
-
* @type {Array<string>}
|
|
330
|
-
* @memberof EndpointsEndpointFilter
|
|
331
|
-
*/
|
|
332
|
-
appIds?: Array<string>;
|
|
236
|
+
export interface BasicAuthentication {
|
|
333
237
|
/**
|
|
334
238
|
*
|
|
335
|
-
* @type {
|
|
336
|
-
* @memberof
|
|
239
|
+
* @type {string}
|
|
240
|
+
* @memberof BasicAuthentication
|
|
337
241
|
*/
|
|
338
|
-
|
|
242
|
+
'username'?: string;
|
|
339
243
|
/**
|
|
340
244
|
*
|
|
341
|
-
* @type {
|
|
342
|
-
* @memberof
|
|
245
|
+
* @type {string}
|
|
246
|
+
* @memberof BasicAuthentication
|
|
343
247
|
*/
|
|
344
|
-
|
|
248
|
+
'password'?: string;
|
|
345
249
|
}
|
|
346
250
|
/**
|
|
347
251
|
*
|
|
348
252
|
* @export
|
|
349
|
-
* @interface
|
|
253
|
+
* @interface BehaviorGroup
|
|
350
254
|
*/
|
|
351
|
-
export interface
|
|
255
|
+
export interface BehaviorGroup {
|
|
352
256
|
/**
|
|
353
257
|
*
|
|
354
258
|
* @type {string}
|
|
355
|
-
* @memberof
|
|
259
|
+
* @memberof BehaviorGroup
|
|
356
260
|
*/
|
|
357
|
-
|
|
261
|
+
'created'?: string;
|
|
358
262
|
/**
|
|
359
263
|
*
|
|
360
264
|
* @type {string}
|
|
361
|
-
* @memberof
|
|
265
|
+
* @memberof BehaviorGroup
|
|
362
266
|
*/
|
|
363
|
-
|
|
267
|
+
'updated'?: string;
|
|
364
268
|
/**
|
|
365
269
|
*
|
|
366
270
|
* @type {string}
|
|
367
|
-
* @memberof
|
|
271
|
+
* @memberof BehaviorGroup
|
|
368
272
|
*/
|
|
369
|
-
|
|
273
|
+
'id'?: string;
|
|
370
274
|
/**
|
|
371
275
|
*
|
|
372
|
-
* @type {
|
|
373
|
-
* @memberof
|
|
276
|
+
* @type {string}
|
|
277
|
+
* @memberof BehaviorGroup
|
|
374
278
|
*/
|
|
375
|
-
|
|
376
|
-
}
|
|
377
|
-
/**
|
|
378
|
-
*
|
|
379
|
-
* @export
|
|
380
|
-
* @interface EndpointsIdEndpointFilter
|
|
381
|
-
*/
|
|
382
|
-
export interface EndpointsIdEndpointFilter {
|
|
279
|
+
'display_name': string;
|
|
383
280
|
/**
|
|
384
281
|
*
|
|
385
|
-
* @type {
|
|
386
|
-
* @memberof
|
|
282
|
+
* @type {string}
|
|
283
|
+
* @memberof BehaviorGroup
|
|
387
284
|
*/
|
|
388
|
-
|
|
285
|
+
'bundle_id': string;
|
|
389
286
|
/**
|
|
390
287
|
*
|
|
391
|
-
* @type {
|
|
392
|
-
* @memberof
|
|
288
|
+
* @type {Bundle}
|
|
289
|
+
* @memberof BehaviorGroup
|
|
393
290
|
*/
|
|
394
|
-
|
|
291
|
+
'bundle'?: Bundle;
|
|
395
292
|
/**
|
|
396
293
|
*
|
|
397
|
-
* @type {Array<
|
|
398
|
-
* @memberof
|
|
294
|
+
* @type {Array<BehaviorGroupAction>}
|
|
295
|
+
* @memberof BehaviorGroup
|
|
296
|
+
*/
|
|
297
|
+
'actions'?: Array<BehaviorGroupAction>;
|
|
298
|
+
/**
|
|
299
|
+
*
|
|
300
|
+
* @type {Set<EventTypeBehavior>}
|
|
301
|
+
* @memberof BehaviorGroup
|
|
399
302
|
*/
|
|
400
|
-
|
|
303
|
+
'behaviors'?: Set<EventTypeBehavior>;
|
|
401
304
|
/**
|
|
402
305
|
*
|
|
403
306
|
* @type {boolean}
|
|
404
|
-
* @memberof
|
|
307
|
+
* @memberof BehaviorGroup
|
|
405
308
|
*/
|
|
406
|
-
|
|
309
|
+
'default_behavior'?: boolean;
|
|
407
310
|
}
|
|
408
311
|
/**
|
|
409
312
|
*
|
|
410
313
|
* @export
|
|
411
|
-
* @interface
|
|
314
|
+
* @interface BehaviorGroupAction
|
|
412
315
|
*/
|
|
413
|
-
export interface
|
|
316
|
+
export interface BehaviorGroupAction {
|
|
317
|
+
/**
|
|
318
|
+
*
|
|
319
|
+
* @type {string}
|
|
320
|
+
* @memberof BehaviorGroupAction
|
|
321
|
+
*/
|
|
322
|
+
'created'?: string;
|
|
323
|
+
/**
|
|
324
|
+
*
|
|
325
|
+
* @type {BehaviorGroupActionId}
|
|
326
|
+
* @memberof BehaviorGroupAction
|
|
327
|
+
*/
|
|
328
|
+
'id'?: BehaviorGroupActionId;
|
|
414
329
|
/**
|
|
415
330
|
*
|
|
416
|
-
* @type {
|
|
417
|
-
* @memberof
|
|
331
|
+
* @type {Endpoint}
|
|
332
|
+
* @memberof BehaviorGroupAction
|
|
418
333
|
*/
|
|
419
|
-
|
|
334
|
+
'endpoint'?: Endpoint;
|
|
420
335
|
}
|
|
421
336
|
/**
|
|
422
337
|
*
|
|
423
338
|
* @export
|
|
424
|
-
* @interface
|
|
339
|
+
* @interface BehaviorGroupActionId
|
|
425
340
|
*/
|
|
426
|
-
export interface
|
|
341
|
+
export interface BehaviorGroupActionId {
|
|
427
342
|
/**
|
|
428
343
|
*
|
|
429
344
|
* @type {string}
|
|
430
|
-
* @memberof
|
|
345
|
+
* @memberof BehaviorGroupActionId
|
|
431
346
|
*/
|
|
432
|
-
|
|
347
|
+
'behaviorGroupId': string;
|
|
433
348
|
/**
|
|
434
349
|
*
|
|
435
350
|
* @type {string}
|
|
436
|
-
* @memberof
|
|
351
|
+
* @memberof BehaviorGroupActionId
|
|
437
352
|
*/
|
|
438
|
-
|
|
353
|
+
'endpointId': string;
|
|
354
|
+
}
|
|
355
|
+
/**
|
|
356
|
+
*
|
|
357
|
+
* @export
|
|
358
|
+
* @interface Bundle
|
|
359
|
+
*/
|
|
360
|
+
export interface Bundle {
|
|
439
361
|
/**
|
|
440
362
|
*
|
|
441
363
|
* @type {string}
|
|
442
|
-
* @memberof
|
|
364
|
+
* @memberof Bundle
|
|
443
365
|
*/
|
|
444
|
-
|
|
366
|
+
'created'?: string;
|
|
445
367
|
/**
|
|
446
368
|
*
|
|
447
369
|
* @type {string}
|
|
448
|
-
* @memberof
|
|
370
|
+
* @memberof Bundle
|
|
449
371
|
*/
|
|
450
|
-
|
|
372
|
+
'updated'?: string;
|
|
451
373
|
/**
|
|
452
374
|
*
|
|
453
375
|
* @type {string}
|
|
454
|
-
* @memberof
|
|
376
|
+
* @memberof Bundle
|
|
455
377
|
*/
|
|
456
|
-
|
|
378
|
+
'id'?: string;
|
|
457
379
|
/**
|
|
458
380
|
*
|
|
459
|
-
* @type {
|
|
460
|
-
* @memberof
|
|
381
|
+
* @type {string}
|
|
382
|
+
* @memberof Bundle
|
|
461
383
|
*/
|
|
462
|
-
|
|
384
|
+
'name': string;
|
|
463
385
|
/**
|
|
464
386
|
*
|
|
465
|
-
* @type {
|
|
466
|
-
* @memberof
|
|
387
|
+
* @type {string}
|
|
388
|
+
* @memberof Bundle
|
|
467
389
|
*/
|
|
468
|
-
|
|
390
|
+
'display_name': string;
|
|
469
391
|
}
|
|
470
392
|
/**
|
|
471
393
|
*
|
|
472
394
|
* @export
|
|
473
|
-
* @interface
|
|
395
|
+
* @interface BundleSettingsValue
|
|
474
396
|
*/
|
|
475
|
-
export interface
|
|
397
|
+
export interface BundleSettingsValue {
|
|
476
398
|
/**
|
|
477
399
|
*
|
|
478
|
-
* @type {string}
|
|
479
|
-
* @memberof
|
|
400
|
+
* @type {{ [key: string]: ApplicationSettingsValue; }}
|
|
401
|
+
* @memberof BundleSettingsValue
|
|
480
402
|
*/
|
|
481
|
-
|
|
403
|
+
'applications'?: {
|
|
404
|
+
[key: string]: ApplicationSettingsValue;
|
|
405
|
+
};
|
|
406
|
+
}
|
|
407
|
+
/**
|
|
408
|
+
*
|
|
409
|
+
* @export
|
|
410
|
+
* @interface BundleSettingsValue1
|
|
411
|
+
*/
|
|
412
|
+
export interface BundleSettingsValue1 {
|
|
482
413
|
/**
|
|
483
414
|
*
|
|
484
|
-
* @type {string}
|
|
485
|
-
* @memberof
|
|
415
|
+
* @type {{ [key: string]: ApplicationSettingsValue1; }}
|
|
416
|
+
* @memberof BundleSettingsValue1
|
|
486
417
|
*/
|
|
487
|
-
|
|
418
|
+
'applications'?: {
|
|
419
|
+
[key: string]: ApplicationSettingsValue1;
|
|
420
|
+
};
|
|
488
421
|
}
|
|
489
422
|
/**
|
|
490
|
-
*
|
|
423
|
+
*
|
|
491
424
|
* @export
|
|
492
|
-
* @interface
|
|
425
|
+
* @interface CamelProperties
|
|
493
426
|
*/
|
|
494
|
-
export interface
|
|
427
|
+
export interface CamelProperties {
|
|
495
428
|
/**
|
|
496
|
-
*
|
|
429
|
+
*
|
|
497
430
|
* @type {string}
|
|
498
|
-
* @memberof
|
|
431
|
+
* @memberof CamelProperties
|
|
499
432
|
*/
|
|
500
|
-
|
|
433
|
+
'url': string;
|
|
501
434
|
/**
|
|
502
|
-
*
|
|
503
|
-
* @type {
|
|
504
|
-
* @memberof
|
|
435
|
+
*
|
|
436
|
+
* @type {boolean}
|
|
437
|
+
* @memberof CamelProperties
|
|
505
438
|
*/
|
|
506
|
-
|
|
439
|
+
'disable_ssl_verification': boolean;
|
|
507
440
|
/**
|
|
508
441
|
*
|
|
509
|
-
* @type {
|
|
510
|
-
* @memberof
|
|
442
|
+
* @type {string}
|
|
443
|
+
* @memberof CamelProperties
|
|
511
444
|
*/
|
|
512
|
-
|
|
445
|
+
'secret_token'?: string;
|
|
513
446
|
/**
|
|
514
447
|
*
|
|
515
|
-
* @type {
|
|
516
|
-
* @memberof
|
|
448
|
+
* @type {BasicAuthentication}
|
|
449
|
+
* @memberof CamelProperties
|
|
517
450
|
*/
|
|
518
|
-
|
|
519
|
-
}
|
|
520
|
-
/**
|
|
521
|
-
* @export
|
|
522
|
-
* @namespace EventType
|
|
523
|
-
*/
|
|
524
|
-
export declare namespace EventType {
|
|
451
|
+
'basic_authentication'?: BasicAuthentication;
|
|
525
452
|
/**
|
|
526
|
-
*
|
|
527
|
-
* @
|
|
453
|
+
*
|
|
454
|
+
* @type {{ [key: string]: string; }}
|
|
455
|
+
* @memberof CamelProperties
|
|
528
456
|
*/
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
}
|
|
457
|
+
'extras'?: {
|
|
458
|
+
[key: string]: string;
|
|
459
|
+
};
|
|
532
460
|
}
|
|
533
461
|
/**
|
|
534
462
|
*
|
|
535
463
|
* @export
|
|
536
|
-
* @interface
|
|
464
|
+
* @interface CreateBehaviorGroupRequest
|
|
537
465
|
*/
|
|
538
|
-
export interface
|
|
466
|
+
export interface CreateBehaviorGroupRequest {
|
|
539
467
|
/**
|
|
540
|
-
*
|
|
468
|
+
*
|
|
541
469
|
* @type {string}
|
|
542
|
-
* @memberof
|
|
470
|
+
* @memberof CreateBehaviorGroupRequest
|
|
543
471
|
*/
|
|
544
|
-
|
|
472
|
+
'bundle_id'?: string;
|
|
545
473
|
/**
|
|
546
|
-
*
|
|
474
|
+
*
|
|
547
475
|
* @type {string}
|
|
548
|
-
* @memberof
|
|
476
|
+
* @memberof CreateBehaviorGroupRequest
|
|
549
477
|
*/
|
|
550
|
-
|
|
551
|
-
}
|
|
552
|
-
/**
|
|
553
|
-
*
|
|
554
|
-
* @export
|
|
555
|
-
* @interface EventTypeRelationships
|
|
556
|
-
*/
|
|
557
|
-
export interface EventTypeRelationships {
|
|
478
|
+
'bundle_name'?: string;
|
|
558
479
|
/**
|
|
559
480
|
*
|
|
560
|
-
* @type {
|
|
561
|
-
* @memberof
|
|
481
|
+
* @type {string}
|
|
482
|
+
* @memberof CreateBehaviorGroupRequest
|
|
562
483
|
*/
|
|
563
|
-
|
|
564
|
-
}
|
|
565
|
-
/**
|
|
566
|
-
*
|
|
567
|
-
* @export
|
|
568
|
-
* @interface InlineObject
|
|
569
|
-
*/
|
|
570
|
-
export interface InlineObject {
|
|
484
|
+
'display_name': string;
|
|
571
485
|
/**
|
|
572
486
|
*
|
|
573
|
-
* @type {
|
|
574
|
-
* @memberof
|
|
487
|
+
* @type {Array<string>}
|
|
488
|
+
* @memberof CreateBehaviorGroupRequest
|
|
575
489
|
*/
|
|
576
|
-
|
|
490
|
+
'endpoint_ids'?: Array<string>;
|
|
577
491
|
/**
|
|
578
492
|
*
|
|
579
|
-
* @type {
|
|
580
|
-
* @memberof
|
|
493
|
+
* @type {Set<string>}
|
|
494
|
+
* @memberof CreateBehaviorGroupRequest
|
|
581
495
|
*/
|
|
582
|
-
|
|
583
|
-
}
|
|
584
|
-
/**
|
|
585
|
-
*
|
|
586
|
-
* @export
|
|
587
|
-
* @interface InlineObject1
|
|
588
|
-
*/
|
|
589
|
-
export interface InlineObject1 {
|
|
496
|
+
'event_type_ids'?: Set<string>;
|
|
590
497
|
/**
|
|
591
498
|
*
|
|
592
|
-
* @type {
|
|
593
|
-
* @memberof
|
|
499
|
+
* @type {boolean}
|
|
500
|
+
* @memberof CreateBehaviorGroupRequest
|
|
594
501
|
*/
|
|
595
|
-
|
|
502
|
+
'bundle_uuid_or_bundle_name_valid'?: boolean;
|
|
596
503
|
}
|
|
597
504
|
/**
|
|
598
505
|
*
|
|
599
506
|
* @export
|
|
600
|
-
* @interface
|
|
507
|
+
* @interface CreateBehaviorGroupResponse
|
|
601
508
|
*/
|
|
602
|
-
export interface
|
|
509
|
+
export interface CreateBehaviorGroupResponse {
|
|
603
510
|
/**
|
|
604
511
|
*
|
|
605
|
-
* @type {
|
|
606
|
-
* @memberof
|
|
512
|
+
* @type {string}
|
|
513
|
+
* @memberof CreateBehaviorGroupResponse
|
|
607
514
|
*/
|
|
608
|
-
|
|
609
|
-
}
|
|
610
|
-
/**
|
|
611
|
-
*
|
|
612
|
-
* @export
|
|
613
|
-
* @interface InlineResponse200
|
|
614
|
-
*/
|
|
615
|
-
export interface InlineResponse200 {
|
|
515
|
+
'id': string;
|
|
616
516
|
/**
|
|
617
517
|
*
|
|
618
|
-
* @type {
|
|
619
|
-
* @memberof
|
|
518
|
+
* @type {string}
|
|
519
|
+
* @memberof CreateBehaviorGroupResponse
|
|
620
520
|
*/
|
|
621
|
-
|
|
521
|
+
'bundle_id': string;
|
|
622
522
|
/**
|
|
623
523
|
*
|
|
624
|
-
* @type {
|
|
625
|
-
* @memberof
|
|
524
|
+
* @type {string}
|
|
525
|
+
* @memberof CreateBehaviorGroupResponse
|
|
626
526
|
*/
|
|
627
|
-
|
|
628
|
-
}
|
|
629
|
-
/**
|
|
630
|
-
*
|
|
631
|
-
* @export
|
|
632
|
-
* @interface InlineResponse2001
|
|
633
|
-
*/
|
|
634
|
-
export interface InlineResponse2001 {
|
|
527
|
+
'display_name': string;
|
|
635
528
|
/**
|
|
636
529
|
*
|
|
637
|
-
* @type {
|
|
638
|
-
* @memberof
|
|
530
|
+
* @type {Array<string>}
|
|
531
|
+
* @memberof CreateBehaviorGroupResponse
|
|
639
532
|
*/
|
|
640
|
-
|
|
641
|
-
}
|
|
642
|
-
/**
|
|
643
|
-
*
|
|
644
|
-
* @export
|
|
645
|
-
* @interface InlineResponse2002
|
|
646
|
-
*/
|
|
647
|
-
export interface InlineResponse2002 {
|
|
533
|
+
'endpoints': Array<string>;
|
|
648
534
|
/**
|
|
649
535
|
*
|
|
650
|
-
* @type {
|
|
651
|
-
* @memberof
|
|
536
|
+
* @type {Set<string>}
|
|
537
|
+
* @memberof CreateBehaviorGroupResponse
|
|
652
538
|
*/
|
|
653
|
-
|
|
539
|
+
'event_types': Set<string>;
|
|
654
540
|
/**
|
|
655
541
|
*
|
|
656
|
-
* @type {
|
|
657
|
-
* @memberof
|
|
542
|
+
* @type {string}
|
|
543
|
+
* @memberof CreateBehaviorGroupResponse
|
|
658
544
|
*/
|
|
659
|
-
|
|
545
|
+
'created': string;
|
|
660
546
|
}
|
|
661
547
|
/**
|
|
662
548
|
*
|
|
663
549
|
* @export
|
|
664
|
-
* @interface
|
|
550
|
+
* @interface CurrentStatus
|
|
665
551
|
*/
|
|
666
|
-
export interface
|
|
552
|
+
export interface CurrentStatus {
|
|
667
553
|
/**
|
|
668
554
|
*
|
|
669
|
-
* @type {
|
|
670
|
-
* @memberof
|
|
555
|
+
* @type {Status}
|
|
556
|
+
* @memberof CurrentStatus
|
|
671
557
|
*/
|
|
672
|
-
|
|
558
|
+
'status': Status;
|
|
673
559
|
/**
|
|
674
560
|
*
|
|
675
|
-
* @type {
|
|
676
|
-
* @memberof
|
|
561
|
+
* @type {string}
|
|
562
|
+
* @memberof CurrentStatus
|
|
677
563
|
*/
|
|
678
|
-
|
|
564
|
+
'start_time'?: string;
|
|
679
565
|
/**
|
|
680
566
|
*
|
|
681
|
-
* @type {
|
|
682
|
-
* @memberof
|
|
567
|
+
* @type {string}
|
|
568
|
+
* @memberof CurrentStatus
|
|
683
569
|
*/
|
|
684
|
-
|
|
570
|
+
'end_time'?: string;
|
|
685
571
|
}
|
|
686
572
|
/**
|
|
687
573
|
*
|
|
688
574
|
* @export
|
|
689
|
-
* @interface
|
|
575
|
+
* @interface DuplicateNameMigrationReport
|
|
690
576
|
*/
|
|
691
|
-
export interface
|
|
577
|
+
export interface DuplicateNameMigrationReport {
|
|
578
|
+
/**
|
|
579
|
+
*
|
|
580
|
+
* @type {number}
|
|
581
|
+
* @memberof DuplicateNameMigrationReport
|
|
582
|
+
*/
|
|
583
|
+
'updatedIntegrations'?: number;
|
|
692
584
|
/**
|
|
693
585
|
*
|
|
694
|
-
* @type {
|
|
695
|
-
* @memberof
|
|
586
|
+
* @type {number}
|
|
587
|
+
* @memberof DuplicateNameMigrationReport
|
|
696
588
|
*/
|
|
697
|
-
|
|
589
|
+
'updatedBehaviorGroups'?: number;
|
|
698
590
|
}
|
|
699
591
|
/**
|
|
700
592
|
*
|
|
701
593
|
* @export
|
|
702
|
-
* @
|
|
594
|
+
* @enum {string}
|
|
703
595
|
*/
|
|
704
|
-
export
|
|
596
|
+
export declare const EmailSubscriptionType: {
|
|
597
|
+
readonly Daily: "DAILY";
|
|
598
|
+
};
|
|
599
|
+
export declare type EmailSubscriptionType = typeof EmailSubscriptionType[keyof typeof EmailSubscriptionType];
|
|
600
|
+
/**
|
|
601
|
+
*
|
|
602
|
+
* @export
|
|
603
|
+
* @interface Endpoint
|
|
604
|
+
*/
|
|
605
|
+
export interface Endpoint {
|
|
705
606
|
/**
|
|
706
607
|
*
|
|
707
608
|
* @type {string}
|
|
708
|
-
* @memberof
|
|
609
|
+
* @memberof Endpoint
|
|
709
610
|
*/
|
|
710
|
-
|
|
611
|
+
'created'?: string;
|
|
711
612
|
/**
|
|
712
613
|
*
|
|
713
614
|
* @type {string}
|
|
714
|
-
* @memberof
|
|
615
|
+
* @memberof Endpoint
|
|
715
616
|
*/
|
|
716
|
-
|
|
617
|
+
'updated'?: string;
|
|
717
618
|
/**
|
|
718
619
|
*
|
|
719
|
-
* @type {
|
|
720
|
-
* @memberof
|
|
620
|
+
* @type {string}
|
|
621
|
+
* @memberof Endpoint
|
|
721
622
|
*/
|
|
722
|
-
|
|
623
|
+
'id'?: string;
|
|
723
624
|
/**
|
|
724
625
|
*
|
|
725
|
-
* @type {
|
|
726
|
-
* @memberof
|
|
626
|
+
* @type {string}
|
|
627
|
+
* @memberof Endpoint
|
|
727
628
|
*/
|
|
728
|
-
|
|
729
|
-
}
|
|
730
|
-
/**
|
|
731
|
-
* @export
|
|
732
|
-
* @namespace InlineResponse2004Data
|
|
733
|
-
*/
|
|
734
|
-
export declare namespace InlineResponse2004Data {
|
|
629
|
+
'name': string;
|
|
735
630
|
/**
|
|
736
|
-
*
|
|
737
|
-
* @
|
|
631
|
+
*
|
|
632
|
+
* @type {string}
|
|
633
|
+
* @memberof Endpoint
|
|
738
634
|
*/
|
|
739
|
-
|
|
740
|
-
Filter = "filter"
|
|
741
|
-
}
|
|
742
|
-
}
|
|
743
|
-
/**
|
|
744
|
-
*
|
|
745
|
-
* @export
|
|
746
|
-
* @interface InlineResponse2004DataAttributes
|
|
747
|
-
*/
|
|
748
|
-
export interface InlineResponse2004DataAttributes {
|
|
635
|
+
'description': string;
|
|
749
636
|
/**
|
|
750
637
|
*
|
|
751
638
|
* @type {boolean}
|
|
752
|
-
* @memberof
|
|
639
|
+
* @memberof Endpoint
|
|
753
640
|
*/
|
|
754
|
-
enabled?: boolean;
|
|
755
|
-
}
|
|
756
|
-
/**
|
|
757
|
-
*
|
|
758
|
-
* @export
|
|
759
|
-
* @interface InlineResponse2004DataRelationships
|
|
760
|
-
*/
|
|
761
|
-
export interface InlineResponse2004DataRelationships {
|
|
641
|
+
'enabled'?: boolean;
|
|
762
642
|
/**
|
|
763
643
|
*
|
|
764
|
-
* @type {
|
|
765
|
-
* @memberof
|
|
644
|
+
* @type {EndpointStatus}
|
|
645
|
+
* @memberof Endpoint
|
|
766
646
|
*/
|
|
767
|
-
|
|
647
|
+
'status'?: EndpointStatus;
|
|
768
648
|
/**
|
|
769
649
|
*
|
|
770
|
-
* @type {
|
|
771
|
-
* @memberof
|
|
650
|
+
* @type {number}
|
|
651
|
+
* @memberof Endpoint
|
|
772
652
|
*/
|
|
773
|
-
|
|
653
|
+
'server_errors'?: number;
|
|
774
654
|
/**
|
|
775
655
|
*
|
|
776
|
-
* @type {
|
|
777
|
-
* @memberof
|
|
656
|
+
* @type {object}
|
|
657
|
+
* @memberof Endpoint
|
|
778
658
|
*/
|
|
779
|
-
|
|
659
|
+
'properties'?: object;
|
|
780
660
|
/**
|
|
781
661
|
*
|
|
782
|
-
* @type {
|
|
783
|
-
* @memberof
|
|
662
|
+
* @type {EndpointType}
|
|
663
|
+
* @memberof Endpoint
|
|
784
664
|
*/
|
|
785
|
-
|
|
786
|
-
}
|
|
787
|
-
/**
|
|
788
|
-
*
|
|
789
|
-
* @export
|
|
790
|
-
* @interface InlineResponse201
|
|
791
|
-
*/
|
|
792
|
-
export interface InlineResponse201 {
|
|
665
|
+
'type': EndpointType;
|
|
793
666
|
/**
|
|
794
667
|
*
|
|
795
|
-
* @type {
|
|
796
|
-
* @memberof
|
|
668
|
+
* @type {string}
|
|
669
|
+
* @memberof Endpoint
|
|
797
670
|
*/
|
|
798
|
-
|
|
671
|
+
'sub_type'?: string;
|
|
799
672
|
}
|
|
800
673
|
/**
|
|
801
|
-
*
|
|
674
|
+
*
|
|
802
675
|
* @export
|
|
803
|
-
* @interface
|
|
676
|
+
* @interface EndpointPage
|
|
804
677
|
*/
|
|
805
|
-
export interface
|
|
678
|
+
export interface EndpointPage {
|
|
806
679
|
/**
|
|
807
|
-
*
|
|
808
|
-
* @type {
|
|
809
|
-
* @memberof
|
|
680
|
+
*
|
|
681
|
+
* @type {Array<Endpoint>}
|
|
682
|
+
* @memberof EndpointPage
|
|
810
683
|
*/
|
|
811
|
-
|
|
684
|
+
'data': Array<Endpoint>;
|
|
812
685
|
/**
|
|
813
|
-
*
|
|
686
|
+
*
|
|
687
|
+
* @type {{ [key: string]: string; }}
|
|
688
|
+
* @memberof EndpointPage
|
|
689
|
+
*/
|
|
690
|
+
'links': {
|
|
691
|
+
[key: string]: string;
|
|
692
|
+
};
|
|
693
|
+
/**
|
|
694
|
+
*
|
|
695
|
+
* @type {Meta}
|
|
696
|
+
* @memberof EndpointPage
|
|
697
|
+
*/
|
|
698
|
+
'meta': Meta;
|
|
699
|
+
}
|
|
700
|
+
/**
|
|
701
|
+
*
|
|
702
|
+
* @export
|
|
703
|
+
* @enum {string}
|
|
704
|
+
*/
|
|
705
|
+
export declare const EndpointStatus: {
|
|
706
|
+
readonly Ready: "READY";
|
|
707
|
+
readonly Unknown: "UNKNOWN";
|
|
708
|
+
readonly New: "NEW";
|
|
709
|
+
readonly Provisioning: "PROVISIONING";
|
|
710
|
+
readonly Deleting: "DELETING";
|
|
711
|
+
readonly Failed: "FAILED";
|
|
712
|
+
};
|
|
713
|
+
export declare type EndpointStatus = typeof EndpointStatus[keyof typeof EndpointStatus];
|
|
714
|
+
/**
|
|
715
|
+
*
|
|
716
|
+
* @export
|
|
717
|
+
* @interface EndpointTestRequest
|
|
718
|
+
*/
|
|
719
|
+
export interface EndpointTestRequest {
|
|
720
|
+
/**
|
|
721
|
+
*
|
|
722
|
+
* @type {string}
|
|
723
|
+
* @memberof EndpointTestRequest
|
|
724
|
+
*/
|
|
725
|
+
'message': string;
|
|
726
|
+
}
|
|
727
|
+
/**
|
|
728
|
+
*
|
|
729
|
+
* @export
|
|
730
|
+
* @enum {string}
|
|
731
|
+
*/
|
|
732
|
+
export declare const EndpointType: {
|
|
733
|
+
readonly Webhook: "webhook";
|
|
734
|
+
readonly EmailSubscription: "email_subscription";
|
|
735
|
+
readonly Camel: "camel";
|
|
736
|
+
readonly Ansible: "ansible";
|
|
737
|
+
readonly Drawer: "drawer";
|
|
738
|
+
};
|
|
739
|
+
export declare type EndpointType = typeof EndpointType[keyof typeof EndpointType];
|
|
740
|
+
/**
|
|
741
|
+
*
|
|
742
|
+
* @export
|
|
743
|
+
* @enum {string}
|
|
744
|
+
*/
|
|
745
|
+
export declare const Environment: {
|
|
746
|
+
readonly Prod: "PROD";
|
|
747
|
+
readonly Stage: "STAGE";
|
|
748
|
+
readonly Ephemeral: "EPHEMERAL";
|
|
749
|
+
readonly LocalServer: "LOCAL_SERVER";
|
|
750
|
+
};
|
|
751
|
+
export declare type Environment = typeof Environment[keyof typeof Environment];
|
|
752
|
+
/**
|
|
753
|
+
*
|
|
754
|
+
* @export
|
|
755
|
+
* @interface EventLogEntry
|
|
756
|
+
*/
|
|
757
|
+
export interface EventLogEntry {
|
|
758
|
+
/**
|
|
759
|
+
*
|
|
760
|
+
* @type {string}
|
|
761
|
+
* @memberof EventLogEntry
|
|
762
|
+
*/
|
|
763
|
+
'id': string;
|
|
764
|
+
/**
|
|
765
|
+
*
|
|
766
|
+
* @type {string}
|
|
767
|
+
* @memberof EventLogEntry
|
|
768
|
+
*/
|
|
769
|
+
'created': string;
|
|
770
|
+
/**
|
|
771
|
+
*
|
|
772
|
+
* @type {string}
|
|
773
|
+
* @memberof EventLogEntry
|
|
774
|
+
*/
|
|
775
|
+
'bundle': string;
|
|
776
|
+
/**
|
|
777
|
+
*
|
|
778
|
+
* @type {string}
|
|
779
|
+
* @memberof EventLogEntry
|
|
780
|
+
*/
|
|
781
|
+
'application': string;
|
|
782
|
+
/**
|
|
783
|
+
*
|
|
784
|
+
* @type {string}
|
|
785
|
+
* @memberof EventLogEntry
|
|
786
|
+
*/
|
|
787
|
+
'event_type': string;
|
|
788
|
+
/**
|
|
789
|
+
*
|
|
790
|
+
* @type {string}
|
|
791
|
+
* @memberof EventLogEntry
|
|
792
|
+
*/
|
|
793
|
+
'payload'?: string;
|
|
794
|
+
/**
|
|
795
|
+
*
|
|
796
|
+
* @type {Array<EventLogEntryAction>}
|
|
797
|
+
* @memberof EventLogEntry
|
|
798
|
+
*/
|
|
799
|
+
'actions': Array<EventLogEntryAction>;
|
|
800
|
+
}
|
|
801
|
+
/**
|
|
802
|
+
*
|
|
803
|
+
* @export
|
|
804
|
+
* @interface EventLogEntryAction
|
|
805
|
+
*/
|
|
806
|
+
export interface EventLogEntryAction {
|
|
807
|
+
/**
|
|
808
|
+
*
|
|
809
|
+
* @type {string}
|
|
810
|
+
* @memberof EventLogEntryAction
|
|
811
|
+
*/
|
|
812
|
+
'id': string;
|
|
813
|
+
/**
|
|
814
|
+
*
|
|
815
|
+
* @type {EndpointType}
|
|
816
|
+
* @memberof EventLogEntryAction
|
|
817
|
+
*/
|
|
818
|
+
'endpoint_type': EndpointType;
|
|
819
|
+
/**
|
|
820
|
+
*
|
|
821
|
+
* @type {string}
|
|
822
|
+
* @memberof EventLogEntryAction
|
|
823
|
+
*/
|
|
824
|
+
'endpoint_sub_type'?: string;
|
|
825
|
+
/**
|
|
826
|
+
*
|
|
827
|
+
* @type {boolean}
|
|
828
|
+
* @memberof EventLogEntryAction
|
|
829
|
+
* @deprecated
|
|
830
|
+
*/
|
|
831
|
+
'invocation_result': boolean;
|
|
832
|
+
/**
|
|
833
|
+
*
|
|
834
|
+
* @type {EventLogEntryActionStatus}
|
|
835
|
+
* @memberof EventLogEntryAction
|
|
836
|
+
*/
|
|
837
|
+
'status': EventLogEntryActionStatus;
|
|
838
|
+
/**
|
|
839
|
+
*
|
|
840
|
+
* @type {string}
|
|
841
|
+
* @memberof EventLogEntryAction
|
|
842
|
+
*/
|
|
843
|
+
'endpoint_id'?: string;
|
|
844
|
+
/**
|
|
845
|
+
*
|
|
846
|
+
* @type {{ [key: string]: object; }}
|
|
847
|
+
* @memberof EventLogEntryAction
|
|
848
|
+
*/
|
|
849
|
+
'details'?: {
|
|
850
|
+
[key: string]: object;
|
|
851
|
+
};
|
|
852
|
+
}
|
|
853
|
+
/**
|
|
854
|
+
*
|
|
855
|
+
* @export
|
|
856
|
+
* @enum {string}
|
|
857
|
+
*/
|
|
858
|
+
export declare const EventLogEntryActionStatus: {
|
|
859
|
+
readonly Sent: "SENT";
|
|
860
|
+
readonly Success: "SUCCESS";
|
|
861
|
+
readonly Processing: "PROCESSING";
|
|
862
|
+
readonly Failed: "FAILED";
|
|
863
|
+
readonly Unknown: "UNKNOWN";
|
|
864
|
+
};
|
|
865
|
+
export declare type EventLogEntryActionStatus = typeof EventLogEntryActionStatus[keyof typeof EventLogEntryActionStatus];
|
|
866
|
+
/**
|
|
867
|
+
*
|
|
868
|
+
* @export
|
|
869
|
+
* @interface EventType
|
|
870
|
+
*/
|
|
871
|
+
export interface EventType {
|
|
872
|
+
/**
|
|
873
|
+
*
|
|
874
|
+
* @type {string}
|
|
875
|
+
* @memberof EventType
|
|
876
|
+
*/
|
|
877
|
+
'id'?: string;
|
|
878
|
+
/**
|
|
879
|
+
*
|
|
880
|
+
* @type {string}
|
|
881
|
+
* @memberof EventType
|
|
882
|
+
*/
|
|
883
|
+
'name': string;
|
|
884
|
+
/**
|
|
885
|
+
*
|
|
886
|
+
* @type {string}
|
|
887
|
+
* @memberof EventType
|
|
888
|
+
*/
|
|
889
|
+
'display_name': string;
|
|
890
|
+
/**
|
|
891
|
+
*
|
|
892
|
+
* @type {string}
|
|
893
|
+
* @memberof EventType
|
|
894
|
+
*/
|
|
895
|
+
'description'?: string;
|
|
896
|
+
/**
|
|
897
|
+
*
|
|
898
|
+
* @type {string}
|
|
899
|
+
* @memberof EventType
|
|
900
|
+
*/
|
|
901
|
+
'fully_qualified_name'?: string;
|
|
902
|
+
/**
|
|
903
|
+
*
|
|
904
|
+
* @type {string}
|
|
905
|
+
* @memberof EventType
|
|
906
|
+
*/
|
|
907
|
+
'application_id': string;
|
|
908
|
+
/**
|
|
909
|
+
*
|
|
910
|
+
* @type {Application}
|
|
911
|
+
* @memberof EventType
|
|
912
|
+
*/
|
|
913
|
+
'application'?: Application;
|
|
914
|
+
}
|
|
915
|
+
/**
|
|
916
|
+
*
|
|
917
|
+
* @export
|
|
918
|
+
* @interface EventTypeBehavior
|
|
919
|
+
*/
|
|
920
|
+
export interface EventTypeBehavior {
|
|
921
|
+
/**
|
|
922
|
+
*
|
|
923
|
+
* @type {string}
|
|
924
|
+
* @memberof EventTypeBehavior
|
|
925
|
+
*/
|
|
926
|
+
'created'?: string;
|
|
927
|
+
/**
|
|
928
|
+
*
|
|
929
|
+
* @type {EventTypeBehaviorId}
|
|
930
|
+
* @memberof EventTypeBehavior
|
|
931
|
+
*/
|
|
932
|
+
'id'?: EventTypeBehaviorId;
|
|
933
|
+
/**
|
|
934
|
+
*
|
|
935
|
+
* @type {EventType}
|
|
936
|
+
* @memberof EventTypeBehavior
|
|
937
|
+
*/
|
|
938
|
+
'event_type'?: EventType;
|
|
939
|
+
}
|
|
940
|
+
/**
|
|
941
|
+
*
|
|
942
|
+
* @export
|
|
943
|
+
* @interface EventTypeBehaviorId
|
|
944
|
+
*/
|
|
945
|
+
export interface EventTypeBehaviorId {
|
|
946
|
+
/**
|
|
947
|
+
*
|
|
948
|
+
* @type {string}
|
|
949
|
+
* @memberof EventTypeBehaviorId
|
|
950
|
+
*/
|
|
951
|
+
'eventTypeId': string;
|
|
952
|
+
/**
|
|
953
|
+
*
|
|
954
|
+
* @type {string}
|
|
955
|
+
* @memberof EventTypeBehaviorId
|
|
956
|
+
*/
|
|
957
|
+
'behaviorGroupId': string;
|
|
958
|
+
}
|
|
959
|
+
/**
|
|
960
|
+
*
|
|
961
|
+
* @export
|
|
962
|
+
* @interface EventTypeSettingsValue
|
|
963
|
+
*/
|
|
964
|
+
export interface EventTypeSettingsValue {
|
|
965
|
+
/**
|
|
966
|
+
*
|
|
967
|
+
* @type {{ [key: string]: boolean; }}
|
|
968
|
+
* @memberof EventTypeSettingsValue
|
|
969
|
+
*/
|
|
970
|
+
'emailSubscriptionTypes'?: {
|
|
971
|
+
[key: string]: boolean;
|
|
972
|
+
};
|
|
973
|
+
/**
|
|
974
|
+
*
|
|
975
|
+
* @type {boolean}
|
|
976
|
+
* @memberof EventTypeSettingsValue
|
|
977
|
+
*/
|
|
978
|
+
'hasForcedEmail'?: boolean;
|
|
979
|
+
}
|
|
980
|
+
/**
|
|
981
|
+
*
|
|
982
|
+
* @export
|
|
983
|
+
* @interface Facet
|
|
984
|
+
*/
|
|
985
|
+
export interface Facet {
|
|
986
|
+
/**
|
|
987
|
+
*
|
|
988
|
+
* @type {string}
|
|
989
|
+
* @memberof Facet
|
|
990
|
+
*/
|
|
991
|
+
'id': string;
|
|
992
|
+
/**
|
|
993
|
+
*
|
|
994
|
+
* @type {string}
|
|
995
|
+
* @memberof Facet
|
|
996
|
+
*/
|
|
997
|
+
'name': string;
|
|
998
|
+
/**
|
|
999
|
+
*
|
|
814
1000
|
* @type {string}
|
|
815
|
-
* @memberof
|
|
1001
|
+
* @memberof Facet
|
|
1002
|
+
*/
|
|
1003
|
+
'displayName': string;
|
|
1004
|
+
/**
|
|
1005
|
+
*
|
|
1006
|
+
* @type {Array<Facet>}
|
|
1007
|
+
* @memberof Facet
|
|
1008
|
+
*/
|
|
1009
|
+
'children'?: Array<Facet>;
|
|
1010
|
+
}
|
|
1011
|
+
/**
|
|
1012
|
+
*
|
|
1013
|
+
* @export
|
|
1014
|
+
* @enum {string}
|
|
1015
|
+
*/
|
|
1016
|
+
export declare const HttpType: {
|
|
1017
|
+
readonly Get: "GET";
|
|
1018
|
+
readonly Post: "POST";
|
|
1019
|
+
readonly Put: "PUT";
|
|
1020
|
+
};
|
|
1021
|
+
export declare type HttpType = typeof HttpType[keyof typeof HttpType];
|
|
1022
|
+
/**
|
|
1023
|
+
*
|
|
1024
|
+
* @export
|
|
1025
|
+
* @interface InstantEmailTemplate
|
|
1026
|
+
*/
|
|
1027
|
+
export interface InstantEmailTemplate {
|
|
1028
|
+
/**
|
|
1029
|
+
*
|
|
1030
|
+
* @type {string}
|
|
1031
|
+
* @memberof InstantEmailTemplate
|
|
1032
|
+
*/
|
|
1033
|
+
'created'?: string;
|
|
1034
|
+
/**
|
|
1035
|
+
*
|
|
1036
|
+
* @type {string}
|
|
1037
|
+
* @memberof InstantEmailTemplate
|
|
1038
|
+
*/
|
|
1039
|
+
'updated'?: string;
|
|
1040
|
+
/**
|
|
1041
|
+
*
|
|
1042
|
+
* @type {string}
|
|
1043
|
+
* @memberof InstantEmailTemplate
|
|
1044
|
+
*/
|
|
1045
|
+
'id'?: string;
|
|
1046
|
+
/**
|
|
1047
|
+
*
|
|
1048
|
+
* @type {EventType}
|
|
1049
|
+
* @memberof InstantEmailTemplate
|
|
1050
|
+
*/
|
|
1051
|
+
'event_type'?: EventType;
|
|
1052
|
+
/**
|
|
1053
|
+
*
|
|
1054
|
+
* @type {string}
|
|
1055
|
+
* @memberof InstantEmailTemplate
|
|
1056
|
+
*/
|
|
1057
|
+
'event_type_id'?: string;
|
|
1058
|
+
/**
|
|
1059
|
+
*
|
|
1060
|
+
* @type {Template}
|
|
1061
|
+
* @memberof InstantEmailTemplate
|
|
1062
|
+
*/
|
|
1063
|
+
'subject_template'?: Template;
|
|
1064
|
+
/**
|
|
1065
|
+
*
|
|
1066
|
+
* @type {string}
|
|
1067
|
+
* @memberof InstantEmailTemplate
|
|
1068
|
+
*/
|
|
1069
|
+
'subject_template_id': string;
|
|
1070
|
+
/**
|
|
1071
|
+
*
|
|
1072
|
+
* @type {Template}
|
|
1073
|
+
* @memberof InstantEmailTemplate
|
|
1074
|
+
*/
|
|
1075
|
+
'body_template'?: Template;
|
|
1076
|
+
/**
|
|
1077
|
+
*
|
|
1078
|
+
* @type {string}
|
|
1079
|
+
* @memberof InstantEmailTemplate
|
|
1080
|
+
*/
|
|
1081
|
+
'body_template_id': string;
|
|
1082
|
+
}
|
|
1083
|
+
/**
|
|
1084
|
+
*
|
|
1085
|
+
* @export
|
|
1086
|
+
* @interface InternalApplicationUserPermission
|
|
1087
|
+
*/
|
|
1088
|
+
export interface InternalApplicationUserPermission {
|
|
1089
|
+
/**
|
|
1090
|
+
*
|
|
1091
|
+
* @type {string}
|
|
1092
|
+
* @memberof InternalApplicationUserPermission
|
|
1093
|
+
*/
|
|
1094
|
+
'application_id': string;
|
|
1095
|
+
/**
|
|
1096
|
+
*
|
|
1097
|
+
* @type {string}
|
|
1098
|
+
* @memberof InternalApplicationUserPermission
|
|
1099
|
+
*/
|
|
1100
|
+
'application_display_name': string;
|
|
1101
|
+
/**
|
|
1102
|
+
*
|
|
1103
|
+
* @type {string}
|
|
1104
|
+
* @memberof InternalApplicationUserPermission
|
|
1105
|
+
*/
|
|
1106
|
+
'role': string;
|
|
1107
|
+
}
|
|
1108
|
+
/**
|
|
1109
|
+
*
|
|
1110
|
+
* @export
|
|
1111
|
+
* @interface InternalRoleAccess
|
|
1112
|
+
*/
|
|
1113
|
+
export interface InternalRoleAccess {
|
|
1114
|
+
/**
|
|
1115
|
+
*
|
|
1116
|
+
* @type {string}
|
|
1117
|
+
* @memberof InternalRoleAccess
|
|
1118
|
+
*/
|
|
1119
|
+
'id'?: string;
|
|
1120
|
+
/**
|
|
1121
|
+
*
|
|
1122
|
+
* @type {string}
|
|
1123
|
+
* @memberof InternalRoleAccess
|
|
1124
|
+
*/
|
|
1125
|
+
'role': string;
|
|
1126
|
+
/**
|
|
1127
|
+
*
|
|
1128
|
+
* @type {string}
|
|
1129
|
+
* @memberof InternalRoleAccess
|
|
1130
|
+
*/
|
|
1131
|
+
'application_id': string;
|
|
1132
|
+
}
|
|
1133
|
+
/**
|
|
1134
|
+
*
|
|
1135
|
+
* @export
|
|
1136
|
+
* @interface InternalUserPermissions
|
|
1137
|
+
*/
|
|
1138
|
+
export interface InternalUserPermissions {
|
|
1139
|
+
/**
|
|
1140
|
+
*
|
|
1141
|
+
* @type {boolean}
|
|
1142
|
+
* @memberof InternalUserPermissions
|
|
1143
|
+
*/
|
|
1144
|
+
'is_admin': boolean;
|
|
1145
|
+
/**
|
|
1146
|
+
*
|
|
1147
|
+
* @type {Array<Application1>}
|
|
1148
|
+
* @memberof InternalUserPermissions
|
|
1149
|
+
*/
|
|
1150
|
+
'applications': Array<Application1>;
|
|
1151
|
+
/**
|
|
1152
|
+
*
|
|
1153
|
+
* @type {Array<string>}
|
|
1154
|
+
* @memberof InternalUserPermissions
|
|
1155
|
+
*/
|
|
1156
|
+
'roles': Array<string>;
|
|
1157
|
+
}
|
|
1158
|
+
/**
|
|
1159
|
+
*
|
|
1160
|
+
* @export
|
|
1161
|
+
* @interface MessageValidationResponse
|
|
1162
|
+
*/
|
|
1163
|
+
export interface MessageValidationResponse {
|
|
1164
|
+
/**
|
|
1165
|
+
*
|
|
1166
|
+
* @type {{ [key: string]: Array<string>; }}
|
|
1167
|
+
* @memberof MessageValidationResponse
|
|
1168
|
+
*/
|
|
1169
|
+
'errors': {
|
|
1170
|
+
[key: string]: Array<string>;
|
|
1171
|
+
};
|
|
1172
|
+
}
|
|
1173
|
+
/**
|
|
1174
|
+
*
|
|
1175
|
+
* @export
|
|
1176
|
+
* @interface Meta
|
|
1177
|
+
*/
|
|
1178
|
+
export interface Meta {
|
|
1179
|
+
/**
|
|
1180
|
+
*
|
|
1181
|
+
* @type {number}
|
|
1182
|
+
* @memberof Meta
|
|
1183
|
+
*/
|
|
1184
|
+
'count': number;
|
|
1185
|
+
}
|
|
1186
|
+
/**
|
|
1187
|
+
*
|
|
1188
|
+
* @export
|
|
1189
|
+
* @interface NotificationHistory
|
|
1190
|
+
*/
|
|
1191
|
+
export interface NotificationHistory {
|
|
1192
|
+
/**
|
|
1193
|
+
*
|
|
1194
|
+
* @type {string}
|
|
1195
|
+
* @memberof NotificationHistory
|
|
1196
|
+
*/
|
|
1197
|
+
'created'?: string;
|
|
1198
|
+
/**
|
|
1199
|
+
*
|
|
1200
|
+
* @type {string}
|
|
1201
|
+
* @memberof NotificationHistory
|
|
1202
|
+
*/
|
|
1203
|
+
'id'?: string;
|
|
1204
|
+
/**
|
|
1205
|
+
*
|
|
1206
|
+
* @type {number}
|
|
1207
|
+
* @memberof NotificationHistory
|
|
1208
|
+
*/
|
|
1209
|
+
'invocationTime': number;
|
|
1210
|
+
/**
|
|
1211
|
+
*
|
|
1212
|
+
* @type {boolean}
|
|
1213
|
+
* @memberof NotificationHistory
|
|
1214
|
+
* @deprecated
|
|
1215
|
+
*/
|
|
1216
|
+
'invocationResult': boolean;
|
|
1217
|
+
/**
|
|
1218
|
+
*
|
|
1219
|
+
* @type {NotificationStatus}
|
|
1220
|
+
* @memberof NotificationHistory
|
|
1221
|
+
*/
|
|
1222
|
+
'status': NotificationStatus;
|
|
1223
|
+
/**
|
|
1224
|
+
*
|
|
1225
|
+
* @type {string}
|
|
1226
|
+
* @memberof NotificationHistory
|
|
1227
|
+
*/
|
|
1228
|
+
'endpointId'?: string;
|
|
1229
|
+
/**
|
|
1230
|
+
*
|
|
1231
|
+
* @type {{ [key: string]: object; }}
|
|
1232
|
+
* @memberof NotificationHistory
|
|
1233
|
+
*/
|
|
1234
|
+
'details'?: {
|
|
1235
|
+
[key: string]: object;
|
|
1236
|
+
};
|
|
1237
|
+
/**
|
|
1238
|
+
*
|
|
1239
|
+
* @type {EndpointType}
|
|
1240
|
+
* @memberof NotificationHistory
|
|
1241
|
+
*/
|
|
1242
|
+
'endpointType'?: EndpointType;
|
|
1243
|
+
/**
|
|
1244
|
+
*
|
|
1245
|
+
* @type {string}
|
|
1246
|
+
* @memberof NotificationHistory
|
|
1247
|
+
*/
|
|
1248
|
+
'endpointSubType'?: string;
|
|
1249
|
+
}
|
|
1250
|
+
/**
|
|
1251
|
+
*
|
|
1252
|
+
* @export
|
|
1253
|
+
* @enum {string}
|
|
1254
|
+
*/
|
|
1255
|
+
export declare const NotificationStatus: {
|
|
1256
|
+
readonly FailedInternal: "FAILED_INTERNAL";
|
|
1257
|
+
readonly FailedExternal: "FAILED_EXTERNAL";
|
|
1258
|
+
readonly Processing: "PROCESSING";
|
|
1259
|
+
readonly Sent: "SENT";
|
|
1260
|
+
readonly Success: "SUCCESS";
|
|
1261
|
+
};
|
|
1262
|
+
export declare type NotificationStatus = typeof NotificationStatus[keyof typeof NotificationStatus];
|
|
1263
|
+
/**
|
|
1264
|
+
*
|
|
1265
|
+
* @export
|
|
1266
|
+
* @interface PageBehaviorGroup
|
|
1267
|
+
*/
|
|
1268
|
+
export interface PageBehaviorGroup {
|
|
1269
|
+
/**
|
|
1270
|
+
*
|
|
1271
|
+
* @type {Array<BehaviorGroup>}
|
|
1272
|
+
* @memberof PageBehaviorGroup
|
|
1273
|
+
*/
|
|
1274
|
+
'data': Array<BehaviorGroup>;
|
|
1275
|
+
/**
|
|
1276
|
+
*
|
|
1277
|
+
* @type {{ [key: string]: string; }}
|
|
1278
|
+
* @memberof PageBehaviorGroup
|
|
1279
|
+
*/
|
|
1280
|
+
'links': {
|
|
1281
|
+
[key: string]: string;
|
|
1282
|
+
};
|
|
1283
|
+
/**
|
|
1284
|
+
*
|
|
1285
|
+
* @type {Meta}
|
|
1286
|
+
* @memberof PageBehaviorGroup
|
|
1287
|
+
*/
|
|
1288
|
+
'meta': Meta;
|
|
1289
|
+
}
|
|
1290
|
+
/**
|
|
1291
|
+
*
|
|
1292
|
+
* @export
|
|
1293
|
+
* @interface PageEventLogEntry
|
|
1294
|
+
*/
|
|
1295
|
+
export interface PageEventLogEntry {
|
|
1296
|
+
/**
|
|
1297
|
+
*
|
|
1298
|
+
* @type {Array<EventLogEntry>}
|
|
1299
|
+
* @memberof PageEventLogEntry
|
|
1300
|
+
*/
|
|
1301
|
+
'data': Array<EventLogEntry>;
|
|
1302
|
+
/**
|
|
1303
|
+
*
|
|
1304
|
+
* @type {{ [key: string]: string; }}
|
|
1305
|
+
* @memberof PageEventLogEntry
|
|
1306
|
+
*/
|
|
1307
|
+
'links': {
|
|
1308
|
+
[key: string]: string;
|
|
1309
|
+
};
|
|
1310
|
+
/**
|
|
1311
|
+
*
|
|
1312
|
+
* @type {Meta}
|
|
1313
|
+
* @memberof PageEventLogEntry
|
|
1314
|
+
*/
|
|
1315
|
+
'meta': Meta;
|
|
1316
|
+
}
|
|
1317
|
+
/**
|
|
1318
|
+
*
|
|
1319
|
+
* @export
|
|
1320
|
+
* @interface PageEventType
|
|
1321
|
+
*/
|
|
1322
|
+
export interface PageEventType {
|
|
1323
|
+
/**
|
|
1324
|
+
*
|
|
1325
|
+
* @type {Array<EventType>}
|
|
1326
|
+
* @memberof PageEventType
|
|
1327
|
+
*/
|
|
1328
|
+
'data': Array<EventType>;
|
|
1329
|
+
/**
|
|
1330
|
+
*
|
|
1331
|
+
* @type {{ [key: string]: string; }}
|
|
1332
|
+
* @memberof PageEventType
|
|
1333
|
+
*/
|
|
1334
|
+
'links': {
|
|
1335
|
+
[key: string]: string;
|
|
1336
|
+
};
|
|
1337
|
+
/**
|
|
1338
|
+
*
|
|
1339
|
+
* @type {Meta}
|
|
1340
|
+
* @memberof PageEventType
|
|
1341
|
+
*/
|
|
1342
|
+
'meta': Meta;
|
|
1343
|
+
}
|
|
1344
|
+
/**
|
|
1345
|
+
*
|
|
1346
|
+
* @export
|
|
1347
|
+
* @interface PageNotificationHistory
|
|
1348
|
+
*/
|
|
1349
|
+
export interface PageNotificationHistory {
|
|
1350
|
+
/**
|
|
1351
|
+
*
|
|
1352
|
+
* @type {Array<NotificationHistory>}
|
|
1353
|
+
* @memberof PageNotificationHistory
|
|
1354
|
+
*/
|
|
1355
|
+
'data': Array<NotificationHistory>;
|
|
1356
|
+
/**
|
|
1357
|
+
*
|
|
1358
|
+
* @type {{ [key: string]: string; }}
|
|
1359
|
+
* @memberof PageNotificationHistory
|
|
1360
|
+
*/
|
|
1361
|
+
'links': {
|
|
1362
|
+
[key: string]: string;
|
|
1363
|
+
};
|
|
1364
|
+
/**
|
|
1365
|
+
*
|
|
1366
|
+
* @type {Meta}
|
|
1367
|
+
* @memberof PageNotificationHistory
|
|
1368
|
+
*/
|
|
1369
|
+
'meta': Meta;
|
|
1370
|
+
}
|
|
1371
|
+
/**
|
|
1372
|
+
*
|
|
1373
|
+
* @export
|
|
1374
|
+
* @interface RenderEmailTemplateRequest
|
|
1375
|
+
*/
|
|
1376
|
+
export interface RenderEmailTemplateRequest {
|
|
1377
|
+
/**
|
|
1378
|
+
*
|
|
1379
|
+
* @type {Array<string>}
|
|
1380
|
+
* @memberof RenderEmailTemplateRequest
|
|
1381
|
+
*/
|
|
1382
|
+
'template': Array<string>;
|
|
1383
|
+
/**
|
|
1384
|
+
*
|
|
1385
|
+
* @type {string}
|
|
1386
|
+
* @memberof RenderEmailTemplateRequest
|
|
1387
|
+
*/
|
|
1388
|
+
'payload': string;
|
|
1389
|
+
}
|
|
1390
|
+
/**
|
|
1391
|
+
*
|
|
1392
|
+
* @export
|
|
1393
|
+
* @interface RequestDefaultBehaviorGroupPropertyList
|
|
1394
|
+
*/
|
|
1395
|
+
export interface RequestDefaultBehaviorGroupPropertyList {
|
|
1396
|
+
/**
|
|
1397
|
+
*
|
|
1398
|
+
* @type {boolean}
|
|
1399
|
+
* @memberof RequestDefaultBehaviorGroupPropertyList
|
|
1400
|
+
*/
|
|
1401
|
+
'only_admins': boolean;
|
|
1402
|
+
/**
|
|
1403
|
+
*
|
|
1404
|
+
* @type {boolean}
|
|
1405
|
+
* @memberof RequestDefaultBehaviorGroupPropertyList
|
|
1406
|
+
*/
|
|
1407
|
+
'ignore_preferences': boolean;
|
|
1408
|
+
}
|
|
1409
|
+
/**
|
|
1410
|
+
*
|
|
1411
|
+
* @export
|
|
1412
|
+
* @interface RequestSystemSubscriptionProperties
|
|
1413
|
+
*/
|
|
1414
|
+
export interface RequestSystemSubscriptionProperties {
|
|
1415
|
+
/**
|
|
1416
|
+
*
|
|
1417
|
+
* @type {boolean}
|
|
1418
|
+
* @memberof RequestSystemSubscriptionProperties
|
|
1419
|
+
*/
|
|
1420
|
+
'only_admins': boolean;
|
|
1421
|
+
/**
|
|
1422
|
+
*
|
|
1423
|
+
* @type {string}
|
|
1424
|
+
* @memberof RequestSystemSubscriptionProperties
|
|
1425
|
+
*/
|
|
1426
|
+
'group_id'?: string;
|
|
1427
|
+
}
|
|
1428
|
+
/**
|
|
1429
|
+
*
|
|
1430
|
+
* @export
|
|
1431
|
+
* @interface ServerInfo
|
|
1432
|
+
*/
|
|
1433
|
+
export interface ServerInfo {
|
|
1434
|
+
/**
|
|
1435
|
+
*
|
|
1436
|
+
* @type {Environment}
|
|
1437
|
+
* @memberof ServerInfo
|
|
1438
|
+
*/
|
|
1439
|
+
'environment'?: Environment;
|
|
1440
|
+
}
|
|
1441
|
+
/**
|
|
1442
|
+
*
|
|
1443
|
+
* @export
|
|
1444
|
+
* @interface SettingsValues
|
|
1445
|
+
*/
|
|
1446
|
+
export interface SettingsValues {
|
|
1447
|
+
/**
|
|
1448
|
+
*
|
|
1449
|
+
* @type {{ [key: string]: BundleSettingsValue1; }}
|
|
1450
|
+
* @memberof SettingsValues
|
|
1451
|
+
*/
|
|
1452
|
+
'bundles'?: {
|
|
1453
|
+
[key: string]: BundleSettingsValue1;
|
|
1454
|
+
};
|
|
1455
|
+
}
|
|
1456
|
+
/**
|
|
1457
|
+
*
|
|
1458
|
+
* @export
|
|
1459
|
+
* @interface SettingsValuesByEventType
|
|
1460
|
+
*/
|
|
1461
|
+
export interface SettingsValuesByEventType {
|
|
1462
|
+
/**
|
|
1463
|
+
*
|
|
1464
|
+
* @type {{ [key: string]: BundleSettingsValue; }}
|
|
1465
|
+
* @memberof SettingsValuesByEventType
|
|
1466
|
+
*/
|
|
1467
|
+
'bundles'?: {
|
|
1468
|
+
[key: string]: BundleSettingsValue;
|
|
1469
|
+
};
|
|
1470
|
+
}
|
|
1471
|
+
/**
|
|
1472
|
+
*
|
|
1473
|
+
* @export
|
|
1474
|
+
* @enum {string}
|
|
1475
|
+
*/
|
|
1476
|
+
export declare const Status: {
|
|
1477
|
+
readonly Up: "UP";
|
|
1478
|
+
readonly Maintenance: "MAINTENANCE";
|
|
1479
|
+
};
|
|
1480
|
+
export declare type Status = typeof Status[keyof typeof Status];
|
|
1481
|
+
/**
|
|
1482
|
+
*
|
|
1483
|
+
* @export
|
|
1484
|
+
* @interface SystemSubscriptionProperties
|
|
1485
|
+
*/
|
|
1486
|
+
export interface SystemSubscriptionProperties {
|
|
1487
|
+
/**
|
|
1488
|
+
*
|
|
1489
|
+
* @type {boolean}
|
|
1490
|
+
* @memberof SystemSubscriptionProperties
|
|
1491
|
+
*/
|
|
1492
|
+
'only_admins': boolean;
|
|
1493
|
+
/**
|
|
1494
|
+
*
|
|
1495
|
+
* @type {boolean}
|
|
1496
|
+
* @memberof SystemSubscriptionProperties
|
|
1497
|
+
*/
|
|
1498
|
+
'ignore_preferences': boolean;
|
|
1499
|
+
/**
|
|
1500
|
+
*
|
|
1501
|
+
* @type {string}
|
|
1502
|
+
* @memberof SystemSubscriptionProperties
|
|
1503
|
+
*/
|
|
1504
|
+
'group_id'?: string;
|
|
1505
|
+
}
|
|
1506
|
+
/**
|
|
1507
|
+
*
|
|
1508
|
+
* @export
|
|
1509
|
+
* @interface Template
|
|
1510
|
+
*/
|
|
1511
|
+
export interface Template {
|
|
1512
|
+
/**
|
|
1513
|
+
*
|
|
1514
|
+
* @type {string}
|
|
1515
|
+
* @memberof Template
|
|
1516
|
+
*/
|
|
1517
|
+
'created'?: string;
|
|
1518
|
+
/**
|
|
1519
|
+
*
|
|
1520
|
+
* @type {string}
|
|
1521
|
+
* @memberof Template
|
|
1522
|
+
*/
|
|
1523
|
+
'updated'?: string;
|
|
1524
|
+
/**
|
|
1525
|
+
*
|
|
1526
|
+
* @type {string}
|
|
1527
|
+
* @memberof Template
|
|
1528
|
+
*/
|
|
1529
|
+
'id'?: string;
|
|
1530
|
+
/**
|
|
1531
|
+
*
|
|
1532
|
+
* @type {string}
|
|
1533
|
+
* @memberof Template
|
|
1534
|
+
*/
|
|
1535
|
+
'name': string;
|
|
1536
|
+
/**
|
|
1537
|
+
*
|
|
1538
|
+
* @type {string}
|
|
1539
|
+
* @memberof Template
|
|
1540
|
+
*/
|
|
1541
|
+
'description': string;
|
|
1542
|
+
/**
|
|
1543
|
+
*
|
|
1544
|
+
* @type {string}
|
|
1545
|
+
* @memberof Template
|
|
1546
|
+
*/
|
|
1547
|
+
'data': string;
|
|
1548
|
+
}
|
|
1549
|
+
/**
|
|
1550
|
+
*
|
|
1551
|
+
* @export
|
|
1552
|
+
* @interface TriggerDailyDigestRequest
|
|
1553
|
+
*/
|
|
1554
|
+
export interface TriggerDailyDigestRequest {
|
|
1555
|
+
/**
|
|
1556
|
+
*
|
|
1557
|
+
* @type {string}
|
|
1558
|
+
* @memberof TriggerDailyDigestRequest
|
|
1559
|
+
*/
|
|
1560
|
+
'application_name': string;
|
|
1561
|
+
/**
|
|
1562
|
+
*
|
|
1563
|
+
* @type {string}
|
|
1564
|
+
* @memberof TriggerDailyDigestRequest
|
|
1565
|
+
*/
|
|
1566
|
+
'bundle_name': string;
|
|
1567
|
+
/**
|
|
1568
|
+
*
|
|
1569
|
+
* @type {string}
|
|
1570
|
+
* @memberof TriggerDailyDigestRequest
|
|
1571
|
+
*/
|
|
1572
|
+
'end'?: string;
|
|
1573
|
+
/**
|
|
1574
|
+
*
|
|
1575
|
+
* @type {string}
|
|
1576
|
+
* @memberof TriggerDailyDigestRequest
|
|
1577
|
+
*/
|
|
1578
|
+
'org_id': string;
|
|
1579
|
+
/**
|
|
1580
|
+
*
|
|
1581
|
+
* @type {string}
|
|
1582
|
+
* @memberof TriggerDailyDigestRequest
|
|
1583
|
+
*/
|
|
1584
|
+
'start'?: string;
|
|
1585
|
+
}
|
|
1586
|
+
/**
|
|
1587
|
+
*
|
|
1588
|
+
* @export
|
|
1589
|
+
* @interface UpdateBehaviorGroupRequest
|
|
1590
|
+
*/
|
|
1591
|
+
export interface UpdateBehaviorGroupRequest {
|
|
1592
|
+
/**
|
|
1593
|
+
*
|
|
1594
|
+
* @type {string}
|
|
1595
|
+
* @memberof UpdateBehaviorGroupRequest
|
|
1596
|
+
*/
|
|
1597
|
+
'display_name'?: string;
|
|
1598
|
+
/**
|
|
1599
|
+
*
|
|
1600
|
+
* @type {Array<string>}
|
|
1601
|
+
* @memberof UpdateBehaviorGroupRequest
|
|
1602
|
+
*/
|
|
1603
|
+
'endpoint_ids'?: Array<string>;
|
|
1604
|
+
/**
|
|
1605
|
+
*
|
|
1606
|
+
* @type {Set<string>}
|
|
1607
|
+
* @memberof UpdateBehaviorGroupRequest
|
|
1608
|
+
*/
|
|
1609
|
+
'event_type_ids'?: Set<string>;
|
|
1610
|
+
/**
|
|
1611
|
+
*
|
|
1612
|
+
* @type {boolean}
|
|
1613
|
+
* @memberof UpdateBehaviorGroupRequest
|
|
1614
|
+
*/
|
|
1615
|
+
'display_name_not_null_and_blank'?: boolean;
|
|
1616
|
+
}
|
|
1617
|
+
/**
|
|
1618
|
+
*
|
|
1619
|
+
* @export
|
|
1620
|
+
* @interface UserConfigPreferences
|
|
1621
|
+
*/
|
|
1622
|
+
export interface UserConfigPreferences {
|
|
1623
|
+
/**
|
|
1624
|
+
*
|
|
1625
|
+
* @type {boolean}
|
|
1626
|
+
* @memberof UserConfigPreferences
|
|
1627
|
+
*/
|
|
1628
|
+
'instant_email'?: boolean;
|
|
1629
|
+
/**
|
|
1630
|
+
*
|
|
1631
|
+
* @type {boolean}
|
|
1632
|
+
* @memberof UserConfigPreferences
|
|
1633
|
+
*/
|
|
1634
|
+
'daily_email'?: boolean;
|
|
1635
|
+
}
|
|
1636
|
+
/**
|
|
1637
|
+
*
|
|
1638
|
+
* @export
|
|
1639
|
+
* @interface WebhookProperties
|
|
1640
|
+
*/
|
|
1641
|
+
export interface WebhookProperties {
|
|
1642
|
+
/**
|
|
1643
|
+
*
|
|
1644
|
+
* @type {string}
|
|
1645
|
+
* @memberof WebhookProperties
|
|
1646
|
+
*/
|
|
1647
|
+
'url': string;
|
|
1648
|
+
/**
|
|
1649
|
+
*
|
|
1650
|
+
* @type {HttpType}
|
|
1651
|
+
* @memberof WebhookProperties
|
|
1652
|
+
*/
|
|
1653
|
+
'method': HttpType;
|
|
1654
|
+
/**
|
|
1655
|
+
*
|
|
1656
|
+
* @type {boolean}
|
|
1657
|
+
* @memberof WebhookProperties
|
|
1658
|
+
*/
|
|
1659
|
+
'disable_ssl_verification': boolean;
|
|
1660
|
+
/**
|
|
1661
|
+
*
|
|
1662
|
+
* @type {string}
|
|
1663
|
+
* @memberof WebhookProperties
|
|
1664
|
+
*/
|
|
1665
|
+
'secret_token'?: string;
|
|
1666
|
+
/**
|
|
1667
|
+
*
|
|
1668
|
+
* @type {BasicAuthentication}
|
|
1669
|
+
* @memberof WebhookProperties
|
|
1670
|
+
*/
|
|
1671
|
+
'basic_authentication'?: BasicAuthentication;
|
|
1672
|
+
}
|
|
1673
|
+
/**
|
|
1674
|
+
* EventResourceV1GetEventsApi - axios parameter creator
|
|
1675
|
+
* @export
|
|
1676
|
+
*/
|
|
1677
|
+
export declare const EventResourceV1GetEventsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1678
|
+
/**
|
|
1679
|
+
* Allowed `sort_by` fields are `bundle`, `application`, `event` and `created`. The ordering can be optionally specified by appending `:asc` or `:desc` to the field, e.g. `bundle:desc`. Defaults to `desc` for the `created` field and to `asc` for all other fields.
|
|
1680
|
+
* @summary Retrieve the event log entries.
|
|
1681
|
+
* @param {Set<string>} [appIds]
|
|
1682
|
+
* @param {Set<string>} [bundleIds]
|
|
1683
|
+
* @param {string} [endDate]
|
|
1684
|
+
* @param {Set<string>} [endpointTypes]
|
|
1685
|
+
* @param {string} [eventTypeDisplayName]
|
|
1686
|
+
* @param {boolean} [includeActions]
|
|
1687
|
+
* @param {boolean} [includeDetails]
|
|
1688
|
+
* @param {boolean} [includePayload]
|
|
1689
|
+
* @param {Set<boolean>} [invocationResults]
|
|
1690
|
+
* @param {number} [limit]
|
|
1691
|
+
* @param {number} [offset]
|
|
1692
|
+
* @param {number} [pageNumber]
|
|
1693
|
+
* @param {string} [sortBy]
|
|
1694
|
+
* @param {string} [sortBy2]
|
|
1695
|
+
* @param {string} [startDate]
|
|
1696
|
+
* @param {Set<EventLogEntryActionStatus>} [status]
|
|
1697
|
+
* @param {*} [options] Override http request option.
|
|
1698
|
+
* @throws {RequiredError}
|
|
1699
|
+
*/
|
|
1700
|
+
eventResourceV1GetEvents: (appIds?: Set<string>, bundleIds?: Set<string>, endDate?: string, endpointTypes?: Set<string>, eventTypeDisplayName?: string, includeActions?: boolean, includeDetails?: boolean, includePayload?: boolean, invocationResults?: Set<boolean>, limit?: number, offset?: number, pageNumber?: number, sortBy?: string, sortBy2?: string, startDate?: string, status?: Set<EventLogEntryActionStatus>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1701
|
+
};
|
|
1702
|
+
/**
|
|
1703
|
+
* EventResourceV1GetEventsApi - functional programming interface
|
|
1704
|
+
* @export
|
|
1705
|
+
*/
|
|
1706
|
+
export declare const EventResourceV1GetEventsApiFp: (configuration?: Configuration) => {
|
|
1707
|
+
/**
|
|
1708
|
+
* Allowed `sort_by` fields are `bundle`, `application`, `event` and `created`. The ordering can be optionally specified by appending `:asc` or `:desc` to the field, e.g. `bundle:desc`. Defaults to `desc` for the `created` field and to `asc` for all other fields.
|
|
1709
|
+
* @summary Retrieve the event log entries.
|
|
1710
|
+
* @param {Set<string>} [appIds]
|
|
1711
|
+
* @param {Set<string>} [bundleIds]
|
|
1712
|
+
* @param {string} [endDate]
|
|
1713
|
+
* @param {Set<string>} [endpointTypes]
|
|
1714
|
+
* @param {string} [eventTypeDisplayName]
|
|
1715
|
+
* @param {boolean} [includeActions]
|
|
1716
|
+
* @param {boolean} [includeDetails]
|
|
1717
|
+
* @param {boolean} [includePayload]
|
|
1718
|
+
* @param {Set<boolean>} [invocationResults]
|
|
1719
|
+
* @param {number} [limit]
|
|
1720
|
+
* @param {number} [offset]
|
|
1721
|
+
* @param {number} [pageNumber]
|
|
1722
|
+
* @param {string} [sortBy]
|
|
1723
|
+
* @param {string} [sortBy2]
|
|
1724
|
+
* @param {string} [startDate]
|
|
1725
|
+
* @param {Set<EventLogEntryActionStatus>} [status]
|
|
1726
|
+
* @param {*} [options] Override http request option.
|
|
1727
|
+
* @throws {RequiredError}
|
|
1728
|
+
*/
|
|
1729
|
+
eventResourceV1GetEvents(appIds?: Set<string>, bundleIds?: Set<string>, endDate?: string, endpointTypes?: Set<string>, eventTypeDisplayName?: string, includeActions?: boolean, includeDetails?: boolean, includePayload?: boolean, invocationResults?: Set<boolean>, limit?: number, offset?: number, pageNumber?: number, sortBy?: string, sortBy2?: string, startDate?: string, status?: Set<EventLogEntryActionStatus>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PageEventLogEntry>>;
|
|
1730
|
+
};
|
|
1731
|
+
/**
|
|
1732
|
+
* EventResourceV1GetEventsApi - factory interface
|
|
1733
|
+
* @export
|
|
1734
|
+
*/
|
|
1735
|
+
export declare const EventResourceV1GetEventsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1736
|
+
/**
|
|
1737
|
+
* Allowed `sort_by` fields are `bundle`, `application`, `event` and `created`. The ordering can be optionally specified by appending `:asc` or `:desc` to the field, e.g. `bundle:desc`. Defaults to `desc` for the `created` field and to `asc` for all other fields.
|
|
1738
|
+
* @summary Retrieve the event log entries.
|
|
1739
|
+
* @param {Set<string>} [appIds]
|
|
1740
|
+
* @param {Set<string>} [bundleIds]
|
|
1741
|
+
* @param {string} [endDate]
|
|
1742
|
+
* @param {Set<string>} [endpointTypes]
|
|
1743
|
+
* @param {string} [eventTypeDisplayName]
|
|
1744
|
+
* @param {boolean} [includeActions]
|
|
1745
|
+
* @param {boolean} [includeDetails]
|
|
1746
|
+
* @param {boolean} [includePayload]
|
|
1747
|
+
* @param {Set<boolean>} [invocationResults]
|
|
1748
|
+
* @param {number} [limit]
|
|
1749
|
+
* @param {number} [offset]
|
|
1750
|
+
* @param {number} [pageNumber]
|
|
1751
|
+
* @param {string} [sortBy]
|
|
1752
|
+
* @param {string} [sortBy2]
|
|
1753
|
+
* @param {string} [startDate]
|
|
1754
|
+
* @param {Set<EventLogEntryActionStatus>} [status]
|
|
1755
|
+
* @param {*} [options] Override http request option.
|
|
1756
|
+
* @throws {RequiredError}
|
|
1757
|
+
*/
|
|
1758
|
+
eventResourceV1GetEvents(appIds?: Set<string>, bundleIds?: Set<string>, endDate?: string, endpointTypes?: Set<string>, eventTypeDisplayName?: string, includeActions?: boolean, includeDetails?: boolean, includePayload?: boolean, invocationResults?: Set<boolean>, limit?: number, offset?: number, pageNumber?: number, sortBy?: string, sortBy2?: string, startDate?: string, status?: Set<EventLogEntryActionStatus>, options?: any): AxiosPromise<PageEventLogEntry>;
|
|
1759
|
+
};
|
|
1760
|
+
/**
|
|
1761
|
+
* EventResourceV1GetEventsApi - object-oriented interface
|
|
1762
|
+
* @export
|
|
1763
|
+
* @class EventResourceV1GetEventsApi
|
|
1764
|
+
* @extends {BaseAPI}
|
|
1765
|
+
*/
|
|
1766
|
+
export declare class EventResourceV1GetEventsApi extends BaseAPI {
|
|
1767
|
+
/**
|
|
1768
|
+
* Allowed `sort_by` fields are `bundle`, `application`, `event` and `created`. The ordering can be optionally specified by appending `:asc` or `:desc` to the field, e.g. `bundle:desc`. Defaults to `desc` for the `created` field and to `asc` for all other fields.
|
|
1769
|
+
* @summary Retrieve the event log entries.
|
|
1770
|
+
* @param {Set<string>} [appIds]
|
|
1771
|
+
* @param {Set<string>} [bundleIds]
|
|
1772
|
+
* @param {string} [endDate]
|
|
1773
|
+
* @param {Set<string>} [endpointTypes]
|
|
1774
|
+
* @param {string} [eventTypeDisplayName]
|
|
1775
|
+
* @param {boolean} [includeActions]
|
|
1776
|
+
* @param {boolean} [includeDetails]
|
|
1777
|
+
* @param {boolean} [includePayload]
|
|
1778
|
+
* @param {Set<boolean>} [invocationResults]
|
|
1779
|
+
* @param {number} [limit]
|
|
1780
|
+
* @param {number} [offset]
|
|
1781
|
+
* @param {number} [pageNumber]
|
|
1782
|
+
* @param {string} [sortBy]
|
|
1783
|
+
* @param {string} [sortBy2]
|
|
1784
|
+
* @param {string} [startDate]
|
|
1785
|
+
* @param {Set<EventLogEntryActionStatus>} [status]
|
|
1786
|
+
* @param {*} [options] Override http request option.
|
|
1787
|
+
* @throws {RequiredError}
|
|
1788
|
+
* @memberof EventResourceV1GetEventsApi
|
|
1789
|
+
*/
|
|
1790
|
+
eventResourceV1GetEvents(appIds?: Set<string>, bundleIds?: Set<string>, endDate?: string, endpointTypes?: Set<string>, eventTypeDisplayName?: string, includeActions?: boolean, includeDetails?: boolean, includePayload?: boolean, invocationResults?: Set<boolean>, limit?: number, offset?: number, pageNumber?: number, sortBy?: string, sortBy2?: string, startDate?: string, status?: Set<EventLogEntryActionStatus>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PageEventLogEntry>>;
|
|
1791
|
+
}
|
|
1792
|
+
/**
|
|
1793
|
+
* NotificationResourceV1AppendBehaviorGroupToEventTypeApi - axios parameter creator
|
|
1794
|
+
* @export
|
|
1795
|
+
*/
|
|
1796
|
+
export declare const NotificationResourceV1AppendBehaviorGroupToEventTypeApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1797
|
+
/**
|
|
1798
|
+
*
|
|
1799
|
+
* @summary Add a behavior group to the given event type.
|
|
1800
|
+
* @param {string} behaviorGroupUuid
|
|
1801
|
+
* @param {string} eventTypeUuid
|
|
1802
|
+
* @param {*} [options] Override http request option.
|
|
1803
|
+
* @throws {RequiredError}
|
|
1804
|
+
*/
|
|
1805
|
+
notificationResourceV1AppendBehaviorGroupToEventType: (behaviorGroupUuid: string, eventTypeUuid: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1806
|
+
};
|
|
1807
|
+
/**
|
|
1808
|
+
* NotificationResourceV1AppendBehaviorGroupToEventTypeApi - functional programming interface
|
|
1809
|
+
* @export
|
|
1810
|
+
*/
|
|
1811
|
+
export declare const NotificationResourceV1AppendBehaviorGroupToEventTypeApiFp: (configuration?: Configuration) => {
|
|
1812
|
+
/**
|
|
1813
|
+
*
|
|
1814
|
+
* @summary Add a behavior group to the given event type.
|
|
1815
|
+
* @param {string} behaviorGroupUuid
|
|
1816
|
+
* @param {string} eventTypeUuid
|
|
1817
|
+
* @param {*} [options] Override http request option.
|
|
1818
|
+
* @throws {RequiredError}
|
|
1819
|
+
*/
|
|
1820
|
+
notificationResourceV1AppendBehaviorGroupToEventType(behaviorGroupUuid: string, eventTypeUuid: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1821
|
+
};
|
|
1822
|
+
/**
|
|
1823
|
+
* NotificationResourceV1AppendBehaviorGroupToEventTypeApi - factory interface
|
|
1824
|
+
* @export
|
|
1825
|
+
*/
|
|
1826
|
+
export declare const NotificationResourceV1AppendBehaviorGroupToEventTypeApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1827
|
+
/**
|
|
1828
|
+
*
|
|
1829
|
+
* @summary Add a behavior group to the given event type.
|
|
1830
|
+
* @param {string} behaviorGroupUuid
|
|
1831
|
+
* @param {string} eventTypeUuid
|
|
1832
|
+
* @param {*} [options] Override http request option.
|
|
1833
|
+
* @throws {RequiredError}
|
|
1834
|
+
*/
|
|
1835
|
+
notificationResourceV1AppendBehaviorGroupToEventType(behaviorGroupUuid: string, eventTypeUuid: string, options?: any): AxiosPromise<void>;
|
|
1836
|
+
};
|
|
1837
|
+
/**
|
|
1838
|
+
* NotificationResourceV1AppendBehaviorGroupToEventTypeApi - object-oriented interface
|
|
1839
|
+
* @export
|
|
1840
|
+
* @class NotificationResourceV1AppendBehaviorGroupToEventTypeApi
|
|
1841
|
+
* @extends {BaseAPI}
|
|
1842
|
+
*/
|
|
1843
|
+
export declare class NotificationResourceV1AppendBehaviorGroupToEventTypeApi extends BaseAPI {
|
|
1844
|
+
/**
|
|
1845
|
+
*
|
|
1846
|
+
* @summary Add a behavior group to the given event type.
|
|
1847
|
+
* @param {string} behaviorGroupUuid
|
|
1848
|
+
* @param {string} eventTypeUuid
|
|
1849
|
+
* @param {*} [options] Override http request option.
|
|
1850
|
+
* @throws {RequiredError}
|
|
1851
|
+
* @memberof NotificationResourceV1AppendBehaviorGroupToEventTypeApi
|
|
1852
|
+
*/
|
|
1853
|
+
notificationResourceV1AppendBehaviorGroupToEventType(behaviorGroupUuid: string, eventTypeUuid: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void>>;
|
|
1854
|
+
}
|
|
1855
|
+
/**
|
|
1856
|
+
* NotificationResourceV1CreateBehaviorGroupApi - axios parameter creator
|
|
1857
|
+
* @export
|
|
1858
|
+
*/
|
|
1859
|
+
export declare const NotificationResourceV1CreateBehaviorGroupApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1860
|
+
/**
|
|
1861
|
+
*
|
|
1862
|
+
* @summary Create a behavior group - assigning actions and linking to event types as requested
|
|
1863
|
+
* @param {CreateBehaviorGroupRequest} createBehaviorGroupRequest
|
|
1864
|
+
* @param {*} [options] Override http request option.
|
|
1865
|
+
* @throws {RequiredError}
|
|
1866
|
+
*/
|
|
1867
|
+
notificationResourceV1CreateBehaviorGroup: (createBehaviorGroupRequest: CreateBehaviorGroupRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1868
|
+
};
|
|
1869
|
+
/**
|
|
1870
|
+
* NotificationResourceV1CreateBehaviorGroupApi - functional programming interface
|
|
1871
|
+
* @export
|
|
1872
|
+
*/
|
|
1873
|
+
export declare const NotificationResourceV1CreateBehaviorGroupApiFp: (configuration?: Configuration) => {
|
|
1874
|
+
/**
|
|
1875
|
+
*
|
|
1876
|
+
* @summary Create a behavior group - assigning actions and linking to event types as requested
|
|
1877
|
+
* @param {CreateBehaviorGroupRequest} createBehaviorGroupRequest
|
|
1878
|
+
* @param {*} [options] Override http request option.
|
|
1879
|
+
* @throws {RequiredError}
|
|
1880
|
+
*/
|
|
1881
|
+
notificationResourceV1CreateBehaviorGroup(createBehaviorGroupRequest: CreateBehaviorGroupRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateBehaviorGroupResponse>>;
|
|
1882
|
+
};
|
|
1883
|
+
/**
|
|
1884
|
+
* NotificationResourceV1CreateBehaviorGroupApi - factory interface
|
|
1885
|
+
* @export
|
|
1886
|
+
*/
|
|
1887
|
+
export declare const NotificationResourceV1CreateBehaviorGroupApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1888
|
+
/**
|
|
1889
|
+
*
|
|
1890
|
+
* @summary Create a behavior group - assigning actions and linking to event types as requested
|
|
1891
|
+
* @param {CreateBehaviorGroupRequest} createBehaviorGroupRequest
|
|
1892
|
+
* @param {*} [options] Override http request option.
|
|
1893
|
+
* @throws {RequiredError}
|
|
1894
|
+
*/
|
|
1895
|
+
notificationResourceV1CreateBehaviorGroup(createBehaviorGroupRequest: CreateBehaviorGroupRequest, options?: any): AxiosPromise<CreateBehaviorGroupResponse>;
|
|
1896
|
+
};
|
|
1897
|
+
/**
|
|
1898
|
+
* NotificationResourceV1CreateBehaviorGroupApi - object-oriented interface
|
|
1899
|
+
* @export
|
|
1900
|
+
* @class NotificationResourceV1CreateBehaviorGroupApi
|
|
1901
|
+
* @extends {BaseAPI}
|
|
1902
|
+
*/
|
|
1903
|
+
export declare class NotificationResourceV1CreateBehaviorGroupApi extends BaseAPI {
|
|
1904
|
+
/**
|
|
1905
|
+
*
|
|
1906
|
+
* @summary Create a behavior group - assigning actions and linking to event types as requested
|
|
1907
|
+
* @param {CreateBehaviorGroupRequest} createBehaviorGroupRequest
|
|
1908
|
+
* @param {*} [options] Override http request option.
|
|
1909
|
+
* @throws {RequiredError}
|
|
1910
|
+
* @memberof NotificationResourceV1CreateBehaviorGroupApi
|
|
1911
|
+
*/
|
|
1912
|
+
notificationResourceV1CreateBehaviorGroup(createBehaviorGroupRequest: CreateBehaviorGroupRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateBehaviorGroupResponse>>;
|
|
1913
|
+
}
|
|
1914
|
+
/**
|
|
1915
|
+
* NotificationResourceV1DeleteBehaviorGroupApi - axios parameter creator
|
|
1916
|
+
* @export
|
|
1917
|
+
*/
|
|
1918
|
+
export declare const NotificationResourceV1DeleteBehaviorGroupApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1919
|
+
/**
|
|
1920
|
+
*
|
|
1921
|
+
* @summary Delete a behavior group.
|
|
1922
|
+
* @param {string} id The UUID of the behavior group to delete
|
|
1923
|
+
* @param {*} [options] Override http request option.
|
|
1924
|
+
* @throws {RequiredError}
|
|
1925
|
+
*/
|
|
1926
|
+
notificationResourceV1DeleteBehaviorGroup: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1927
|
+
};
|
|
1928
|
+
/**
|
|
1929
|
+
* NotificationResourceV1DeleteBehaviorGroupApi - functional programming interface
|
|
1930
|
+
* @export
|
|
1931
|
+
*/
|
|
1932
|
+
export declare const NotificationResourceV1DeleteBehaviorGroupApiFp: (configuration?: Configuration) => {
|
|
1933
|
+
/**
|
|
1934
|
+
*
|
|
1935
|
+
* @summary Delete a behavior group.
|
|
1936
|
+
* @param {string} id The UUID of the behavior group to delete
|
|
1937
|
+
* @param {*} [options] Override http request option.
|
|
1938
|
+
* @throws {RequiredError}
|
|
1939
|
+
*/
|
|
1940
|
+
notificationResourceV1DeleteBehaviorGroup(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
1941
|
+
};
|
|
1942
|
+
/**
|
|
1943
|
+
* NotificationResourceV1DeleteBehaviorGroupApi - factory interface
|
|
1944
|
+
* @export
|
|
1945
|
+
*/
|
|
1946
|
+
export declare const NotificationResourceV1DeleteBehaviorGroupApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1947
|
+
/**
|
|
1948
|
+
*
|
|
1949
|
+
* @summary Delete a behavior group.
|
|
1950
|
+
* @param {string} id The UUID of the behavior group to delete
|
|
1951
|
+
* @param {*} [options] Override http request option.
|
|
1952
|
+
* @throws {RequiredError}
|
|
1953
|
+
*/
|
|
1954
|
+
notificationResourceV1DeleteBehaviorGroup(id: string, options?: any): AxiosPromise<boolean>;
|
|
1955
|
+
};
|
|
1956
|
+
/**
|
|
1957
|
+
* NotificationResourceV1DeleteBehaviorGroupApi - object-oriented interface
|
|
1958
|
+
* @export
|
|
1959
|
+
* @class NotificationResourceV1DeleteBehaviorGroupApi
|
|
1960
|
+
* @extends {BaseAPI}
|
|
1961
|
+
*/
|
|
1962
|
+
export declare class NotificationResourceV1DeleteBehaviorGroupApi extends BaseAPI {
|
|
1963
|
+
/**
|
|
1964
|
+
*
|
|
1965
|
+
* @summary Delete a behavior group.
|
|
1966
|
+
* @param {string} id The UUID of the behavior group to delete
|
|
1967
|
+
* @param {*} [options] Override http request option.
|
|
1968
|
+
* @throws {RequiredError}
|
|
1969
|
+
* @memberof NotificationResourceV1DeleteBehaviorGroupApi
|
|
1970
|
+
*/
|
|
1971
|
+
notificationResourceV1DeleteBehaviorGroup(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
1972
|
+
}
|
|
1973
|
+
/**
|
|
1974
|
+
* NotificationResourceV1DeleteBehaviorGroupFromEventTypeApi - axios parameter creator
|
|
1975
|
+
* @export
|
|
1976
|
+
*/
|
|
1977
|
+
export declare const NotificationResourceV1DeleteBehaviorGroupFromEventTypeApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1978
|
+
/**
|
|
1979
|
+
*
|
|
1980
|
+
* @summary Delete a behavior group from the given event type.
|
|
1981
|
+
* @param {string} behaviorGroupId
|
|
1982
|
+
* @param {string} eventTypeId
|
|
1983
|
+
* @param {*} [options] Override http request option.
|
|
1984
|
+
* @throws {RequiredError}
|
|
1985
|
+
*/
|
|
1986
|
+
notificationResourceV1DeleteBehaviorGroupFromEventType: (behaviorGroupId: string, eventTypeId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1987
|
+
};
|
|
1988
|
+
/**
|
|
1989
|
+
* NotificationResourceV1DeleteBehaviorGroupFromEventTypeApi - functional programming interface
|
|
1990
|
+
* @export
|
|
1991
|
+
*/
|
|
1992
|
+
export declare const NotificationResourceV1DeleteBehaviorGroupFromEventTypeApiFp: (configuration?: Configuration) => {
|
|
1993
|
+
/**
|
|
1994
|
+
*
|
|
1995
|
+
* @summary Delete a behavior group from the given event type.
|
|
1996
|
+
* @param {string} behaviorGroupId
|
|
1997
|
+
* @param {string} eventTypeId
|
|
1998
|
+
* @param {*} [options] Override http request option.
|
|
1999
|
+
* @throws {RequiredError}
|
|
2000
|
+
*/
|
|
2001
|
+
notificationResourceV1DeleteBehaviorGroupFromEventType(behaviorGroupId: string, eventTypeId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2002
|
+
};
|
|
2003
|
+
/**
|
|
2004
|
+
* NotificationResourceV1DeleteBehaviorGroupFromEventTypeApi - factory interface
|
|
2005
|
+
* @export
|
|
2006
|
+
*/
|
|
2007
|
+
export declare const NotificationResourceV1DeleteBehaviorGroupFromEventTypeApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2008
|
+
/**
|
|
2009
|
+
*
|
|
2010
|
+
* @summary Delete a behavior group from the given event type.
|
|
2011
|
+
* @param {string} behaviorGroupId
|
|
2012
|
+
* @param {string} eventTypeId
|
|
2013
|
+
* @param {*} [options] Override http request option.
|
|
2014
|
+
* @throws {RequiredError}
|
|
2015
|
+
*/
|
|
2016
|
+
notificationResourceV1DeleteBehaviorGroupFromEventType(behaviorGroupId: string, eventTypeId: string, options?: any): AxiosPromise<void>;
|
|
2017
|
+
};
|
|
2018
|
+
/**
|
|
2019
|
+
* NotificationResourceV1DeleteBehaviorGroupFromEventTypeApi - object-oriented interface
|
|
2020
|
+
* @export
|
|
2021
|
+
* @class NotificationResourceV1DeleteBehaviorGroupFromEventTypeApi
|
|
2022
|
+
* @extends {BaseAPI}
|
|
2023
|
+
*/
|
|
2024
|
+
export declare class NotificationResourceV1DeleteBehaviorGroupFromEventTypeApi extends BaseAPI {
|
|
2025
|
+
/**
|
|
2026
|
+
*
|
|
2027
|
+
* @summary Delete a behavior group from the given event type.
|
|
2028
|
+
* @param {string} behaviorGroupId
|
|
2029
|
+
* @param {string} eventTypeId
|
|
2030
|
+
* @param {*} [options] Override http request option.
|
|
2031
|
+
* @throws {RequiredError}
|
|
2032
|
+
* @memberof NotificationResourceV1DeleteBehaviorGroupFromEventTypeApi
|
|
2033
|
+
*/
|
|
2034
|
+
notificationResourceV1DeleteBehaviorGroupFromEventType(behaviorGroupId: string, eventTypeId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void>>;
|
|
2035
|
+
}
|
|
2036
|
+
/**
|
|
2037
|
+
* NotificationResourceV1FindBehaviorGroupsByBundleIdApi - axios parameter creator
|
|
2038
|
+
* @export
|
|
2039
|
+
*/
|
|
2040
|
+
export declare const NotificationResourceV1FindBehaviorGroupsByBundleIdApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2041
|
+
/**
|
|
2042
|
+
*
|
|
2043
|
+
* @summary Retrieve the behavior groups of a bundle.
|
|
2044
|
+
* @param {string} bundleId UUID of the bundle to retrieve the behavior groups for.
|
|
2045
|
+
* @param {*} [options] Override http request option.
|
|
2046
|
+
* @throws {RequiredError}
|
|
2047
|
+
*/
|
|
2048
|
+
notificationResourceV1FindBehaviorGroupsByBundleId: (bundleId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2049
|
+
};
|
|
2050
|
+
/**
|
|
2051
|
+
* NotificationResourceV1FindBehaviorGroupsByBundleIdApi - functional programming interface
|
|
2052
|
+
* @export
|
|
2053
|
+
*/
|
|
2054
|
+
export declare const NotificationResourceV1FindBehaviorGroupsByBundleIdApiFp: (configuration?: Configuration) => {
|
|
2055
|
+
/**
|
|
2056
|
+
*
|
|
2057
|
+
* @summary Retrieve the behavior groups of a bundle.
|
|
2058
|
+
* @param {string} bundleId UUID of the bundle to retrieve the behavior groups for.
|
|
2059
|
+
* @param {*} [options] Override http request option.
|
|
2060
|
+
* @throws {RequiredError}
|
|
2061
|
+
*/
|
|
2062
|
+
notificationResourceV1FindBehaviorGroupsByBundleId(bundleId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BehaviorGroup>>>;
|
|
2063
|
+
};
|
|
2064
|
+
/**
|
|
2065
|
+
* NotificationResourceV1FindBehaviorGroupsByBundleIdApi - factory interface
|
|
2066
|
+
* @export
|
|
2067
|
+
*/
|
|
2068
|
+
export declare const NotificationResourceV1FindBehaviorGroupsByBundleIdApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2069
|
+
/**
|
|
2070
|
+
*
|
|
2071
|
+
* @summary Retrieve the behavior groups of a bundle.
|
|
2072
|
+
* @param {string} bundleId UUID of the bundle to retrieve the behavior groups for.
|
|
2073
|
+
* @param {*} [options] Override http request option.
|
|
2074
|
+
* @throws {RequiredError}
|
|
2075
|
+
*/
|
|
2076
|
+
notificationResourceV1FindBehaviorGroupsByBundleId(bundleId: string, options?: any): AxiosPromise<Array<BehaviorGroup>>;
|
|
2077
|
+
};
|
|
2078
|
+
/**
|
|
2079
|
+
* NotificationResourceV1FindBehaviorGroupsByBundleIdApi - object-oriented interface
|
|
2080
|
+
* @export
|
|
2081
|
+
* @class NotificationResourceV1FindBehaviorGroupsByBundleIdApi
|
|
2082
|
+
* @extends {BaseAPI}
|
|
2083
|
+
*/
|
|
2084
|
+
export declare class NotificationResourceV1FindBehaviorGroupsByBundleIdApi extends BaseAPI {
|
|
2085
|
+
/**
|
|
2086
|
+
*
|
|
2087
|
+
* @summary Retrieve the behavior groups of a bundle.
|
|
2088
|
+
* @param {string} bundleId UUID of the bundle to retrieve the behavior groups for.
|
|
2089
|
+
* @param {*} [options] Override http request option.
|
|
2090
|
+
* @throws {RequiredError}
|
|
2091
|
+
* @memberof NotificationResourceV1FindBehaviorGroupsByBundleIdApi
|
|
2092
|
+
*/
|
|
2093
|
+
notificationResourceV1FindBehaviorGroupsByBundleId(bundleId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BehaviorGroup[]>>;
|
|
2094
|
+
}
|
|
2095
|
+
/**
|
|
2096
|
+
* NotificationResourceV1GetApplicationByNameAndBundleNameApi - axios parameter creator
|
|
2097
|
+
* @export
|
|
2098
|
+
*/
|
|
2099
|
+
export declare const NotificationResourceV1GetApplicationByNameAndBundleNameApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2100
|
+
/**
|
|
2101
|
+
*
|
|
2102
|
+
* @summary Retrieve the application by name of a given bundle name
|
|
2103
|
+
* @param {string} applicationName
|
|
2104
|
+
* @param {string} bundleName
|
|
2105
|
+
* @param {*} [options] Override http request option.
|
|
2106
|
+
* @throws {RequiredError}
|
|
2107
|
+
*/
|
|
2108
|
+
notificationResourceV1GetApplicationByNameAndBundleName: (applicationName: string, bundleName: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2109
|
+
};
|
|
2110
|
+
/**
|
|
2111
|
+
* NotificationResourceV1GetApplicationByNameAndBundleNameApi - functional programming interface
|
|
2112
|
+
* @export
|
|
2113
|
+
*/
|
|
2114
|
+
export declare const NotificationResourceV1GetApplicationByNameAndBundleNameApiFp: (configuration?: Configuration) => {
|
|
2115
|
+
/**
|
|
2116
|
+
*
|
|
2117
|
+
* @summary Retrieve the application by name of a given bundle name
|
|
2118
|
+
* @param {string} applicationName
|
|
2119
|
+
* @param {string} bundleName
|
|
2120
|
+
* @param {*} [options] Override http request option.
|
|
2121
|
+
* @throws {RequiredError}
|
|
2122
|
+
*/
|
|
2123
|
+
notificationResourceV1GetApplicationByNameAndBundleName(applicationName: string, bundleName: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Application>>;
|
|
2124
|
+
};
|
|
2125
|
+
/**
|
|
2126
|
+
* NotificationResourceV1GetApplicationByNameAndBundleNameApi - factory interface
|
|
2127
|
+
* @export
|
|
2128
|
+
*/
|
|
2129
|
+
export declare const NotificationResourceV1GetApplicationByNameAndBundleNameApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2130
|
+
/**
|
|
2131
|
+
*
|
|
2132
|
+
* @summary Retrieve the application by name of a given bundle name
|
|
2133
|
+
* @param {string} applicationName
|
|
2134
|
+
* @param {string} bundleName
|
|
2135
|
+
* @param {*} [options] Override http request option.
|
|
2136
|
+
* @throws {RequiredError}
|
|
2137
|
+
*/
|
|
2138
|
+
notificationResourceV1GetApplicationByNameAndBundleName(applicationName: string, bundleName: string, options?: any): AxiosPromise<Application>;
|
|
2139
|
+
};
|
|
2140
|
+
/**
|
|
2141
|
+
* NotificationResourceV1GetApplicationByNameAndBundleNameApi - object-oriented interface
|
|
2142
|
+
* @export
|
|
2143
|
+
* @class NotificationResourceV1GetApplicationByNameAndBundleNameApi
|
|
2144
|
+
* @extends {BaseAPI}
|
|
2145
|
+
*/
|
|
2146
|
+
export declare class NotificationResourceV1GetApplicationByNameAndBundleNameApi extends BaseAPI {
|
|
2147
|
+
/**
|
|
2148
|
+
*
|
|
2149
|
+
* @summary Retrieve the application by name of a given bundle name
|
|
2150
|
+
* @param {string} applicationName
|
|
2151
|
+
* @param {string} bundleName
|
|
2152
|
+
* @param {*} [options] Override http request option.
|
|
2153
|
+
* @throws {RequiredError}
|
|
2154
|
+
* @memberof NotificationResourceV1GetApplicationByNameAndBundleNameApi
|
|
2155
|
+
*/
|
|
2156
|
+
notificationResourceV1GetApplicationByNameAndBundleName(applicationName: string, bundleName: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Application>>;
|
|
2157
|
+
}
|
|
2158
|
+
/**
|
|
2159
|
+
* NotificationResourceV1GetApplicationsFacetsApi - axios parameter creator
|
|
2160
|
+
* @export
|
|
2161
|
+
*/
|
|
2162
|
+
export declare const NotificationResourceV1GetApplicationsFacetsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2163
|
+
/**
|
|
2164
|
+
*
|
|
2165
|
+
* @summary Return a thin list of configured applications. This can be used to configure a filter in the UI
|
|
2166
|
+
* @param {string} [bundleName]
|
|
2167
|
+
* @param {*} [options] Override http request option.
|
|
2168
|
+
* @throws {RequiredError}
|
|
2169
|
+
*/
|
|
2170
|
+
notificationResourceV1GetApplicationsFacets: (bundleName?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2171
|
+
};
|
|
2172
|
+
/**
|
|
2173
|
+
* NotificationResourceV1GetApplicationsFacetsApi - functional programming interface
|
|
2174
|
+
* @export
|
|
2175
|
+
*/
|
|
2176
|
+
export declare const NotificationResourceV1GetApplicationsFacetsApiFp: (configuration?: Configuration) => {
|
|
2177
|
+
/**
|
|
2178
|
+
*
|
|
2179
|
+
* @summary Return a thin list of configured applications. This can be used to configure a filter in the UI
|
|
2180
|
+
* @param {string} [bundleName]
|
|
2181
|
+
* @param {*} [options] Override http request option.
|
|
2182
|
+
* @throws {RequiredError}
|
|
2183
|
+
*/
|
|
2184
|
+
notificationResourceV1GetApplicationsFacets(bundleName?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Facet>>>;
|
|
2185
|
+
};
|
|
2186
|
+
/**
|
|
2187
|
+
* NotificationResourceV1GetApplicationsFacetsApi - factory interface
|
|
2188
|
+
* @export
|
|
2189
|
+
*/
|
|
2190
|
+
export declare const NotificationResourceV1GetApplicationsFacetsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2191
|
+
/**
|
|
2192
|
+
*
|
|
2193
|
+
* @summary Return a thin list of configured applications. This can be used to configure a filter in the UI
|
|
2194
|
+
* @param {string} [bundleName]
|
|
2195
|
+
* @param {*} [options] Override http request option.
|
|
2196
|
+
* @throws {RequiredError}
|
|
2197
|
+
*/
|
|
2198
|
+
notificationResourceV1GetApplicationsFacets(bundleName?: string, options?: any): AxiosPromise<Array<Facet>>;
|
|
2199
|
+
};
|
|
2200
|
+
/**
|
|
2201
|
+
* NotificationResourceV1GetApplicationsFacetsApi - object-oriented interface
|
|
2202
|
+
* @export
|
|
2203
|
+
* @class NotificationResourceV1GetApplicationsFacetsApi
|
|
2204
|
+
* @extends {BaseAPI}
|
|
2205
|
+
*/
|
|
2206
|
+
export declare class NotificationResourceV1GetApplicationsFacetsApi extends BaseAPI {
|
|
2207
|
+
/**
|
|
2208
|
+
*
|
|
2209
|
+
* @summary Return a thin list of configured applications. This can be used to configure a filter in the UI
|
|
2210
|
+
* @param {string} [bundleName]
|
|
2211
|
+
* @param {*} [options] Override http request option.
|
|
2212
|
+
* @throws {RequiredError}
|
|
2213
|
+
* @memberof NotificationResourceV1GetApplicationsFacetsApi
|
|
2214
|
+
*/
|
|
2215
|
+
notificationResourceV1GetApplicationsFacets(bundleName?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Facet[]>>;
|
|
2216
|
+
}
|
|
2217
|
+
/**
|
|
2218
|
+
* NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpointApi - axios parameter creator
|
|
2219
|
+
* @export
|
|
2220
|
+
*/
|
|
2221
|
+
export declare const NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpointApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2222
|
+
/**
|
|
2223
|
+
*
|
|
2224
|
+
* @summary Retrieve the behavior groups affected by the removal of an endpoint.
|
|
2225
|
+
* @param {string} endpointId
|
|
2226
|
+
* @param {*} [options] Override http request option.
|
|
2227
|
+
* @throws {RequiredError}
|
|
2228
|
+
*/
|
|
2229
|
+
notificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpoint: (endpointId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2230
|
+
};
|
|
2231
|
+
/**
|
|
2232
|
+
* NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpointApi - functional programming interface
|
|
2233
|
+
* @export
|
|
2234
|
+
*/
|
|
2235
|
+
export declare const NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpointApiFp: (configuration?: Configuration) => {
|
|
2236
|
+
/**
|
|
2237
|
+
*
|
|
2238
|
+
* @summary Retrieve the behavior groups affected by the removal of an endpoint.
|
|
2239
|
+
* @param {string} endpointId
|
|
2240
|
+
* @param {*} [options] Override http request option.
|
|
2241
|
+
* @throws {RequiredError}
|
|
2242
|
+
*/
|
|
2243
|
+
notificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpoint(endpointId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BehaviorGroup>>>;
|
|
2244
|
+
};
|
|
2245
|
+
/**
|
|
2246
|
+
* NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpointApi - factory interface
|
|
2247
|
+
* @export
|
|
2248
|
+
*/
|
|
2249
|
+
export declare const NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpointApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2250
|
+
/**
|
|
2251
|
+
*
|
|
2252
|
+
* @summary Retrieve the behavior groups affected by the removal of an endpoint.
|
|
2253
|
+
* @param {string} endpointId
|
|
2254
|
+
* @param {*} [options] Override http request option.
|
|
2255
|
+
* @throws {RequiredError}
|
|
2256
|
+
*/
|
|
2257
|
+
notificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpoint(endpointId: string, options?: any): AxiosPromise<Array<BehaviorGroup>>;
|
|
2258
|
+
};
|
|
2259
|
+
/**
|
|
2260
|
+
* NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpointApi - object-oriented interface
|
|
2261
|
+
* @export
|
|
2262
|
+
* @class NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpointApi
|
|
2263
|
+
* @extends {BaseAPI}
|
|
2264
|
+
*/
|
|
2265
|
+
export declare class NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpointApi extends BaseAPI {
|
|
2266
|
+
/**
|
|
2267
|
+
*
|
|
2268
|
+
* @summary Retrieve the behavior groups affected by the removal of an endpoint.
|
|
2269
|
+
* @param {string} endpointId
|
|
2270
|
+
* @param {*} [options] Override http request option.
|
|
2271
|
+
* @throws {RequiredError}
|
|
2272
|
+
* @memberof NotificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpointApi
|
|
2273
|
+
*/
|
|
2274
|
+
notificationResourceV1GetBehaviorGroupsAffectedByRemovalOfEndpoint(endpointId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BehaviorGroup[]>>;
|
|
2275
|
+
}
|
|
2276
|
+
/**
|
|
2277
|
+
* NotificationResourceV1GetBundleByNameApi - axios parameter creator
|
|
2278
|
+
* @export
|
|
2279
|
+
*/
|
|
2280
|
+
export declare const NotificationResourceV1GetBundleByNameApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2281
|
+
/**
|
|
2282
|
+
*
|
|
2283
|
+
* @summary Retrieve the bundle by name
|
|
2284
|
+
* @param {string} bundleName
|
|
2285
|
+
* @param {*} [options] Override http request option.
|
|
2286
|
+
* @throws {RequiredError}
|
|
816
2287
|
*/
|
|
817
|
-
|
|
2288
|
+
notificationResourceV1GetBundleByName: (bundleName: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2289
|
+
};
|
|
2290
|
+
/**
|
|
2291
|
+
* NotificationResourceV1GetBundleByNameApi - functional programming interface
|
|
2292
|
+
* @export
|
|
2293
|
+
*/
|
|
2294
|
+
export declare const NotificationResourceV1GetBundleByNameApiFp: (configuration?: Configuration) => {
|
|
818
2295
|
/**
|
|
819
2296
|
*
|
|
820
|
-
* @
|
|
821
|
-
* @
|
|
2297
|
+
* @summary Retrieve the bundle by name
|
|
2298
|
+
* @param {string} bundleName
|
|
2299
|
+
* @param {*} [options] Override http request option.
|
|
2300
|
+
* @throws {RequiredError}
|
|
822
2301
|
*/
|
|
823
|
-
|
|
824
|
-
}
|
|
2302
|
+
notificationResourceV1GetBundleByName(bundleName: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bundle>>;
|
|
2303
|
+
};
|
|
825
2304
|
/**
|
|
2305
|
+
* NotificationResourceV1GetBundleByNameApi - factory interface
|
|
826
2306
|
* @export
|
|
827
|
-
* @namespace Level
|
|
828
2307
|
*/
|
|
829
|
-
export declare
|
|
2308
|
+
export declare const NotificationResourceV1GetBundleByNameApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
830
2309
|
/**
|
|
831
|
-
*
|
|
832
|
-
* @
|
|
2310
|
+
*
|
|
2311
|
+
* @summary Retrieve the bundle by name
|
|
2312
|
+
* @param {string} bundleName
|
|
2313
|
+
* @param {*} [options] Override http request option.
|
|
2314
|
+
* @throws {RequiredError}
|
|
833
2315
|
*/
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
}
|
|
837
|
-
}
|
|
2316
|
+
notificationResourceV1GetBundleByName(bundleName: string, options?: any): AxiosPromise<Bundle>;
|
|
2317
|
+
};
|
|
838
2318
|
/**
|
|
839
|
-
*
|
|
2319
|
+
* NotificationResourceV1GetBundleByNameApi - object-oriented interface
|
|
840
2320
|
* @export
|
|
841
|
-
* @
|
|
2321
|
+
* @class NotificationResourceV1GetBundleByNameApi
|
|
2322
|
+
* @extends {BaseAPI}
|
|
842
2323
|
*/
|
|
843
|
-
export
|
|
2324
|
+
export declare class NotificationResourceV1GetBundleByNameApi extends BaseAPI {
|
|
844
2325
|
/**
|
|
845
|
-
*
|
|
846
|
-
* @
|
|
847
|
-
* @
|
|
2326
|
+
*
|
|
2327
|
+
* @summary Retrieve the bundle by name
|
|
2328
|
+
* @param {string} bundleName
|
|
2329
|
+
* @param {*} [options] Override http request option.
|
|
2330
|
+
* @throws {RequiredError}
|
|
2331
|
+
* @memberof NotificationResourceV1GetBundleByNameApi
|
|
848
2332
|
*/
|
|
849
|
-
|
|
2333
|
+
notificationResourceV1GetBundleByName(bundleName: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Bundle>>;
|
|
850
2334
|
}
|
|
851
2335
|
/**
|
|
852
|
-
*
|
|
2336
|
+
* NotificationResourceV1GetBundleFacetsApi - axios parameter creator
|
|
853
2337
|
* @export
|
|
854
|
-
* @interface Links
|
|
855
2338
|
*/
|
|
856
|
-
export
|
|
2339
|
+
export declare const NotificationResourceV1GetBundleFacetsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
857
2340
|
/**
|
|
858
|
-
*
|
|
859
|
-
* @
|
|
860
|
-
* @
|
|
2341
|
+
*
|
|
2342
|
+
* @summary Return a thin list of configured bundles. This can be used to configure a filter in the UI
|
|
2343
|
+
* @param {boolean} [includeApplications]
|
|
2344
|
+
* @param {*} [options] Override http request option.
|
|
2345
|
+
* @throws {RequiredError}
|
|
861
2346
|
*/
|
|
862
|
-
|
|
2347
|
+
notificationResourceV1GetBundleFacets: (includeApplications?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2348
|
+
};
|
|
2349
|
+
/**
|
|
2350
|
+
* NotificationResourceV1GetBundleFacetsApi - functional programming interface
|
|
2351
|
+
* @export
|
|
2352
|
+
*/
|
|
2353
|
+
export declare const NotificationResourceV1GetBundleFacetsApiFp: (configuration?: Configuration) => {
|
|
863
2354
|
/**
|
|
864
|
-
*
|
|
865
|
-
* @
|
|
866
|
-
* @
|
|
2355
|
+
*
|
|
2356
|
+
* @summary Return a thin list of configured bundles. This can be used to configure a filter in the UI
|
|
2357
|
+
* @param {boolean} [includeApplications]
|
|
2358
|
+
* @param {*} [options] Override http request option.
|
|
2359
|
+
* @throws {RequiredError}
|
|
867
2360
|
*/
|
|
868
|
-
|
|
2361
|
+
notificationResourceV1GetBundleFacets(includeApplications?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Facet>>>;
|
|
2362
|
+
};
|
|
2363
|
+
/**
|
|
2364
|
+
* NotificationResourceV1GetBundleFacetsApi - factory interface
|
|
2365
|
+
* @export
|
|
2366
|
+
*/
|
|
2367
|
+
export declare const NotificationResourceV1GetBundleFacetsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
869
2368
|
/**
|
|
870
|
-
*
|
|
871
|
-
* @
|
|
872
|
-
* @
|
|
2369
|
+
*
|
|
2370
|
+
* @summary Return a thin list of configured bundles. This can be used to configure a filter in the UI
|
|
2371
|
+
* @param {boolean} [includeApplications]
|
|
2372
|
+
* @param {*} [options] Override http request option.
|
|
2373
|
+
* @throws {RequiredError}
|
|
873
2374
|
*/
|
|
874
|
-
|
|
2375
|
+
notificationResourceV1GetBundleFacets(includeApplications?: boolean, options?: any): AxiosPromise<Array<Facet>>;
|
|
2376
|
+
};
|
|
2377
|
+
/**
|
|
2378
|
+
* NotificationResourceV1GetBundleFacetsApi - object-oriented interface
|
|
2379
|
+
* @export
|
|
2380
|
+
* @class NotificationResourceV1GetBundleFacetsApi
|
|
2381
|
+
* @extends {BaseAPI}
|
|
2382
|
+
*/
|
|
2383
|
+
export declare class NotificationResourceV1GetBundleFacetsApi extends BaseAPI {
|
|
875
2384
|
/**
|
|
876
|
-
*
|
|
877
|
-
* @
|
|
878
|
-
* @
|
|
2385
|
+
*
|
|
2386
|
+
* @summary Return a thin list of configured bundles. This can be used to configure a filter in the UI
|
|
2387
|
+
* @param {boolean} [includeApplications]
|
|
2388
|
+
* @param {*} [options] Override http request option.
|
|
2389
|
+
* @throws {RequiredError}
|
|
2390
|
+
* @memberof NotificationResourceV1GetBundleFacetsApi
|
|
879
2391
|
*/
|
|
880
|
-
|
|
2392
|
+
notificationResourceV1GetBundleFacets(includeApplications?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Facet[]>>;
|
|
881
2393
|
}
|
|
882
2394
|
/**
|
|
883
|
-
*
|
|
2395
|
+
* NotificationResourceV1GetEventTypesApi - axios parameter creator
|
|
884
2396
|
* @export
|
|
885
|
-
* @interface Metadata
|
|
886
2397
|
*/
|
|
887
|
-
export
|
|
888
|
-
/**
|
|
889
|
-
*
|
|
890
|
-
* @
|
|
891
|
-
* @
|
|
2398
|
+
export declare const NotificationResourceV1GetEventTypesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2399
|
+
/**
|
|
2400
|
+
*
|
|
2401
|
+
* @summary Retrieve all event types. The returned list can be filtered by bundle or application.
|
|
2402
|
+
* @param {Set<string>} [applicationIds]
|
|
2403
|
+
* @param {string} [bundleId]
|
|
2404
|
+
* @param {string} [eventTypeName]
|
|
2405
|
+
* @param {number} [limit]
|
|
2406
|
+
* @param {number} [offset]
|
|
2407
|
+
* @param {number} [pageNumber]
|
|
2408
|
+
* @param {string} [sortBy]
|
|
2409
|
+
* @param {string} [sortBy2]
|
|
2410
|
+
* @param {*} [options] Override http request option.
|
|
2411
|
+
* @throws {RequiredError}
|
|
892
2412
|
*/
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
2413
|
+
notificationResourceV1GetEventTypes: (applicationIds?: Set<string>, bundleId?: string, eventTypeName?: string, limit?: number, offset?: number, pageNumber?: number, sortBy?: string, sortBy2?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2414
|
+
};
|
|
2415
|
+
/**
|
|
2416
|
+
* NotificationResourceV1GetEventTypesApi - functional programming interface
|
|
2417
|
+
* @export
|
|
2418
|
+
*/
|
|
2419
|
+
export declare const NotificationResourceV1GetEventTypesApiFp: (configuration?: Configuration) => {
|
|
2420
|
+
/**
|
|
2421
|
+
*
|
|
2422
|
+
* @summary Retrieve all event types. The returned list can be filtered by bundle or application.
|
|
2423
|
+
* @param {Set<string>} [applicationIds]
|
|
2424
|
+
* @param {string} [bundleId]
|
|
2425
|
+
* @param {string} [eventTypeName]
|
|
2426
|
+
* @param {number} [limit]
|
|
2427
|
+
* @param {number} [offset]
|
|
2428
|
+
* @param {number} [pageNumber]
|
|
2429
|
+
* @param {string} [sortBy]
|
|
2430
|
+
* @param {string} [sortBy2]
|
|
2431
|
+
* @param {*} [options] Override http request option.
|
|
2432
|
+
* @throws {RequiredError}
|
|
898
2433
|
*/
|
|
899
|
-
limit?: number
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
2434
|
+
notificationResourceV1GetEventTypes(applicationIds?: Set<string>, bundleId?: string, eventTypeName?: string, limit?: number, offset?: number, pageNumber?: number, sortBy?: string, sortBy2?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PageEventType>>;
|
|
2435
|
+
};
|
|
2436
|
+
/**
|
|
2437
|
+
* NotificationResourceV1GetEventTypesApi - factory interface
|
|
2438
|
+
* @export
|
|
2439
|
+
*/
|
|
2440
|
+
export declare const NotificationResourceV1GetEventTypesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2441
|
+
/**
|
|
2442
|
+
*
|
|
2443
|
+
* @summary Retrieve all event types. The returned list can be filtered by bundle or application.
|
|
2444
|
+
* @param {Set<string>} [applicationIds]
|
|
2445
|
+
* @param {string} [bundleId]
|
|
2446
|
+
* @param {string} [eventTypeName]
|
|
2447
|
+
* @param {number} [limit]
|
|
2448
|
+
* @param {number} [offset]
|
|
2449
|
+
* @param {number} [pageNumber]
|
|
2450
|
+
* @param {string} [sortBy]
|
|
2451
|
+
* @param {string} [sortBy2]
|
|
2452
|
+
* @param {*} [options] Override http request option.
|
|
2453
|
+
* @throws {RequiredError}
|
|
2454
|
+
*/
|
|
2455
|
+
notificationResourceV1GetEventTypes(applicationIds?: Set<string>, bundleId?: string, eventTypeName?: string, limit?: number, offset?: number, pageNumber?: number, sortBy?: string, sortBy2?: string, options?: any): AxiosPromise<PageEventType>;
|
|
2456
|
+
};
|
|
2457
|
+
/**
|
|
2458
|
+
* NotificationResourceV1GetEventTypesApi - object-oriented interface
|
|
2459
|
+
* @export
|
|
2460
|
+
* @class NotificationResourceV1GetEventTypesApi
|
|
2461
|
+
* @extends {BaseAPI}
|
|
2462
|
+
*/
|
|
2463
|
+
export declare class NotificationResourceV1GetEventTypesApi extends BaseAPI {
|
|
2464
|
+
/**
|
|
2465
|
+
*
|
|
2466
|
+
* @summary Retrieve all event types. The returned list can be filtered by bundle or application.
|
|
2467
|
+
* @param {Set<string>} [applicationIds]
|
|
2468
|
+
* @param {string} [bundleId]
|
|
2469
|
+
* @param {string} [eventTypeName]
|
|
2470
|
+
* @param {number} [limit]
|
|
2471
|
+
* @param {number} [offset]
|
|
2472
|
+
* @param {number} [pageNumber]
|
|
2473
|
+
* @param {string} [sortBy]
|
|
2474
|
+
* @param {string} [sortBy2]
|
|
2475
|
+
* @param {*} [options] Override http request option.
|
|
2476
|
+
* @throws {RequiredError}
|
|
2477
|
+
* @memberof NotificationResourceV1GetEventTypesApi
|
|
904
2478
|
*/
|
|
905
|
-
offset?: number
|
|
2479
|
+
notificationResourceV1GetEventTypes(applicationIds?: Set<string>, bundleId?: string, eventTypeName?: string, limit?: number, offset?: number, pageNumber?: number, sortBy?: string, sortBy2?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PageEventType>>;
|
|
906
2480
|
}
|
|
907
2481
|
/**
|
|
908
|
-
*
|
|
2482
|
+
* NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroupApi - axios parameter creator
|
|
909
2483
|
* @export
|
|
910
|
-
* @interface Relationship
|
|
911
2484
|
*/
|
|
912
|
-
export
|
|
2485
|
+
export declare const NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroupApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
913
2486
|
/**
|
|
914
2487
|
*
|
|
915
|
-
* @
|
|
916
|
-
* @
|
|
2488
|
+
* @summary Retrieve the event types affected by the removal of a behavior group.
|
|
2489
|
+
* @param {string} behaviorGroupId The UUID of the behavior group to check
|
|
2490
|
+
* @param {*} [options] Override http request option.
|
|
2491
|
+
* @throws {RequiredError}
|
|
917
2492
|
*/
|
|
918
|
-
|
|
2493
|
+
notificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroup: (behaviorGroupId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2494
|
+
};
|
|
2495
|
+
/**
|
|
2496
|
+
* NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroupApi - functional programming interface
|
|
2497
|
+
* @export
|
|
2498
|
+
*/
|
|
2499
|
+
export declare const NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroupApiFp: (configuration?: Configuration) => {
|
|
919
2500
|
/**
|
|
920
2501
|
*
|
|
921
|
-
* @
|
|
922
|
-
* @
|
|
2502
|
+
* @summary Retrieve the event types affected by the removal of a behavior group.
|
|
2503
|
+
* @param {string} behaviorGroupId The UUID of the behavior group to check
|
|
2504
|
+
* @param {*} [options] Override http request option.
|
|
2505
|
+
* @throws {RequiredError}
|
|
923
2506
|
*/
|
|
924
|
-
|
|
925
|
-
}
|
|
2507
|
+
notificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroup(behaviorGroupId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EventType>>>;
|
|
2508
|
+
};
|
|
926
2509
|
/**
|
|
927
|
-
*
|
|
2510
|
+
* NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroupApi - factory interface
|
|
2511
|
+
* @export
|
|
2512
|
+
*/
|
|
2513
|
+
export declare const NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroupApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2514
|
+
/**
|
|
2515
|
+
*
|
|
2516
|
+
* @summary Retrieve the event types affected by the removal of a behavior group.
|
|
2517
|
+
* @param {string} behaviorGroupId The UUID of the behavior group to check
|
|
2518
|
+
* @param {*} [options] Override http request option.
|
|
2519
|
+
* @throws {RequiredError}
|
|
2520
|
+
*/
|
|
2521
|
+
notificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroup(behaviorGroupId: string, options?: any): AxiosPromise<Array<EventType>>;
|
|
2522
|
+
};
|
|
2523
|
+
/**
|
|
2524
|
+
* NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroupApi - object-oriented interface
|
|
928
2525
|
* @export
|
|
929
|
-
* @
|
|
2526
|
+
* @class NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroupApi
|
|
2527
|
+
* @extends {BaseAPI}
|
|
930
2528
|
*/
|
|
931
|
-
export
|
|
2529
|
+
export declare class NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroupApi extends BaseAPI {
|
|
932
2530
|
/**
|
|
933
2531
|
*
|
|
934
|
-
* @
|
|
935
|
-
* @
|
|
2532
|
+
* @summary Retrieve the event types affected by the removal of a behavior group.
|
|
2533
|
+
* @param {string} behaviorGroupId The UUID of the behavior group to check
|
|
2534
|
+
* @param {*} [options] Override http request option.
|
|
2535
|
+
* @throws {RequiredError}
|
|
2536
|
+
* @memberof NotificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroupApi
|
|
936
2537
|
*/
|
|
937
|
-
|
|
2538
|
+
notificationResourceV1GetEventTypesAffectedByRemovalOfBehaviorGroup(behaviorGroupId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EventType[]>>;
|
|
938
2539
|
}
|
|
939
2540
|
/**
|
|
940
|
-
*
|
|
2541
|
+
* NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationNameApi - axios parameter creator
|
|
941
2542
|
* @export
|
|
942
2543
|
*/
|
|
943
|
-
export declare const
|
|
2544
|
+
export declare const NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationNameApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
944
2545
|
/**
|
|
945
|
-
*
|
|
946
|
-
* @
|
|
2546
|
+
*
|
|
2547
|
+
* @summary Retrieve the event type by name of a given bundle name and application name
|
|
2548
|
+
* @param {string} applicationName
|
|
2549
|
+
* @param {string} bundleName
|
|
2550
|
+
* @param {string} eventTypeName
|
|
947
2551
|
* @param {*} [options] Override http request option.
|
|
948
2552
|
* @throws {RequiredError}
|
|
949
2553
|
*/
|
|
950
|
-
|
|
2554
|
+
notificationResourceV1GetEventTypesByNameAndBundleAndApplicationName: (applicationName: string, bundleName: string, eventTypeName: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
951
2555
|
};
|
|
952
2556
|
/**
|
|
953
|
-
*
|
|
2557
|
+
* NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationNameApi - functional programming interface
|
|
954
2558
|
* @export
|
|
955
2559
|
*/
|
|
956
|
-
export declare const
|
|
2560
|
+
export declare const NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationNameApiFp: (configuration?: Configuration) => {
|
|
957
2561
|
/**
|
|
958
|
-
*
|
|
959
|
-
* @
|
|
2562
|
+
*
|
|
2563
|
+
* @summary Retrieve the event type by name of a given bundle name and application name
|
|
2564
|
+
* @param {string} applicationName
|
|
2565
|
+
* @param {string} bundleName
|
|
2566
|
+
* @param {string} eventTypeName
|
|
960
2567
|
* @param {*} [options] Override http request option.
|
|
961
2568
|
* @throws {RequiredError}
|
|
962
2569
|
*/
|
|
963
|
-
|
|
2570
|
+
notificationResourceV1GetEventTypesByNameAndBundleAndApplicationName(applicationName: string, bundleName: string, eventTypeName: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventType>>;
|
|
964
2571
|
};
|
|
965
2572
|
/**
|
|
966
|
-
*
|
|
2573
|
+
* NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationNameApi - factory interface
|
|
967
2574
|
* @export
|
|
968
2575
|
*/
|
|
969
|
-
export declare const
|
|
2576
|
+
export declare const NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationNameApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
970
2577
|
/**
|
|
971
|
-
*
|
|
972
|
-
* @
|
|
2578
|
+
*
|
|
2579
|
+
* @summary Retrieve the event type by name of a given bundle name and application name
|
|
2580
|
+
* @param {string} applicationName
|
|
2581
|
+
* @param {string} bundleName
|
|
2582
|
+
* @param {string} eventTypeName
|
|
973
2583
|
* @param {*} [options] Override http request option.
|
|
974
2584
|
* @throws {RequiredError}
|
|
975
2585
|
*/
|
|
976
|
-
|
|
2586
|
+
notificationResourceV1GetEventTypesByNameAndBundleAndApplicationName(applicationName: string, bundleName: string, eventTypeName: string, options?: any): AxiosPromise<EventType>;
|
|
977
2587
|
};
|
|
978
2588
|
/**
|
|
979
|
-
*
|
|
2589
|
+
* NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationNameApi - object-oriented interface
|
|
980
2590
|
* @export
|
|
981
|
-
* @class
|
|
2591
|
+
* @class NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationNameApi
|
|
982
2592
|
* @extends {BaseAPI}
|
|
983
2593
|
*/
|
|
984
|
-
export declare class
|
|
2594
|
+
export declare class NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationNameApi extends BaseAPI {
|
|
985
2595
|
/**
|
|
986
|
-
*
|
|
987
|
-
* @
|
|
2596
|
+
*
|
|
2597
|
+
* @summary Retrieve the event type by name of a given bundle name and application name
|
|
2598
|
+
* @param {string} applicationName
|
|
2599
|
+
* @param {string} bundleName
|
|
2600
|
+
* @param {string} eventTypeName
|
|
988
2601
|
* @param {*} [options] Override http request option.
|
|
989
2602
|
* @throws {RequiredError}
|
|
990
|
-
* @memberof
|
|
2603
|
+
* @memberof NotificationResourceV1GetEventTypesByNameAndBundleAndApplicationNameApi
|
|
991
2604
|
*/
|
|
992
|
-
|
|
2605
|
+
notificationResourceV1GetEventTypesByNameAndBundleAndApplicationName(applicationName: string, bundleName: string, eventTypeName: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<EventType>>;
|
|
993
2606
|
}
|
|
994
2607
|
/**
|
|
995
|
-
*
|
|
2608
|
+
* NotificationResourceV1GetLinkedBehaviorGroupsApi - axios parameter creator
|
|
996
2609
|
* @export
|
|
997
2610
|
*/
|
|
998
|
-
export declare const
|
|
2611
|
+
export declare const NotificationResourceV1GetLinkedBehaviorGroupsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
999
2612
|
/**
|
|
1000
|
-
*
|
|
1001
|
-
* @
|
|
2613
|
+
*
|
|
2614
|
+
* @summary Retrieve the behavior groups linked to an event type.
|
|
2615
|
+
* @param {string} eventTypeId
|
|
2616
|
+
* @param {number} [limit]
|
|
2617
|
+
* @param {number} [offset]
|
|
2618
|
+
* @param {number} [pageNumber]
|
|
2619
|
+
* @param {string} [sortBy]
|
|
2620
|
+
* @param {string} [sortBy2]
|
|
1002
2621
|
* @param {*} [options] Override http request option.
|
|
1003
2622
|
* @throws {RequiredError}
|
|
1004
2623
|
*/
|
|
1005
|
-
|
|
2624
|
+
notificationResourceV1GetLinkedBehaviorGroups: (eventTypeId: string, limit?: number, offset?: number, pageNumber?: number, sortBy?: string, sortBy2?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2625
|
+
};
|
|
2626
|
+
/**
|
|
2627
|
+
* NotificationResourceV1GetLinkedBehaviorGroupsApi - functional programming interface
|
|
2628
|
+
* @export
|
|
2629
|
+
*/
|
|
2630
|
+
export declare const NotificationResourceV1GetLinkedBehaviorGroupsApiFp: (configuration?: Configuration) => {
|
|
1006
2631
|
/**
|
|
1007
|
-
*
|
|
1008
|
-
* @
|
|
1009
|
-
* @param {
|
|
2632
|
+
*
|
|
2633
|
+
* @summary Retrieve the behavior groups linked to an event type.
|
|
2634
|
+
* @param {string} eventTypeId
|
|
2635
|
+
* @param {number} [limit]
|
|
2636
|
+
* @param {number} [offset]
|
|
2637
|
+
* @param {number} [pageNumber]
|
|
2638
|
+
* @param {string} [sortBy]
|
|
2639
|
+
* @param {string} [sortBy2]
|
|
1010
2640
|
* @param {*} [options] Override http request option.
|
|
1011
2641
|
* @throws {RequiredError}
|
|
1012
2642
|
*/
|
|
1013
|
-
|
|
2643
|
+
notificationResourceV1GetLinkedBehaviorGroups(eventTypeId: string, limit?: number, offset?: number, pageNumber?: number, sortBy?: string, sortBy2?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BehaviorGroup>>>;
|
|
1014
2644
|
};
|
|
1015
2645
|
/**
|
|
1016
|
-
*
|
|
2646
|
+
* NotificationResourceV1GetLinkedBehaviorGroupsApi - factory interface
|
|
1017
2647
|
* @export
|
|
1018
2648
|
*/
|
|
1019
|
-
export declare const
|
|
2649
|
+
export declare const NotificationResourceV1GetLinkedBehaviorGroupsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1020
2650
|
/**
|
|
1021
|
-
*
|
|
1022
|
-
* @
|
|
2651
|
+
*
|
|
2652
|
+
* @summary Retrieve the behavior groups linked to an event type.
|
|
2653
|
+
* @param {string} eventTypeId
|
|
2654
|
+
* @param {number} [limit]
|
|
2655
|
+
* @param {number} [offset]
|
|
2656
|
+
* @param {number} [pageNumber]
|
|
2657
|
+
* @param {string} [sortBy]
|
|
2658
|
+
* @param {string} [sortBy2]
|
|
1023
2659
|
* @param {*} [options] Override http request option.
|
|
1024
2660
|
* @throws {RequiredError}
|
|
1025
2661
|
*/
|
|
1026
|
-
|
|
2662
|
+
notificationResourceV1GetLinkedBehaviorGroups(eventTypeId: string, limit?: number, offset?: number, pageNumber?: number, sortBy?: string, sortBy2?: string, options?: any): AxiosPromise<Array<BehaviorGroup>>;
|
|
2663
|
+
};
|
|
2664
|
+
/**
|
|
2665
|
+
* NotificationResourceV1GetLinkedBehaviorGroupsApi - object-oriented interface
|
|
2666
|
+
* @export
|
|
2667
|
+
* @class NotificationResourceV1GetLinkedBehaviorGroupsApi
|
|
2668
|
+
* @extends {BaseAPI}
|
|
2669
|
+
*/
|
|
2670
|
+
export declare class NotificationResourceV1GetLinkedBehaviorGroupsApi extends BaseAPI {
|
|
1027
2671
|
/**
|
|
1028
|
-
*
|
|
1029
|
-
* @
|
|
1030
|
-
* @param {
|
|
2672
|
+
*
|
|
2673
|
+
* @summary Retrieve the behavior groups linked to an event type.
|
|
2674
|
+
* @param {string} eventTypeId
|
|
2675
|
+
* @param {number} [limit]
|
|
2676
|
+
* @param {number} [offset]
|
|
2677
|
+
* @param {number} [pageNumber]
|
|
2678
|
+
* @param {string} [sortBy]
|
|
2679
|
+
* @param {string} [sortBy2]
|
|
1031
2680
|
* @param {*} [options] Override http request option.
|
|
1032
2681
|
* @throws {RequiredError}
|
|
2682
|
+
* @memberof NotificationResourceV1GetLinkedBehaviorGroupsApi
|
|
1033
2683
|
*/
|
|
1034
|
-
|
|
1035
|
-
}
|
|
2684
|
+
notificationResourceV1GetLinkedBehaviorGroups(eventTypeId: string, limit?: number, offset?: number, pageNumber?: number, sortBy?: string, sortBy2?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BehaviorGroup[]>>;
|
|
2685
|
+
}
|
|
1036
2686
|
/**
|
|
1037
|
-
*
|
|
2687
|
+
* NotificationResourceV1UpdateBehaviorGroupApi - axios parameter creator
|
|
1038
2688
|
* @export
|
|
1039
2689
|
*/
|
|
1040
|
-
export declare const
|
|
2690
|
+
export declare const NotificationResourceV1UpdateBehaviorGroupApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1041
2691
|
/**
|
|
1042
|
-
*
|
|
1043
|
-
* @
|
|
2692
|
+
*
|
|
2693
|
+
* @summary Update a behavior group.
|
|
2694
|
+
* @param {string} id The UUID of the behavior group to update
|
|
2695
|
+
* @param {UpdateBehaviorGroupRequest} updateBehaviorGroupRequest New parameters
|
|
1044
2696
|
* @param {*} [options] Override http request option.
|
|
1045
2697
|
* @throws {RequiredError}
|
|
1046
2698
|
*/
|
|
1047
|
-
|
|
2699
|
+
notificationResourceV1UpdateBehaviorGroup: (id: string, updateBehaviorGroupRequest: UpdateBehaviorGroupRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2700
|
+
};
|
|
2701
|
+
/**
|
|
2702
|
+
* NotificationResourceV1UpdateBehaviorGroupApi - functional programming interface
|
|
2703
|
+
* @export
|
|
2704
|
+
*/
|
|
2705
|
+
export declare const NotificationResourceV1UpdateBehaviorGroupApiFp: (configuration?: Configuration) => {
|
|
1048
2706
|
/**
|
|
1049
|
-
*
|
|
1050
|
-
* @
|
|
1051
|
-
* @param {
|
|
2707
|
+
*
|
|
2708
|
+
* @summary Update a behavior group.
|
|
2709
|
+
* @param {string} id The UUID of the behavior group to update
|
|
2710
|
+
* @param {UpdateBehaviorGroupRequest} updateBehaviorGroupRequest New parameters
|
|
1052
2711
|
* @param {*} [options] Override http request option.
|
|
1053
2712
|
* @throws {RequiredError}
|
|
1054
2713
|
*/
|
|
1055
|
-
|
|
2714
|
+
notificationResourceV1UpdateBehaviorGroup(id: string, updateBehaviorGroupRequest: UpdateBehaviorGroupRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
1056
2715
|
};
|
|
1057
2716
|
/**
|
|
1058
|
-
*
|
|
2717
|
+
* NotificationResourceV1UpdateBehaviorGroupApi - factory interface
|
|
1059
2718
|
* @export
|
|
1060
|
-
* @class AppsApi
|
|
1061
|
-
* @extends {BaseAPI}
|
|
1062
2719
|
*/
|
|
1063
|
-
export declare
|
|
2720
|
+
export declare const NotificationResourceV1UpdateBehaviorGroupApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1064
2721
|
/**
|
|
1065
|
-
*
|
|
1066
|
-
* @
|
|
2722
|
+
*
|
|
2723
|
+
* @summary Update a behavior group.
|
|
2724
|
+
* @param {string} id The UUID of the behavior group to update
|
|
2725
|
+
* @param {UpdateBehaviorGroupRequest} updateBehaviorGroupRequest New parameters
|
|
1067
2726
|
* @param {*} [options] Override http request option.
|
|
1068
2727
|
* @throws {RequiredError}
|
|
1069
|
-
* @memberof AppsApi
|
|
1070
2728
|
*/
|
|
1071
|
-
|
|
2729
|
+
notificationResourceV1UpdateBehaviorGroup(id: string, updateBehaviorGroupRequest: UpdateBehaviorGroupRequest, options?: any): AxiosPromise<boolean>;
|
|
2730
|
+
};
|
|
2731
|
+
/**
|
|
2732
|
+
* NotificationResourceV1UpdateBehaviorGroupApi - object-oriented interface
|
|
2733
|
+
* @export
|
|
2734
|
+
* @class NotificationResourceV1UpdateBehaviorGroupApi
|
|
2735
|
+
* @extends {BaseAPI}
|
|
2736
|
+
*/
|
|
2737
|
+
export declare class NotificationResourceV1UpdateBehaviorGroupApi extends BaseAPI {
|
|
1072
2738
|
/**
|
|
1073
|
-
*
|
|
1074
|
-
* @
|
|
1075
|
-
* @param {
|
|
2739
|
+
*
|
|
2740
|
+
* @summary Update a behavior group.
|
|
2741
|
+
* @param {string} id The UUID of the behavior group to update
|
|
2742
|
+
* @param {UpdateBehaviorGroupRequest} updateBehaviorGroupRequest New parameters
|
|
1076
2743
|
* @param {*} [options] Override http request option.
|
|
1077
2744
|
* @throws {RequiredError}
|
|
1078
|
-
* @memberof
|
|
2745
|
+
* @memberof NotificationResourceV1UpdateBehaviorGroupApi
|
|
1079
2746
|
*/
|
|
1080
|
-
|
|
2747
|
+
notificationResourceV1UpdateBehaviorGroup(id: string, updateBehaviorGroupRequest: UpdateBehaviorGroupRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
1081
2748
|
}
|
|
1082
2749
|
/**
|
|
1083
|
-
*
|
|
2750
|
+
* NotificationResourceV1UpdateBehaviorGroupActionsApi - axios parameter creator
|
|
1084
2751
|
* @export
|
|
1085
2752
|
*/
|
|
1086
|
-
export declare const
|
|
2753
|
+
export declare const NotificationResourceV1UpdateBehaviorGroupActionsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1087
2754
|
/**
|
|
1088
|
-
*
|
|
1089
|
-
* @
|
|
1090
|
-
* @param {
|
|
2755
|
+
*
|
|
2756
|
+
* @summary Update the list of actions of a behavior group.
|
|
2757
|
+
* @param {string} behaviorGroupId The UUID of the behavior group to update
|
|
2758
|
+
* @param {Array<string>} [requestBody]
|
|
1091
2759
|
* @param {*} [options] Override http request option.
|
|
1092
2760
|
* @throws {RequiredError}
|
|
1093
2761
|
*/
|
|
1094
|
-
|
|
2762
|
+
notificationResourceV1UpdateBehaviorGroupActions: (behaviorGroupId: string, requestBody?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2763
|
+
};
|
|
2764
|
+
/**
|
|
2765
|
+
* NotificationResourceV1UpdateBehaviorGroupActionsApi - functional programming interface
|
|
2766
|
+
* @export
|
|
2767
|
+
*/
|
|
2768
|
+
export declare const NotificationResourceV1UpdateBehaviorGroupActionsApiFp: (configuration?: Configuration) => {
|
|
1095
2769
|
/**
|
|
1096
2770
|
*
|
|
1097
|
-
* @
|
|
1098
|
-
* @param {
|
|
2771
|
+
* @summary Update the list of actions of a behavior group.
|
|
2772
|
+
* @param {string} behaviorGroupId The UUID of the behavior group to update
|
|
2773
|
+
* @param {Array<string>} [requestBody]
|
|
1099
2774
|
* @param {*} [options] Override http request option.
|
|
1100
2775
|
* @throws {RequiredError}
|
|
1101
2776
|
*/
|
|
1102
|
-
|
|
2777
|
+
notificationResourceV1UpdateBehaviorGroupActions(behaviorGroupId: string, requestBody?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
2778
|
+
};
|
|
2779
|
+
/**
|
|
2780
|
+
* NotificationResourceV1UpdateBehaviorGroupActionsApi - factory interface
|
|
2781
|
+
* @export
|
|
2782
|
+
*/
|
|
2783
|
+
export declare const NotificationResourceV1UpdateBehaviorGroupActionsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1103
2784
|
/**
|
|
1104
|
-
*
|
|
1105
|
-
* @
|
|
1106
|
-
* @param {string}
|
|
1107
|
-
* @param {
|
|
1108
|
-
* @param {number} [limit] The maximum number of records to return.
|
|
2785
|
+
*
|
|
2786
|
+
* @summary Update the list of actions of a behavior group.
|
|
2787
|
+
* @param {string} behaviorGroupId The UUID of the behavior group to update
|
|
2788
|
+
* @param {Array<string>} [requestBody]
|
|
1109
2789
|
* @param {*} [options] Override http request option.
|
|
1110
2790
|
* @throws {RequiredError}
|
|
1111
2791
|
*/
|
|
1112
|
-
|
|
2792
|
+
notificationResourceV1UpdateBehaviorGroupActions(behaviorGroupId: string, requestBody?: Array<string>, options?: any): AxiosPromise<string>;
|
|
2793
|
+
};
|
|
2794
|
+
/**
|
|
2795
|
+
* NotificationResourceV1UpdateBehaviorGroupActionsApi - object-oriented interface
|
|
2796
|
+
* @export
|
|
2797
|
+
* @class NotificationResourceV1UpdateBehaviorGroupActionsApi
|
|
2798
|
+
* @extends {BaseAPI}
|
|
2799
|
+
*/
|
|
2800
|
+
export declare class NotificationResourceV1UpdateBehaviorGroupActionsApi extends BaseAPI {
|
|
1113
2801
|
/**
|
|
1114
|
-
*
|
|
1115
|
-
* @
|
|
1116
|
-
* @param {
|
|
2802
|
+
*
|
|
2803
|
+
* @summary Update the list of actions of a behavior group.
|
|
2804
|
+
* @param {string} behaviorGroupId The UUID of the behavior group to update
|
|
2805
|
+
* @param {Array<string>} [requestBody]
|
|
1117
2806
|
* @param {*} [options] Override http request option.
|
|
1118
2807
|
* @throws {RequiredError}
|
|
2808
|
+
* @memberof NotificationResourceV1UpdateBehaviorGroupActionsApi
|
|
1119
2809
|
*/
|
|
1120
|
-
|
|
2810
|
+
notificationResourceV1UpdateBehaviorGroupActions(behaviorGroupId: string, requestBody?: Array<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
2811
|
+
}
|
|
2812
|
+
/**
|
|
2813
|
+
* NotificationResourceV1UpdateEventTypeBehaviorsApi - axios parameter creator
|
|
2814
|
+
* @export
|
|
2815
|
+
*/
|
|
2816
|
+
export declare const NotificationResourceV1UpdateEventTypeBehaviorsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1121
2817
|
/**
|
|
1122
|
-
*
|
|
1123
|
-
* @
|
|
1124
|
-
* @param {
|
|
2818
|
+
*
|
|
2819
|
+
* @summary Update the list of behavior groups of an event type.
|
|
2820
|
+
* @param {string} eventTypeId UUID of the eventType to associate with the behavior group(s)
|
|
2821
|
+
* @param {Set<string>} [requestBody]
|
|
1125
2822
|
* @param {*} [options] Override http request option.
|
|
1126
2823
|
* @throws {RequiredError}
|
|
1127
2824
|
*/
|
|
1128
|
-
|
|
2825
|
+
notificationResourceV1UpdateEventTypeBehaviors: (eventTypeId: string, requestBody?: Set<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2826
|
+
};
|
|
2827
|
+
/**
|
|
2828
|
+
* NotificationResourceV1UpdateEventTypeBehaviorsApi - functional programming interface
|
|
2829
|
+
* @export
|
|
2830
|
+
*/
|
|
2831
|
+
export declare const NotificationResourceV1UpdateEventTypeBehaviorsApiFp: (configuration?: Configuration) => {
|
|
1129
2832
|
/**
|
|
1130
|
-
*
|
|
1131
|
-
* @
|
|
1132
|
-
* @param {
|
|
1133
|
-
* @param {
|
|
2833
|
+
*
|
|
2834
|
+
* @summary Update the list of behavior groups of an event type.
|
|
2835
|
+
* @param {string} eventTypeId UUID of the eventType to associate with the behavior group(s)
|
|
2836
|
+
* @param {Set<string>} [requestBody]
|
|
1134
2837
|
* @param {*} [options] Override http request option.
|
|
1135
2838
|
* @throws {RequiredError}
|
|
1136
2839
|
*/
|
|
1137
|
-
|
|
2840
|
+
notificationResourceV1UpdateEventTypeBehaviors(eventTypeId: string, requestBody?: Set<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
1138
2841
|
};
|
|
1139
2842
|
/**
|
|
1140
|
-
*
|
|
2843
|
+
* NotificationResourceV1UpdateEventTypeBehaviorsApi - factory interface
|
|
1141
2844
|
* @export
|
|
1142
2845
|
*/
|
|
1143
|
-
export declare const
|
|
2846
|
+
export declare const NotificationResourceV1UpdateEventTypeBehaviorsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1144
2847
|
/**
|
|
1145
|
-
*
|
|
1146
|
-
* @
|
|
1147
|
-
* @param {
|
|
2848
|
+
*
|
|
2849
|
+
* @summary Update the list of behavior groups of an event type.
|
|
2850
|
+
* @param {string} eventTypeId UUID of the eventType to associate with the behavior group(s)
|
|
2851
|
+
* @param {Set<string>} [requestBody]
|
|
1148
2852
|
* @param {*} [options] Override http request option.
|
|
1149
2853
|
* @throws {RequiredError}
|
|
1150
2854
|
*/
|
|
1151
|
-
|
|
2855
|
+
notificationResourceV1UpdateEventTypeBehaviors(eventTypeId: string, requestBody?: Set<string>, options?: any): AxiosPromise<string>;
|
|
2856
|
+
};
|
|
2857
|
+
/**
|
|
2858
|
+
* NotificationResourceV1UpdateEventTypeBehaviorsApi - object-oriented interface
|
|
2859
|
+
* @export
|
|
2860
|
+
* @class NotificationResourceV1UpdateEventTypeBehaviorsApi
|
|
2861
|
+
* @extends {BaseAPI}
|
|
2862
|
+
*/
|
|
2863
|
+
export declare class NotificationResourceV1UpdateEventTypeBehaviorsApi extends BaseAPI {
|
|
1152
2864
|
/**
|
|
1153
2865
|
*
|
|
1154
|
-
* @
|
|
1155
|
-
* @param {
|
|
2866
|
+
* @summary Update the list of behavior groups of an event type.
|
|
2867
|
+
* @param {string} eventTypeId UUID of the eventType to associate with the behavior group(s)
|
|
2868
|
+
* @param {Set<string>} [requestBody]
|
|
1156
2869
|
* @param {*} [options] Override http request option.
|
|
1157
2870
|
* @throws {RequiredError}
|
|
2871
|
+
* @memberof NotificationResourceV1UpdateEventTypeBehaviorsApi
|
|
1158
2872
|
*/
|
|
1159
|
-
|
|
2873
|
+
notificationResourceV1UpdateEventTypeBehaviors(eventTypeId: string, requestBody?: Set<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
2874
|
+
}
|
|
2875
|
+
/**
|
|
2876
|
+
* OrgConfigResourceV1GetDailyDigestTimePreferenceApi - axios parameter creator
|
|
2877
|
+
* @export
|
|
2878
|
+
*/
|
|
2879
|
+
export declare const OrgConfigResourceV1GetDailyDigestTimePreferenceApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1160
2880
|
/**
|
|
1161
|
-
*
|
|
1162
|
-
* @param {string} X_RH_IDENTITY
|
|
1163
|
-
* @param {string} [order] The ordering by which the returned collection should be sorted.
|
|
1164
|
-
* @param {number} [offset] The number of records to skip before returning.
|
|
1165
|
-
* @param {number} [limit] The maximum number of records to return.
|
|
2881
|
+
*
|
|
1166
2882
|
* @param {*} [options] Override http request option.
|
|
1167
2883
|
* @throws {RequiredError}
|
|
1168
2884
|
*/
|
|
1169
|
-
|
|
2885
|
+
orgConfigResourceV1GetDailyDigestTimePreference: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2886
|
+
};
|
|
2887
|
+
/**
|
|
2888
|
+
* OrgConfigResourceV1GetDailyDigestTimePreferenceApi - functional programming interface
|
|
2889
|
+
* @export
|
|
2890
|
+
*/
|
|
2891
|
+
export declare const OrgConfigResourceV1GetDailyDigestTimePreferenceApiFp: (configuration?: Configuration) => {
|
|
1170
2892
|
/**
|
|
1171
|
-
*
|
|
1172
|
-
* @param {string} X_RH_IDENTITY
|
|
1173
|
-
* @param {number} id
|
|
2893
|
+
*
|
|
1174
2894
|
* @param {*} [options] Override http request option.
|
|
1175
2895
|
* @throws {RequiredError}
|
|
1176
2896
|
*/
|
|
1177
|
-
|
|
2897
|
+
orgConfigResourceV1GetDailyDigestTimePreference(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
2898
|
+
};
|
|
2899
|
+
/**
|
|
2900
|
+
* OrgConfigResourceV1GetDailyDigestTimePreferenceApi - factory interface
|
|
2901
|
+
* @export
|
|
2902
|
+
*/
|
|
2903
|
+
export declare const OrgConfigResourceV1GetDailyDigestTimePreferenceApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1178
2904
|
/**
|
|
1179
|
-
*
|
|
1180
|
-
* @param {string} X_RH_IDENTITY
|
|
1181
|
-
* @param {number} id
|
|
2905
|
+
*
|
|
1182
2906
|
* @param {*} [options] Override http request option.
|
|
1183
2907
|
* @throws {RequiredError}
|
|
1184
2908
|
*/
|
|
1185
|
-
|
|
2909
|
+
orgConfigResourceV1GetDailyDigestTimePreference(options?: any): AxiosPromise<string>;
|
|
2910
|
+
};
|
|
2911
|
+
/**
|
|
2912
|
+
* OrgConfigResourceV1GetDailyDigestTimePreferenceApi - object-oriented interface
|
|
2913
|
+
* @export
|
|
2914
|
+
* @class OrgConfigResourceV1GetDailyDigestTimePreferenceApi
|
|
2915
|
+
* @extends {BaseAPI}
|
|
2916
|
+
*/
|
|
2917
|
+
export declare class OrgConfigResourceV1GetDailyDigestTimePreferenceApi extends BaseAPI {
|
|
1186
2918
|
/**
|
|
1187
|
-
*
|
|
1188
|
-
* @param {string} X_RH_IDENTITY
|
|
1189
|
-
* @param {number} id
|
|
1190
|
-
* @param {InlineObject2} inlineObject2
|
|
2919
|
+
*
|
|
1191
2920
|
* @param {*} [options] Override http request option.
|
|
1192
2921
|
* @throws {RequiredError}
|
|
2922
|
+
* @memberof OrgConfigResourceV1GetDailyDigestTimePreferenceApi
|
|
1193
2923
|
*/
|
|
1194
|
-
|
|
1195
|
-
}
|
|
2924
|
+
orgConfigResourceV1GetDailyDigestTimePreference(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
2925
|
+
}
|
|
1196
2926
|
/**
|
|
1197
|
-
*
|
|
2927
|
+
* OrgConfigResourceV1SaveDailyDigestTimePreferenceApi - axios parameter creator
|
|
1198
2928
|
* @export
|
|
1199
2929
|
*/
|
|
1200
|
-
export declare const
|
|
2930
|
+
export declare const OrgConfigResourceV1SaveDailyDigestTimePreferenceApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1201
2931
|
/**
|
|
1202
|
-
*
|
|
1203
|
-
* @
|
|
1204
|
-
* @param {
|
|
2932
|
+
*
|
|
2933
|
+
* @summary Save the daily digest UTC time preference. To cover all time zones conversion to UTC, the accepted minute values are 00, 15, 30 and 45.
|
|
2934
|
+
* @param {string} [body]
|
|
1205
2935
|
* @param {*} [options] Override http request option.
|
|
1206
2936
|
* @throws {RequiredError}
|
|
1207
2937
|
*/
|
|
1208
|
-
|
|
2938
|
+
orgConfigResourceV1SaveDailyDigestTimePreference: (body?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2939
|
+
};
|
|
2940
|
+
/**
|
|
2941
|
+
* OrgConfigResourceV1SaveDailyDigestTimePreferenceApi - functional programming interface
|
|
2942
|
+
* @export
|
|
2943
|
+
*/
|
|
2944
|
+
export declare const OrgConfigResourceV1SaveDailyDigestTimePreferenceApiFp: (configuration?: Configuration) => {
|
|
1209
2945
|
/**
|
|
1210
2946
|
*
|
|
1211
|
-
* @
|
|
1212
|
-
* @param {
|
|
2947
|
+
* @summary Save the daily digest UTC time preference. To cover all time zones conversion to UTC, the accepted minute values are 00, 15, 30 and 45.
|
|
2948
|
+
* @param {string} [body]
|
|
1213
2949
|
* @param {*} [options] Override http request option.
|
|
1214
2950
|
* @throws {RequiredError}
|
|
1215
2951
|
*/
|
|
1216
|
-
|
|
2952
|
+
orgConfigResourceV1SaveDailyDigestTimePreference(body?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2953
|
+
};
|
|
2954
|
+
/**
|
|
2955
|
+
* OrgConfigResourceV1SaveDailyDigestTimePreferenceApi - factory interface
|
|
2956
|
+
* @export
|
|
2957
|
+
*/
|
|
2958
|
+
export declare const OrgConfigResourceV1SaveDailyDigestTimePreferenceApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1217
2959
|
/**
|
|
1218
|
-
*
|
|
1219
|
-
* @
|
|
1220
|
-
* @param {string} [
|
|
1221
|
-
* @param {number} [offset] The number of records to skip before returning.
|
|
1222
|
-
* @param {number} [limit] The maximum number of records to return.
|
|
2960
|
+
*
|
|
2961
|
+
* @summary Save the daily digest UTC time preference. To cover all time zones conversion to UTC, the accepted minute values are 00, 15, 30 and 45.
|
|
2962
|
+
* @param {string} [body]
|
|
1223
2963
|
* @param {*} [options] Override http request option.
|
|
1224
2964
|
* @throws {RequiredError}
|
|
1225
2965
|
*/
|
|
1226
|
-
|
|
2966
|
+
orgConfigResourceV1SaveDailyDigestTimePreference(body?: string, options?: any): AxiosPromise<void>;
|
|
2967
|
+
};
|
|
2968
|
+
/**
|
|
2969
|
+
* OrgConfigResourceV1SaveDailyDigestTimePreferenceApi - object-oriented interface
|
|
2970
|
+
* @export
|
|
2971
|
+
* @class OrgConfigResourceV1SaveDailyDigestTimePreferenceApi
|
|
2972
|
+
* @extends {BaseAPI}
|
|
2973
|
+
*/
|
|
2974
|
+
export declare class OrgConfigResourceV1SaveDailyDigestTimePreferenceApi extends BaseAPI {
|
|
1227
2975
|
/**
|
|
1228
|
-
*
|
|
1229
|
-
* @
|
|
1230
|
-
* @param {
|
|
2976
|
+
*
|
|
2977
|
+
* @summary Save the daily digest UTC time preference. To cover all time zones conversion to UTC, the accepted minute values are 00, 15, 30 and 45.
|
|
2978
|
+
* @param {string} [body]
|
|
1231
2979
|
* @param {*} [options] Override http request option.
|
|
1232
2980
|
* @throws {RequiredError}
|
|
2981
|
+
* @memberof OrgConfigResourceV1SaveDailyDigestTimePreferenceApi
|
|
1233
2982
|
*/
|
|
1234
|
-
|
|
2983
|
+
orgConfigResourceV1SaveDailyDigestTimePreference(body?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void>>;
|
|
2984
|
+
}
|
|
2985
|
+
/**
|
|
2986
|
+
* UserConfigResourceV1GetPreferencesApi - axios parameter creator
|
|
2987
|
+
* @export
|
|
2988
|
+
*/
|
|
2989
|
+
export declare const UserConfigResourceV1GetPreferencesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1235
2990
|
/**
|
|
1236
|
-
*
|
|
1237
|
-
* @param {string}
|
|
1238
|
-
* @param {
|
|
2991
|
+
*
|
|
2992
|
+
* @param {string} applicationName
|
|
2993
|
+
* @param {string} bundleName
|
|
1239
2994
|
* @param {*} [options] Override http request option.
|
|
1240
2995
|
* @throws {RequiredError}
|
|
1241
2996
|
*/
|
|
1242
|
-
|
|
2997
|
+
userConfigResourceV1GetPreferences: (applicationName: string, bundleName: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2998
|
+
};
|
|
2999
|
+
/**
|
|
3000
|
+
* UserConfigResourceV1GetPreferencesApi - functional programming interface
|
|
3001
|
+
* @export
|
|
3002
|
+
*/
|
|
3003
|
+
export declare const UserConfigResourceV1GetPreferencesApiFp: (configuration?: Configuration) => {
|
|
1243
3004
|
/**
|
|
1244
|
-
*
|
|
1245
|
-
* @param {string}
|
|
1246
|
-
* @param {
|
|
1247
|
-
* @param {InlineObject2} inlineObject2
|
|
3005
|
+
*
|
|
3006
|
+
* @param {string} applicationName
|
|
3007
|
+
* @param {string} bundleName
|
|
1248
3008
|
* @param {*} [options] Override http request option.
|
|
1249
3009
|
* @throws {RequiredError}
|
|
1250
3010
|
*/
|
|
1251
|
-
|
|
3011
|
+
userConfigResourceV1GetPreferences(applicationName: string, bundleName: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserConfigPreferences>>;
|
|
1252
3012
|
};
|
|
1253
3013
|
/**
|
|
1254
|
-
*
|
|
3014
|
+
* UserConfigResourceV1GetPreferencesApi - factory interface
|
|
1255
3015
|
* @export
|
|
1256
|
-
* @class EndpointsApi
|
|
1257
|
-
* @extends {BaseAPI}
|
|
1258
3016
|
*/
|
|
1259
|
-
export declare
|
|
3017
|
+
export declare const UserConfigResourceV1GetPreferencesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1260
3018
|
/**
|
|
1261
|
-
*
|
|
1262
|
-
* @param {string}
|
|
1263
|
-
* @param {
|
|
3019
|
+
*
|
|
3020
|
+
* @param {string} applicationName
|
|
3021
|
+
* @param {string} bundleName
|
|
1264
3022
|
* @param {*} [options] Override http request option.
|
|
1265
3023
|
* @throws {RequiredError}
|
|
1266
|
-
* @memberof EndpointsApi
|
|
1267
3024
|
*/
|
|
1268
|
-
|
|
3025
|
+
userConfigResourceV1GetPreferences(applicationName: string, bundleName: string, options?: any): AxiosPromise<UserConfigPreferences>;
|
|
3026
|
+
};
|
|
3027
|
+
/**
|
|
3028
|
+
* UserConfigResourceV1GetPreferencesApi - object-oriented interface
|
|
3029
|
+
* @export
|
|
3030
|
+
* @class UserConfigResourceV1GetPreferencesApi
|
|
3031
|
+
* @extends {BaseAPI}
|
|
3032
|
+
*/
|
|
3033
|
+
export declare class UserConfigResourceV1GetPreferencesApi extends BaseAPI {
|
|
1269
3034
|
/**
|
|
1270
3035
|
*
|
|
1271
|
-
* @param {string}
|
|
1272
|
-
* @param {
|
|
3036
|
+
* @param {string} applicationName
|
|
3037
|
+
* @param {string} bundleName
|
|
1273
3038
|
* @param {*} [options] Override http request option.
|
|
1274
3039
|
* @throws {RequiredError}
|
|
1275
|
-
* @memberof
|
|
3040
|
+
* @memberof UserConfigResourceV1GetPreferencesApi
|
|
1276
3041
|
*/
|
|
1277
|
-
|
|
3042
|
+
userConfigResourceV1GetPreferences(applicationName: string, bundleName: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserConfigPreferences>>;
|
|
3043
|
+
}
|
|
3044
|
+
/**
|
|
3045
|
+
* UserConfigResourceV1GetSettingsSchemaApi - axios parameter creator
|
|
3046
|
+
* @export
|
|
3047
|
+
*/
|
|
3048
|
+
export declare const UserConfigResourceV1GetSettingsSchemaApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1278
3049
|
/**
|
|
1279
|
-
*
|
|
1280
|
-
* @param {string}
|
|
1281
|
-
* @param {string} [order] The ordering by which the returned collection should be sorted.
|
|
1282
|
-
* @param {number} [offset] The number of records to skip before returning.
|
|
1283
|
-
* @param {number} [limit] The maximum number of records to return.
|
|
3050
|
+
*
|
|
3051
|
+
* @param {string} [bundleName]
|
|
1284
3052
|
* @param {*} [options] Override http request option.
|
|
1285
3053
|
* @throws {RequiredError}
|
|
1286
|
-
* @memberof EndpointsApi
|
|
1287
3054
|
*/
|
|
1288
|
-
|
|
3055
|
+
userConfigResourceV1GetSettingsSchema: (bundleName?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
3056
|
+
};
|
|
3057
|
+
/**
|
|
3058
|
+
* UserConfigResourceV1GetSettingsSchemaApi - functional programming interface
|
|
3059
|
+
* @export
|
|
3060
|
+
*/
|
|
3061
|
+
export declare const UserConfigResourceV1GetSettingsSchemaApiFp: (configuration?: Configuration) => {
|
|
1289
3062
|
/**
|
|
1290
|
-
*
|
|
1291
|
-
* @param {string}
|
|
1292
|
-
* @param {number} id
|
|
3063
|
+
*
|
|
3064
|
+
* @param {string} [bundleName]
|
|
1293
3065
|
* @param {*} [options] Override http request option.
|
|
1294
3066
|
* @throws {RequiredError}
|
|
1295
|
-
* @memberof EndpointsApi
|
|
1296
3067
|
*/
|
|
1297
|
-
|
|
3068
|
+
userConfigResourceV1GetSettingsSchema(bundleName?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3069
|
+
};
|
|
3070
|
+
/**
|
|
3071
|
+
* UserConfigResourceV1GetSettingsSchemaApi - factory interface
|
|
3072
|
+
* @export
|
|
3073
|
+
*/
|
|
3074
|
+
export declare const UserConfigResourceV1GetSettingsSchemaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1298
3075
|
/**
|
|
1299
|
-
*
|
|
1300
|
-
* @param {string}
|
|
1301
|
-
* @param {number} id
|
|
3076
|
+
*
|
|
3077
|
+
* @param {string} [bundleName]
|
|
1302
3078
|
* @param {*} [options] Override http request option.
|
|
1303
3079
|
* @throws {RequiredError}
|
|
1304
|
-
* @memberof EndpointsApi
|
|
1305
3080
|
*/
|
|
1306
|
-
|
|
3081
|
+
userConfigResourceV1GetSettingsSchema(bundleName?: string, options?: any): AxiosPromise<void>;
|
|
3082
|
+
};
|
|
3083
|
+
/**
|
|
3084
|
+
* UserConfigResourceV1GetSettingsSchemaApi - object-oriented interface
|
|
3085
|
+
* @export
|
|
3086
|
+
* @class UserConfigResourceV1GetSettingsSchemaApi
|
|
3087
|
+
* @extends {BaseAPI}
|
|
3088
|
+
*/
|
|
3089
|
+
export declare class UserConfigResourceV1GetSettingsSchemaApi extends BaseAPI {
|
|
1307
3090
|
/**
|
|
1308
|
-
*
|
|
1309
|
-
* @param {string}
|
|
1310
|
-
* @param {number} id
|
|
1311
|
-
* @param {InlineObject2} inlineObject2
|
|
3091
|
+
*
|
|
3092
|
+
* @param {string} [bundleName]
|
|
1312
3093
|
* @param {*} [options] Override http request option.
|
|
1313
3094
|
* @throws {RequiredError}
|
|
1314
|
-
* @memberof
|
|
3095
|
+
* @memberof UserConfigResourceV1GetSettingsSchemaApi
|
|
1315
3096
|
*/
|
|
1316
|
-
|
|
3097
|
+
userConfigResourceV1GetSettingsSchema(bundleName?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void>>;
|
|
1317
3098
|
}
|
|
1318
3099
|
/**
|
|
1319
|
-
*
|
|
3100
|
+
* UserConfigResourceV1SaveSettingsApi - axios parameter creator
|
|
1320
3101
|
* @export
|
|
1321
3102
|
*/
|
|
1322
|
-
export declare const
|
|
3103
|
+
export declare const UserConfigResourceV1SaveSettingsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1323
3104
|
/**
|
|
1324
|
-
*
|
|
1325
|
-
* @param {
|
|
1326
|
-
* @param {number} endpointId
|
|
3105
|
+
*
|
|
3106
|
+
* @param {SettingsValues} [settingsValues]
|
|
1327
3107
|
* @param {*} [options] Override http request option.
|
|
1328
3108
|
* @throws {RequiredError}
|
|
1329
3109
|
*/
|
|
1330
|
-
|
|
3110
|
+
userConfigResourceV1SaveSettings: (settingsValues?: SettingsValues, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
1331
3111
|
};
|
|
1332
3112
|
/**
|
|
1333
|
-
*
|
|
3113
|
+
* UserConfigResourceV1SaveSettingsApi - functional programming interface
|
|
1334
3114
|
* @export
|
|
1335
3115
|
*/
|
|
1336
|
-
export declare const
|
|
3116
|
+
export declare const UserConfigResourceV1SaveSettingsApiFp: (configuration?: Configuration) => {
|
|
1337
3117
|
/**
|
|
1338
|
-
*
|
|
1339
|
-
* @param {
|
|
1340
|
-
* @param {number} endpointId
|
|
3118
|
+
*
|
|
3119
|
+
* @param {SettingsValues} [settingsValues]
|
|
1341
3120
|
* @param {*} [options] Override http request option.
|
|
1342
3121
|
* @throws {RequiredError}
|
|
1343
3122
|
*/
|
|
1344
|
-
|
|
3123
|
+
userConfigResourceV1SaveSettings(settingsValues?: SettingsValues, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1345
3124
|
};
|
|
1346
3125
|
/**
|
|
1347
|
-
*
|
|
3126
|
+
* UserConfigResourceV1SaveSettingsApi - factory interface
|
|
1348
3127
|
* @export
|
|
1349
3128
|
*/
|
|
1350
|
-
export declare const
|
|
3129
|
+
export declare const UserConfigResourceV1SaveSettingsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1351
3130
|
/**
|
|
1352
|
-
*
|
|
1353
|
-
* @param {
|
|
1354
|
-
* @param {number} endpointId
|
|
3131
|
+
*
|
|
3132
|
+
* @param {SettingsValues} [settingsValues]
|
|
1355
3133
|
* @param {*} [options] Override http request option.
|
|
1356
3134
|
* @throws {RequiredError}
|
|
1357
3135
|
*/
|
|
1358
|
-
|
|
3136
|
+
userConfigResourceV1SaveSettings(settingsValues?: SettingsValues, options?: any): AxiosPromise<void>;
|
|
1359
3137
|
};
|
|
1360
3138
|
/**
|
|
1361
|
-
*
|
|
3139
|
+
* UserConfigResourceV1SaveSettingsApi - object-oriented interface
|
|
1362
3140
|
* @export
|
|
1363
|
-
* @class
|
|
3141
|
+
* @class UserConfigResourceV1SaveSettingsApi
|
|
1364
3142
|
* @extends {BaseAPI}
|
|
1365
3143
|
*/
|
|
1366
|
-
export declare class
|
|
3144
|
+
export declare class UserConfigResourceV1SaveSettingsApi extends BaseAPI {
|
|
1367
3145
|
/**
|
|
1368
|
-
*
|
|
1369
|
-
* @param {
|
|
1370
|
-
* @param {number} endpointId
|
|
3146
|
+
*
|
|
3147
|
+
* @param {SettingsValues} [settingsValues]
|
|
1371
3148
|
* @param {*} [options] Override http request option.
|
|
1372
3149
|
* @throws {RequiredError}
|
|
1373
|
-
* @memberof
|
|
3150
|
+
* @memberof UserConfigResourceV1SaveSettingsApi
|
|
1374
3151
|
*/
|
|
1375
|
-
|
|
3152
|
+
userConfigResourceV1SaveSettings(settingsValues?: SettingsValues, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void>>;
|
|
1376
3153
|
}
|