waldur-js-client 7.7.9-dev.3 → 7.7.10-dev.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/dist/types.gen.d.ts +3 -3
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -3202,7 +3202,7 @@ export type InvoiceStatsOffering = {
|
|
|
3202
3202
|
export type Issue = {
|
|
3203
3203
|
readonly url: string;
|
|
3204
3204
|
readonly uuid: string;
|
|
3205
|
-
type:
|
|
3205
|
+
type: string;
|
|
3206
3206
|
readonly key: string;
|
|
3207
3207
|
readonly backend_id: string | null;
|
|
3208
3208
|
readonly backend_name: string | null;
|
|
@@ -3253,7 +3253,7 @@ export type IssueReference = {
|
|
|
3253
3253
|
readonly uuid?: string;
|
|
3254
3254
|
};
|
|
3255
3255
|
export type IssueRequest = {
|
|
3256
|
-
type:
|
|
3256
|
+
type: string;
|
|
3257
3257
|
remote_id?: string | null;
|
|
3258
3258
|
summary: string;
|
|
3259
3259
|
description?: string;
|
|
@@ -3290,7 +3290,7 @@ export type IssueStatusRequest = {
|
|
|
3290
3290
|
type?: IssueStatusTypeEnum;
|
|
3291
3291
|
};
|
|
3292
3292
|
export type IssueStatusTypeEnum = 0 | 1;
|
|
3293
|
-
export type IssueTypeEnum =
|
|
3293
|
+
export type IssueTypeEnum = 'INFORMATIONAL' | 'SERVICE_REQUEST' | 'CHANGE_REQUEST' | 'INCIDENT';
|
|
3294
3294
|
export type JiraChangelog = {
|
|
3295
3295
|
items: Array<unknown>;
|
|
3296
3296
|
};
|