@zyphr-dev/node-sdk 0.1.2 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/apis/DevicesApi.d.ts +8 -8
- package/dist/src/apis/DevicesApi.js +4 -4
- package/dist/src/apis/PushApi.d.ts +8 -8
- package/dist/src/apis/PushApi.js +4 -4
- package/dist/src/apis/SMSApi.d.ts +16 -16
- package/dist/src/apis/SMSApi.js +8 -8
- package/dist/src/apis/TemplatesApi.d.ts +8 -8
- package/dist/src/apis/TemplatesApi.js +4 -4
- package/dist/src/apis/TopicsApi.d.ts +8 -8
- package/dist/src/apis/TopicsApi.js +4 -4
- package/dist/src/apis/WaaSApplicationsApi.d.ts +4 -4
- package/dist/src/apis/WaaSApplicationsApi.js +2 -2
- package/dist/src/apis/WebhooksApi.d.ts +28 -28
- package/dist/src/apis/WebhooksApi.d.ts.map +1 -1
- package/dist/src/apis/WebhooksApi.js +29 -29
- package/dist/src/apis/WebhooksApi.js.map +1 -1
- package/dist/src/models/Category.d.ts +7 -1
- package/dist/src/models/Category.d.ts.map +1 -1
- package/dist/src/models/Category.js +4 -2
- package/dist/src/models/Category.js.map +1 -1
- package/dist/src/models/WaaSApplication.d.ts +7 -1
- package/dist/src/models/WaaSApplication.d.ts.map +1 -1
- package/dist/src/models/WaaSApplication.js +4 -2
- package/dist/src/models/WaaSApplication.js.map +1 -1
- package/dist/src/models/{WebhookWorkspaceMetricsResponse.d.ts → WebhookAccountMetricsResponse.d.ts} +12 -12
- package/dist/src/models/WebhookAccountMetricsResponse.d.ts.map +1 -0
- package/dist/src/models/{WebhookWorkspaceMetricsResponse.js → WebhookAccountMetricsResponse.js} +9 -9
- package/dist/src/models/WebhookAccountMetricsResponse.js.map +1 -0
- package/dist/src/models/index.d.ts +1 -1
- package/dist/src/models/index.d.ts.map +1 -1
- package/dist/src/models/index.js +1 -1
- package/dist/src/models/index.js.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +1 -1
- package/src/src/apis/DevicesApi.ts +8 -8
- package/src/src/apis/PushApi.ts +8 -8
- package/src/src/apis/SMSApi.ts +16 -16
- package/src/src/apis/TemplatesApi.ts +8 -8
- package/src/src/apis/TopicsApi.ts +8 -8
- package/src/src/apis/WaaSApplicationsApi.ts +4 -4
- package/src/src/apis/WebhooksApi.ts +54 -54
- package/src/src/models/Category.ts +11 -3
- package/src/src/models/WaaSApplication.ts +11 -3
- package/src/src/models/{WebhookWorkspaceMetricsResponse.ts → WebhookAccountMetricsResponse.ts} +13 -13
- package/src/src/models/index.ts +1 -1
- package/dist/src/models/WebhookWorkspaceMetricsResponse.d.ts.map +0 -1
- package/dist/src/models/WebhookWorkspaceMetricsResponse.js.map +0 -1
|
@@ -79,7 +79,7 @@ export interface DevicesApiInterface {
|
|
|
79
79
|
*/
|
|
80
80
|
getDevice(id: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<DeviceResponse>;
|
|
81
81
|
/**
|
|
82
|
-
* Get aggregated device statistics for the
|
|
82
|
+
* Get aggregated device statistics for the account.
|
|
83
83
|
* @summary Get device statistics
|
|
84
84
|
* @param {*} [options] Override http request option.
|
|
85
85
|
* @throws {RequiredError}
|
|
@@ -87,12 +87,12 @@ export interface DevicesApiInterface {
|
|
|
87
87
|
*/
|
|
88
88
|
getDeviceStatsRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<DeviceStatsResponse>>;
|
|
89
89
|
/**
|
|
90
|
-
* Get aggregated device statistics for the
|
|
90
|
+
* Get aggregated device statistics for the account.
|
|
91
91
|
* Get device statistics
|
|
92
92
|
*/
|
|
93
93
|
getDeviceStats(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<DeviceStatsResponse>;
|
|
94
94
|
/**
|
|
95
|
-
* List registered devices for the
|
|
95
|
+
* List registered devices for the account with optional filtering.
|
|
96
96
|
* @summary List devices
|
|
97
97
|
* @param {string} [userId] Filter by subscriber/user ID
|
|
98
98
|
* @param {'ios' | 'android' | 'web'} [platform]
|
|
@@ -104,7 +104,7 @@ export interface DevicesApiInterface {
|
|
|
104
104
|
*/
|
|
105
105
|
listDevicesRaw(requestParameters: DevicesApiListDevicesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<DeviceListResponse>>;
|
|
106
106
|
/**
|
|
107
|
-
* List registered devices for the
|
|
107
|
+
* List registered devices for the account with optional filtering.
|
|
108
108
|
* List devices
|
|
109
109
|
*/
|
|
110
110
|
listDevices(userId?: string, platform?: ListDevicesPlatformEnum, limit?: number, offset?: number, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<DeviceListResponse>;
|
|
@@ -158,22 +158,22 @@ export declare class DevicesApi extends runtime.BaseAPI implements DevicesApiInt
|
|
|
158
158
|
*/
|
|
159
159
|
getDevice(id: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<DeviceResponse>;
|
|
160
160
|
/**
|
|
161
|
-
* Get aggregated device statistics for the
|
|
161
|
+
* Get aggregated device statistics for the account.
|
|
162
162
|
* Get device statistics
|
|
163
163
|
*/
|
|
164
164
|
getDeviceStatsRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<DeviceStatsResponse>>;
|
|
165
165
|
/**
|
|
166
|
-
* Get aggregated device statistics for the
|
|
166
|
+
* Get aggregated device statistics for the account.
|
|
167
167
|
* Get device statistics
|
|
168
168
|
*/
|
|
169
169
|
getDeviceStats(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<DeviceStatsResponse>;
|
|
170
170
|
/**
|
|
171
|
-
* List registered devices for the
|
|
171
|
+
* List registered devices for the account with optional filtering.
|
|
172
172
|
* List devices
|
|
173
173
|
*/
|
|
174
174
|
listDevicesRaw(requestParameters: DevicesApiListDevicesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<DeviceListResponse>>;
|
|
175
175
|
/**
|
|
176
|
-
* List registered devices for the
|
|
176
|
+
* List registered devices for the account with optional filtering.
|
|
177
177
|
* List devices
|
|
178
178
|
*/
|
|
179
179
|
listDevices(userId?: string, platform?: ListDevicesPlatformEnum, limit?: number, offset?: number, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<DeviceListResponse>;
|
|
@@ -105,7 +105,7 @@ export class DevicesApi extends runtime.BaseAPI {
|
|
|
105
105
|
return await response.value();
|
|
106
106
|
}
|
|
107
107
|
/**
|
|
108
|
-
* Get aggregated device statistics for the
|
|
108
|
+
* Get aggregated device statistics for the account.
|
|
109
109
|
* Get device statistics
|
|
110
110
|
*/
|
|
111
111
|
async getDeviceStatsRaw(initOverrides) {
|
|
@@ -123,7 +123,7 @@ export class DevicesApi extends runtime.BaseAPI {
|
|
|
123
123
|
return new runtime.JSONApiResponse(response, (jsonValue) => DeviceStatsResponseFromJSON(jsonValue));
|
|
124
124
|
}
|
|
125
125
|
/**
|
|
126
|
-
* Get aggregated device statistics for the
|
|
126
|
+
* Get aggregated device statistics for the account.
|
|
127
127
|
* Get device statistics
|
|
128
128
|
*/
|
|
129
129
|
async getDeviceStats(initOverrides) {
|
|
@@ -131,7 +131,7 @@ export class DevicesApi extends runtime.BaseAPI {
|
|
|
131
131
|
return await response.value();
|
|
132
132
|
}
|
|
133
133
|
/**
|
|
134
|
-
* List registered devices for the
|
|
134
|
+
* List registered devices for the account with optional filtering.
|
|
135
135
|
* List devices
|
|
136
136
|
*/
|
|
137
137
|
async listDevicesRaw(requestParameters, initOverrides) {
|
|
@@ -161,7 +161,7 @@ export class DevicesApi extends runtime.BaseAPI {
|
|
|
161
161
|
return new runtime.JSONApiResponse(response, (jsonValue) => DeviceListResponseFromJSON(jsonValue));
|
|
162
162
|
}
|
|
163
163
|
/**
|
|
164
|
-
* List registered devices for the
|
|
164
|
+
* List registered devices for the account with optional filtering.
|
|
165
165
|
* List devices
|
|
166
166
|
*/
|
|
167
167
|
async listDevices(userId, platform, limit, offset, initOverrides) {
|
|
@@ -66,7 +66,7 @@ export interface PushApiInterface {
|
|
|
66
66
|
*/
|
|
67
67
|
getPush(id: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PushDetailResponse>;
|
|
68
68
|
/**
|
|
69
|
-
* Get aggregated push notification statistics for the
|
|
69
|
+
* Get aggregated push notification statistics for the account.
|
|
70
70
|
* @summary Get push notification statistics
|
|
71
71
|
* @param {*} [options] Override http request option.
|
|
72
72
|
* @throws {RequiredError}
|
|
@@ -74,7 +74,7 @@ export interface PushApiInterface {
|
|
|
74
74
|
*/
|
|
75
75
|
getPushStatsRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PushStatsResponse>>;
|
|
76
76
|
/**
|
|
77
|
-
* Get aggregated push notification statistics for the
|
|
77
|
+
* Get aggregated push notification statistics for the account.
|
|
78
78
|
* Get push notification statistics
|
|
79
79
|
*/
|
|
80
80
|
getPushStats(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PushStatsResponse>;
|
|
@@ -93,7 +93,7 @@ export interface PushApiInterface {
|
|
|
93
93
|
*/
|
|
94
94
|
listDevicePushTopics(id: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<DevicePushTopicListResponse>;
|
|
95
95
|
/**
|
|
96
|
-
* List push notification messages for the
|
|
96
|
+
* List push notification messages for the account with optional filtering.
|
|
97
97
|
* @summary List push notifications
|
|
98
98
|
* @param {string} [userId] Filter by subscriber/user ID
|
|
99
99
|
* @param {string} [deviceId] Filter by device ID
|
|
@@ -106,7 +106,7 @@ export interface PushApiInterface {
|
|
|
106
106
|
*/
|
|
107
107
|
listPushRaw(requestParameters: PushApiListPushRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PushListResponse>>;
|
|
108
108
|
/**
|
|
109
|
-
* List push notification messages for the
|
|
109
|
+
* List push notification messages for the account with optional filtering.
|
|
110
110
|
* List push notifications
|
|
111
111
|
*/
|
|
112
112
|
listPush(userId?: string, deviceId?: string, status?: ListPushStatusEnum, limit?: number, offset?: number, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PushListResponse>;
|
|
@@ -201,12 +201,12 @@ export declare class PushApi extends runtime.BaseAPI implements PushApiInterface
|
|
|
201
201
|
*/
|
|
202
202
|
getPush(id: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PushDetailResponse>;
|
|
203
203
|
/**
|
|
204
|
-
* Get aggregated push notification statistics for the
|
|
204
|
+
* Get aggregated push notification statistics for the account.
|
|
205
205
|
* Get push notification statistics
|
|
206
206
|
*/
|
|
207
207
|
getPushStatsRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PushStatsResponse>>;
|
|
208
208
|
/**
|
|
209
|
-
* Get aggregated push notification statistics for the
|
|
209
|
+
* Get aggregated push notification statistics for the account.
|
|
210
210
|
* Get push notification statistics
|
|
211
211
|
*/
|
|
212
212
|
getPushStats(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PushStatsResponse>;
|
|
@@ -221,12 +221,12 @@ export declare class PushApi extends runtime.BaseAPI implements PushApiInterface
|
|
|
221
221
|
*/
|
|
222
222
|
listDevicePushTopics(id: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<DevicePushTopicListResponse>;
|
|
223
223
|
/**
|
|
224
|
-
* List push notification messages for the
|
|
224
|
+
* List push notification messages for the account with optional filtering.
|
|
225
225
|
* List push notifications
|
|
226
226
|
*/
|
|
227
227
|
listPushRaw(requestParameters: PushApiListPushRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PushListResponse>>;
|
|
228
228
|
/**
|
|
229
|
-
* List push notification messages for the
|
|
229
|
+
* List push notification messages for the account with optional filtering.
|
|
230
230
|
* List push notifications
|
|
231
231
|
*/
|
|
232
232
|
listPush(userId?: string, deviceId?: string, status?: ListPushStatusEnum, limit?: number, offset?: number, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PushListResponse>;
|
package/dist/src/apis/PushApi.js
CHANGED
|
@@ -47,7 +47,7 @@ export class PushApi extends runtime.BaseAPI {
|
|
|
47
47
|
return await response.value();
|
|
48
48
|
}
|
|
49
49
|
/**
|
|
50
|
-
* Get aggregated push notification statistics for the
|
|
50
|
+
* Get aggregated push notification statistics for the account.
|
|
51
51
|
* Get push notification statistics
|
|
52
52
|
*/
|
|
53
53
|
async getPushStatsRaw(initOverrides) {
|
|
@@ -65,7 +65,7 @@ export class PushApi extends runtime.BaseAPI {
|
|
|
65
65
|
return new runtime.JSONApiResponse(response, (jsonValue) => PushStatsResponseFromJSON(jsonValue));
|
|
66
66
|
}
|
|
67
67
|
/**
|
|
68
|
-
* Get aggregated push notification statistics for the
|
|
68
|
+
* Get aggregated push notification statistics for the account.
|
|
69
69
|
* Get push notification statistics
|
|
70
70
|
*/
|
|
71
71
|
async getPushStats(initOverrides) {
|
|
@@ -102,7 +102,7 @@ export class PushApi extends runtime.BaseAPI {
|
|
|
102
102
|
return await response.value();
|
|
103
103
|
}
|
|
104
104
|
/**
|
|
105
|
-
* List push notification messages for the
|
|
105
|
+
* List push notification messages for the account with optional filtering.
|
|
106
106
|
* List push notifications
|
|
107
107
|
*/
|
|
108
108
|
async listPushRaw(requestParameters, initOverrides) {
|
|
@@ -135,7 +135,7 @@ export class PushApi extends runtime.BaseAPI {
|
|
|
135
135
|
return new runtime.JSONApiResponse(response, (jsonValue) => PushListResponseFromJSON(jsonValue));
|
|
136
136
|
}
|
|
137
137
|
/**
|
|
138
|
-
* List push notification messages for the
|
|
138
|
+
* List push notification messages for the account with optional filtering.
|
|
139
139
|
* List push notifications
|
|
140
140
|
*/
|
|
141
141
|
async listPush(userId, deviceId, status, limit, offset, initOverrides) {
|
|
@@ -40,7 +40,7 @@ export interface SMSApiUpsertSmsConfigOperationRequest {
|
|
|
40
40
|
*/
|
|
41
41
|
export interface SMSApiInterface {
|
|
42
42
|
/**
|
|
43
|
-
* Remove the SMS provider configuration for the
|
|
43
|
+
* Remove the SMS provider configuration for the account.
|
|
44
44
|
* @summary Delete SMS configuration
|
|
45
45
|
* @param {*} [options] Override http request option.
|
|
46
46
|
* @throws {RequiredError}
|
|
@@ -48,7 +48,7 @@ export interface SMSApiInterface {
|
|
|
48
48
|
*/
|
|
49
49
|
deleteSmsConfigRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<SmsConfigDeleteResponse>>;
|
|
50
50
|
/**
|
|
51
|
-
* Remove the SMS provider configuration for the
|
|
51
|
+
* Remove the SMS provider configuration for the account.
|
|
52
52
|
* Delete SMS configuration
|
|
53
53
|
*/
|
|
54
54
|
deleteSmsConfig(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SmsConfigDeleteResponse>;
|
|
@@ -67,7 +67,7 @@ export interface SMSApiInterface {
|
|
|
67
67
|
*/
|
|
68
68
|
getSms(id: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SmsDetailResponse>;
|
|
69
69
|
/**
|
|
70
|
-
* Get the current SMS provider configuration for the
|
|
70
|
+
* Get the current SMS provider configuration for the account.
|
|
71
71
|
* @summary Get SMS configuration
|
|
72
72
|
* @param {*} [options] Override http request option.
|
|
73
73
|
* @throws {RequiredError}
|
|
@@ -75,12 +75,12 @@ export interface SMSApiInterface {
|
|
|
75
75
|
*/
|
|
76
76
|
getSmsConfigRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<SmsConfigResponse>>;
|
|
77
77
|
/**
|
|
78
|
-
* Get the current SMS provider configuration for the
|
|
78
|
+
* Get the current SMS provider configuration for the account.
|
|
79
79
|
* Get SMS configuration
|
|
80
80
|
*/
|
|
81
81
|
getSmsConfig(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SmsConfigResponse>;
|
|
82
82
|
/**
|
|
83
|
-
* List SMS messages for the
|
|
83
|
+
* List SMS messages for the account with optional filtering and pagination.
|
|
84
84
|
* @summary List SMS messages
|
|
85
85
|
* @param {number} [page]
|
|
86
86
|
* @param {number} [perPage]
|
|
@@ -92,7 +92,7 @@ export interface SMSApiInterface {
|
|
|
92
92
|
*/
|
|
93
93
|
listSmsRaw(requestParameters: SMSApiListSmsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<SmsListResponse>>;
|
|
94
94
|
/**
|
|
95
|
-
* List SMS messages for the
|
|
95
|
+
* List SMS messages for the account with optional filtering and pagination.
|
|
96
96
|
* List SMS messages
|
|
97
97
|
*/
|
|
98
98
|
listSms(page?: number, perPage?: number, status?: ListSmsStatusEnum, search?: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SmsListResponse>;
|
|
@@ -139,7 +139,7 @@ export interface SMSApiInterface {
|
|
|
139
139
|
*/
|
|
140
140
|
sendTestSms(sendTestSmsRequest: SendTestSmsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SendTestSmsResponse>;
|
|
141
141
|
/**
|
|
142
|
-
* Set up or update the SMS provider configuration (Twilio) for the
|
|
142
|
+
* Set up or update the SMS provider configuration (Twilio) for the account. Automatically verifies credentials.
|
|
143
143
|
* @summary Create or update SMS configuration
|
|
144
144
|
* @param {UpsertSmsConfigRequest} upsertSmsConfigRequest
|
|
145
145
|
* @param {*} [options] Override http request option.
|
|
@@ -148,7 +148,7 @@ export interface SMSApiInterface {
|
|
|
148
148
|
*/
|
|
149
149
|
upsertSmsConfigRaw(requestParameters: SMSApiUpsertSmsConfigOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<SmsConfigResponse>>;
|
|
150
150
|
/**
|
|
151
|
-
* Set up or update the SMS provider configuration (Twilio) for the
|
|
151
|
+
* Set up or update the SMS provider configuration (Twilio) for the account. Automatically verifies credentials.
|
|
152
152
|
* Create or update SMS configuration
|
|
153
153
|
*/
|
|
154
154
|
upsertSmsConfig(upsertSmsConfigRequest: UpsertSmsConfigRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SmsConfigResponse>;
|
|
@@ -171,12 +171,12 @@ export interface SMSApiInterface {
|
|
|
171
171
|
*/
|
|
172
172
|
export declare class SMSApi extends runtime.BaseAPI implements SMSApiInterface {
|
|
173
173
|
/**
|
|
174
|
-
* Remove the SMS provider configuration for the
|
|
174
|
+
* Remove the SMS provider configuration for the account.
|
|
175
175
|
* Delete SMS configuration
|
|
176
176
|
*/
|
|
177
177
|
deleteSmsConfigRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<SmsConfigDeleteResponse>>;
|
|
178
178
|
/**
|
|
179
|
-
* Remove the SMS provider configuration for the
|
|
179
|
+
* Remove the SMS provider configuration for the account.
|
|
180
180
|
* Delete SMS configuration
|
|
181
181
|
*/
|
|
182
182
|
deleteSmsConfig(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SmsConfigDeleteResponse>;
|
|
@@ -191,22 +191,22 @@ export declare class SMSApi extends runtime.BaseAPI implements SMSApiInterface {
|
|
|
191
191
|
*/
|
|
192
192
|
getSms(id: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SmsDetailResponse>;
|
|
193
193
|
/**
|
|
194
|
-
* Get the current SMS provider configuration for the
|
|
194
|
+
* Get the current SMS provider configuration for the account.
|
|
195
195
|
* Get SMS configuration
|
|
196
196
|
*/
|
|
197
197
|
getSmsConfigRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<SmsConfigResponse>>;
|
|
198
198
|
/**
|
|
199
|
-
* Get the current SMS provider configuration for the
|
|
199
|
+
* Get the current SMS provider configuration for the account.
|
|
200
200
|
* Get SMS configuration
|
|
201
201
|
*/
|
|
202
202
|
getSmsConfig(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SmsConfigResponse>;
|
|
203
203
|
/**
|
|
204
|
-
* List SMS messages for the
|
|
204
|
+
* List SMS messages for the account with optional filtering and pagination.
|
|
205
205
|
* List SMS messages
|
|
206
206
|
*/
|
|
207
207
|
listSmsRaw(requestParameters: SMSApiListSmsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<SmsListResponse>>;
|
|
208
208
|
/**
|
|
209
|
-
* List SMS messages for the
|
|
209
|
+
* List SMS messages for the account with optional filtering and pagination.
|
|
210
210
|
* List SMS messages
|
|
211
211
|
*/
|
|
212
212
|
listSms(page?: number, perPage?: number, status?: ListSmsStatusEnum, search?: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SmsListResponse>;
|
|
@@ -241,12 +241,12 @@ export declare class SMSApi extends runtime.BaseAPI implements SMSApiInterface {
|
|
|
241
241
|
*/
|
|
242
242
|
sendTestSms(sendTestSmsRequest: SendTestSmsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SendTestSmsResponse>;
|
|
243
243
|
/**
|
|
244
|
-
* Set up or update the SMS provider configuration (Twilio) for the
|
|
244
|
+
* Set up or update the SMS provider configuration (Twilio) for the account. Automatically verifies credentials.
|
|
245
245
|
* Create or update SMS configuration
|
|
246
246
|
*/
|
|
247
247
|
upsertSmsConfigRaw(requestParameters: SMSApiUpsertSmsConfigOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<SmsConfigResponse>>;
|
|
248
248
|
/**
|
|
249
|
-
* Set up or update the SMS provider configuration (Twilio) for the
|
|
249
|
+
* Set up or update the SMS provider configuration (Twilio) for the account. Automatically verifies credentials.
|
|
250
250
|
* Create or update SMS configuration
|
|
251
251
|
*/
|
|
252
252
|
upsertSmsConfig(upsertSmsConfigRequest: UpsertSmsConfigRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<SmsConfigResponse>;
|
package/dist/src/apis/SMSApi.js
CHANGED
|
@@ -18,7 +18,7 @@ import { SendBatchSmsRequestToJSON, SendBatchSmsResponseFromJSON, SendSmsRequest
|
|
|
18
18
|
*/
|
|
19
19
|
export class SMSApi extends runtime.BaseAPI {
|
|
20
20
|
/**
|
|
21
|
-
* Remove the SMS provider configuration for the
|
|
21
|
+
* Remove the SMS provider configuration for the account.
|
|
22
22
|
* Delete SMS configuration
|
|
23
23
|
*/
|
|
24
24
|
async deleteSmsConfigRaw(initOverrides) {
|
|
@@ -36,7 +36,7 @@ export class SMSApi extends runtime.BaseAPI {
|
|
|
36
36
|
return new runtime.JSONApiResponse(response, (jsonValue) => SmsConfigDeleteResponseFromJSON(jsonValue));
|
|
37
37
|
}
|
|
38
38
|
/**
|
|
39
|
-
* Remove the SMS provider configuration for the
|
|
39
|
+
* Remove the SMS provider configuration for the account.
|
|
40
40
|
* Delete SMS configuration
|
|
41
41
|
*/
|
|
42
42
|
async deleteSmsConfig(initOverrides) {
|
|
@@ -73,7 +73,7 @@ export class SMSApi extends runtime.BaseAPI {
|
|
|
73
73
|
return await response.value();
|
|
74
74
|
}
|
|
75
75
|
/**
|
|
76
|
-
* Get the current SMS provider configuration for the
|
|
76
|
+
* Get the current SMS provider configuration for the account.
|
|
77
77
|
* Get SMS configuration
|
|
78
78
|
*/
|
|
79
79
|
async getSmsConfigRaw(initOverrides) {
|
|
@@ -91,7 +91,7 @@ export class SMSApi extends runtime.BaseAPI {
|
|
|
91
91
|
return new runtime.JSONApiResponse(response, (jsonValue) => SmsConfigResponseFromJSON(jsonValue));
|
|
92
92
|
}
|
|
93
93
|
/**
|
|
94
|
-
* Get the current SMS provider configuration for the
|
|
94
|
+
* Get the current SMS provider configuration for the account.
|
|
95
95
|
* Get SMS configuration
|
|
96
96
|
*/
|
|
97
97
|
async getSmsConfig(initOverrides) {
|
|
@@ -99,7 +99,7 @@ export class SMSApi extends runtime.BaseAPI {
|
|
|
99
99
|
return await response.value();
|
|
100
100
|
}
|
|
101
101
|
/**
|
|
102
|
-
* List SMS messages for the
|
|
102
|
+
* List SMS messages for the account with optional filtering and pagination.
|
|
103
103
|
* List SMS messages
|
|
104
104
|
*/
|
|
105
105
|
async listSmsRaw(requestParameters, initOverrides) {
|
|
@@ -129,7 +129,7 @@ export class SMSApi extends runtime.BaseAPI {
|
|
|
129
129
|
return new runtime.JSONApiResponse(response, (jsonValue) => SmsListResponseFromJSON(jsonValue));
|
|
130
130
|
}
|
|
131
131
|
/**
|
|
132
|
-
* List SMS messages for the
|
|
132
|
+
* List SMS messages for the account with optional filtering and pagination.
|
|
133
133
|
* List SMS messages
|
|
134
134
|
*/
|
|
135
135
|
async listSms(page, perPage, status, search, initOverrides) {
|
|
@@ -230,7 +230,7 @@ export class SMSApi extends runtime.BaseAPI {
|
|
|
230
230
|
return await response.value();
|
|
231
231
|
}
|
|
232
232
|
/**
|
|
233
|
-
* Set up or update the SMS provider configuration (Twilio) for the
|
|
233
|
+
* Set up or update the SMS provider configuration (Twilio) for the account. Automatically verifies credentials.
|
|
234
234
|
* Create or update SMS configuration
|
|
235
235
|
*/
|
|
236
236
|
async upsertSmsConfigRaw(requestParameters, initOverrides) {
|
|
@@ -253,7 +253,7 @@ export class SMSApi extends runtime.BaseAPI {
|
|
|
253
253
|
return new runtime.JSONApiResponse(response, (jsonValue) => SmsConfigResponseFromJSON(jsonValue));
|
|
254
254
|
}
|
|
255
255
|
/**
|
|
256
|
-
* Set up or update the SMS provider configuration (Twilio) for the
|
|
256
|
+
* Set up or update the SMS provider configuration (Twilio) for the account. Automatically verifies credentials.
|
|
257
257
|
* Create or update SMS configuration
|
|
258
258
|
*/
|
|
259
259
|
async upsertSmsConfig(upsertSmsConfigRequest, initOverrides) {
|
|
@@ -40,7 +40,7 @@ export interface TemplatesApiUpdateTemplateOperationRequest {
|
|
|
40
40
|
*/
|
|
41
41
|
export interface TemplatesApiInterface {
|
|
42
42
|
/**
|
|
43
|
-
* Create a new email template. Name must be unique within the
|
|
43
|
+
* Create a new email template. Name must be unique within the account.
|
|
44
44
|
* @summary Create template
|
|
45
45
|
* @param {CreateTemplateRequest} createTemplateRequest
|
|
46
46
|
* @param {*} [options] Override http request option.
|
|
@@ -49,7 +49,7 @@ export interface TemplatesApiInterface {
|
|
|
49
49
|
*/
|
|
50
50
|
createTemplateRaw(requestParameters: TemplatesApiCreateTemplateOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<TemplateResponse>>;
|
|
51
51
|
/**
|
|
52
|
-
* Create a new email template. Name must be unique within the
|
|
52
|
+
* Create a new email template. Name must be unique within the account.
|
|
53
53
|
* Create template
|
|
54
54
|
*/
|
|
55
55
|
createTemplate(createTemplateRequest: CreateTemplateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<TemplateResponse>;
|
|
@@ -82,7 +82,7 @@ export interface TemplatesApiInterface {
|
|
|
82
82
|
*/
|
|
83
83
|
getTemplate(id: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<TemplateResponse>;
|
|
84
84
|
/**
|
|
85
|
-
* List templates for the
|
|
85
|
+
* List templates for the account with optional pagination.
|
|
86
86
|
* @summary List templates
|
|
87
87
|
* @param {number} [limit]
|
|
88
88
|
* @param {number} [offset]
|
|
@@ -92,7 +92,7 @@ export interface TemplatesApiInterface {
|
|
|
92
92
|
*/
|
|
93
93
|
listTemplatesRaw(requestParameters: TemplatesApiListTemplatesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<TemplateListResponse>>;
|
|
94
94
|
/**
|
|
95
|
-
* List templates for the
|
|
95
|
+
* List templates for the account with optional pagination.
|
|
96
96
|
* List templates
|
|
97
97
|
*/
|
|
98
98
|
listTemplates(limit?: number, offset?: number, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<TemplateListResponse>;
|
|
@@ -132,12 +132,12 @@ export interface TemplatesApiInterface {
|
|
|
132
132
|
*/
|
|
133
133
|
export declare class TemplatesApi extends runtime.BaseAPI implements TemplatesApiInterface {
|
|
134
134
|
/**
|
|
135
|
-
* Create a new email template. Name must be unique within the
|
|
135
|
+
* Create a new email template. Name must be unique within the account.
|
|
136
136
|
* Create template
|
|
137
137
|
*/
|
|
138
138
|
createTemplateRaw(requestParameters: TemplatesApiCreateTemplateOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<TemplateResponse>>;
|
|
139
139
|
/**
|
|
140
|
-
* Create a new email template. Name must be unique within the
|
|
140
|
+
* Create a new email template. Name must be unique within the account.
|
|
141
141
|
* Create template
|
|
142
142
|
*/
|
|
143
143
|
createTemplate(createTemplateRequest: CreateTemplateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<TemplateResponse>;
|
|
@@ -162,12 +162,12 @@ export declare class TemplatesApi extends runtime.BaseAPI implements TemplatesAp
|
|
|
162
162
|
*/
|
|
163
163
|
getTemplate(id: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<TemplateResponse>;
|
|
164
164
|
/**
|
|
165
|
-
* List templates for the
|
|
165
|
+
* List templates for the account with optional pagination.
|
|
166
166
|
* List templates
|
|
167
167
|
*/
|
|
168
168
|
listTemplatesRaw(requestParameters: TemplatesApiListTemplatesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<TemplateListResponse>>;
|
|
169
169
|
/**
|
|
170
|
-
* List templates for the
|
|
170
|
+
* List templates for the account with optional pagination.
|
|
171
171
|
* List templates
|
|
172
172
|
*/
|
|
173
173
|
listTemplates(limit?: number, offset?: number, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<TemplateListResponse>;
|
|
@@ -18,7 +18,7 @@ import { CreateTemplateRequestToJSON, DeleteResultFromJSON, RenderTemplateReques
|
|
|
18
18
|
*/
|
|
19
19
|
export class TemplatesApi extends runtime.BaseAPI {
|
|
20
20
|
/**
|
|
21
|
-
* Create a new email template. Name must be unique within the
|
|
21
|
+
* Create a new email template. Name must be unique within the account.
|
|
22
22
|
* Create template
|
|
23
23
|
*/
|
|
24
24
|
async createTemplateRaw(requestParameters, initOverrides) {
|
|
@@ -41,7 +41,7 @@ export class TemplatesApi extends runtime.BaseAPI {
|
|
|
41
41
|
return new runtime.JSONApiResponse(response, (jsonValue) => TemplateResponseFromJSON(jsonValue));
|
|
42
42
|
}
|
|
43
43
|
/**
|
|
44
|
-
* Create a new email template. Name must be unique within the
|
|
44
|
+
* Create a new email template. Name must be unique within the account.
|
|
45
45
|
* Create template
|
|
46
46
|
*/
|
|
47
47
|
async createTemplate(createTemplateRequest, initOverrides) {
|
|
@@ -107,7 +107,7 @@ export class TemplatesApi extends runtime.BaseAPI {
|
|
|
107
107
|
return await response.value();
|
|
108
108
|
}
|
|
109
109
|
/**
|
|
110
|
-
* List templates for the
|
|
110
|
+
* List templates for the account with optional pagination.
|
|
111
111
|
* List templates
|
|
112
112
|
*/
|
|
113
113
|
async listTemplatesRaw(requestParameters, initOverrides) {
|
|
@@ -131,7 +131,7 @@ export class TemplatesApi extends runtime.BaseAPI {
|
|
|
131
131
|
return new runtime.JSONApiResponse(response, (jsonValue) => TemplateListResponseFromJSON(jsonValue));
|
|
132
132
|
}
|
|
133
133
|
/**
|
|
134
|
-
* List templates for the
|
|
134
|
+
* List templates for the account with optional pagination.
|
|
135
135
|
* List templates
|
|
136
136
|
*/
|
|
137
137
|
async listTemplates(limit, offset, initOverrides) {
|
|
@@ -107,7 +107,7 @@ export interface TopicsApiInterface {
|
|
|
107
107
|
*/
|
|
108
108
|
getTopic(key: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<TopicResponse>;
|
|
109
109
|
/**
|
|
110
|
-
* Get aggregate statistics for all topics in the
|
|
110
|
+
* Get aggregate statistics for all topics in the account.
|
|
111
111
|
* @summary Get topic statistics
|
|
112
112
|
* @param {*} [options] Override http request option.
|
|
113
113
|
* @throws {RequiredError}
|
|
@@ -115,7 +115,7 @@ export interface TopicsApiInterface {
|
|
|
115
115
|
*/
|
|
116
116
|
getTopicStatsRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<TopicStatsResponse>>;
|
|
117
117
|
/**
|
|
118
|
-
* Get aggregate statistics for all topics in the
|
|
118
|
+
* Get aggregate statistics for all topics in the account.
|
|
119
119
|
* Get topic statistics
|
|
120
120
|
*/
|
|
121
121
|
getTopicStats(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<TopicStatsResponse>;
|
|
@@ -136,7 +136,7 @@ export interface TopicsApiInterface {
|
|
|
136
136
|
*/
|
|
137
137
|
listTopicSubscribers(key: string, page?: number, perPage?: number, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<TopicSubscriberListResponse>;
|
|
138
138
|
/**
|
|
139
|
-
* List all topics for the
|
|
139
|
+
* List all topics for the account with pagination and optional search.
|
|
140
140
|
* @summary List topics
|
|
141
141
|
* @param {number} [page] Page number
|
|
142
142
|
* @param {number} [perPage] Items per page (max 100)
|
|
@@ -147,7 +147,7 @@ export interface TopicsApiInterface {
|
|
|
147
147
|
*/
|
|
148
148
|
listTopicsRaw(requestParameters: TopicsApiListTopicsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<TopicListResponse>>;
|
|
149
149
|
/**
|
|
150
|
-
* List all topics for the
|
|
150
|
+
* List all topics for the account with pagination and optional search.
|
|
151
151
|
* List topics
|
|
152
152
|
*/
|
|
153
153
|
listTopics(page?: number, perPage?: number, search?: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<TopicListResponse>;
|
|
@@ -227,12 +227,12 @@ export declare class TopicsApi extends runtime.BaseAPI implements TopicsApiInter
|
|
|
227
227
|
*/
|
|
228
228
|
getTopic(key: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<TopicResponse>;
|
|
229
229
|
/**
|
|
230
|
-
* Get aggregate statistics for all topics in the
|
|
230
|
+
* Get aggregate statistics for all topics in the account.
|
|
231
231
|
* Get topic statistics
|
|
232
232
|
*/
|
|
233
233
|
getTopicStatsRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<TopicStatsResponse>>;
|
|
234
234
|
/**
|
|
235
|
-
* Get aggregate statistics for all topics in the
|
|
235
|
+
* Get aggregate statistics for all topics in the account.
|
|
236
236
|
* Get topic statistics
|
|
237
237
|
*/
|
|
238
238
|
getTopicStats(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<TopicStatsResponse>;
|
|
@@ -247,12 +247,12 @@ export declare class TopicsApi extends runtime.BaseAPI implements TopicsApiInter
|
|
|
247
247
|
*/
|
|
248
248
|
listTopicSubscribers(key: string, page?: number, perPage?: number, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<TopicSubscriberListResponse>;
|
|
249
249
|
/**
|
|
250
|
-
* List all topics for the
|
|
250
|
+
* List all topics for the account with pagination and optional search.
|
|
251
251
|
* List topics
|
|
252
252
|
*/
|
|
253
253
|
listTopicsRaw(requestParameters: TopicsApiListTopicsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<TopicListResponse>>;
|
|
254
254
|
/**
|
|
255
|
-
* List all topics for the
|
|
255
|
+
* List all topics for the account with pagination and optional search.
|
|
256
256
|
* List topics
|
|
257
257
|
*/
|
|
258
258
|
listTopics(page?: number, perPage?: number, search?: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<TopicListResponse>;
|
|
@@ -141,7 +141,7 @@ export class TopicsApi extends runtime.BaseAPI {
|
|
|
141
141
|
return await response.value();
|
|
142
142
|
}
|
|
143
143
|
/**
|
|
144
|
-
* Get aggregate statistics for all topics in the
|
|
144
|
+
* Get aggregate statistics for all topics in the account.
|
|
145
145
|
* Get topic statistics
|
|
146
146
|
*/
|
|
147
147
|
async getTopicStatsRaw(initOverrides) {
|
|
@@ -159,7 +159,7 @@ export class TopicsApi extends runtime.BaseAPI {
|
|
|
159
159
|
return new runtime.JSONApiResponse(response, (jsonValue) => TopicStatsResponseFromJSON(jsonValue));
|
|
160
160
|
}
|
|
161
161
|
/**
|
|
162
|
-
* Get aggregate statistics for all topics in the
|
|
162
|
+
* Get aggregate statistics for all topics in the account.
|
|
163
163
|
* Get topic statistics
|
|
164
164
|
*/
|
|
165
165
|
async getTopicStats(initOverrides) {
|
|
@@ -202,7 +202,7 @@ export class TopicsApi extends runtime.BaseAPI {
|
|
|
202
202
|
return await response.value();
|
|
203
203
|
}
|
|
204
204
|
/**
|
|
205
|
-
* List all topics for the
|
|
205
|
+
* List all topics for the account with pagination and optional search.
|
|
206
206
|
* List topics
|
|
207
207
|
*/
|
|
208
208
|
async listTopicsRaw(requestParameters, initOverrides) {
|
|
@@ -229,7 +229,7 @@ export class TopicsApi extends runtime.BaseAPI {
|
|
|
229
229
|
return new runtime.JSONApiResponse(response, (jsonValue) => TopicListResponseFromJSON(jsonValue));
|
|
230
230
|
}
|
|
231
231
|
/**
|
|
232
|
-
* List all topics for the
|
|
232
|
+
* List all topics for the account with pagination and optional search.
|
|
233
233
|
* List topics
|
|
234
234
|
*/
|
|
235
235
|
async listTopics(page, perPage, search, initOverrides) {
|
|
@@ -96,7 +96,7 @@ export interface WaaSApplicationsApiInterface {
|
|
|
96
96
|
*/
|
|
97
97
|
getWaaSUsage(appId: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetWaaSUsage200Response>;
|
|
98
98
|
/**
|
|
99
|
-
* List all Webhooks-as-a-Service applications in the
|
|
99
|
+
* List all Webhooks-as-a-Service applications in the account.
|
|
100
100
|
* @summary List WaaS applications
|
|
101
101
|
* @param {number} [limit]
|
|
102
102
|
* @param {number} [offset]
|
|
@@ -107,7 +107,7 @@ export interface WaaSApplicationsApiInterface {
|
|
|
107
107
|
*/
|
|
108
108
|
listWaaSApplicationsRaw(requestParameters: WaaSApplicationsApiListWaaSApplicationsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ListWaaSApplications200Response>>;
|
|
109
109
|
/**
|
|
110
|
-
* List all Webhooks-as-a-Service applications in the
|
|
110
|
+
* List all Webhooks-as-a-Service applications in the account.
|
|
111
111
|
* List WaaS applications
|
|
112
112
|
*/
|
|
113
113
|
listWaaSApplications(limit?: number, offset?: number, status?: ListWaaSApplicationsStatusEnum, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ListWaaSApplications200Response>;
|
|
@@ -172,12 +172,12 @@ export declare class WaaSApplicationsApi extends runtime.BaseAPI implements WaaS
|
|
|
172
172
|
*/
|
|
173
173
|
getWaaSUsage(appId: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetWaaSUsage200Response>;
|
|
174
174
|
/**
|
|
175
|
-
* List all Webhooks-as-a-Service applications in the
|
|
175
|
+
* List all Webhooks-as-a-Service applications in the account.
|
|
176
176
|
* List WaaS applications
|
|
177
177
|
*/
|
|
178
178
|
listWaaSApplicationsRaw(requestParameters: WaaSApplicationsApiListWaaSApplicationsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ListWaaSApplications200Response>>;
|
|
179
179
|
/**
|
|
180
|
-
* List all Webhooks-as-a-Service applications in the
|
|
180
|
+
* List all Webhooks-as-a-Service applications in the account.
|
|
181
181
|
* List WaaS applications
|
|
182
182
|
*/
|
|
183
183
|
listWaaSApplications(limit?: number, offset?: number, status?: ListWaaSApplicationsStatusEnum, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ListWaaSApplications200Response>;
|
|
@@ -135,7 +135,7 @@ export class WaaSApplicationsApi extends runtime.BaseAPI {
|
|
|
135
135
|
return await response.value();
|
|
136
136
|
}
|
|
137
137
|
/**
|
|
138
|
-
* List all Webhooks-as-a-Service applications in the
|
|
138
|
+
* List all Webhooks-as-a-Service applications in the account.
|
|
139
139
|
* List WaaS applications
|
|
140
140
|
*/
|
|
141
141
|
async listWaaSApplicationsRaw(requestParameters, initOverrides) {
|
|
@@ -162,7 +162,7 @@ export class WaaSApplicationsApi extends runtime.BaseAPI {
|
|
|
162
162
|
return new runtime.JSONApiResponse(response, (jsonValue) => ListWaaSApplications200ResponseFromJSON(jsonValue));
|
|
163
163
|
}
|
|
164
164
|
/**
|
|
165
|
-
* List all Webhooks-as-a-Service applications in the
|
|
165
|
+
* List all Webhooks-as-a-Service applications in the account.
|
|
166
166
|
* List WaaS applications
|
|
167
167
|
*/
|
|
168
168
|
async listWaaSApplications(limit, offset, status, initOverrides) {
|