waldur-js-client 7.9.9-dev.3 → 7.9.9-dev.4

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.
@@ -19688,6 +19688,10 @@ export type UserActionSummary = {
19688
19688
  };
19689
19689
  overdue: number;
19690
19690
  };
19691
+ export type UserActiveStatusCount = {
19692
+ status: string;
19693
+ count: number;
19694
+ };
19691
19695
  export type UserAffiliationCount = {
19692
19696
  /**
19693
19697
  * Affiliation name
@@ -19834,6 +19838,10 @@ export type UserInfoRequest = {
19834
19838
  shortname?: string | null;
19835
19839
  user: string;
19836
19840
  };
19841
+ export type UserLanguageCount = {
19842
+ language: string;
19843
+ count: number;
19844
+ };
19837
19845
  export type UserOfferingConsent = {
19838
19846
  readonly uuid: string;
19839
19847
  readonly user_uuid: string;
@@ -19881,6 +19889,10 @@ export type UserOrganizationCount = {
19881
19889
  */
19882
19890
  count: number;
19883
19891
  };
19892
+ export type UserRegistrationTrend = {
19893
+ month: string;
19894
+ count: number;
19895
+ };
19884
19896
  export type UserRequest = {
19885
19897
  /**
19886
19898
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
@@ -66631,6 +66643,642 @@ export type UsersMeCountResponses = {
66631
66643
  */
66632
66644
  200: unknown;
66633
66645
  };
66646
+ export type UsersUserActiveStatusCountListData = {
66647
+ body?: never;
66648
+ path?: never;
66649
+ query?: {
66650
+ /**
66651
+ * Agreement date after
66652
+ */
66653
+ agreement_date?: string;
66654
+ civil_number?: string;
66655
+ /**
66656
+ * Customer UUID
66657
+ */
66658
+ customer_uuid?: string;
66659
+ /**
66660
+ * Date joined after
66661
+ */
66662
+ date_joined?: string;
66663
+ description?: string;
66664
+ /**
66665
+ * Email
66666
+ */
66667
+ email?: string;
66668
+ /**
66669
+ * Full name
66670
+ */
66671
+ full_name?: string;
66672
+ /**
66673
+ * Is active
66674
+ */
66675
+ is_active?: boolean;
66676
+ /**
66677
+ * Is staff
66678
+ */
66679
+ is_staff?: boolean;
66680
+ /**
66681
+ * Is support
66682
+ */
66683
+ is_support?: boolean;
66684
+ /**
66685
+ * Job title
66686
+ */
66687
+ job_title?: string;
66688
+ /**
66689
+ * Date modified after
66690
+ */
66691
+ modified?: string;
66692
+ /**
66693
+ * Native name
66694
+ */
66695
+ native_name?: string;
66696
+ /**
66697
+ * Ordering
66698
+ *
66699
+ *
66700
+ */
66701
+ o?: Array<'-description' | '-email' | '-full_name' | '-is_active' | '-is_staff' | '-is_support' | '-job_title' | '-native_name' | '-organization' | '-phone_number' | '-registration_method' | '-username' | 'description' | 'email' | 'full_name' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'native_name' | 'organization' | 'phone_number' | 'registration_method' | 'username'>;
66702
+ /**
66703
+ * Organization
66704
+ */
66705
+ organization?: string;
66706
+ /**
66707
+ * Organization roles
66708
+ */
66709
+ organization_roles?: string;
66710
+ /**
66711
+ * A page number within the paginated result set.
66712
+ */
66713
+ page?: number;
66714
+ /**
66715
+ * Number of results to return per page.
66716
+ */
66717
+ page_size?: number;
66718
+ phone_number?: string;
66719
+ /**
66720
+ * Project roles
66721
+ */
66722
+ project_roles?: string;
66723
+ /**
66724
+ * Project UUID
66725
+ */
66726
+ project_uuid?: string;
66727
+ /**
66728
+ * Filter by first name, last name, civil number, username or email
66729
+ */
66730
+ query?: string;
66731
+ registration_method?: string;
66732
+ /**
66733
+ * User keyword
66734
+ */
66735
+ user_keyword?: string;
66736
+ /**
66737
+ * Username (exact)
66738
+ */
66739
+ username?: string;
66740
+ /**
66741
+ * Comma-separated usernames
66742
+ */
66743
+ username_list?: string;
66744
+ };
66745
+ url: '/api/users/user_active_status_count/';
66746
+ };
66747
+ export type UsersUserActiveStatusCountListResponses = {
66748
+ 200: Array<UserActiveStatusCount>;
66749
+ };
66750
+ export type UsersUserActiveStatusCountListResponse = UsersUserActiveStatusCountListResponses[keyof UsersUserActiveStatusCountListResponses];
66751
+ export type UsersUserActiveStatusCountCountData = {
66752
+ body?: never;
66753
+ path?: never;
66754
+ query?: {
66755
+ /**
66756
+ * Agreement date after
66757
+ */
66758
+ agreement_date?: string;
66759
+ civil_number?: string;
66760
+ /**
66761
+ * Customer UUID
66762
+ */
66763
+ customer_uuid?: string;
66764
+ /**
66765
+ * Date joined after
66766
+ */
66767
+ date_joined?: string;
66768
+ description?: string;
66769
+ /**
66770
+ * Email
66771
+ */
66772
+ email?: string;
66773
+ /**
66774
+ * Full name
66775
+ */
66776
+ full_name?: string;
66777
+ /**
66778
+ * Is active
66779
+ */
66780
+ is_active?: boolean;
66781
+ /**
66782
+ * Is staff
66783
+ */
66784
+ is_staff?: boolean;
66785
+ /**
66786
+ * Is support
66787
+ */
66788
+ is_support?: boolean;
66789
+ /**
66790
+ * Job title
66791
+ */
66792
+ job_title?: string;
66793
+ /**
66794
+ * Date modified after
66795
+ */
66796
+ modified?: string;
66797
+ /**
66798
+ * Native name
66799
+ */
66800
+ native_name?: string;
66801
+ /**
66802
+ * Ordering
66803
+ *
66804
+ *
66805
+ */
66806
+ o?: Array<'-description' | '-email' | '-full_name' | '-is_active' | '-is_staff' | '-is_support' | '-job_title' | '-native_name' | '-organization' | '-phone_number' | '-registration_method' | '-username' | 'description' | 'email' | 'full_name' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'native_name' | 'organization' | 'phone_number' | 'registration_method' | 'username'>;
66807
+ /**
66808
+ * Organization
66809
+ */
66810
+ organization?: string;
66811
+ /**
66812
+ * Organization roles
66813
+ */
66814
+ organization_roles?: string;
66815
+ /**
66816
+ * A page number within the paginated result set.
66817
+ */
66818
+ page?: number;
66819
+ /**
66820
+ * Number of results to return per page.
66821
+ */
66822
+ page_size?: number;
66823
+ phone_number?: string;
66824
+ /**
66825
+ * Project roles
66826
+ */
66827
+ project_roles?: string;
66828
+ /**
66829
+ * Project UUID
66830
+ */
66831
+ project_uuid?: string;
66832
+ /**
66833
+ * Filter by first name, last name, civil number, username or email
66834
+ */
66835
+ query?: string;
66836
+ registration_method?: string;
66837
+ /**
66838
+ * User keyword
66839
+ */
66840
+ user_keyword?: string;
66841
+ /**
66842
+ * Username (exact)
66843
+ */
66844
+ username?: string;
66845
+ /**
66846
+ * Comma-separated usernames
66847
+ */
66848
+ username_list?: string;
66849
+ };
66850
+ url: '/api/users/user_active_status_count/';
66851
+ };
66852
+ export type UsersUserActiveStatusCountCountResponses = {
66853
+ /**
66854
+ * No response body
66855
+ */
66856
+ 200: unknown;
66857
+ };
66858
+ export type UsersUserLanguageCountListData = {
66859
+ body?: never;
66860
+ path?: never;
66861
+ query?: {
66862
+ /**
66863
+ * Agreement date after
66864
+ */
66865
+ agreement_date?: string;
66866
+ civil_number?: string;
66867
+ /**
66868
+ * Customer UUID
66869
+ */
66870
+ customer_uuid?: string;
66871
+ /**
66872
+ * Date joined after
66873
+ */
66874
+ date_joined?: string;
66875
+ description?: string;
66876
+ /**
66877
+ * Email
66878
+ */
66879
+ email?: string;
66880
+ /**
66881
+ * Full name
66882
+ */
66883
+ full_name?: string;
66884
+ /**
66885
+ * Is active
66886
+ */
66887
+ is_active?: boolean;
66888
+ /**
66889
+ * Is staff
66890
+ */
66891
+ is_staff?: boolean;
66892
+ /**
66893
+ * Is support
66894
+ */
66895
+ is_support?: boolean;
66896
+ /**
66897
+ * Job title
66898
+ */
66899
+ job_title?: string;
66900
+ /**
66901
+ * Date modified after
66902
+ */
66903
+ modified?: string;
66904
+ /**
66905
+ * Native name
66906
+ */
66907
+ native_name?: string;
66908
+ /**
66909
+ * Ordering
66910
+ *
66911
+ *
66912
+ */
66913
+ o?: Array<'-description' | '-email' | '-full_name' | '-is_active' | '-is_staff' | '-is_support' | '-job_title' | '-native_name' | '-organization' | '-phone_number' | '-registration_method' | '-username' | 'description' | 'email' | 'full_name' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'native_name' | 'organization' | 'phone_number' | 'registration_method' | 'username'>;
66914
+ /**
66915
+ * Organization
66916
+ */
66917
+ organization?: string;
66918
+ /**
66919
+ * Organization roles
66920
+ */
66921
+ organization_roles?: string;
66922
+ /**
66923
+ * A page number within the paginated result set.
66924
+ */
66925
+ page?: number;
66926
+ /**
66927
+ * Number of results to return per page.
66928
+ */
66929
+ page_size?: number;
66930
+ phone_number?: string;
66931
+ /**
66932
+ * Project roles
66933
+ */
66934
+ project_roles?: string;
66935
+ /**
66936
+ * Project UUID
66937
+ */
66938
+ project_uuid?: string;
66939
+ /**
66940
+ * Filter by first name, last name, civil number, username or email
66941
+ */
66942
+ query?: string;
66943
+ registration_method?: string;
66944
+ /**
66945
+ * User keyword
66946
+ */
66947
+ user_keyword?: string;
66948
+ /**
66949
+ * Username (exact)
66950
+ */
66951
+ username?: string;
66952
+ /**
66953
+ * Comma-separated usernames
66954
+ */
66955
+ username_list?: string;
66956
+ };
66957
+ url: '/api/users/user_language_count/';
66958
+ };
66959
+ export type UsersUserLanguageCountListResponses = {
66960
+ 200: Array<UserLanguageCount>;
66961
+ };
66962
+ export type UsersUserLanguageCountListResponse = UsersUserLanguageCountListResponses[keyof UsersUserLanguageCountListResponses];
66963
+ export type UsersUserLanguageCountCountData = {
66964
+ body?: never;
66965
+ path?: never;
66966
+ query?: {
66967
+ /**
66968
+ * Agreement date after
66969
+ */
66970
+ agreement_date?: string;
66971
+ civil_number?: string;
66972
+ /**
66973
+ * Customer UUID
66974
+ */
66975
+ customer_uuid?: string;
66976
+ /**
66977
+ * Date joined after
66978
+ */
66979
+ date_joined?: string;
66980
+ description?: string;
66981
+ /**
66982
+ * Email
66983
+ */
66984
+ email?: string;
66985
+ /**
66986
+ * Full name
66987
+ */
66988
+ full_name?: string;
66989
+ /**
66990
+ * Is active
66991
+ */
66992
+ is_active?: boolean;
66993
+ /**
66994
+ * Is staff
66995
+ */
66996
+ is_staff?: boolean;
66997
+ /**
66998
+ * Is support
66999
+ */
67000
+ is_support?: boolean;
67001
+ /**
67002
+ * Job title
67003
+ */
67004
+ job_title?: string;
67005
+ /**
67006
+ * Date modified after
67007
+ */
67008
+ modified?: string;
67009
+ /**
67010
+ * Native name
67011
+ */
67012
+ native_name?: string;
67013
+ /**
67014
+ * Ordering
67015
+ *
67016
+ *
67017
+ */
67018
+ o?: Array<'-description' | '-email' | '-full_name' | '-is_active' | '-is_staff' | '-is_support' | '-job_title' | '-native_name' | '-organization' | '-phone_number' | '-registration_method' | '-username' | 'description' | 'email' | 'full_name' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'native_name' | 'organization' | 'phone_number' | 'registration_method' | 'username'>;
67019
+ /**
67020
+ * Organization
67021
+ */
67022
+ organization?: string;
67023
+ /**
67024
+ * Organization roles
67025
+ */
67026
+ organization_roles?: string;
67027
+ /**
67028
+ * A page number within the paginated result set.
67029
+ */
67030
+ page?: number;
67031
+ /**
67032
+ * Number of results to return per page.
67033
+ */
67034
+ page_size?: number;
67035
+ phone_number?: string;
67036
+ /**
67037
+ * Project roles
67038
+ */
67039
+ project_roles?: string;
67040
+ /**
67041
+ * Project UUID
67042
+ */
67043
+ project_uuid?: string;
67044
+ /**
67045
+ * Filter by first name, last name, civil number, username or email
67046
+ */
67047
+ query?: string;
67048
+ registration_method?: string;
67049
+ /**
67050
+ * User keyword
67051
+ */
67052
+ user_keyword?: string;
67053
+ /**
67054
+ * Username (exact)
67055
+ */
67056
+ username?: string;
67057
+ /**
67058
+ * Comma-separated usernames
67059
+ */
67060
+ username_list?: string;
67061
+ };
67062
+ url: '/api/users/user_language_count/';
67063
+ };
67064
+ export type UsersUserLanguageCountCountResponses = {
67065
+ /**
67066
+ * No response body
67067
+ */
67068
+ 200: unknown;
67069
+ };
67070
+ export type UsersUserRegistrationTrendListData = {
67071
+ body?: never;
67072
+ path?: never;
67073
+ query?: {
67074
+ /**
67075
+ * Agreement date after
67076
+ */
67077
+ agreement_date?: string;
67078
+ civil_number?: string;
67079
+ /**
67080
+ * Customer UUID
67081
+ */
67082
+ customer_uuid?: string;
67083
+ /**
67084
+ * Date joined after
67085
+ */
67086
+ date_joined?: string;
67087
+ description?: string;
67088
+ /**
67089
+ * Email
67090
+ */
67091
+ email?: string;
67092
+ /**
67093
+ * Full name
67094
+ */
67095
+ full_name?: string;
67096
+ /**
67097
+ * Is active
67098
+ */
67099
+ is_active?: boolean;
67100
+ /**
67101
+ * Is staff
67102
+ */
67103
+ is_staff?: boolean;
67104
+ /**
67105
+ * Is support
67106
+ */
67107
+ is_support?: boolean;
67108
+ /**
67109
+ * Job title
67110
+ */
67111
+ job_title?: string;
67112
+ /**
67113
+ * Date modified after
67114
+ */
67115
+ modified?: string;
67116
+ /**
67117
+ * Native name
67118
+ */
67119
+ native_name?: string;
67120
+ /**
67121
+ * Ordering
67122
+ *
67123
+ *
67124
+ */
67125
+ o?: Array<'-description' | '-email' | '-full_name' | '-is_active' | '-is_staff' | '-is_support' | '-job_title' | '-native_name' | '-organization' | '-phone_number' | '-registration_method' | '-username' | 'description' | 'email' | 'full_name' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'native_name' | 'organization' | 'phone_number' | 'registration_method' | 'username'>;
67126
+ /**
67127
+ * Organization
67128
+ */
67129
+ organization?: string;
67130
+ /**
67131
+ * Organization roles
67132
+ */
67133
+ organization_roles?: string;
67134
+ /**
67135
+ * A page number within the paginated result set.
67136
+ */
67137
+ page?: number;
67138
+ /**
67139
+ * Number of results to return per page.
67140
+ */
67141
+ page_size?: number;
67142
+ phone_number?: string;
67143
+ /**
67144
+ * Project roles
67145
+ */
67146
+ project_roles?: string;
67147
+ /**
67148
+ * Project UUID
67149
+ */
67150
+ project_uuid?: string;
67151
+ /**
67152
+ * Filter by first name, last name, civil number, username or email
67153
+ */
67154
+ query?: string;
67155
+ registration_method?: string;
67156
+ /**
67157
+ * User keyword
67158
+ */
67159
+ user_keyword?: string;
67160
+ /**
67161
+ * Username (exact)
67162
+ */
67163
+ username?: string;
67164
+ /**
67165
+ * Comma-separated usernames
67166
+ */
67167
+ username_list?: string;
67168
+ };
67169
+ url: '/api/users/user_registration_trend/';
67170
+ };
67171
+ export type UsersUserRegistrationTrendListResponses = {
67172
+ 200: Array<UserRegistrationTrend>;
67173
+ };
67174
+ export type UsersUserRegistrationTrendListResponse = UsersUserRegistrationTrendListResponses[keyof UsersUserRegistrationTrendListResponses];
67175
+ export type UsersUserRegistrationTrendCountData = {
67176
+ body?: never;
67177
+ path?: never;
67178
+ query?: {
67179
+ /**
67180
+ * Agreement date after
67181
+ */
67182
+ agreement_date?: string;
67183
+ civil_number?: string;
67184
+ /**
67185
+ * Customer UUID
67186
+ */
67187
+ customer_uuid?: string;
67188
+ /**
67189
+ * Date joined after
67190
+ */
67191
+ date_joined?: string;
67192
+ description?: string;
67193
+ /**
67194
+ * Email
67195
+ */
67196
+ email?: string;
67197
+ /**
67198
+ * Full name
67199
+ */
67200
+ full_name?: string;
67201
+ /**
67202
+ * Is active
67203
+ */
67204
+ is_active?: boolean;
67205
+ /**
67206
+ * Is staff
67207
+ */
67208
+ is_staff?: boolean;
67209
+ /**
67210
+ * Is support
67211
+ */
67212
+ is_support?: boolean;
67213
+ /**
67214
+ * Job title
67215
+ */
67216
+ job_title?: string;
67217
+ /**
67218
+ * Date modified after
67219
+ */
67220
+ modified?: string;
67221
+ /**
67222
+ * Native name
67223
+ */
67224
+ native_name?: string;
67225
+ /**
67226
+ * Ordering
67227
+ *
67228
+ *
67229
+ */
67230
+ o?: Array<'-description' | '-email' | '-full_name' | '-is_active' | '-is_staff' | '-is_support' | '-job_title' | '-native_name' | '-organization' | '-phone_number' | '-registration_method' | '-username' | 'description' | 'email' | 'full_name' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'native_name' | 'organization' | 'phone_number' | 'registration_method' | 'username'>;
67231
+ /**
67232
+ * Organization
67233
+ */
67234
+ organization?: string;
67235
+ /**
67236
+ * Organization roles
67237
+ */
67238
+ organization_roles?: string;
67239
+ /**
67240
+ * A page number within the paginated result set.
67241
+ */
67242
+ page?: number;
67243
+ /**
67244
+ * Number of results to return per page.
67245
+ */
67246
+ page_size?: number;
67247
+ phone_number?: string;
67248
+ /**
67249
+ * Project roles
67250
+ */
67251
+ project_roles?: string;
67252
+ /**
67253
+ * Project UUID
67254
+ */
67255
+ project_uuid?: string;
67256
+ /**
67257
+ * Filter by first name, last name, civil number, username or email
67258
+ */
67259
+ query?: string;
67260
+ registration_method?: string;
67261
+ /**
67262
+ * User keyword
67263
+ */
67264
+ user_keyword?: string;
67265
+ /**
67266
+ * Username (exact)
67267
+ */
67268
+ username?: string;
67269
+ /**
67270
+ * Comma-separated usernames
67271
+ */
67272
+ username_list?: string;
67273
+ };
67274
+ url: '/api/users/user_registration_trend/';
67275
+ };
67276
+ export type UsersUserRegistrationTrendCountResponses = {
67277
+ /**
67278
+ * No response body
67279
+ */
67280
+ 200: unknown;
67281
+ };
66634
67282
  export type VersionRetrieveData = {
66635
67283
  body?: never;
66636
67284
  path?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.9.9-dev.3",
3
+ "version": "7.9.9-dev.4",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",