waldur-js-client 8.0.9-dev.61 → 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 +6 -13
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -325,7 +325,7 @@ export type AgentIdentity = {
|
|
|
325
325
|
readonly created_by: string | null;
|
|
326
326
|
name: string;
|
|
327
327
|
version?: string | null;
|
|
328
|
-
|
|
328
|
+
dependencies?: Array<AgentDependency>;
|
|
329
329
|
/**
|
|
330
330
|
* Example: '/etc/waldur/agent.yaml'
|
|
331
331
|
*/
|
|
@@ -346,6 +346,7 @@ export type AgentIdentityRequest = {
|
|
|
346
346
|
offering: string;
|
|
347
347
|
name: string;
|
|
348
348
|
version?: string | null;
|
|
349
|
+
dependencies?: Array<AgentDependencyRequest>;
|
|
349
350
|
/**
|
|
350
351
|
* Example: '/etc/waldur/agent.yaml'
|
|
351
352
|
*/
|
|
@@ -13693,9 +13694,7 @@ export type OfferingUser = {
|
|
|
13693
13694
|
/**
|
|
13694
13695
|
* Person's affiliation within organization such as student, faculty, staff.
|
|
13695
13696
|
*/
|
|
13696
|
-
readonly user_affiliations:
|
|
13697
|
-
[key: string]: unknown;
|
|
13698
|
-
};
|
|
13697
|
+
readonly user_affiliations: Array<string>;
|
|
13699
13698
|
/**
|
|
13700
13699
|
* User's gender (male, female, or unknown)
|
|
13701
13700
|
*/
|
|
@@ -13714,9 +13713,7 @@ export type OfferingUser = {
|
|
|
13714
13713
|
/**
|
|
13715
13714
|
* List of all citizenships (ISO 3166-1 alpha-2 codes)
|
|
13716
13715
|
*/
|
|
13717
|
-
readonly user_nationalities:
|
|
13718
|
-
[key: string]: unknown;
|
|
13719
|
-
};
|
|
13716
|
+
readonly user_nationalities: Array<string>;
|
|
13720
13717
|
readonly user_organization_country: string;
|
|
13721
13718
|
/**
|
|
13722
13719
|
* SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
|
|
@@ -13729,9 +13726,7 @@ export type OfferingUser = {
|
|
|
13729
13726
|
/**
|
|
13730
13727
|
* REFEDS assurance profile URIs from identity provider
|
|
13731
13728
|
*/
|
|
13732
|
-
readonly user_eduperson_assurance:
|
|
13733
|
-
[key: string]: unknown;
|
|
13734
|
-
};
|
|
13729
|
+
readonly user_eduperson_assurance: Array<string>;
|
|
13735
13730
|
readonly user_civil_number: string | null;
|
|
13736
13731
|
readonly user_birth_date: string | null;
|
|
13737
13732
|
/**
|
|
@@ -13743,9 +13738,7 @@ export type OfferingUser = {
|
|
|
13743
13738
|
/**
|
|
13744
13739
|
* List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
|
|
13745
13740
|
*/
|
|
13746
|
-
readonly user_active_isds:
|
|
13747
|
-
[key: string]: unknown;
|
|
13748
|
-
};
|
|
13741
|
+
readonly user_active_isds: Array<string>;
|
|
13749
13742
|
readonly created: string;
|
|
13750
13743
|
readonly modified: string;
|
|
13751
13744
|
readonly customer_uuid: string;
|