waldur-js-client 8.0.9-dev.1 → 8.0.9-dev.11
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 +92 -2
- package/dist/sdk.gen.js +660 -1
- package/dist/types.gen.d.ts +959 -9
- 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;
|
|
@@ -4756,6 +4912,12 @@ export type ConstanceSettings = {
|
|
|
4756
4912
|
SCIM_API_URL?: string;
|
|
4757
4913
|
SCIM_API_KEY?: string;
|
|
4758
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;
|
|
4759
4921
|
KEYCLOAK_ICON?: string | null;
|
|
4760
4922
|
COUNTRIES?: Array<string>;
|
|
4761
4923
|
OIDC_AUTH_URL?: string;
|
|
@@ -4860,6 +5022,7 @@ export type ConstanceSettings = {
|
|
|
4860
5022
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
4861
5023
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
4862
5024
|
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
5025
|
+
SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
|
|
4863
5026
|
PAT_ENABLED?: boolean;
|
|
4864
5027
|
PAT_MAX_LIFETIME_DAYS?: number;
|
|
4865
5028
|
PAT_MAX_TOKENS_PER_USER?: number;
|
|
@@ -5025,6 +5188,12 @@ export type ConstanceSettingsRequest = {
|
|
|
5025
5188
|
SCIM_API_URL?: string;
|
|
5026
5189
|
SCIM_API_KEY?: string;
|
|
5027
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;
|
|
5028
5197
|
KEYCLOAK_ICON?: (Blob | File) | null;
|
|
5029
5198
|
COUNTRIES?: Array<string>;
|
|
5030
5199
|
OIDC_AUTH_URL?: string;
|
|
@@ -5129,6 +5298,7 @@ export type ConstanceSettingsRequest = {
|
|
|
5129
5298
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
5130
5299
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
5131
5300
|
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
5301
|
+
SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
|
|
5132
5302
|
PAT_ENABLED?: boolean;
|
|
5133
5303
|
PAT_MAX_LIFETIME_DAYS?: number;
|
|
5134
5304
|
PAT_MAX_TOKENS_PER_USER?: number;
|
|
@@ -9049,6 +9219,7 @@ export type KeywordSearchModeEnum = 'expertise_only' | 'full_text';
|
|
|
9049
9219
|
export type KindEnum = 'default' | 'course' | 'public';
|
|
9050
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';
|
|
9051
9221
|
export type LbAlgorithmEnum = 'ROUND_ROBIN' | 'LEAST_CONNECTIONS' | 'SOURCE_IP' | 'SOURCE_IP_PORT';
|
|
9222
|
+
export type LevelEnum = 'DEBUG' | 'INFO' | 'WARNING' | 'ERROR' | 'CRITICAL';
|
|
9052
9223
|
export type LexisLink = {
|
|
9053
9224
|
readonly url: string;
|
|
9054
9225
|
readonly uuid: string;
|
|
@@ -9752,6 +9923,10 @@ export type MergedPluginOptions = {
|
|
|
9752
9923
|
* Enable sub-project management within resources.
|
|
9753
9924
|
*/
|
|
9754
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;
|
|
9755
9930
|
/**
|
|
9756
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).
|
|
9757
9932
|
*/
|
|
@@ -10050,6 +10225,10 @@ export type MergedPluginOptionsRequest = {
|
|
|
10050
10225
|
* Enable sub-project management within resources.
|
|
10051
10226
|
*/
|
|
10052
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;
|
|
10053
10232
|
/**
|
|
10054
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).
|
|
10055
10234
|
*/
|
|
@@ -11686,6 +11865,9 @@ export type Offering = {
|
|
|
11686
11865
|
compliance_checklist?: string | null;
|
|
11687
11866
|
readonly profile_uuid?: string | null;
|
|
11688
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;
|
|
11689
11871
|
readonly user_has_consent?: boolean;
|
|
11690
11872
|
readonly is_accessible?: boolean;
|
|
11691
11873
|
googlecalendar?: GoogleCalendar;
|
|
@@ -11915,6 +12097,7 @@ export type OfferingCreateRequest = {
|
|
|
11915
12097
|
image?: (Blob | File) | null;
|
|
11916
12098
|
backend_metadata?: unknown;
|
|
11917
12099
|
compliance_checklist?: string | null;
|
|
12100
|
+
offering_group?: string | null;
|
|
11918
12101
|
limits?: {
|
|
11919
12102
|
[key: string]: OfferingComponentLimitRequest;
|
|
11920
12103
|
};
|
|
@@ -12074,6 +12257,29 @@ export type OfferingFileRequest = {
|
|
|
12074
12257
|
offering: string;
|
|
12075
12258
|
file: Blob | File;
|
|
12076
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
|
+
};
|
|
12077
12283
|
export type OfferingGroups = {
|
|
12078
12284
|
readonly customer_name: string;
|
|
12079
12285
|
readonly customer_uuid: string;
|
|
@@ -12654,6 +12860,10 @@ export type OfferingThumbnailRequest = {
|
|
|
12654
12860
|
thumbnail: Blob | File;
|
|
12655
12861
|
};
|
|
12656
12862
|
export type OfferingTypeEnum = 'Support.OfferingTemplate' | 'Marketplace.Booking' | 'Marketplace.Basic' | 'OpenStack.Tenant' | 'OpenStack.Instance' | 'OpenStack.Volume' | 'Marketplace.Rancher' | 'VMware.VirtualMachine' | 'Waldur.RemoteOffering' | 'Marketplace.Script' | 'SlurmInvoices.SlurmPackage' | 'Marketplace.Slurm';
|
|
12863
|
+
export type OfferingTypeUpdateRequest = {
|
|
12864
|
+
type: OfferingTypeUpdateTypeEnum;
|
|
12865
|
+
};
|
|
12866
|
+
export type OfferingTypeUpdateTypeEnum = 'Marketplace.Basic' | 'Marketplace.Slurm';
|
|
12657
12867
|
export type OfferingUsageByProject = {
|
|
12658
12868
|
readonly offering_uuid: string;
|
|
12659
12869
|
readonly offering_name: string;
|
|
@@ -15676,6 +15886,7 @@ export type OrganizationalUser = {
|
|
|
15676
15886
|
full_name: string;
|
|
15677
15887
|
role: string | null;
|
|
15678
15888
|
};
|
|
15889
|
+
export type OutcomeEnum = 'eligible' | 'ineligible' | 'feasible' | 'infeasible' | 'reviewed' | 'approved' | 'declined' | 'accepted' | 'rejected' | 'expired';
|
|
15679
15890
|
export type PaidRequest = {
|
|
15680
15891
|
date: string;
|
|
15681
15892
|
proof?: Blob | File;
|
|
@@ -15967,6 +16178,54 @@ export type PatchedCallReviewerPoolUpdateRequest = {
|
|
|
15967
16178
|
*/
|
|
15968
16179
|
max_assignments?: number;
|
|
15969
16180
|
};
|
|
16181
|
+
export type PatchedCallWorkflowStepRequest = {
|
|
16182
|
+
/**
|
|
16183
|
+
* Whether this step is enabled. Disabled steps are skipped.
|
|
16184
|
+
*/
|
|
16185
|
+
is_enabled?: boolean;
|
|
16186
|
+
/**
|
|
16187
|
+
* Duration in days. Used to calculate deadlines.
|
|
16188
|
+
*/
|
|
16189
|
+
duration_in_days?: number | null;
|
|
16190
|
+
checklist?: string | null;
|
|
16191
|
+
/**
|
|
16192
|
+
* Evaluators cannot see each other's assessments.
|
|
16193
|
+
*/
|
|
16194
|
+
blind_review?: boolean;
|
|
16195
|
+
/**
|
|
16196
|
+
* Evaluator must confirm absence of conflict of interest.
|
|
16197
|
+
*/
|
|
16198
|
+
requires_coi_confirmation?: boolean;
|
|
16199
|
+
/**
|
|
16200
|
+
* Minimum reviews required before step can complete.
|
|
16201
|
+
*/
|
|
16202
|
+
min_reviewers?: number | null;
|
|
16203
|
+
/**
|
|
16204
|
+
* Minimum average score to pass this step.
|
|
16205
|
+
*/
|
|
16206
|
+
min_score_threshold?: string | null;
|
|
16207
|
+
/**
|
|
16208
|
+
* Whether the applicant can see step details (not just status).
|
|
16209
|
+
*/
|
|
16210
|
+
applicant_visible?: boolean;
|
|
16211
|
+
/**
|
|
16212
|
+
* Role expected to act on this step.
|
|
16213
|
+
*/
|
|
16214
|
+
responsible_role?: ResponsibleRoleEnum | BlankEnum | NullEnum | null;
|
|
16215
|
+
/**
|
|
16216
|
+
* How this step advances to the next.
|
|
16217
|
+
*/
|
|
16218
|
+
transition_mode?: TransitionModeEnum;
|
|
16219
|
+
/**
|
|
16220
|
+
* Allocation decision: require applicant award response after decision.
|
|
16221
|
+
*/
|
|
16222
|
+
include_award_response?: boolean;
|
|
16223
|
+
/**
|
|
16224
|
+
* Optional override of catalog ordering.
|
|
16225
|
+
*/
|
|
16226
|
+
display_order?: number | null;
|
|
16227
|
+
criteria?: Array<WorkflowCriterionRequest>;
|
|
16228
|
+
};
|
|
15970
16229
|
export type PatchedCategoryColumnRequest = {
|
|
15971
16230
|
/**
|
|
15972
16231
|
* Index allows to reorder columns.
|
|
@@ -16483,6 +16742,11 @@ export type PatchedOfferingEstimatedCostPolicyRequest = {
|
|
|
16483
16742
|
*/
|
|
16484
16743
|
apply_to_all?: boolean;
|
|
16485
16744
|
};
|
|
16745
|
+
export type PatchedOfferingGroupRequest = {
|
|
16746
|
+
title?: string;
|
|
16747
|
+
description?: string;
|
|
16748
|
+
icon?: (Blob | File) | null;
|
|
16749
|
+
};
|
|
16486
16750
|
export type PatchedOfferingPartitionUpdateRequest = {
|
|
16487
16751
|
partition_uuid?: string;
|
|
16488
16752
|
/**
|
|
@@ -17937,6 +18201,7 @@ export type PersonalAccessToken = {
|
|
|
17937
18201
|
name: string;
|
|
17938
18202
|
token_prefix: string;
|
|
17939
18203
|
scopes: Array<string>;
|
|
18204
|
+
readonly allowed_scopes: Array<AllowedScopeOutput>;
|
|
17940
18205
|
expires_at: string;
|
|
17941
18206
|
is_active: boolean;
|
|
17942
18207
|
last_used_at: string;
|
|
@@ -17950,6 +18215,10 @@ export type PersonalAccessToken = {
|
|
|
17950
18215
|
export type PersonalAccessTokenCreateRequest = {
|
|
17951
18216
|
name: string;
|
|
17952
18217
|
scopes: Array<string>;
|
|
18218
|
+
/**
|
|
18219
|
+
* Optional list of entity bindings restricting where this token can act. Empty list = no entity restriction.
|
|
18220
|
+
*/
|
|
18221
|
+
allowed_scopes?: Array<AllowedScopeInputRequest>;
|
|
17953
18222
|
expires_at: string;
|
|
17954
18223
|
};
|
|
17955
18224
|
export type PersonalAccessTokenCreated = {
|
|
@@ -17960,6 +18229,7 @@ export type PersonalAccessTokenCreated = {
|
|
|
17960
18229
|
*/
|
|
17961
18230
|
token: string;
|
|
17962
18231
|
scopes: Array<string>;
|
|
18232
|
+
allowed_scopes: Array<AllowedScopeOutput>;
|
|
17963
18233
|
expires_at: string;
|
|
17964
18234
|
created: string;
|
|
17965
18235
|
};
|
|
@@ -18236,6 +18506,12 @@ export type Project = {
|
|
|
18236
18506
|
*/
|
|
18237
18507
|
user_identity_sources?: unknown;
|
|
18238
18508
|
affiliation?: AffiliatedOrganization;
|
|
18509
|
+
affiliation_uuid?: string | null;
|
|
18510
|
+
readonly affiliation_name?: string;
|
|
18511
|
+
/**
|
|
18512
|
+
* Unique short identifier, e.g. CERN, EMBL.
|
|
18513
|
+
*/
|
|
18514
|
+
readonly affiliation_code?: string;
|
|
18239
18515
|
science_sub_domain?: string | null;
|
|
18240
18516
|
readonly science_sub_domain_name?: string;
|
|
18241
18517
|
/**
|
|
@@ -19106,6 +19382,33 @@ export type ProposalUpdateProjectDetailsRequest = {
|
|
|
19106
19382
|
duration_in_days?: number | null;
|
|
19107
19383
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
19108
19384
|
};
|
|
19385
|
+
export type ProposalWorkflowStepInstance = {
|
|
19386
|
+
readonly uuid: string;
|
|
19387
|
+
step: StepEnum;
|
|
19388
|
+
readonly step_name: string;
|
|
19389
|
+
readonly step_description: string;
|
|
19390
|
+
readonly responsible_role: string | null;
|
|
19391
|
+
status: ProposalWorkflowStepInstanceStatusEnum;
|
|
19392
|
+
/**
|
|
19393
|
+
* Step-specific outcome (e.g., eligible, feasible, approved).
|
|
19394
|
+
*/
|
|
19395
|
+
readonly outcome: string | null;
|
|
19396
|
+
/**
|
|
19397
|
+
* Explanation for the outcome (e.g., rejection reason).
|
|
19398
|
+
*/
|
|
19399
|
+
readonly outcome_reason: string;
|
|
19400
|
+
/**
|
|
19401
|
+
* When this step became active.
|
|
19402
|
+
*/
|
|
19403
|
+
readonly started_at: string | null;
|
|
19404
|
+
readonly completed_at: string | null;
|
|
19405
|
+
readonly completed_by: string | null;
|
|
19406
|
+
/**
|
|
19407
|
+
* Computed from started_at + step duration_in_days.
|
|
19408
|
+
*/
|
|
19409
|
+
readonly deadline: string | null;
|
|
19410
|
+
};
|
|
19411
|
+
export type ProposalWorkflowStepInstanceStatusEnum = 'pending' | 'active' | 'completed' | 'expired' | 'skipped';
|
|
19109
19412
|
export type ProposedAssignment = {
|
|
19110
19413
|
readonly url: string;
|
|
19111
19414
|
readonly uuid: string;
|
|
@@ -19356,6 +19659,8 @@ export type ProviderOffering = {
|
|
|
19356
19659
|
resource_options?: unknown;
|
|
19357
19660
|
secret_options?: MergedSecretOptions;
|
|
19358
19661
|
thumbnail?: string | null;
|
|
19662
|
+
readonly offering_group_uuid?: string | null;
|
|
19663
|
+
readonly offering_group_title?: string | null;
|
|
19359
19664
|
};
|
|
19360
19665
|
export type ProviderOfferingCosts = {
|
|
19361
19666
|
/**
|
|
@@ -19488,6 +19793,9 @@ export type ProviderOfferingDetails = {
|
|
|
19488
19793
|
compliance_checklist?: string | null;
|
|
19489
19794
|
readonly profile_uuid?: string | null;
|
|
19490
19795
|
readonly profile_name?: string | null;
|
|
19796
|
+
readonly offering_group?: string | null;
|
|
19797
|
+
readonly offering_group_uuid?: string | null;
|
|
19798
|
+
readonly offering_group_title?: string | null;
|
|
19491
19799
|
readonly integration_status?: Array<IntegrationStatus> | null;
|
|
19492
19800
|
readonly google_calendar_is_public?: boolean | null;
|
|
19493
19801
|
/**
|
|
@@ -19843,6 +20151,9 @@ export type PublicOfferingDetails = {
|
|
|
19843
20151
|
compliance_checklist?: string | null;
|
|
19844
20152
|
readonly profile_uuid?: string | null;
|
|
19845
20153
|
readonly profile_name?: string | null;
|
|
20154
|
+
readonly offering_group?: string | null;
|
|
20155
|
+
readonly offering_group_uuid?: string | null;
|
|
20156
|
+
readonly offering_group_title?: string | null;
|
|
19846
20157
|
readonly user_has_consent?: boolean;
|
|
19847
20158
|
readonly is_accessible?: boolean;
|
|
19848
20159
|
readonly google_calendar_is_public?: boolean | null;
|
|
@@ -21168,6 +21479,20 @@ export type ReferenceNumberRequest = {
|
|
|
21168
21479
|
*/
|
|
21169
21480
|
reference_number?: string;
|
|
21170
21481
|
};
|
|
21482
|
+
export type RejectWorkflowStepRequest = {
|
|
21483
|
+
/**
|
|
21484
|
+
* UUID of the workflow step instance the client believes is active. Used to detect concurrent step transitions.
|
|
21485
|
+
*/
|
|
21486
|
+
step_uuid: string;
|
|
21487
|
+
/**
|
|
21488
|
+
* Reason for rejecting the proposal at this step.
|
|
21489
|
+
*/
|
|
21490
|
+
reason: string;
|
|
21491
|
+
};
|
|
21492
|
+
export type RejectWorkflowStepResponse = {
|
|
21493
|
+
detail: string;
|
|
21494
|
+
proposal_state: string;
|
|
21495
|
+
};
|
|
21171
21496
|
export type RelationshipTypeEnum = 'employment' | 'consulting' | 'equity' | 'board' | 'royalties' | 'gifts' | 'other';
|
|
21172
21497
|
export type RemoteAllocation = {
|
|
21173
21498
|
readonly url?: string;
|
|
@@ -21824,6 +22149,14 @@ export type ResourceProject = {
|
|
|
21824
22149
|
readonly resource_name: string;
|
|
21825
22150
|
readonly created: string;
|
|
21826
22151
|
readonly modified: string;
|
|
22152
|
+
readonly is_removed: boolean;
|
|
22153
|
+
readonly removed_date: string | null;
|
|
22154
|
+
readonly removed_by: number | null;
|
|
22155
|
+
/**
|
|
22156
|
+
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
22157
|
+
*/
|
|
22158
|
+
readonly removed_by_username: string;
|
|
22159
|
+
readonly termination_metadata: unknown;
|
|
21827
22160
|
};
|
|
21828
22161
|
export type ResourceProjectBackendId = {
|
|
21829
22162
|
backend_id: string;
|
|
@@ -21843,6 +22176,16 @@ export type ResourceProjectErrorMessageRequest = {
|
|
|
21843
22176
|
*/
|
|
21844
22177
|
error_message?: string;
|
|
21845
22178
|
};
|
|
22179
|
+
export type ResourceProjectRecoveryRequest = {
|
|
22180
|
+
/**
|
|
22181
|
+
* 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).
|
|
22182
|
+
*/
|
|
22183
|
+
restore_team_members?: boolean;
|
|
22184
|
+
/**
|
|
22185
|
+
* Send invitations to users who had access before soft-delete. Mutually exclusive with restore_team_members.
|
|
22186
|
+
*/
|
|
22187
|
+
send_invitations_to_previous_members?: boolean;
|
|
22188
|
+
};
|
|
21846
22189
|
export type ResourceProjectRequest = {
|
|
21847
22190
|
resource: string;
|
|
21848
22191
|
name: string;
|
|
@@ -22167,6 +22510,7 @@ export type ResourcesLimits = {
|
|
|
22167
22510
|
*/
|
|
22168
22511
|
readonly organization_group_uuid: string;
|
|
22169
22512
|
};
|
|
22513
|
+
export type ResponsibleRoleEnum = 'call_manager' | 'offering_manager' | 'reviewer' | 'panel_member' | 'applicant';
|
|
22170
22514
|
export type ReviewCommentRequest = {
|
|
22171
22515
|
/**
|
|
22172
22516
|
* Optional comment for review
|
|
@@ -23407,6 +23751,10 @@ export type ScienceSubDomainRequest = {
|
|
|
23407
23751
|
name: string;
|
|
23408
23752
|
domain: string;
|
|
23409
23753
|
};
|
|
23754
|
+
export type ScimPullAttributesResponse = {
|
|
23755
|
+
detail: string;
|
|
23756
|
+
changed_fields?: Array<string>;
|
|
23757
|
+
};
|
|
23410
23758
|
export type ScimSyncAllResponse = {
|
|
23411
23759
|
detail: string;
|
|
23412
23760
|
};
|
|
@@ -23763,6 +24111,27 @@ export type SiteAgentConfigGenerationRequest = {
|
|
|
23763
24111
|
*/
|
|
23764
24112
|
timezone?: string;
|
|
23765
24113
|
};
|
|
24114
|
+
export type SiteAgentLog = {
|
|
24115
|
+
readonly uuid: string;
|
|
24116
|
+
readonly offering: string;
|
|
24117
|
+
readonly offering_uuid: string;
|
|
24118
|
+
readonly agent_identity_uuid: string;
|
|
24119
|
+
/**
|
|
24120
|
+
* Unix timestamp of the log entry
|
|
24121
|
+
*/
|
|
24122
|
+
timestamp: number;
|
|
24123
|
+
level: LevelEnum;
|
|
24124
|
+
message: string;
|
|
24125
|
+
module: string;
|
|
24126
|
+
readonly created: string;
|
|
24127
|
+
};
|
|
24128
|
+
export type SiteAgentLogCreateRequest = {
|
|
24129
|
+
agent_identity_uuid: string;
|
|
24130
|
+
timestamp: number;
|
|
24131
|
+
level: LevelEnum;
|
|
24132
|
+
message: string;
|
|
24133
|
+
module: string;
|
|
24134
|
+
};
|
|
23766
24135
|
export type SlurmAllocation = {
|
|
23767
24136
|
readonly url?: string;
|
|
23768
24137
|
readonly uuid?: string;
|
|
@@ -24417,6 +24786,7 @@ export type StateTransitionError = {
|
|
|
24417
24786
|
*/
|
|
24418
24787
|
detail: string;
|
|
24419
24788
|
};
|
|
24789
|
+
export type StepEnum = 'administrative_check' | 'technical_assessment' | 'expert_review' | 'panel_review' | 'allocation_decision' | 'award_response';
|
|
24420
24790
|
export type StorageDataType = {
|
|
24421
24791
|
key: string;
|
|
24422
24792
|
label: string;
|
|
@@ -25051,6 +25421,7 @@ export type TransactionStats = {
|
|
|
25051
25421
|
*/
|
|
25052
25422
|
readonly deadlocks: number;
|
|
25053
25423
|
};
|
|
25424
|
+
export type TransitionModeEnum = 'automatic_on_completion';
|
|
25054
25425
|
export type TriggerCoiDetectionJobTypeEnum = 'full_call' | 'incremental';
|
|
25055
25426
|
export type TriggerCoiDetectionRequest = {
|
|
25056
25427
|
job_type?: TriggerCoiDetectionJobTypeEnum;
|
|
@@ -25467,7 +25838,7 @@ export type UserAuthToken = {
|
|
|
25467
25838
|
};
|
|
25468
25839
|
export type UserChecklistCompletion = {
|
|
25469
25840
|
readonly uuid: string;
|
|
25470
|
-
offering_user:
|
|
25841
|
+
offering_user: UserChecklistCompletionOfferingUser | null;
|
|
25471
25842
|
readonly offering_user_uuid: string | null;
|
|
25472
25843
|
readonly offering_name: string | null;
|
|
25473
25844
|
readonly offering_uuid: string | null;
|
|
@@ -25498,6 +25869,17 @@ export type UserChecklistCompletion = {
|
|
|
25498
25869
|
readonly created: string;
|
|
25499
25870
|
readonly modified: string;
|
|
25500
25871
|
};
|
|
25872
|
+
export type UserChecklistCompletionOfferingUser = {
|
|
25873
|
+
readonly uuid: string;
|
|
25874
|
+
username?: string | null;
|
|
25875
|
+
readonly user_full_name: string;
|
|
25876
|
+
readonly user_email: string;
|
|
25877
|
+
readonly state: string;
|
|
25878
|
+
/**
|
|
25879
|
+
* Signal to service if the user account is restricted or not
|
|
25880
|
+
*/
|
|
25881
|
+
is_restricted?: boolean;
|
|
25882
|
+
};
|
|
25501
25883
|
export type UserConsentInfo = {
|
|
25502
25884
|
readonly uuid: string;
|
|
25503
25885
|
readonly version: string;
|
|
@@ -26299,6 +26681,15 @@ export type WebHookRequest = {
|
|
|
26299
26681
|
content_type?: WebHookContentTypeEnum;
|
|
26300
26682
|
};
|
|
26301
26683
|
export type WidgetEnum = 'csv' | 'filesize' | 'attached_instance';
|
|
26684
|
+
export type WorkflowCriterion = {
|
|
26685
|
+
readonly uuid: string;
|
|
26686
|
+
name: string;
|
|
26687
|
+
order?: number;
|
|
26688
|
+
};
|
|
26689
|
+
export type WorkflowCriterionRequest = {
|
|
26690
|
+
name: string;
|
|
26691
|
+
order?: number;
|
|
26692
|
+
};
|
|
26302
26693
|
export type ZammadarticletypeEnum = 'email' | 'phone' | 'web' | 'note' | 'sms' | 'chat' | 'fax' | 'twitter status' | 'twitter direct-message' | 'facebook feed post' | 'facebook feed comment' | 'telegram personal-message';
|
|
26303
26694
|
export type OfferingProfileRole = {
|
|
26304
26695
|
uuid: string;
|
|
@@ -26970,6 +27361,28 @@ export type OfferingFileRequestMultipart = {
|
|
|
26970
27361
|
offering: string;
|
|
26971
27362
|
file: Blob | File;
|
|
26972
27363
|
};
|
|
27364
|
+
export type OfferingGroupRequestForm = {
|
|
27365
|
+
title: string;
|
|
27366
|
+
description?: string;
|
|
27367
|
+
icon?: (Blob | File) | null;
|
|
27368
|
+
customer: string;
|
|
27369
|
+
};
|
|
27370
|
+
export type OfferingGroupRequestMultipart = {
|
|
27371
|
+
title: string;
|
|
27372
|
+
description?: string;
|
|
27373
|
+
icon?: (Blob | File) | null;
|
|
27374
|
+
customer: string;
|
|
27375
|
+
};
|
|
27376
|
+
export type PatchedOfferingGroupRequestForm = {
|
|
27377
|
+
title?: string;
|
|
27378
|
+
description?: string;
|
|
27379
|
+
icon?: (Blob | File) | null;
|
|
27380
|
+
};
|
|
27381
|
+
export type PatchedOfferingGroupRequestMultipart = {
|
|
27382
|
+
title?: string;
|
|
27383
|
+
description?: string;
|
|
27384
|
+
icon?: (Blob | File) | null;
|
|
27385
|
+
};
|
|
26973
27386
|
export type OrderConsumerInfoRequestForm = {
|
|
26974
27387
|
consumer_message?: string;
|
|
26975
27388
|
consumer_message_attachment?: Blob | File;
|
|
@@ -27045,6 +27458,7 @@ export type OfferingCreateRequestForm = {
|
|
|
27045
27458
|
image?: (Blob | File) | null;
|
|
27046
27459
|
backend_metadata?: unknown;
|
|
27047
27460
|
compliance_checklist?: string | null;
|
|
27461
|
+
offering_group?: string | null;
|
|
27048
27462
|
limits?: {
|
|
27049
27463
|
[key: string]: OfferingComponentLimitRequest;
|
|
27050
27464
|
};
|
|
@@ -27100,6 +27514,7 @@ export type OfferingCreateRequestMultipart = {
|
|
|
27100
27514
|
image?: (Blob | File) | null;
|
|
27101
27515
|
backend_metadata?: unknown;
|
|
27102
27516
|
compliance_checklist?: string | null;
|
|
27517
|
+
offering_group?: string | null;
|
|
27103
27518
|
limits?: {
|
|
27104
27519
|
[key: string]: OfferingComponentLimitRequest;
|
|
27105
27520
|
};
|
|
@@ -27603,6 +28018,12 @@ export type ConstanceSettingsRequestForm = {
|
|
|
27603
28018
|
SCIM_API_URL?: string;
|
|
27604
28019
|
SCIM_API_KEY?: string;
|
|
27605
28020
|
SCIM_URN_NAMESPACE?: string;
|
|
28021
|
+
SCIM_INBOUND_ENABLED?: boolean;
|
|
28022
|
+
SCIM_INBOUND_SOURCE_NAME?: string;
|
|
28023
|
+
SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
28024
|
+
SCIM_PULL_API_URL?: string;
|
|
28025
|
+
SCIM_PULL_API_KEY?: string;
|
|
28026
|
+
SCIM_PULL_SOURCE_NAME?: string;
|
|
27606
28027
|
KEYCLOAK_ICON?: (Blob | File) | null;
|
|
27607
28028
|
COUNTRIES?: Array<string>;
|
|
27608
28029
|
OIDC_AUTH_URL?: string;
|
|
@@ -27707,6 +28128,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
27707
28128
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
27708
28129
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
27709
28130
|
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
28131
|
+
SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
|
|
27710
28132
|
PAT_ENABLED?: boolean;
|
|
27711
28133
|
PAT_MAX_LIFETIME_DAYS?: number;
|
|
27712
28134
|
PAT_MAX_TOKENS_PER_USER?: number;
|
|
@@ -27872,6 +28294,12 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
27872
28294
|
SCIM_API_URL?: string;
|
|
27873
28295
|
SCIM_API_KEY?: string;
|
|
27874
28296
|
SCIM_URN_NAMESPACE?: string;
|
|
28297
|
+
SCIM_INBOUND_ENABLED?: boolean;
|
|
28298
|
+
SCIM_INBOUND_SOURCE_NAME?: string;
|
|
28299
|
+
SCIM_INBOUND_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
28300
|
+
SCIM_PULL_API_URL?: string;
|
|
28301
|
+
SCIM_PULL_API_KEY?: string;
|
|
28302
|
+
SCIM_PULL_SOURCE_NAME?: string;
|
|
27875
28303
|
KEYCLOAK_ICON?: (Blob | File) | null;
|
|
27876
28304
|
COUNTRIES?: Array<string>;
|
|
27877
28305
|
OIDC_AUTH_URL?: string;
|
|
@@ -27976,6 +28404,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
27976
28404
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
27977
28405
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
27978
28406
|
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
28407
|
+
SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
|
|
27979
28408
|
PAT_ENABLED?: boolean;
|
|
27980
28409
|
PAT_MAX_LIFETIME_DAYS?: number;
|
|
27981
28410
|
PAT_MAX_TOKENS_PER_USER?: number;
|
|
@@ -28414,6 +28843,7 @@ export type PatchedUserRequestMultipart = {
|
|
|
28414
28843
|
};
|
|
28415
28844
|
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';
|
|
28416
28845
|
export type AdminAnnouncementOEnum = '-active_from' | '-active_to' | '-created' | '-name' | '-type' | 'active_from' | 'active_to' | 'created' | 'name' | 'type';
|
|
28846
|
+
export type AffiliatedOrganizationFieldEnum = 'abbreviation' | 'address' | 'code' | 'country' | 'created' | 'description' | 'email' | 'homepage' | 'modified' | 'name' | 'projects_count' | 'url' | 'uuid';
|
|
28417
28847
|
export type AnonymousChatFeedbackOEnum = '-llm_resolution_score' | '-score' | '-submitted_at' | 'llm_resolution_score' | 'score' | 'submitted_at';
|
|
28418
28848
|
export type AnonymousChatInteractionOEnum = '-created' | '-result_count' | 'created' | 'result_count';
|
|
28419
28849
|
export type AssignmentBatchListOEnum = '-created' | '-expires_at' | '-sent_at' | '-status' | 'created' | 'expires_at' | 'sent_at' | 'status';
|
|
@@ -28426,7 +28856,7 @@ export type AzureSqlDatabaseFieldEnum = 'access_url' | 'backend_id' | 'charset'
|
|
|
28426
28856
|
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';
|
|
28427
28857
|
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';
|
|
28428
28858
|
export type BackendResourceReqOEnum = '-created' | 'created';
|
|
28429
|
-
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';
|
|
28859
|
+
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';
|
|
28430
28860
|
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';
|
|
28431
28861
|
export type BookingResourceOEnum = '-created' | '-name' | '-schedules' | '-type' | 'created' | 'name' | 'schedules' | 'type';
|
|
28432
28862
|
export type BroadcastMessageFieldEnum = 'author_full_name' | 'body' | 'created' | 'emails' | 'query' | 'send_at' | 'state' | 'subject' | 'uuid';
|
|
@@ -28476,6 +28906,7 @@ export type CourseAccountOEnum = '-created' | '-email' | '-modified' | '-project
|
|
|
28476
28906
|
export type IntegrationStatusDetailsOEnum = '-last_request_timestamp' | 'last_request_timestamp';
|
|
28477
28907
|
export type IntegrationStatusDetailsStatusEnum = 'Active' | 'Disconnected' | 'Unknown';
|
|
28478
28908
|
export type OfferingFileFieldEnum = 'created' | 'file' | 'name' | 'offering' | 'url' | 'uuid';
|
|
28909
|
+
export type OfferingGroupFieldEnum = 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'description' | 'icon' | 'title' | 'url' | 'uuid';
|
|
28479
28910
|
export type OfferingPermissionOEnum = '-created' | '-email' | '-expiration_time' | '-full_name' | '-native_name' | '-role' | '-username' | 'created' | 'email' | 'expiration_time' | 'full_name' | 'native_name' | 'role' | 'username';
|
|
28480
28911
|
export type OfferingReferralOEnum = '-published' | '-relation_type' | '-resource_type' | 'published' | 'relation_type' | 'resource_type';
|
|
28481
28912
|
export type OfferingTermsOfServiceOEnum = '-created' | '-modified' | '-version' | 'created' | 'modified' | 'version';
|
|
@@ -28485,19 +28916,19 @@ export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'create
|
|
|
28485
28916
|
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';
|
|
28486
28917
|
export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
|
|
28487
28918
|
export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'draft' | 'pending' | 'rejected';
|
|
28488
|
-
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';
|
|
28919
|
+
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';
|
|
28489
28920
|
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';
|
|
28490
28921
|
export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
|
|
28491
|
-
export type ProjectFieldEnum = 'affiliation' | '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';
|
|
28922
|
+
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';
|
|
28492
28923
|
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';
|
|
28493
28924
|
export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
|
|
28494
|
-
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';
|
|
28925
|
+
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';
|
|
28495
28926
|
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';
|
|
28496
28927
|
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';
|
|
28497
28928
|
export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
|
|
28498
28929
|
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';
|
|
28499
28930
|
export type MarketplaceProviderCustomerFieldEnum = 'abbreviation' | 'billing_price_estimate' | 'email' | 'name' | 'payment_profiles' | 'phone_number' | 'projects' | 'projects_count' | 'slug' | 'users' | 'users_count' | 'uuid';
|
|
28500
|
-
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';
|
|
28931
|
+
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';
|
|
28501
28932
|
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';
|
|
28502
28933
|
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';
|
|
28503
28934
|
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';
|
|
@@ -30003,6 +30434,7 @@ export type AffiliatedOrganizationsListData = {
|
|
|
30003
30434
|
* Limit to a customer's default affiliation list
|
|
30004
30435
|
*/
|
|
30005
30436
|
default_for_customer?: string;
|
|
30437
|
+
field?: Array<AffiliatedOrganizationFieldEnum>;
|
|
30006
30438
|
/**
|
|
30007
30439
|
* Name
|
|
30008
30440
|
*/
|
|
@@ -30117,7 +30549,9 @@ export type AffiliatedOrganizationsRetrieveData = {
|
|
|
30117
30549
|
path: {
|
|
30118
30550
|
uuid: string;
|
|
30119
30551
|
};
|
|
30120
|
-
query?:
|
|
30552
|
+
query?: {
|
|
30553
|
+
field?: Array<AffiliatedOrganizationFieldEnum>;
|
|
30554
|
+
};
|
|
30121
30555
|
url: '/api/affiliated-organizations/{uuid}/';
|
|
30122
30556
|
};
|
|
30123
30557
|
export type AffiliatedOrganizationsRetrieveResponses = {
|
|
@@ -44923,6 +45357,120 @@ export type MarketplaceOfferingFilesRetrieveResponses = {
|
|
|
44923
45357
|
200: OfferingFile;
|
|
44924
45358
|
};
|
|
44925
45359
|
export type MarketplaceOfferingFilesRetrieveResponse = MarketplaceOfferingFilesRetrieveResponses[keyof MarketplaceOfferingFilesRetrieveResponses];
|
|
45360
|
+
export type MarketplaceOfferingGroupsListData = {
|
|
45361
|
+
body?: never;
|
|
45362
|
+
path?: never;
|
|
45363
|
+
query?: {
|
|
45364
|
+
/**
|
|
45365
|
+
* Customer UUID
|
|
45366
|
+
*/
|
|
45367
|
+
customer_uuid?: string;
|
|
45368
|
+
field?: Array<OfferingGroupFieldEnum>;
|
|
45369
|
+
/**
|
|
45370
|
+
* A page number within the paginated result set.
|
|
45371
|
+
*/
|
|
45372
|
+
page?: number;
|
|
45373
|
+
/**
|
|
45374
|
+
* Number of results to return per page.
|
|
45375
|
+
*/
|
|
45376
|
+
page_size?: number;
|
|
45377
|
+
title?: string;
|
|
45378
|
+
};
|
|
45379
|
+
url: '/api/marketplace-offering-groups/';
|
|
45380
|
+
};
|
|
45381
|
+
export type MarketplaceOfferingGroupsListResponses = {
|
|
45382
|
+
200: Array<OfferingGroup>;
|
|
45383
|
+
};
|
|
45384
|
+
export type MarketplaceOfferingGroupsListResponse = MarketplaceOfferingGroupsListResponses[keyof MarketplaceOfferingGroupsListResponses];
|
|
45385
|
+
export type MarketplaceOfferingGroupsCountData = {
|
|
45386
|
+
body?: never;
|
|
45387
|
+
path?: never;
|
|
45388
|
+
query?: {
|
|
45389
|
+
/**
|
|
45390
|
+
* Customer UUID
|
|
45391
|
+
*/
|
|
45392
|
+
customer_uuid?: string;
|
|
45393
|
+
/**
|
|
45394
|
+
* A page number within the paginated result set.
|
|
45395
|
+
*/
|
|
45396
|
+
page?: number;
|
|
45397
|
+
/**
|
|
45398
|
+
* Number of results to return per page.
|
|
45399
|
+
*/
|
|
45400
|
+
page_size?: number;
|
|
45401
|
+
title?: string;
|
|
45402
|
+
};
|
|
45403
|
+
url: '/api/marketplace-offering-groups/';
|
|
45404
|
+
};
|
|
45405
|
+
export type MarketplaceOfferingGroupsCountResponses = {
|
|
45406
|
+
/**
|
|
45407
|
+
* No response body
|
|
45408
|
+
*/
|
|
45409
|
+
200: unknown;
|
|
45410
|
+
};
|
|
45411
|
+
export type MarketplaceOfferingGroupsCreateData = {
|
|
45412
|
+
body: OfferingGroupRequest;
|
|
45413
|
+
path?: never;
|
|
45414
|
+
query?: never;
|
|
45415
|
+
url: '/api/marketplace-offering-groups/';
|
|
45416
|
+
};
|
|
45417
|
+
export type MarketplaceOfferingGroupsCreateResponses = {
|
|
45418
|
+
201: OfferingGroup;
|
|
45419
|
+
};
|
|
45420
|
+
export type MarketplaceOfferingGroupsCreateResponse = MarketplaceOfferingGroupsCreateResponses[keyof MarketplaceOfferingGroupsCreateResponses];
|
|
45421
|
+
export type MarketplaceOfferingGroupsDestroyData = {
|
|
45422
|
+
body?: never;
|
|
45423
|
+
path: {
|
|
45424
|
+
uuid: string;
|
|
45425
|
+
};
|
|
45426
|
+
query?: never;
|
|
45427
|
+
url: '/api/marketplace-offering-groups/{uuid}/';
|
|
45428
|
+
};
|
|
45429
|
+
export type MarketplaceOfferingGroupsDestroyResponses = {
|
|
45430
|
+
/**
|
|
45431
|
+
* No response body
|
|
45432
|
+
*/
|
|
45433
|
+
204: void;
|
|
45434
|
+
};
|
|
45435
|
+
export type MarketplaceOfferingGroupsDestroyResponse = MarketplaceOfferingGroupsDestroyResponses[keyof MarketplaceOfferingGroupsDestroyResponses];
|
|
45436
|
+
export type MarketplaceOfferingGroupsRetrieveData = {
|
|
45437
|
+
body?: never;
|
|
45438
|
+
path: {
|
|
45439
|
+
uuid: string;
|
|
45440
|
+
};
|
|
45441
|
+
query?: {
|
|
45442
|
+
field?: Array<OfferingGroupFieldEnum>;
|
|
45443
|
+
};
|
|
45444
|
+
url: '/api/marketplace-offering-groups/{uuid}/';
|
|
45445
|
+
};
|
|
45446
|
+
export type MarketplaceOfferingGroupsRetrieveResponses = {
|
|
45447
|
+
200: OfferingGroup;
|
|
45448
|
+
};
|
|
45449
|
+
export type MarketplaceOfferingGroupsRetrieveResponse = MarketplaceOfferingGroupsRetrieveResponses[keyof MarketplaceOfferingGroupsRetrieveResponses];
|
|
45450
|
+
export type MarketplaceOfferingGroupsPartialUpdateData = {
|
|
45451
|
+
body?: PatchedOfferingGroupRequest;
|
|
45452
|
+
path: {
|
|
45453
|
+
uuid: string;
|
|
45454
|
+
};
|
|
45455
|
+
query?: never;
|
|
45456
|
+
url: '/api/marketplace-offering-groups/{uuid}/';
|
|
45457
|
+
};
|
|
45458
|
+
export type MarketplaceOfferingGroupsPartialUpdateResponses = {
|
|
45459
|
+
200: OfferingGroup;
|
|
45460
|
+
};
|
|
45461
|
+
export type MarketplaceOfferingGroupsPartialUpdateResponse = MarketplaceOfferingGroupsPartialUpdateResponses[keyof MarketplaceOfferingGroupsPartialUpdateResponses];
|
|
45462
|
+
export type MarketplaceOfferingGroupsUpdateData = {
|
|
45463
|
+
body: OfferingGroupRequest;
|
|
45464
|
+
path: {
|
|
45465
|
+
uuid: string;
|
|
45466
|
+
};
|
|
45467
|
+
query?: never;
|
|
45468
|
+
url: '/api/marketplace-offering-groups/{uuid}/';
|
|
45469
|
+
};
|
|
45470
|
+
export type MarketplaceOfferingGroupsUpdateResponses = {
|
|
45471
|
+
200: OfferingGroup;
|
|
45472
|
+
};
|
|
45473
|
+
export type MarketplaceOfferingGroupsUpdateResponse = MarketplaceOfferingGroupsUpdateResponses[keyof MarketplaceOfferingGroupsUpdateResponses];
|
|
44926
45474
|
export type MarketplaceOfferingPermissionsListData = {
|
|
44927
45475
|
body?: never;
|
|
44928
45476
|
path?: never;
|
|
@@ -48021,6 +48569,10 @@ export type MarketplaceProviderOfferingsListData = {
|
|
|
48021
48569
|
*
|
|
48022
48570
|
*/
|
|
48023
48571
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
48572
|
+
/**
|
|
48573
|
+
* Offering group UUID
|
|
48574
|
+
*/
|
|
48575
|
+
offering_group_uuid?: string;
|
|
48024
48576
|
/**
|
|
48025
48577
|
* Organization group UUID
|
|
48026
48578
|
*/
|
|
@@ -48201,6 +48753,10 @@ export type MarketplaceProviderOfferingsCountData = {
|
|
|
48201
48753
|
*
|
|
48202
48754
|
*/
|
|
48203
48755
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
48756
|
+
/**
|
|
48757
|
+
* Offering group UUID
|
|
48758
|
+
*/
|
|
48759
|
+
offering_group_uuid?: string;
|
|
48204
48760
|
/**
|
|
48205
48761
|
* Organization group UUID
|
|
48206
48762
|
*/
|
|
@@ -48518,6 +49074,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
|
|
|
48518
49074
|
*
|
|
48519
49075
|
*/
|
|
48520
49076
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
49077
|
+
/**
|
|
49078
|
+
* Offering group UUID
|
|
49079
|
+
*/
|
|
49080
|
+
offering_group_uuid?: string;
|
|
48521
49081
|
/**
|
|
48522
49082
|
* Organization group UUID
|
|
48523
49083
|
*/
|
|
@@ -48709,6 +49269,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
|
|
|
48709
49269
|
*
|
|
48710
49270
|
*/
|
|
48711
49271
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
49272
|
+
/**
|
|
49273
|
+
* Offering group UUID
|
|
49274
|
+
*/
|
|
49275
|
+
offering_group_uuid?: string;
|
|
48712
49276
|
/**
|
|
48713
49277
|
* Organization group UUID
|
|
48714
49278
|
*/
|
|
@@ -48910,6 +49474,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
|
|
|
48910
49474
|
*
|
|
48911
49475
|
*/
|
|
48912
49476
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
49477
|
+
/**
|
|
49478
|
+
* Offering group UUID
|
|
49479
|
+
*/
|
|
49480
|
+
offering_group_uuid?: string;
|
|
48913
49481
|
/**
|
|
48914
49482
|
* Organization group UUID
|
|
48915
49483
|
*/
|
|
@@ -49236,6 +49804,10 @@ export type MarketplaceProviderOfferingsHistoryListData = {
|
|
|
49236
49804
|
*
|
|
49237
49805
|
*/
|
|
49238
49806
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
49807
|
+
/**
|
|
49808
|
+
* Offering group UUID
|
|
49809
|
+
*/
|
|
49810
|
+
offering_group_uuid?: string;
|
|
49239
49811
|
/**
|
|
49240
49812
|
* Organization group UUID
|
|
49241
49813
|
*/
|
|
@@ -49477,6 +50049,10 @@ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
|
|
|
49477
50049
|
*
|
|
49478
50050
|
*/
|
|
49479
50051
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
50052
|
+
/**
|
|
50053
|
+
* Offering group UUID
|
|
50054
|
+
*/
|
|
50055
|
+
offering_group_uuid?: string;
|
|
49480
50056
|
/**
|
|
49481
50057
|
* Organization group UUID
|
|
49482
50058
|
*/
|
|
@@ -49681,6 +50257,10 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
|
|
|
49681
50257
|
*
|
|
49682
50258
|
*/
|
|
49683
50259
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
50260
|
+
/**
|
|
50261
|
+
* Offering group UUID
|
|
50262
|
+
*/
|
|
50263
|
+
offering_group_uuid?: string;
|
|
49684
50264
|
/**
|
|
49685
50265
|
* Organization group UUID
|
|
49686
50266
|
*/
|
|
@@ -49885,6 +50465,10 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
|
|
|
49885
50465
|
*
|
|
49886
50466
|
*/
|
|
49887
50467
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
50468
|
+
/**
|
|
50469
|
+
* Offering group UUID
|
|
50470
|
+
*/
|
|
50471
|
+
offering_group_uuid?: string;
|
|
49888
50472
|
/**
|
|
49889
50473
|
* Organization group UUID
|
|
49890
50474
|
*/
|
|
@@ -50192,6 +50776,20 @@ export type MarketplaceProviderOfferingsSetBackendMetadataResponses = {
|
|
|
50192
50776
|
*/
|
|
50193
50777
|
200: unknown;
|
|
50194
50778
|
};
|
|
50779
|
+
export type MarketplaceProviderOfferingsSetOfferingGroupData = {
|
|
50780
|
+
body: OfferingGroupAssignRequest;
|
|
50781
|
+
path: {
|
|
50782
|
+
uuid: string;
|
|
50783
|
+
};
|
|
50784
|
+
query?: never;
|
|
50785
|
+
url: '/api/marketplace-provider-offerings/{uuid}/set_offering_group/';
|
|
50786
|
+
};
|
|
50787
|
+
export type MarketplaceProviderOfferingsSetOfferingGroupResponses = {
|
|
50788
|
+
/**
|
|
50789
|
+
* No response body
|
|
50790
|
+
*/
|
|
50791
|
+
200: unknown;
|
|
50792
|
+
};
|
|
50195
50793
|
export type MarketplaceProviderOfferingsSetProfileData = {
|
|
50196
50794
|
body?: OfferingProfileBindRequest;
|
|
50197
50795
|
path: {
|
|
@@ -50543,6 +51141,20 @@ export type MarketplaceProviderOfferingsUpdateThumbnailResponses = {
|
|
|
50543
51141
|
*/
|
|
50544
51142
|
200: unknown;
|
|
50545
51143
|
};
|
|
51144
|
+
export type MarketplaceProviderOfferingsUpdateTypeData = {
|
|
51145
|
+
body: OfferingTypeUpdateRequest;
|
|
51146
|
+
path: {
|
|
51147
|
+
uuid: string;
|
|
51148
|
+
};
|
|
51149
|
+
query?: never;
|
|
51150
|
+
url: '/api/marketplace-provider-offerings/{uuid}/update_type/';
|
|
51151
|
+
};
|
|
51152
|
+
export type MarketplaceProviderOfferingsUpdateTypeResponses = {
|
|
51153
|
+
/**
|
|
51154
|
+
* No response body
|
|
51155
|
+
*/
|
|
51156
|
+
200: unknown;
|
|
51157
|
+
};
|
|
50546
51158
|
export type MarketplaceProviderOfferingsUpdateUserData = {
|
|
50547
51159
|
body: UserRoleUpdateRequest;
|
|
50548
51160
|
path: {
|
|
@@ -50668,6 +51280,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
|
|
|
50668
51280
|
*
|
|
50669
51281
|
*/
|
|
50670
51282
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
51283
|
+
/**
|
|
51284
|
+
* Offering group UUID
|
|
51285
|
+
*/
|
|
51286
|
+
offering_group_uuid?: string;
|
|
50671
51287
|
/**
|
|
50672
51288
|
* Organization group UUID
|
|
50673
51289
|
*/
|
|
@@ -50844,6 +51460,10 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
|
|
|
50844
51460
|
*
|
|
50845
51461
|
*/
|
|
50846
51462
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
51463
|
+
/**
|
|
51464
|
+
* Offering group UUID
|
|
51465
|
+
*/
|
|
51466
|
+
offering_group_uuid?: string;
|
|
50847
51467
|
/**
|
|
50848
51468
|
* Organization group UUID
|
|
50849
51469
|
*/
|
|
@@ -51635,6 +52255,18 @@ export type MarketplaceProviderResourcesAddUserResponses = {
|
|
|
51635
52255
|
201: UserRoleExpirationTime;
|
|
51636
52256
|
};
|
|
51637
52257
|
export type MarketplaceProviderResourcesAddUserResponse = MarketplaceProviderResourcesAddUserResponses[keyof MarketplaceProviderResourcesAddUserResponses];
|
|
52258
|
+
export type MarketplaceProviderResourcesAdjustDatesData = {
|
|
52259
|
+
body: AdjustResourceDatesRequest;
|
|
52260
|
+
path: {
|
|
52261
|
+
uuid: string;
|
|
52262
|
+
};
|
|
52263
|
+
query?: never;
|
|
52264
|
+
url: '/api/marketplace-provider-resources/{uuid}/adjust_dates/';
|
|
52265
|
+
};
|
|
52266
|
+
export type MarketplaceProviderResourcesAdjustDatesResponses = {
|
|
52267
|
+
200: ResourceResponseStatus;
|
|
52268
|
+
};
|
|
52269
|
+
export type MarketplaceProviderResourcesAdjustDatesResponse = MarketplaceProviderResourcesAdjustDatesResponses[keyof MarketplaceProviderResourcesAdjustDatesResponses];
|
|
51638
52270
|
export type MarketplaceProviderResourcesDeleteUserData = {
|
|
51639
52271
|
body: UserRoleDeleteRequest;
|
|
51640
52272
|
path: {
|
|
@@ -52454,6 +53086,10 @@ export type MarketplacePublicOfferingsListData = {
|
|
|
52454
53086
|
*
|
|
52455
53087
|
*/
|
|
52456
53088
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
53089
|
+
/**
|
|
53090
|
+
* Offering group UUID
|
|
53091
|
+
*/
|
|
53092
|
+
offering_group_uuid?: string;
|
|
52457
53093
|
/**
|
|
52458
53094
|
* Organization group UUID
|
|
52459
53095
|
*/
|
|
@@ -52630,6 +53266,10 @@ export type MarketplacePublicOfferingsCountData = {
|
|
|
52630
53266
|
*
|
|
52631
53267
|
*/
|
|
52632
53268
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
53269
|
+
/**
|
|
53270
|
+
* Offering group UUID
|
|
53271
|
+
*/
|
|
53272
|
+
offering_group_uuid?: string;
|
|
52633
53273
|
/**
|
|
52634
53274
|
* Organization group UUID
|
|
52635
53275
|
*/
|
|
@@ -53008,7 +53648,12 @@ export type MarketplaceResourceProjectsDestroyData = {
|
|
|
53008
53648
|
path: {
|
|
53009
53649
|
uuid: string;
|
|
53010
53650
|
};
|
|
53011
|
-
query?:
|
|
53651
|
+
query?: {
|
|
53652
|
+
/**
|
|
53653
|
+
* Staff-only: when true, hard-delete the resource project instead of soft-deleting it.
|
|
53654
|
+
*/
|
|
53655
|
+
force?: boolean;
|
|
53656
|
+
};
|
|
53012
53657
|
url: '/api/marketplace-resource-projects/{uuid}/';
|
|
53013
53658
|
};
|
|
53014
53659
|
export type MarketplaceResourceProjectsDestroyResponses = {
|
|
@@ -53147,6 +53792,18 @@ export type MarketplaceResourceProjectsListUsersListResponses = {
|
|
|
53147
53792
|
200: Array<UserRoleDetails>;
|
|
53148
53793
|
};
|
|
53149
53794
|
export type MarketplaceResourceProjectsListUsersListResponse = MarketplaceResourceProjectsListUsersListResponses[keyof MarketplaceResourceProjectsListUsersListResponses];
|
|
53795
|
+
export type MarketplaceResourceProjectsRecoverData = {
|
|
53796
|
+
body?: ResourceProjectRecoveryRequest;
|
|
53797
|
+
path: {
|
|
53798
|
+
uuid: string;
|
|
53799
|
+
};
|
|
53800
|
+
query?: never;
|
|
53801
|
+
url: '/api/marketplace-resource-projects/{uuid}/recover/';
|
|
53802
|
+
};
|
|
53803
|
+
export type MarketplaceResourceProjectsRecoverResponses = {
|
|
53804
|
+
200: ResourceProject;
|
|
53805
|
+
};
|
|
53806
|
+
export type MarketplaceResourceProjectsRecoverResponse = MarketplaceResourceProjectsRecoverResponses[keyof MarketplaceResourceProjectsRecoverResponses];
|
|
53150
53807
|
export type MarketplaceResourceProjectsUpdateUserData = {
|
|
53151
53808
|
body: UserRoleUpdateRequest;
|
|
53152
53809
|
path: {
|
|
@@ -53608,6 +54265,18 @@ export type MarketplaceResourcesAddUserResponses = {
|
|
|
53608
54265
|
201: UserRoleExpirationTime;
|
|
53609
54266
|
};
|
|
53610
54267
|
export type MarketplaceResourcesAddUserResponse = MarketplaceResourcesAddUserResponses[keyof MarketplaceResourcesAddUserResponses];
|
|
54268
|
+
export type MarketplaceResourcesAdjustDatesData = {
|
|
54269
|
+
body: AdjustResourceDatesRequest;
|
|
54270
|
+
path: {
|
|
54271
|
+
uuid: string;
|
|
54272
|
+
};
|
|
54273
|
+
query?: never;
|
|
54274
|
+
url: '/api/marketplace-resources/{uuid}/adjust_dates/';
|
|
54275
|
+
};
|
|
54276
|
+
export type MarketplaceResourcesAdjustDatesResponses = {
|
|
54277
|
+
200: ResourceResponseStatus;
|
|
54278
|
+
};
|
|
54279
|
+
export type MarketplaceResourcesAdjustDatesResponse = MarketplaceResourcesAdjustDatesResponses[keyof MarketplaceResourcesAdjustDatesResponses];
|
|
53611
54280
|
export type MarketplaceResourcesDeleteUserData = {
|
|
53612
54281
|
body: UserRoleDeleteRequest;
|
|
53613
54282
|
path: {
|
|
@@ -55661,6 +56330,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
|
|
|
55661
56330
|
*
|
|
55662
56331
|
*/
|
|
55663
56332
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
56333
|
+
/**
|
|
56334
|
+
* Offering group UUID
|
|
56335
|
+
*/
|
|
56336
|
+
offering_group_uuid?: string;
|
|
55664
56337
|
/**
|
|
55665
56338
|
* Organization group UUID
|
|
55666
56339
|
*/
|
|
@@ -56631,6 +57304,80 @@ export type MarketplaceSiteAgentIdentitiesCleanupOrphanedResponses = {
|
|
|
56631
57304
|
200: CleanupResponse;
|
|
56632
57305
|
};
|
|
56633
57306
|
export type MarketplaceSiteAgentIdentitiesCleanupOrphanedResponse = MarketplaceSiteAgentIdentitiesCleanupOrphanedResponses[keyof MarketplaceSiteAgentIdentitiesCleanupOrphanedResponses];
|
|
57307
|
+
export type MarketplaceSiteAgentLogsListData = {
|
|
57308
|
+
body?: never;
|
|
57309
|
+
path?: never;
|
|
57310
|
+
query?: {
|
|
57311
|
+
agent_identity_uuid?: string;
|
|
57312
|
+
level?: string;
|
|
57313
|
+
offering_uuid?: string;
|
|
57314
|
+
/**
|
|
57315
|
+
* A page number within the paginated result set.
|
|
57316
|
+
*/
|
|
57317
|
+
page?: number;
|
|
57318
|
+
/**
|
|
57319
|
+
* Number of results to return per page.
|
|
57320
|
+
*/
|
|
57321
|
+
page_size?: number;
|
|
57322
|
+
timestamp_from?: number;
|
|
57323
|
+
timestamp_to?: number;
|
|
57324
|
+
};
|
|
57325
|
+
url: '/api/marketplace-site-agent-logs/';
|
|
57326
|
+
};
|
|
57327
|
+
export type MarketplaceSiteAgentLogsListResponses = {
|
|
57328
|
+
200: Array<SiteAgentLog>;
|
|
57329
|
+
};
|
|
57330
|
+
export type MarketplaceSiteAgentLogsListResponse = MarketplaceSiteAgentLogsListResponses[keyof MarketplaceSiteAgentLogsListResponses];
|
|
57331
|
+
export type MarketplaceSiteAgentLogsCountData = {
|
|
57332
|
+
body?: never;
|
|
57333
|
+
path?: never;
|
|
57334
|
+
query?: {
|
|
57335
|
+
agent_identity_uuid?: string;
|
|
57336
|
+
level?: string;
|
|
57337
|
+
offering_uuid?: string;
|
|
57338
|
+
/**
|
|
57339
|
+
* A page number within the paginated result set.
|
|
57340
|
+
*/
|
|
57341
|
+
page?: number;
|
|
57342
|
+
/**
|
|
57343
|
+
* Number of results to return per page.
|
|
57344
|
+
*/
|
|
57345
|
+
page_size?: number;
|
|
57346
|
+
timestamp_from?: number;
|
|
57347
|
+
timestamp_to?: number;
|
|
57348
|
+
};
|
|
57349
|
+
url: '/api/marketplace-site-agent-logs/';
|
|
57350
|
+
};
|
|
57351
|
+
export type MarketplaceSiteAgentLogsCountResponses = {
|
|
57352
|
+
/**
|
|
57353
|
+
* No response body
|
|
57354
|
+
*/
|
|
57355
|
+
200: unknown;
|
|
57356
|
+
};
|
|
57357
|
+
export type MarketplaceSiteAgentLogsCreateData = {
|
|
57358
|
+
body: Array<SiteAgentLogCreateRequest>;
|
|
57359
|
+
path?: never;
|
|
57360
|
+
query?: {
|
|
57361
|
+
agent_identity_uuid?: string;
|
|
57362
|
+
level?: string;
|
|
57363
|
+
offering_uuid?: string;
|
|
57364
|
+
/**
|
|
57365
|
+
* A page number within the paginated result set.
|
|
57366
|
+
*/
|
|
57367
|
+
page?: number;
|
|
57368
|
+
/**
|
|
57369
|
+
* Number of results to return per page.
|
|
57370
|
+
*/
|
|
57371
|
+
page_size?: number;
|
|
57372
|
+
timestamp_from?: number;
|
|
57373
|
+
timestamp_to?: number;
|
|
57374
|
+
};
|
|
57375
|
+
url: '/api/marketplace-site-agent-logs/';
|
|
57376
|
+
};
|
|
57377
|
+
export type MarketplaceSiteAgentLogsCreateResponses = {
|
|
57378
|
+
201: Array<SiteAgentLog>;
|
|
57379
|
+
};
|
|
57380
|
+
export type MarketplaceSiteAgentLogsCreateResponse = MarketplaceSiteAgentLogsCreateResponses[keyof MarketplaceSiteAgentLogsCreateResponses];
|
|
56634
57381
|
export type MarketplaceSiteAgentProcessorsListData = {
|
|
56635
57382
|
body?: never;
|
|
56636
57383
|
path?: never;
|
|
@@ -71373,6 +72120,46 @@ export type PersonalAccessTokensRotateResponses = {
|
|
|
71373
72120
|
201: PersonalAccessTokenCreated;
|
|
71374
72121
|
};
|
|
71375
72122
|
export type PersonalAccessTokensRotateResponse = PersonalAccessTokensRotateResponses[keyof PersonalAccessTokensRotateResponses];
|
|
72123
|
+
export type PersonalAccessTokensAvailableBindingTargetsListData = {
|
|
72124
|
+
body?: never;
|
|
72125
|
+
path?: never;
|
|
72126
|
+
query?: {
|
|
72127
|
+
/**
|
|
72128
|
+
* A page number within the paginated result set.
|
|
72129
|
+
*/
|
|
72130
|
+
page?: number;
|
|
72131
|
+
/**
|
|
72132
|
+
* Number of results to return per page.
|
|
72133
|
+
*/
|
|
72134
|
+
page_size?: number;
|
|
72135
|
+
};
|
|
72136
|
+
url: '/api/personal-access-tokens/available_binding_targets/';
|
|
72137
|
+
};
|
|
72138
|
+
export type PersonalAccessTokensAvailableBindingTargetsListResponses = {
|
|
72139
|
+
200: Array<AvailableBindingTarget>;
|
|
72140
|
+
};
|
|
72141
|
+
export type PersonalAccessTokensAvailableBindingTargetsListResponse = PersonalAccessTokensAvailableBindingTargetsListResponses[keyof PersonalAccessTokensAvailableBindingTargetsListResponses];
|
|
72142
|
+
export type PersonalAccessTokensAvailableBindingTargetsCountData = {
|
|
72143
|
+
body?: never;
|
|
72144
|
+
path?: never;
|
|
72145
|
+
query?: {
|
|
72146
|
+
/**
|
|
72147
|
+
* A page number within the paginated result set.
|
|
72148
|
+
*/
|
|
72149
|
+
page?: number;
|
|
72150
|
+
/**
|
|
72151
|
+
* Number of results to return per page.
|
|
72152
|
+
*/
|
|
72153
|
+
page_size?: number;
|
|
72154
|
+
};
|
|
72155
|
+
url: '/api/personal-access-tokens/available_binding_targets/';
|
|
72156
|
+
};
|
|
72157
|
+
export type PersonalAccessTokensAvailableBindingTargetsCountResponses = {
|
|
72158
|
+
/**
|
|
72159
|
+
* No response body
|
|
72160
|
+
*/
|
|
72161
|
+
200: unknown;
|
|
72162
|
+
};
|
|
71376
72163
|
export type PersonalAccessTokensAvailableScopesListData = {
|
|
71377
72164
|
body?: never;
|
|
71378
72165
|
path?: never;
|
|
@@ -72998,6 +73785,18 @@ export type ProposalProposalsChecklistReviewRetrieveResponses = {
|
|
|
72998
73785
|
200: ChecklistReviewerResponse;
|
|
72999
73786
|
};
|
|
73000
73787
|
export type ProposalProposalsChecklistReviewRetrieveResponse = ProposalProposalsChecklistReviewRetrieveResponses[keyof ProposalProposalsChecklistReviewRetrieveResponses];
|
|
73788
|
+
export type ProposalProposalsCompleteWorkflowStepData = {
|
|
73789
|
+
body: CompleteWorkflowStepRequest;
|
|
73790
|
+
path: {
|
|
73791
|
+
uuid: string;
|
|
73792
|
+
};
|
|
73793
|
+
query?: never;
|
|
73794
|
+
url: '/api/proposal-proposals/{uuid}/complete_workflow_step/';
|
|
73795
|
+
};
|
|
73796
|
+
export type ProposalProposalsCompleteWorkflowStepResponses = {
|
|
73797
|
+
200: CompleteWorkflowStepResponse;
|
|
73798
|
+
};
|
|
73799
|
+
export type ProposalProposalsCompleteWorkflowStepResponse = ProposalProposalsCompleteWorkflowStepResponses[keyof ProposalProposalsCompleteWorkflowStepResponses];
|
|
73001
73800
|
export type ProposalProposalsCompletionReviewStatusRetrieveData = {
|
|
73002
73801
|
body?: never;
|
|
73003
73802
|
path: {
|
|
@@ -73145,6 +73944,18 @@ export type ProposalProposalsRejectResponses = {
|
|
|
73145
73944
|
*/
|
|
73146
73945
|
200: unknown;
|
|
73147
73946
|
};
|
|
73947
|
+
export type ProposalProposalsRejectWorkflowStepData = {
|
|
73948
|
+
body: RejectWorkflowStepRequest;
|
|
73949
|
+
path: {
|
|
73950
|
+
uuid: string;
|
|
73951
|
+
};
|
|
73952
|
+
query?: never;
|
|
73953
|
+
url: '/api/proposal-proposals/{uuid}/reject_workflow_step/';
|
|
73954
|
+
};
|
|
73955
|
+
export type ProposalProposalsRejectWorkflowStepResponses = {
|
|
73956
|
+
200: RejectWorkflowStepResponse;
|
|
73957
|
+
};
|
|
73958
|
+
export type ProposalProposalsRejectWorkflowStepResponse = ProposalProposalsRejectWorkflowStepResponses[keyof ProposalProposalsRejectWorkflowStepResponses];
|
|
73148
73959
|
export type ProposalProposalsResourcesListData = {
|
|
73149
73960
|
body?: never;
|
|
73150
73961
|
path: {
|
|
@@ -73295,6 +74106,45 @@ export type ProposalProposalsUpdateUserResponses = {
|
|
|
73295
74106
|
200: UserRoleExpirationTime;
|
|
73296
74107
|
};
|
|
73297
74108
|
export type ProposalProposalsUpdateUserResponse = ProposalProposalsUpdateUserResponses[keyof ProposalProposalsUpdateUserResponses];
|
|
74109
|
+
export type ProposalProposalsWorkflowStatesListData = {
|
|
74110
|
+
body?: never;
|
|
74111
|
+
path: {
|
|
74112
|
+
uuid: string;
|
|
74113
|
+
};
|
|
74114
|
+
query?: {
|
|
74115
|
+
call_uuid?: string;
|
|
74116
|
+
created_by_uuid?: string;
|
|
74117
|
+
my_proposals?: boolean;
|
|
74118
|
+
name?: string;
|
|
74119
|
+
/**
|
|
74120
|
+
* Ordering
|
|
74121
|
+
*
|
|
74122
|
+
*
|
|
74123
|
+
*/
|
|
74124
|
+
o?: Array<ProposalOEnum>;
|
|
74125
|
+
organization_uuid?: string;
|
|
74126
|
+
/**
|
|
74127
|
+
* A page number within the paginated result set.
|
|
74128
|
+
*/
|
|
74129
|
+
page?: number;
|
|
74130
|
+
/**
|
|
74131
|
+
* Number of results to return per page.
|
|
74132
|
+
*/
|
|
74133
|
+
page_size?: number;
|
|
74134
|
+
round?: string;
|
|
74135
|
+
round_uuid?: string;
|
|
74136
|
+
/**
|
|
74137
|
+
* Slug
|
|
74138
|
+
*/
|
|
74139
|
+
slug?: string;
|
|
74140
|
+
state?: Array<ProposalStates>;
|
|
74141
|
+
};
|
|
74142
|
+
url: '/api/proposal-proposals/{uuid}/workflow_states/';
|
|
74143
|
+
};
|
|
74144
|
+
export type ProposalProposalsWorkflowStatesListResponses = {
|
|
74145
|
+
200: Array<ProposalWorkflowStepInstance>;
|
|
74146
|
+
};
|
|
74147
|
+
export type ProposalProposalsWorkflowStatesListResponse = ProposalProposalsWorkflowStatesListResponses[keyof ProposalProposalsWorkflowStatesListResponses];
|
|
73298
74148
|
export type ProposalProposalsChecklistTemplateRetrieveData = {
|
|
73299
74149
|
body?: never;
|
|
73300
74150
|
path?: never;
|
|
@@ -74334,6 +75184,94 @@ export type ProposalProtectedCallsUpdateUserResponses = {
|
|
|
74334
75184
|
200: UserRoleExpirationTime;
|
|
74335
75185
|
};
|
|
74336
75186
|
export type ProposalProtectedCallsUpdateUserResponse = ProposalProtectedCallsUpdateUserResponses[keyof ProposalProtectedCallsUpdateUserResponses];
|
|
75187
|
+
export type ProposalProtectedCallsWorkflowStepsListData = {
|
|
75188
|
+
body?: never;
|
|
75189
|
+
path: {
|
|
75190
|
+
uuid: string;
|
|
75191
|
+
};
|
|
75192
|
+
query?: {
|
|
75193
|
+
/**
|
|
75194
|
+
* A page number within the paginated result set.
|
|
75195
|
+
*/
|
|
75196
|
+
page?: number;
|
|
75197
|
+
/**
|
|
75198
|
+
* Number of results to return per page.
|
|
75199
|
+
*/
|
|
75200
|
+
page_size?: number;
|
|
75201
|
+
};
|
|
75202
|
+
url: '/api/proposal-protected-calls/{uuid}/workflow_steps/';
|
|
75203
|
+
};
|
|
75204
|
+
export type ProposalProtectedCallsWorkflowStepsListResponses = {
|
|
75205
|
+
200: Array<CallWorkflowStep>;
|
|
75206
|
+
};
|
|
75207
|
+
export type ProposalProtectedCallsWorkflowStepsListResponse = ProposalProtectedCallsWorkflowStepsListResponses[keyof ProposalProtectedCallsWorkflowStepsListResponses];
|
|
75208
|
+
export type ProposalProtectedCallsWorkflowStepsSetData = {
|
|
75209
|
+
body: CallWorkflowStepRequest;
|
|
75210
|
+
path: {
|
|
75211
|
+
uuid: string;
|
|
75212
|
+
};
|
|
75213
|
+
query?: never;
|
|
75214
|
+
url: '/api/proposal-protected-calls/{uuid}/workflow_steps/';
|
|
75215
|
+
};
|
|
75216
|
+
export type ProposalProtectedCallsWorkflowStepsSetResponses = {
|
|
75217
|
+
200: CallWorkflowStep;
|
|
75218
|
+
};
|
|
75219
|
+
export type ProposalProtectedCallsWorkflowStepsSetResponse = ProposalProtectedCallsWorkflowStepsSetResponses[keyof ProposalProtectedCallsWorkflowStepsSetResponses];
|
|
75220
|
+
export type ProposalProtectedCallsWorkflowStepsDestroyData = {
|
|
75221
|
+
body?: never;
|
|
75222
|
+
path: {
|
|
75223
|
+
obj_uuid: string;
|
|
75224
|
+
uuid: string;
|
|
75225
|
+
};
|
|
75226
|
+
query?: never;
|
|
75227
|
+
url: '/api/proposal-protected-calls/{uuid}/workflow_steps/{obj_uuid}/';
|
|
75228
|
+
};
|
|
75229
|
+
export type ProposalProtectedCallsWorkflowStepsDestroyResponses = {
|
|
75230
|
+
/**
|
|
75231
|
+
* No response body
|
|
75232
|
+
*/
|
|
75233
|
+
204: void;
|
|
75234
|
+
};
|
|
75235
|
+
export type ProposalProtectedCallsWorkflowStepsDestroyResponse = ProposalProtectedCallsWorkflowStepsDestroyResponses[keyof ProposalProtectedCallsWorkflowStepsDestroyResponses];
|
|
75236
|
+
export type ProposalProtectedCallsWorkflowStepsRetrieveData = {
|
|
75237
|
+
body?: never;
|
|
75238
|
+
path: {
|
|
75239
|
+
obj_uuid: string;
|
|
75240
|
+
uuid: string;
|
|
75241
|
+
};
|
|
75242
|
+
query?: never;
|
|
75243
|
+
url: '/api/proposal-protected-calls/{uuid}/workflow_steps/{obj_uuid}/';
|
|
75244
|
+
};
|
|
75245
|
+
export type ProposalProtectedCallsWorkflowStepsRetrieveResponses = {
|
|
75246
|
+
200: CallWorkflowStep;
|
|
75247
|
+
};
|
|
75248
|
+
export type ProposalProtectedCallsWorkflowStepsRetrieveResponse = ProposalProtectedCallsWorkflowStepsRetrieveResponses[keyof ProposalProtectedCallsWorkflowStepsRetrieveResponses];
|
|
75249
|
+
export type ProposalProtectedCallsWorkflowStepsPartialUpdateData = {
|
|
75250
|
+
body?: PatchedCallWorkflowStepRequest;
|
|
75251
|
+
path: {
|
|
75252
|
+
obj_uuid: string;
|
|
75253
|
+
uuid: string;
|
|
75254
|
+
};
|
|
75255
|
+
query?: never;
|
|
75256
|
+
url: '/api/proposal-protected-calls/{uuid}/workflow_steps/{obj_uuid}/';
|
|
75257
|
+
};
|
|
75258
|
+
export type ProposalProtectedCallsWorkflowStepsPartialUpdateResponses = {
|
|
75259
|
+
200: CallWorkflowStep;
|
|
75260
|
+
};
|
|
75261
|
+
export type ProposalProtectedCallsWorkflowStepsPartialUpdateResponse = ProposalProtectedCallsWorkflowStepsPartialUpdateResponses[keyof ProposalProtectedCallsWorkflowStepsPartialUpdateResponses];
|
|
75262
|
+
export type ProposalProtectedCallsWorkflowStepsUpdateData = {
|
|
75263
|
+
body: CallWorkflowStepRequest;
|
|
75264
|
+
path: {
|
|
75265
|
+
obj_uuid: string;
|
|
75266
|
+
uuid: string;
|
|
75267
|
+
};
|
|
75268
|
+
query?: never;
|
|
75269
|
+
url: '/api/proposal-protected-calls/{uuid}/workflow_steps/{obj_uuid}/';
|
|
75270
|
+
};
|
|
75271
|
+
export type ProposalProtectedCallsWorkflowStepsUpdateResponses = {
|
|
75272
|
+
200: CallWorkflowStep;
|
|
75273
|
+
};
|
|
75274
|
+
export type ProposalProtectedCallsWorkflowStepsUpdateResponse = ProposalProtectedCallsWorkflowStepsUpdateResponses[keyof ProposalProtectedCallsWorkflowStepsUpdateResponses];
|
|
74337
75275
|
export type ProposalProtectedCallsAvailableComplianceChecklistsListData = {
|
|
74338
75276
|
body?: never;
|
|
74339
75277
|
path?: never;
|
|
@@ -83759,6 +84697,18 @@ export type UsersPullRemoteUserResponses = {
|
|
|
83759
84697
|
*/
|
|
83760
84698
|
200: unknown;
|
|
83761
84699
|
};
|
|
84700
|
+
export type UsersPullScimAttributesData = {
|
|
84701
|
+
body?: never;
|
|
84702
|
+
path: {
|
|
84703
|
+
uuid: string;
|
|
84704
|
+
};
|
|
84705
|
+
query?: never;
|
|
84706
|
+
url: '/api/users/{uuid}/pull_scim_attributes/';
|
|
84707
|
+
};
|
|
84708
|
+
export type UsersPullScimAttributesResponses = {
|
|
84709
|
+
200: ScimPullAttributesResponse;
|
|
84710
|
+
};
|
|
84711
|
+
export type UsersPullScimAttributesResponse = UsersPullScimAttributesResponses[keyof UsersPullScimAttributesResponses];
|
|
83762
84712
|
export type UsersRefreshTokenData = {
|
|
83763
84713
|
body?: never;
|
|
83764
84714
|
path: {
|