waldur-js-client 7.9.6-dev.21 → 7.9.6-dev.22
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 +42 -12
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -305,6 +305,10 @@ export type AtlassianSettingsPreviewRequest = {
|
|
|
305
305
|
satisfaction_field?: string;
|
|
306
306
|
request_feedback_field?: string;
|
|
307
307
|
waldur_backend_id_field?: string;
|
|
308
|
+
/**
|
|
309
|
+
* Default issue type for marketplace request-based orders
|
|
310
|
+
*/
|
|
311
|
+
default_offering_issue_type?: string;
|
|
308
312
|
use_old_api?: boolean;
|
|
309
313
|
custom_field_mapping_enabled?: boolean;
|
|
310
314
|
};
|
|
@@ -337,6 +341,10 @@ export type AtlassianSettingsSaveRequest = {
|
|
|
337
341
|
satisfaction_field?: string;
|
|
338
342
|
request_feedback_field?: string;
|
|
339
343
|
waldur_backend_id_field?: string;
|
|
344
|
+
/**
|
|
345
|
+
* Default issue type for marketplace request-based orders
|
|
346
|
+
*/
|
|
347
|
+
default_offering_issue_type?: string;
|
|
340
348
|
use_old_api?: boolean;
|
|
341
349
|
custom_field_mapping_enabled?: boolean;
|
|
342
350
|
/**
|
|
@@ -4818,6 +4826,22 @@ export type Issue = {
|
|
|
4818
4826
|
* Internal processing log for debugging order lifecycle events. Visible only to staff.
|
|
4819
4827
|
*/
|
|
4820
4828
|
readonly processing_log: unknown;
|
|
4829
|
+
/**
|
|
4830
|
+
* Return order UUID if the issue's resource is an Order.
|
|
4831
|
+
*/
|
|
4832
|
+
readonly order_uuid: string | null;
|
|
4833
|
+
/**
|
|
4834
|
+
* Return order's project UUID if the issue's resource is an Order.
|
|
4835
|
+
*/
|
|
4836
|
+
readonly order_project_uuid: string | null;
|
|
4837
|
+
/**
|
|
4838
|
+
* Return order's customer UUID if the issue's resource is an Order.
|
|
4839
|
+
*/
|
|
4840
|
+
readonly order_customer_uuid: string | null;
|
|
4841
|
+
/**
|
|
4842
|
+
* Return order's resource name if the issue's resource is an Order.
|
|
4843
|
+
*/
|
|
4844
|
+
readonly order_resource_name: string | null;
|
|
4821
4845
|
};
|
|
4822
4846
|
export type IssueReference = {
|
|
4823
4847
|
readonly key?: string;
|
|
@@ -4850,17 +4874,24 @@ export type IssueStatus = {
|
|
|
4850
4874
|
* Status name in Jira.
|
|
4851
4875
|
*/
|
|
4852
4876
|
name: string;
|
|
4853
|
-
type?:
|
|
4877
|
+
type?: IssueStatusType;
|
|
4854
4878
|
readonly type_display: string;
|
|
4855
4879
|
};
|
|
4856
|
-
export type
|
|
4880
|
+
export type IssueStatusCreate = {
|
|
4857
4881
|
/**
|
|
4858
4882
|
* Status name in Jira.
|
|
4859
4883
|
*/
|
|
4860
4884
|
name: string;
|
|
4861
|
-
type?:
|
|
4885
|
+
type?: IssueStatusType;
|
|
4862
4886
|
};
|
|
4863
|
-
export type
|
|
4887
|
+
export type IssueStatusCreateRequest = {
|
|
4888
|
+
/**
|
|
4889
|
+
* Status name in Jira.
|
|
4890
|
+
*/
|
|
4891
|
+
name: string;
|
|
4892
|
+
type?: IssueStatusType;
|
|
4893
|
+
};
|
|
4894
|
+
export type IssueStatusType = 0 | 1;
|
|
4864
4895
|
export type IssueTypeEnum = 'INFORMATIONAL' | 'SERVICE_REQUEST' | 'CHANGE_REQUEST' | 'INCIDENT';
|
|
4865
4896
|
export type JiraChangelog = {
|
|
4866
4897
|
/**
|
|
@@ -10552,7 +10583,7 @@ export type PatchedIssueStatusRequest = {
|
|
|
10552
10583
|
* Status name in Jira.
|
|
10553
10584
|
*/
|
|
10554
10585
|
name?: string;
|
|
10555
|
-
type?:
|
|
10586
|
+
type?: IssueStatusType;
|
|
10556
10587
|
};
|
|
10557
10588
|
export type PatchedKeycloakUserGroupMembershipRequest = {
|
|
10558
10589
|
/**
|
|
@@ -17181,14 +17212,14 @@ export type WebHook = {
|
|
|
17181
17212
|
};
|
|
17182
17213
|
export type WebHookContentTypeEnum = 'json' | 'form';
|
|
17183
17214
|
export type WebHookReceiver = {
|
|
17184
|
-
webhookEvent:
|
|
17215
|
+
webhookEvent: string;
|
|
17185
17216
|
issue: JiraIssue;
|
|
17186
17217
|
comment?: JiraComment;
|
|
17187
17218
|
changelog?: JiraChangelog;
|
|
17188
17219
|
issue_event_type_name?: string;
|
|
17189
17220
|
};
|
|
17190
17221
|
export type WebHookReceiverRequest = {
|
|
17191
|
-
webhookEvent:
|
|
17222
|
+
webhookEvent: string;
|
|
17192
17223
|
issue: JiraIssueRequest;
|
|
17193
17224
|
comment?: JiraCommentRequest;
|
|
17194
17225
|
changelog?: JiraChangelogRequest;
|
|
@@ -17201,7 +17232,6 @@ export type WebHookRequest = {
|
|
|
17201
17232
|
destination_url: string;
|
|
17202
17233
|
content_type?: WebHookContentTypeEnum;
|
|
17203
17234
|
};
|
|
17204
|
-
export type WebhookEventEnum = 'jira:issue_updated' | 'jira:issue_deleted' | 'comment_created' | 'comment_updated' | 'comment_deleted';
|
|
17205
17235
|
export type WidgetEnum = 'csv' | 'filesize' | 'attached_instance';
|
|
17206
17236
|
export type AzureVirtualMachineCreateOrderAttributes = {
|
|
17207
17237
|
name: string;
|
|
@@ -57667,13 +57697,13 @@ export type SupportIssueStatusesCountResponses = {
|
|
|
57667
57697
|
200: unknown;
|
|
57668
57698
|
};
|
|
57669
57699
|
export type SupportIssueStatusesCreateData = {
|
|
57670
|
-
body:
|
|
57700
|
+
body: IssueStatusCreateRequest;
|
|
57671
57701
|
path?: never;
|
|
57672
57702
|
query?: never;
|
|
57673
57703
|
url: '/api/support-issue-statuses/';
|
|
57674
57704
|
};
|
|
57675
57705
|
export type SupportIssueStatusesCreateResponses = {
|
|
57676
|
-
201:
|
|
57706
|
+
201: IssueStatusCreate;
|
|
57677
57707
|
};
|
|
57678
57708
|
export type SupportIssueStatusesCreateResponse = SupportIssueStatusesCreateResponses[keyof SupportIssueStatusesCreateResponses];
|
|
57679
57709
|
export type SupportIssueStatusesDestroyData = {
|
|
@@ -57716,7 +57746,7 @@ export type SupportIssueStatusesPartialUpdateResponses = {
|
|
|
57716
57746
|
};
|
|
57717
57747
|
export type SupportIssueStatusesPartialUpdateResponse = SupportIssueStatusesPartialUpdateResponses[keyof SupportIssueStatusesPartialUpdateResponses];
|
|
57718
57748
|
export type SupportIssueStatusesUpdateData = {
|
|
57719
|
-
body:
|
|
57749
|
+
body: IssueStatusCreateRequest;
|
|
57720
57750
|
path: {
|
|
57721
57751
|
uuid: string;
|
|
57722
57752
|
};
|
|
@@ -57724,7 +57754,7 @@ export type SupportIssueStatusesUpdateData = {
|
|
|
57724
57754
|
url: '/api/support-issue-statuses/{uuid}/';
|
|
57725
57755
|
};
|
|
57726
57756
|
export type SupportIssueStatusesUpdateResponses = {
|
|
57727
|
-
200:
|
|
57757
|
+
200: IssueStatusCreate;
|
|
57728
57758
|
};
|
|
57729
57759
|
export type SupportIssueStatusesUpdateResponse = SupportIssueStatusesUpdateResponses[keyof SupportIssueStatusesUpdateResponses];
|
|
57730
57760
|
export type SupportIssuesListData = {
|