@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
|
@@ -22,6 +22,7 @@ import type {
|
|
|
22
22
|
SendWebhookTestEventRequest,
|
|
23
23
|
TestWebhookTransformRequest,
|
|
24
24
|
UpdateWebhookRequest,
|
|
25
|
+
WebhookAccountMetricsResponse,
|
|
25
26
|
WebhookBulkRetryResponse,
|
|
26
27
|
WebhookCircuitStateResponse,
|
|
27
28
|
WebhookCreateResponse,
|
|
@@ -42,7 +43,6 @@ import type {
|
|
|
42
43
|
WebhookTransformTestResponse,
|
|
43
44
|
WebhookUsageResponse,
|
|
44
45
|
WebhookVersionsResponse,
|
|
45
|
-
WebhookWorkspaceMetricsResponse,
|
|
46
46
|
} from '../models/index';
|
|
47
47
|
import {
|
|
48
48
|
ApiErrorFromJSON,
|
|
@@ -59,6 +59,8 @@ import {
|
|
|
59
59
|
TestWebhookTransformRequestToJSON,
|
|
60
60
|
UpdateWebhookRequestFromJSON,
|
|
61
61
|
UpdateWebhookRequestToJSON,
|
|
62
|
+
WebhookAccountMetricsResponseFromJSON,
|
|
63
|
+
WebhookAccountMetricsResponseToJSON,
|
|
62
64
|
WebhookBulkRetryResponseFromJSON,
|
|
63
65
|
WebhookBulkRetryResponseToJSON,
|
|
64
66
|
WebhookCircuitStateResponseFromJSON,
|
|
@@ -99,8 +101,6 @@ import {
|
|
|
99
101
|
WebhookUsageResponseToJSON,
|
|
100
102
|
WebhookVersionsResponseFromJSON,
|
|
101
103
|
WebhookVersionsResponseToJSON,
|
|
102
|
-
WebhookWorkspaceMetricsResponseFromJSON,
|
|
103
|
-
WebhookWorkspaceMetricsResponseToJSON,
|
|
104
104
|
} from '../models/index';
|
|
105
105
|
|
|
106
106
|
export interface WebhooksApiBulkRetryWebhookDeliveriesOperationRequest {
|
|
@@ -262,6 +262,21 @@ export interface WebhooksApiInterface {
|
|
|
262
262
|
*/
|
|
263
263
|
deleteWebhook(id: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<WebhookDeleteResponse>;
|
|
264
264
|
|
|
265
|
+
/**
|
|
266
|
+
* Get aggregate webhook health and performance metrics for the entire account.
|
|
267
|
+
* @summary Get account webhook metrics
|
|
268
|
+
* @param {*} [options] Override http request option.
|
|
269
|
+
* @throws {RequiredError}
|
|
270
|
+
* @memberof WebhooksApiInterface
|
|
271
|
+
*/
|
|
272
|
+
getAccountWebhookMetricsRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<WebhookAccountMetricsResponse>>;
|
|
273
|
+
|
|
274
|
+
/**
|
|
275
|
+
* Get aggregate webhook health and performance metrics for the entire account.
|
|
276
|
+
* Get account webhook metrics
|
|
277
|
+
*/
|
|
278
|
+
getAccountWebhookMetrics(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<WebhookAccountMetricsResponse>;
|
|
279
|
+
|
|
265
280
|
/**
|
|
266
281
|
* Get a specific webhook by ID.
|
|
267
282
|
* @summary Get webhook
|
|
@@ -388,21 +403,6 @@ export interface WebhooksApiInterface {
|
|
|
388
403
|
*/
|
|
389
404
|
getWebhookUsage(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<WebhookUsageResponse>;
|
|
390
405
|
|
|
391
|
-
/**
|
|
392
|
-
* Get aggregate webhook health and performance metrics for the entire workspace.
|
|
393
|
-
* @summary Get workspace webhook metrics
|
|
394
|
-
* @param {*} [options] Override http request option.
|
|
395
|
-
* @throws {RequiredError}
|
|
396
|
-
* @memberof WebhooksApiInterface
|
|
397
|
-
*/
|
|
398
|
-
getWorkspaceWebhookMetricsRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<WebhookWorkspaceMetricsResponse>>;
|
|
399
|
-
|
|
400
|
-
/**
|
|
401
|
-
* Get aggregate webhook health and performance metrics for the entire workspace.
|
|
402
|
-
* Get workspace webhook metrics
|
|
403
|
-
*/
|
|
404
|
-
getWorkspaceWebhookMetrics(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<WebhookWorkspaceMetricsResponse>;
|
|
405
|
-
|
|
406
406
|
/**
|
|
407
407
|
* List delivery attempts for a webhook with filtering and pagination.
|
|
408
408
|
* @summary List webhook deliveries
|
|
@@ -458,7 +458,7 @@ export interface WebhooksApiInterface {
|
|
|
458
458
|
listWebhookVersions(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<WebhookVersionsResponse>;
|
|
459
459
|
|
|
460
460
|
/**
|
|
461
|
-
* List all webhooks for the
|
|
461
|
+
* List all webhooks for the account with pagination.
|
|
462
462
|
* @summary List webhooks
|
|
463
463
|
* @param {number} [limit] Maximum number of webhooks to return
|
|
464
464
|
* @param {number} [offset] Number of webhooks to skip
|
|
@@ -469,7 +469,7 @@ export interface WebhooksApiInterface {
|
|
|
469
469
|
listWebhooksRaw(requestParameters: WebhooksApiListWebhooksRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<WebhookListResponse>>;
|
|
470
470
|
|
|
471
471
|
/**
|
|
472
|
-
* List all webhooks for the
|
|
472
|
+
* List all webhooks for the account with pagination.
|
|
473
473
|
* List webhooks
|
|
474
474
|
*/
|
|
475
475
|
listWebhooks(limit?: number, offset?: number, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<WebhookListResponse>;
|
|
@@ -744,6 +744,38 @@ export class WebhooksApi extends runtime.BaseAPI implements WebhooksApiInterface
|
|
|
744
744
|
return await response.value();
|
|
745
745
|
}
|
|
746
746
|
|
|
747
|
+
/**
|
|
748
|
+
* Get aggregate webhook health and performance metrics for the entire account.
|
|
749
|
+
* Get account webhook metrics
|
|
750
|
+
*/
|
|
751
|
+
async getAccountWebhookMetricsRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<WebhookAccountMetricsResponse>> {
|
|
752
|
+
const queryParameters: any = {};
|
|
753
|
+
|
|
754
|
+
const headerParameters: runtime.HTTPHeaders = {};
|
|
755
|
+
|
|
756
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
757
|
+
headerParameters["X-API-Key"] = await this.configuration.apiKey("X-API-Key"); // ApiKeyAuth authentication
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
const response = await this.request({
|
|
761
|
+
path: `/v1/webhooks/metrics`,
|
|
762
|
+
method: 'GET',
|
|
763
|
+
headers: headerParameters,
|
|
764
|
+
query: queryParameters,
|
|
765
|
+
}, initOverrides);
|
|
766
|
+
|
|
767
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => WebhookAccountMetricsResponseFromJSON(jsonValue));
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
/**
|
|
771
|
+
* Get aggregate webhook health and performance metrics for the entire account.
|
|
772
|
+
* Get account webhook metrics
|
|
773
|
+
*/
|
|
774
|
+
async getAccountWebhookMetrics(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<WebhookAccountMetricsResponse> {
|
|
775
|
+
const response = await this.getAccountWebhookMetricsRaw(initOverrides);
|
|
776
|
+
return await response.value();
|
|
777
|
+
}
|
|
778
|
+
|
|
747
779
|
/**
|
|
748
780
|
* Get a specific webhook by ID.
|
|
749
781
|
* Get webhook
|
|
@@ -1042,38 +1074,6 @@ export class WebhooksApi extends runtime.BaseAPI implements WebhooksApiInterface
|
|
|
1042
1074
|
return await response.value();
|
|
1043
1075
|
}
|
|
1044
1076
|
|
|
1045
|
-
/**
|
|
1046
|
-
* Get aggregate webhook health and performance metrics for the entire workspace.
|
|
1047
|
-
* Get workspace webhook metrics
|
|
1048
|
-
*/
|
|
1049
|
-
async getWorkspaceWebhookMetricsRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<WebhookWorkspaceMetricsResponse>> {
|
|
1050
|
-
const queryParameters: any = {};
|
|
1051
|
-
|
|
1052
|
-
const headerParameters: runtime.HTTPHeaders = {};
|
|
1053
|
-
|
|
1054
|
-
if (this.configuration && this.configuration.apiKey) {
|
|
1055
|
-
headerParameters["X-API-Key"] = await this.configuration.apiKey("X-API-Key"); // ApiKeyAuth authentication
|
|
1056
|
-
}
|
|
1057
|
-
|
|
1058
|
-
const response = await this.request({
|
|
1059
|
-
path: `/v1/webhooks/metrics`,
|
|
1060
|
-
method: 'GET',
|
|
1061
|
-
headers: headerParameters,
|
|
1062
|
-
query: queryParameters,
|
|
1063
|
-
}, initOverrides);
|
|
1064
|
-
|
|
1065
|
-
return new runtime.JSONApiResponse(response, (jsonValue) => WebhookWorkspaceMetricsResponseFromJSON(jsonValue));
|
|
1066
|
-
}
|
|
1067
|
-
|
|
1068
|
-
/**
|
|
1069
|
-
* Get aggregate webhook health and performance metrics for the entire workspace.
|
|
1070
|
-
* Get workspace webhook metrics
|
|
1071
|
-
*/
|
|
1072
|
-
async getWorkspaceWebhookMetrics(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<WebhookWorkspaceMetricsResponse> {
|
|
1073
|
-
const response = await this.getWorkspaceWebhookMetricsRaw(initOverrides);
|
|
1074
|
-
return await response.value();
|
|
1075
|
-
}
|
|
1076
|
-
|
|
1077
1077
|
/**
|
|
1078
1078
|
* List delivery attempts for a webhook with filtering and pagination.
|
|
1079
1079
|
* List webhook deliveries
|
|
@@ -1210,7 +1210,7 @@ export class WebhooksApi extends runtime.BaseAPI implements WebhooksApiInterface
|
|
|
1210
1210
|
}
|
|
1211
1211
|
|
|
1212
1212
|
/**
|
|
1213
|
-
* List all webhooks for the
|
|
1213
|
+
* List all webhooks for the account with pagination.
|
|
1214
1214
|
* List webhooks
|
|
1215
1215
|
*/
|
|
1216
1216
|
async listWebhooksRaw(requestParameters: WebhooksApiListWebhooksRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<WebhookListResponse>> {
|
|
@@ -1241,7 +1241,7 @@ export class WebhooksApi extends runtime.BaseAPI implements WebhooksApiInterface
|
|
|
1241
1241
|
}
|
|
1242
1242
|
|
|
1243
1243
|
/**
|
|
1244
|
-
* List all webhooks for the
|
|
1244
|
+
* List all webhooks for the account with pagination.
|
|
1245
1245
|
* List webhooks
|
|
1246
1246
|
*/
|
|
1247
1247
|
async listWebhooks(limit?: number, offset?: number, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<WebhookListResponse> {
|
|
@@ -30,7 +30,13 @@ export interface Category {
|
|
|
30
30
|
* @type {string}
|
|
31
31
|
* @memberof Category
|
|
32
32
|
*/
|
|
33
|
-
|
|
33
|
+
accountId?: string;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof Category
|
|
38
|
+
*/
|
|
39
|
+
projectId?: string;
|
|
34
40
|
/**
|
|
35
41
|
*
|
|
36
42
|
* @type {string}
|
|
@@ -93,7 +99,8 @@ export function CategoryFromJSONTyped(json: any, ignoreDiscriminator: boolean):
|
|
|
93
99
|
return {
|
|
94
100
|
|
|
95
101
|
'id': json['id'] == null ? undefined : json['id'],
|
|
96
|
-
'
|
|
102
|
+
'accountId': json['account_id'] == null ? undefined : json['account_id'],
|
|
103
|
+
'projectId': json['project_id'] == null ? undefined : json['project_id'],
|
|
97
104
|
'name': json['name'] == null ? undefined : json['name'],
|
|
98
105
|
'slug': json['slug'] == null ? undefined : json['slug'],
|
|
99
106
|
'description': json['description'] == null ? undefined : json['description'],
|
|
@@ -116,7 +123,8 @@ export function CategoryToJSONTyped(value?: Category | null, ignoreDiscriminator
|
|
|
116
123
|
return {
|
|
117
124
|
|
|
118
125
|
'id': value['id'],
|
|
119
|
-
'
|
|
126
|
+
'account_id': value['accountId'],
|
|
127
|
+
'project_id': value['projectId'],
|
|
120
128
|
'name': value['name'],
|
|
121
129
|
'slug': value['slug'],
|
|
122
130
|
'description': value['description'],
|
|
@@ -30,7 +30,13 @@ export interface WaaSApplication {
|
|
|
30
30
|
* @type {string}
|
|
31
31
|
* @memberof WaaSApplication
|
|
32
32
|
*/
|
|
33
|
-
|
|
33
|
+
accountId?: string;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof WaaSApplication
|
|
38
|
+
*/
|
|
39
|
+
projectId?: string;
|
|
34
40
|
/**
|
|
35
41
|
*
|
|
36
42
|
* @type {string}
|
|
@@ -99,7 +105,8 @@ export function WaaSApplicationFromJSONTyped(json: any, ignoreDiscriminator: boo
|
|
|
99
105
|
return {
|
|
100
106
|
|
|
101
107
|
'id': json['id'] == null ? undefined : json['id'],
|
|
102
|
-
'
|
|
108
|
+
'accountId': json['account_id'] == null ? undefined : json['account_id'],
|
|
109
|
+
'projectId': json['project_id'] == null ? undefined : json['project_id'],
|
|
103
110
|
'name': json['name'] == null ? undefined : json['name'],
|
|
104
111
|
'slug': json['slug'] == null ? undefined : json['slug'],
|
|
105
112
|
'description': json['description'] == null ? undefined : json['description'],
|
|
@@ -121,7 +128,8 @@ export function WaaSApplicationToJSONTyped(value?: WaaSApplication | null, ignor
|
|
|
121
128
|
return {
|
|
122
129
|
|
|
123
130
|
'id': value['id'],
|
|
124
|
-
'
|
|
131
|
+
'account_id': value['accountId'],
|
|
132
|
+
'project_id': value['projectId'],
|
|
125
133
|
'name': value['name'],
|
|
126
134
|
'slug': value['slug'],
|
|
127
135
|
'description': value['description'],
|
package/src/src/models/{WebhookWorkspaceMetricsResponse.ts → WebhookAccountMetricsResponse.ts}
RENAMED
|
@@ -24,35 +24,35 @@ import {
|
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
26
|
* @export
|
|
27
|
-
* @interface
|
|
27
|
+
* @interface WebhookAccountMetricsResponse
|
|
28
28
|
*/
|
|
29
|
-
export interface
|
|
29
|
+
export interface WebhookAccountMetricsResponse {
|
|
30
30
|
/**
|
|
31
|
-
* Aggregate webhook metrics for the
|
|
31
|
+
* Aggregate webhook metrics for the account
|
|
32
32
|
* @type {object}
|
|
33
|
-
* @memberof
|
|
33
|
+
* @memberof WebhookAccountMetricsResponse
|
|
34
34
|
*/
|
|
35
35
|
data?: object;
|
|
36
36
|
/**
|
|
37
37
|
*
|
|
38
38
|
* @type {RequestMeta}
|
|
39
|
-
* @memberof
|
|
39
|
+
* @memberof WebhookAccountMetricsResponse
|
|
40
40
|
*/
|
|
41
41
|
meta?: RequestMeta;
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
/**
|
|
45
|
-
* Check if a given object implements the
|
|
45
|
+
* Check if a given object implements the WebhookAccountMetricsResponse interface.
|
|
46
46
|
*/
|
|
47
|
-
export function
|
|
47
|
+
export function instanceOfWebhookAccountMetricsResponse(value: object): value is WebhookAccountMetricsResponse {
|
|
48
48
|
return true;
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
-
export function
|
|
52
|
-
return
|
|
51
|
+
export function WebhookAccountMetricsResponseFromJSON(json: any): WebhookAccountMetricsResponse {
|
|
52
|
+
return WebhookAccountMetricsResponseFromJSONTyped(json, false);
|
|
53
53
|
}
|
|
54
54
|
|
|
55
|
-
export function
|
|
55
|
+
export function WebhookAccountMetricsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebhookAccountMetricsResponse {
|
|
56
56
|
if (json == null) {
|
|
57
57
|
return json;
|
|
58
58
|
}
|
|
@@ -63,11 +63,11 @@ export function WebhookWorkspaceMetricsResponseFromJSONTyped(json: any, ignoreDi
|
|
|
63
63
|
};
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
-
export function
|
|
67
|
-
return
|
|
66
|
+
export function WebhookAccountMetricsResponseToJSON(json: any): WebhookAccountMetricsResponse {
|
|
67
|
+
return WebhookAccountMetricsResponseToJSONTyped(json, false);
|
|
68
68
|
}
|
|
69
69
|
|
|
70
|
-
export function
|
|
70
|
+
export function WebhookAccountMetricsResponseToJSONTyped(value?: WebhookAccountMetricsResponse | null, ignoreDiscriminator: boolean = false): any {
|
|
71
71
|
if (value == null) {
|
|
72
72
|
return value;
|
|
73
73
|
}
|
package/src/src/models/index.ts
CHANGED
|
@@ -292,6 +292,7 @@ export * from './WebAuthnVerifyRegistrationRequest';
|
|
|
292
292
|
export * from './WebAuthnVerifyRegistrationResponse';
|
|
293
293
|
export * from './WebAuthnVerifyRegistrationResponseData';
|
|
294
294
|
export * from './Webhook';
|
|
295
|
+
export * from './WebhookAccountMetricsResponse';
|
|
295
296
|
export * from './WebhookBulkRetryResponse';
|
|
296
297
|
export * from './WebhookCircuitState';
|
|
297
298
|
export * from './WebhookCircuitStateResponse';
|
|
@@ -326,5 +327,4 @@ export * from './WebhookUsageResponse';
|
|
|
326
327
|
export * from './WebhookVersion';
|
|
327
328
|
export * from './WebhookVersionsResponse';
|
|
328
329
|
export * from './WebhookVersionsResponseData';
|
|
329
|
-
export * from './WebhookWorkspaceMetricsResponse';
|
|
330
330
|
export * from './WithdrawSubscriberConsentRequest';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"WebhookWorkspaceMetricsResponse.d.ts","sourceRoot":"","sources":["../../../src/src/models/WebhookWorkspaceMetricsResponse.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAQjD;;;;GAIG;AACH,MAAM,WAAW,+BAA+B;IAC5C;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,IAAI,CAAC,EAAE,WAAW,CAAC;CACtB;AAED;;GAEG;AACH,wBAAgB,yCAAyC,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,+BAA+B,CAEjH;AAED,wBAAgB,uCAAuC,CAAC,IAAI,EAAE,GAAG,GAAG,+BAA+B,CAElG;AAED,wBAAgB,4CAA4C,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,+BAA+B,CASrI;AAED,wBAAgB,qCAAqC,CAAC,IAAI,EAAE,GAAG,GAAG,+BAA+B,CAEhG;AAED,wBAAgB,0CAA0C,CAAC,KAAK,CAAC,EAAE,+BAA+B,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAUpJ"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"WebhookWorkspaceMetricsResponse.js","sourceRoot":"","sources":["../../../src/src/models/WebhookWorkspaceMetricsResponse.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;AAIH,OAAO,EACH,mBAAmB,EAEnB,iBAAiB,GAEpB,MAAM,eAAe,CAAC;AAsBvB;;GAEG;AACH,MAAM,UAAU,yCAAyC,CAAC,KAAa;IACnE,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,MAAM,UAAU,uCAAuC,CAAC,IAAS;IAC7D,OAAO,4CAA4C,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACrE,CAAC;AAED,MAAM,UAAU,4CAA4C,CAAC,IAAS,EAAE,mBAA4B;IAChG,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC;QACvD,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,mBAAmB,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;KAC/E,CAAC;AACN,CAAC;AAED,MAAM,UAAU,qCAAqC,CAAC,IAAS;IAC3D,OAAO,0CAA0C,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACnE,CAAC;AAED,MAAM,UAAU,0CAA0C,CAAC,KAA8C,EAAE,sBAA+B,KAAK;IAC3I,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC;QACrB,MAAM,EAAE,iBAAiB,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;KAC3C,CAAC;AACN,CAAC"}
|