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.
@@ -3202,7 +3202,7 @@ export type InvoiceStatsOffering = {
3202
3202
  export type Issue = {
3203
3203
  readonly url: string;
3204
3204
  readonly uuid: string;
3205
- type: IssueTypeEnum;
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: IssueTypeEnum;
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 = unknown;
3293
+ export type IssueTypeEnum = 'INFORMATIONAL' | 'SERVICE_REQUEST' | 'CHANGE_REQUEST' | 'INCIDENT';
3294
3294
  export type JiraChangelog = {
3295
3295
  items: Array<unknown>;
3296
3296
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.7.9-dev.3",
3
+ "version": "7.7.10-dev.0",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",