waldur-js-client 8.0.10-dev.24 → 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 +75 -261
- 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,40 +20856,32 @@ 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;
|
|
20881
|
+
/**
|
|
20882
|
+
* Whether any proposal has been submitted to this call. Used by the frontend to gate slug-template and checklist fields.
|
|
20883
|
+
*/
|
|
20884
|
+
readonly has_proposals: boolean;
|
|
20987
20885
|
};
|
|
20988
20886
|
export type ProtectedCallRequest = {
|
|
20989
20887
|
/**
|
|
@@ -21017,39 +20915,27 @@ export type ProtectedCallRequest = {
|
|
|
21017
20915
|
/**
|
|
21018
20916
|
* List of email regex patterns. User must match one.
|
|
21019
20917
|
*/
|
|
21020
|
-
user_email_patterns?:
|
|
21021
|
-
[key: string]: unknown;
|
|
21022
|
-
};
|
|
20918
|
+
user_email_patterns?: Array<string>;
|
|
21023
20919
|
/**
|
|
21024
20920
|
* List of allowed affiliations. User must have one.
|
|
21025
20921
|
*/
|
|
21026
|
-
user_affiliations?:
|
|
21027
|
-
[key: string]: unknown;
|
|
21028
|
-
};
|
|
20922
|
+
user_affiliations?: Array<string>;
|
|
21029
20923
|
/**
|
|
21030
20924
|
* List of allowed identity sources (identity providers).
|
|
21031
20925
|
*/
|
|
21032
|
-
user_identity_sources?:
|
|
21033
|
-
[key: string]: unknown;
|
|
21034
|
-
};
|
|
20926
|
+
user_identity_sources?: Array<string>;
|
|
21035
20927
|
/**
|
|
21036
20928
|
* List of allowed nationality codes (ISO 3166-1 alpha-2). User must have one.
|
|
21037
20929
|
*/
|
|
21038
|
-
user_nationalities?:
|
|
21039
|
-
[key: string]: unknown;
|
|
21040
|
-
};
|
|
20930
|
+
user_nationalities?: Array<string>;
|
|
21041
20931
|
/**
|
|
21042
20932
|
* List of allowed organization type URNs (SCHAC). User must match one.
|
|
21043
20933
|
*/
|
|
21044
|
-
user_organization_types?:
|
|
21045
|
-
[key: string]: unknown;
|
|
21046
|
-
};
|
|
20934
|
+
user_organization_types?: Array<string>;
|
|
21047
20935
|
/**
|
|
21048
20936
|
* List of required assurance URIs (REFEDS). User must have ALL of these.
|
|
21049
20937
|
*/
|
|
21050
|
-
user_assurance_levels?:
|
|
21051
|
-
[key: string]: unknown;
|
|
21052
|
-
};
|
|
20938
|
+
user_assurance_levels?: Array<string>;
|
|
21053
20939
|
applicant_visibility_config?: CallApplicantVisibilityConfigRequest | null;
|
|
21054
20940
|
};
|
|
21055
20941
|
export type ProtectedProposalList = {
|
|
@@ -28978,7 +28864,7 @@ export type OpenStackInstanceCreateOrderAttributes = {
|
|
|
28978
28864
|
data_volume_type?: string | null;
|
|
28979
28865
|
ssh_public_key?: string;
|
|
28980
28866
|
/**
|
|
28981
|
-
*
|
|
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.
|
|
28982
28868
|
*/
|
|
28983
28869
|
user_data?: string;
|
|
28984
28870
|
/**
|
|
@@ -29093,18 +28979,9 @@ export type CustomerRequestForm = {
|
|
|
29093
28979
|
* Number of extra days after project end date before resources are terminated
|
|
29094
28980
|
*/
|
|
29095
28981
|
grace_period_days?: number | null;
|
|
29096
|
-
user_email_patterns?:
|
|
29097
|
-
|
|
29098
|
-
|
|
29099
|
-
user_affiliations?: {
|
|
29100
|
-
[key: string]: unknown;
|
|
29101
|
-
};
|
|
29102
|
-
/**
|
|
29103
|
-
* List of allowed identity sources (identity providers).
|
|
29104
|
-
*/
|
|
29105
|
-
user_identity_sources?: {
|
|
29106
|
-
[key: string]: unknown;
|
|
29107
|
-
};
|
|
28982
|
+
user_email_patterns?: Array<string>;
|
|
28983
|
+
user_affiliations?: Array<string>;
|
|
28984
|
+
user_identity_sources?: Array<string>;
|
|
29108
28985
|
name: string;
|
|
29109
28986
|
/**
|
|
29110
28987
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -29187,18 +29064,9 @@ export type CustomerRequestMultipart = {
|
|
|
29187
29064
|
* Number of extra days after project end date before resources are terminated
|
|
29188
29065
|
*/
|
|
29189
29066
|
grace_period_days?: number | null;
|
|
29190
|
-
user_email_patterns?:
|
|
29191
|
-
|
|
29192
|
-
|
|
29193
|
-
user_affiliations?: {
|
|
29194
|
-
[key: string]: unknown;
|
|
29195
|
-
};
|
|
29196
|
-
/**
|
|
29197
|
-
* List of allowed identity sources (identity providers).
|
|
29198
|
-
*/
|
|
29199
|
-
user_identity_sources?: {
|
|
29200
|
-
[key: string]: unknown;
|
|
29201
|
-
};
|
|
29067
|
+
user_email_patterns?: Array<string>;
|
|
29068
|
+
user_affiliations?: Array<string>;
|
|
29069
|
+
user_identity_sources?: Array<string>;
|
|
29202
29070
|
name: string;
|
|
29203
29071
|
/**
|
|
29204
29072
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -29281,18 +29149,9 @@ export type PatchedCustomerRequestForm = {
|
|
|
29281
29149
|
* Number of extra days after project end date before resources are terminated
|
|
29282
29150
|
*/
|
|
29283
29151
|
grace_period_days?: number | null;
|
|
29284
|
-
user_email_patterns?:
|
|
29285
|
-
|
|
29286
|
-
|
|
29287
|
-
user_affiliations?: {
|
|
29288
|
-
[key: string]: unknown;
|
|
29289
|
-
};
|
|
29290
|
-
/**
|
|
29291
|
-
* List of allowed identity sources (identity providers).
|
|
29292
|
-
*/
|
|
29293
|
-
user_identity_sources?: {
|
|
29294
|
-
[key: string]: unknown;
|
|
29295
|
-
};
|
|
29152
|
+
user_email_patterns?: Array<string>;
|
|
29153
|
+
user_affiliations?: Array<string>;
|
|
29154
|
+
user_identity_sources?: Array<string>;
|
|
29296
29155
|
name?: string;
|
|
29297
29156
|
/**
|
|
29298
29157
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -29375,18 +29234,9 @@ export type PatchedCustomerRequestMultipart = {
|
|
|
29375
29234
|
* Number of extra days after project end date before resources are terminated
|
|
29376
29235
|
*/
|
|
29377
29236
|
grace_period_days?: number | null;
|
|
29378
|
-
user_email_patterns?:
|
|
29379
|
-
|
|
29380
|
-
|
|
29381
|
-
user_affiliations?: {
|
|
29382
|
-
[key: string]: unknown;
|
|
29383
|
-
};
|
|
29384
|
-
/**
|
|
29385
|
-
* List of allowed identity sources (identity providers).
|
|
29386
|
-
*/
|
|
29387
|
-
user_identity_sources?: {
|
|
29388
|
-
[key: string]: unknown;
|
|
29389
|
-
};
|
|
29237
|
+
user_email_patterns?: Array<string>;
|
|
29238
|
+
user_affiliations?: Array<string>;
|
|
29239
|
+
user_identity_sources?: Array<string>;
|
|
29390
29240
|
name?: string;
|
|
29391
29241
|
/**
|
|
29392
29242
|
* URL-friendly identifier. Only editable by staff users.
|
|
@@ -29933,18 +29783,9 @@ export type ProjectRequestForm = {
|
|
|
29933
29783
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
29934
29784
|
*/
|
|
29935
29785
|
grace_period_days?: number | null;
|
|
29936
|
-
user_email_patterns?:
|
|
29937
|
-
|
|
29938
|
-
|
|
29939
|
-
user_affiliations?: {
|
|
29940
|
-
[key: string]: unknown;
|
|
29941
|
-
};
|
|
29942
|
-
/**
|
|
29943
|
-
* List of allowed identity sources (identity providers).
|
|
29944
|
-
*/
|
|
29945
|
-
user_identity_sources?: {
|
|
29946
|
-
[key: string]: unknown;
|
|
29947
|
-
};
|
|
29786
|
+
user_email_patterns?: Array<string>;
|
|
29787
|
+
user_affiliations?: Array<string>;
|
|
29788
|
+
user_identity_sources?: Array<string>;
|
|
29948
29789
|
affiliation_uuid?: string | null;
|
|
29949
29790
|
science_sub_domain?: string | null;
|
|
29950
29791
|
};
|
|
@@ -29990,18 +29831,9 @@ export type ProjectRequestMultipart = {
|
|
|
29990
29831
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
29991
29832
|
*/
|
|
29992
29833
|
grace_period_days?: number | null;
|
|
29993
|
-
user_email_patterns?:
|
|
29994
|
-
|
|
29995
|
-
|
|
29996
|
-
user_affiliations?: {
|
|
29997
|
-
[key: string]: unknown;
|
|
29998
|
-
};
|
|
29999
|
-
/**
|
|
30000
|
-
* List of allowed identity sources (identity providers).
|
|
30001
|
-
*/
|
|
30002
|
-
user_identity_sources?: {
|
|
30003
|
-
[key: string]: unknown;
|
|
30004
|
-
};
|
|
29834
|
+
user_email_patterns?: Array<string>;
|
|
29835
|
+
user_affiliations?: Array<string>;
|
|
29836
|
+
user_identity_sources?: Array<string>;
|
|
30005
29837
|
affiliation_uuid?: string | null;
|
|
30006
29838
|
science_sub_domain?: string | null;
|
|
30007
29839
|
};
|
|
@@ -30047,18 +29879,9 @@ export type PatchedProjectRequestForm = {
|
|
|
30047
29879
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
30048
29880
|
*/
|
|
30049
29881
|
grace_period_days?: number | null;
|
|
30050
|
-
user_email_patterns?:
|
|
30051
|
-
|
|
30052
|
-
|
|
30053
|
-
user_affiliations?: {
|
|
30054
|
-
[key: string]: unknown;
|
|
30055
|
-
};
|
|
30056
|
-
/**
|
|
30057
|
-
* List of allowed identity sources (identity providers).
|
|
30058
|
-
*/
|
|
30059
|
-
user_identity_sources?: {
|
|
30060
|
-
[key: string]: unknown;
|
|
30061
|
-
};
|
|
29882
|
+
user_email_patterns?: Array<string>;
|
|
29883
|
+
user_affiliations?: Array<string>;
|
|
29884
|
+
user_identity_sources?: Array<string>;
|
|
30062
29885
|
affiliation_uuid?: string | null;
|
|
30063
29886
|
science_sub_domain?: string | null;
|
|
30064
29887
|
};
|
|
@@ -30104,18 +29927,9 @@ export type PatchedProjectRequestMultipart = {
|
|
|
30104
29927
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
30105
29928
|
*/
|
|
30106
29929
|
grace_period_days?: number | null;
|
|
30107
|
-
user_email_patterns?:
|
|
30108
|
-
|
|
30109
|
-
|
|
30110
|
-
user_affiliations?: {
|
|
30111
|
-
[key: string]: unknown;
|
|
30112
|
-
};
|
|
30113
|
-
/**
|
|
30114
|
-
* List of allowed identity sources (identity providers).
|
|
30115
|
-
*/
|
|
30116
|
-
user_identity_sources?: {
|
|
30117
|
-
[key: string]: unknown;
|
|
30118
|
-
};
|
|
29930
|
+
user_email_patterns?: Array<string>;
|
|
29931
|
+
user_affiliations?: Array<string>;
|
|
29932
|
+
user_identity_sources?: Array<string>;
|
|
30119
29933
|
affiliation_uuid?: string | null;
|
|
30120
29934
|
science_sub_domain?: string | null;
|
|
30121
29935
|
};
|
|
@@ -31333,7 +31147,7 @@ export type ProjectCreditOEnum = '-end_date' | '-expected_consumption' | '-proje
|
|
|
31333
31147
|
export type CampaignOEnum = '-end_date' | '-start_date' | 'end_date' | 'start_date';
|
|
31334
31148
|
export type CampaignStateEnum = 'Active' | 'Draft' | 'Terminated';
|
|
31335
31149
|
export type ProposalOEnum = '-created' | '-round__call__name' | '-round__cutoff_time' | '-round__start_time' | '-slug' | '-state' | 'created' | 'round__call__name' | 'round__cutoff_time' | 'round__start_time' | 'slug' | 'state';
|
|
31336
|
-
export type ProtectedCallFieldEnum = 'applicant_visibility_config' | 'backend_id' | 'compliance_checklist' | 'compliance_checklist_name' | 'created' | 'created_by' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'has_eligibility_restrictions' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'proposal_slug_template' | 'reference_code' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'user_affiliations' | 'user_assurance_levels' | 'user_email_patterns' | 'user_identity_sources' | 'user_nationalities' | 'user_organization_types' | 'uuid';
|
|
31150
|
+
export type ProtectedCallFieldEnum = 'applicant_visibility_config' | 'backend_id' | 'compliance_checklist' | 'compliance_checklist_name' | 'created' | 'created_by' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'has_eligibility_restrictions' | 'has_proposals' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'proposal_slug_template' | 'reference_code' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'user_affiliations' | 'user_assurance_levels' | 'user_email_patterns' | 'user_identity_sources' | 'user_nationalities' | 'user_organization_types' | 'uuid';
|
|
31337
31151
|
export type ProtectedCallOEnum = '-created' | '-manager__customer__name' | '-name' | 'created' | 'manager__customer__name' | 'name';
|
|
31338
31152
|
export type AffinityMatrixResponseScopeEnum = 'all' | 'pool' | 'suggestions';
|
|
31339
31153
|
export type PublicCallFieldEnum = 'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'documents' | 'end_date' | 'external_url' | 'fixed_duration_in_days' | 'has_eligibility_restrictions' | 'manager' | 'manager_uuid' | 'name' | 'offerings' | 'resource_templates' | 'reviewer_identity_visible_to_submitters' | 'reviews_visible_to_submitters' | 'rounds' | 'slug' | 'start_date' | 'state' | 'url' | 'uuid';
|