waldur-js-client 8.0.9-dev.1 → 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 +87 -2
- package/dist/sdk.gen.js +632 -1
- package/dist/types.gen.d.ts +941 -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;
|
|
@@ -15676,6 +15882,7 @@ export type OrganizationalUser = {
|
|
|
15676
15882
|
full_name: string;
|
|
15677
15883
|
role: string | null;
|
|
15678
15884
|
};
|
|
15885
|
+
export type OutcomeEnum = 'eligible' | 'ineligible' | 'feasible' | 'infeasible' | 'reviewed' | 'approved' | 'declined' | 'accepted' | 'rejected' | 'expired';
|
|
15679
15886
|
export type PaidRequest = {
|
|
15680
15887
|
date: string;
|
|
15681
15888
|
proof?: Blob | File;
|
|
@@ -15967,6 +16174,54 @@ export type PatchedCallReviewerPoolUpdateRequest = {
|
|
|
15967
16174
|
*/
|
|
15968
16175
|
max_assignments?: number;
|
|
15969
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
|
+
};
|
|
15970
16225
|
export type PatchedCategoryColumnRequest = {
|
|
15971
16226
|
/**
|
|
15972
16227
|
* Index allows to reorder columns.
|
|
@@ -16483,6 +16738,11 @@ export type PatchedOfferingEstimatedCostPolicyRequest = {
|
|
|
16483
16738
|
*/
|
|
16484
16739
|
apply_to_all?: boolean;
|
|
16485
16740
|
};
|
|
16741
|
+
export type PatchedOfferingGroupRequest = {
|
|
16742
|
+
title?: string;
|
|
16743
|
+
description?: string;
|
|
16744
|
+
icon?: (Blob | File) | null;
|
|
16745
|
+
};
|
|
16486
16746
|
export type PatchedOfferingPartitionUpdateRequest = {
|
|
16487
16747
|
partition_uuid?: string;
|
|
16488
16748
|
/**
|
|
@@ -17937,6 +18197,7 @@ export type PersonalAccessToken = {
|
|
|
17937
18197
|
name: string;
|
|
17938
18198
|
token_prefix: string;
|
|
17939
18199
|
scopes: Array<string>;
|
|
18200
|
+
readonly allowed_scopes: Array<AllowedScopeOutput>;
|
|
17940
18201
|
expires_at: string;
|
|
17941
18202
|
is_active: boolean;
|
|
17942
18203
|
last_used_at: string;
|
|
@@ -17950,6 +18211,10 @@ export type PersonalAccessToken = {
|
|
|
17950
18211
|
export type PersonalAccessTokenCreateRequest = {
|
|
17951
18212
|
name: string;
|
|
17952
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>;
|
|
17953
18218
|
expires_at: string;
|
|
17954
18219
|
};
|
|
17955
18220
|
export type PersonalAccessTokenCreated = {
|
|
@@ -17960,6 +18225,7 @@ export type PersonalAccessTokenCreated = {
|
|
|
17960
18225
|
*/
|
|
17961
18226
|
token: string;
|
|
17962
18227
|
scopes: Array<string>;
|
|
18228
|
+
allowed_scopes: Array<AllowedScopeOutput>;
|
|
17963
18229
|
expires_at: string;
|
|
17964
18230
|
created: string;
|
|
17965
18231
|
};
|
|
@@ -18236,6 +18502,12 @@ export type Project = {
|
|
|
18236
18502
|
*/
|
|
18237
18503
|
user_identity_sources?: unknown;
|
|
18238
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;
|
|
18239
18511
|
science_sub_domain?: string | null;
|
|
18240
18512
|
readonly science_sub_domain_name?: string;
|
|
18241
18513
|
/**
|
|
@@ -19106,6 +19378,33 @@ export type ProposalUpdateProjectDetailsRequest = {
|
|
|
19106
19378
|
duration_in_days?: number | null;
|
|
19107
19379
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
19108
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';
|
|
19109
19408
|
export type ProposedAssignment = {
|
|
19110
19409
|
readonly url: string;
|
|
19111
19410
|
readonly uuid: string;
|
|
@@ -19356,6 +19655,8 @@ export type ProviderOffering = {
|
|
|
19356
19655
|
resource_options?: unknown;
|
|
19357
19656
|
secret_options?: MergedSecretOptions;
|
|
19358
19657
|
thumbnail?: string | null;
|
|
19658
|
+
readonly offering_group_uuid?: string | null;
|
|
19659
|
+
readonly offering_group_title?: string | null;
|
|
19359
19660
|
};
|
|
19360
19661
|
export type ProviderOfferingCosts = {
|
|
19361
19662
|
/**
|
|
@@ -19488,6 +19789,9 @@ export type ProviderOfferingDetails = {
|
|
|
19488
19789
|
compliance_checklist?: string | null;
|
|
19489
19790
|
readonly profile_uuid?: string | null;
|
|
19490
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;
|
|
19491
19795
|
readonly integration_status?: Array<IntegrationStatus> | null;
|
|
19492
19796
|
readonly google_calendar_is_public?: boolean | null;
|
|
19493
19797
|
/**
|
|
@@ -19843,6 +20147,9 @@ export type PublicOfferingDetails = {
|
|
|
19843
20147
|
compliance_checklist?: string | null;
|
|
19844
20148
|
readonly profile_uuid?: string | null;
|
|
19845
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;
|
|
19846
20153
|
readonly user_has_consent?: boolean;
|
|
19847
20154
|
readonly is_accessible?: boolean;
|
|
19848
20155
|
readonly google_calendar_is_public?: boolean | null;
|
|
@@ -21168,6 +21475,20 @@ export type ReferenceNumberRequest = {
|
|
|
21168
21475
|
*/
|
|
21169
21476
|
reference_number?: string;
|
|
21170
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
|
+
};
|
|
21171
21492
|
export type RelationshipTypeEnum = 'employment' | 'consulting' | 'equity' | 'board' | 'royalties' | 'gifts' | 'other';
|
|
21172
21493
|
export type RemoteAllocation = {
|
|
21173
21494
|
readonly url?: string;
|
|
@@ -21824,6 +22145,14 @@ export type ResourceProject = {
|
|
|
21824
22145
|
readonly resource_name: string;
|
|
21825
22146
|
readonly created: string;
|
|
21826
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;
|
|
21827
22156
|
};
|
|
21828
22157
|
export type ResourceProjectBackendId = {
|
|
21829
22158
|
backend_id: string;
|
|
@@ -21843,6 +22172,16 @@ export type ResourceProjectErrorMessageRequest = {
|
|
|
21843
22172
|
*/
|
|
21844
22173
|
error_message?: string;
|
|
21845
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
|
+
};
|
|
21846
22185
|
export type ResourceProjectRequest = {
|
|
21847
22186
|
resource: string;
|
|
21848
22187
|
name: string;
|
|
@@ -22167,6 +22506,7 @@ export type ResourcesLimits = {
|
|
|
22167
22506
|
*/
|
|
22168
22507
|
readonly organization_group_uuid: string;
|
|
22169
22508
|
};
|
|
22509
|
+
export type ResponsibleRoleEnum = 'call_manager' | 'offering_manager' | 'reviewer' | 'panel_member' | 'applicant';
|
|
22170
22510
|
export type ReviewCommentRequest = {
|
|
22171
22511
|
/**
|
|
22172
22512
|
* Optional comment for review
|
|
@@ -23407,6 +23747,10 @@ export type ScienceSubDomainRequest = {
|
|
|
23407
23747
|
name: string;
|
|
23408
23748
|
domain: string;
|
|
23409
23749
|
};
|
|
23750
|
+
export type ScimPullAttributesResponse = {
|
|
23751
|
+
detail: string;
|
|
23752
|
+
changed_fields?: Array<string>;
|
|
23753
|
+
};
|
|
23410
23754
|
export type ScimSyncAllResponse = {
|
|
23411
23755
|
detail: string;
|
|
23412
23756
|
};
|
|
@@ -23763,6 +24107,27 @@ export type SiteAgentConfigGenerationRequest = {
|
|
|
23763
24107
|
*/
|
|
23764
24108
|
timezone?: string;
|
|
23765
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
|
+
};
|
|
23766
24131
|
export type SlurmAllocation = {
|
|
23767
24132
|
readonly url?: string;
|
|
23768
24133
|
readonly uuid?: string;
|
|
@@ -24417,6 +24782,7 @@ export type StateTransitionError = {
|
|
|
24417
24782
|
*/
|
|
24418
24783
|
detail: string;
|
|
24419
24784
|
};
|
|
24785
|
+
export type StepEnum = 'administrative_check' | 'technical_assessment' | 'expert_review' | 'panel_review' | 'allocation_decision' | 'award_response';
|
|
24420
24786
|
export type StorageDataType = {
|
|
24421
24787
|
key: string;
|
|
24422
24788
|
label: string;
|
|
@@ -25051,6 +25417,7 @@ export type TransactionStats = {
|
|
|
25051
25417
|
*/
|
|
25052
25418
|
readonly deadlocks: number;
|
|
25053
25419
|
};
|
|
25420
|
+
export type TransitionModeEnum = 'automatic_on_completion';
|
|
25054
25421
|
export type TriggerCoiDetectionJobTypeEnum = 'full_call' | 'incremental';
|
|
25055
25422
|
export type TriggerCoiDetectionRequest = {
|
|
25056
25423
|
job_type?: TriggerCoiDetectionJobTypeEnum;
|
|
@@ -25467,7 +25834,7 @@ export type UserAuthToken = {
|
|
|
25467
25834
|
};
|
|
25468
25835
|
export type UserChecklistCompletion = {
|
|
25469
25836
|
readonly uuid: string;
|
|
25470
|
-
offering_user:
|
|
25837
|
+
offering_user: UserChecklistCompletionOfferingUser | null;
|
|
25471
25838
|
readonly offering_user_uuid: string | null;
|
|
25472
25839
|
readonly offering_name: string | null;
|
|
25473
25840
|
readonly offering_uuid: string | null;
|
|
@@ -25498,6 +25865,17 @@ export type UserChecklistCompletion = {
|
|
|
25498
25865
|
readonly created: string;
|
|
25499
25866
|
readonly modified: string;
|
|
25500
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
|
+
};
|
|
25501
25879
|
export type UserConsentInfo = {
|
|
25502
25880
|
readonly uuid: string;
|
|
25503
25881
|
readonly version: string;
|
|
@@ -26299,6 +26677,15 @@ export type WebHookRequest = {
|
|
|
26299
26677
|
content_type?: WebHookContentTypeEnum;
|
|
26300
26678
|
};
|
|
26301
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
|
+
};
|
|
26302
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';
|
|
26303
26690
|
export type OfferingProfileRole = {
|
|
26304
26691
|
uuid: string;
|
|
@@ -26970,6 +27357,28 @@ export type OfferingFileRequestMultipart = {
|
|
|
26970
27357
|
offering: string;
|
|
26971
27358
|
file: Blob | File;
|
|
26972
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
|
+
};
|
|
26973
27382
|
export type OrderConsumerInfoRequestForm = {
|
|
26974
27383
|
consumer_message?: string;
|
|
26975
27384
|
consumer_message_attachment?: Blob | File;
|
|
@@ -27045,6 +27454,7 @@ export type OfferingCreateRequestForm = {
|
|
|
27045
27454
|
image?: (Blob | File) | null;
|
|
27046
27455
|
backend_metadata?: unknown;
|
|
27047
27456
|
compliance_checklist?: string | null;
|
|
27457
|
+
offering_group?: string | null;
|
|
27048
27458
|
limits?: {
|
|
27049
27459
|
[key: string]: OfferingComponentLimitRequest;
|
|
27050
27460
|
};
|
|
@@ -27100,6 +27510,7 @@ export type OfferingCreateRequestMultipart = {
|
|
|
27100
27510
|
image?: (Blob | File) | null;
|
|
27101
27511
|
backend_metadata?: unknown;
|
|
27102
27512
|
compliance_checklist?: string | null;
|
|
27513
|
+
offering_group?: string | null;
|
|
27103
27514
|
limits?: {
|
|
27104
27515
|
[key: string]: OfferingComponentLimitRequest;
|
|
27105
27516
|
};
|
|
@@ -27603,6 +28014,12 @@ export type ConstanceSettingsRequestForm = {
|
|
|
27603
28014
|
SCIM_API_URL?: string;
|
|
27604
28015
|
SCIM_API_KEY?: string;
|
|
27605
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;
|
|
27606
28023
|
KEYCLOAK_ICON?: (Blob | File) | null;
|
|
27607
28024
|
COUNTRIES?: Array<string>;
|
|
27608
28025
|
OIDC_AUTH_URL?: string;
|
|
@@ -27707,6 +28124,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
27707
28124
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
27708
28125
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
27709
28126
|
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
28127
|
+
SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
|
|
27710
28128
|
PAT_ENABLED?: boolean;
|
|
27711
28129
|
PAT_MAX_LIFETIME_DAYS?: number;
|
|
27712
28130
|
PAT_MAX_TOKENS_PER_USER?: number;
|
|
@@ -27872,6 +28290,12 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
27872
28290
|
SCIM_API_URL?: string;
|
|
27873
28291
|
SCIM_API_KEY?: string;
|
|
27874
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;
|
|
27875
28299
|
KEYCLOAK_ICON?: (Blob | File) | null;
|
|
27876
28300
|
COUNTRIES?: Array<string>;
|
|
27877
28301
|
OIDC_AUTH_URL?: string;
|
|
@@ -27976,6 +28400,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
27976
28400
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
27977
28401
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
27978
28402
|
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
28403
|
+
SITE_AGENT_LOG_MAX_ROWS_PER_IDENTITY?: number;
|
|
27979
28404
|
PAT_ENABLED?: boolean;
|
|
27980
28405
|
PAT_MAX_LIFETIME_DAYS?: number;
|
|
27981
28406
|
PAT_MAX_TOKENS_PER_USER?: number;
|
|
@@ -28414,6 +28839,7 @@ export type PatchedUserRequestMultipart = {
|
|
|
28414
28839
|
};
|
|
28415
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';
|
|
28416
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';
|
|
28417
28843
|
export type AnonymousChatFeedbackOEnum = '-llm_resolution_score' | '-score' | '-submitted_at' | 'llm_resolution_score' | 'score' | 'submitted_at';
|
|
28418
28844
|
export type AnonymousChatInteractionOEnum = '-created' | '-result_count' | 'created' | 'result_count';
|
|
28419
28845
|
export type AssignmentBatchListOEnum = '-created' | '-expires_at' | '-sent_at' | '-status' | 'created' | 'expires_at' | 'sent_at' | 'status';
|
|
@@ -28426,7 +28852,7 @@ export type AzureSqlDatabaseFieldEnum = 'access_url' | 'backend_id' | 'charset'
|
|
|
28426
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';
|
|
28427
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';
|
|
28428
28854
|
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';
|
|
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';
|
|
28430
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';
|
|
28431
28857
|
export type BookingResourceOEnum = '-created' | '-name' | '-schedules' | '-type' | 'created' | 'name' | 'schedules' | 'type';
|
|
28432
28858
|
export type BroadcastMessageFieldEnum = 'author_full_name' | 'body' | 'created' | 'emails' | 'query' | 'send_at' | 'state' | 'subject' | 'uuid';
|
|
@@ -28476,6 +28902,7 @@ export type CourseAccountOEnum = '-created' | '-email' | '-modified' | '-project
|
|
|
28476
28902
|
export type IntegrationStatusDetailsOEnum = '-last_request_timestamp' | 'last_request_timestamp';
|
|
28477
28903
|
export type IntegrationStatusDetailsStatusEnum = 'Active' | 'Disconnected' | 'Unknown';
|
|
28478
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';
|
|
28479
28906
|
export type OfferingPermissionOEnum = '-created' | '-email' | '-expiration_time' | '-full_name' | '-native_name' | '-role' | '-username' | 'created' | 'email' | 'expiration_time' | 'full_name' | 'native_name' | 'role' | 'username';
|
|
28480
28907
|
export type OfferingReferralOEnum = '-published' | '-relation_type' | '-resource_type' | 'published' | 'relation_type' | 'resource_type';
|
|
28481
28908
|
export type OfferingTermsOfServiceOEnum = '-created' | '-modified' | '-version' | 'created' | 'modified' | 'version';
|
|
@@ -28485,19 +28912,19 @@ export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'create
|
|
|
28485
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';
|
|
28486
28913
|
export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
|
|
28487
28914
|
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';
|
|
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';
|
|
28489
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';
|
|
28490
28917
|
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';
|
|
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';
|
|
28492
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';
|
|
28493
28920
|
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';
|
|
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';
|
|
28495
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';
|
|
28496
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';
|
|
28497
28924
|
export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
|
|
28498
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';
|
|
28499
28926
|
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';
|
|
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';
|
|
28501
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';
|
|
28502
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';
|
|
28503
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';
|
|
@@ -30003,6 +30430,7 @@ export type AffiliatedOrganizationsListData = {
|
|
|
30003
30430
|
* Limit to a customer's default affiliation list
|
|
30004
30431
|
*/
|
|
30005
30432
|
default_for_customer?: string;
|
|
30433
|
+
field?: Array<AffiliatedOrganizationFieldEnum>;
|
|
30006
30434
|
/**
|
|
30007
30435
|
* Name
|
|
30008
30436
|
*/
|
|
@@ -30117,7 +30545,9 @@ export type AffiliatedOrganizationsRetrieveData = {
|
|
|
30117
30545
|
path: {
|
|
30118
30546
|
uuid: string;
|
|
30119
30547
|
};
|
|
30120
|
-
query?:
|
|
30548
|
+
query?: {
|
|
30549
|
+
field?: Array<AffiliatedOrganizationFieldEnum>;
|
|
30550
|
+
};
|
|
30121
30551
|
url: '/api/affiliated-organizations/{uuid}/';
|
|
30122
30552
|
};
|
|
30123
30553
|
export type AffiliatedOrganizationsRetrieveResponses = {
|
|
@@ -44923,6 +45353,120 @@ export type MarketplaceOfferingFilesRetrieveResponses = {
|
|
|
44923
45353
|
200: OfferingFile;
|
|
44924
45354
|
};
|
|
44925
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];
|
|
44926
45470
|
export type MarketplaceOfferingPermissionsListData = {
|
|
44927
45471
|
body?: never;
|
|
44928
45472
|
path?: never;
|
|
@@ -48021,6 +48565,10 @@ export type MarketplaceProviderOfferingsListData = {
|
|
|
48021
48565
|
*
|
|
48022
48566
|
*/
|
|
48023
48567
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
48568
|
+
/**
|
|
48569
|
+
* Offering group UUID
|
|
48570
|
+
*/
|
|
48571
|
+
offering_group_uuid?: string;
|
|
48024
48572
|
/**
|
|
48025
48573
|
* Organization group UUID
|
|
48026
48574
|
*/
|
|
@@ -48201,6 +48749,10 @@ export type MarketplaceProviderOfferingsCountData = {
|
|
|
48201
48749
|
*
|
|
48202
48750
|
*/
|
|
48203
48751
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
48752
|
+
/**
|
|
48753
|
+
* Offering group UUID
|
|
48754
|
+
*/
|
|
48755
|
+
offering_group_uuid?: string;
|
|
48204
48756
|
/**
|
|
48205
48757
|
* Organization group UUID
|
|
48206
48758
|
*/
|
|
@@ -48518,6 +49070,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
|
|
|
48518
49070
|
*
|
|
48519
49071
|
*/
|
|
48520
49072
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
49073
|
+
/**
|
|
49074
|
+
* Offering group UUID
|
|
49075
|
+
*/
|
|
49076
|
+
offering_group_uuid?: string;
|
|
48521
49077
|
/**
|
|
48522
49078
|
* Organization group UUID
|
|
48523
49079
|
*/
|
|
@@ -48709,6 +49265,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
|
|
|
48709
49265
|
*
|
|
48710
49266
|
*/
|
|
48711
49267
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
49268
|
+
/**
|
|
49269
|
+
* Offering group UUID
|
|
49270
|
+
*/
|
|
49271
|
+
offering_group_uuid?: string;
|
|
48712
49272
|
/**
|
|
48713
49273
|
* Organization group UUID
|
|
48714
49274
|
*/
|
|
@@ -48910,6 +49470,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
|
|
|
48910
49470
|
*
|
|
48911
49471
|
*/
|
|
48912
49472
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
49473
|
+
/**
|
|
49474
|
+
* Offering group UUID
|
|
49475
|
+
*/
|
|
49476
|
+
offering_group_uuid?: string;
|
|
48913
49477
|
/**
|
|
48914
49478
|
* Organization group UUID
|
|
48915
49479
|
*/
|
|
@@ -49236,6 +49800,10 @@ export type MarketplaceProviderOfferingsHistoryListData = {
|
|
|
49236
49800
|
*
|
|
49237
49801
|
*/
|
|
49238
49802
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
49803
|
+
/**
|
|
49804
|
+
* Offering group UUID
|
|
49805
|
+
*/
|
|
49806
|
+
offering_group_uuid?: string;
|
|
49239
49807
|
/**
|
|
49240
49808
|
* Organization group UUID
|
|
49241
49809
|
*/
|
|
@@ -49477,6 +50045,10 @@ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
|
|
|
49477
50045
|
*
|
|
49478
50046
|
*/
|
|
49479
50047
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
50048
|
+
/**
|
|
50049
|
+
* Offering group UUID
|
|
50050
|
+
*/
|
|
50051
|
+
offering_group_uuid?: string;
|
|
49480
50052
|
/**
|
|
49481
50053
|
* Organization group UUID
|
|
49482
50054
|
*/
|
|
@@ -49681,6 +50253,10 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
|
|
|
49681
50253
|
*
|
|
49682
50254
|
*/
|
|
49683
50255
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
50256
|
+
/**
|
|
50257
|
+
* Offering group UUID
|
|
50258
|
+
*/
|
|
50259
|
+
offering_group_uuid?: string;
|
|
49684
50260
|
/**
|
|
49685
50261
|
* Organization group UUID
|
|
49686
50262
|
*/
|
|
@@ -49885,6 +50461,10 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
|
|
|
49885
50461
|
*
|
|
49886
50462
|
*/
|
|
49887
50463
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
50464
|
+
/**
|
|
50465
|
+
* Offering group UUID
|
|
50466
|
+
*/
|
|
50467
|
+
offering_group_uuid?: string;
|
|
49888
50468
|
/**
|
|
49889
50469
|
* Organization group UUID
|
|
49890
50470
|
*/
|
|
@@ -50192,6 +50772,20 @@ export type MarketplaceProviderOfferingsSetBackendMetadataResponses = {
|
|
|
50192
50772
|
*/
|
|
50193
50773
|
200: unknown;
|
|
50194
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
|
+
};
|
|
50195
50789
|
export type MarketplaceProviderOfferingsSetProfileData = {
|
|
50196
50790
|
body?: OfferingProfileBindRequest;
|
|
50197
50791
|
path: {
|
|
@@ -50668,6 +51262,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
|
|
|
50668
51262
|
*
|
|
50669
51263
|
*/
|
|
50670
51264
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
51265
|
+
/**
|
|
51266
|
+
* Offering group UUID
|
|
51267
|
+
*/
|
|
51268
|
+
offering_group_uuid?: string;
|
|
50671
51269
|
/**
|
|
50672
51270
|
* Organization group UUID
|
|
50673
51271
|
*/
|
|
@@ -50844,6 +51442,10 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
|
|
|
50844
51442
|
*
|
|
50845
51443
|
*/
|
|
50846
51444
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
51445
|
+
/**
|
|
51446
|
+
* Offering group UUID
|
|
51447
|
+
*/
|
|
51448
|
+
offering_group_uuid?: string;
|
|
50847
51449
|
/**
|
|
50848
51450
|
* Organization group UUID
|
|
50849
51451
|
*/
|
|
@@ -51635,6 +52237,18 @@ export type MarketplaceProviderResourcesAddUserResponses = {
|
|
|
51635
52237
|
201: UserRoleExpirationTime;
|
|
51636
52238
|
};
|
|
51637
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];
|
|
51638
52252
|
export type MarketplaceProviderResourcesDeleteUserData = {
|
|
51639
52253
|
body: UserRoleDeleteRequest;
|
|
51640
52254
|
path: {
|
|
@@ -52454,6 +53068,10 @@ export type MarketplacePublicOfferingsListData = {
|
|
|
52454
53068
|
*
|
|
52455
53069
|
*/
|
|
52456
53070
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
53071
|
+
/**
|
|
53072
|
+
* Offering group UUID
|
|
53073
|
+
*/
|
|
53074
|
+
offering_group_uuid?: string;
|
|
52457
53075
|
/**
|
|
52458
53076
|
* Organization group UUID
|
|
52459
53077
|
*/
|
|
@@ -52630,6 +53248,10 @@ export type MarketplacePublicOfferingsCountData = {
|
|
|
52630
53248
|
*
|
|
52631
53249
|
*/
|
|
52632
53250
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
53251
|
+
/**
|
|
53252
|
+
* Offering group UUID
|
|
53253
|
+
*/
|
|
53254
|
+
offering_group_uuid?: string;
|
|
52633
53255
|
/**
|
|
52634
53256
|
* Organization group UUID
|
|
52635
53257
|
*/
|
|
@@ -53008,7 +53630,12 @@ export type MarketplaceResourceProjectsDestroyData = {
|
|
|
53008
53630
|
path: {
|
|
53009
53631
|
uuid: string;
|
|
53010
53632
|
};
|
|
53011
|
-
query?:
|
|
53633
|
+
query?: {
|
|
53634
|
+
/**
|
|
53635
|
+
* Staff-only: when true, hard-delete the resource project instead of soft-deleting it.
|
|
53636
|
+
*/
|
|
53637
|
+
force?: boolean;
|
|
53638
|
+
};
|
|
53012
53639
|
url: '/api/marketplace-resource-projects/{uuid}/';
|
|
53013
53640
|
};
|
|
53014
53641
|
export type MarketplaceResourceProjectsDestroyResponses = {
|
|
@@ -53147,6 +53774,18 @@ export type MarketplaceResourceProjectsListUsersListResponses = {
|
|
|
53147
53774
|
200: Array<UserRoleDetails>;
|
|
53148
53775
|
};
|
|
53149
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];
|
|
53150
53789
|
export type MarketplaceResourceProjectsUpdateUserData = {
|
|
53151
53790
|
body: UserRoleUpdateRequest;
|
|
53152
53791
|
path: {
|
|
@@ -53608,6 +54247,18 @@ export type MarketplaceResourcesAddUserResponses = {
|
|
|
53608
54247
|
201: UserRoleExpirationTime;
|
|
53609
54248
|
};
|
|
53610
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];
|
|
53611
54262
|
export type MarketplaceResourcesDeleteUserData = {
|
|
53612
54263
|
body: UserRoleDeleteRequest;
|
|
53613
54264
|
path: {
|
|
@@ -55661,6 +56312,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
|
|
|
55661
56312
|
*
|
|
55662
56313
|
*/
|
|
55663
56314
|
o?: Array<ProviderOfferingDetailsOEnum>;
|
|
56315
|
+
/**
|
|
56316
|
+
* Offering group UUID
|
|
56317
|
+
*/
|
|
56318
|
+
offering_group_uuid?: string;
|
|
55664
56319
|
/**
|
|
55665
56320
|
* Organization group UUID
|
|
55666
56321
|
*/
|
|
@@ -56631,6 +57286,80 @@ export type MarketplaceSiteAgentIdentitiesCleanupOrphanedResponses = {
|
|
|
56631
57286
|
200: CleanupResponse;
|
|
56632
57287
|
};
|
|
56633
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];
|
|
56634
57363
|
export type MarketplaceSiteAgentProcessorsListData = {
|
|
56635
57364
|
body?: never;
|
|
56636
57365
|
path?: never;
|
|
@@ -71373,6 +72102,46 @@ export type PersonalAccessTokensRotateResponses = {
|
|
|
71373
72102
|
201: PersonalAccessTokenCreated;
|
|
71374
72103
|
};
|
|
71375
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
|
+
};
|
|
71376
72145
|
export type PersonalAccessTokensAvailableScopesListData = {
|
|
71377
72146
|
body?: never;
|
|
71378
72147
|
path?: never;
|
|
@@ -72998,6 +73767,18 @@ export type ProposalProposalsChecklistReviewRetrieveResponses = {
|
|
|
72998
73767
|
200: ChecklistReviewerResponse;
|
|
72999
73768
|
};
|
|
73000
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];
|
|
73001
73782
|
export type ProposalProposalsCompletionReviewStatusRetrieveData = {
|
|
73002
73783
|
body?: never;
|
|
73003
73784
|
path: {
|
|
@@ -73145,6 +73926,18 @@ export type ProposalProposalsRejectResponses = {
|
|
|
73145
73926
|
*/
|
|
73146
73927
|
200: unknown;
|
|
73147
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];
|
|
73148
73941
|
export type ProposalProposalsResourcesListData = {
|
|
73149
73942
|
body?: never;
|
|
73150
73943
|
path: {
|
|
@@ -73295,6 +74088,45 @@ export type ProposalProposalsUpdateUserResponses = {
|
|
|
73295
74088
|
200: UserRoleExpirationTime;
|
|
73296
74089
|
};
|
|
73297
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];
|
|
73298
74130
|
export type ProposalProposalsChecklistTemplateRetrieveData = {
|
|
73299
74131
|
body?: never;
|
|
73300
74132
|
path?: never;
|
|
@@ -74334,6 +75166,94 @@ export type ProposalProtectedCallsUpdateUserResponses = {
|
|
|
74334
75166
|
200: UserRoleExpirationTime;
|
|
74335
75167
|
};
|
|
74336
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];
|
|
74337
75257
|
export type ProposalProtectedCallsAvailableComplianceChecklistsListData = {
|
|
74338
75258
|
body?: never;
|
|
74339
75259
|
path?: never;
|
|
@@ -83759,6 +84679,18 @@ export type UsersPullRemoteUserResponses = {
|
|
|
83759
84679
|
*/
|
|
83760
84680
|
200: unknown;
|
|
83761
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];
|
|
83762
84694
|
export type UsersRefreshTokenData = {
|
|
83763
84695
|
body?: never;
|
|
83764
84696
|
path: {
|