byzip-v2-sdk 1.0.45 → 1.0.47
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/generated.d.ts +4 -4
- package/package.json +1 -1
package/dist/generated.d.ts
CHANGED
|
@@ -250,7 +250,7 @@ export interface Meta {
|
|
|
250
250
|
totalPages: number;
|
|
251
251
|
}
|
|
252
252
|
export interface PageResponseDto<T> {
|
|
253
|
-
|
|
253
|
+
items: T[];
|
|
254
254
|
meta: Meta;
|
|
255
255
|
}
|
|
256
256
|
export interface ReissueRequestDto {
|
|
@@ -270,7 +270,7 @@ export interface TokenResponseDto {
|
|
|
270
270
|
grantType: string;
|
|
271
271
|
refreshToken: string;
|
|
272
272
|
}
|
|
273
|
-
export declare
|
|
273
|
+
export declare enum BugReportErrorType {
|
|
274
274
|
UNKNOWN = "UNKNOWN",
|
|
275
275
|
CLIENT_ERROR = "CLIENT_ERROR",
|
|
276
276
|
SERVER_ERROR = "SERVER_ERROR",
|
|
@@ -281,13 +281,13 @@ export declare const enum BugReportErrorType {
|
|
|
281
281
|
REFERENCE_ERROR = "REFERENCE_ERROR",
|
|
282
282
|
TYPE_ERROR = "TYPE_ERROR"
|
|
283
283
|
}
|
|
284
|
-
export declare
|
|
284
|
+
export declare enum BugReportSeverity {
|
|
285
285
|
LOW = "LOW",
|
|
286
286
|
MEDIUM = "MEDIUM",
|
|
287
287
|
HIGH = "HIGH",
|
|
288
288
|
CRITICAL = "CRITICAL"
|
|
289
289
|
}
|
|
290
|
-
export declare
|
|
290
|
+
export declare enum BugReportStatus {
|
|
291
291
|
OPEN = "OPEN",
|
|
292
292
|
IN_PROGRESS = "IN_PROGRESS",
|
|
293
293
|
RESOLVED = "RESOLVED",
|