waldur-js-client 1.0.4-dev.83 → 1.0.4-dev.84
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 +15 -3
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -6456,6 +6456,10 @@ export type PatchedUserRequest = {
|
|
|
6456
6456
|
* User must agree with the policy to register.
|
|
6457
6457
|
*/
|
|
6458
6458
|
agree_with_policy?: boolean;
|
|
6459
|
+
/**
|
|
6460
|
+
* Designates whether the user is allowed to receive email notifications.
|
|
6461
|
+
*/
|
|
6462
|
+
notifications_enabled?: boolean;
|
|
6459
6463
|
preferred_language?: string;
|
|
6460
6464
|
first_name?: string;
|
|
6461
6465
|
last_name?: string;
|
|
@@ -8990,6 +8994,10 @@ export type User = {
|
|
|
8990
8994
|
* Indicates when the user has agreed with the policy.
|
|
8991
8995
|
*/
|
|
8992
8996
|
readonly agreement_date?: string | null;
|
|
8997
|
+
/**
|
|
8998
|
+
* Designates whether the user is allowed to receive email notifications.
|
|
8999
|
+
*/
|
|
9000
|
+
notifications_enabled?: boolean;
|
|
8993
9001
|
preferred_language?: string;
|
|
8994
9002
|
readonly permissions?: Array<Permission>;
|
|
8995
9003
|
readonly requested_email?: string | null;
|
|
@@ -9074,6 +9082,10 @@ export type UserRequest = {
|
|
|
9074
9082
|
* User must agree with the policy to register.
|
|
9075
9083
|
*/
|
|
9076
9084
|
agree_with_policy?: boolean;
|
|
9085
|
+
/**
|
|
9086
|
+
* Designates whether the user is allowed to receive email notifications.
|
|
9087
|
+
*/
|
|
9088
|
+
notifications_enabled?: boolean;
|
|
9077
9089
|
preferred_language?: string;
|
|
9078
9090
|
first_name?: string;
|
|
9079
9091
|
last_name?: string;
|
|
@@ -28488,7 +28500,7 @@ export type UsersListData = {
|
|
|
28488
28500
|
date_joined?: string;
|
|
28489
28501
|
description?: string;
|
|
28490
28502
|
email?: string;
|
|
28491
|
-
field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'civil_number' | 'date_joined' | 'description' | 'email' | 'first_name' | 'full_name' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'native_name' | 'organization' | 'permissions' | 'phone_number' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_lifetime' | 'url' | 'username' | 'uuid'>;
|
|
28503
|
+
field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'civil_number' | 'date_joined' | 'description' | 'email' | 'first_name' | 'full_name' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'native_name' | 'notifications_enabled' | 'organization' | 'permissions' | 'phone_number' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_lifetime' | 'url' | 'username' | 'uuid'>;
|
|
28492
28504
|
/**
|
|
28493
28505
|
* Full name
|
|
28494
28506
|
*/
|
|
@@ -28584,7 +28596,7 @@ export type UsersRetrieveData = {
|
|
|
28584
28596
|
uuid: string;
|
|
28585
28597
|
};
|
|
28586
28598
|
query?: {
|
|
28587
|
-
field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'civil_number' | 'date_joined' | 'description' | 'email' | 'first_name' | 'full_name' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'native_name' | 'organization' | 'permissions' | 'phone_number' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_lifetime' | 'url' | 'username' | 'uuid'>;
|
|
28599
|
+
field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'civil_number' | 'date_joined' | 'description' | 'email' | 'first_name' | 'full_name' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'native_name' | 'notifications_enabled' | 'organization' | 'permissions' | 'phone_number' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_lifetime' | 'url' | 'username' | 'uuid'>;
|
|
28588
28600
|
};
|
|
28589
28601
|
url: '/api/users/{uuid}/';
|
|
28590
28602
|
};
|
|
@@ -28712,7 +28724,7 @@ export type UsersMeRetrieveData = {
|
|
|
28712
28724
|
body?: never;
|
|
28713
28725
|
path?: never;
|
|
28714
28726
|
query?: {
|
|
28715
|
-
field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'civil_number' | 'date_joined' | 'description' | 'email' | 'first_name' | 'full_name' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'native_name' | 'organization' | 'permissions' | 'phone_number' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_lifetime' | 'url' | 'username' | 'uuid'>;
|
|
28727
|
+
field?: Array<'affiliations' | 'agree_with_policy' | 'agreement_date' | 'civil_number' | 'date_joined' | 'description' | 'email' | 'first_name' | 'full_name' | 'has_active_session' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'native_name' | 'notifications_enabled' | 'organization' | 'permissions' | 'phone_number' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_lifetime' | 'url' | 'username' | 'uuid'>;
|
|
28716
28728
|
};
|
|
28717
28729
|
url: '/api/users/me/';
|
|
28718
28730
|
};
|