waldur-js-client 8.0.9-dev.62 → 8.0.9-dev.63
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 +4 -12
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -13694,9 +13694,7 @@ export type OfferingUser = {
|
|
|
13694
13694
|
/**
|
|
13695
13695
|
* Person's affiliation within organization such as student, faculty, staff.
|
|
13696
13696
|
*/
|
|
13697
|
-
readonly user_affiliations:
|
|
13698
|
-
[key: string]: unknown;
|
|
13699
|
-
};
|
|
13697
|
+
readonly user_affiliations: Array<string>;
|
|
13700
13698
|
/**
|
|
13701
13699
|
* User's gender (male, female, or unknown)
|
|
13702
13700
|
*/
|
|
@@ -13715,9 +13713,7 @@ export type OfferingUser = {
|
|
|
13715
13713
|
/**
|
|
13716
13714
|
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
13717
13715
|
*/
|
|
13718
|
-
readonly user_nationalities:
|
|
13719
|
-
[key: string]: unknown;
|
|
13720
|
-
};
|
|
13716
|
+
readonly user_nationalities: Array<string>;
|
|
13721
13717
|
readonly user_organization_country: string;
|
|
13722
13718
|
/**
|
|
13723
13719
|
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
@@ -13730,9 +13726,7 @@ export type OfferingUser = {
|
|
|
13730
13726
|
/**
|
|
13731
13727
|
* REFEDS assurance profile URIs from identity provider
|
|
13732
13728
|
*/
|
|
13733
|
-
readonly user_eduperson_assurance:
|
|
13734
|
-
[key: string]: unknown;
|
|
13735
|
-
};
|
|
13729
|
+
readonly user_eduperson_assurance: Array<string>;
|
|
13736
13730
|
readonly user_civil_number: string | null;
|
|
13737
13731
|
readonly user_birth_date: string | null;
|
|
13738
13732
|
/**
|
|
@@ -13744,9 +13738,7 @@ export type OfferingUser = {
|
|
|
13744
13738
|
/**
|
|
13745
13739
|
* List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
|
|
13746
13740
|
*/
|
|
13747
|
-
readonly user_active_isds:
|
|
13748
|
-
[key: string]: unknown;
|
|
13749
|
-
};
|
|
13741
|
+
readonly user_active_isds: Array<string>;
|
|
13750
13742
|
readonly created: string;
|
|
13751
13743
|
readonly modified: string;
|
|
13752
13744
|
readonly customer_uuid: string;
|