waldur-js-client 8.0.4-dev.6 → 8.0.4-dev.7

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.
@@ -8565,6 +8565,49 @@ export type MarketplaceServiceProviderUser = {
8565
8565
  * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
8566
8566
  */
8567
8567
  is_active?: boolean;
8568
+ job_title?: string;
8569
+ /**
8570
+ * ISO 5218 gender code
8571
+ */
8572
+ gender?: GenderEnum | NullEnum | null;
8573
+ /**
8574
+ * Honorific title (Mr, Ms, Dr, Prof, etc.)
8575
+ */
8576
+ personal_title?: string;
8577
+ place_of_birth?: string;
8578
+ country_of_residence?: string;
8579
+ /**
8580
+ * Primary citizenship (ISO 3166-1 alpha-2 code)
8581
+ */
8582
+ nationality?: string;
8583
+ /**
8584
+ * List of all citizenships (ISO 3166-1 alpha-2 codes)
8585
+ */
8586
+ nationalities?: unknown;
8587
+ organization_country?: string;
8588
+ /**
8589
+ * SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
8590
+ */
8591
+ organization_type?: string;
8592
+ /**
8593
+ * Company registration code of the user's organization, if known
8594
+ */
8595
+ organization_registry_code?: string;
8596
+ /**
8597
+ * REFEDS assurance profile URIs from identity provider
8598
+ */
8599
+ eduperson_assurance?: unknown;
8600
+ civil_number?: string | null;
8601
+ birth_date?: string | null;
8602
+ /**
8603
+ * Source of identity
8604
+ * Indicates what identity provider was used.
8605
+ */
8606
+ identity_source?: string;
8607
+ /**
8608
+ * List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
8609
+ */
8610
+ active_isds?: unknown;
8568
8611
  };
8569
8612
  export type MatchingAlgorithm = 'minmax' | 'fairflow' | 'hungarian';
8570
8613
  export type MatchingConfiguration = {
@@ -11528,6 +11571,10 @@ export type OfferingUser = {
11528
11571
  * SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
11529
11572
  */
11530
11573
  readonly user_organization_type?: string;
11574
+ /**
11575
+ * Company registration code of the user's organization, if known
11576
+ */
11577
+ readonly user_organization_registry_code?: string;
11531
11578
  /**
11532
11579
  * REFEDS assurance profile URIs from identity provider
11533
11580
  */
@@ -11602,10 +11649,12 @@ export type OfferingUserAttributeConfig = {
11602
11649
  expose_nationalities?: boolean;
11603
11650
  expose_organization_country?: boolean;
11604
11651
  expose_organization_type?: boolean;
11652
+ expose_organization_registry_code?: boolean;
11605
11653
  expose_eduperson_assurance?: boolean;
11606
11654
  expose_civil_number?: boolean;
11607
11655
  expose_birth_date?: boolean;
11608
11656
  expose_identity_source?: boolean;
11657
+ expose_active_isds?: boolean;
11609
11658
  /**
11610
11659
  * Return list of field names currently configured for exposure.
11611
11660
  */
@@ -11632,10 +11681,12 @@ export type OfferingUserAttributeConfigRequest = {
11632
11681
  expose_nationalities?: boolean;
11633
11682
  expose_organization_country?: boolean;
11634
11683
  expose_organization_type?: boolean;
11684
+ expose_organization_registry_code?: boolean;
11635
11685
  expose_eduperson_assurance?: boolean;
11636
11686
  expose_civil_number?: boolean;
11637
11687
  expose_birth_date?: boolean;
11638
11688
  expose_identity_source?: boolean;
11689
+ expose_active_isds?: boolean;
11639
11690
  };
11640
11691
  export type OfferingUserRequest = {
11641
11692
  user?: string;
@@ -14841,10 +14892,12 @@ export type PatchedOfferingUserAttributeConfigRequest = {
14841
14892
  expose_nationalities?: boolean;
14842
14893
  expose_organization_country?: boolean;
14843
14894
  expose_organization_type?: boolean;
14895
+ expose_organization_registry_code?: boolean;
14844
14896
  expose_eduperson_assurance?: boolean;
14845
14897
  expose_civil_number?: boolean;
14846
14898
  expose_birth_date?: boolean;
14847
14899
  expose_identity_source?: boolean;
14900
+ expose_active_isds?: boolean;
14848
14901
  };
14849
14902
  export type PatchedOfferingUserRequest = {
14850
14903
  user?: string;
@@ -41497,7 +41550,7 @@ export type MarketplaceOfferingUsersListData = {
41497
41550
  * Created after
41498
41551
  */
41499
41552
  created?: string;
41500
- field?: Array<'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_profile_complete' | 'is_restricted' | 'missing_profile_attributes' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_active_isds' | 'user_affiliations' | 'user_birth_date' | 'user_civil_number' | 'user_country_of_residence' | 'user_eduperson_assurance' | 'user_email' | 'user_first_name' | 'user_full_name' | 'user_gender' | 'user_identity_source' | 'user_job_title' | 'user_last_name' | 'user_nationalities' | 'user_nationality' | 'user_organization' | 'user_organization_country' | 'user_organization_type' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
41553
+ field?: Array<'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_profile_complete' | 'is_restricted' | 'missing_profile_attributes' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_active_isds' | 'user_affiliations' | 'user_birth_date' | 'user_civil_number' | 'user_country_of_residence' | 'user_eduperson_assurance' | 'user_email' | 'user_first_name' | 'user_full_name' | 'user_gender' | 'user_identity_source' | 'user_job_title' | 'user_last_name' | 'user_nationalities' | 'user_nationality' | 'user_organization' | 'user_organization_country' | 'user_organization_registry_code' | 'user_organization_type' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
41501
41554
  /**
41502
41555
  * User has complete profile for the offering
41503
41556
  */
@@ -41677,7 +41730,7 @@ export type MarketplaceOfferingUsersRetrieveData = {
41677
41730
  uuid: string;
41678
41731
  };
41679
41732
  query?: {
41680
- field?: Array<'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_profile_complete' | 'is_restricted' | 'missing_profile_attributes' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_active_isds' | 'user_affiliations' | 'user_birth_date' | 'user_civil_number' | 'user_country_of_residence' | 'user_eduperson_assurance' | 'user_email' | 'user_first_name' | 'user_full_name' | 'user_gender' | 'user_identity_source' | 'user_job_title' | 'user_last_name' | 'user_nationalities' | 'user_nationality' | 'user_organization' | 'user_organization_country' | 'user_organization_type' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
41733
+ field?: Array<'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_profile_complete' | 'is_restricted' | 'missing_profile_attributes' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_active_isds' | 'user_affiliations' | 'user_birth_date' | 'user_civil_number' | 'user_country_of_residence' | 'user_eduperson_assurance' | 'user_email' | 'user_first_name' | 'user_full_name' | 'user_gender' | 'user_identity_source' | 'user_job_title' | 'user_last_name' | 'user_nationalities' | 'user_nationality' | 'user_organization' | 'user_organization_country' | 'user_organization_registry_code' | 'user_organization_type' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid'>;
41681
41734
  };
41682
41735
  url: '/api/marketplace-offering-users/{uuid}/';
41683
41736
  };
@@ -50315,7 +50368,7 @@ export type MarketplaceServiceProvidersUsersListData = {
50315
50368
  * Email
50316
50369
  */
50317
50370
  email?: string;
50318
- field?: Array<'affiliations' | 'email' | 'first_name' | 'full_name' | 'is_active' | 'last_name' | 'organization' | 'phone_number' | 'projects_count' | 'registration_method' | 'username' | 'uuid'>;
50371
+ field?: Array<'active_isds' | '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'>;
50319
50372
  /**
50320
50373
  * Full name
50321
50374
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.4-dev.6",
3
+ "version": "8.0.4-dev.7",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",