waldur-js-client 7.9.6-dev.20 → 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/sdk.gen.d.ts +67 -1
- package/dist/sdk.gen.js +523 -0
- package/dist/types.gen.d.ts +704 -22
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -235,6 +235,123 @@ export type Association = {
|
|
|
235
235
|
useridentifier?: string | null;
|
|
236
236
|
allocation: string;
|
|
237
237
|
};
|
|
238
|
+
export type AtlassianCredentialsRequest = {
|
|
239
|
+
/**
|
|
240
|
+
* Atlassian API URL (e.g., https://your-domain.atlassian.net)
|
|
241
|
+
*/
|
|
242
|
+
api_url: string;
|
|
243
|
+
/**
|
|
244
|
+
* Authentication method to use
|
|
245
|
+
*/
|
|
246
|
+
auth_method: AuthMethodEnum;
|
|
247
|
+
email?: string;
|
|
248
|
+
token?: string;
|
|
249
|
+
personal_access_token?: string;
|
|
250
|
+
username?: string;
|
|
251
|
+
password?: string;
|
|
252
|
+
verify_ssl?: boolean;
|
|
253
|
+
};
|
|
254
|
+
export type AtlassianCustomFieldResponse = {
|
|
255
|
+
id: string;
|
|
256
|
+
name: string;
|
|
257
|
+
clause_names?: Array<string>;
|
|
258
|
+
field_type?: string;
|
|
259
|
+
required?: boolean;
|
|
260
|
+
};
|
|
261
|
+
export type AtlassianPriorityResponse = {
|
|
262
|
+
id: string;
|
|
263
|
+
name: string;
|
|
264
|
+
description?: string;
|
|
265
|
+
icon_url?: string;
|
|
266
|
+
};
|
|
267
|
+
export type AtlassianProjectResponse = {
|
|
268
|
+
id: string;
|
|
269
|
+
key: string;
|
|
270
|
+
name: string;
|
|
271
|
+
description?: string;
|
|
272
|
+
};
|
|
273
|
+
export type AtlassianRequestTypeResponse = {
|
|
274
|
+
id: string;
|
|
275
|
+
name: string;
|
|
276
|
+
description?: string;
|
|
277
|
+
issue_type_id?: string;
|
|
278
|
+
};
|
|
279
|
+
export type AtlassianSettingsPreviewRequest = {
|
|
280
|
+
api_url: string;
|
|
281
|
+
auth_method: AuthMethodEnum;
|
|
282
|
+
email?: string;
|
|
283
|
+
token?: string;
|
|
284
|
+
personal_access_token?: string;
|
|
285
|
+
username?: string;
|
|
286
|
+
password?: string;
|
|
287
|
+
verify_ssl?: boolean;
|
|
288
|
+
project_id: string;
|
|
289
|
+
issue_types?: Array<string>;
|
|
290
|
+
/**
|
|
291
|
+
* Mapping from frontend types to backend request types
|
|
292
|
+
*/
|
|
293
|
+
support_type_mapping?: {
|
|
294
|
+
[key: string]: string;
|
|
295
|
+
};
|
|
296
|
+
reporter_field?: string;
|
|
297
|
+
impact_field?: string;
|
|
298
|
+
organisation_field?: string;
|
|
299
|
+
project_field?: string;
|
|
300
|
+
affected_resource_field?: string;
|
|
301
|
+
caller_field?: string;
|
|
302
|
+
template_field?: string;
|
|
303
|
+
sla_field?: string;
|
|
304
|
+
resolution_sla_field?: string;
|
|
305
|
+
satisfaction_field?: string;
|
|
306
|
+
request_feedback_field?: string;
|
|
307
|
+
waldur_backend_id_field?: string;
|
|
308
|
+
/**
|
|
309
|
+
* Default issue type for marketplace request-based orders
|
|
310
|
+
*/
|
|
311
|
+
default_offering_issue_type?: string;
|
|
312
|
+
use_old_api?: boolean;
|
|
313
|
+
custom_field_mapping_enabled?: boolean;
|
|
314
|
+
};
|
|
315
|
+
export type AtlassianSettingsSaveRequest = {
|
|
316
|
+
api_url: string;
|
|
317
|
+
auth_method: AuthMethodEnum;
|
|
318
|
+
email?: string;
|
|
319
|
+
token?: string;
|
|
320
|
+
personal_access_token?: string;
|
|
321
|
+
username?: string;
|
|
322
|
+
password?: string;
|
|
323
|
+
verify_ssl?: boolean;
|
|
324
|
+
project_id: string;
|
|
325
|
+
issue_types?: Array<string>;
|
|
326
|
+
/**
|
|
327
|
+
* Mapping from frontend types to backend request types
|
|
328
|
+
*/
|
|
329
|
+
support_type_mapping?: {
|
|
330
|
+
[key: string]: string;
|
|
331
|
+
};
|
|
332
|
+
reporter_field?: string;
|
|
333
|
+
impact_field?: string;
|
|
334
|
+
organisation_field?: string;
|
|
335
|
+
project_field?: string;
|
|
336
|
+
affected_resource_field?: string;
|
|
337
|
+
caller_field?: string;
|
|
338
|
+
template_field?: string;
|
|
339
|
+
sla_field?: string;
|
|
340
|
+
resolution_sla_field?: string;
|
|
341
|
+
satisfaction_field?: string;
|
|
342
|
+
request_feedback_field?: string;
|
|
343
|
+
waldur_backend_id_field?: string;
|
|
344
|
+
/**
|
|
345
|
+
* Default issue type for marketplace request-based orders
|
|
346
|
+
*/
|
|
347
|
+
default_offering_issue_type?: string;
|
|
348
|
+
use_old_api?: boolean;
|
|
349
|
+
custom_field_mapping_enabled?: boolean;
|
|
350
|
+
/**
|
|
351
|
+
* Must be True to confirm saving settings
|
|
352
|
+
*/
|
|
353
|
+
confirm_save: boolean;
|
|
354
|
+
};
|
|
238
355
|
export type Attachment = {
|
|
239
356
|
readonly url?: string;
|
|
240
357
|
readonly uuid?: string;
|
|
@@ -252,6 +369,7 @@ export type AttachmentRequest = {
|
|
|
252
369
|
issue: string;
|
|
253
370
|
file: Blob | File;
|
|
254
371
|
};
|
|
372
|
+
export type AuthMethodEnum = 'api_token' | 'personal_access_token' | 'basic';
|
|
255
373
|
export type AuthResult = {
|
|
256
374
|
readonly uuid: string;
|
|
257
375
|
readonly token: string;
|
|
@@ -2266,8 +2384,6 @@ export type ConstanceSettings = {
|
|
|
2266
2384
|
ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
|
|
2267
2385
|
ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
|
|
2268
2386
|
ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
|
|
2269
|
-
ATLASSIAN_ISSUE_TYPES?: string;
|
|
2270
|
-
ATLASSIAN_SUPPORT_TYPE_MAPPING?: string;
|
|
2271
2387
|
ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
|
|
2272
2388
|
ATLASSIAN_SUMMARY_TEMPLATE?: string;
|
|
2273
2389
|
ATLASSIAN_AFFECTED_RESOURCE_FIELD?: string;
|
|
@@ -2446,8 +2562,6 @@ export type ConstanceSettingsRequest = {
|
|
|
2446
2562
|
ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
|
|
2447
2563
|
ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
|
|
2448
2564
|
ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
|
|
2449
|
-
ATLASSIAN_ISSUE_TYPES?: string;
|
|
2450
|
-
ATLASSIAN_SUPPORT_TYPE_MAPPING?: string;
|
|
2451
2565
|
ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
|
|
2452
2566
|
ATLASSIAN_SUMMARY_TEMPLATE?: string;
|
|
2453
2567
|
ATLASSIAN_AFFECTED_RESOURCE_FIELD?: string;
|
|
@@ -3436,6 +3550,79 @@ export type DiscountsUpdateRequest = {
|
|
|
3436
3550
|
[key: string]: DiscountConfigRequest;
|
|
3437
3551
|
};
|
|
3438
3552
|
};
|
|
3553
|
+
export type DiscoverCustomFieldsRequestRequest = {
|
|
3554
|
+
/**
|
|
3555
|
+
* Atlassian API URL (e.g., https://your-domain.atlassian.net)
|
|
3556
|
+
*/
|
|
3557
|
+
api_url: string;
|
|
3558
|
+
/**
|
|
3559
|
+
* Authentication method to use
|
|
3560
|
+
*/
|
|
3561
|
+
auth_method: AuthMethodEnum;
|
|
3562
|
+
email?: string;
|
|
3563
|
+
token?: string;
|
|
3564
|
+
personal_access_token?: string;
|
|
3565
|
+
username?: string;
|
|
3566
|
+
password?: string;
|
|
3567
|
+
verify_ssl?: boolean;
|
|
3568
|
+
project_id?: string;
|
|
3569
|
+
/**
|
|
3570
|
+
* Optional: Filter fields by request type
|
|
3571
|
+
*/
|
|
3572
|
+
request_type_id?: string;
|
|
3573
|
+
};
|
|
3574
|
+
export type DiscoverPrioritiesRequestRequest = {
|
|
3575
|
+
/**
|
|
3576
|
+
* Atlassian API URL (e.g., https://your-domain.atlassian.net)
|
|
3577
|
+
*/
|
|
3578
|
+
api_url: string;
|
|
3579
|
+
/**
|
|
3580
|
+
* Authentication method to use
|
|
3581
|
+
*/
|
|
3582
|
+
auth_method: AuthMethodEnum;
|
|
3583
|
+
email?: string;
|
|
3584
|
+
token?: string;
|
|
3585
|
+
personal_access_token?: string;
|
|
3586
|
+
username?: string;
|
|
3587
|
+
password?: string;
|
|
3588
|
+
verify_ssl?: boolean;
|
|
3589
|
+
};
|
|
3590
|
+
export type DiscoverProjectsRequestRequest = {
|
|
3591
|
+
/**
|
|
3592
|
+
* Atlassian API URL (e.g., https://your-domain.atlassian.net)
|
|
3593
|
+
*/
|
|
3594
|
+
api_url: string;
|
|
3595
|
+
/**
|
|
3596
|
+
* Authentication method to use
|
|
3597
|
+
*/
|
|
3598
|
+
auth_method: AuthMethodEnum;
|
|
3599
|
+
email?: string;
|
|
3600
|
+
token?: string;
|
|
3601
|
+
personal_access_token?: string;
|
|
3602
|
+
username?: string;
|
|
3603
|
+
password?: string;
|
|
3604
|
+
verify_ssl?: boolean;
|
|
3605
|
+
};
|
|
3606
|
+
export type DiscoverRequestTypesRequestRequest = {
|
|
3607
|
+
/**
|
|
3608
|
+
* Atlassian API URL (e.g., https://your-domain.atlassian.net)
|
|
3609
|
+
*/
|
|
3610
|
+
api_url: string;
|
|
3611
|
+
/**
|
|
3612
|
+
* Authentication method to use
|
|
3613
|
+
*/
|
|
3614
|
+
auth_method: AuthMethodEnum;
|
|
3615
|
+
email?: string;
|
|
3616
|
+
token?: string;
|
|
3617
|
+
personal_access_token?: string;
|
|
3618
|
+
username?: string;
|
|
3619
|
+
password?: string;
|
|
3620
|
+
verify_ssl?: boolean;
|
|
3621
|
+
/**
|
|
3622
|
+
* Service Desk project ID or key
|
|
3623
|
+
*/
|
|
3624
|
+
project_id: string;
|
|
3625
|
+
};
|
|
3439
3626
|
export type DiskFormatEnum = 'qcow2' | 'raw' | 'vhd' | 'vmdk' | 'vdi' | 'iso' | 'aki' | 'ami' | 'ari';
|
|
3440
3627
|
export type DryRun = {
|
|
3441
3628
|
readonly url: string;
|
|
@@ -4639,6 +4826,22 @@ export type Issue = {
|
|
|
4639
4826
|
* Internal processing log for debugging order lifecycle events. Visible only to staff.
|
|
4640
4827
|
*/
|
|
4641
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;
|
|
4642
4845
|
};
|
|
4643
4846
|
export type IssueReference = {
|
|
4644
4847
|
readonly key?: string;
|
|
@@ -4671,17 +4874,24 @@ export type IssueStatus = {
|
|
|
4671
4874
|
* Status name in Jira.
|
|
4672
4875
|
*/
|
|
4673
4876
|
name: string;
|
|
4674
|
-
type?:
|
|
4877
|
+
type?: IssueStatusType;
|
|
4675
4878
|
readonly type_display: string;
|
|
4676
4879
|
};
|
|
4677
|
-
export type
|
|
4880
|
+
export type IssueStatusCreate = {
|
|
4881
|
+
/**
|
|
4882
|
+
* Status name in Jira.
|
|
4883
|
+
*/
|
|
4884
|
+
name: string;
|
|
4885
|
+
type?: IssueStatusType;
|
|
4886
|
+
};
|
|
4887
|
+
export type IssueStatusCreateRequest = {
|
|
4678
4888
|
/**
|
|
4679
4889
|
* Status name in Jira.
|
|
4680
4890
|
*/
|
|
4681
4891
|
name: string;
|
|
4682
|
-
type?:
|
|
4892
|
+
type?: IssueStatusType;
|
|
4683
4893
|
};
|
|
4684
|
-
export type
|
|
4894
|
+
export type IssueStatusType = 0 | 1;
|
|
4685
4895
|
export type IssueTypeEnum = 'INFORMATIONAL' | 'SERVICE_REQUEST' | 'CHANGE_REQUEST' | 'INCIDENT';
|
|
4686
4896
|
export type JiraChangelog = {
|
|
4687
4897
|
/**
|
|
@@ -9673,6 +9883,7 @@ export type OpenStackTenantRequest = {
|
|
|
9673
9883
|
*/
|
|
9674
9884
|
default_volume_type_name?: string;
|
|
9675
9885
|
security_groups?: Array<OpenStackTenantSecurityGroupRequest>;
|
|
9886
|
+
skip_creation_of_default_subnet?: boolean;
|
|
9676
9887
|
};
|
|
9677
9888
|
export type OpenStackTenantSecurityGroup = {
|
|
9678
9889
|
name: string;
|
|
@@ -10372,7 +10583,7 @@ export type PatchedIssueStatusRequest = {
|
|
|
10372
10583
|
* Status name in Jira.
|
|
10373
10584
|
*/
|
|
10374
10585
|
name?: string;
|
|
10375
|
-
type?:
|
|
10586
|
+
type?: IssueStatusType;
|
|
10376
10587
|
};
|
|
10377
10588
|
export type PatchedKeycloakUserGroupMembershipRequest = {
|
|
10378
10589
|
/**
|
|
@@ -10780,6 +10991,7 @@ export type PatchedOpenStackTenantRequest = {
|
|
|
10780
10991
|
*/
|
|
10781
10992
|
default_volume_type_name?: string;
|
|
10782
10993
|
security_groups?: Array<OpenStackTenantSecurityGroupRequest>;
|
|
10994
|
+
skip_creation_of_default_subnet?: boolean;
|
|
10783
10995
|
};
|
|
10784
10996
|
export type PatchedOpenStackVolumeRequest = {
|
|
10785
10997
|
name?: string;
|
|
@@ -11176,6 +11388,18 @@ export type PatchedRemoteSynchronisationRequest = {
|
|
|
11176
11388
|
is_active?: boolean;
|
|
11177
11389
|
remotelocalcategory_set?: Array<NestedRemoteLocalCategoryRequest>;
|
|
11178
11390
|
};
|
|
11391
|
+
export type PatchedRequestTypeAdminRequest = {
|
|
11392
|
+
name?: string;
|
|
11393
|
+
issue_type_name?: string;
|
|
11394
|
+
/**
|
|
11395
|
+
* Whether this request type is available for issue creation.
|
|
11396
|
+
*/
|
|
11397
|
+
is_active?: boolean;
|
|
11398
|
+
/**
|
|
11399
|
+
* Display order. First type (lowest order) is the default.
|
|
11400
|
+
*/
|
|
11401
|
+
order?: number;
|
|
11402
|
+
};
|
|
11179
11403
|
export type PatchedRequestedOfferingRequest = {
|
|
11180
11404
|
attributes?: unknown;
|
|
11181
11405
|
plan?: string | null;
|
|
@@ -14409,6 +14633,51 @@ export type ReportSectionRequest = {
|
|
|
14409
14633
|
*/
|
|
14410
14634
|
body: string;
|
|
14411
14635
|
};
|
|
14636
|
+
export type RequestType = {
|
|
14637
|
+
readonly url: string;
|
|
14638
|
+
readonly uuid: string;
|
|
14639
|
+
name: string;
|
|
14640
|
+
issue_type_name: string;
|
|
14641
|
+
/**
|
|
14642
|
+
* Display order. First type (lowest order) is the default.
|
|
14643
|
+
*/
|
|
14644
|
+
order?: number;
|
|
14645
|
+
};
|
|
14646
|
+
export type RequestTypeAdmin = {
|
|
14647
|
+
readonly url: string;
|
|
14648
|
+
readonly uuid: string;
|
|
14649
|
+
name: string;
|
|
14650
|
+
issue_type_name: string;
|
|
14651
|
+
/**
|
|
14652
|
+
* Backend ID for synced types. Null for manually created types.
|
|
14653
|
+
*/
|
|
14654
|
+
readonly backend_id: number | null;
|
|
14655
|
+
readonly backend_name: string | null;
|
|
14656
|
+
/**
|
|
14657
|
+
* Whether this request type is available for issue creation.
|
|
14658
|
+
*/
|
|
14659
|
+
is_active?: boolean;
|
|
14660
|
+
/**
|
|
14661
|
+
* Display order. First type (lowest order) is the default.
|
|
14662
|
+
*/
|
|
14663
|
+
order?: number;
|
|
14664
|
+
/**
|
|
14665
|
+
* Returns True if the request type was synced from a backend.
|
|
14666
|
+
*/
|
|
14667
|
+
readonly is_synced: boolean;
|
|
14668
|
+
};
|
|
14669
|
+
export type RequestTypeAdminRequest = {
|
|
14670
|
+
name: string;
|
|
14671
|
+
issue_type_name: string;
|
|
14672
|
+
/**
|
|
14673
|
+
* Whether this request type is available for issue creation.
|
|
14674
|
+
*/
|
|
14675
|
+
is_active?: boolean;
|
|
14676
|
+
/**
|
|
14677
|
+
* Display order. First type (lowest order) is the default.
|
|
14678
|
+
*/
|
|
14679
|
+
order?: number;
|
|
14680
|
+
};
|
|
14412
14681
|
export type RequestTypes = 'Create' | 'Update' | 'Terminate' | 'Restore';
|
|
14413
14682
|
export type RequestedOffering = {
|
|
14414
14683
|
readonly uuid: string;
|
|
@@ -16943,14 +17212,14 @@ export type WebHook = {
|
|
|
16943
17212
|
};
|
|
16944
17213
|
export type WebHookContentTypeEnum = 'json' | 'form';
|
|
16945
17214
|
export type WebHookReceiver = {
|
|
16946
|
-
webhookEvent:
|
|
17215
|
+
webhookEvent: string;
|
|
16947
17216
|
issue: JiraIssue;
|
|
16948
17217
|
comment?: JiraComment;
|
|
16949
17218
|
changelog?: JiraChangelog;
|
|
16950
17219
|
issue_event_type_name?: string;
|
|
16951
17220
|
};
|
|
16952
17221
|
export type WebHookReceiverRequest = {
|
|
16953
|
-
webhookEvent:
|
|
17222
|
+
webhookEvent: string;
|
|
16954
17223
|
issue: JiraIssueRequest;
|
|
16955
17224
|
comment?: JiraCommentRequest;
|
|
16956
17225
|
changelog?: JiraChangelogRequest;
|
|
@@ -16963,7 +17232,6 @@ export type WebHookRequest = {
|
|
|
16963
17232
|
destination_url: string;
|
|
16964
17233
|
content_type?: WebHookContentTypeEnum;
|
|
16965
17234
|
};
|
|
16966
|
-
export type WebhookEventEnum = 'jira:issue_updated' | 'jira:issue_deleted' | 'comment_created' | 'comment_updated' | 'comment_deleted';
|
|
16967
17235
|
export type WidgetEnum = 'csv' | 'filesize' | 'attached_instance';
|
|
16968
17236
|
export type AzureVirtualMachineCreateOrderAttributes = {
|
|
16969
17237
|
name: string;
|
|
@@ -16991,6 +17259,7 @@ export type OpenStackTenantCreateOrderAttributes = {
|
|
|
16991
17259
|
subnet_cidr?: string;
|
|
16992
17260
|
skip_connection_extnet?: boolean;
|
|
16993
17261
|
skip_creation_of_default_router?: boolean;
|
|
17262
|
+
skip_creation_of_default_subnet?: boolean;
|
|
16994
17263
|
/**
|
|
16995
17264
|
* Optional availability group. Will be used for all instances provisioned in this tenant
|
|
16996
17265
|
*/
|
|
@@ -18081,8 +18350,6 @@ export type ConstanceSettingsRequestForm = {
|
|
|
18081
18350
|
ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
|
|
18082
18351
|
ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
|
|
18083
18352
|
ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
|
|
18084
|
-
ATLASSIAN_ISSUE_TYPES?: string;
|
|
18085
|
-
ATLASSIAN_SUPPORT_TYPE_MAPPING?: string;
|
|
18086
18353
|
ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
|
|
18087
18354
|
ATLASSIAN_SUMMARY_TEMPLATE?: string;
|
|
18088
18355
|
ATLASSIAN_AFFECTED_RESOURCE_FIELD?: string;
|
|
@@ -18261,8 +18528,6 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
18261
18528
|
ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
|
|
18262
18529
|
ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
|
|
18263
18530
|
ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
|
|
18264
|
-
ATLASSIAN_ISSUE_TYPES?: string;
|
|
18265
|
-
ATLASSIAN_SUPPORT_TYPE_MAPPING?: string;
|
|
18266
18531
|
ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
|
|
18267
18532
|
ATLASSIAN_SUMMARY_TEMPLATE?: string;
|
|
18268
18533
|
ATLASSIAN_AFFECTED_RESOURCE_FIELD?: string;
|
|
@@ -48686,7 +48951,7 @@ export type OpenstackTenantsListData = {
|
|
|
48686
48951
|
* External IP
|
|
48687
48952
|
*/
|
|
48688
48953
|
external_ip?: string;
|
|
48689
|
-
field?: Array<'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'internal_network_id' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnet_cidr' | 'url' | 'uuid'>;
|
|
48954
|
+
field?: Array<'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'internal_network_id' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'skip_creation_of_default_subnet' | 'state' | 'subnet_cidr' | 'url' | 'uuid'>;
|
|
48690
48955
|
/**
|
|
48691
48956
|
* Name
|
|
48692
48957
|
*/
|
|
@@ -48841,7 +49106,7 @@ export type OpenstackTenantsRetrieveData = {
|
|
|
48841
49106
|
uuid: string;
|
|
48842
49107
|
};
|
|
48843
49108
|
query?: {
|
|
48844
|
-
field?: Array<'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'internal_network_id' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnet_cidr' | 'url' | 'uuid'>;
|
|
49109
|
+
field?: Array<'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'internal_network_id' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'skip_creation_of_default_subnet' | 'state' | 'subnet_cidr' | 'url' | 'uuid'>;
|
|
48845
49110
|
};
|
|
48846
49111
|
url: '/api/openstack-tenants/{uuid}/';
|
|
48847
49112
|
};
|
|
@@ -57432,13 +57697,13 @@ export type SupportIssueStatusesCountResponses = {
|
|
|
57432
57697
|
200: unknown;
|
|
57433
57698
|
};
|
|
57434
57699
|
export type SupportIssueStatusesCreateData = {
|
|
57435
|
-
body:
|
|
57700
|
+
body: IssueStatusCreateRequest;
|
|
57436
57701
|
path?: never;
|
|
57437
57702
|
query?: never;
|
|
57438
57703
|
url: '/api/support-issue-statuses/';
|
|
57439
57704
|
};
|
|
57440
57705
|
export type SupportIssueStatusesCreateResponses = {
|
|
57441
|
-
201:
|
|
57706
|
+
201: IssueStatusCreate;
|
|
57442
57707
|
};
|
|
57443
57708
|
export type SupportIssueStatusesCreateResponse = SupportIssueStatusesCreateResponses[keyof SupportIssueStatusesCreateResponses];
|
|
57444
57709
|
export type SupportIssueStatusesDestroyData = {
|
|
@@ -57481,7 +57746,7 @@ export type SupportIssueStatusesPartialUpdateResponses = {
|
|
|
57481
57746
|
};
|
|
57482
57747
|
export type SupportIssueStatusesPartialUpdateResponse = SupportIssueStatusesPartialUpdateResponses[keyof SupportIssueStatusesPartialUpdateResponses];
|
|
57483
57748
|
export type SupportIssueStatusesUpdateData = {
|
|
57484
|
-
body:
|
|
57749
|
+
body: IssueStatusCreateRequest;
|
|
57485
57750
|
path: {
|
|
57486
57751
|
uuid: string;
|
|
57487
57752
|
};
|
|
@@ -57489,7 +57754,7 @@ export type SupportIssueStatusesUpdateData = {
|
|
|
57489
57754
|
url: '/api/support-issue-statuses/{uuid}/';
|
|
57490
57755
|
};
|
|
57491
57756
|
export type SupportIssueStatusesUpdateResponses = {
|
|
57492
|
-
200:
|
|
57757
|
+
200: IssueStatusCreate;
|
|
57493
57758
|
};
|
|
57494
57759
|
export type SupportIssueStatusesUpdateResponse = SupportIssueStatusesUpdateResponses[keyof SupportIssueStatusesUpdateResponses];
|
|
57495
57760
|
export type SupportIssuesListData = {
|
|
@@ -57777,6 +58042,197 @@ export type SupportPrioritiesRetrieveResponses = {
|
|
|
57777
58042
|
200: Priority;
|
|
57778
58043
|
};
|
|
57779
58044
|
export type SupportPrioritiesRetrieveResponse = SupportPrioritiesRetrieveResponses[keyof SupportPrioritiesRetrieveResponses];
|
|
58045
|
+
export type SupportRequestTypesListData = {
|
|
58046
|
+
body?: never;
|
|
58047
|
+
path?: never;
|
|
58048
|
+
query?: {
|
|
58049
|
+
/**
|
|
58050
|
+
* A page number within the paginated result set.
|
|
58051
|
+
*/
|
|
58052
|
+
page?: number;
|
|
58053
|
+
/**
|
|
58054
|
+
* Number of results to return per page.
|
|
58055
|
+
*/
|
|
58056
|
+
page_size?: number;
|
|
58057
|
+
};
|
|
58058
|
+
url: '/api/support-request-types/';
|
|
58059
|
+
};
|
|
58060
|
+
export type SupportRequestTypesListResponses = {
|
|
58061
|
+
200: Array<RequestType>;
|
|
58062
|
+
};
|
|
58063
|
+
export type SupportRequestTypesListResponse = SupportRequestTypesListResponses[keyof SupportRequestTypesListResponses];
|
|
58064
|
+
export type SupportRequestTypesCountData = {
|
|
58065
|
+
body?: never;
|
|
58066
|
+
path?: never;
|
|
58067
|
+
query?: {
|
|
58068
|
+
/**
|
|
58069
|
+
* A page number within the paginated result set.
|
|
58070
|
+
*/
|
|
58071
|
+
page?: number;
|
|
58072
|
+
/**
|
|
58073
|
+
* Number of results to return per page.
|
|
58074
|
+
*/
|
|
58075
|
+
page_size?: number;
|
|
58076
|
+
};
|
|
58077
|
+
url: '/api/support-request-types/';
|
|
58078
|
+
};
|
|
58079
|
+
export type SupportRequestTypesCountResponses = {
|
|
58080
|
+
/**
|
|
58081
|
+
* No response body
|
|
58082
|
+
*/
|
|
58083
|
+
200: unknown;
|
|
58084
|
+
};
|
|
58085
|
+
export type SupportRequestTypesAdminListData = {
|
|
58086
|
+
body?: never;
|
|
58087
|
+
path?: never;
|
|
58088
|
+
query?: {
|
|
58089
|
+
is_active?: boolean;
|
|
58090
|
+
name?: string;
|
|
58091
|
+
/**
|
|
58092
|
+
* A page number within the paginated result set.
|
|
58093
|
+
*/
|
|
58094
|
+
page?: number;
|
|
58095
|
+
/**
|
|
58096
|
+
* Number of results to return per page.
|
|
58097
|
+
*/
|
|
58098
|
+
page_size?: number;
|
|
58099
|
+
};
|
|
58100
|
+
url: '/api/support-request-types-admin/';
|
|
58101
|
+
};
|
|
58102
|
+
export type SupportRequestTypesAdminListResponses = {
|
|
58103
|
+
200: Array<RequestTypeAdmin>;
|
|
58104
|
+
};
|
|
58105
|
+
export type SupportRequestTypesAdminListResponse = SupportRequestTypesAdminListResponses[keyof SupportRequestTypesAdminListResponses];
|
|
58106
|
+
export type SupportRequestTypesAdminCountData = {
|
|
58107
|
+
body?: never;
|
|
58108
|
+
path?: never;
|
|
58109
|
+
query?: {
|
|
58110
|
+
is_active?: boolean;
|
|
58111
|
+
name?: string;
|
|
58112
|
+
/**
|
|
58113
|
+
* A page number within the paginated result set.
|
|
58114
|
+
*/
|
|
58115
|
+
page?: number;
|
|
58116
|
+
/**
|
|
58117
|
+
* Number of results to return per page.
|
|
58118
|
+
*/
|
|
58119
|
+
page_size?: number;
|
|
58120
|
+
};
|
|
58121
|
+
url: '/api/support-request-types-admin/';
|
|
58122
|
+
};
|
|
58123
|
+
export type SupportRequestTypesAdminCountResponses = {
|
|
58124
|
+
/**
|
|
58125
|
+
* No response body
|
|
58126
|
+
*/
|
|
58127
|
+
200: unknown;
|
|
58128
|
+
};
|
|
58129
|
+
export type SupportRequestTypesAdminCreateData = {
|
|
58130
|
+
body: RequestTypeAdminRequest;
|
|
58131
|
+
path?: never;
|
|
58132
|
+
query?: never;
|
|
58133
|
+
url: '/api/support-request-types-admin/';
|
|
58134
|
+
};
|
|
58135
|
+
export type SupportRequestTypesAdminCreateResponses = {
|
|
58136
|
+
201: RequestTypeAdmin;
|
|
58137
|
+
};
|
|
58138
|
+
export type SupportRequestTypesAdminCreateResponse = SupportRequestTypesAdminCreateResponses[keyof SupportRequestTypesAdminCreateResponses];
|
|
58139
|
+
export type SupportRequestTypesAdminDestroyData = {
|
|
58140
|
+
body?: never;
|
|
58141
|
+
path: {
|
|
58142
|
+
uuid: string;
|
|
58143
|
+
};
|
|
58144
|
+
query?: never;
|
|
58145
|
+
url: '/api/support-request-types-admin/{uuid}/';
|
|
58146
|
+
};
|
|
58147
|
+
export type SupportRequestTypesAdminDestroyResponses = {
|
|
58148
|
+
/**
|
|
58149
|
+
* No response body
|
|
58150
|
+
*/
|
|
58151
|
+
204: void;
|
|
58152
|
+
};
|
|
58153
|
+
export type SupportRequestTypesAdminDestroyResponse = SupportRequestTypesAdminDestroyResponses[keyof SupportRequestTypesAdminDestroyResponses];
|
|
58154
|
+
export type SupportRequestTypesAdminRetrieveData = {
|
|
58155
|
+
body?: never;
|
|
58156
|
+
path: {
|
|
58157
|
+
uuid: string;
|
|
58158
|
+
};
|
|
58159
|
+
query?: never;
|
|
58160
|
+
url: '/api/support-request-types-admin/{uuid}/';
|
|
58161
|
+
};
|
|
58162
|
+
export type SupportRequestTypesAdminRetrieveResponses = {
|
|
58163
|
+
200: RequestTypeAdmin;
|
|
58164
|
+
};
|
|
58165
|
+
export type SupportRequestTypesAdminRetrieveResponse = SupportRequestTypesAdminRetrieveResponses[keyof SupportRequestTypesAdminRetrieveResponses];
|
|
58166
|
+
export type SupportRequestTypesAdminPartialUpdateData = {
|
|
58167
|
+
body?: PatchedRequestTypeAdminRequest;
|
|
58168
|
+
path: {
|
|
58169
|
+
uuid: string;
|
|
58170
|
+
};
|
|
58171
|
+
query?: never;
|
|
58172
|
+
url: '/api/support-request-types-admin/{uuid}/';
|
|
58173
|
+
};
|
|
58174
|
+
export type SupportRequestTypesAdminPartialUpdateResponses = {
|
|
58175
|
+
200: RequestTypeAdmin;
|
|
58176
|
+
};
|
|
58177
|
+
export type SupportRequestTypesAdminPartialUpdateResponse = SupportRequestTypesAdminPartialUpdateResponses[keyof SupportRequestTypesAdminPartialUpdateResponses];
|
|
58178
|
+
export type SupportRequestTypesAdminUpdateData = {
|
|
58179
|
+
body: RequestTypeAdminRequest;
|
|
58180
|
+
path: {
|
|
58181
|
+
uuid: string;
|
|
58182
|
+
};
|
|
58183
|
+
query?: never;
|
|
58184
|
+
url: '/api/support-request-types-admin/{uuid}/';
|
|
58185
|
+
};
|
|
58186
|
+
export type SupportRequestTypesAdminUpdateResponses = {
|
|
58187
|
+
200: RequestTypeAdmin;
|
|
58188
|
+
};
|
|
58189
|
+
export type SupportRequestTypesAdminUpdateResponse = SupportRequestTypesAdminUpdateResponses[keyof SupportRequestTypesAdminUpdateResponses];
|
|
58190
|
+
export type SupportRequestTypesAdminActivateData = {
|
|
58191
|
+
body: RequestTypeAdminRequest;
|
|
58192
|
+
path: {
|
|
58193
|
+
uuid: string;
|
|
58194
|
+
};
|
|
58195
|
+
query?: never;
|
|
58196
|
+
url: '/api/support-request-types-admin/{uuid}/activate/';
|
|
58197
|
+
};
|
|
58198
|
+
export type SupportRequestTypesAdminActivateResponses = {
|
|
58199
|
+
200: RequestTypeAdmin;
|
|
58200
|
+
};
|
|
58201
|
+
export type SupportRequestTypesAdminActivateResponse = SupportRequestTypesAdminActivateResponses[keyof SupportRequestTypesAdminActivateResponses];
|
|
58202
|
+
export type SupportRequestTypesAdminDeactivateData = {
|
|
58203
|
+
body: RequestTypeAdminRequest;
|
|
58204
|
+
path: {
|
|
58205
|
+
uuid: string;
|
|
58206
|
+
};
|
|
58207
|
+
query?: never;
|
|
58208
|
+
url: '/api/support-request-types-admin/{uuid}/deactivate/';
|
|
58209
|
+
};
|
|
58210
|
+
export type SupportRequestTypesAdminDeactivateResponses = {
|
|
58211
|
+
200: RequestTypeAdmin;
|
|
58212
|
+
};
|
|
58213
|
+
export type SupportRequestTypesAdminDeactivateResponse = SupportRequestTypesAdminDeactivateResponses[keyof SupportRequestTypesAdminDeactivateResponses];
|
|
58214
|
+
export type SupportRequestTypesAdminReorderData = {
|
|
58215
|
+
body: RequestTypeAdminRequest;
|
|
58216
|
+
path?: never;
|
|
58217
|
+
query?: never;
|
|
58218
|
+
url: '/api/support-request-types-admin/reorder/';
|
|
58219
|
+
};
|
|
58220
|
+
export type SupportRequestTypesAdminReorderResponses = {
|
|
58221
|
+
200: RequestTypeAdmin;
|
|
58222
|
+
};
|
|
58223
|
+
export type SupportRequestTypesAdminReorderResponse = SupportRequestTypesAdminReorderResponses[keyof SupportRequestTypesAdminReorderResponses];
|
|
58224
|
+
export type SupportRequestTypesRetrieveData = {
|
|
58225
|
+
body?: never;
|
|
58226
|
+
path: {
|
|
58227
|
+
uuid: string;
|
|
58228
|
+
};
|
|
58229
|
+
query?: never;
|
|
58230
|
+
url: '/api/support-request-types/{uuid}/';
|
|
58231
|
+
};
|
|
58232
|
+
export type SupportRequestTypesRetrieveResponses = {
|
|
58233
|
+
200: RequestType;
|
|
58234
|
+
};
|
|
58235
|
+
export type SupportRequestTypesRetrieveResponse = SupportRequestTypesRetrieveResponses[keyof SupportRequestTypesRetrieveResponses];
|
|
57780
58236
|
export type SupportSmaxWebhookData = {
|
|
57781
58237
|
body: SmaxWebHookReceiverRequest;
|
|
57782
58238
|
path?: never;
|
|
@@ -58002,6 +58458,232 @@ export type SupportZammadWebhookResponses = {
|
|
|
58002
58458
|
*/
|
|
58003
58459
|
200: unknown;
|
|
58004
58460
|
};
|
|
58461
|
+
export type SupportSettingsAtlassianListData = {
|
|
58462
|
+
body?: never;
|
|
58463
|
+
path?: never;
|
|
58464
|
+
query?: {
|
|
58465
|
+
/**
|
|
58466
|
+
* A page number within the paginated result set.
|
|
58467
|
+
*/
|
|
58468
|
+
page?: number;
|
|
58469
|
+
/**
|
|
58470
|
+
* Number of results to return per page.
|
|
58471
|
+
*/
|
|
58472
|
+
page_size?: number;
|
|
58473
|
+
};
|
|
58474
|
+
url: '/api/support/settings/atlassian/';
|
|
58475
|
+
};
|
|
58476
|
+
export type SupportSettingsAtlassianListResponses = {
|
|
58477
|
+
/**
|
|
58478
|
+
* No response body
|
|
58479
|
+
*/
|
|
58480
|
+
200: unknown;
|
|
58481
|
+
};
|
|
58482
|
+
export type SupportSettingsAtlassianCreateData = {
|
|
58483
|
+
body?: never;
|
|
58484
|
+
path?: never;
|
|
58485
|
+
query?: never;
|
|
58486
|
+
url: '/api/support/settings/atlassian/';
|
|
58487
|
+
};
|
|
58488
|
+
export type SupportSettingsAtlassianCreateResponses = {
|
|
58489
|
+
/**
|
|
58490
|
+
* No response body
|
|
58491
|
+
*/
|
|
58492
|
+
201: unknown;
|
|
58493
|
+
};
|
|
58494
|
+
export type SupportSettingsAtlassianDestroyData = {
|
|
58495
|
+
body?: never;
|
|
58496
|
+
path: {
|
|
58497
|
+
/**
|
|
58498
|
+
* A unique integer value identifying this issue.
|
|
58499
|
+
*/
|
|
58500
|
+
id: number;
|
|
58501
|
+
};
|
|
58502
|
+
query?: never;
|
|
58503
|
+
url: '/api/support/settings/atlassian/{id}/';
|
|
58504
|
+
};
|
|
58505
|
+
export type SupportSettingsAtlassianDestroyResponses = {
|
|
58506
|
+
/**
|
|
58507
|
+
* No response body
|
|
58508
|
+
*/
|
|
58509
|
+
204: void;
|
|
58510
|
+
};
|
|
58511
|
+
export type SupportSettingsAtlassianDestroyResponse = SupportSettingsAtlassianDestroyResponses[keyof SupportSettingsAtlassianDestroyResponses];
|
|
58512
|
+
export type SupportSettingsAtlassianRetrieveData = {
|
|
58513
|
+
body?: never;
|
|
58514
|
+
path: {
|
|
58515
|
+
/**
|
|
58516
|
+
* A unique integer value identifying this issue.
|
|
58517
|
+
*/
|
|
58518
|
+
id: number;
|
|
58519
|
+
};
|
|
58520
|
+
query?: never;
|
|
58521
|
+
url: '/api/support/settings/atlassian/{id}/';
|
|
58522
|
+
};
|
|
58523
|
+
export type SupportSettingsAtlassianRetrieveResponses = {
|
|
58524
|
+
/**
|
|
58525
|
+
* No response body
|
|
58526
|
+
*/
|
|
58527
|
+
200: unknown;
|
|
58528
|
+
};
|
|
58529
|
+
export type SupportSettingsAtlassianPartialUpdateData = {
|
|
58530
|
+
body?: never;
|
|
58531
|
+
path: {
|
|
58532
|
+
/**
|
|
58533
|
+
* A unique integer value identifying this issue.
|
|
58534
|
+
*/
|
|
58535
|
+
id: number;
|
|
58536
|
+
};
|
|
58537
|
+
query?: never;
|
|
58538
|
+
url: '/api/support/settings/atlassian/{id}/';
|
|
58539
|
+
};
|
|
58540
|
+
export type SupportSettingsAtlassianPartialUpdateResponses = {
|
|
58541
|
+
/**
|
|
58542
|
+
* No response body
|
|
58543
|
+
*/
|
|
58544
|
+
200: unknown;
|
|
58545
|
+
};
|
|
58546
|
+
export type SupportSettingsAtlassianUpdateData = {
|
|
58547
|
+
body?: never;
|
|
58548
|
+
path: {
|
|
58549
|
+
/**
|
|
58550
|
+
* A unique integer value identifying this issue.
|
|
58551
|
+
*/
|
|
58552
|
+
id: number;
|
|
58553
|
+
};
|
|
58554
|
+
query?: never;
|
|
58555
|
+
url: '/api/support/settings/atlassian/{id}/';
|
|
58556
|
+
};
|
|
58557
|
+
export type SupportSettingsAtlassianUpdateResponses = {
|
|
58558
|
+
/**
|
|
58559
|
+
* No response body
|
|
58560
|
+
*/
|
|
58561
|
+
200: unknown;
|
|
58562
|
+
};
|
|
58563
|
+
export type SupportSettingsAtlassianCurrentSettingsRetrieveData = {
|
|
58564
|
+
body?: never;
|
|
58565
|
+
path?: never;
|
|
58566
|
+
query?: never;
|
|
58567
|
+
url: '/api/support/settings/atlassian/current_settings/';
|
|
58568
|
+
};
|
|
58569
|
+
export type SupportSettingsAtlassianCurrentSettingsRetrieveResponses = {
|
|
58570
|
+
/**
|
|
58571
|
+
* No response body
|
|
58572
|
+
*/
|
|
58573
|
+
200: unknown;
|
|
58574
|
+
};
|
|
58575
|
+
export type SupportSettingsAtlassianDiscoverCustomFieldsData = {
|
|
58576
|
+
body: DiscoverCustomFieldsRequestRequest;
|
|
58577
|
+
path?: never;
|
|
58578
|
+
query?: {
|
|
58579
|
+
/**
|
|
58580
|
+
* A page number within the paginated result set.
|
|
58581
|
+
*/
|
|
58582
|
+
page?: number;
|
|
58583
|
+
/**
|
|
58584
|
+
* Number of results to return per page.
|
|
58585
|
+
*/
|
|
58586
|
+
page_size?: number;
|
|
58587
|
+
};
|
|
58588
|
+
url: '/api/support/settings/atlassian/discover_custom_fields/';
|
|
58589
|
+
};
|
|
58590
|
+
export type SupportSettingsAtlassianDiscoverCustomFieldsResponses = {
|
|
58591
|
+
200: Array<AtlassianCustomFieldResponse>;
|
|
58592
|
+
};
|
|
58593
|
+
export type SupportSettingsAtlassianDiscoverCustomFieldsResponse = SupportSettingsAtlassianDiscoverCustomFieldsResponses[keyof SupportSettingsAtlassianDiscoverCustomFieldsResponses];
|
|
58594
|
+
export type SupportSettingsAtlassianDiscoverPrioritiesData = {
|
|
58595
|
+
body: DiscoverPrioritiesRequestRequest;
|
|
58596
|
+
path?: never;
|
|
58597
|
+
query?: {
|
|
58598
|
+
/**
|
|
58599
|
+
* A page number within the paginated result set.
|
|
58600
|
+
*/
|
|
58601
|
+
page?: number;
|
|
58602
|
+
/**
|
|
58603
|
+
* Number of results to return per page.
|
|
58604
|
+
*/
|
|
58605
|
+
page_size?: number;
|
|
58606
|
+
};
|
|
58607
|
+
url: '/api/support/settings/atlassian/discover_priorities/';
|
|
58608
|
+
};
|
|
58609
|
+
export type SupportSettingsAtlassianDiscoverPrioritiesResponses = {
|
|
58610
|
+
200: Array<AtlassianPriorityResponse>;
|
|
58611
|
+
};
|
|
58612
|
+
export type SupportSettingsAtlassianDiscoverPrioritiesResponse = SupportSettingsAtlassianDiscoverPrioritiesResponses[keyof SupportSettingsAtlassianDiscoverPrioritiesResponses];
|
|
58613
|
+
export type SupportSettingsAtlassianDiscoverProjectsData = {
|
|
58614
|
+
body: DiscoverProjectsRequestRequest;
|
|
58615
|
+
path?: never;
|
|
58616
|
+
query?: {
|
|
58617
|
+
/**
|
|
58618
|
+
* A page number within the paginated result set.
|
|
58619
|
+
*/
|
|
58620
|
+
page?: number;
|
|
58621
|
+
/**
|
|
58622
|
+
* Number of results to return per page.
|
|
58623
|
+
*/
|
|
58624
|
+
page_size?: number;
|
|
58625
|
+
};
|
|
58626
|
+
url: '/api/support/settings/atlassian/discover_projects/';
|
|
58627
|
+
};
|
|
58628
|
+
export type SupportSettingsAtlassianDiscoverProjectsResponses = {
|
|
58629
|
+
200: Array<AtlassianProjectResponse>;
|
|
58630
|
+
};
|
|
58631
|
+
export type SupportSettingsAtlassianDiscoverProjectsResponse = SupportSettingsAtlassianDiscoverProjectsResponses[keyof SupportSettingsAtlassianDiscoverProjectsResponses];
|
|
58632
|
+
export type SupportSettingsAtlassianDiscoverRequestTypesData = {
|
|
58633
|
+
body: DiscoverRequestTypesRequestRequest;
|
|
58634
|
+
path?: never;
|
|
58635
|
+
query?: {
|
|
58636
|
+
/**
|
|
58637
|
+
* A page number within the paginated result set.
|
|
58638
|
+
*/
|
|
58639
|
+
page?: number;
|
|
58640
|
+
/**
|
|
58641
|
+
* Number of results to return per page.
|
|
58642
|
+
*/
|
|
58643
|
+
page_size?: number;
|
|
58644
|
+
};
|
|
58645
|
+
url: '/api/support/settings/atlassian/discover_request_types/';
|
|
58646
|
+
};
|
|
58647
|
+
export type SupportSettingsAtlassianDiscoverRequestTypesResponses = {
|
|
58648
|
+
200: Array<AtlassianRequestTypeResponse>;
|
|
58649
|
+
};
|
|
58650
|
+
export type SupportSettingsAtlassianDiscoverRequestTypesResponse = SupportSettingsAtlassianDiscoverRequestTypesResponses[keyof SupportSettingsAtlassianDiscoverRequestTypesResponses];
|
|
58651
|
+
export type SupportSettingsAtlassianPreviewSettingsData = {
|
|
58652
|
+
body: AtlassianSettingsPreviewRequest;
|
|
58653
|
+
path?: never;
|
|
58654
|
+
query?: never;
|
|
58655
|
+
url: '/api/support/settings/atlassian/preview_settings/';
|
|
58656
|
+
};
|
|
58657
|
+
export type SupportSettingsAtlassianPreviewSettingsResponses = {
|
|
58658
|
+
/**
|
|
58659
|
+
* No response body
|
|
58660
|
+
*/
|
|
58661
|
+
200: unknown;
|
|
58662
|
+
};
|
|
58663
|
+
export type SupportSettingsAtlassianSaveSettingsData = {
|
|
58664
|
+
body: AtlassianSettingsSaveRequest;
|
|
58665
|
+
path?: never;
|
|
58666
|
+
query?: never;
|
|
58667
|
+
url: '/api/support/settings/atlassian/save_settings/';
|
|
58668
|
+
};
|
|
58669
|
+
export type SupportSettingsAtlassianSaveSettingsResponses = {
|
|
58670
|
+
/**
|
|
58671
|
+
* No response body
|
|
58672
|
+
*/
|
|
58673
|
+
200: unknown;
|
|
58674
|
+
};
|
|
58675
|
+
export type SupportSettingsAtlassianValidateCredentialsData = {
|
|
58676
|
+
body: AtlassianCredentialsRequest;
|
|
58677
|
+
path?: never;
|
|
58678
|
+
query?: never;
|
|
58679
|
+
url: '/api/support/settings/atlassian/validate_credentials/';
|
|
58680
|
+
};
|
|
58681
|
+
export type SupportSettingsAtlassianValidateCredentialsResponses = {
|
|
58682
|
+
/**
|
|
58683
|
+
* No response body
|
|
58684
|
+
*/
|
|
58685
|
+
200: unknown;
|
|
58686
|
+
};
|
|
58005
58687
|
export type SyncIssuesRetrieveData = {
|
|
58006
58688
|
body?: never;
|
|
58007
58689
|
path?: never;
|