waldur-js-client 7.7.8-dev.5 → 7.7.8-dev.7
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 +40 -1
- package/dist/sdk.gen.js +284 -0
- package/dist/types.gen.d.ts +428 -14
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -1160,6 +1160,20 @@ export type CampaignRequest = {
|
|
|
1160
1160
|
offerings: Array<string>;
|
|
1161
1161
|
required_offerings?: Array<string>;
|
|
1162
1162
|
};
|
|
1163
|
+
export type CancelRequestResponse = {
|
|
1164
|
+
/**
|
|
1165
|
+
* UUID of the canceled permission request
|
|
1166
|
+
*/
|
|
1167
|
+
uuid: string;
|
|
1168
|
+
/**
|
|
1169
|
+
* Name of the invitation scope
|
|
1170
|
+
*/
|
|
1171
|
+
scope_name: string;
|
|
1172
|
+
/**
|
|
1173
|
+
* UUID of the invitation scope
|
|
1174
|
+
*/
|
|
1175
|
+
scope_uuid: string;
|
|
1176
|
+
};
|
|
1163
1177
|
export type CategoryColumn = {
|
|
1164
1178
|
readonly uuid: string;
|
|
1165
1179
|
/**
|
|
@@ -1737,6 +1751,7 @@ export type ConstanceSettings = {
|
|
|
1737
1751
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
1738
1752
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
1739
1753
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
1754
|
+
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
1740
1755
|
};
|
|
1741
1756
|
export type ConstanceSettingsRequest = {
|
|
1742
1757
|
SITE_NAME?: string;
|
|
@@ -1871,6 +1886,7 @@ export type ConstanceSettingsRequest = {
|
|
|
1871
1886
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
1872
1887
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
1873
1888
|
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
1889
|
+
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
1874
1890
|
};
|
|
1875
1891
|
export type ContainerFormatEnum = 'bare' | 'ovf' | 'aki' | 'ami' | 'ari';
|
|
1876
1892
|
export type CoreAuthToken = {
|
|
@@ -1922,6 +1938,46 @@ export type Country = {
|
|
|
1922
1938
|
readonly value: string;
|
|
1923
1939
|
};
|
|
1924
1940
|
export type CountryEnum = 'AL' | 'AT' | 'BE' | 'BG' | 'BA' | 'CH' | 'CY' | 'CZ' | 'DE' | 'DK' | 'ES' | 'EE' | 'FI' | 'FR' | 'GB' | 'GE' | 'GR' | 'HR' | 'HU' | 'IE' | 'IS' | 'IT' | 'LT' | 'LU' | 'LV' | 'MC' | 'MK' | 'MT' | 'NL' | 'NO' | 'PL' | 'PT' | 'RO' | 'RS' | 'SK' | 'SI' | 'SE' | 'UA' | 'EU';
|
|
1941
|
+
export type CourseAccount = {
|
|
1942
|
+
readonly url: string;
|
|
1943
|
+
readonly uuid: string;
|
|
1944
|
+
readonly created: string;
|
|
1945
|
+
readonly modified: string;
|
|
1946
|
+
project: string;
|
|
1947
|
+
readonly project_uuid: string;
|
|
1948
|
+
readonly project_name: string;
|
|
1949
|
+
readonly user_uuid: string;
|
|
1950
|
+
readonly user_username: string;
|
|
1951
|
+
readonly customer_uuid: string;
|
|
1952
|
+
readonly customer_name: string;
|
|
1953
|
+
readonly state: string;
|
|
1954
|
+
email?: string;
|
|
1955
|
+
description?: string;
|
|
1956
|
+
readonly error_message: string;
|
|
1957
|
+
error_traceback?: string;
|
|
1958
|
+
};
|
|
1959
|
+
export type CourseAccountCreateNested = {
|
|
1960
|
+
email?: string;
|
|
1961
|
+
description?: string;
|
|
1962
|
+
};
|
|
1963
|
+
export type CourseAccountCreateNestedRequest = {
|
|
1964
|
+
email?: string;
|
|
1965
|
+
description?: string;
|
|
1966
|
+
};
|
|
1967
|
+
export type CourseAccountRequest = {
|
|
1968
|
+
project: string;
|
|
1969
|
+
email?: string;
|
|
1970
|
+
description?: string;
|
|
1971
|
+
error_traceback?: string;
|
|
1972
|
+
};
|
|
1973
|
+
export type CourseAccountsBulkCreate = {
|
|
1974
|
+
course_accounts: Array<CourseAccountCreateNested>;
|
|
1975
|
+
project: string;
|
|
1976
|
+
};
|
|
1977
|
+
export type CourseAccountsBulkCreateRequest = {
|
|
1978
|
+
course_accounts: Array<CourseAccountCreateNestedRequest>;
|
|
1979
|
+
project: string;
|
|
1980
|
+
};
|
|
1925
1981
|
export type CreateAttachmentsRequest = {
|
|
1926
1982
|
attachments: Array<Blob | File>;
|
|
1927
1983
|
};
|
|
@@ -2017,6 +2073,7 @@ export type Customer = {
|
|
|
2017
2073
|
slug?: string;
|
|
2018
2074
|
native_name?: string;
|
|
2019
2075
|
abbreviation?: string;
|
|
2076
|
+
description?: string;
|
|
2020
2077
|
contact_details?: string;
|
|
2021
2078
|
readonly agreement_number?: string;
|
|
2022
2079
|
/**
|
|
@@ -2178,6 +2235,7 @@ export type CustomerRequest = {
|
|
|
2178
2235
|
name: string;
|
|
2179
2236
|
native_name?: string;
|
|
2180
2237
|
abbreviation?: string;
|
|
2238
|
+
description?: string;
|
|
2181
2239
|
contact_details?: string;
|
|
2182
2240
|
/**
|
|
2183
2241
|
* Email address
|
|
@@ -2484,7 +2542,10 @@ export type EventSubscription = {
|
|
|
2484
2542
|
observable_objects?: unknown;
|
|
2485
2543
|
readonly created: string;
|
|
2486
2544
|
readonly modified: string;
|
|
2487
|
-
|
|
2545
|
+
/**
|
|
2546
|
+
* An IPv4 or IPv6 address.
|
|
2547
|
+
*/
|
|
2548
|
+
source_ip: string | null;
|
|
2488
2549
|
};
|
|
2489
2550
|
export type EventSubscriptionRequest = {
|
|
2490
2551
|
description?: string;
|
|
@@ -2660,6 +2721,11 @@ export type GoogleCredentials = {
|
|
|
2660
2721
|
export type GroupInvitation = {
|
|
2661
2722
|
readonly scope_uuid: string;
|
|
2662
2723
|
readonly scope_name: string;
|
|
2724
|
+
/**
|
|
2725
|
+
* Get the description field from the scope if it exists.
|
|
2726
|
+
* Returns empty string if scope doesn't have a description field.
|
|
2727
|
+
*/
|
|
2728
|
+
readonly scope_description: string;
|
|
2663
2729
|
readonly scope_type: string | null;
|
|
2664
2730
|
readonly customer_uuid: string;
|
|
2665
2731
|
readonly customer_name: string;
|
|
@@ -2861,6 +2927,11 @@ export type IntegrationStatusDetails = {
|
|
|
2861
2927
|
export type Invitation = {
|
|
2862
2928
|
readonly scope_uuid: string;
|
|
2863
2929
|
readonly scope_name: string;
|
|
2930
|
+
/**
|
|
2931
|
+
* Get the description field from the scope if it exists.
|
|
2932
|
+
* Returns empty string if scope doesn't have a description field.
|
|
2933
|
+
*/
|
|
2934
|
+
readonly scope_description: string;
|
|
2864
2935
|
readonly scope_type: string | null;
|
|
2865
2936
|
readonly customer_uuid: string;
|
|
2866
2937
|
readonly customer_name: string;
|
|
@@ -3160,6 +3231,24 @@ export type IssueRequest = {
|
|
|
3160
3231
|
is_reported_manually?: boolean;
|
|
3161
3232
|
template?: string | null;
|
|
3162
3233
|
};
|
|
3234
|
+
export type IssueStatus = {
|
|
3235
|
+
readonly url: string;
|
|
3236
|
+
readonly uuid: string;
|
|
3237
|
+
/**
|
|
3238
|
+
* Status name in Jira.
|
|
3239
|
+
*/
|
|
3240
|
+
name: string;
|
|
3241
|
+
type?: IssueStatusTypeEnum;
|
|
3242
|
+
readonly type_display: string;
|
|
3243
|
+
};
|
|
3244
|
+
export type IssueStatusRequest = {
|
|
3245
|
+
/**
|
|
3246
|
+
* Status name in Jira.
|
|
3247
|
+
*/
|
|
3248
|
+
name: string;
|
|
3249
|
+
type?: IssueStatusTypeEnum;
|
|
3250
|
+
};
|
|
3251
|
+
export type IssueStatusTypeEnum = 0 | 1;
|
|
3163
3252
|
export type IssueTypeEnum = 'Informational' | 'Service Request' | 'Change Request' | 'Incident';
|
|
3164
3253
|
export type JiraChangelog = {
|
|
3165
3254
|
items: Array<unknown>;
|
|
@@ -3268,6 +3357,7 @@ export type KeycloakUserGroupMembershipRequest = {
|
|
|
3268
3357
|
role: string;
|
|
3269
3358
|
};
|
|
3270
3359
|
export type KeycloakUserGroupMembershipState = 'pending' | 'active';
|
|
3360
|
+
export type KindEnum = 'default' | 'course' | 'public';
|
|
3271
3361
|
export type LexisLink = {
|
|
3272
3362
|
readonly url: string;
|
|
3273
3363
|
readonly uuid: string;
|
|
@@ -5465,7 +5555,7 @@ export type OpenStackFloatingIp = {
|
|
|
5465
5555
|
/**
|
|
5466
5556
|
* The public IPv4 address of the floating IP
|
|
5467
5557
|
*/
|
|
5468
|
-
|
|
5558
|
+
address?: string | null;
|
|
5469
5559
|
/**
|
|
5470
5560
|
* ID of network in OpenStack where this floating IP is allocated
|
|
5471
5561
|
*/
|
|
@@ -5480,7 +5570,7 @@ export type OpenStackFloatingIp = {
|
|
|
5480
5570
|
/**
|
|
5481
5571
|
* Optional address that maps to floating IP's address in external networks
|
|
5482
5572
|
*/
|
|
5483
|
-
|
|
5573
|
+
external_address?: string | null;
|
|
5484
5574
|
readonly port_fixed_ips?: Array<OpenStackFixedIp>;
|
|
5485
5575
|
readonly instance_uuid?: string | null;
|
|
5486
5576
|
readonly instance_name?: string | null;
|
|
@@ -5712,7 +5802,7 @@ export type OpenStackNestedFloatingIp = {
|
|
|
5712
5802
|
/**
|
|
5713
5803
|
* The public IPv4 address of the floating IP
|
|
5714
5804
|
*/
|
|
5715
|
-
|
|
5805
|
+
address?: string | null;
|
|
5716
5806
|
readonly port_fixed_ips?: Array<OpenStackFixedIp>;
|
|
5717
5807
|
/**
|
|
5718
5808
|
* MAC address of the port
|
|
@@ -6445,10 +6535,16 @@ export type OpenStackSnapshotRestorationRequest = {
|
|
|
6445
6535
|
};
|
|
6446
6536
|
export type OpenStackStaticRoute = {
|
|
6447
6537
|
destination?: string;
|
|
6538
|
+
/**
|
|
6539
|
+
* An IPv4 or IPv6 address.
|
|
6540
|
+
*/
|
|
6448
6541
|
nexthop?: string;
|
|
6449
6542
|
};
|
|
6450
6543
|
export type OpenStackStaticRouteRequest = {
|
|
6451
6544
|
destination: string;
|
|
6545
|
+
/**
|
|
6546
|
+
* An IPv4 or IPv6 address.
|
|
6547
|
+
*/
|
|
6452
6548
|
nexthop: string;
|
|
6453
6549
|
};
|
|
6454
6550
|
export type OpenStackSubNet = {
|
|
@@ -6501,6 +6597,9 @@ export type OpenStackSubNet = {
|
|
|
6501
6597
|
* If True, DHCP service will be enabled on this subnet
|
|
6502
6598
|
*/
|
|
6503
6599
|
readonly enable_dhcp?: boolean;
|
|
6600
|
+
/**
|
|
6601
|
+
* An IPv4 or IPv6 address.
|
|
6602
|
+
*/
|
|
6504
6603
|
dns_nameservers?: Array<string>;
|
|
6505
6604
|
host_routes?: Array<OpenStackStaticRoute>;
|
|
6506
6605
|
/**
|
|
@@ -6521,11 +6620,23 @@ export type OpenStackSubNet = {
|
|
|
6521
6620
|
readonly is_limit_based?: boolean | null;
|
|
6522
6621
|
};
|
|
6523
6622
|
export type OpenStackSubNetAllocationPool = {
|
|
6623
|
+
/**
|
|
6624
|
+
* An IPv4 or IPv6 address.
|
|
6625
|
+
*/
|
|
6524
6626
|
start?: string;
|
|
6627
|
+
/**
|
|
6628
|
+
* An IPv4 or IPv6 address.
|
|
6629
|
+
*/
|
|
6525
6630
|
end?: string;
|
|
6526
6631
|
};
|
|
6527
6632
|
export type OpenStackSubNetAllocationPoolRequest = {
|
|
6633
|
+
/**
|
|
6634
|
+
* An IPv4 or IPv6 address.
|
|
6635
|
+
*/
|
|
6528
6636
|
start: string;
|
|
6637
|
+
/**
|
|
6638
|
+
* An IPv4 or IPv6 address.
|
|
6639
|
+
*/
|
|
6529
6640
|
end: string;
|
|
6530
6641
|
};
|
|
6531
6642
|
export type OpenStackSubNetRequest = {
|
|
@@ -6541,6 +6652,9 @@ export type OpenStackSubNetRequest = {
|
|
|
6541
6652
|
*/
|
|
6542
6653
|
disable_gateway?: boolean;
|
|
6543
6654
|
allocation_pools?: Array<OpenStackSubNetAllocationPoolRequest>;
|
|
6655
|
+
/**
|
|
6656
|
+
* An IPv4 or IPv6 address.
|
|
6657
|
+
*/
|
|
6544
6658
|
dns_nameservers?: Array<string>;
|
|
6545
6659
|
host_routes?: Array<OpenStackStaticRouteRequest>;
|
|
6546
6660
|
};
|
|
@@ -7166,6 +7280,7 @@ export type PatchedCustomerRequest = {
|
|
|
7166
7280
|
name?: string;
|
|
7167
7281
|
native_name?: string;
|
|
7168
7282
|
abbreviation?: string;
|
|
7283
|
+
description?: string;
|
|
7169
7284
|
contact_details?: string;
|
|
7170
7285
|
/**
|
|
7171
7286
|
* Email address
|
|
@@ -7265,6 +7380,13 @@ export type PatchedIssueRequest = {
|
|
|
7265
7380
|
*/
|
|
7266
7381
|
is_reported_manually?: boolean;
|
|
7267
7382
|
};
|
|
7383
|
+
export type PatchedIssueStatusRequest = {
|
|
7384
|
+
/**
|
|
7385
|
+
* Status name in Jira.
|
|
7386
|
+
*/
|
|
7387
|
+
name?: string;
|
|
7388
|
+
type?: IssueStatusTypeEnum;
|
|
7389
|
+
};
|
|
7268
7390
|
export type PatchedKeycloakUserGroupMembershipRequest = {
|
|
7269
7391
|
/**
|
|
7270
7392
|
* Keycloak user username
|
|
@@ -7499,6 +7621,9 @@ export type PatchedOpenStackSubNetRequest = {
|
|
|
7499
7621
|
*/
|
|
7500
7622
|
disable_gateway?: boolean;
|
|
7501
7623
|
allocation_pools?: Array<OpenStackSubNetAllocationPoolRequest>;
|
|
7624
|
+
/**
|
|
7625
|
+
* An IPv4 or IPv6 address.
|
|
7626
|
+
*/
|
|
7502
7627
|
dns_nameservers?: Array<string>;
|
|
7503
7628
|
host_routes?: Array<OpenStackStaticRouteRequest>;
|
|
7504
7629
|
};
|
|
@@ -7578,6 +7703,10 @@ export type PatchedProjectRequest = {
|
|
|
7578
7703
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
7579
7704
|
is_industry?: boolean;
|
|
7580
7705
|
image?: (Blob | File) | null;
|
|
7706
|
+
/**
|
|
7707
|
+
* Project type
|
|
7708
|
+
*/
|
|
7709
|
+
kind?: KindEnum;
|
|
7581
7710
|
};
|
|
7582
7711
|
export type PatchedProjectServiceAccountRequest = {
|
|
7583
7712
|
username?: string;
|
|
@@ -7780,6 +7909,9 @@ export type PatchedRancherServiceRequest = {
|
|
|
7780
7909
|
backend_id?: string;
|
|
7781
7910
|
runtime_state?: string;
|
|
7782
7911
|
namespace?: string;
|
|
7912
|
+
/**
|
|
7913
|
+
* An IPv4 or IPv6 address.
|
|
7914
|
+
*/
|
|
7783
7915
|
cluster_ip?: string | null;
|
|
7784
7916
|
selector?: unknown;
|
|
7785
7917
|
target_workloads?: Array<RancherNestedWorkloadRequest>;
|
|
@@ -8214,6 +8346,10 @@ export type Project = {
|
|
|
8214
8346
|
* Maximum number of service accounts allowed
|
|
8215
8347
|
*/
|
|
8216
8348
|
readonly max_service_accounts?: number | null;
|
|
8349
|
+
/**
|
|
8350
|
+
* Project type
|
|
8351
|
+
*/
|
|
8352
|
+
kind?: KindEnum;
|
|
8217
8353
|
readonly project_credit?: number | null;
|
|
8218
8354
|
readonly marketplace_resource_count?: {
|
|
8219
8355
|
[key: string]: number;
|
|
@@ -8387,6 +8523,10 @@ export type ProjectRequest = {
|
|
|
8387
8523
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
8388
8524
|
is_industry?: boolean;
|
|
8389
8525
|
image?: (Blob | File) | null;
|
|
8526
|
+
/**
|
|
8527
|
+
* Project type
|
|
8528
|
+
*/
|
|
8529
|
+
kind?: KindEnum;
|
|
8390
8530
|
};
|
|
8391
8531
|
export type ProjectServiceAccount = {
|
|
8392
8532
|
readonly url: string;
|
|
@@ -9852,8 +9992,14 @@ export type RancherNestedNodeRequest = {
|
|
|
9852
9992
|
export type RancherNestedPublicIp = {
|
|
9853
9993
|
readonly floating_ip?: string;
|
|
9854
9994
|
readonly floating_ip_uuid?: string;
|
|
9855
|
-
|
|
9856
|
-
|
|
9995
|
+
/**
|
|
9996
|
+
* An IPv4 or IPv6 address.
|
|
9997
|
+
*/
|
|
9998
|
+
ip_address?: string;
|
|
9999
|
+
/**
|
|
10000
|
+
* An IPv4 or IPv6 address.
|
|
10001
|
+
*/
|
|
10002
|
+
external_ip_address?: string;
|
|
9857
10003
|
};
|
|
9858
10004
|
export type RancherNestedSecurityGroup = {
|
|
9859
10005
|
readonly url: string;
|
|
@@ -9944,6 +10090,9 @@ export type RancherService = {
|
|
|
9944
10090
|
runtime_state?: string;
|
|
9945
10091
|
namespace?: string;
|
|
9946
10092
|
readonly namespace_name?: string;
|
|
10093
|
+
/**
|
|
10094
|
+
* An IPv4 or IPv6 address.
|
|
10095
|
+
*/
|
|
9947
10096
|
cluster_ip?: string | null;
|
|
9948
10097
|
selector?: unknown;
|
|
9949
10098
|
target_workloads?: Array<RancherNestedWorkload>;
|
|
@@ -9970,6 +10119,9 @@ export type RancherServiceRequest = {
|
|
|
9970
10119
|
backend_id?: string;
|
|
9971
10120
|
runtime_state?: string;
|
|
9972
10121
|
namespace?: string;
|
|
10122
|
+
/**
|
|
10123
|
+
* An IPv4 or IPv6 address.
|
|
10124
|
+
*/
|
|
9973
10125
|
cluster_ip?: string | null;
|
|
9974
10126
|
selector?: unknown;
|
|
9975
10127
|
target_workloads?: Array<RancherNestedWorkloadRequest>;
|
|
@@ -10527,13 +10679,19 @@ export type ReviewSubmitRequest = {
|
|
|
10527
10679
|
summary_private_comment?: string;
|
|
10528
10680
|
};
|
|
10529
10681
|
export type RmqConnection = {
|
|
10530
|
-
|
|
10682
|
+
/**
|
|
10683
|
+
* An IPv4 or IPv6 address.
|
|
10684
|
+
*/
|
|
10685
|
+
source_ip: string;
|
|
10531
10686
|
readonly vhost: string;
|
|
10532
10687
|
};
|
|
10533
10688
|
export type RmqSubscription = {
|
|
10534
10689
|
readonly created: string;
|
|
10535
10690
|
readonly uuid: string;
|
|
10536
|
-
|
|
10691
|
+
/**
|
|
10692
|
+
* An IPv4 or IPv6 address.
|
|
10693
|
+
*/
|
|
10694
|
+
source_ip: string;
|
|
10537
10695
|
};
|
|
10538
10696
|
export type RmqUserStatsItem = {
|
|
10539
10697
|
readonly username: string;
|
|
@@ -11233,6 +11391,20 @@ export type SubNetMappingRequest = {
|
|
|
11233
11391
|
src_cidr: string;
|
|
11234
11392
|
dst_cidr: string;
|
|
11235
11393
|
};
|
|
11394
|
+
export type SubmitRequestResponse = {
|
|
11395
|
+
/**
|
|
11396
|
+
* UUID of the created permission request
|
|
11397
|
+
*/
|
|
11398
|
+
uuid: string;
|
|
11399
|
+
/**
|
|
11400
|
+
* Name of the invitation scope
|
|
11401
|
+
*/
|
|
11402
|
+
scope_name: string;
|
|
11403
|
+
/**
|
|
11404
|
+
* UUID of the invitation scope
|
|
11405
|
+
*/
|
|
11406
|
+
scope_uuid: string;
|
|
11407
|
+
};
|
|
11236
11408
|
export type SubresourceOffering = {
|
|
11237
11409
|
readonly uuid: string;
|
|
11238
11410
|
readonly type: string;
|
|
@@ -11562,6 +11734,11 @@ export type VisibilityEnum = 'private' | 'public';
|
|
|
11562
11734
|
export type VisibleInvitationDetails = {
|
|
11563
11735
|
readonly scope_uuid: string;
|
|
11564
11736
|
readonly scope_name: string;
|
|
11737
|
+
/**
|
|
11738
|
+
* Get the description field from the scope if it exists.
|
|
11739
|
+
* Returns empty string if scope doesn't have a description field.
|
|
11740
|
+
*/
|
|
11741
|
+
readonly scope_description: string;
|
|
11565
11742
|
readonly scope_type: string | null;
|
|
11566
11743
|
readonly customer_uuid: string;
|
|
11567
11744
|
readonly customer_name: string;
|
|
@@ -16646,7 +16823,7 @@ export type CustomersListData = {
|
|
|
16646
16823
|
archived?: boolean;
|
|
16647
16824
|
backend_id?: string;
|
|
16648
16825
|
contact_details?: string;
|
|
16649
|
-
field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
|
|
16826
|
+
field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
|
|
16650
16827
|
name?: string;
|
|
16651
16828
|
name_exact?: string;
|
|
16652
16829
|
native_name?: string;
|
|
@@ -16857,7 +17034,7 @@ export type CustomersRetrieveData = {
|
|
|
16857
17034
|
uuid: string;
|
|
16858
17035
|
};
|
|
16859
17036
|
query?: {
|
|
16860
|
-
field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
|
|
17037
|
+
field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
|
|
16861
17038
|
};
|
|
16862
17039
|
url: '/api/customers/{uuid}/';
|
|
16863
17040
|
};
|
|
@@ -21311,6 +21488,101 @@ export type MarketplaceComponentUserUsagesRetrieveResponses = {
|
|
|
21311
21488
|
200: ComponentUserUsage;
|
|
21312
21489
|
};
|
|
21313
21490
|
export type MarketplaceComponentUserUsagesRetrieveResponse = MarketplaceComponentUserUsagesRetrieveResponses[keyof MarketplaceComponentUserUsagesRetrieveResponses];
|
|
21491
|
+
export type MarketplaceCourseAccountsListData = {
|
|
21492
|
+
body?: never;
|
|
21493
|
+
path?: never;
|
|
21494
|
+
query?: {
|
|
21495
|
+
email?: string;
|
|
21496
|
+
/**
|
|
21497
|
+
* A page number within the paginated result set.
|
|
21498
|
+
*/
|
|
21499
|
+
page?: number;
|
|
21500
|
+
/**
|
|
21501
|
+
* Number of results to return per page.
|
|
21502
|
+
*/
|
|
21503
|
+
page_size?: number;
|
|
21504
|
+
project_uuid?: string;
|
|
21505
|
+
state?: Array<'Closed' | 'Erred' | 'OK'>;
|
|
21506
|
+
username?: string;
|
|
21507
|
+
};
|
|
21508
|
+
url: '/api/marketplace-course-accounts/';
|
|
21509
|
+
};
|
|
21510
|
+
export type MarketplaceCourseAccountsListResponses = {
|
|
21511
|
+
200: Array<CourseAccount>;
|
|
21512
|
+
};
|
|
21513
|
+
export type MarketplaceCourseAccountsListResponse = MarketplaceCourseAccountsListResponses[keyof MarketplaceCourseAccountsListResponses];
|
|
21514
|
+
export type MarketplaceCourseAccountsCountData = {
|
|
21515
|
+
body?: never;
|
|
21516
|
+
path?: never;
|
|
21517
|
+
query?: {
|
|
21518
|
+
email?: string;
|
|
21519
|
+
/**
|
|
21520
|
+
* A page number within the paginated result set.
|
|
21521
|
+
*/
|
|
21522
|
+
page?: number;
|
|
21523
|
+
/**
|
|
21524
|
+
* Number of results to return per page.
|
|
21525
|
+
*/
|
|
21526
|
+
page_size?: number;
|
|
21527
|
+
project_uuid?: string;
|
|
21528
|
+
state?: Array<'Closed' | 'Erred' | 'OK'>;
|
|
21529
|
+
username?: string;
|
|
21530
|
+
};
|
|
21531
|
+
url: '/api/marketplace-course-accounts/';
|
|
21532
|
+
};
|
|
21533
|
+
export type MarketplaceCourseAccountsCountResponses = {
|
|
21534
|
+
/**
|
|
21535
|
+
* No response body
|
|
21536
|
+
*/
|
|
21537
|
+
200: unknown;
|
|
21538
|
+
};
|
|
21539
|
+
export type MarketplaceCourseAccountsCreateData = {
|
|
21540
|
+
body: CourseAccountRequest;
|
|
21541
|
+
path?: never;
|
|
21542
|
+
query?: never;
|
|
21543
|
+
url: '/api/marketplace-course-accounts/';
|
|
21544
|
+
};
|
|
21545
|
+
export type MarketplaceCourseAccountsCreateResponses = {
|
|
21546
|
+
201: CourseAccount;
|
|
21547
|
+
};
|
|
21548
|
+
export type MarketplaceCourseAccountsCreateResponse = MarketplaceCourseAccountsCreateResponses[keyof MarketplaceCourseAccountsCreateResponses];
|
|
21549
|
+
export type MarketplaceCourseAccountsDestroyData = {
|
|
21550
|
+
body?: never;
|
|
21551
|
+
path: {
|
|
21552
|
+
uuid: string;
|
|
21553
|
+
};
|
|
21554
|
+
query?: never;
|
|
21555
|
+
url: '/api/marketplace-course-accounts/{uuid}/';
|
|
21556
|
+
};
|
|
21557
|
+
export type MarketplaceCourseAccountsDestroyResponses = {
|
|
21558
|
+
/**
|
|
21559
|
+
* No response body
|
|
21560
|
+
*/
|
|
21561
|
+
204: void;
|
|
21562
|
+
};
|
|
21563
|
+
export type MarketplaceCourseAccountsDestroyResponse = MarketplaceCourseAccountsDestroyResponses[keyof MarketplaceCourseAccountsDestroyResponses];
|
|
21564
|
+
export type MarketplaceCourseAccountsRetrieveData = {
|
|
21565
|
+
body?: never;
|
|
21566
|
+
path: {
|
|
21567
|
+
uuid: string;
|
|
21568
|
+
};
|
|
21569
|
+
query?: never;
|
|
21570
|
+
url: '/api/marketplace-course-accounts/{uuid}/';
|
|
21571
|
+
};
|
|
21572
|
+
export type MarketplaceCourseAccountsRetrieveResponses = {
|
|
21573
|
+
200: CourseAccount;
|
|
21574
|
+
};
|
|
21575
|
+
export type MarketplaceCourseAccountsRetrieveResponse = MarketplaceCourseAccountsRetrieveResponses[keyof MarketplaceCourseAccountsRetrieveResponses];
|
|
21576
|
+
export type MarketplaceCourseAccountsCreateBulkData = {
|
|
21577
|
+
body: CourseAccountsBulkCreateRequest;
|
|
21578
|
+
path?: never;
|
|
21579
|
+
query?: never;
|
|
21580
|
+
url: '/api/marketplace-course-accounts/create_bulk/';
|
|
21581
|
+
};
|
|
21582
|
+
export type MarketplaceCourseAccountsCreateBulkResponses = {
|
|
21583
|
+
200: CourseAccountsBulkCreate;
|
|
21584
|
+
};
|
|
21585
|
+
export type MarketplaceCourseAccountsCreateBulkResponse = MarketplaceCourseAccountsCreateBulkResponses[keyof MarketplaceCourseAccountsCreateBulkResponses];
|
|
21314
21586
|
export type MarketplaceCustomerEstimatedCostPoliciesListData = {
|
|
21315
21587
|
body?: never;
|
|
21316
21588
|
path?: never;
|
|
@@ -27409,6 +27681,31 @@ export type ServiceProviderOfferingUsersComplianceResponses = {
|
|
|
27409
27681
|
200: Array<ServiceProviderOfferingUserCompliance>;
|
|
27410
27682
|
};
|
|
27411
27683
|
export type ServiceProviderOfferingUsersComplianceResponse = ServiceProviderOfferingUsersComplianceResponses[keyof ServiceProviderOfferingUsersComplianceResponses];
|
|
27684
|
+
export type MarketplaceServiceProvidersCourseAccountsListData = {
|
|
27685
|
+
body?: never;
|
|
27686
|
+
path: {
|
|
27687
|
+
service_provider_uuid: string;
|
|
27688
|
+
};
|
|
27689
|
+
query?: {
|
|
27690
|
+
email?: string;
|
|
27691
|
+
/**
|
|
27692
|
+
* A page number within the paginated result set.
|
|
27693
|
+
*/
|
|
27694
|
+
page?: number;
|
|
27695
|
+
/**
|
|
27696
|
+
* Number of results to return per page.
|
|
27697
|
+
*/
|
|
27698
|
+
page_size?: number;
|
|
27699
|
+
project_uuid?: string;
|
|
27700
|
+
state?: Array<'Closed' | 'Erred' | 'OK'>;
|
|
27701
|
+
username?: string;
|
|
27702
|
+
};
|
|
27703
|
+
url: '/api/marketplace-service-providers/{service_provider_uuid}/course_accounts/';
|
|
27704
|
+
};
|
|
27705
|
+
export type MarketplaceServiceProvidersCourseAccountsListResponses = {
|
|
27706
|
+
200: Array<CourseAccount>;
|
|
27707
|
+
};
|
|
27708
|
+
export type MarketplaceServiceProvidersCourseAccountsListResponse = MarketplaceServiceProvidersCourseAccountsListResponses[keyof MarketplaceServiceProvidersCourseAccountsListResponses];
|
|
27412
27709
|
export type MarketplaceServiceProvidersCustomerProjectsListData = {
|
|
27413
27710
|
body?: never;
|
|
27414
27711
|
path: {
|
|
@@ -27773,7 +28070,7 @@ export type MarketplaceServiceProvidersProjectsListData = {
|
|
|
27773
28070
|
customer_name?: string;
|
|
27774
28071
|
customer_native_name?: string;
|
|
27775
28072
|
description?: string;
|
|
27776
|
-
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
28073
|
+
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
27777
28074
|
/**
|
|
27778
28075
|
* Modified after
|
|
27779
28076
|
*/
|
|
@@ -33626,7 +33923,7 @@ export type ProjectsListData = {
|
|
|
33626
33923
|
customer_name?: string;
|
|
33627
33924
|
customer_native_name?: string;
|
|
33628
33925
|
description?: string;
|
|
33629
|
-
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
33926
|
+
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
33630
33927
|
/**
|
|
33631
33928
|
* Modified after
|
|
33632
33929
|
*/
|
|
@@ -33753,7 +34050,7 @@ export type ProjectsRetrieveData = {
|
|
|
33753
34050
|
uuid: string;
|
|
33754
34051
|
};
|
|
33755
34052
|
query?: {
|
|
33756
|
-
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
34053
|
+
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
33757
34054
|
};
|
|
33758
34055
|
url: '/api/projects/{uuid}/';
|
|
33759
34056
|
};
|
|
@@ -39194,6 +39491,107 @@ export type SupportFeedbacksRetrieveResponses = {
|
|
|
39194
39491
|
200: Feedback;
|
|
39195
39492
|
};
|
|
39196
39493
|
export type SupportFeedbacksRetrieveResponse = SupportFeedbacksRetrieveResponses[keyof SupportFeedbacksRetrieveResponses];
|
|
39494
|
+
export type SupportIssueStatusesListData = {
|
|
39495
|
+
body?: never;
|
|
39496
|
+
path?: never;
|
|
39497
|
+
query?: {
|
|
39498
|
+
/**
|
|
39499
|
+
* A page number within the paginated result set.
|
|
39500
|
+
*/
|
|
39501
|
+
page?: number;
|
|
39502
|
+
/**
|
|
39503
|
+
* Number of results to return per page.
|
|
39504
|
+
*/
|
|
39505
|
+
page_size?: number;
|
|
39506
|
+
};
|
|
39507
|
+
url: '/api/support-issue-statuses/';
|
|
39508
|
+
};
|
|
39509
|
+
export type SupportIssueStatusesListResponses = {
|
|
39510
|
+
200: Array<IssueStatus>;
|
|
39511
|
+
};
|
|
39512
|
+
export type SupportIssueStatusesListResponse = SupportIssueStatusesListResponses[keyof SupportIssueStatusesListResponses];
|
|
39513
|
+
export type SupportIssueStatusesCountData = {
|
|
39514
|
+
body?: never;
|
|
39515
|
+
path?: never;
|
|
39516
|
+
query?: {
|
|
39517
|
+
/**
|
|
39518
|
+
* A page number within the paginated result set.
|
|
39519
|
+
*/
|
|
39520
|
+
page?: number;
|
|
39521
|
+
/**
|
|
39522
|
+
* Number of results to return per page.
|
|
39523
|
+
*/
|
|
39524
|
+
page_size?: number;
|
|
39525
|
+
};
|
|
39526
|
+
url: '/api/support-issue-statuses/';
|
|
39527
|
+
};
|
|
39528
|
+
export type SupportIssueStatusesCountResponses = {
|
|
39529
|
+
/**
|
|
39530
|
+
* No response body
|
|
39531
|
+
*/
|
|
39532
|
+
200: unknown;
|
|
39533
|
+
};
|
|
39534
|
+
export type SupportIssueStatusesCreateData = {
|
|
39535
|
+
body: IssueStatusRequest;
|
|
39536
|
+
path?: never;
|
|
39537
|
+
query?: never;
|
|
39538
|
+
url: '/api/support-issue-statuses/';
|
|
39539
|
+
};
|
|
39540
|
+
export type SupportIssueStatusesCreateResponses = {
|
|
39541
|
+
201: IssueStatus;
|
|
39542
|
+
};
|
|
39543
|
+
export type SupportIssueStatusesCreateResponse = SupportIssueStatusesCreateResponses[keyof SupportIssueStatusesCreateResponses];
|
|
39544
|
+
export type SupportIssueStatusesDestroyData = {
|
|
39545
|
+
body?: never;
|
|
39546
|
+
path: {
|
|
39547
|
+
uuid: string;
|
|
39548
|
+
};
|
|
39549
|
+
query?: never;
|
|
39550
|
+
url: '/api/support-issue-statuses/{uuid}/';
|
|
39551
|
+
};
|
|
39552
|
+
export type SupportIssueStatusesDestroyResponses = {
|
|
39553
|
+
/**
|
|
39554
|
+
* No response body
|
|
39555
|
+
*/
|
|
39556
|
+
204: void;
|
|
39557
|
+
};
|
|
39558
|
+
export type SupportIssueStatusesDestroyResponse = SupportIssueStatusesDestroyResponses[keyof SupportIssueStatusesDestroyResponses];
|
|
39559
|
+
export type SupportIssueStatusesRetrieveData = {
|
|
39560
|
+
body?: never;
|
|
39561
|
+
path: {
|
|
39562
|
+
uuid: string;
|
|
39563
|
+
};
|
|
39564
|
+
query?: never;
|
|
39565
|
+
url: '/api/support-issue-statuses/{uuid}/';
|
|
39566
|
+
};
|
|
39567
|
+
export type SupportIssueStatusesRetrieveResponses = {
|
|
39568
|
+
200: IssueStatus;
|
|
39569
|
+
};
|
|
39570
|
+
export type SupportIssueStatusesRetrieveResponse = SupportIssueStatusesRetrieveResponses[keyof SupportIssueStatusesRetrieveResponses];
|
|
39571
|
+
export type SupportIssueStatusesPartialUpdateData = {
|
|
39572
|
+
body?: PatchedIssueStatusRequest;
|
|
39573
|
+
path: {
|
|
39574
|
+
uuid: string;
|
|
39575
|
+
};
|
|
39576
|
+
query?: never;
|
|
39577
|
+
url: '/api/support-issue-statuses/{uuid}/';
|
|
39578
|
+
};
|
|
39579
|
+
export type SupportIssueStatusesPartialUpdateResponses = {
|
|
39580
|
+
200: IssueStatus;
|
|
39581
|
+
};
|
|
39582
|
+
export type SupportIssueStatusesPartialUpdateResponse = SupportIssueStatusesPartialUpdateResponses[keyof SupportIssueStatusesPartialUpdateResponses];
|
|
39583
|
+
export type SupportIssueStatusesUpdateData = {
|
|
39584
|
+
body: IssueStatusRequest;
|
|
39585
|
+
path: {
|
|
39586
|
+
uuid: string;
|
|
39587
|
+
};
|
|
39588
|
+
query?: never;
|
|
39589
|
+
url: '/api/support-issue-statuses/{uuid}/';
|
|
39590
|
+
};
|
|
39591
|
+
export type SupportIssueStatusesUpdateResponses = {
|
|
39592
|
+
200: IssueStatus;
|
|
39593
|
+
};
|
|
39594
|
+
export type SupportIssueStatusesUpdateResponse = SupportIssueStatusesUpdateResponses[keyof SupportIssueStatusesUpdateResponses];
|
|
39197
39595
|
export type SupportIssuesListData = {
|
|
39198
39596
|
body?: never;
|
|
39199
39597
|
path?: never;
|
|
@@ -39959,7 +40357,7 @@ export type UserGroupInvitationsSubmitRequestData = {
|
|
|
39959
40357
|
url: '/api/user-group-invitations/{uuid}/submit_request/';
|
|
39960
40358
|
};
|
|
39961
40359
|
export type UserGroupInvitationsSubmitRequestResponses = {
|
|
39962
|
-
200:
|
|
40360
|
+
200: SubmitRequestResponse;
|
|
39963
40361
|
};
|
|
39964
40362
|
export type UserGroupInvitationsSubmitRequestResponse = UserGroupInvitationsSubmitRequestResponses[keyof UserGroupInvitationsSubmitRequestResponses];
|
|
39965
40363
|
export type UserInvitationsListData = {
|
|
@@ -39985,6 +40383,8 @@ export type UserInvitationsListData = {
|
|
|
39985
40383
|
page_size?: number;
|
|
39986
40384
|
role_name?: string;
|
|
39987
40385
|
role_uuid?: string;
|
|
40386
|
+
scope_description?: string;
|
|
40387
|
+
scope_name?: string;
|
|
39988
40388
|
scope_type?: string;
|
|
39989
40389
|
state?: Array<'accepted' | 'canceled' | 'expired' | 'pending' | 'project' | 'rejected' | 'requested'>;
|
|
39990
40390
|
};
|
|
@@ -40017,6 +40417,8 @@ export type UserInvitationsCountData = {
|
|
|
40017
40417
|
page_size?: number;
|
|
40018
40418
|
role_name?: string;
|
|
40019
40419
|
role_uuid?: string;
|
|
40420
|
+
scope_description?: string;
|
|
40421
|
+
scope_name?: string;
|
|
40020
40422
|
scope_type?: string;
|
|
40021
40423
|
state?: Array<'accepted' | 'canceled' | 'expired' | 'pending' | 'project' | 'rejected' | 'requested'>;
|
|
40022
40424
|
};
|
|
@@ -40238,6 +40640,18 @@ export type UserPermissionRequestsApproveResponses = {
|
|
|
40238
40640
|
200: ReviewComment;
|
|
40239
40641
|
};
|
|
40240
40642
|
export type UserPermissionRequestsApproveResponse = UserPermissionRequestsApproveResponses[keyof UserPermissionRequestsApproveResponses];
|
|
40643
|
+
export type UserPermissionRequestsCancelRequestData = {
|
|
40644
|
+
body?: never;
|
|
40645
|
+
path: {
|
|
40646
|
+
uuid: string;
|
|
40647
|
+
};
|
|
40648
|
+
query?: never;
|
|
40649
|
+
url: '/api/user-permission-requests/{uuid}/cancel_request/';
|
|
40650
|
+
};
|
|
40651
|
+
export type UserPermissionRequestsCancelRequestResponses = {
|
|
40652
|
+
200: CancelRequestResponse;
|
|
40653
|
+
};
|
|
40654
|
+
export type UserPermissionRequestsCancelRequestResponse = UserPermissionRequestsCancelRequestResponses[keyof UserPermissionRequestsCancelRequestResponses];
|
|
40241
40655
|
export type UserPermissionRequestsRejectData = {
|
|
40242
40656
|
body?: ReviewCommentRequest;
|
|
40243
40657
|
path: {
|