waldur-js-client 8.0.10-dev.25 → 8.0.10-dev.26
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/types.gen.d.ts +70 -260
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -6093,18 +6093,9 @@ export type Customer = {
|
|
|
6093
6093
|
* Number of extra days after project end date before resources are terminated
|
|
6094
6094
|
*/
|
|
6095
6095
|
grace_period_days?: number | null;
|
|
6096
|
-
user_email_patterns?:
|
|
6097
|
-
|
|
6098
|
-
|
|
6099
|
-
user_affiliations?: {
|
|
6100
|
-
[key: string]: unknown;
|
|
6101
|
-
};
|
|
6102
|
-
/**
|
|
6103
|
-
* List of allowed identity sources (identity providers).
|
|
6104
|
-
*/
|
|
6105
|
-
user_identity_sources?: {
|
|
6106
|
-
[key: string]: unknown;
|
|
6107
|
-
};
|
|
6096
|
+
user_email_patterns?: Array<string>;
|
|
6097
|
+
user_affiliations?: Array<string>;
|
|
6098
|
+
user_identity_sources?: Array<string>;
|
|
6108
6099
|
/**
|
|
6109
6100
|
* Affiliations offered to project creators of this organization.
|
|
6110
6101
|
*/
|
|
@@ -6513,18 +6504,9 @@ export type CustomerRequest = {
|
|
|
6513
6504
|
* Number of extra days after project end date before resources are terminated
|
|
6514
6505
|
*/
|
|
6515
6506
|
grace_period_days?: number | null;
|
|
6516
|
-
user_email_patterns?:
|
|
6517
|
-
|
|
6518
|
-
|
|
6519
|
-
user_affiliations?: {
|
|
6520
|
-
[key: string]: unknown;
|
|
6521
|
-
};
|
|
6522
|
-
/**
|
|
6523
|
-
* List of allowed identity sources (identity providers).
|
|
6524
|
-
*/
|
|
6525
|
-
user_identity_sources?: {
|
|
6526
|
-
[key: string]: unknown;
|
|
6527
|
-
};
|
|
6507
|
+
user_email_patterns?: Array<string>;
|
|
6508
|
+
user_affiliations?: Array<string>;
|
|
6509
|
+
user_identity_sources?: Array<string>;
|
|
6528
6510
|
name: string;
|
|
6529
6511
|
/**
|
|
6530
6512
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -10386,9 +10368,7 @@ export type MarketplaceServiceProviderUser = {
|
|
|
10386
10368
|
/**
|
|
10387
10369
|
* Person's affiliation within organization such as student, faculty, staff.
|
|
10388
10370
|
*/
|
|
10389
|
-
affiliations?:
|
|
10390
|
-
[key: string]: unknown;
|
|
10391
|
-
};
|
|
10371
|
+
affiliations?: Array<string>;
|
|
10392
10372
|
/**
|
|
10393
10373
|
* Active
|
|
10394
10374
|
*
|
|
@@ -10414,9 +10394,7 @@ export type MarketplaceServiceProviderUser = {
|
|
|
10414
10394
|
/**
|
|
10415
10395
|
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
10416
10396
|
*/
|
|
10417
|
-
nationalities?:
|
|
10418
|
-
[key: string]: unknown;
|
|
10419
|
-
};
|
|
10397
|
+
nationalities?: Array<string>;
|
|
10420
10398
|
organization_country?: string;
|
|
10421
10399
|
/**
|
|
10422
10400
|
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
@@ -10437,9 +10415,7 @@ export type MarketplaceServiceProviderUser = {
|
|
|
10437
10415
|
/**
|
|
10438
10416
|
* REFEDS assurance profile URIs from identity provider
|
|
10439
10417
|
*/
|
|
10440
|
-
eduperson_assurance?:
|
|
10441
|
-
[key: string]: unknown;
|
|
10442
|
-
};
|
|
10418
|
+
eduperson_assurance?: Array<string>;
|
|
10443
10419
|
civil_number?: string | null;
|
|
10444
10420
|
birth_date?: string | null;
|
|
10445
10421
|
/**
|
|
@@ -10451,9 +10427,7 @@ export type MarketplaceServiceProviderUser = {
|
|
|
10451
10427
|
/**
|
|
10452
10428
|
* List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
|
|
10453
10429
|
*/
|
|
10454
|
-
active_isds?:
|
|
10455
|
-
[key: string]: unknown;
|
|
10456
|
-
};
|
|
10430
|
+
active_isds?: Array<string>;
|
|
10457
10431
|
};
|
|
10458
10432
|
export type MatchingAlgorithm = 'minmax' | 'fairflow' | 'hungarian';
|
|
10459
10433
|
export type MatchingConfiguration = {
|
|
@@ -14953,7 +14927,7 @@ export type OpenStackInstance = {
|
|
|
14953
14927
|
*/
|
|
14954
14928
|
readonly min_disk: number;
|
|
14955
14929
|
/**
|
|
14956
|
-
*
|
|
14930
|
+
* Cloud-init user data passed to the instance on provisioning. SECURITY: this value is stored and transmitted in plain text — it is kept unencrypted in Waldur's database, forwarded to OpenStack where any process on the instance can read it via the metadata service, and it may appear in logs. Do NOT put unencrypted secrets (passwords, private keys, API tokens) here; reference a secrets manager or inject them through an encrypted channel instead.
|
|
14957
14931
|
*/
|
|
14958
14932
|
user_data?: string;
|
|
14959
14933
|
readonly external_ips: Array<string>;
|
|
@@ -17517,18 +17491,9 @@ export type PatchedCustomerRequest = {
|
|
|
17517
17491
|
* Number of extra days after project end date before resources are terminated
|
|
17518
17492
|
*/
|
|
17519
17493
|
grace_period_days?: number | null;
|
|
17520
|
-
user_email_patterns?:
|
|
17521
|
-
|
|
17522
|
-
|
|
17523
|
-
user_affiliations?: {
|
|
17524
|
-
[key: string]: unknown;
|
|
17525
|
-
};
|
|
17526
|
-
/**
|
|
17527
|
-
* List of allowed identity sources (identity providers).
|
|
17528
|
-
*/
|
|
17529
|
-
user_identity_sources?: {
|
|
17530
|
-
[key: string]: unknown;
|
|
17531
|
-
};
|
|
17494
|
+
user_email_patterns?: Array<string>;
|
|
17495
|
+
user_affiliations?: Array<string>;
|
|
17496
|
+
user_identity_sources?: Array<string>;
|
|
17532
17497
|
name?: string;
|
|
17533
17498
|
/**
|
|
17534
17499
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -18352,18 +18317,9 @@ export type PatchedProjectRequest = {
|
|
|
18352
18317
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
18353
18318
|
*/
|
|
18354
18319
|
grace_period_days?: number | null;
|
|
18355
|
-
user_email_patterns?:
|
|
18356
|
-
|
|
18357
|
-
|
|
18358
|
-
user_affiliations?: {
|
|
18359
|
-
[key: string]: unknown;
|
|
18360
|
-
};
|
|
18361
|
-
/**
|
|
18362
|
-
* List of allowed identity sources (identity providers).
|
|
18363
|
-
*/
|
|
18364
|
-
user_identity_sources?: {
|
|
18365
|
-
[key: string]: unknown;
|
|
18366
|
-
};
|
|
18320
|
+
user_email_patterns?: Array<string>;
|
|
18321
|
+
user_affiliations?: Array<string>;
|
|
18322
|
+
user_identity_sources?: Array<string>;
|
|
18367
18323
|
affiliation_uuid?: string | null;
|
|
18368
18324
|
science_sub_domain?: string | null;
|
|
18369
18325
|
};
|
|
@@ -18463,39 +18419,27 @@ export type PatchedProtectedCallRequest = {
|
|
|
18463
18419
|
/**
|
|
18464
18420
|
* List of email regex patterns. User must match one.
|
|
18465
18421
|
*/
|
|
18466
|
-
user_email_patterns?:
|
|
18467
|
-
[key: string]: unknown;
|
|
18468
|
-
};
|
|
18422
|
+
user_email_patterns?: Array<string>;
|
|
18469
18423
|
/**
|
|
18470
18424
|
* List of allowed affiliations. User must have one.
|
|
18471
18425
|
*/
|
|
18472
|
-
user_affiliations?:
|
|
18473
|
-
[key: string]: unknown;
|
|
18474
|
-
};
|
|
18426
|
+
user_affiliations?: Array<string>;
|
|
18475
18427
|
/**
|
|
18476
18428
|
* List of allowed identity sources (identity providers).
|
|
18477
18429
|
*/
|
|
18478
|
-
user_identity_sources?:
|
|
18479
|
-
[key: string]: unknown;
|
|
18480
|
-
};
|
|
18430
|
+
user_identity_sources?: Array<string>;
|
|
18481
18431
|
/**
|
|
18482
18432
|
* List of allowed nationality codes (ISO 3166-1 alpha-2). User must have one.
|
|
18483
18433
|
*/
|
|
18484
|
-
user_nationalities?:
|
|
18485
|
-
[key: string]: unknown;
|
|
18486
|
-
};
|
|
18434
|
+
user_nationalities?: Array<string>;
|
|
18487
18435
|
/**
|
|
18488
18436
|
* List of allowed organization type URNs (SCHAC). User must match one.
|
|
18489
18437
|
*/
|
|
18490
|
-
user_organization_types?:
|
|
18491
|
-
[key: string]: unknown;
|
|
18492
|
-
};
|
|
18438
|
+
user_organization_types?: Array<string>;
|
|
18493
18439
|
/**
|
|
18494
18440
|
* List of required assurance URIs (REFEDS). User must have ALL of these.
|
|
18495
18441
|
*/
|
|
18496
|
-
user_assurance_levels?:
|
|
18497
|
-
[key: string]: unknown;
|
|
18498
|
-
};
|
|
18442
|
+
user_assurance_levels?: Array<string>;
|
|
18499
18443
|
applicant_visibility_config?: CallApplicantVisibilityConfigRequest | null;
|
|
18500
18444
|
};
|
|
18501
18445
|
export type PatchedProtectedRoundRequest = {
|
|
@@ -19840,18 +19784,9 @@ export type Project = {
|
|
|
19840
19784
|
* True if the project is past its end date but still within the grace period.
|
|
19841
19785
|
*/
|
|
19842
19786
|
readonly is_in_grace_period: boolean;
|
|
19843
|
-
user_email_patterns?:
|
|
19844
|
-
|
|
19845
|
-
|
|
19846
|
-
user_affiliations?: {
|
|
19847
|
-
[key: string]: unknown;
|
|
19848
|
-
};
|
|
19849
|
-
/**
|
|
19850
|
-
* List of allowed identity sources (identity providers).
|
|
19851
|
-
*/
|
|
19852
|
-
user_identity_sources?: {
|
|
19853
|
-
[key: string]: unknown;
|
|
19854
|
-
};
|
|
19787
|
+
user_email_patterns?: Array<string>;
|
|
19788
|
+
user_affiliations?: Array<string>;
|
|
19789
|
+
user_identity_sources?: Array<string>;
|
|
19855
19790
|
affiliation: AffiliatedOrganization | null;
|
|
19856
19791
|
affiliation_uuid?: string | null;
|
|
19857
19792
|
readonly affiliation_name: string;
|
|
@@ -20330,18 +20265,9 @@ export type ProjectRequest = {
|
|
|
20330
20265
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
20331
20266
|
*/
|
|
20332
20267
|
grace_period_days?: number | null;
|
|
20333
|
-
user_email_patterns?:
|
|
20334
|
-
|
|
20335
|
-
|
|
20336
|
-
user_affiliations?: {
|
|
20337
|
-
[key: string]: unknown;
|
|
20338
|
-
};
|
|
20339
|
-
/**
|
|
20340
|
-
* List of allowed identity sources (identity providers).
|
|
20341
|
-
*/
|
|
20342
|
-
user_identity_sources?: {
|
|
20343
|
-
[key: string]: unknown;
|
|
20344
|
-
};
|
|
20268
|
+
user_email_patterns?: Array<string>;
|
|
20269
|
+
user_affiliations?: Array<string>;
|
|
20270
|
+
user_identity_sources?: Array<string>;
|
|
20345
20271
|
affiliation_uuid?: string | null;
|
|
20346
20272
|
science_sub_domain?: string | null;
|
|
20347
20273
|
};
|
|
@@ -20633,12 +20559,7 @@ export type Proposal = {
|
|
|
20633
20559
|
*/
|
|
20634
20560
|
readonly applicant_organization_address: string | null;
|
|
20635
20561
|
readonly applicant_job_title: string;
|
|
20636
|
-
|
|
20637
|
-
* Person's affiliation within organization such as student, faculty, staff.
|
|
20638
|
-
*/
|
|
20639
|
-
readonly applicant_affiliations: {
|
|
20640
|
-
[key: string]: unknown;
|
|
20641
|
-
};
|
|
20562
|
+
readonly applicant_affiliations: Array<string>;
|
|
20642
20563
|
/**
|
|
20643
20564
|
* User's gender (male, female, or unknown)
|
|
20644
20565
|
*/
|
|
@@ -20654,18 +20575,8 @@ export type Proposal = {
|
|
|
20654
20575
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
20655
20576
|
*/
|
|
20656
20577
|
readonly applicant_nationality: string;
|
|
20657
|
-
|
|
20658
|
-
|
|
20659
|
-
*/
|
|
20660
|
-
readonly applicant_nationalities: {
|
|
20661
|
-
[key: string]: unknown;
|
|
20662
|
-
};
|
|
20663
|
-
/**
|
|
20664
|
-
* REFEDS assurance profile URIs from identity provider
|
|
20665
|
-
*/
|
|
20666
|
-
readonly applicant_eduperson_assurance: {
|
|
20667
|
-
[key: string]: unknown;
|
|
20668
|
-
};
|
|
20578
|
+
readonly applicant_nationalities: Array<string>;
|
|
20579
|
+
readonly applicant_eduperson_assurance: Array<string>;
|
|
20669
20580
|
/**
|
|
20670
20581
|
* Source of identity
|
|
20671
20582
|
*
|
|
@@ -20674,12 +20585,7 @@ export type Proposal = {
|
|
|
20674
20585
|
readonly applicant_identity_source: string;
|
|
20675
20586
|
readonly applicant_civil_number: string | null;
|
|
20676
20587
|
readonly applicant_birth_date: string | null;
|
|
20677
|
-
|
|
20678
|
-
* List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
|
|
20679
|
-
*/
|
|
20680
|
-
readonly applicant_active_isds: {
|
|
20681
|
-
[key: string]: unknown;
|
|
20682
|
-
};
|
|
20588
|
+
readonly applicant_active_isds: Array<string>;
|
|
20683
20589
|
/**
|
|
20684
20590
|
* Duration in days after provisioning of resources.
|
|
20685
20591
|
*/
|
|
@@ -20950,39 +20856,27 @@ export type ProtectedCall = {
|
|
|
20950
20856
|
/**
|
|
20951
20857
|
* List of email regex patterns. User must match one.
|
|
20952
20858
|
*/
|
|
20953
|
-
user_email_patterns?:
|
|
20954
|
-
[key: string]: unknown;
|
|
20955
|
-
};
|
|
20859
|
+
user_email_patterns?: Array<string>;
|
|
20956
20860
|
/**
|
|
20957
20861
|
* List of allowed affiliations. User must have one.
|
|
20958
20862
|
*/
|
|
20959
|
-
user_affiliations?:
|
|
20960
|
-
[key: string]: unknown;
|
|
20961
|
-
};
|
|
20863
|
+
user_affiliations?: Array<string>;
|
|
20962
20864
|
/**
|
|
20963
20865
|
* List of allowed identity sources (identity providers).
|
|
20964
20866
|
*/
|
|
20965
|
-
user_identity_sources?:
|
|
20966
|
-
[key: string]: unknown;
|
|
20967
|
-
};
|
|
20867
|
+
user_identity_sources?: Array<string>;
|
|
20968
20868
|
/**
|
|
20969
20869
|
* List of allowed nationality codes (ISO 3166-1 alpha-2). User must have one.
|
|
20970
20870
|
*/
|
|
20971
|
-
user_nationalities?:
|
|
20972
|
-
[key: string]: unknown;
|
|
20973
|
-
};
|
|
20871
|
+
user_nationalities?: Array<string>;
|
|
20974
20872
|
/**
|
|
20975
20873
|
* List of allowed organization type URNs (SCHAC). User must match one.
|
|
20976
20874
|
*/
|
|
20977
|
-
user_organization_types?:
|
|
20978
|
-
[key: string]: unknown;
|
|
20979
|
-
};
|
|
20875
|
+
user_organization_types?: Array<string>;
|
|
20980
20876
|
/**
|
|
20981
20877
|
* List of required assurance URIs (REFEDS). User must have ALL of these.
|
|
20982
20878
|
*/
|
|
20983
|
-
user_assurance_levels?:
|
|
20984
|
-
[key: string]: unknown;
|
|
20985
|
-
};
|
|
20879
|
+
user_assurance_levels?: Array<string>;
|
|
20986
20880
|
applicant_visibility_config?: CallApplicantVisibilityConfig | null;
|
|
20987
20881
|
/**
|
|
20988
20882
|
* Whether any proposal has been submitted to this call. Used by the frontend to gate slug-template and checklist fields.
|
|
@@ -21021,39 +20915,27 @@ export type ProtectedCallRequest = {
|
|
|
21021
20915
|
/**
|
|
21022
20916
|
* List of email regex patterns. User must match one.
|
|
21023
20917
|
*/
|
|
21024
|
-
user_email_patterns?:
|
|
21025
|
-
[key: string]: unknown;
|
|
21026
|
-
};
|
|
20918
|
+
user_email_patterns?: Array<string>;
|
|
21027
20919
|
/**
|
|
21028
20920
|
* List of allowed affiliations. User must have one.
|
|
21029
20921
|
*/
|
|
21030
|
-
user_affiliations?:
|
|
21031
|
-
[key: string]: unknown;
|
|
21032
|
-
};
|
|
20922
|
+
user_affiliations?: Array<string>;
|
|
21033
20923
|
/**
|
|
21034
20924
|
* List of allowed identity sources (identity providers).
|
|
21035
20925
|
*/
|
|
21036
|
-
user_identity_sources?:
|
|
21037
|
-
[key: string]: unknown;
|
|
21038
|
-
};
|
|
20926
|
+
user_identity_sources?: Array<string>;
|
|
21039
20927
|
/**
|
|
21040
20928
|
* List of allowed nationality codes (ISO 3166-1 alpha-2). User must have one.
|
|
21041
20929
|
*/
|
|
21042
|
-
user_nationalities?:
|
|
21043
|
-
[key: string]: unknown;
|
|
21044
|
-
};
|
|
20930
|
+
user_nationalities?: Array<string>;
|
|
21045
20931
|
/**
|
|
21046
20932
|
* List of allowed organization type URNs (SCHAC). User must match one.
|
|
21047
20933
|
*/
|
|
21048
|
-
user_organization_types?:
|
|
21049
|
-
[key: string]: unknown;
|
|
21050
|
-
};
|
|
20934
|
+
user_organization_types?: Array<string>;
|
|
21051
20935
|
/**
|
|
21052
20936
|
* List of required assurance URIs (REFEDS). User must have ALL of these.
|
|
21053
20937
|
*/
|
|
21054
|
-
user_assurance_levels?:
|
|
21055
|
-
[key: string]: unknown;
|
|
21056
|
-
};
|
|
20938
|
+
user_assurance_levels?: Array<string>;
|
|
21057
20939
|
applicant_visibility_config?: CallApplicantVisibilityConfigRequest | null;
|
|
21058
20940
|
};
|
|
21059
20941
|
export type ProtectedProposalList = {
|
|
@@ -28982,7 +28864,7 @@ export type OpenStackInstanceCreateOrderAttributes = {
|
|
|
28982
28864
|
data_volume_type?: string | null;
|
|
28983
28865
|
ssh_public_key?: string;
|
|
28984
28866
|
/**
|
|
28985
|
-
*
|
|
28867
|
+
* Cloud-init user data passed to the instance on provisioning. SECURITY: this value is stored and transmitted in plain text — it is kept unencrypted in Waldur's database, forwarded to OpenStack where any process on the instance can read it via the metadata service, and it may appear in logs. Do NOT put unencrypted secrets (passwords, private keys, API tokens) here; reference a secrets manager or inject them through an encrypted channel instead.
|
|
28986
28868
|
*/
|
|
28987
28869
|
user_data?: string;
|
|
28988
28870
|
/**
|
|
@@ -29097,18 +28979,9 @@ export type CustomerRequestForm = {
|
|
|
29097
28979
|
* Number of extra days after project end date before resources are terminated
|
|
29098
28980
|
*/
|
|
29099
28981
|
grace_period_days?: number | null;
|
|
29100
|
-
user_email_patterns?:
|
|
29101
|
-
|
|
29102
|
-
|
|
29103
|
-
user_affiliations?: {
|
|
29104
|
-
[key: string]: unknown;
|
|
29105
|
-
};
|
|
29106
|
-
/**
|
|
29107
|
-
* List of allowed identity sources (identity providers).
|
|
29108
|
-
*/
|
|
29109
|
-
user_identity_sources?: {
|
|
29110
|
-
[key: string]: unknown;
|
|
29111
|
-
};
|
|
28982
|
+
user_email_patterns?: Array<string>;
|
|
28983
|
+
user_affiliations?: Array<string>;
|
|
28984
|
+
user_identity_sources?: Array<string>;
|
|
29112
28985
|
name: string;
|
|
29113
28986
|
/**
|
|
29114
28987
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -29191,18 +29064,9 @@ export type CustomerRequestMultipart = {
|
|
|
29191
29064
|
* Number of extra days after project end date before resources are terminated
|
|
29192
29065
|
*/
|
|
29193
29066
|
grace_period_days?: number | null;
|
|
29194
|
-
user_email_patterns?:
|
|
29195
|
-
|
|
29196
|
-
|
|
29197
|
-
user_affiliations?: {
|
|
29198
|
-
[key: string]: unknown;
|
|
29199
|
-
};
|
|
29200
|
-
/**
|
|
29201
|
-
* List of allowed identity sources (identity providers).
|
|
29202
|
-
*/
|
|
29203
|
-
user_identity_sources?: {
|
|
29204
|
-
[key: string]: unknown;
|
|
29205
|
-
};
|
|
29067
|
+
user_email_patterns?: Array<string>;
|
|
29068
|
+
user_affiliations?: Array<string>;
|
|
29069
|
+
user_identity_sources?: Array<string>;
|
|
29206
29070
|
name: string;
|
|
29207
29071
|
/**
|
|
29208
29072
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -29285,18 +29149,9 @@ export type PatchedCustomerRequestForm = {
|
|
|
29285
29149
|
* Number of extra days after project end date before resources are terminated
|
|
29286
29150
|
*/
|
|
29287
29151
|
grace_period_days?: number | null;
|
|
29288
|
-
user_email_patterns?:
|
|
29289
|
-
|
|
29290
|
-
|
|
29291
|
-
user_affiliations?: {
|
|
29292
|
-
[key: string]: unknown;
|
|
29293
|
-
};
|
|
29294
|
-
/**
|
|
29295
|
-
* List of allowed identity sources (identity providers).
|
|
29296
|
-
*/
|
|
29297
|
-
user_identity_sources?: {
|
|
29298
|
-
[key: string]: unknown;
|
|
29299
|
-
};
|
|
29152
|
+
user_email_patterns?: Array<string>;
|
|
29153
|
+
user_affiliations?: Array<string>;
|
|
29154
|
+
user_identity_sources?: Array<string>;
|
|
29300
29155
|
name?: string;
|
|
29301
29156
|
/**
|
|
29302
29157
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -29379,18 +29234,9 @@ export type PatchedCustomerRequestMultipart = {
|
|
|
29379
29234
|
* Number of extra days after project end date before resources are terminated
|
|
29380
29235
|
*/
|
|
29381
29236
|
grace_period_days?: number | null;
|
|
29382
|
-
user_email_patterns?:
|
|
29383
|
-
|
|
29384
|
-
|
|
29385
|
-
user_affiliations?: {
|
|
29386
|
-
[key: string]: unknown;
|
|
29387
|
-
};
|
|
29388
|
-
/**
|
|
29389
|
-
* List of allowed identity sources (identity providers).
|
|
29390
|
-
*/
|
|
29391
|
-
user_identity_sources?: {
|
|
29392
|
-
[key: string]: unknown;
|
|
29393
|
-
};
|
|
29237
|
+
user_email_patterns?: Array<string>;
|
|
29238
|
+
user_affiliations?: Array<string>;
|
|
29239
|
+
user_identity_sources?: Array<string>;
|
|
29394
29240
|
name?: string;
|
|
29395
29241
|
/**
|
|
29396
29242
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -29937,18 +29783,9 @@ export type ProjectRequestForm = {
|
|
|
29937
29783
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
29938
29784
|
*/
|
|
29939
29785
|
grace_period_days?: number | null;
|
|
29940
|
-
user_email_patterns?:
|
|
29941
|
-
|
|
29942
|
-
|
|
29943
|
-
user_affiliations?: {
|
|
29944
|
-
[key: string]: unknown;
|
|
29945
|
-
};
|
|
29946
|
-
/**
|
|
29947
|
-
* List of allowed identity sources (identity providers).
|
|
29948
|
-
*/
|
|
29949
|
-
user_identity_sources?: {
|
|
29950
|
-
[key: string]: unknown;
|
|
29951
|
-
};
|
|
29786
|
+
user_email_patterns?: Array<string>;
|
|
29787
|
+
user_affiliations?: Array<string>;
|
|
29788
|
+
user_identity_sources?: Array<string>;
|
|
29952
29789
|
affiliation_uuid?: string | null;
|
|
29953
29790
|
science_sub_domain?: string | null;
|
|
29954
29791
|
};
|
|
@@ -29994,18 +29831,9 @@ export type ProjectRequestMultipart = {
|
|
|
29994
29831
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
29995
29832
|
*/
|
|
29996
29833
|
grace_period_days?: number | null;
|
|
29997
|
-
user_email_patterns?:
|
|
29998
|
-
|
|
29999
|
-
|
|
30000
|
-
user_affiliations?: {
|
|
30001
|
-
[key: string]: unknown;
|
|
30002
|
-
};
|
|
30003
|
-
/**
|
|
30004
|
-
* List of allowed identity sources (identity providers).
|
|
30005
|
-
*/
|
|
30006
|
-
user_identity_sources?: {
|
|
30007
|
-
[key: string]: unknown;
|
|
30008
|
-
};
|
|
29834
|
+
user_email_patterns?: Array<string>;
|
|
29835
|
+
user_affiliations?: Array<string>;
|
|
29836
|
+
user_identity_sources?: Array<string>;
|
|
30009
29837
|
affiliation_uuid?: string | null;
|
|
30010
29838
|
science_sub_domain?: string | null;
|
|
30011
29839
|
};
|
|
@@ -30051,18 +29879,9 @@ export type PatchedProjectRequestForm = {
|
|
|
30051
29879
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
30052
29880
|
*/
|
|
30053
29881
|
grace_period_days?: number | null;
|
|
30054
|
-
user_email_patterns?:
|
|
30055
|
-
|
|
30056
|
-
|
|
30057
|
-
user_affiliations?: {
|
|
30058
|
-
[key: string]: unknown;
|
|
30059
|
-
};
|
|
30060
|
-
/**
|
|
30061
|
-
* List of allowed identity sources (identity providers).
|
|
30062
|
-
*/
|
|
30063
|
-
user_identity_sources?: {
|
|
30064
|
-
[key: string]: unknown;
|
|
30065
|
-
};
|
|
29882
|
+
user_email_patterns?: Array<string>;
|
|
29883
|
+
user_affiliations?: Array<string>;
|
|
29884
|
+
user_identity_sources?: Array<string>;
|
|
30066
29885
|
affiliation_uuid?: string | null;
|
|
30067
29886
|
science_sub_domain?: string | null;
|
|
30068
29887
|
};
|
|
@@ -30108,18 +29927,9 @@ export type PatchedProjectRequestMultipart = {
|
|
|
30108
29927
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
30109
29928
|
*/
|
|
30110
29929
|
grace_period_days?: number | null;
|
|
30111
|
-
user_email_patterns?:
|
|
30112
|
-
|
|
30113
|
-
|
|
30114
|
-
user_affiliations?: {
|
|
30115
|
-
[key: string]: unknown;
|
|
30116
|
-
};
|
|
30117
|
-
/**
|
|
30118
|
-
* List of allowed identity sources (identity providers).
|
|
30119
|
-
*/
|
|
30120
|
-
user_identity_sources?: {
|
|
30121
|
-
[key: string]: unknown;
|
|
30122
|
-
};
|
|
29930
|
+
user_email_patterns?: Array<string>;
|
|
29931
|
+
user_affiliations?: Array<string>;
|
|
29932
|
+
user_identity_sources?: Array<string>;
|
|
30123
29933
|
affiliation_uuid?: string | null;
|
|
30124
29934
|
science_sub_domain?: string | null;
|
|
30125
29935
|
};
|