waldur-js-client 8.0.8-dev.3 → 8.0.8-dev.5
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 +36 -1
- package/dist/sdk.gen.js +283 -0
- package/dist/types.gen.d.ts +436 -7
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -102,6 +102,56 @@ export type AdministrativeAccess = {
|
|
|
102
102
|
support_count?: number;
|
|
103
103
|
users?: Array<AdminUser>;
|
|
104
104
|
};
|
|
105
|
+
export type AffiliatedOrganization = {
|
|
106
|
+
readonly uuid?: string;
|
|
107
|
+
readonly url?: string;
|
|
108
|
+
name?: string;
|
|
109
|
+
/**
|
|
110
|
+
* Unique short identifier, e.g. CERN, EMBL.
|
|
111
|
+
*/
|
|
112
|
+
code?: string;
|
|
113
|
+
abbreviation?: string;
|
|
114
|
+
description?: string;
|
|
115
|
+
email?: string;
|
|
116
|
+
homepage?: string;
|
|
117
|
+
country?: string;
|
|
118
|
+
address?: string;
|
|
119
|
+
readonly created?: string;
|
|
120
|
+
readonly modified?: string;
|
|
121
|
+
/**
|
|
122
|
+
* Number of active projects affiliated with this organization
|
|
123
|
+
*/
|
|
124
|
+
readonly projects_count?: number;
|
|
125
|
+
};
|
|
126
|
+
export type AffiliatedOrganizationReportRow = {
|
|
127
|
+
org_uuid: string | null;
|
|
128
|
+
org_name: string;
|
|
129
|
+
org_abbreviation: string;
|
|
130
|
+
projects_count: number;
|
|
131
|
+
resources_count: number;
|
|
132
|
+
estimated_cost: string;
|
|
133
|
+
};
|
|
134
|
+
export type AffiliatedOrganizationRequest = {
|
|
135
|
+
name: string;
|
|
136
|
+
/**
|
|
137
|
+
* Unique short identifier, e.g. CERN, EMBL.
|
|
138
|
+
*/
|
|
139
|
+
code: string;
|
|
140
|
+
abbreviation?: string;
|
|
141
|
+
description?: string;
|
|
142
|
+
email?: string;
|
|
143
|
+
homepage?: string;
|
|
144
|
+
country?: string;
|
|
145
|
+
address?: string;
|
|
146
|
+
};
|
|
147
|
+
export type AffiliatedOrganizationStats = {
|
|
148
|
+
active_projects_count: number;
|
|
149
|
+
resources_count: number;
|
|
150
|
+
estimated_monthly_cost: string;
|
|
151
|
+
};
|
|
152
|
+
export type AffiliatedOrganizationsUpdateRequest = {
|
|
153
|
+
affiliated_organizations?: Array<string>;
|
|
154
|
+
};
|
|
105
155
|
export type AffiliationTypeEnum = 'employment' | 'education' | 'visiting' | 'honorary' | 'consulting';
|
|
106
156
|
export type AffinityMatrixEntry = {
|
|
107
157
|
uuid: string;
|
|
@@ -2295,7 +2345,7 @@ export type BaseProviderPlan = {
|
|
|
2295
2345
|
[key: string]: string;
|
|
2296
2346
|
};
|
|
2297
2347
|
readonly quotas?: {
|
|
2298
|
-
[key: string]:
|
|
2348
|
+
[key: string]: number;
|
|
2299
2349
|
};
|
|
2300
2350
|
readonly resources_count?: number;
|
|
2301
2351
|
readonly plan_type?: string;
|
|
@@ -2346,7 +2396,7 @@ export type BasePublicPlan = {
|
|
|
2346
2396
|
[key: string]: string;
|
|
2347
2397
|
};
|
|
2348
2398
|
readonly quotas?: {
|
|
2349
|
-
[key: string]:
|
|
2399
|
+
[key: string]: number;
|
|
2350
2400
|
};
|
|
2351
2401
|
readonly resources_count?: number;
|
|
2352
2402
|
readonly plan_type?: string;
|
|
@@ -5490,7 +5540,7 @@ export type CustomerEstimatedCostPolicy = {
|
|
|
5490
5540
|
limit_cost: number;
|
|
5491
5541
|
period?: PolicyPeriodEnum;
|
|
5492
5542
|
readonly period_name: string;
|
|
5493
|
-
readonly customer_credit:
|
|
5543
|
+
readonly customer_credit: string | null;
|
|
5494
5544
|
billing_price_estimate: NestedPriceEstimate;
|
|
5495
5545
|
};
|
|
5496
5546
|
export type CustomerEstimatedCostPolicyRequest = {
|
|
@@ -15213,6 +15263,19 @@ export type PatchedAdminAnnouncementRequest = {
|
|
|
15213
15263
|
active_to?: string;
|
|
15214
15264
|
type?: AdminAnnouncementTypeEnum;
|
|
15215
15265
|
};
|
|
15266
|
+
export type PatchedAffiliatedOrganizationRequest = {
|
|
15267
|
+
name?: string;
|
|
15268
|
+
/**
|
|
15269
|
+
* Unique short identifier, e.g. CERN, EMBL.
|
|
15270
|
+
*/
|
|
15271
|
+
code?: string;
|
|
15272
|
+
abbreviation?: string;
|
|
15273
|
+
description?: string;
|
|
15274
|
+
email?: string;
|
|
15275
|
+
homepage?: string;
|
|
15276
|
+
country?: string;
|
|
15277
|
+
address?: string;
|
|
15278
|
+
};
|
|
15216
15279
|
export type PatchedAllocationRequest = {
|
|
15217
15280
|
name?: string;
|
|
15218
15281
|
description?: string;
|
|
@@ -17667,6 +17730,7 @@ export type Project = {
|
|
|
17667
17730
|
* List of allowed identity sources (identity providers).
|
|
17668
17731
|
*/
|
|
17669
17732
|
user_identity_sources?: unknown;
|
|
17733
|
+
readonly affiliated_organizations?: Array<AffiliatedOrganization>;
|
|
17670
17734
|
readonly project_credit?: number | null;
|
|
17671
17735
|
readonly marketplace_resource_count?: {
|
|
17672
17736
|
[key: string]: number;
|
|
@@ -17896,8 +17960,8 @@ export type ProjectEstimatedCostPolicy = {
|
|
|
17896
17960
|
limit_cost: number;
|
|
17897
17961
|
period?: PolicyPeriodEnum;
|
|
17898
17962
|
readonly period_name: string;
|
|
17899
|
-
readonly project_credit:
|
|
17900
|
-
readonly customer_credit:
|
|
17963
|
+
readonly project_credit: string | null;
|
|
17964
|
+
readonly customer_credit: string | null;
|
|
17901
17965
|
billing_price_estimate: NestedPriceEstimate;
|
|
17902
17966
|
};
|
|
17903
17967
|
export type ProjectEstimatedCostPolicyRequest = {
|
|
@@ -18849,7 +18913,7 @@ export type ProviderPlanDetails = {
|
|
|
18849
18913
|
[key: string]: string;
|
|
18850
18914
|
};
|
|
18851
18915
|
readonly quotas: {
|
|
18852
|
-
[key: string]:
|
|
18916
|
+
[key: string]: number;
|
|
18853
18917
|
};
|
|
18854
18918
|
readonly resources_count: number;
|
|
18855
18919
|
readonly plan_type: string;
|
|
@@ -27618,7 +27682,7 @@ export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'dra
|
|
|
27618
27682
|
export type ProviderOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_id_rules' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details';
|
|
27619
27683
|
export type ProviderOfferingDetailsOEnum = '-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type';
|
|
27620
27684
|
export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
|
|
27621
|
-
export type ProjectFieldEnum = 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_grace_period_days' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'effective_end_date' | 'end_date' | 'end_date_requested_by' | 'end_date_updated_at' | 'grace_period_days' | 'image' | 'is_in_grace_period' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
|
|
27685
|
+
export type ProjectFieldEnum = 'affiliated_organizations' | 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_grace_period_days' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'effective_end_date' | 'end_date' | 'end_date_requested_by' | 'end_date_updated_at' | 'grace_period_days' | 'image' | 'is_in_grace_period' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
|
|
27622
27686
|
export type UserFieldEnum = 'active_isds' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'deactivation_reason' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'has_usable_password' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_identity_manager' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'managed_isds' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
|
|
27623
27687
|
export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
|
|
27624
27688
|
export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details';
|
|
@@ -29111,6 +29175,271 @@ export type AdminArrowVendorOfferingMappingsVendorChoicesCountResponses = {
|
|
|
29111
29175
|
*/
|
|
29112
29176
|
200: unknown;
|
|
29113
29177
|
};
|
|
29178
|
+
export type AffiliatedOrganizationsListData = {
|
|
29179
|
+
body?: never;
|
|
29180
|
+
path?: never;
|
|
29181
|
+
query?: {
|
|
29182
|
+
/**
|
|
29183
|
+
* Abbreviation
|
|
29184
|
+
*/
|
|
29185
|
+
abbreviation?: string;
|
|
29186
|
+
/**
|
|
29187
|
+
* Code
|
|
29188
|
+
*/
|
|
29189
|
+
code?: string;
|
|
29190
|
+
/**
|
|
29191
|
+
* Country
|
|
29192
|
+
*/
|
|
29193
|
+
country?: string;
|
|
29194
|
+
/**
|
|
29195
|
+
* Name
|
|
29196
|
+
*/
|
|
29197
|
+
name?: string;
|
|
29198
|
+
/**
|
|
29199
|
+
* Name (exact)
|
|
29200
|
+
*/
|
|
29201
|
+
name_exact?: string;
|
|
29202
|
+
/**
|
|
29203
|
+
* Which field to use when ordering the results.
|
|
29204
|
+
*/
|
|
29205
|
+
o?: string;
|
|
29206
|
+
/**
|
|
29207
|
+
* A page number within the paginated result set.
|
|
29208
|
+
*/
|
|
29209
|
+
page?: number;
|
|
29210
|
+
/**
|
|
29211
|
+
* Number of results to return per page.
|
|
29212
|
+
*/
|
|
29213
|
+
page_size?: number;
|
|
29214
|
+
/**
|
|
29215
|
+
* Search
|
|
29216
|
+
*/
|
|
29217
|
+
query?: string;
|
|
29218
|
+
};
|
|
29219
|
+
url: '/api/affiliated-organizations/';
|
|
29220
|
+
};
|
|
29221
|
+
export type AffiliatedOrganizationsListResponses = {
|
|
29222
|
+
200: Array<AffiliatedOrganization>;
|
|
29223
|
+
};
|
|
29224
|
+
export type AffiliatedOrganizationsListResponse = AffiliatedOrganizationsListResponses[keyof AffiliatedOrganizationsListResponses];
|
|
29225
|
+
export type AffiliatedOrganizationsCountData = {
|
|
29226
|
+
body?: never;
|
|
29227
|
+
path?: never;
|
|
29228
|
+
query?: {
|
|
29229
|
+
/**
|
|
29230
|
+
* Abbreviation
|
|
29231
|
+
*/
|
|
29232
|
+
abbreviation?: string;
|
|
29233
|
+
/**
|
|
29234
|
+
* Code
|
|
29235
|
+
*/
|
|
29236
|
+
code?: string;
|
|
29237
|
+
/**
|
|
29238
|
+
* Country
|
|
29239
|
+
*/
|
|
29240
|
+
country?: string;
|
|
29241
|
+
/**
|
|
29242
|
+
* Name
|
|
29243
|
+
*/
|
|
29244
|
+
name?: string;
|
|
29245
|
+
/**
|
|
29246
|
+
* Name (exact)
|
|
29247
|
+
*/
|
|
29248
|
+
name_exact?: string;
|
|
29249
|
+
/**
|
|
29250
|
+
* Which field to use when ordering the results.
|
|
29251
|
+
*/
|
|
29252
|
+
o?: string;
|
|
29253
|
+
/**
|
|
29254
|
+
* A page number within the paginated result set.
|
|
29255
|
+
*/
|
|
29256
|
+
page?: number;
|
|
29257
|
+
/**
|
|
29258
|
+
* Number of results to return per page.
|
|
29259
|
+
*/
|
|
29260
|
+
page_size?: number;
|
|
29261
|
+
/**
|
|
29262
|
+
* Search
|
|
29263
|
+
*/
|
|
29264
|
+
query?: string;
|
|
29265
|
+
};
|
|
29266
|
+
url: '/api/affiliated-organizations/';
|
|
29267
|
+
};
|
|
29268
|
+
export type AffiliatedOrganizationsCountResponses = {
|
|
29269
|
+
/**
|
|
29270
|
+
* No response body
|
|
29271
|
+
*/
|
|
29272
|
+
200: unknown;
|
|
29273
|
+
};
|
|
29274
|
+
export type AffiliatedOrganizationsCreateData = {
|
|
29275
|
+
body: AffiliatedOrganizationRequest;
|
|
29276
|
+
path?: never;
|
|
29277
|
+
query?: never;
|
|
29278
|
+
url: '/api/affiliated-organizations/';
|
|
29279
|
+
};
|
|
29280
|
+
export type AffiliatedOrganizationsCreateResponses = {
|
|
29281
|
+
201: AffiliatedOrganization;
|
|
29282
|
+
};
|
|
29283
|
+
export type AffiliatedOrganizationsCreateResponse = AffiliatedOrganizationsCreateResponses[keyof AffiliatedOrganizationsCreateResponses];
|
|
29284
|
+
export type AffiliatedOrganizationsDestroyData = {
|
|
29285
|
+
body?: never;
|
|
29286
|
+
path: {
|
|
29287
|
+
uuid: string;
|
|
29288
|
+
};
|
|
29289
|
+
query?: never;
|
|
29290
|
+
url: '/api/affiliated-organizations/{uuid}/';
|
|
29291
|
+
};
|
|
29292
|
+
export type AffiliatedOrganizationsDestroyResponses = {
|
|
29293
|
+
/**
|
|
29294
|
+
* No response body
|
|
29295
|
+
*/
|
|
29296
|
+
204: void;
|
|
29297
|
+
};
|
|
29298
|
+
export type AffiliatedOrganizationsDestroyResponse = AffiliatedOrganizationsDestroyResponses[keyof AffiliatedOrganizationsDestroyResponses];
|
|
29299
|
+
export type AffiliatedOrganizationsRetrieveData = {
|
|
29300
|
+
body?: never;
|
|
29301
|
+
path: {
|
|
29302
|
+
uuid: string;
|
|
29303
|
+
};
|
|
29304
|
+
query?: never;
|
|
29305
|
+
url: '/api/affiliated-organizations/{uuid}/';
|
|
29306
|
+
};
|
|
29307
|
+
export type AffiliatedOrganizationsRetrieveResponses = {
|
|
29308
|
+
200: AffiliatedOrganization;
|
|
29309
|
+
};
|
|
29310
|
+
export type AffiliatedOrganizationsRetrieveResponse = AffiliatedOrganizationsRetrieveResponses[keyof AffiliatedOrganizationsRetrieveResponses];
|
|
29311
|
+
export type AffiliatedOrganizationsPartialUpdateData = {
|
|
29312
|
+
body?: PatchedAffiliatedOrganizationRequest;
|
|
29313
|
+
path: {
|
|
29314
|
+
uuid: string;
|
|
29315
|
+
};
|
|
29316
|
+
query?: never;
|
|
29317
|
+
url: '/api/affiliated-organizations/{uuid}/';
|
|
29318
|
+
};
|
|
29319
|
+
export type AffiliatedOrganizationsPartialUpdateResponses = {
|
|
29320
|
+
200: AffiliatedOrganization;
|
|
29321
|
+
};
|
|
29322
|
+
export type AffiliatedOrganizationsPartialUpdateResponse = AffiliatedOrganizationsPartialUpdateResponses[keyof AffiliatedOrganizationsPartialUpdateResponses];
|
|
29323
|
+
export type AffiliatedOrganizationsUpdateData = {
|
|
29324
|
+
body: AffiliatedOrganizationRequest;
|
|
29325
|
+
path: {
|
|
29326
|
+
uuid: string;
|
|
29327
|
+
};
|
|
29328
|
+
query?: never;
|
|
29329
|
+
url: '/api/affiliated-organizations/{uuid}/';
|
|
29330
|
+
};
|
|
29331
|
+
export type AffiliatedOrganizationsUpdateResponses = {
|
|
29332
|
+
200: AffiliatedOrganization;
|
|
29333
|
+
};
|
|
29334
|
+
export type AffiliatedOrganizationsUpdateResponse = AffiliatedOrganizationsUpdateResponses[keyof AffiliatedOrganizationsUpdateResponses];
|
|
29335
|
+
export type AffiliatedOrganizationsStatsRetrieveData = {
|
|
29336
|
+
body?: never;
|
|
29337
|
+
path: {
|
|
29338
|
+
uuid: string;
|
|
29339
|
+
};
|
|
29340
|
+
query?: never;
|
|
29341
|
+
url: '/api/affiliated-organizations/{uuid}/stats/';
|
|
29342
|
+
};
|
|
29343
|
+
export type AffiliatedOrganizationsStatsRetrieveResponses = {
|
|
29344
|
+
200: AffiliatedOrganizationStats;
|
|
29345
|
+
};
|
|
29346
|
+
export type AffiliatedOrganizationsStatsRetrieveResponse = AffiliatedOrganizationsStatsRetrieveResponses[keyof AffiliatedOrganizationsStatsRetrieveResponses];
|
|
29347
|
+
export type AffiliatedOrganizationsReportListData = {
|
|
29348
|
+
body?: never;
|
|
29349
|
+
path?: never;
|
|
29350
|
+
query?: {
|
|
29351
|
+
/**
|
|
29352
|
+
* Abbreviation
|
|
29353
|
+
*/
|
|
29354
|
+
abbreviation?: string;
|
|
29355
|
+
/**
|
|
29356
|
+
* Code
|
|
29357
|
+
*/
|
|
29358
|
+
code?: string;
|
|
29359
|
+
/**
|
|
29360
|
+
* Country
|
|
29361
|
+
*/
|
|
29362
|
+
country?: string;
|
|
29363
|
+
/**
|
|
29364
|
+
* Name
|
|
29365
|
+
*/
|
|
29366
|
+
name?: string;
|
|
29367
|
+
/**
|
|
29368
|
+
* Name (exact)
|
|
29369
|
+
*/
|
|
29370
|
+
name_exact?: string;
|
|
29371
|
+
/**
|
|
29372
|
+
* Which field to use when ordering the results.
|
|
29373
|
+
*/
|
|
29374
|
+
o?: string;
|
|
29375
|
+
/**
|
|
29376
|
+
* A page number within the paginated result set.
|
|
29377
|
+
*/
|
|
29378
|
+
page?: number;
|
|
29379
|
+
/**
|
|
29380
|
+
* Number of results to return per page.
|
|
29381
|
+
*/
|
|
29382
|
+
page_size?: number;
|
|
29383
|
+
/**
|
|
29384
|
+
* Search
|
|
29385
|
+
*/
|
|
29386
|
+
query?: string;
|
|
29387
|
+
};
|
|
29388
|
+
url: '/api/affiliated-organizations/report/';
|
|
29389
|
+
};
|
|
29390
|
+
export type AffiliatedOrganizationsReportListResponses = {
|
|
29391
|
+
200: Array<AffiliatedOrganizationReportRow>;
|
|
29392
|
+
};
|
|
29393
|
+
export type AffiliatedOrganizationsReportListResponse = AffiliatedOrganizationsReportListResponses[keyof AffiliatedOrganizationsReportListResponses];
|
|
29394
|
+
export type AffiliatedOrganizationsReportCountData = {
|
|
29395
|
+
body?: never;
|
|
29396
|
+
path?: never;
|
|
29397
|
+
query?: {
|
|
29398
|
+
/**
|
|
29399
|
+
* Abbreviation
|
|
29400
|
+
*/
|
|
29401
|
+
abbreviation?: string;
|
|
29402
|
+
/**
|
|
29403
|
+
* Code
|
|
29404
|
+
*/
|
|
29405
|
+
code?: string;
|
|
29406
|
+
/**
|
|
29407
|
+
* Country
|
|
29408
|
+
*/
|
|
29409
|
+
country?: string;
|
|
29410
|
+
/**
|
|
29411
|
+
* Name
|
|
29412
|
+
*/
|
|
29413
|
+
name?: string;
|
|
29414
|
+
/**
|
|
29415
|
+
* Name (exact)
|
|
29416
|
+
*/
|
|
29417
|
+
name_exact?: string;
|
|
29418
|
+
/**
|
|
29419
|
+
* Which field to use when ordering the results.
|
|
29420
|
+
*/
|
|
29421
|
+
o?: string;
|
|
29422
|
+
/**
|
|
29423
|
+
* A page number within the paginated result set.
|
|
29424
|
+
*/
|
|
29425
|
+
page?: number;
|
|
29426
|
+
/**
|
|
29427
|
+
* Number of results to return per page.
|
|
29428
|
+
*/
|
|
29429
|
+
page_size?: number;
|
|
29430
|
+
/**
|
|
29431
|
+
* Search
|
|
29432
|
+
*/
|
|
29433
|
+
query?: string;
|
|
29434
|
+
};
|
|
29435
|
+
url: '/api/affiliated-organizations/report/';
|
|
29436
|
+
};
|
|
29437
|
+
export type AffiliatedOrganizationsReportCountResponses = {
|
|
29438
|
+
/**
|
|
29439
|
+
* No response body
|
|
29440
|
+
*/
|
|
29441
|
+
200: unknown;
|
|
29442
|
+
};
|
|
29114
29443
|
export type AssignmentBatchesListData = {
|
|
29115
29444
|
body?: never;
|
|
29116
29445
|
path?: never;
|
|
@@ -52845,6 +53174,14 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
|
|
|
52845
53174
|
service_provider_uuid: string;
|
|
52846
53175
|
};
|
|
52847
53176
|
query: {
|
|
53177
|
+
/**
|
|
53178
|
+
* Affiliated organization name
|
|
53179
|
+
*/
|
|
53180
|
+
affiliated_organization_name?: string;
|
|
53181
|
+
/**
|
|
53182
|
+
* Affiliated organization UUID
|
|
53183
|
+
*/
|
|
53184
|
+
affiliated_organization_uuid?: Array<string>;
|
|
52848
53185
|
backend_id?: string;
|
|
52849
53186
|
/**
|
|
52850
53187
|
* Return a list of projects where current user is admin.
|
|
@@ -52887,6 +53224,10 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
|
|
|
52887
53224
|
*/
|
|
52888
53225
|
description?: string;
|
|
52889
53226
|
field?: Array<MarketplaceProviderCustomerProjectFieldEnum>;
|
|
53227
|
+
/**
|
|
53228
|
+
* Filter projects that have at least one affiliated organization.
|
|
53229
|
+
*/
|
|
53230
|
+
has_affiliated_organization?: boolean;
|
|
52890
53231
|
/**
|
|
52891
53232
|
* Is removed
|
|
52892
53233
|
*/
|
|
@@ -53383,6 +53724,14 @@ export type MarketplaceServiceProvidersProjectsListData = {
|
|
|
53383
53724
|
service_provider_uuid: string;
|
|
53384
53725
|
};
|
|
53385
53726
|
query?: {
|
|
53727
|
+
/**
|
|
53728
|
+
* Affiliated organization name
|
|
53729
|
+
*/
|
|
53730
|
+
affiliated_organization_name?: string;
|
|
53731
|
+
/**
|
|
53732
|
+
* Affiliated organization UUID
|
|
53733
|
+
*/
|
|
53734
|
+
affiliated_organization_uuid?: Array<string>;
|
|
53386
53735
|
backend_id?: string;
|
|
53387
53736
|
/**
|
|
53388
53737
|
* Return a list of projects where current user is admin.
|
|
@@ -53425,6 +53774,10 @@ export type MarketplaceServiceProvidersProjectsListData = {
|
|
|
53425
53774
|
*/
|
|
53426
53775
|
description?: string;
|
|
53427
53776
|
field?: Array<ProjectFieldEnum>;
|
|
53777
|
+
/**
|
|
53778
|
+
* Filter projects that have at least one affiliated organization.
|
|
53779
|
+
*/
|
|
53780
|
+
has_affiliated_organization?: boolean;
|
|
53428
53781
|
/**
|
|
53429
53782
|
* Is removed
|
|
53430
53783
|
*/
|
|
@@ -60645,6 +60998,14 @@ export type OpenportalUnmanagedProjectsListData = {
|
|
|
60645
60998
|
* Filter by whether accounting is running.
|
|
60646
60999
|
*/
|
|
60647
61000
|
accounting_is_running?: boolean;
|
|
61001
|
+
/**
|
|
61002
|
+
* Affiliated organization name
|
|
61003
|
+
*/
|
|
61004
|
+
affiliated_organization_name?: string;
|
|
61005
|
+
/**
|
|
61006
|
+
* Affiliated organization UUID
|
|
61007
|
+
*/
|
|
61008
|
+
affiliated_organization_uuid?: Array<string>;
|
|
60648
61009
|
backend_id?: string;
|
|
60649
61010
|
/**
|
|
60650
61011
|
* Return a list of projects where current user is admin.
|
|
@@ -60687,6 +61048,10 @@ export type OpenportalUnmanagedProjectsListData = {
|
|
|
60687
61048
|
*/
|
|
60688
61049
|
description?: string;
|
|
60689
61050
|
field?: Array<ProjectFieldEnum>;
|
|
61051
|
+
/**
|
|
61052
|
+
* Filter projects that have at least one affiliated organization.
|
|
61053
|
+
*/
|
|
61054
|
+
has_affiliated_organization?: boolean;
|
|
60690
61055
|
/**
|
|
60691
61056
|
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
60692
61057
|
*/
|
|
@@ -60756,6 +61121,14 @@ export type OpenportalUnmanagedProjectsCountData = {
|
|
|
60756
61121
|
* Filter by whether accounting is running.
|
|
60757
61122
|
*/
|
|
60758
61123
|
accounting_is_running?: boolean;
|
|
61124
|
+
/**
|
|
61125
|
+
* Affiliated organization name
|
|
61126
|
+
*/
|
|
61127
|
+
affiliated_organization_name?: string;
|
|
61128
|
+
/**
|
|
61129
|
+
* Affiliated organization UUID
|
|
61130
|
+
*/
|
|
61131
|
+
affiliated_organization_uuid?: Array<string>;
|
|
60759
61132
|
backend_id?: string;
|
|
60760
61133
|
/**
|
|
60761
61134
|
* Return a list of projects where current user is admin.
|
|
@@ -60797,6 +61170,10 @@ export type OpenportalUnmanagedProjectsCountData = {
|
|
|
60797
61170
|
* Description
|
|
60798
61171
|
*/
|
|
60799
61172
|
description?: string;
|
|
61173
|
+
/**
|
|
61174
|
+
* Filter projects that have at least one affiliated organization.
|
|
61175
|
+
*/
|
|
61176
|
+
has_affiliated_organization?: boolean;
|
|
60800
61177
|
/**
|
|
60801
61178
|
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
60802
61179
|
*/
|
|
@@ -61128,6 +61505,20 @@ export type OpenportalUnmanagedProjectsSubmitAnswersResponses = {
|
|
|
61128
61505
|
200: AnswerSubmitResponse;
|
|
61129
61506
|
};
|
|
61130
61507
|
export type OpenportalUnmanagedProjectsSubmitAnswersResponse = OpenportalUnmanagedProjectsSubmitAnswersResponses[keyof OpenportalUnmanagedProjectsSubmitAnswersResponses];
|
|
61508
|
+
export type OpenportalUnmanagedProjectsUpdateAffiliatedOrganizationsData = {
|
|
61509
|
+
body?: AffiliatedOrganizationsUpdateRequest;
|
|
61510
|
+
path: {
|
|
61511
|
+
uuid: string;
|
|
61512
|
+
};
|
|
61513
|
+
query?: never;
|
|
61514
|
+
url: '/api/openportal-unmanaged-projects/{uuid}/update_affiliated_organizations/';
|
|
61515
|
+
};
|
|
61516
|
+
export type OpenportalUnmanagedProjectsUpdateAffiliatedOrganizationsResponses = {
|
|
61517
|
+
/**
|
|
61518
|
+
* No response body
|
|
61519
|
+
*/
|
|
61520
|
+
200: unknown;
|
|
61521
|
+
};
|
|
61131
61522
|
export type OpenportalUnmanagedProjectsUpdateUserData = {
|
|
61132
61523
|
body: UserRoleUpdateRequest;
|
|
61133
61524
|
path: {
|
|
@@ -69251,6 +69642,14 @@ export type ProjectsListData = {
|
|
|
69251
69642
|
* Filter by whether accounting is running.
|
|
69252
69643
|
*/
|
|
69253
69644
|
accounting_is_running?: boolean;
|
|
69645
|
+
/**
|
|
69646
|
+
* Affiliated organization name
|
|
69647
|
+
*/
|
|
69648
|
+
affiliated_organization_name?: string;
|
|
69649
|
+
/**
|
|
69650
|
+
* Affiliated organization UUID
|
|
69651
|
+
*/
|
|
69652
|
+
affiliated_organization_uuid?: Array<string>;
|
|
69254
69653
|
backend_id?: string;
|
|
69255
69654
|
/**
|
|
69256
69655
|
* Return a list of projects where current user is admin.
|
|
@@ -69293,6 +69692,10 @@ export type ProjectsListData = {
|
|
|
69293
69692
|
*/
|
|
69294
69693
|
description?: string;
|
|
69295
69694
|
field?: Array<ProjectFieldEnum>;
|
|
69695
|
+
/**
|
|
69696
|
+
* Filter projects that have at least one affiliated organization.
|
|
69697
|
+
*/
|
|
69698
|
+
has_affiliated_organization?: boolean;
|
|
69296
69699
|
/**
|
|
69297
69700
|
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
69298
69701
|
*/
|
|
@@ -69362,6 +69765,14 @@ export type ProjectsCountData = {
|
|
|
69362
69765
|
* Filter by whether accounting is running.
|
|
69363
69766
|
*/
|
|
69364
69767
|
accounting_is_running?: boolean;
|
|
69768
|
+
/**
|
|
69769
|
+
* Affiliated organization name
|
|
69770
|
+
*/
|
|
69771
|
+
affiliated_organization_name?: string;
|
|
69772
|
+
/**
|
|
69773
|
+
* Affiliated organization UUID
|
|
69774
|
+
*/
|
|
69775
|
+
affiliated_organization_uuid?: Array<string>;
|
|
69365
69776
|
backend_id?: string;
|
|
69366
69777
|
/**
|
|
69367
69778
|
* Return a list of projects where current user is admin.
|
|
@@ -69403,6 +69814,10 @@ export type ProjectsCountData = {
|
|
|
69403
69814
|
* Description
|
|
69404
69815
|
*/
|
|
69405
69816
|
description?: string;
|
|
69817
|
+
/**
|
|
69818
|
+
* Filter projects that have at least one affiliated organization.
|
|
69819
|
+
*/
|
|
69820
|
+
has_affiliated_organization?: boolean;
|
|
69406
69821
|
/**
|
|
69407
69822
|
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
69408
69823
|
*/
|
|
@@ -69824,6 +70239,20 @@ export type ProjectsSyncUserRolesResponses = {
|
|
|
69824
70239
|
*/
|
|
69825
70240
|
200: unknown;
|
|
69826
70241
|
};
|
|
70242
|
+
export type ProjectsUpdateAffiliatedOrganizationsData = {
|
|
70243
|
+
body?: AffiliatedOrganizationsUpdateRequest;
|
|
70244
|
+
path: {
|
|
70245
|
+
uuid: string;
|
|
70246
|
+
};
|
|
70247
|
+
query?: never;
|
|
70248
|
+
url: '/api/projects/{uuid}/update_affiliated_organizations/';
|
|
70249
|
+
};
|
|
70250
|
+
export type ProjectsUpdateAffiliatedOrganizationsResponses = {
|
|
70251
|
+
/**
|
|
70252
|
+
* No response body
|
|
70253
|
+
*/
|
|
70254
|
+
200: unknown;
|
|
70255
|
+
};
|
|
69827
70256
|
export type ProjectsUpdateUserData = {
|
|
69828
70257
|
body: UserRoleUpdateRequest;
|
|
69829
70258
|
path: {
|