@waldur/admin 8.0.8-dev.33 → 8.0.8-dev.34

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.
@@ -1213,6 +1213,7 @@ export type ConstanceSettings = {
1213
1213
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
1214
1214
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
1215
1215
  DEFAULT_OFFERING_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
1216
+ DEFAULT_CALL_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
1216
1217
  INVITATION_ALLOWED_FIELDS?: Array<UserAttributeEnum | BlankEnum>;
1217
1218
  ENABLED_USER_PROFILE_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
1218
1219
  MANDATORY_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
@@ -1471,6 +1472,7 @@ export type ConstanceSettingsRequest = {
1471
1472
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
1472
1473
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
1473
1474
  DEFAULT_OFFERING_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
1475
+ DEFAULT_CALL_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
1474
1476
  INVITATION_ALLOWED_FIELDS?: Array<UserAttributeEnum | BlankEnum>;
1475
1477
  ENABLED_USER_PROFILE_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
1476
1478
  MANDATORY_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
@@ -4152,7 +4154,7 @@ export type TriggerSyncRequestRequest = {
4152
4154
  */
4153
4155
  resource_uuid?: string;
4154
4156
  };
4155
- export type UserAttributeEnum = 'username' | 'first_name' | 'last_name' | 'full_name' | 'email' | 'phone_number' | 'organization' | 'job_title' | 'affiliations' | 'gender' | 'personal_title' | 'birth_date' | 'place_of_birth' | 'country_of_residence' | 'nationality' | 'nationalities' | 'organization_country' | 'organization_type' | 'organization_registry_code' | 'eduperson_assurance' | 'civil_number' | 'identity_source';
4157
+ export type UserAttributeEnum = 'username' | 'registration_method' | 'first_name' | 'last_name' | 'full_name' | 'email' | 'phone_number' | 'organization' | 'job_title' | 'affiliations' | 'gender' | 'personal_title' | 'birth_date' | 'place_of_birth' | 'country_of_residence' | 'nationality' | 'nationalities' | 'organization_country' | 'organization_type' | 'organization_registry_code' | 'eduperson_assurance' | 'civil_number' | 'identity_source';
4156
4158
  export type VendorNameChoice = {
4157
4159
  value: string;
4158
4160
  label: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@waldur/admin",
3
- "version": "8.0.8-dev.33",
3
+ "version": "8.0.8-dev.34",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
package/src/types.gen.ts CHANGED
@@ -1269,6 +1269,7 @@ export type ConstanceSettings = {
1269
1269
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
1270
1270
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
1271
1271
  DEFAULT_OFFERING_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
1272
+ DEFAULT_CALL_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
1272
1273
  INVITATION_ALLOWED_FIELDS?: Array<UserAttributeEnum | BlankEnum>;
1273
1274
  ENABLED_USER_PROFILE_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
1274
1275
  MANDATORY_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
@@ -1528,6 +1529,7 @@ export type ConstanceSettingsRequest = {
1528
1529
  WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
1529
1530
  REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
1530
1531
  DEFAULT_OFFERING_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
1532
+ DEFAULT_CALL_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
1531
1533
  INVITATION_ALLOWED_FIELDS?: Array<UserAttributeEnum | BlankEnum>;
1532
1534
  ENABLED_USER_PROFILE_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
1533
1535
  MANDATORY_USER_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
@@ -4388,7 +4390,7 @@ export type TriggerSyncRequestRequest = {
4388
4390
  resource_uuid?: string;
4389
4391
  };
4390
4392
 
4391
- export type UserAttributeEnum = 'username' | 'first_name' | 'last_name' | 'full_name' | 'email' | 'phone_number' | 'organization' | 'job_title' | 'affiliations' | 'gender' | 'personal_title' | 'birth_date' | 'place_of_birth' | 'country_of_residence' | 'nationality' | 'nationalities' | 'organization_country' | 'organization_type' | 'organization_registry_code' | 'eduperson_assurance' | 'civil_number' | 'identity_source';
4393
+ export type UserAttributeEnum = 'username' | 'registration_method' | 'first_name' | 'last_name' | 'full_name' | 'email' | 'phone_number' | 'organization' | 'job_title' | 'affiliations' | 'gender' | 'personal_title' | 'birth_date' | 'place_of_birth' | 'country_of_residence' | 'nationality' | 'nationalities' | 'organization_country' | 'organization_type' | 'organization_registry_code' | 'eduperson_assurance' | 'civil_number' | 'identity_source';
4392
4394
 
4393
4395
  export type VendorNameChoice = {
4394
4396
  value: string;