waldur-js-client 8.0.9-dev.0 → 8.0.9-dev.10
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 +98 -8
- package/dist/sdk.gen.js +668 -9
- package/dist/types.gen.d.ts +1081 -102
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -77,6 +77,20 @@ export type ActiveQuery = {
|
|
|
77
77
|
*/
|
|
78
78
|
readonly query_preview: string;
|
|
79
79
|
};
|
|
80
|
+
export type AdjustResourceDatesRequest = {
|
|
81
|
+
/**
|
|
82
|
+
* New start date of the originating order.
|
|
83
|
+
*/
|
|
84
|
+
start_date: string;
|
|
85
|
+
/**
|
|
86
|
+
* New end date of the resource.
|
|
87
|
+
*/
|
|
88
|
+
end_date: string;
|
|
89
|
+
/**
|
|
90
|
+
* Optional reason captured in the audit trail.
|
|
91
|
+
*/
|
|
92
|
+
comment?: string;
|
|
93
|
+
};
|
|
80
94
|
export type AdminAnnouncement = {
|
|
81
95
|
readonly uuid?: string;
|
|
82
96
|
description?: string;
|
|
@@ -587,6 +601,15 @@ export type AllocationUserUsage = {
|
|
|
587
601
|
username: string;
|
|
588
602
|
readonly full_name: string;
|
|
589
603
|
};
|
|
604
|
+
export type AllowedScopeInputRequest = {
|
|
605
|
+
type: string;
|
|
606
|
+
uuid: string;
|
|
607
|
+
};
|
|
608
|
+
export type AllowedScopeOutput = {
|
|
609
|
+
type: string;
|
|
610
|
+
uuid: string | null;
|
|
611
|
+
name: string | null;
|
|
612
|
+
};
|
|
590
613
|
export type AmountRangeEnum = 'none' | 'under_5k' | '5k_10k' | '10k_50k' | 'over_50k';
|
|
591
614
|
export type AnonymousChatBudgetSnapshot = {
|
|
592
615
|
tokens_today: number;
|
|
@@ -1854,6 +1877,10 @@ export type AvailableArrowCustomersResponse = {
|
|
|
1854
1877
|
waldur_customers: Array<WaldurCustomerBrief>;
|
|
1855
1878
|
suggestions: Array<CustomerMappingSuggestion>;
|
|
1856
1879
|
};
|
|
1880
|
+
export type AvailableBindingTarget = {
|
|
1881
|
+
permission: string;
|
|
1882
|
+
types: Array<string>;
|
|
1883
|
+
};
|
|
1857
1884
|
export type AvailableChecklist = {
|
|
1858
1885
|
readonly uuid: string;
|
|
1859
1886
|
readonly name: string;
|
|
@@ -3324,6 +3351,110 @@ export type CallRound = {
|
|
|
3324
3351
|
status: RoundStatus;
|
|
3325
3352
|
};
|
|
3326
3353
|
export type CallStates = 'draft' | 'active' | 'archived';
|
|
3354
|
+
export type CallWorkflowStep = {
|
|
3355
|
+
readonly uuid: string;
|
|
3356
|
+
readonly created: string;
|
|
3357
|
+
readonly modified: string;
|
|
3358
|
+
step: StepEnum;
|
|
3359
|
+
readonly call_uuid: string;
|
|
3360
|
+
readonly call_name: string;
|
|
3361
|
+
/**
|
|
3362
|
+
* Whether this step is enabled. Disabled steps are skipped.
|
|
3363
|
+
*/
|
|
3364
|
+
is_enabled?: boolean;
|
|
3365
|
+
/**
|
|
3366
|
+
* Duration in days. Used to calculate deadlines.
|
|
3367
|
+
*/
|
|
3368
|
+
duration_in_days?: number | null;
|
|
3369
|
+
checklist?: string | null;
|
|
3370
|
+
readonly checklist_name: string | null;
|
|
3371
|
+
/**
|
|
3372
|
+
* Evaluators cannot see each other's assessments.
|
|
3373
|
+
*/
|
|
3374
|
+
blind_review?: boolean;
|
|
3375
|
+
/**
|
|
3376
|
+
* Evaluator must confirm absence of conflict of interest.
|
|
3377
|
+
*/
|
|
3378
|
+
requires_coi_confirmation?: boolean;
|
|
3379
|
+
/**
|
|
3380
|
+
* Minimum reviews required before step can complete.
|
|
3381
|
+
*/
|
|
3382
|
+
min_reviewers?: number | null;
|
|
3383
|
+
/**
|
|
3384
|
+
* Minimum average score to pass this step.
|
|
3385
|
+
*/
|
|
3386
|
+
min_score_threshold?: string | null;
|
|
3387
|
+
/**
|
|
3388
|
+
* Whether the applicant can see step details (not just status).
|
|
3389
|
+
*/
|
|
3390
|
+
applicant_visible?: boolean;
|
|
3391
|
+
/**
|
|
3392
|
+
* Role expected to act on this step.
|
|
3393
|
+
*/
|
|
3394
|
+
responsible_role?: ResponsibleRoleEnum | BlankEnum | NullEnum | null;
|
|
3395
|
+
/**
|
|
3396
|
+
* How this step advances to the next.
|
|
3397
|
+
*/
|
|
3398
|
+
transition_mode?: TransitionModeEnum;
|
|
3399
|
+
/**
|
|
3400
|
+
* Allocation decision: require applicant award response after decision.
|
|
3401
|
+
*/
|
|
3402
|
+
include_award_response?: boolean;
|
|
3403
|
+
/**
|
|
3404
|
+
* Optional override of catalog ordering.
|
|
3405
|
+
*/
|
|
3406
|
+
display_order?: number | null;
|
|
3407
|
+
criteria?: Array<WorkflowCriterion>;
|
|
3408
|
+
};
|
|
3409
|
+
export type CallWorkflowStepRequest = {
|
|
3410
|
+
step: StepEnum;
|
|
3411
|
+
/**
|
|
3412
|
+
* Whether this step is enabled. Disabled steps are skipped.
|
|
3413
|
+
*/
|
|
3414
|
+
is_enabled?: boolean;
|
|
3415
|
+
/**
|
|
3416
|
+
* Duration in days. Used to calculate deadlines.
|
|
3417
|
+
*/
|
|
3418
|
+
duration_in_days?: number | null;
|
|
3419
|
+
checklist?: string | null;
|
|
3420
|
+
/**
|
|
3421
|
+
* Evaluators cannot see each other's assessments.
|
|
3422
|
+
*/
|
|
3423
|
+
blind_review?: boolean;
|
|
3424
|
+
/**
|
|
3425
|
+
* Evaluator must confirm absence of conflict of interest.
|
|
3426
|
+
*/
|
|
3427
|
+
requires_coi_confirmation?: boolean;
|
|
3428
|
+
/**
|
|
3429
|
+
* Minimum reviews required before step can complete.
|
|
3430
|
+
*/
|
|
3431
|
+
min_reviewers?: number | null;
|
|
3432
|
+
/**
|
|
3433
|
+
* Minimum average score to pass this step.
|
|
3434
|
+
*/
|
|
3435
|
+
min_score_threshold?: string | null;
|
|
3436
|
+
/**
|
|
3437
|
+
* Whether the applicant can see step details (not just status).
|
|
3438
|
+
*/
|
|
3439
|
+
applicant_visible?: boolean;
|
|
3440
|
+
/**
|
|
3441
|
+
* Role expected to act on this step.
|
|
3442
|
+
*/
|
|
3443
|
+
responsible_role?: ResponsibleRoleEnum | BlankEnum | NullEnum | null;
|
|
3444
|
+
/**
|
|
3445
|
+
* How this step advances to the next.
|
|
3446
|
+
*/
|
|
3447
|
+
transition_mode?: TransitionModeEnum;
|
|
3448
|
+
/**
|
|
3449
|
+
* Allocation decision: require applicant award response after decision.
|
|
3450
|
+
*/
|
|
3451
|
+
include_award_response?: boolean;
|
|
3452
|
+
/**
|
|
3453
|
+
* Optional override of catalog ordering.
|
|
3454
|
+
*/
|
|
3455
|
+
display_order?: number | null;
|
|
3456
|
+
criteria?: Array<WorkflowCriterionRequest>;
|
|
3457
|
+
};
|
|
3327
3458
|
export type Campaign = {
|
|
3328
3459
|
readonly uuid: string;
|
|
3329
3460
|
name: string;
|
|
@@ -4066,7 +4197,7 @@ export type ChecklistTemplate = {
|
|
|
4066
4197
|
questions: Array<Question>;
|
|
4067
4198
|
initial_visible_questions: Array<Question>;
|
|
4068
4199
|
};
|
|
4069
|
-
export type ChecklistTypeEnum = 'project_compliance' | 'proposal_compliance' | 'offering_compliance' | 'project_metadata' | 'onboarding_customer' | 'onboarding_intent';
|
|
4200
|
+
export type ChecklistTypeEnum = 'project_compliance' | 'proposal_compliance' | 'offering_compliance' | 'project_metadata' | 'onboarding_customer' | 'onboarding_intent' | 'workflow_step';
|
|
4070
4201
|
export type CircuitBreakerConfig = {
|
|
4071
4202
|
/**
|
|
4072
4203
|
* Number of failures before opening circuit
|
|
@@ -4220,6 +4351,31 @@ export type CommentRequest = {
|
|
|
4220
4351
|
description: string;
|
|
4221
4352
|
is_public?: boolean;
|
|
4222
4353
|
};
|
|
4354
|
+
export type CompleteWorkflowStepRequest = {
|
|
4355
|
+
/**
|
|
4356
|
+
* UUID of the workflow step instance the client believes is active. Used to detect concurrent step transitions.
|
|
4357
|
+
*/
|
|
4358
|
+
step_uuid: string;
|
|
4359
|
+
/**
|
|
4360
|
+
* Step outcome. Must be in the active step's allow-list. 'rejected' and 'expired' are reserved for system transitions.
|
|
4361
|
+
*/
|
|
4362
|
+
outcome: OutcomeEnum;
|
|
4363
|
+
/**
|
|
4364
|
+
* Explanation for the outcome.
|
|
4365
|
+
*/
|
|
4366
|
+
outcome_reason?: string;
|
|
4367
|
+
};
|
|
4368
|
+
export type CompleteWorkflowStepResponse = {
|
|
4369
|
+
detail: string;
|
|
4370
|
+
/**
|
|
4371
|
+
* New proposal state when the workflow terminates.
|
|
4372
|
+
*/
|
|
4373
|
+
proposal_state?: string;
|
|
4374
|
+
/**
|
|
4375
|
+
* Identifier of the step that just became active.
|
|
4376
|
+
*/
|
|
4377
|
+
next_step?: string;
|
|
4378
|
+
};
|
|
4223
4379
|
export type ComplianceOverview = {
|
|
4224
4380
|
readonly total_projects: number;
|
|
4225
4381
|
readonly projects_with_completions: number;
|
|
@@ -4638,6 +4794,7 @@ export type ConstanceSettings = {
|
|
|
4638
4794
|
SHORT_PAGE_TITLE?: string;
|
|
4639
4795
|
FULL_PAGE_TITLE?: string;
|
|
4640
4796
|
PROJECT_END_DATE_MANDATORY?: boolean;
|
|
4797
|
+
AFFILIATION_REQUIRED_AT_PROJECT_CREATION?: boolean;
|
|
4641
4798
|
ENABLE_ORDER_START_DATE?: boolean;
|
|
4642
4799
|
BRAND_COLOR?: string;
|
|
4643
4800
|
HERO_LINK_LABEL?: string;
|
|
@@ -4755,6 +4912,12 @@ export type ConstanceSettings = {
|
|
|
4755
4912
|
SCIM_API_URL?: string;
|
|
4756
4913
|
SCIM_API_KEY?: string;
|
|
4757
4914
|
SCIM_URN_NAMESPACE?: string;
|
|
4915
|
+
SCIM_INBOUND_ENABLED?: boolean;
|
|
4916
|
+
SCIM_INBOUND_SOURCE_NAME?: string;
|
|
4917
|
+
SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
4918
|
+
SCIM_PULL_API_URL?: string;
|
|
4919
|
+
SCIM_PULL_API_KEY?: string;
|
|
4920
|
+
SCIM_PULL_SOURCE_NAME?: string;
|
|
4758
4921
|
KEYCLOAK_ICON?: string | null;
|
|
4759
4922
|
COUNTRIES?: Array<string>;
|
|
4760
4923
|
OIDC_AUTH_URL?: string;
|
|
@@ -4859,6 +5022,7 @@ export type ConstanceSettings = {
|
|
|
4859
5022
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
4860
5023
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
4861
5024
|
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
5025
|
+
SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
|
|
4862
5026
|
PAT_ENABLED?: boolean;
|
|
4863
5027
|
PAT_MAX_LIFETIME_DAYS?: number;
|
|
4864
5028
|
PAT_MAX_TOKENS_PER_USER?: number;
|
|
@@ -4906,6 +5070,7 @@ export type ConstanceSettingsRequest = {
|
|
|
4906
5070
|
SHORT_PAGE_TITLE?: string;
|
|
4907
5071
|
FULL_PAGE_TITLE?: string;
|
|
4908
5072
|
PROJECT_END_DATE_MANDATORY?: boolean;
|
|
5073
|
+
AFFILIATION_REQUIRED_AT_PROJECT_CREATION?: boolean;
|
|
4909
5074
|
ENABLE_ORDER_START_DATE?: boolean;
|
|
4910
5075
|
BRAND_COLOR?: string;
|
|
4911
5076
|
HERO_LINK_LABEL?: string;
|
|
@@ -5023,6 +5188,12 @@ export type ConstanceSettingsRequest = {
|
|
|
5023
5188
|
SCIM_API_URL?: string;
|
|
5024
5189
|
SCIM_API_KEY?: string;
|
|
5025
5190
|
SCIM_URN_NAMESPACE?: string;
|
|
5191
|
+
SCIM_INBOUND_ENABLED?: boolean;
|
|
5192
|
+
SCIM_INBOUND_SOURCE_NAME?: string;
|
|
5193
|
+
SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
5194
|
+
SCIM_PULL_API_URL?: string;
|
|
5195
|
+
SCIM_PULL_API_KEY?: string;
|
|
5196
|
+
SCIM_PULL_SOURCE_NAME?: string;
|
|
5026
5197
|
KEYCLOAK_ICON?: (Blob | File) | null;
|
|
5027
5198
|
COUNTRIES?: Array<string>;
|
|
5028
5199
|
OIDC_AUTH_URL?: string;
|
|
@@ -5127,6 +5298,7 @@ export type ConstanceSettingsRequest = {
|
|
|
5127
5298
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
5128
5299
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
5129
5300
|
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
5301
|
+
SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
|
|
5130
5302
|
PAT_ENABLED?: boolean;
|
|
5131
5303
|
PAT_MAX_LIFETIME_DAYS?: number;
|
|
5132
5304
|
PAT_MAX_TOKENS_PER_USER?: number;
|
|
@@ -5618,6 +5790,10 @@ export type Customer = {
|
|
|
5618
5790
|
* List of allowed identity sources (identity providers).
|
|
5619
5791
|
*/
|
|
5620
5792
|
user_identity_sources?: unknown;
|
|
5793
|
+
/**
|
|
5794
|
+
* Affiliations offered to project creators of this organization.
|
|
5795
|
+
*/
|
|
5796
|
+
readonly default_affiliations?: Array<AffiliatedOrganization>;
|
|
5621
5797
|
name?: string;
|
|
5622
5798
|
/**
|
|
5623
5799
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -5789,6 +5965,9 @@ export type CustomerCreditConsumption = {
|
|
|
5789
5965
|
readonly date: string;
|
|
5790
5966
|
readonly price: string;
|
|
5791
5967
|
};
|
|
5968
|
+
export type CustomerDefaultAffiliationsUpdateRequest = {
|
|
5969
|
+
default_affiliations?: Array<string>;
|
|
5970
|
+
};
|
|
5792
5971
|
export type CustomerDetails = {
|
|
5793
5972
|
name?: string;
|
|
5794
5973
|
address?: string;
|
|
@@ -9040,6 +9219,7 @@ export type KeywordSearchModeEnum = 'expertise_only' | 'full_text';
|
|
|
9040
9219
|
export type KindEnum = 'default' | 'course' | 'public';
|
|
9041
9220
|
export type LoginpagelayoutEnum = 'split-screen' | 'centered-card' | 'minimal' | 'full-hero' | 'gradient' | 'stacked' | 'right-split' | 'glassmorphism' | 'neumorphism' | 'animated-gradient' | 'video-background' | 'bottom-sheet' | 'tabbed' | 'wizard' | 'stats' | 'news' | 'carousel' | 'logo-watermark' | 'brand-pattern' | 'duotone' | 'diagonal' | 'time-based' | 'seasonal' | 'weather';
|
|
9042
9221
|
export type LbAlgorithmEnum = 'ROUND_ROBIN' | 'LEAST_CONNECTIONS' | 'SOURCE_IP' | 'SOURCE_IP_PORT';
|
|
9222
|
+
export type LevelEnum = 'DEBUG' | 'INFO' | 'WARNING' | 'ERROR' | 'CRITICAL';
|
|
9043
9223
|
export type LexisLink = {
|
|
9044
9224
|
readonly url: string;
|
|
9045
9225
|
readonly uuid: string;
|
|
@@ -9743,6 +9923,10 @@ export type MergedPluginOptions = {
|
|
|
9743
9923
|
* Enable sub-project management within resources.
|
|
9744
9924
|
*/
|
|
9745
9925
|
enable_resource_projects?: boolean;
|
|
9926
|
+
/**
|
|
9927
|
+
* If set to True, newly-created resource projects are immediately transitioned from CREATING to OK on save, bypassing the provider/site-agent reconciliation callback. Use for offerings that have no external backend to reconcile against.
|
|
9928
|
+
*/
|
|
9929
|
+
auto_ok_resource_projects?: boolean;
|
|
9746
9930
|
/**
|
|
9747
9931
|
* If set to True, every limit-billing component declared by the offering must have a value when creating or updating a resource project. Use this for backends that reject projects without resource quotas (e.g. the rancher-keycloak-operator's project-level resourceQuota.limit cap).
|
|
9748
9932
|
*/
|
|
@@ -10041,6 +10225,10 @@ export type MergedPluginOptionsRequest = {
|
|
|
10041
10225
|
* Enable sub-project management within resources.
|
|
10042
10226
|
*/
|
|
10043
10227
|
enable_resource_projects?: boolean;
|
|
10228
|
+
/**
|
|
10229
|
+
* If set to True, newly-created resource projects are immediately transitioned from CREATING to OK on save, bypassing the provider/site-agent reconciliation callback. Use for offerings that have no external backend to reconcile against.
|
|
10230
|
+
*/
|
|
10231
|
+
auto_ok_resource_projects?: boolean;
|
|
10044
10232
|
/**
|
|
10045
10233
|
* If set to True, every limit-billing component declared by the offering must have a value when creating or updating a resource project. Use this for backends that reject projects without resource quotas (e.g. the rancher-keycloak-operator's project-level resourceQuota.limit cap).
|
|
10046
10234
|
*/
|
|
@@ -11677,6 +11865,9 @@ export type Offering = {
|
|
|
11677
11865
|
compliance_checklist?: string | null;
|
|
11678
11866
|
readonly profile_uuid?: string | null;
|
|
11679
11867
|
readonly profile_name?: string | null;
|
|
11868
|
+
readonly offering_group?: string | null;
|
|
11869
|
+
readonly offering_group_uuid?: string | null;
|
|
11870
|
+
readonly offering_group_title?: string | null;
|
|
11680
11871
|
readonly user_has_consent?: boolean;
|
|
11681
11872
|
readonly is_accessible?: boolean;
|
|
11682
11873
|
googlecalendar?: GoogleCalendar;
|
|
@@ -11906,6 +12097,7 @@ export type OfferingCreateRequest = {
|
|
|
11906
12097
|
image?: (Blob | File) | null;
|
|
11907
12098
|
backend_metadata?: unknown;
|
|
11908
12099
|
compliance_checklist?: string | null;
|
|
12100
|
+
offering_group?: string | null;
|
|
11909
12101
|
limits?: {
|
|
11910
12102
|
[key: string]: OfferingComponentLimitRequest;
|
|
11911
12103
|
};
|
|
@@ -12065,6 +12257,29 @@ export type OfferingFileRequest = {
|
|
|
12065
12257
|
offering: string;
|
|
12066
12258
|
file: Blob | File;
|
|
12067
12259
|
};
|
|
12260
|
+
export type OfferingGroup = {
|
|
12261
|
+
readonly url?: string;
|
|
12262
|
+
readonly uuid?: string;
|
|
12263
|
+
readonly created?: string;
|
|
12264
|
+
title?: string;
|
|
12265
|
+
description?: string;
|
|
12266
|
+
icon?: string | null;
|
|
12267
|
+
customer?: string;
|
|
12268
|
+
readonly customer_uuid?: string;
|
|
12269
|
+
readonly customer_name?: string;
|
|
12270
|
+
};
|
|
12271
|
+
export type OfferingGroupAssignRequest = {
|
|
12272
|
+
/**
|
|
12273
|
+
* OfferingGroup UUID. Pass null to remove the assignment.
|
|
12274
|
+
*/
|
|
12275
|
+
offering_group: string | null;
|
|
12276
|
+
};
|
|
12277
|
+
export type OfferingGroupRequest = {
|
|
12278
|
+
title: string;
|
|
12279
|
+
description?: string;
|
|
12280
|
+
icon?: (Blob | File) | null;
|
|
12281
|
+
customer: string;
|
|
12282
|
+
};
|
|
12068
12283
|
export type OfferingGroups = {
|
|
12069
12284
|
readonly customer_name: string;
|
|
12070
12285
|
readonly customer_uuid: string;
|
|
@@ -15667,6 +15882,7 @@ export type OrganizationalUser = {
|
|
|
15667
15882
|
full_name: string;
|
|
15668
15883
|
role: string | null;
|
|
15669
15884
|
};
|
|
15885
|
+
export type OutcomeEnum = 'eligible' | 'ineligible' | 'feasible' | 'infeasible' | 'reviewed' | 'approved' | 'declined' | 'accepted' | 'rejected' | 'expired';
|
|
15670
15886
|
export type PaidRequest = {
|
|
15671
15887
|
date: string;
|
|
15672
15888
|
proof?: Blob | File;
|
|
@@ -15958,6 +16174,54 @@ export type PatchedCallReviewerPoolUpdateRequest = {
|
|
|
15958
16174
|
*/
|
|
15959
16175
|
max_assignments?: number;
|
|
15960
16176
|
};
|
|
16177
|
+
export type PatchedCallWorkflowStepRequest = {
|
|
16178
|
+
/**
|
|
16179
|
+
* Whether this step is enabled. Disabled steps are skipped.
|
|
16180
|
+
*/
|
|
16181
|
+
is_enabled?: boolean;
|
|
16182
|
+
/**
|
|
16183
|
+
* Duration in days. Used to calculate deadlines.
|
|
16184
|
+
*/
|
|
16185
|
+
duration_in_days?: number | null;
|
|
16186
|
+
checklist?: string | null;
|
|
16187
|
+
/**
|
|
16188
|
+
* Evaluators cannot see each other's assessments.
|
|
16189
|
+
*/
|
|
16190
|
+
blind_review?: boolean;
|
|
16191
|
+
/**
|
|
16192
|
+
* Evaluator must confirm absence of conflict of interest.
|
|
16193
|
+
*/
|
|
16194
|
+
requires_coi_confirmation?: boolean;
|
|
16195
|
+
/**
|
|
16196
|
+
* Minimum reviews required before step can complete.
|
|
16197
|
+
*/
|
|
16198
|
+
min_reviewers?: number | null;
|
|
16199
|
+
/**
|
|
16200
|
+
* Minimum average score to pass this step.
|
|
16201
|
+
*/
|
|
16202
|
+
min_score_threshold?: string | null;
|
|
16203
|
+
/**
|
|
16204
|
+
* Whether the applicant can see step details (not just status).
|
|
16205
|
+
*/
|
|
16206
|
+
applicant_visible?: boolean;
|
|
16207
|
+
/**
|
|
16208
|
+
* Role expected to act on this step.
|
|
16209
|
+
*/
|
|
16210
|
+
responsible_role?: ResponsibleRoleEnum | BlankEnum | NullEnum | null;
|
|
16211
|
+
/**
|
|
16212
|
+
* How this step advances to the next.
|
|
16213
|
+
*/
|
|
16214
|
+
transition_mode?: TransitionModeEnum;
|
|
16215
|
+
/**
|
|
16216
|
+
* Allocation decision: require applicant award response after decision.
|
|
16217
|
+
*/
|
|
16218
|
+
include_award_response?: boolean;
|
|
16219
|
+
/**
|
|
16220
|
+
* Optional override of catalog ordering.
|
|
16221
|
+
*/
|
|
16222
|
+
display_order?: number | null;
|
|
16223
|
+
criteria?: Array<WorkflowCriterionRequest>;
|
|
16224
|
+
};
|
|
15961
16225
|
export type PatchedCategoryColumnRequest = {
|
|
15962
16226
|
/**
|
|
15963
16227
|
* Index allows to reorder columns.
|
|
@@ -16474,6 +16738,11 @@ export type PatchedOfferingEstimatedCostPolicyRequest = {
|
|
|
16474
16738
|
*/
|
|
16475
16739
|
apply_to_all?: boolean;
|
|
16476
16740
|
};
|
|
16741
|
+
export type PatchedOfferingGroupRequest = {
|
|
16742
|
+
title?: string;
|
|
16743
|
+
description?: string;
|
|
16744
|
+
icon?: (Blob | File) | null;
|
|
16745
|
+
};
|
|
16477
16746
|
export type PatchedOfferingPartitionUpdateRequest = {
|
|
16478
16747
|
partition_uuid?: string;
|
|
16479
16748
|
/**
|
|
@@ -16893,6 +17162,7 @@ export type PatchedProjectRequest = {
|
|
|
16893
17162
|
* List of allowed identity sources (identity providers).
|
|
16894
17163
|
*/
|
|
16895
17164
|
user_identity_sources?: unknown;
|
|
17165
|
+
affiliation_uuid?: string | null;
|
|
16896
17166
|
science_sub_domain?: string | null;
|
|
16897
17167
|
};
|
|
16898
17168
|
export type PatchedProjectServiceAccountRequest = {
|
|
@@ -17927,6 +18197,7 @@ export type PersonalAccessToken = {
|
|
|
17927
18197
|
name: string;
|
|
17928
18198
|
token_prefix: string;
|
|
17929
18199
|
scopes: Array<string>;
|
|
18200
|
+
readonly allowed_scopes: Array<AllowedScopeOutput>;
|
|
17930
18201
|
expires_at: string;
|
|
17931
18202
|
is_active: boolean;
|
|
17932
18203
|
last_used_at: string;
|
|
@@ -17940,6 +18211,10 @@ export type PersonalAccessToken = {
|
|
|
17940
18211
|
export type PersonalAccessTokenCreateRequest = {
|
|
17941
18212
|
name: string;
|
|
17942
18213
|
scopes: Array<string>;
|
|
18214
|
+
/**
|
|
18215
|
+
* Optional list of entity bindings restricting where this token can act. Empty list = no entity restriction.
|
|
18216
|
+
*/
|
|
18217
|
+
allowed_scopes?: Array<AllowedScopeInputRequest>;
|
|
17943
18218
|
expires_at: string;
|
|
17944
18219
|
};
|
|
17945
18220
|
export type PersonalAccessTokenCreated = {
|
|
@@ -17950,6 +18225,7 @@ export type PersonalAccessTokenCreated = {
|
|
|
17950
18225
|
*/
|
|
17951
18226
|
token: string;
|
|
17952
18227
|
scopes: Array<string>;
|
|
18228
|
+
allowed_scopes: Array<AllowedScopeOutput>;
|
|
17953
18229
|
expires_at: string;
|
|
17954
18230
|
created: string;
|
|
17955
18231
|
};
|
|
@@ -18225,7 +18501,13 @@ export type Project = {
|
|
|
18225
18501
|
* List of allowed identity sources (identity providers).
|
|
18226
18502
|
*/
|
|
18227
18503
|
user_identity_sources?: unknown;
|
|
18228
|
-
|
|
18504
|
+
affiliation?: AffiliatedOrganization;
|
|
18505
|
+
affiliation_uuid?: string | null;
|
|
18506
|
+
readonly affiliation_name?: string;
|
|
18507
|
+
/**
|
|
18508
|
+
* Unique short identifier, e.g. CERN, EMBL.
|
|
18509
|
+
*/
|
|
18510
|
+
readonly affiliation_code?: string;
|
|
18229
18511
|
science_sub_domain?: string | null;
|
|
18230
18512
|
readonly science_sub_domain_name?: string;
|
|
18231
18513
|
/**
|
|
@@ -18255,8 +18537,8 @@ export type ProjectAccountingSummary = {
|
|
|
18255
18537
|
readonly total_spend: string;
|
|
18256
18538
|
readonly current_month_spend: string;
|
|
18257
18539
|
};
|
|
18258
|
-
export type
|
|
18259
|
-
|
|
18540
|
+
export type ProjectAffiliationUpdateRequest = {
|
|
18541
|
+
affiliation?: string | null;
|
|
18260
18542
|
};
|
|
18261
18543
|
export type ProjectAnswer = {
|
|
18262
18544
|
readonly project_uuid: string;
|
|
@@ -18636,6 +18918,7 @@ export type ProjectRequest = {
|
|
|
18636
18918
|
* List of allowed identity sources (identity providers).
|
|
18637
18919
|
*/
|
|
18638
18920
|
user_identity_sources?: unknown;
|
|
18921
|
+
affiliation_uuid?: string | null;
|
|
18639
18922
|
science_sub_domain?: string | null;
|
|
18640
18923
|
};
|
|
18641
18924
|
export type ProjectServiceAccount = {
|
|
@@ -19095,6 +19378,33 @@ export type ProposalUpdateProjectDetailsRequest = {
|
|
|
19095
19378
|
duration_in_days?: number | null;
|
|
19096
19379
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
19097
19380
|
};
|
|
19381
|
+
export type ProposalWorkflowStepInstance = {
|
|
19382
|
+
readonly uuid: string;
|
|
19383
|
+
step: StepEnum;
|
|
19384
|
+
readonly step_name: string;
|
|
19385
|
+
readonly step_description: string;
|
|
19386
|
+
readonly responsible_role: string | null;
|
|
19387
|
+
status: ProposalWorkflowStepInstanceStatusEnum;
|
|
19388
|
+
/**
|
|
19389
|
+
* Step-specific outcome (e.g., eligible, feasible, approved).
|
|
19390
|
+
*/
|
|
19391
|
+
readonly outcome: string | null;
|
|
19392
|
+
/**
|
|
19393
|
+
* Explanation for the outcome (e.g., rejection reason).
|
|
19394
|
+
*/
|
|
19395
|
+
readonly outcome_reason: string;
|
|
19396
|
+
/**
|
|
19397
|
+
* When this step became active.
|
|
19398
|
+
*/
|
|
19399
|
+
readonly started_at: string | null;
|
|
19400
|
+
readonly completed_at: string | null;
|
|
19401
|
+
readonly completed_by: string | null;
|
|
19402
|
+
/**
|
|
19403
|
+
* Computed from started_at + step duration_in_days.
|
|
19404
|
+
*/
|
|
19405
|
+
readonly deadline: string | null;
|
|
19406
|
+
};
|
|
19407
|
+
export type ProposalWorkflowStepInstanceStatusEnum = 'pending' | 'active' | 'completed' | 'expired' | 'skipped';
|
|
19098
19408
|
export type ProposedAssignment = {
|
|
19099
19409
|
readonly url: string;
|
|
19100
19410
|
readonly uuid: string;
|
|
@@ -19345,6 +19655,8 @@ export type ProviderOffering = {
|
|
|
19345
19655
|
resource_options?: unknown;
|
|
19346
19656
|
secret_options?: MergedSecretOptions;
|
|
19347
19657
|
thumbnail?: string | null;
|
|
19658
|
+
readonly offering_group_uuid?: string | null;
|
|
19659
|
+
readonly offering_group_title?: string | null;
|
|
19348
19660
|
};
|
|
19349
19661
|
export type ProviderOfferingCosts = {
|
|
19350
19662
|
/**
|
|
@@ -19477,6 +19789,9 @@ export type ProviderOfferingDetails = {
|
|
|
19477
19789
|
compliance_checklist?: string | null;
|
|
19478
19790
|
readonly profile_uuid?: string | null;
|
|
19479
19791
|
readonly profile_name?: string | null;
|
|
19792
|
+
readonly offering_group?: string | null;
|
|
19793
|
+
readonly offering_group_uuid?: string | null;
|
|
19794
|
+
readonly offering_group_title?: string | null;
|
|
19480
19795
|
readonly integration_status?: Array<IntegrationStatus> | null;
|
|
19481
19796
|
readonly google_calendar_is_public?: boolean | null;
|
|
19482
19797
|
/**
|
|
@@ -19832,6 +20147,9 @@ export type PublicOfferingDetails = {
|
|
|
19832
20147
|
compliance_checklist?: string | null;
|
|
19833
20148
|
readonly profile_uuid?: string | null;
|
|
19834
20149
|
readonly profile_name?: string | null;
|
|
20150
|
+
readonly offering_group?: string | null;
|
|
20151
|
+
readonly offering_group_uuid?: string | null;
|
|
20152
|
+
readonly offering_group_title?: string | null;
|
|
19835
20153
|
readonly user_has_consent?: boolean;
|
|
19836
20154
|
readonly is_accessible?: boolean;
|
|
19837
20155
|
readonly google_calendar_is_public?: boolean | null;
|
|
@@ -21157,6 +21475,20 @@ export type ReferenceNumberRequest = {
|
|
|
21157
21475
|
*/
|
|
21158
21476
|
reference_number?: string;
|
|
21159
21477
|
};
|
|
21478
|
+
export type RejectWorkflowStepRequest = {
|
|
21479
|
+
/**
|
|
21480
|
+
* UUID of the workflow step instance the client believes is active. Used to detect concurrent step transitions.
|
|
21481
|
+
*/
|
|
21482
|
+
step_uuid: string;
|
|
21483
|
+
/**
|
|
21484
|
+
* Reason for rejecting the proposal at this step.
|
|
21485
|
+
*/
|
|
21486
|
+
reason: string;
|
|
21487
|
+
};
|
|
21488
|
+
export type RejectWorkflowStepResponse = {
|
|
21489
|
+
detail: string;
|
|
21490
|
+
proposal_state: string;
|
|
21491
|
+
};
|
|
21160
21492
|
export type RelationshipTypeEnum = 'employment' | 'consulting' | 'equity' | 'board' | 'royalties' | 'gifts' | 'other';
|
|
21161
21493
|
export type RemoteAllocation = {
|
|
21162
21494
|
readonly url?: string;
|
|
@@ -21813,6 +22145,14 @@ export type ResourceProject = {
|
|
|
21813
22145
|
readonly resource_name: string;
|
|
21814
22146
|
readonly created: string;
|
|
21815
22147
|
readonly modified: string;
|
|
22148
|
+
readonly is_removed: boolean;
|
|
22149
|
+
readonly removed_date: string | null;
|
|
22150
|
+
readonly removed_by: number | null;
|
|
22151
|
+
/**
|
|
22152
|
+
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
22153
|
+
*/
|
|
22154
|
+
readonly removed_by_username: string;
|
|
22155
|
+
readonly termination_metadata: unknown;
|
|
21816
22156
|
};
|
|
21817
22157
|
export type ResourceProjectBackendId = {
|
|
21818
22158
|
backend_id: string;
|
|
@@ -21832,6 +22172,16 @@ export type ResourceProjectErrorMessageRequest = {
|
|
|
21832
22172
|
*/
|
|
21833
22173
|
error_message?: string;
|
|
21834
22174
|
};
|
|
22175
|
+
export type ResourceProjectRecoveryRequest = {
|
|
22176
|
+
/**
|
|
22177
|
+
* Recreate the UserRole rows captured at soft-delete time. Requires termination_metadata to be present (set on soft-deletes performed after the recovery feature shipped).
|
|
22178
|
+
*/
|
|
22179
|
+
restore_team_members?: boolean;
|
|
22180
|
+
/**
|
|
22181
|
+
* Send invitations to users who had access before soft-delete. Mutually exclusive with restore_team_members.
|
|
22182
|
+
*/
|
|
22183
|
+
send_invitations_to_previous_members?: boolean;
|
|
22184
|
+
};
|
|
21835
22185
|
export type ResourceProjectRequest = {
|
|
21836
22186
|
resource: string;
|
|
21837
22187
|
name: string;
|
|
@@ -22156,6 +22506,7 @@ export type ResourcesLimits = {
|
|
|
22156
22506
|
*/
|
|
22157
22507
|
readonly organization_group_uuid: string;
|
|
22158
22508
|
};
|
|
22509
|
+
export type ResponsibleRoleEnum = 'call_manager' | 'offering_manager' | 'reviewer' | 'panel_member' | 'applicant';
|
|
22159
22510
|
export type ReviewCommentRequest = {
|
|
22160
22511
|
/**
|
|
22161
22512
|
* Optional comment for review
|
|
@@ -23396,6 +23747,10 @@ export type ScienceSubDomainRequest = {
|
|
|
23396
23747
|
name: string;
|
|
23397
23748
|
domain: string;
|
|
23398
23749
|
};
|
|
23750
|
+
export type ScimPullAttributesResponse = {
|
|
23751
|
+
detail: string;
|
|
23752
|
+
changed_fields?: Array<string>;
|
|
23753
|
+
};
|
|
23399
23754
|
export type ScimSyncAllResponse = {
|
|
23400
23755
|
detail: string;
|
|
23401
23756
|
};
|
|
@@ -23752,6 +24107,27 @@ export type SiteAgentConfigGenerationRequest = {
|
|
|
23752
24107
|
*/
|
|
23753
24108
|
timezone?: string;
|
|
23754
24109
|
};
|
|
24110
|
+
export type SiteAgentLog = {
|
|
24111
|
+
readonly uuid: string;
|
|
24112
|
+
readonly offering: string;
|
|
24113
|
+
readonly offering_uuid: string;
|
|
24114
|
+
readonly agent_identity_uuid: string;
|
|
24115
|
+
/**
|
|
24116
|
+
* Unix timestamp of the log entry
|
|
24117
|
+
*/
|
|
24118
|
+
timestamp: number;
|
|
24119
|
+
level: LevelEnum;
|
|
24120
|
+
message: string;
|
|
24121
|
+
module: string;
|
|
24122
|
+
readonly created: string;
|
|
24123
|
+
};
|
|
24124
|
+
export type SiteAgentLogCreateRequest = {
|
|
24125
|
+
agent_identity_uuid: string;
|
|
24126
|
+
timestamp: number;
|
|
24127
|
+
level: LevelEnum;
|
|
24128
|
+
message: string;
|
|
24129
|
+
module: string;
|
|
24130
|
+
};
|
|
23755
24131
|
export type SlurmAllocation = {
|
|
23756
24132
|
readonly url?: string;
|
|
23757
24133
|
readonly uuid?: string;
|
|
@@ -24406,6 +24782,7 @@ export type StateTransitionError = {
|
|
|
24406
24782
|
*/
|
|
24407
24783
|
detail: string;
|
|
24408
24784
|
};
|
|
24785
|
+
export type StepEnum = 'administrative_check' | 'technical_assessment' | 'expert_review' | 'panel_review' | 'allocation_decision' | 'award_response';
|
|
24409
24786
|
export type StorageDataType = {
|
|
24410
24787
|
key: string;
|
|
24411
24788
|
label: string;
|
|
@@ -25040,6 +25417,7 @@ export type TransactionStats = {
|
|
|
25040
25417
|
*/
|
|
25041
25418
|
readonly deadlocks: number;
|
|
25042
25419
|
};
|
|
25420
|
+
export type TransitionModeEnum = 'automatic_on_completion';
|
|
25043
25421
|
export type TriggerCoiDetectionJobTypeEnum = 'full_call' | 'incremental';
|
|
25044
25422
|
export type TriggerCoiDetectionRequest = {
|
|
25045
25423
|
job_type?: TriggerCoiDetectionJobTypeEnum;
|
|
@@ -25456,7 +25834,7 @@ export type UserAuthToken = {
|
|
|
25456
25834
|
};
|
|
25457
25835
|
export type UserChecklistCompletion = {
|
|
25458
25836
|
readonly uuid: string;
|
|
25459
|
-
offering_user:
|
|
25837
|
+
offering_user: UserChecklistCompletionOfferingUser | null;
|
|
25460
25838
|
readonly offering_user_uuid: string | null;
|
|
25461
25839
|
readonly offering_name: string | null;
|
|
25462
25840
|
readonly offering_uuid: string | null;
|
|
@@ -25487,6 +25865,17 @@ export type UserChecklistCompletion = {
|
|
|
25487
25865
|
readonly created: string;
|
|
25488
25866
|
readonly modified: string;
|
|
25489
25867
|
};
|
|
25868
|
+
export type UserChecklistCompletionOfferingUser = {
|
|
25869
|
+
readonly uuid: string;
|
|
25870
|
+
username?: string | null;
|
|
25871
|
+
readonly user_full_name: string;
|
|
25872
|
+
readonly user_email: string;
|
|
25873
|
+
readonly state: string;
|
|
25874
|
+
/**
|
|
25875
|
+
* Signal to service if the user account is restricted or not
|
|
25876
|
+
*/
|
|
25877
|
+
is_restricted?: boolean;
|
|
25878
|
+
};
|
|
25490
25879
|
export type UserConsentInfo = {
|
|
25491
25880
|
readonly uuid: string;
|
|
25492
25881
|
readonly version: string;
|
|
@@ -26288,6 +26677,15 @@ export type WebHookRequest = {
|
|
|
26288
26677
|
content_type?: WebHookContentTypeEnum;
|
|
26289
26678
|
};
|
|
26290
26679
|
export type WidgetEnum = 'csv' | 'filesize' | 'attached_instance';
|
|
26680
|
+
export type WorkflowCriterion = {
|
|
26681
|
+
readonly uuid: string;
|
|
26682
|
+
name: string;
|
|
26683
|
+
order?: number;
|
|
26684
|
+
};
|
|
26685
|
+
export type WorkflowCriterionRequest = {
|
|
26686
|
+
name: string;
|
|
26687
|
+
order?: number;
|
|
26688
|
+
};
|
|
26291
26689
|
export type ZammadarticletypeEnum = 'email' | 'phone' | 'web' | 'note' | 'sms' | 'chat' | 'fax' | 'twitter status' | 'twitter direct-message' | 'facebook feed post' | 'facebook feed comment' | 'telegram personal-message';
|
|
26292
26690
|
export type OfferingProfileRole = {
|
|
26293
26691
|
uuid: string;
|
|
@@ -26959,6 +27357,28 @@ export type OfferingFileRequestMultipart = {
|
|
|
26959
27357
|
offering: string;
|
|
26960
27358
|
file: Blob | File;
|
|
26961
27359
|
};
|
|
27360
|
+
export type OfferingGroupRequestForm = {
|
|
27361
|
+
title: string;
|
|
27362
|
+
description?: string;
|
|
27363
|
+
icon?: (Blob | File) | null;
|
|
27364
|
+
customer: string;
|
|
27365
|
+
};
|
|
27366
|
+
export type OfferingGroupRequestMultipart = {
|
|
27367
|
+
title: string;
|
|
27368
|
+
description?: string;
|
|
27369
|
+
icon?: (Blob | File) | null;
|
|
27370
|
+
customer: string;
|
|
27371
|
+
};
|
|
27372
|
+
export type PatchedOfferingGroupRequestForm = {
|
|
27373
|
+
title?: string;
|
|
27374
|
+
description?: string;
|
|
27375
|
+
icon?: (Blob | File) | null;
|
|
27376
|
+
};
|
|
27377
|
+
export type PatchedOfferingGroupRequestMultipart = {
|
|
27378
|
+
title?: string;
|
|
27379
|
+
description?: string;
|
|
27380
|
+
icon?: (Blob | File) | null;
|
|
27381
|
+
};
|
|
26962
27382
|
export type OrderConsumerInfoRequestForm = {
|
|
26963
27383
|
consumer_message?: string;
|
|
26964
27384
|
consumer_message_attachment?: Blob | File;
|
|
@@ -27034,6 +27454,7 @@ export type OfferingCreateRequestForm = {
|
|
|
27034
27454
|
image?: (Blob | File) | null;
|
|
27035
27455
|
backend_metadata?: unknown;
|
|
27036
27456
|
compliance_checklist?: string | null;
|
|
27457
|
+
offering_group?: string | null;
|
|
27037
27458
|
limits?: {
|
|
27038
27459
|
[key: string]: OfferingComponentLimitRequest;
|
|
27039
27460
|
};
|
|
@@ -27089,6 +27510,7 @@ export type OfferingCreateRequestMultipart = {
|
|
|
27089
27510
|
image?: (Blob | File) | null;
|
|
27090
27511
|
backend_metadata?: unknown;
|
|
27091
27512
|
compliance_checklist?: string | null;
|
|
27513
|
+
offering_group?: string | null;
|
|
27092
27514
|
limits?: {
|
|
27093
27515
|
[key: string]: OfferingComponentLimitRequest;
|
|
27094
27516
|
};
|
|
@@ -27275,6 +27697,7 @@ export type ProjectRequestForm = {
|
|
|
27275
27697
|
* List of allowed identity sources (identity providers).
|
|
27276
27698
|
*/
|
|
27277
27699
|
user_identity_sources?: unknown;
|
|
27700
|
+
affiliation_uuid?: string | null;
|
|
27278
27701
|
science_sub_domain?: string | null;
|
|
27279
27702
|
};
|
|
27280
27703
|
export type ProjectRequestMultipart = {
|
|
@@ -27325,6 +27748,7 @@ export type ProjectRequestMultipart = {
|
|
|
27325
27748
|
* List of allowed identity sources (identity providers).
|
|
27326
27749
|
*/
|
|
27327
27750
|
user_identity_sources?: unknown;
|
|
27751
|
+
affiliation_uuid?: string | null;
|
|
27328
27752
|
science_sub_domain?: string | null;
|
|
27329
27753
|
};
|
|
27330
27754
|
export type PatchedProjectRequestForm = {
|
|
@@ -27375,6 +27799,7 @@ export type PatchedProjectRequestForm = {
|
|
|
27375
27799
|
* List of allowed identity sources (identity providers).
|
|
27376
27800
|
*/
|
|
27377
27801
|
user_identity_sources?: unknown;
|
|
27802
|
+
affiliation_uuid?: string | null;
|
|
27378
27803
|
science_sub_domain?: string | null;
|
|
27379
27804
|
};
|
|
27380
27805
|
export type PatchedProjectRequestMultipart = {
|
|
@@ -27425,6 +27850,7 @@ export type PatchedProjectRequestMultipart = {
|
|
|
27425
27850
|
* List of allowed identity sources (identity providers).
|
|
27426
27851
|
*/
|
|
27427
27852
|
user_identity_sources?: unknown;
|
|
27853
|
+
affiliation_uuid?: string | null;
|
|
27428
27854
|
science_sub_domain?: string | null;
|
|
27429
27855
|
};
|
|
27430
27856
|
export type ConstanceSettingsRequestForm = {
|
|
@@ -27470,6 +27896,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
27470
27896
|
SHORT_PAGE_TITLE?: string;
|
|
27471
27897
|
FULL_PAGE_TITLE?: string;
|
|
27472
27898
|
PROJECT_END_DATE_MANDATORY?: boolean;
|
|
27899
|
+
AFFILIATION_REQUIRED_AT_PROJECT_CREATION?: boolean;
|
|
27473
27900
|
ENABLE_ORDER_START_DATE?: boolean;
|
|
27474
27901
|
BRAND_COLOR?: string;
|
|
27475
27902
|
HERO_LINK_LABEL?: string;
|
|
@@ -27587,6 +28014,12 @@ export type ConstanceSettingsRequestForm = {
|
|
|
27587
28014
|
SCIM_API_URL?: string;
|
|
27588
28015
|
SCIM_API_KEY?: string;
|
|
27589
28016
|
SCIM_URN_NAMESPACE?: string;
|
|
28017
|
+
SCIM_INBOUND_ENABLED?: boolean;
|
|
28018
|
+
SCIM_INBOUND_SOURCE_NAME?: string;
|
|
28019
|
+
SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
28020
|
+
SCIM_PULL_API_URL?: string;
|
|
28021
|
+
SCIM_PULL_API_KEY?: string;
|
|
28022
|
+
SCIM_PULL_SOURCE_NAME?: string;
|
|
27590
28023
|
KEYCLOAK_ICON?: (Blob | File) | null;
|
|
27591
28024
|
COUNTRIES?: Array<string>;
|
|
27592
28025
|
OIDC_AUTH_URL?: string;
|
|
@@ -27691,6 +28124,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
27691
28124
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
27692
28125
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
27693
28126
|
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
28127
|
+
SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
|
|
27694
28128
|
PAT_ENABLED?: boolean;
|
|
27695
28129
|
PAT_MAX_LIFETIME_DAYS?: number;
|
|
27696
28130
|
PAT_MAX_TOKENS_PER_USER?: number;
|
|
@@ -27738,6 +28172,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
27738
28172
|
SHORT_PAGE_TITLE?: string;
|
|
27739
28173
|
FULL_PAGE_TITLE?: string;
|
|
27740
28174
|
PROJECT_END_DATE_MANDATORY?: boolean;
|
|
28175
|
+
AFFILIATION_REQUIRED_AT_PROJECT_CREATION?: boolean;
|
|
27741
28176
|
ENABLE_ORDER_START_DATE?: boolean;
|
|
27742
28177
|
BRAND_COLOR?: string;
|
|
27743
28178
|
HERO_LINK_LABEL?: string;
|
|
@@ -27855,6 +28290,12 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
27855
28290
|
SCIM_API_URL?: string;
|
|
27856
28291
|
SCIM_API_KEY?: string;
|
|
27857
28292
|
SCIM_URN_NAMESPACE?: string;
|
|
28293
|
+
SCIM_INBOUND_ENABLED?: boolean;
|
|
28294
|
+
SCIM_INBOUND_SOURCE_NAME?: string;
|
|
28295
|
+
SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
28296
|
+
SCIM_PULL_API_URL?: string;
|
|
28297
|
+
SCIM_PULL_API_KEY?: string;
|
|
28298
|
+
SCIM_PULL_SOURCE_NAME?: string;
|
|
27858
28299
|
KEYCLOAK_ICON?: (Blob | File) | null;
|
|
27859
28300
|
COUNTRIES?: Array<string>;
|
|
27860
28301
|
OIDC_AUTH_URL?: string;
|
|
@@ -27959,6 +28400,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
27959
28400
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
27960
28401
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
27961
28402
|
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
28403
|
+
SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
|
|
27962
28404
|
PAT_ENABLED?: boolean;
|
|
27963
28405
|
PAT_MAX_LIFETIME_DAYS?: number;
|
|
27964
28406
|
PAT_MAX_TOKENS_PER_USER?: number;
|
|
@@ -28397,6 +28839,7 @@ export type PatchedUserRequestMultipart = {
|
|
|
28397
28839
|
};
|
|
28398
28840
|
export type AdminAnnouncementFieldEnum = 'active_from' | 'active_to' | 'created' | 'description' | 'is_active' | 'maintenance_affected_offerings' | 'maintenance_external_reference_url' | 'maintenance_name' | 'maintenance_scheduled_end' | 'maintenance_scheduled_start' | 'maintenance_service_provider' | 'maintenance_state' | 'maintenance_type' | 'maintenance_uuid' | 'type' | 'uuid';
|
|
28399
28841
|
export type AdminAnnouncementOEnum = '-active_from' | '-active_to' | '-created' | '-name' | '-type' | 'active_from' | 'active_to' | 'created' | 'name' | 'type';
|
|
28842
|
+
export type AffiliatedOrganizationFieldEnum = 'abbreviation' | 'address' | 'code' | 'country' | 'created' | 'description' | 'email' | 'homepage' | 'modified' | 'name' | 'projects_count' | 'url' | 'uuid';
|
|
28400
28843
|
export type AnonymousChatFeedbackOEnum = '-llm_resolution_score' | '-score' | '-submitted_at' | 'llm_resolution_score' | 'score' | 'submitted_at';
|
|
28401
28844
|
export type AnonymousChatInteractionOEnum = '-created' | '-result_count' | 'created' | 'result_count';
|
|
28402
28845
|
export type AssignmentBatchListOEnum = '-created' | '-expires_at' | '-sent_at' | '-status' | 'created' | 'expires_at' | 'sent_at' | 'status';
|
|
@@ -28409,7 +28852,7 @@ export type AzureSqlDatabaseFieldEnum = 'access_url' | 'backend_id' | 'charset'
|
|
|
28409
28852
|
export type AzureSqlServerFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fqdn' | 'is_limit_based' | 'is_usage_based' | 'location' | 'location_name' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'password' | 'project' | 'project_name' | 'project_uuid' | 'resource_group' | 'resource_group_name' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'storage_mb' | 'url' | 'username' | 'uuid';
|
|
28410
28853
|
export type AzureVirtualMachineFieldEnum = 'access_url' | 'backend_id' | 'cores' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'disk' | 'error_message' | 'error_traceback' | 'external_ips' | 'image' | 'image_name' | 'internal_ips' | 'is_limit_based' | 'is_usage_based' | 'key_fingerprint' | 'key_name' | 'latitude' | 'location' | 'location_name' | 'longitude' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'min_disk' | 'min_ram' | 'modified' | 'name' | 'password' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'resource_group' | 'resource_group_name' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'size_name' | 'ssh_public_key' | 'start_time' | 'state' | 'url' | 'user_data' | 'username' | 'uuid';
|
|
28411
28854
|
export type BackendResourceReqOEnum = '-created' | 'created';
|
|
28412
|
-
export type OfferingFieldEnum = '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' | 'googlecalendar' | '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' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | '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';
|
|
28855
|
+
export type OfferingFieldEnum = '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' | 'googlecalendar' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'offering_group' | 'offering_group_title' | 'offering_group_uuid' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | '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';
|
|
28413
28856
|
export type BookingResourceFieldEnum = 'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_effective_end_date' | 'project_end_date' | 'project_end_date_requested_by' | 'project_is_in_grace_period' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid';
|
|
28414
28857
|
export type BookingResourceOEnum = '-created' | '-name' | '-schedules' | '-type' | 'created' | 'name' | 'schedules' | 'type';
|
|
28415
28858
|
export type BroadcastMessageFieldEnum = 'author_full_name' | 'body' | 'created' | 'emails' | 'query' | 'send_at' | 'state' | 'subject' | 'uuid';
|
|
@@ -28428,7 +28871,7 @@ export type ConflictOfInterestOEnum = '-created' | '-detected_at' | '-severity'
|
|
|
28428
28871
|
export type CustomerCreditOEnum = '-customer_name' | '-end_date' | '-expected_consumption' | '-value' | 'customer_name' | 'end_date' | 'expected_consumption' | 'value';
|
|
28429
28872
|
export type CustomerPermissionReviewOEnum = '-closed' | '-created' | 'closed' | 'created';
|
|
28430
28873
|
export type CustomerQuotasQuotaNameEnum = 'estimated_price' | 'nc_resource_count' | 'os_cpu_count' | 'os_ram_size' | 'os_storage_size' | 'vpc_cpu_count' | 'vpc_floating_ip_count' | 'vpc_instance_count' | 'vpc_ram_size' | 'vpc_storage_size';
|
|
28431
|
-
export type CustomerFieldEnum = 'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'apartment_nr' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'city' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'homepage' | 'house_nr' | 'household' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'parish' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'project_slug_template' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'state' | 'street' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'users_count' | 'uuid' | 'vat_code';
|
|
28874
|
+
export type CustomerFieldEnum = 'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'apartment_nr' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'city' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_affiliations' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'homepage' | 'house_nr' | 'household' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'parish' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'project_slug_template' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'state' | 'street' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'users_count' | 'uuid' | 'vat_code';
|
|
28432
28875
|
export type CustomerUserFieldEnum = 'email' | 'expiration_time' | 'full_name' | 'image' | 'projects' | 'role_name' | 'url' | 'username' | 'uuid';
|
|
28433
28876
|
export type CustomerUserOEnum = 'concatenated_name' | '-concatenated_name';
|
|
28434
28877
|
export type GlobalUserDataAccessLogOEnum = '-accessor_type' | '-accessor_username' | '-timestamp' | '-user_username' | 'accessor_type' | 'accessor_username' | 'timestamp' | 'user_username';
|
|
@@ -28459,6 +28902,7 @@ export type CourseAccountOEnum = '-created' | '-email' | '-modified' | '-project
|
|
|
28459
28902
|
export type IntegrationStatusDetailsOEnum = '-last_request_timestamp' | 'last_request_timestamp';
|
|
28460
28903
|
export type IntegrationStatusDetailsStatusEnum = 'Active' | 'Disconnected' | 'Unknown';
|
|
28461
28904
|
export type OfferingFileFieldEnum = 'created' | 'file' | 'name' | 'offering' | 'url' | 'uuid';
|
|
28905
|
+
export type OfferingGroupFieldEnum = 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'description' | 'icon' | 'title' | 'url' | 'uuid';
|
|
28462
28906
|
export type OfferingPermissionOEnum = '-created' | '-email' | '-expiration_time' | '-full_name' | '-native_name' | '-role' | '-username' | 'created' | 'email' | 'expiration_time' | 'full_name' | 'native_name' | 'role' | 'username';
|
|
28463
28907
|
export type OfferingReferralOEnum = '-published' | '-relation_type' | '-resource_type' | 'published' | 'relation_type' | 'resource_type';
|
|
28464
28908
|
export type OfferingTermsOfServiceOEnum = '-created' | '-modified' | '-version' | 'created' | 'modified' | 'version';
|
|
@@ -28468,19 +28912,19 @@ export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'create
|
|
|
28468
28912
|
export type OrderDetailsFieldEnum = 'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | 'consumer_rejection_comment' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_email' | 'created_by_full_name' | 'created_by_organization' | 'created_by_organization_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'error_updated_at' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'order_subtype' | 'output' | 'output_updated_at' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | 'provider_rejection_comment' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid';
|
|
28469
28913
|
export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
|
|
28470
28914
|
export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'draft' | 'pending' | 'rejected';
|
|
28471
|
-
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' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | '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';
|
|
28915
|
+
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' | 'offering_group' | 'offering_group_title' | 'offering_group_uuid' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | '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';
|
|
28472
28916
|
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';
|
|
28473
28917
|
export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
|
|
28474
|
-
export type ProjectFieldEnum = '
|
|
28918
|
+
export type ProjectFieldEnum = 'affiliation' | 'affiliation_code' | 'affiliation_name' | 'affiliation_uuid' | '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' | 'science_domain_code' | 'science_domain_name' | 'science_domain_uuid' | 'science_sub_domain' | 'science_sub_domain_code' | 'science_sub_domain_name' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
|
|
28475
28919
|
export type UserFieldEnum = 'active_isds' | 'address' | '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';
|
|
28476
28920
|
export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
|
|
28477
|
-
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' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | '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';
|
|
28921
|
+
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' | 'offering_group' | 'offering_group_title' | 'offering_group_uuid' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | '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';
|
|
28478
28922
|
export type RobotAccountDetailsFieldEnum = 'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fingerprints' | 'keys' | 'modified' | 'offering_plugin_options' | 'project_name' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'resource' | 'resource_name' | 'resource_uuid' | 'responsible_user' | 'state' | 'type' | 'url' | 'user_keys' | 'username' | 'users' | 'uuid';
|
|
28479
28923
|
export type ServiceProviderFieldEnum = 'allowed_domains' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'enable_notifications' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid';
|
|
28480
28924
|
export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
|
|
28481
28925
|
export type MarketplaceProviderCustomerProjectOEnum = '-created' | '-customer_abbreviation' | '-customer_name' | '-customer_native_name' | '-end_date' | '-estimated_cost' | '-name' | '-start_date' | 'created' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'end_date' | 'estimated_cost' | 'name' | 'start_date';
|
|
28482
28926
|
export type MarketplaceProviderCustomerFieldEnum = 'abbreviation' | 'billing_price_estimate' | 'email' | 'name' | 'payment_profiles' | 'phone_number' | 'projects' | 'projects_count' | 'slug' | 'users' | 'users_count' | 'uuid';
|
|
28483
|
-
export type ProviderOfferingFieldEnum = 'billing_price_estimate' | 'category_title' | 'components' | 'customer_uuid' | 'name' | 'options' | 'plans' | 'resource_options' | 'resources_count' | 'secret_options' | 'slug' | 'state' | 'thumbnail' | 'type' | 'uuid';
|
|
28927
|
+
export type ProviderOfferingFieldEnum = 'billing_price_estimate' | 'category_title' | 'components' | 'customer_uuid' | 'name' | 'offering_group_title' | 'offering_group_uuid' | 'options' | 'plans' | 'resource_options' | 'resources_count' | 'secret_options' | 'slug' | 'state' | 'thumbnail' | 'type' | 'uuid';
|
|
28484
28928
|
export type ProjectPermissionLogFieldEnum = 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_uuid' | 'expiration_time' | 'project' | 'project_created' | 'project_end_date' | 'project_name' | 'project_uuid' | 'role' | 'role_name' | 'user' | 'user_email' | 'user_full_name' | 'user_native_name' | 'user_username' | 'user_uuid';
|
|
28485
28929
|
export type MarketplaceServiceProviderUserFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'identity_source' | 'is_active' | 'job_title' | 'last_name' | 'nationalities' | 'nationality' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'projects_count' | 'registration_method' | 'username' | 'uuid';
|
|
28486
28930
|
export type MarketplaceServiceProviderUserOEnum = '-description' | '-email' | '-full_name' | '-is_active' | '-is_staff' | '-is_support' | '-job_title' | '-native_name' | '-organization' | '-phone_number' | '-registration_method' | '-username' | 'description' | 'email' | 'full_name' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'native_name' | 'organization' | 'phone_number' | 'registration_method' | 'username';
|
|
@@ -29983,52 +30427,61 @@ export type AffiliatedOrganizationsListData = {
|
|
|
29983
30427
|
*/
|
|
29984
30428
|
country?: string;
|
|
29985
30429
|
/**
|
|
29986
|
-
*
|
|
29987
|
-
*/
|
|
29988
|
-
name?: string;
|
|
29989
|
-
/**
|
|
29990
|
-
* Name (exact)
|
|
29991
|
-
*/
|
|
29992
|
-
name_exact?: string;
|
|
29993
|
-
/**
|
|
29994
|
-
* Which field to use when ordering the results.
|
|
29995
|
-
*/
|
|
29996
|
-
o?: string;
|
|
29997
|
-
/**
|
|
29998
|
-
* A page number within the paginated result set.
|
|
29999
|
-
*/
|
|
30000
|
-
page?: number;
|
|
30001
|
-
/**
|
|
30002
|
-
* Number of results to return per page.
|
|
30003
|
-
*/
|
|
30004
|
-
page_size?: number;
|
|
30005
|
-
/**
|
|
30006
|
-
* Search
|
|
30430
|
+
* Limit to a customer's default affiliation list
|
|
30007
30431
|
*/
|
|
30008
|
-
|
|
30009
|
-
|
|
30010
|
-
|
|
30011
|
-
|
|
30012
|
-
|
|
30013
|
-
|
|
30014
|
-
|
|
30015
|
-
|
|
30016
|
-
|
|
30017
|
-
|
|
30018
|
-
|
|
30019
|
-
|
|
30020
|
-
|
|
30021
|
-
|
|
30022
|
-
|
|
30023
|
-
|
|
30024
|
-
|
|
30025
|
-
|
|
30026
|
-
|
|
30027
|
-
|
|
30028
|
-
|
|
30029
|
-
|
|
30030
|
-
|
|
30031
|
-
|
|
30432
|
+
default_for_customer?: string;
|
|
30433
|
+
field?: Array<AffiliatedOrganizationFieldEnum>;
|
|
30434
|
+
/**
|
|
30435
|
+
* Name
|
|
30436
|
+
*/
|
|
30437
|
+
name?: string;
|
|
30438
|
+
/**
|
|
30439
|
+
* Name (exact)
|
|
30440
|
+
*/
|
|
30441
|
+
name_exact?: string;
|
|
30442
|
+
/**
|
|
30443
|
+
* Which field to use when ordering the results.
|
|
30444
|
+
*/
|
|
30445
|
+
o?: string;
|
|
30446
|
+
/**
|
|
30447
|
+
* A page number within the paginated result set.
|
|
30448
|
+
*/
|
|
30449
|
+
page?: number;
|
|
30450
|
+
/**
|
|
30451
|
+
* Number of results to return per page.
|
|
30452
|
+
*/
|
|
30453
|
+
page_size?: number;
|
|
30454
|
+
/**
|
|
30455
|
+
* Search
|
|
30456
|
+
*/
|
|
30457
|
+
query?: string;
|
|
30458
|
+
};
|
|
30459
|
+
url: '/api/affiliated-organizations/';
|
|
30460
|
+
};
|
|
30461
|
+
export type AffiliatedOrganizationsListResponses = {
|
|
30462
|
+
200: Array<AffiliatedOrganization>;
|
|
30463
|
+
};
|
|
30464
|
+
export type AffiliatedOrganizationsListResponse = AffiliatedOrganizationsListResponses[keyof AffiliatedOrganizationsListResponses];
|
|
30465
|
+
export type AffiliatedOrganizationsCountData = {
|
|
30466
|
+
body?: never;
|
|
30467
|
+
path?: never;
|
|
30468
|
+
query?: {
|
|
30469
|
+
/**
|
|
30470
|
+
* Abbreviation
|
|
30471
|
+
*/
|
|
30472
|
+
abbreviation?: string;
|
|
30473
|
+
/**
|
|
30474
|
+
* Code
|
|
30475
|
+
*/
|
|
30476
|
+
code?: string;
|
|
30477
|
+
/**
|
|
30478
|
+
* Country
|
|
30479
|
+
*/
|
|
30480
|
+
country?: string;
|
|
30481
|
+
/**
|
|
30482
|
+
* Limit to a customer's default affiliation list
|
|
30483
|
+
*/
|
|
30484
|
+
default_for_customer?: string;
|
|
30032
30485
|
/**
|
|
30033
30486
|
* Name
|
|
30034
30487
|
*/
|
|
@@ -30092,7 +30545,9 @@ export type AffiliatedOrganizationsRetrieveData = {
|
|
|
30092
30545
|
path: {
|
|
30093
30546
|
uuid: string;
|
|
30094
30547
|
};
|
|
30095
|
-
query?:
|
|
30548
|
+
query?: {
|
|
30549
|
+
field?: Array<AffiliatedOrganizationFieldEnum>;
|
|
30550
|
+
};
|
|
30096
30551
|
url: '/api/affiliated-organizations/{uuid}/';
|
|
30097
30552
|
};
|
|
30098
30553
|
export type AffiliatedOrganizationsRetrieveResponses = {
|
|
@@ -30151,6 +30606,10 @@ export type AffiliatedOrganizationsReportListData = {
|
|
|
30151
30606
|
* Country
|
|
30152
30607
|
*/
|
|
30153
30608
|
country?: string;
|
|
30609
|
+
/**
|
|
30610
|
+
* Limit to a customer's default affiliation list
|
|
30611
|
+
*/
|
|
30612
|
+
default_for_customer?: string;
|
|
30154
30613
|
/**
|
|
30155
30614
|
* Name
|
|
30156
30615
|
*/
|
|
@@ -30198,6 +30657,10 @@ export type AffiliatedOrganizationsReportCountData = {
|
|
|
30198
30657
|
* Country
|
|
30199
30658
|
*/
|
|
30200
30659
|
country?: string;
|
|
30660
|
+
/**
|
|
30661
|
+
* Limit to a customer's default affiliation list
|
|
30662
|
+
*/
|
|
30663
|
+
default_for_customer?: string;
|
|
30201
30664
|
/**
|
|
30202
30665
|
* Name
|
|
30203
30666
|
*/
|
|
@@ -37641,6 +38104,20 @@ export type CustomersUpdateProjectDigestConfigUpdateResponses = {
|
|
|
37641
38104
|
200: ProjectDigestConfig;
|
|
37642
38105
|
};
|
|
37643
38106
|
export type CustomersUpdateProjectDigestConfigUpdateResponse = CustomersUpdateProjectDigestConfigUpdateResponses[keyof CustomersUpdateProjectDigestConfigUpdateResponses];
|
|
38107
|
+
export type CustomersUpdateDefaultAffiliationsData = {
|
|
38108
|
+
body?: CustomerDefaultAffiliationsUpdateRequest;
|
|
38109
|
+
path: {
|
|
38110
|
+
uuid: string;
|
|
38111
|
+
};
|
|
38112
|
+
query?: never;
|
|
38113
|
+
url: '/api/customers/{uuid}/update_default_affiliations/';
|
|
38114
|
+
};
|
|
38115
|
+
export type CustomersUpdateDefaultAffiliationsResponses = {
|
|
38116
|
+
/**
|
|
38117
|
+
* No response body
|
|
38118
|
+
*/
|
|
38119
|
+
200: unknown;
|
|
38120
|
+
};
|
|
37644
38121
|
export type CustomersUpdateOrganizationGroupsData = {
|
|
37645
38122
|
body?: OrganizationGroupsRequest;
|
|
37646
38123
|
path: {
|
|
@@ -44876,6 +45353,120 @@ export type MarketplaceOfferingFilesRetrieveResponses = {
|
|
|
44876
45353
|
200: OfferingFile;
|
|
44877
45354
|
};
|
|
44878
45355
|
export type MarketplaceOfferingFilesRetrieveResponse = MarketplaceOfferingFilesRetrieveResponses[keyof MarketplaceOfferingFilesRetrieveResponses];
|
|
45356
|
+
export type MarketplaceOfferingGroupsListData = {
|
|
45357
|
+
body?: never;
|
|
45358
|
+
path?: never;
|
|
45359
|
+
query?: {
|
|
45360
|
+
/**
|
|
45361
|
+
* Customer UUID
|
|
45362
|
+
*/
|
|
45363
|
+
customer_uuid?: string;
|
|
45364
|
+
field?: Array<OfferingGroupFieldEnum>;
|
|
45365
|
+
/**
|
|
45366
|
+
* A page number within the paginated result set.
|
|
45367
|
+
*/
|
|
45368
|
+
page?: number;
|
|
45369
|
+
/**
|
|
45370
|
+
* Number of results to return per page.
|
|
45371
|
+
*/
|
|
45372
|
+
page_size?: number;
|
|
45373
|
+
title?: string;
|
|
45374
|
+
};
|
|
45375
|
+
url: '/api/marketplace-offering-groups/';
|
|
45376
|
+
};
|
|
45377
|
+
export type MarketplaceOfferingGroupsListResponses = {
|
|
45378
|
+
200: Array<OfferingGroup>;
|
|
45379
|
+
};
|
|
45380
|
+
export type MarketplaceOfferingGroupsListResponse = MarketplaceOfferingGroupsListResponses[keyof MarketplaceOfferingGroupsListResponses];
|
|
45381
|
+
export type MarketplaceOfferingGroupsCountData = {
|
|
45382
|
+
body?: never;
|
|
45383
|
+
path?: never;
|
|
45384
|
+
query?: {
|
|
45385
|
+
/**
|
|
45386
|
+
* Customer UUID
|
|
45387
|
+
*/
|
|
45388
|
+
customer_uuid?: string;
|
|
45389
|
+
/**
|
|
45390
|
+
* A page number within the paginated result set.
|
|
45391
|
+
*/
|
|
45392
|
+
page?: number;
|
|
45393
|
+
/**
|
|
45394
|
+
* Number of results to return per page.
|
|
45395
|
+
*/
|
|
45396
|
+
page_size?: number;
|
|
45397
|
+
title?: string;
|
|
45398
|
+
};
|
|
45399
|
+
url: '/api/marketplace-offering-groups/';
|
|
45400
|
+
};
|
|
45401
|
+
export type MarketplaceOfferingGroupsCountResponses = {
|
|
45402
|
+
/**
|
|
45403
|
+
* No response body
|
|
45404
|
+
*/
|
|
45405
|
+
200: unknown;
|
|
45406
|
+
};
|
|
45407
|
+
export type MarketplaceOfferingGroupsCreateData = {
|
|
45408
|
+
body: OfferingGroupRequest;
|
|
45409
|
+
path?: never;
|
|
45410
|
+
query?: never;
|
|
45411
|
+
url: '/api/marketplace-offering-groups/';
|
|
45412
|
+
};
|
|
45413
|
+
export type MarketplaceOfferingGroupsCreateResponses = {
|
|
45414
|
+
201: OfferingGroup;
|
|
45415
|
+
};
|
|
45416
|
+
export type MarketplaceOfferingGroupsCreateResponse = MarketplaceOfferingGroupsCreateResponses[keyof MarketplaceOfferingGroupsCreateResponses];
|
|
45417
|
+
export type MarketplaceOfferingGroupsDestroyData = {
|
|
45418
|
+
body?: never;
|
|
45419
|
+
path: {
|
|
45420
|
+
uuid: string;
|
|
45421
|
+
};
|
|
45422
|
+
query?: never;
|
|
45423
|
+
url: '/api/marketplace-offering-groups/{uuid}/';
|
|
45424
|
+
};
|
|
45425
|
+
export type MarketplaceOfferingGroupsDestroyResponses = {
|
|
45426
|
+
/**
|
|
45427
|
+
* No response body
|
|
45428
|
+
*/
|
|
45429
|
+
204: void;
|
|
45430
|
+
};
|
|
45431
|
+
export type MarketplaceOfferingGroupsDestroyResponse = MarketplaceOfferingGroupsDestroyResponses[keyof MarketplaceOfferingGroupsDestroyResponses];
|
|
45432
|
+
export type MarketplaceOfferingGroupsRetrieveData = {
|
|
45433
|
+
body?: never;
|
|
45434
|
+
path: {
|
|
45435
|
+
uuid: string;
|
|
45436
|
+
};
|
|
45437
|
+
query?: {
|
|
45438
|
+
field?: Array<OfferingGroupFieldEnum>;
|
|
45439
|
+
};
|
|
45440
|
+
url: '/api/marketplace-offering-groups/{uuid}/';
|
|
45441
|
+
};
|
|
45442
|
+
export type MarketplaceOfferingGroupsRetrieveResponses = {
|
|
45443
|
+
200: OfferingGroup;
|
|
45444
|
+
};
|
|
45445
|
+
export type MarketplaceOfferingGroupsRetrieveResponse = MarketplaceOfferingGroupsRetrieveResponses[keyof MarketplaceOfferingGroupsRetrieveResponses];
|
|
45446
|
+
export type MarketplaceOfferingGroupsPartialUpdateData = {
|
|
45447
|
+
body?: PatchedOfferingGroupRequest;
|
|
45448
|
+
path: {
|
|
45449
|
+
uuid: string;
|
|
45450
|
+
};
|
|
45451
|
+
query?: never;
|
|
45452
|
+
url: '/api/marketplace-offering-groups/{uuid}/';
|
|
45453
|
+
};
|
|
45454
|
+
export type MarketplaceOfferingGroupsPartialUpdateResponses = {
|
|
45455
|
+
200: OfferingGroup;
|
|
45456
|
+
};
|
|
45457
|
+
export type MarketplaceOfferingGroupsPartialUpdateResponse = MarketplaceOfferingGroupsPartialUpdateResponses[keyof MarketplaceOfferingGroupsPartialUpdateResponses];
|
|
45458
|
+
export type MarketplaceOfferingGroupsUpdateData = {
|
|
45459
|
+
body: OfferingGroupRequest;
|
|
45460
|
+
path: {
|
|
45461
|
+
uuid: string;
|
|
45462
|
+
};
|
|
45463
|
+
query?: never;
|
|
45464
|
+
url: '/api/marketplace-offering-groups/{uuid}/';
|
|
45465
|
+
};
|
|
45466
|
+
export type MarketplaceOfferingGroupsUpdateResponses = {
|
|
45467
|
+
200: OfferingGroup;
|
|
45468
|
+
};
|
|
45469
|
+
export type MarketplaceOfferingGroupsUpdateResponse = MarketplaceOfferingGroupsUpdateResponses[keyof MarketplaceOfferingGroupsUpdateResponses];
|
|
44879
45470
|
export type MarketplaceOfferingPermissionsListData = {
|
|
44880
45471
|
body?: never;
|
|
44881
45472
|
path?: never;
|
|
@@ -47974,6 +48565,10 @@ export type MarketplaceProviderOfferingsListData = {
|
|
|
47974
48565
|
*
|
|
47975
48566
|
*/
|
|
47976
48567
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
48568
|
+
/**
|
|
48569
|
+
* Offering group UUID
|
|
48570
|
+
*/
|
|
48571
|
+
offering_group_uuid?: string;
|
|
47977
48572
|
/**
|
|
47978
48573
|
* Organization group UUID
|
|
47979
48574
|
*/
|
|
@@ -48154,6 +48749,10 @@ export type MarketplaceProviderOfferingsCountData = {
|
|
|
48154
48749
|
*
|
|
48155
48750
|
*/
|
|
48156
48751
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
48752
|
+
/**
|
|
48753
|
+
* Offering group UUID
|
|
48754
|
+
*/
|
|
48755
|
+
offering_group_uuid?: string;
|
|
48157
48756
|
/**
|
|
48158
48757
|
* Organization group UUID
|
|
48159
48758
|
*/
|
|
@@ -48471,6 +49070,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
|
|
|
48471
49070
|
*
|
|
48472
49071
|
*/
|
|
48473
49072
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
49073
|
+
/**
|
|
49074
|
+
* Offering group UUID
|
|
49075
|
+
*/
|
|
49076
|
+
offering_group_uuid?: string;
|
|
48474
49077
|
/**
|
|
48475
49078
|
* Organization group UUID
|
|
48476
49079
|
*/
|
|
@@ -48662,6 +49265,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
|
|
|
48662
49265
|
*
|
|
48663
49266
|
*/
|
|
48664
49267
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
49268
|
+
/**
|
|
49269
|
+
* Offering group UUID
|
|
49270
|
+
*/
|
|
49271
|
+
offering_group_uuid?: string;
|
|
48665
49272
|
/**
|
|
48666
49273
|
* Organization group UUID
|
|
48667
49274
|
*/
|
|
@@ -48863,6 +49470,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
|
|
|
48863
49470
|
*
|
|
48864
49471
|
*/
|
|
48865
49472
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
49473
|
+
/**
|
|
49474
|
+
* Offering group UUID
|
|
49475
|
+
*/
|
|
49476
|
+
offering_group_uuid?: string;
|
|
48866
49477
|
/**
|
|
48867
49478
|
* Organization group UUID
|
|
48868
49479
|
*/
|
|
@@ -49189,6 +49800,10 @@ export type MarketplaceProviderOfferingsHistoryListData = {
|
|
|
49189
49800
|
*
|
|
49190
49801
|
*/
|
|
49191
49802
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
49803
|
+
/**
|
|
49804
|
+
* Offering group UUID
|
|
49805
|
+
*/
|
|
49806
|
+
offering_group_uuid?: string;
|
|
49192
49807
|
/**
|
|
49193
49808
|
* Organization group UUID
|
|
49194
49809
|
*/
|
|
@@ -49430,6 +50045,10 @@ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
|
|
|
49430
50045
|
*
|
|
49431
50046
|
*/
|
|
49432
50047
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
50048
|
+
/**
|
|
50049
|
+
* Offering group UUID
|
|
50050
|
+
*/
|
|
50051
|
+
offering_group_uuid?: string;
|
|
49433
50052
|
/**
|
|
49434
50053
|
* Organization group UUID
|
|
49435
50054
|
*/
|
|
@@ -49634,6 +50253,10 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
|
|
|
49634
50253
|
*
|
|
49635
50254
|
*/
|
|
49636
50255
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
50256
|
+
/**
|
|
50257
|
+
* Offering group UUID
|
|
50258
|
+
*/
|
|
50259
|
+
offering_group_uuid?: string;
|
|
49637
50260
|
/**
|
|
49638
50261
|
* Organization group UUID
|
|
49639
50262
|
*/
|
|
@@ -49838,6 +50461,10 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
|
|
|
49838
50461
|
*
|
|
49839
50462
|
*/
|
|
49840
50463
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
50464
|
+
/**
|
|
50465
|
+
* Offering group UUID
|
|
50466
|
+
*/
|
|
50467
|
+
offering_group_uuid?: string;
|
|
49841
50468
|
/**
|
|
49842
50469
|
* Organization group UUID
|
|
49843
50470
|
*/
|
|
@@ -50145,6 +50772,20 @@ export type MarketplaceProviderOfferingsSetBackendMetadataResponses = {
|
|
|
50145
50772
|
*/
|
|
50146
50773
|
200: unknown;
|
|
50147
50774
|
};
|
|
50775
|
+
export type MarketplaceProviderOfferingsSetOfferingGroupData = {
|
|
50776
|
+
body: OfferingGroupAssignRequest;
|
|
50777
|
+
path: {
|
|
50778
|
+
uuid: string;
|
|
50779
|
+
};
|
|
50780
|
+
query?: never;
|
|
50781
|
+
url: '/api/marketplace-provider-offerings/{uuid}/set_offering_group/';
|
|
50782
|
+
};
|
|
50783
|
+
export type MarketplaceProviderOfferingsSetOfferingGroupResponses = {
|
|
50784
|
+
/**
|
|
50785
|
+
* No response body
|
|
50786
|
+
*/
|
|
50787
|
+
200: unknown;
|
|
50788
|
+
};
|
|
50148
50789
|
export type MarketplaceProviderOfferingsSetProfileData = {
|
|
50149
50790
|
body?: OfferingProfileBindRequest;
|
|
50150
50791
|
path: {
|
|
@@ -50621,6 +51262,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
|
|
|
50621
51262
|
*
|
|
50622
51263
|
*/
|
|
50623
51264
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
51265
|
+
/**
|
|
51266
|
+
* Offering group UUID
|
|
51267
|
+
*/
|
|
51268
|
+
offering_group_uuid?: string;
|
|
50624
51269
|
/**
|
|
50625
51270
|
* Organization group UUID
|
|
50626
51271
|
*/
|
|
@@ -50797,6 +51442,10 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
|
|
|
50797
51442
|
*
|
|
50798
51443
|
*/
|
|
50799
51444
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
51445
|
+
/**
|
|
51446
|
+
* Offering group UUID
|
|
51447
|
+
*/
|
|
51448
|
+
offering_group_uuid?: string;
|
|
50800
51449
|
/**
|
|
50801
51450
|
* Organization group UUID
|
|
50802
51451
|
*/
|
|
@@ -51588,6 +52237,18 @@ export type MarketplaceProviderResourcesAddUserResponses = {
|
|
|
51588
52237
|
201: UserRoleExpirationTime;
|
|
51589
52238
|
};
|
|
51590
52239
|
export type MarketplaceProviderResourcesAddUserResponse = MarketplaceProviderResourcesAddUserResponses[keyof MarketplaceProviderResourcesAddUserResponses];
|
|
52240
|
+
export type MarketplaceProviderResourcesAdjustDatesData = {
|
|
52241
|
+
body: AdjustResourceDatesRequest;
|
|
52242
|
+
path: {
|
|
52243
|
+
uuid: string;
|
|
52244
|
+
};
|
|
52245
|
+
query?: never;
|
|
52246
|
+
url: '/api/marketplace-provider-resources/{uuid}/adjust_dates/';
|
|
52247
|
+
};
|
|
52248
|
+
export type MarketplaceProviderResourcesAdjustDatesResponses = {
|
|
52249
|
+
200: ResourceResponseStatus;
|
|
52250
|
+
};
|
|
52251
|
+
export type MarketplaceProviderResourcesAdjustDatesResponse = MarketplaceProviderResourcesAdjustDatesResponses[keyof MarketplaceProviderResourcesAdjustDatesResponses];
|
|
51591
52252
|
export type MarketplaceProviderResourcesDeleteUserData = {
|
|
51592
52253
|
body: UserRoleDeleteRequest;
|
|
51593
52254
|
path: {
|
|
@@ -52407,6 +53068,10 @@ export type MarketplacePublicOfferingsListData = {
|
|
|
52407
53068
|
*
|
|
52408
53069
|
*/
|
|
52409
53070
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
53071
|
+
/**
|
|
53072
|
+
* Offering group UUID
|
|
53073
|
+
*/
|
|
53074
|
+
offering_group_uuid?: string;
|
|
52410
53075
|
/**
|
|
52411
53076
|
* Organization group UUID
|
|
52412
53077
|
*/
|
|
@@ -52583,6 +53248,10 @@ export type MarketplacePublicOfferingsCountData = {
|
|
|
52583
53248
|
*
|
|
52584
53249
|
*/
|
|
52585
53250
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
53251
|
+
/**
|
|
53252
|
+
* Offering group UUID
|
|
53253
|
+
*/
|
|
53254
|
+
offering_group_uuid?: string;
|
|
52586
53255
|
/**
|
|
52587
53256
|
* Organization group UUID
|
|
52588
53257
|
*/
|
|
@@ -52961,7 +53630,12 @@ export type MarketplaceResourceProjectsDestroyData = {
|
|
|
52961
53630
|
path: {
|
|
52962
53631
|
uuid: string;
|
|
52963
53632
|
};
|
|
52964
|
-
query?:
|
|
53633
|
+
query?: {
|
|
53634
|
+
/**
|
|
53635
|
+
* Staff-only: when true, hard-delete the resource project instead of soft-deleting it.
|
|
53636
|
+
*/
|
|
53637
|
+
force?: boolean;
|
|
53638
|
+
};
|
|
52965
53639
|
url: '/api/marketplace-resource-projects/{uuid}/';
|
|
52966
53640
|
};
|
|
52967
53641
|
export type MarketplaceResourceProjectsDestroyResponses = {
|
|
@@ -53100,6 +53774,18 @@ export type MarketplaceResourceProjectsListUsersListResponses = {
|
|
|
53100
53774
|
200: Array<UserRoleDetails>;
|
|
53101
53775
|
};
|
|
53102
53776
|
export type MarketplaceResourceProjectsListUsersListResponse = MarketplaceResourceProjectsListUsersListResponses[keyof MarketplaceResourceProjectsListUsersListResponses];
|
|
53777
|
+
export type MarketplaceResourceProjectsRecoverData = {
|
|
53778
|
+
body?: ResourceProjectRecoveryRequest;
|
|
53779
|
+
path: {
|
|
53780
|
+
uuid: string;
|
|
53781
|
+
};
|
|
53782
|
+
query?: never;
|
|
53783
|
+
url: '/api/marketplace-resource-projects/{uuid}/recover/';
|
|
53784
|
+
};
|
|
53785
|
+
export type MarketplaceResourceProjectsRecoverResponses = {
|
|
53786
|
+
200: ResourceProject;
|
|
53787
|
+
};
|
|
53788
|
+
export type MarketplaceResourceProjectsRecoverResponse = MarketplaceResourceProjectsRecoverResponses[keyof MarketplaceResourceProjectsRecoverResponses];
|
|
53103
53789
|
export type MarketplaceResourceProjectsUpdateUserData = {
|
|
53104
53790
|
body: UserRoleUpdateRequest;
|
|
53105
53791
|
path: {
|
|
@@ -53561,6 +54247,18 @@ export type MarketplaceResourcesAddUserResponses = {
|
|
|
53561
54247
|
201: UserRoleExpirationTime;
|
|
53562
54248
|
};
|
|
53563
54249
|
export type MarketplaceResourcesAddUserResponse = MarketplaceResourcesAddUserResponses[keyof MarketplaceResourcesAddUserResponses];
|
|
54250
|
+
export type MarketplaceResourcesAdjustDatesData = {
|
|
54251
|
+
body: AdjustResourceDatesRequest;
|
|
54252
|
+
path: {
|
|
54253
|
+
uuid: string;
|
|
54254
|
+
};
|
|
54255
|
+
query?: never;
|
|
54256
|
+
url: '/api/marketplace-resources/{uuid}/adjust_dates/';
|
|
54257
|
+
};
|
|
54258
|
+
export type MarketplaceResourcesAdjustDatesResponses = {
|
|
54259
|
+
200: ResourceResponseStatus;
|
|
54260
|
+
};
|
|
54261
|
+
export type MarketplaceResourcesAdjustDatesResponse = MarketplaceResourcesAdjustDatesResponses[keyof MarketplaceResourcesAdjustDatesResponses];
|
|
53564
54262
|
export type MarketplaceResourcesDeleteUserData = {
|
|
53565
54263
|
body: UserRoleDeleteRequest;
|
|
53566
54264
|
path: {
|
|
@@ -55280,13 +55978,13 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
|
|
|
55280
55978
|
};
|
|
55281
55979
|
query: {
|
|
55282
55980
|
/**
|
|
55283
|
-
*
|
|
55981
|
+
* Affiliation name
|
|
55284
55982
|
*/
|
|
55285
|
-
|
|
55983
|
+
affiliation_name?: string;
|
|
55286
55984
|
/**
|
|
55287
|
-
*
|
|
55985
|
+
* Affiliation UUID
|
|
55288
55986
|
*/
|
|
55289
|
-
|
|
55987
|
+
affiliation_uuid?: Array<string>;
|
|
55290
55988
|
backend_id?: string;
|
|
55291
55989
|
/**
|
|
55292
55990
|
* Return a list of projects where current user is admin.
|
|
@@ -55330,9 +56028,9 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
|
|
|
55330
56028
|
description?: string;
|
|
55331
56029
|
field?: Array<MarketplaceProviderCustomerProjectFieldEnum>;
|
|
55332
56030
|
/**
|
|
55333
|
-
* Filter projects that have
|
|
56031
|
+
* Filter projects that have an affiliation.
|
|
55334
56032
|
*/
|
|
55335
|
-
|
|
56033
|
+
has_affiliation?: boolean;
|
|
55336
56034
|
/**
|
|
55337
56035
|
* Is removed
|
|
55338
56036
|
*/
|
|
@@ -55614,6 +56312,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
|
|
|
55614
56312
|
*
|
|
55615
56313
|
*/
|
|
55616
56314
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
56315
|
+
/**
|
|
56316
|
+
* Offering group UUID
|
|
56317
|
+
*/
|
|
56318
|
+
offering_group_uuid?: string;
|
|
55617
56319
|
/**
|
|
55618
56320
|
* Organization group UUID
|
|
55619
56321
|
*/
|
|
@@ -55834,13 +56536,13 @@ export type MarketplaceServiceProvidersProjectsListData = {
|
|
|
55834
56536
|
};
|
|
55835
56537
|
query?: {
|
|
55836
56538
|
/**
|
|
55837
|
-
*
|
|
56539
|
+
* Affiliation name
|
|
55838
56540
|
*/
|
|
55839
|
-
|
|
56541
|
+
affiliation_name?: string;
|
|
55840
56542
|
/**
|
|
55841
|
-
*
|
|
56543
|
+
* Affiliation UUID
|
|
55842
56544
|
*/
|
|
55843
|
-
|
|
56545
|
+
affiliation_uuid?: Array<string>;
|
|
55844
56546
|
backend_id?: string;
|
|
55845
56547
|
/**
|
|
55846
56548
|
* Return a list of projects where current user is admin.
|
|
@@ -55884,9 +56586,9 @@ export type MarketplaceServiceProvidersProjectsListData = {
|
|
|
55884
56586
|
description?: string;
|
|
55885
56587
|
field?: Array<ProjectFieldEnum>;
|
|
55886
56588
|
/**
|
|
55887
|
-
* Filter projects that have
|
|
56589
|
+
* Filter projects that have an affiliation.
|
|
55888
56590
|
*/
|
|
55889
|
-
|
|
56591
|
+
has_affiliation?: boolean;
|
|
55890
56592
|
/**
|
|
55891
56593
|
* Is removed
|
|
55892
56594
|
*/
|
|
@@ -56584,6 +57286,80 @@ export type MarketplaceSiteAgentIdentitiesCleanupOrphanedResponses = {
|
|
|
56584
57286
|
200: CleanupResponse;
|
|
56585
57287
|
};
|
|
56586
57288
|
export type MarketplaceSiteAgentIdentitiesCleanupOrphanedResponse = MarketplaceSiteAgentIdentitiesCleanupOrphanedResponses[keyof MarketplaceSiteAgentIdentitiesCleanupOrphanedResponses];
|
|
57289
|
+
export type MarketplaceSiteAgentLogsListData = {
|
|
57290
|
+
body?: never;
|
|
57291
|
+
path?: never;
|
|
57292
|
+
query?: {
|
|
57293
|
+
agent_identity_uuid?: string;
|
|
57294
|
+
level?: string;
|
|
57295
|
+
offering_uuid?: string;
|
|
57296
|
+
/**
|
|
57297
|
+
* A page number within the paginated result set.
|
|
57298
|
+
*/
|
|
57299
|
+
page?: number;
|
|
57300
|
+
/**
|
|
57301
|
+
* Number of results to return per page.
|
|
57302
|
+
*/
|
|
57303
|
+
page_size?: number;
|
|
57304
|
+
timestamp_from?: number;
|
|
57305
|
+
timestamp_to?: number;
|
|
57306
|
+
};
|
|
57307
|
+
url: '/api/marketplace-site-agent-logs/';
|
|
57308
|
+
};
|
|
57309
|
+
export type MarketplaceSiteAgentLogsListResponses = {
|
|
57310
|
+
200: Array<SiteAgentLog>;
|
|
57311
|
+
};
|
|
57312
|
+
export type MarketplaceSiteAgentLogsListResponse = MarketplaceSiteAgentLogsListResponses[keyof MarketplaceSiteAgentLogsListResponses];
|
|
57313
|
+
export type MarketplaceSiteAgentLogsCountData = {
|
|
57314
|
+
body?: never;
|
|
57315
|
+
path?: never;
|
|
57316
|
+
query?: {
|
|
57317
|
+
agent_identity_uuid?: string;
|
|
57318
|
+
level?: string;
|
|
57319
|
+
offering_uuid?: string;
|
|
57320
|
+
/**
|
|
57321
|
+
* A page number within the paginated result set.
|
|
57322
|
+
*/
|
|
57323
|
+
page?: number;
|
|
57324
|
+
/**
|
|
57325
|
+
* Number of results to return per page.
|
|
57326
|
+
*/
|
|
57327
|
+
page_size?: number;
|
|
57328
|
+
timestamp_from?: number;
|
|
57329
|
+
timestamp_to?: number;
|
|
57330
|
+
};
|
|
57331
|
+
url: '/api/marketplace-site-agent-logs/';
|
|
57332
|
+
};
|
|
57333
|
+
export type MarketplaceSiteAgentLogsCountResponses = {
|
|
57334
|
+
/**
|
|
57335
|
+
* No response body
|
|
57336
|
+
*/
|
|
57337
|
+
200: unknown;
|
|
57338
|
+
};
|
|
57339
|
+
export type MarketplaceSiteAgentLogsCreateData = {
|
|
57340
|
+
body: Array<SiteAgentLogCreateRequest>;
|
|
57341
|
+
path?: never;
|
|
57342
|
+
query?: {
|
|
57343
|
+
agent_identity_uuid?: string;
|
|
57344
|
+
level?: string;
|
|
57345
|
+
offering_uuid?: string;
|
|
57346
|
+
/**
|
|
57347
|
+
* A page number within the paginated result set.
|
|
57348
|
+
*/
|
|
57349
|
+
page?: number;
|
|
57350
|
+
/**
|
|
57351
|
+
* Number of results to return per page.
|
|
57352
|
+
*/
|
|
57353
|
+
page_size?: number;
|
|
57354
|
+
timestamp_from?: number;
|
|
57355
|
+
timestamp_to?: number;
|
|
57356
|
+
};
|
|
57357
|
+
url: '/api/marketplace-site-agent-logs/';
|
|
57358
|
+
};
|
|
57359
|
+
export type MarketplaceSiteAgentLogsCreateResponses = {
|
|
57360
|
+
201: Array<SiteAgentLog>;
|
|
57361
|
+
};
|
|
57362
|
+
export type MarketplaceSiteAgentLogsCreateResponse = MarketplaceSiteAgentLogsCreateResponses[keyof MarketplaceSiteAgentLogsCreateResponses];
|
|
56587
57363
|
export type MarketplaceSiteAgentProcessorsListData = {
|
|
56588
57364
|
body?: never;
|
|
56589
57365
|
path?: never;
|
|
@@ -62876,13 +63652,13 @@ export type OpenportalUnmanagedProjectsListData = {
|
|
|
62876
63652
|
*/
|
|
62877
63653
|
accounting_is_running?: boolean;
|
|
62878
63654
|
/**
|
|
62879
|
-
*
|
|
63655
|
+
* Affiliation name
|
|
62880
63656
|
*/
|
|
62881
|
-
|
|
63657
|
+
affiliation_name?: string;
|
|
62882
63658
|
/**
|
|
62883
|
-
*
|
|
63659
|
+
* Affiliation UUID
|
|
62884
63660
|
*/
|
|
62885
|
-
|
|
63661
|
+
affiliation_uuid?: Array<string>;
|
|
62886
63662
|
backend_id?: string;
|
|
62887
63663
|
/**
|
|
62888
63664
|
* Return a list of projects where current user is admin.
|
|
@@ -62926,9 +63702,9 @@ export type OpenportalUnmanagedProjectsListData = {
|
|
|
62926
63702
|
description?: string;
|
|
62927
63703
|
field?: Array<ProjectFieldEnum>;
|
|
62928
63704
|
/**
|
|
62929
|
-
* Filter projects that have
|
|
63705
|
+
* Filter projects that have an affiliation.
|
|
62930
63706
|
*/
|
|
62931
|
-
|
|
63707
|
+
has_affiliation?: boolean;
|
|
62932
63708
|
/**
|
|
62933
63709
|
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
62934
63710
|
*/
|
|
@@ -63007,13 +63783,13 @@ export type OpenportalUnmanagedProjectsCountData = {
|
|
|
63007
63783
|
*/
|
|
63008
63784
|
accounting_is_running?: boolean;
|
|
63009
63785
|
/**
|
|
63010
|
-
*
|
|
63786
|
+
* Affiliation name
|
|
63011
63787
|
*/
|
|
63012
|
-
|
|
63788
|
+
affiliation_name?: string;
|
|
63013
63789
|
/**
|
|
63014
|
-
*
|
|
63790
|
+
* Affiliation UUID
|
|
63015
63791
|
*/
|
|
63016
|
-
|
|
63792
|
+
affiliation_uuid?: Array<string>;
|
|
63017
63793
|
backend_id?: string;
|
|
63018
63794
|
/**
|
|
63019
63795
|
* Return a list of projects where current user is admin.
|
|
@@ -63056,9 +63832,9 @@ export type OpenportalUnmanagedProjectsCountData = {
|
|
|
63056
63832
|
*/
|
|
63057
63833
|
description?: string;
|
|
63058
63834
|
/**
|
|
63059
|
-
* Filter projects that have
|
|
63835
|
+
* Filter projects that have an affiliation.
|
|
63060
63836
|
*/
|
|
63061
|
-
|
|
63837
|
+
has_affiliation?: boolean;
|
|
63062
63838
|
/**
|
|
63063
63839
|
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
63064
63840
|
*/
|
|
@@ -63398,15 +64174,15 @@ export type OpenportalUnmanagedProjectsSubmitAnswersResponses = {
|
|
|
63398
64174
|
200: AnswerSubmitResponse;
|
|
63399
64175
|
};
|
|
63400
64176
|
export type OpenportalUnmanagedProjectsSubmitAnswersResponse = OpenportalUnmanagedProjectsSubmitAnswersResponses[keyof OpenportalUnmanagedProjectsSubmitAnswersResponses];
|
|
63401
|
-
export type
|
|
63402
|
-
body?:
|
|
64177
|
+
export type OpenportalUnmanagedProjectsUpdateAffiliationData = {
|
|
64178
|
+
body?: ProjectAffiliationUpdateRequest;
|
|
63403
64179
|
path: {
|
|
63404
64180
|
uuid: string;
|
|
63405
64181
|
};
|
|
63406
64182
|
query?: never;
|
|
63407
|
-
url: '/api/openportal-unmanaged-projects/{uuid}/
|
|
64183
|
+
url: '/api/openportal-unmanaged-projects/{uuid}/update_affiliation/';
|
|
63408
64184
|
};
|
|
63409
|
-
export type
|
|
64185
|
+
export type OpenportalUnmanagedProjectsUpdateAffiliationResponses = {
|
|
63410
64186
|
/**
|
|
63411
64187
|
* No response body
|
|
63412
64188
|
*/
|
|
@@ -71326,6 +72102,46 @@ export type PersonalAccessTokensRotateResponses = {
|
|
|
71326
72102
|
201: PersonalAccessTokenCreated;
|
|
71327
72103
|
};
|
|
71328
72104
|
export type PersonalAccessTokensRotateResponse = PersonalAccessTokensRotateResponses[keyof PersonalAccessTokensRotateResponses];
|
|
72105
|
+
export type PersonalAccessTokensAvailableBindingTargetsListData = {
|
|
72106
|
+
body?: never;
|
|
72107
|
+
path?: never;
|
|
72108
|
+
query?: {
|
|
72109
|
+
/**
|
|
72110
|
+
* A page number within the paginated result set.
|
|
72111
|
+
*/
|
|
72112
|
+
page?: number;
|
|
72113
|
+
/**
|
|
72114
|
+
* Number of results to return per page.
|
|
72115
|
+
*/
|
|
72116
|
+
page_size?: number;
|
|
72117
|
+
};
|
|
72118
|
+
url: '/api/personal-access-tokens/available_binding_targets/';
|
|
72119
|
+
};
|
|
72120
|
+
export type PersonalAccessTokensAvailableBindingTargetsListResponses = {
|
|
72121
|
+
200: Array<AvailableBindingTarget>;
|
|
72122
|
+
};
|
|
72123
|
+
export type PersonalAccessTokensAvailableBindingTargetsListResponse = PersonalAccessTokensAvailableBindingTargetsListResponses[keyof PersonalAccessTokensAvailableBindingTargetsListResponses];
|
|
72124
|
+
export type PersonalAccessTokensAvailableBindingTargetsCountData = {
|
|
72125
|
+
body?: never;
|
|
72126
|
+
path?: never;
|
|
72127
|
+
query?: {
|
|
72128
|
+
/**
|
|
72129
|
+
* A page number within the paginated result set.
|
|
72130
|
+
*/
|
|
72131
|
+
page?: number;
|
|
72132
|
+
/**
|
|
72133
|
+
* Number of results to return per page.
|
|
72134
|
+
*/
|
|
72135
|
+
page_size?: number;
|
|
72136
|
+
};
|
|
72137
|
+
url: '/api/personal-access-tokens/available_binding_targets/';
|
|
72138
|
+
};
|
|
72139
|
+
export type PersonalAccessTokensAvailableBindingTargetsCountResponses = {
|
|
72140
|
+
/**
|
|
72141
|
+
* No response body
|
|
72142
|
+
*/
|
|
72143
|
+
200: unknown;
|
|
72144
|
+
};
|
|
71329
72145
|
export type PersonalAccessTokensAvailableScopesListData = {
|
|
71330
72146
|
body?: never;
|
|
71331
72147
|
path?: never;
|
|
@@ -71850,13 +72666,13 @@ export type ProjectsListData = {
|
|
|
71850
72666
|
*/
|
|
71851
72667
|
accounting_is_running?: boolean;
|
|
71852
72668
|
/**
|
|
71853
|
-
*
|
|
72669
|
+
* Affiliation name
|
|
71854
72670
|
*/
|
|
71855
|
-
|
|
72671
|
+
affiliation_name?: string;
|
|
71856
72672
|
/**
|
|
71857
|
-
*
|
|
72673
|
+
* Affiliation UUID
|
|
71858
72674
|
*/
|
|
71859
|
-
|
|
72675
|
+
affiliation_uuid?: Array<string>;
|
|
71860
72676
|
backend_id?: string;
|
|
71861
72677
|
/**
|
|
71862
72678
|
* Return a list of projects where current user is admin.
|
|
@@ -71900,9 +72716,9 @@ export type ProjectsListData = {
|
|
|
71900
72716
|
description?: string;
|
|
71901
72717
|
field?: Array<ProjectFieldEnum>;
|
|
71902
72718
|
/**
|
|
71903
|
-
* Filter projects that have
|
|
72719
|
+
* Filter projects that have an affiliation.
|
|
71904
72720
|
*/
|
|
71905
|
-
|
|
72721
|
+
has_affiliation?: boolean;
|
|
71906
72722
|
/**
|
|
71907
72723
|
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
71908
72724
|
*/
|
|
@@ -71981,13 +72797,13 @@ export type ProjectsCountData = {
|
|
|
71981
72797
|
*/
|
|
71982
72798
|
accounting_is_running?: boolean;
|
|
71983
72799
|
/**
|
|
71984
|
-
*
|
|
72800
|
+
* Affiliation name
|
|
71985
72801
|
*/
|
|
71986
|
-
|
|
72802
|
+
affiliation_name?: string;
|
|
71987
72803
|
/**
|
|
71988
|
-
*
|
|
72804
|
+
* Affiliation UUID
|
|
71989
72805
|
*/
|
|
71990
|
-
|
|
72806
|
+
affiliation_uuid?: Array<string>;
|
|
71991
72807
|
backend_id?: string;
|
|
71992
72808
|
/**
|
|
71993
72809
|
* Return a list of projects where current user is admin.
|
|
@@ -72030,9 +72846,9 @@ export type ProjectsCountData = {
|
|
|
72030
72846
|
*/
|
|
72031
72847
|
description?: string;
|
|
72032
72848
|
/**
|
|
72033
|
-
* Filter projects that have
|
|
72849
|
+
* Filter projects that have an affiliation.
|
|
72034
72850
|
*/
|
|
72035
|
-
|
|
72851
|
+
has_affiliation?: boolean;
|
|
72036
72852
|
/**
|
|
72037
72853
|
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
72038
72854
|
*/
|
|
@@ -72462,15 +73278,15 @@ export type ProjectsSyncUserRolesResponses = {
|
|
|
72462
73278
|
*/
|
|
72463
73279
|
200: unknown;
|
|
72464
73280
|
};
|
|
72465
|
-
export type
|
|
72466
|
-
body?:
|
|
73281
|
+
export type ProjectsUpdateAffiliationData = {
|
|
73282
|
+
body?: ProjectAffiliationUpdateRequest;
|
|
72467
73283
|
path: {
|
|
72468
73284
|
uuid: string;
|
|
72469
73285
|
};
|
|
72470
73286
|
query?: never;
|
|
72471
|
-
url: '/api/projects/{uuid}/
|
|
73287
|
+
url: '/api/projects/{uuid}/update_affiliation/';
|
|
72472
73288
|
};
|
|
72473
|
-
export type
|
|
73289
|
+
export type ProjectsUpdateAffiliationResponses = {
|
|
72474
73290
|
/**
|
|
72475
73291
|
* No response body
|
|
72476
73292
|
*/
|
|
@@ -72951,6 +73767,18 @@ export type ProposalProposalsChecklistReviewRetrieveResponses = {
|
|
|
72951
73767
|
200: ChecklistReviewerResponse;
|
|
72952
73768
|
};
|
|
72953
73769
|
export type ProposalProposalsChecklistReviewRetrieveResponse = ProposalProposalsChecklistReviewRetrieveResponses[keyof ProposalProposalsChecklistReviewRetrieveResponses];
|
|
73770
|
+
export type ProposalProposalsCompleteWorkflowStepData = {
|
|
73771
|
+
body: CompleteWorkflowStepRequest;
|
|
73772
|
+
path: {
|
|
73773
|
+
uuid: string;
|
|
73774
|
+
};
|
|
73775
|
+
query?: never;
|
|
73776
|
+
url: '/api/proposal-proposals/{uuid}/complete_workflow_step/';
|
|
73777
|
+
};
|
|
73778
|
+
export type ProposalProposalsCompleteWorkflowStepResponses = {
|
|
73779
|
+
200: CompleteWorkflowStepResponse;
|
|
73780
|
+
};
|
|
73781
|
+
export type ProposalProposalsCompleteWorkflowStepResponse = ProposalProposalsCompleteWorkflowStepResponses[keyof ProposalProposalsCompleteWorkflowStepResponses];
|
|
72954
73782
|
export type ProposalProposalsCompletionReviewStatusRetrieveData = {
|
|
72955
73783
|
body?: never;
|
|
72956
73784
|
path: {
|
|
@@ -73098,6 +73926,18 @@ export type ProposalProposalsRejectResponses = {
|
|
|
73098
73926
|
*/
|
|
73099
73927
|
200: unknown;
|
|
73100
73928
|
};
|
|
73929
|
+
export type ProposalProposalsRejectWorkflowStepData = {
|
|
73930
|
+
body: RejectWorkflowStepRequest;
|
|
73931
|
+
path: {
|
|
73932
|
+
uuid: string;
|
|
73933
|
+
};
|
|
73934
|
+
query?: never;
|
|
73935
|
+
url: '/api/proposal-proposals/{uuid}/reject_workflow_step/';
|
|
73936
|
+
};
|
|
73937
|
+
export type ProposalProposalsRejectWorkflowStepResponses = {
|
|
73938
|
+
200: RejectWorkflowStepResponse;
|
|
73939
|
+
};
|
|
73940
|
+
export type ProposalProposalsRejectWorkflowStepResponse = ProposalProposalsRejectWorkflowStepResponses[keyof ProposalProposalsRejectWorkflowStepResponses];
|
|
73101
73941
|
export type ProposalProposalsResourcesListData = {
|
|
73102
73942
|
body?: never;
|
|
73103
73943
|
path: {
|
|
@@ -73248,6 +74088,45 @@ export type ProposalProposalsUpdateUserResponses = {
|
|
|
73248
74088
|
200: UserRoleExpirationTime;
|
|
73249
74089
|
};
|
|
73250
74090
|
export type ProposalProposalsUpdateUserResponse = ProposalProposalsUpdateUserResponses[keyof ProposalProposalsUpdateUserResponses];
|
|
74091
|
+
export type ProposalProposalsWorkflowStatesListData = {
|
|
74092
|
+
body?: never;
|
|
74093
|
+
path: {
|
|
74094
|
+
uuid: string;
|
|
74095
|
+
};
|
|
74096
|
+
query?: {
|
|
74097
|
+
call_uuid?: string;
|
|
74098
|
+
created_by_uuid?: string;
|
|
74099
|
+
my_proposals?: boolean;
|
|
74100
|
+
name?: string;
|
|
74101
|
+
/**
|
|
74102
|
+
* Ordering
|
|
74103
|
+
*
|
|
74104
|
+
*
|
|
74105
|
+
*/
|
|
74106
|
+
o?: Array<ProposalOEnum>;
|
|
74107
|
+
organization_uuid?: string;
|
|
74108
|
+
/**
|
|
74109
|
+
* A page number within the paginated result set.
|
|
74110
|
+
*/
|
|
74111
|
+
page?: number;
|
|
74112
|
+
/**
|
|
74113
|
+
* Number of results to return per page.
|
|
74114
|
+
*/
|
|
74115
|
+
page_size?: number;
|
|
74116
|
+
round?: string;
|
|
74117
|
+
round_uuid?: string;
|
|
74118
|
+
/**
|
|
74119
|
+
* Slug
|
|
74120
|
+
*/
|
|
74121
|
+
slug?: string;
|
|
74122
|
+
state?: Array<ProposalStates>;
|
|
74123
|
+
};
|
|
74124
|
+
url: '/api/proposal-proposals/{uuid}/workflow_states/';
|
|
74125
|
+
};
|
|
74126
|
+
export type ProposalProposalsWorkflowStatesListResponses = {
|
|
74127
|
+
200: Array<ProposalWorkflowStepInstance>;
|
|
74128
|
+
};
|
|
74129
|
+
export type ProposalProposalsWorkflowStatesListResponse = ProposalProposalsWorkflowStatesListResponses[keyof ProposalProposalsWorkflowStatesListResponses];
|
|
73251
74130
|
export type ProposalProposalsChecklistTemplateRetrieveData = {
|
|
73252
74131
|
body?: never;
|
|
73253
74132
|
path?: never;
|
|
@@ -74287,6 +75166,94 @@ export type ProposalProtectedCallsUpdateUserResponses = {
|
|
|
74287
75166
|
200: UserRoleExpirationTime;
|
|
74288
75167
|
};
|
|
74289
75168
|
export type ProposalProtectedCallsUpdateUserResponse = ProposalProtectedCallsUpdateUserResponses[keyof ProposalProtectedCallsUpdateUserResponses];
|
|
75169
|
+
export type ProposalProtectedCallsWorkflowStepsListData = {
|
|
75170
|
+
body?: never;
|
|
75171
|
+
path: {
|
|
75172
|
+
uuid: string;
|
|
75173
|
+
};
|
|
75174
|
+
query?: {
|
|
75175
|
+
/**
|
|
75176
|
+
* A page number within the paginated result set.
|
|
75177
|
+
*/
|
|
75178
|
+
page?: number;
|
|
75179
|
+
/**
|
|
75180
|
+
* Number of results to return per page.
|
|
75181
|
+
*/
|
|
75182
|
+
page_size?: number;
|
|
75183
|
+
};
|
|
75184
|
+
url: '/api/proposal-protected-calls/{uuid}/workflow_steps/';
|
|
75185
|
+
};
|
|
75186
|
+
export type ProposalProtectedCallsWorkflowStepsListResponses = {
|
|
75187
|
+
200: Array<CallWorkflowStep>;
|
|
75188
|
+
};
|
|
75189
|
+
export type ProposalProtectedCallsWorkflowStepsListResponse = ProposalProtectedCallsWorkflowStepsListResponses[keyof ProposalProtectedCallsWorkflowStepsListResponses];
|
|
75190
|
+
export type ProposalProtectedCallsWorkflowStepsSetData = {
|
|
75191
|
+
body: CallWorkflowStepRequest;
|
|
75192
|
+
path: {
|
|
75193
|
+
uuid: string;
|
|
75194
|
+
};
|
|
75195
|
+
query?: never;
|
|
75196
|
+
url: '/api/proposal-protected-calls/{uuid}/workflow_steps/';
|
|
75197
|
+
};
|
|
75198
|
+
export type ProposalProtectedCallsWorkflowStepsSetResponses = {
|
|
75199
|
+
200: CallWorkflowStep;
|
|
75200
|
+
};
|
|
75201
|
+
export type ProposalProtectedCallsWorkflowStepsSetResponse = ProposalProtectedCallsWorkflowStepsSetResponses[keyof ProposalProtectedCallsWorkflowStepsSetResponses];
|
|
75202
|
+
export type ProposalProtectedCallsWorkflowStepsDestroyData = {
|
|
75203
|
+
body?: never;
|
|
75204
|
+
path: {
|
|
75205
|
+
obj_uuid: string;
|
|
75206
|
+
uuid: string;
|
|
75207
|
+
};
|
|
75208
|
+
query?: never;
|
|
75209
|
+
url: '/api/proposal-protected-calls/{uuid}/workflow_steps/{obj_uuid}/';
|
|
75210
|
+
};
|
|
75211
|
+
export type ProposalProtectedCallsWorkflowStepsDestroyResponses = {
|
|
75212
|
+
/**
|
|
75213
|
+
* No response body
|
|
75214
|
+
*/
|
|
75215
|
+
204: void;
|
|
75216
|
+
};
|
|
75217
|
+
export type ProposalProtectedCallsWorkflowStepsDestroyResponse = ProposalProtectedCallsWorkflowStepsDestroyResponses[keyof ProposalProtectedCallsWorkflowStepsDestroyResponses];
|
|
75218
|
+
export type ProposalProtectedCallsWorkflowStepsRetrieveData = {
|
|
75219
|
+
body?: never;
|
|
75220
|
+
path: {
|
|
75221
|
+
obj_uuid: string;
|
|
75222
|
+
uuid: string;
|
|
75223
|
+
};
|
|
75224
|
+
query?: never;
|
|
75225
|
+
url: '/api/proposal-protected-calls/{uuid}/workflow_steps/{obj_uuid}/';
|
|
75226
|
+
};
|
|
75227
|
+
export type ProposalProtectedCallsWorkflowStepsRetrieveResponses = {
|
|
75228
|
+
200: CallWorkflowStep;
|
|
75229
|
+
};
|
|
75230
|
+
export type ProposalProtectedCallsWorkflowStepsRetrieveResponse = ProposalProtectedCallsWorkflowStepsRetrieveResponses[keyof ProposalProtectedCallsWorkflowStepsRetrieveResponses];
|
|
75231
|
+
export type ProposalProtectedCallsWorkflowStepsPartialUpdateData = {
|
|
75232
|
+
body?: PatchedCallWorkflowStepRequest;
|
|
75233
|
+
path: {
|
|
75234
|
+
obj_uuid: string;
|
|
75235
|
+
uuid: string;
|
|
75236
|
+
};
|
|
75237
|
+
query?: never;
|
|
75238
|
+
url: '/api/proposal-protected-calls/{uuid}/workflow_steps/{obj_uuid}/';
|
|
75239
|
+
};
|
|
75240
|
+
export type ProposalProtectedCallsWorkflowStepsPartialUpdateResponses = {
|
|
75241
|
+
200: CallWorkflowStep;
|
|
75242
|
+
};
|
|
75243
|
+
export type ProposalProtectedCallsWorkflowStepsPartialUpdateResponse = ProposalProtectedCallsWorkflowStepsPartialUpdateResponses[keyof ProposalProtectedCallsWorkflowStepsPartialUpdateResponses];
|
|
75244
|
+
export type ProposalProtectedCallsWorkflowStepsUpdateData = {
|
|
75245
|
+
body: CallWorkflowStepRequest;
|
|
75246
|
+
path: {
|
|
75247
|
+
obj_uuid: string;
|
|
75248
|
+
uuid: string;
|
|
75249
|
+
};
|
|
75250
|
+
query?: never;
|
|
75251
|
+
url: '/api/proposal-protected-calls/{uuid}/workflow_steps/{obj_uuid}/';
|
|
75252
|
+
};
|
|
75253
|
+
export type ProposalProtectedCallsWorkflowStepsUpdateResponses = {
|
|
75254
|
+
200: CallWorkflowStep;
|
|
75255
|
+
};
|
|
75256
|
+
export type ProposalProtectedCallsWorkflowStepsUpdateResponse = ProposalProtectedCallsWorkflowStepsUpdateResponses[keyof ProposalProtectedCallsWorkflowStepsUpdateResponses];
|
|
74290
75257
|
export type ProposalProtectedCallsAvailableComplianceChecklistsListData = {
|
|
74291
75258
|
body?: never;
|
|
74292
75259
|
path?: never;
|
|
@@ -83712,6 +84679,18 @@ export type UsersPullRemoteUserResponses = {
|
|
|
83712
84679
|
*/
|
|
83713
84680
|
200: unknown;
|
|
83714
84681
|
};
|
|
84682
|
+
export type UsersPullScimAttributesData = {
|
|
84683
|
+
body?: never;
|
|
84684
|
+
path: {
|
|
84685
|
+
uuid: string;
|
|
84686
|
+
};
|
|
84687
|
+
query?: never;
|
|
84688
|
+
url: '/api/users/{uuid}/pull_scim_attributes/';
|
|
84689
|
+
};
|
|
84690
|
+
export type UsersPullScimAttributesResponses = {
|
|
84691
|
+
200: ScimPullAttributesResponse;
|
|
84692
|
+
};
|
|
84693
|
+
export type UsersPullScimAttributesResponse = UsersPullScimAttributesResponses[keyof UsersPullScimAttributesResponses];
|
|
83715
84694
|
export type UsersRefreshTokenData = {
|
|
83716
84695
|
body?: never;
|
|
83717
84696
|
path: {
|