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.
- package/dist/sdk.gen.d.ts +31 -1
- package/dist/sdk.gen.js +120 -0
- package/dist/types.gen.d.ts +648 -0
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -39154,6 +39154,126 @@ export const usersMeCount = (options) => {
|
|
|
39154
39154
|
...options
|
|
39155
39155
|
});
|
|
39156
39156
|
};
|
|
39157
|
+
/**
|
|
39158
|
+
* Get user counts by active status
|
|
39159
|
+
* Returns aggregated counts of users by active/inactive status. Staff or support only.
|
|
39160
|
+
*/
|
|
39161
|
+
export const usersUserActiveStatusCountList = (options) => {
|
|
39162
|
+
return (options?.client ?? _heyApiClient).get({
|
|
39163
|
+
security: [
|
|
39164
|
+
{
|
|
39165
|
+
name: 'Authorization',
|
|
39166
|
+
type: 'apiKey'
|
|
39167
|
+
},
|
|
39168
|
+
{
|
|
39169
|
+
scheme: 'bearer',
|
|
39170
|
+
type: 'http'
|
|
39171
|
+
}
|
|
39172
|
+
],
|
|
39173
|
+
url: '/api/users/user_active_status_count/',
|
|
39174
|
+
...options
|
|
39175
|
+
});
|
|
39176
|
+
};
|
|
39177
|
+
/**
|
|
39178
|
+
* Get user counts by active status
|
|
39179
|
+
* Get number of items in the collection matching the request parameters.
|
|
39180
|
+
*/
|
|
39181
|
+
export const usersUserActiveStatusCountCount = (options) => {
|
|
39182
|
+
return (options?.client ?? _heyApiClient).head({
|
|
39183
|
+
security: [
|
|
39184
|
+
{
|
|
39185
|
+
name: 'Authorization',
|
|
39186
|
+
type: 'apiKey'
|
|
39187
|
+
},
|
|
39188
|
+
{
|
|
39189
|
+
scheme: 'bearer',
|
|
39190
|
+
type: 'http'
|
|
39191
|
+
}
|
|
39192
|
+
],
|
|
39193
|
+
url: '/api/users/user_active_status_count/',
|
|
39194
|
+
...options
|
|
39195
|
+
});
|
|
39196
|
+
};
|
|
39197
|
+
/**
|
|
39198
|
+
* Get user counts by preferred language
|
|
39199
|
+
* Returns aggregated counts of users by preferred language. Staff or support only.
|
|
39200
|
+
*/
|
|
39201
|
+
export const usersUserLanguageCountList = (options) => {
|
|
39202
|
+
return (options?.client ?? _heyApiClient).get({
|
|
39203
|
+
security: [
|
|
39204
|
+
{
|
|
39205
|
+
name: 'Authorization',
|
|
39206
|
+
type: 'apiKey'
|
|
39207
|
+
},
|
|
39208
|
+
{
|
|
39209
|
+
scheme: 'bearer',
|
|
39210
|
+
type: 'http'
|
|
39211
|
+
}
|
|
39212
|
+
],
|
|
39213
|
+
url: '/api/users/user_language_count/',
|
|
39214
|
+
...options
|
|
39215
|
+
});
|
|
39216
|
+
};
|
|
39217
|
+
/**
|
|
39218
|
+
* Get user counts by preferred language
|
|
39219
|
+
* Get number of items in the collection matching the request parameters.
|
|
39220
|
+
*/
|
|
39221
|
+
export const usersUserLanguageCountCount = (options) => {
|
|
39222
|
+
return (options?.client ?? _heyApiClient).head({
|
|
39223
|
+
security: [
|
|
39224
|
+
{
|
|
39225
|
+
name: 'Authorization',
|
|
39226
|
+
type: 'apiKey'
|
|
39227
|
+
},
|
|
39228
|
+
{
|
|
39229
|
+
scheme: 'bearer',
|
|
39230
|
+
type: 'http'
|
|
39231
|
+
}
|
|
39232
|
+
],
|
|
39233
|
+
url: '/api/users/user_language_count/',
|
|
39234
|
+
...options
|
|
39235
|
+
});
|
|
39236
|
+
};
|
|
39237
|
+
/**
|
|
39238
|
+
* Get user registration trends by month
|
|
39239
|
+
* Returns user registration counts aggregated by month. Staff or support only.
|
|
39240
|
+
*/
|
|
39241
|
+
export const usersUserRegistrationTrendList = (options) => {
|
|
39242
|
+
return (options?.client ?? _heyApiClient).get({
|
|
39243
|
+
security: [
|
|
39244
|
+
{
|
|
39245
|
+
name: 'Authorization',
|
|
39246
|
+
type: 'apiKey'
|
|
39247
|
+
},
|
|
39248
|
+
{
|
|
39249
|
+
scheme: 'bearer',
|
|
39250
|
+
type: 'http'
|
|
39251
|
+
}
|
|
39252
|
+
],
|
|
39253
|
+
url: '/api/users/user_registration_trend/',
|
|
39254
|
+
...options
|
|
39255
|
+
});
|
|
39256
|
+
};
|
|
39257
|
+
/**
|
|
39258
|
+
* Get user registration trends by month
|
|
39259
|
+
* Get number of items in the collection matching the request parameters.
|
|
39260
|
+
*/
|
|
39261
|
+
export const usersUserRegistrationTrendCount = (options) => {
|
|
39262
|
+
return (options?.client ?? _heyApiClient).head({
|
|
39263
|
+
security: [
|
|
39264
|
+
{
|
|
39265
|
+
name: 'Authorization',
|
|
39266
|
+
type: 'apiKey'
|
|
39267
|
+
},
|
|
39268
|
+
{
|
|
39269
|
+
scheme: 'bearer',
|
|
39270
|
+
type: 'http'
|
|
39271
|
+
}
|
|
39272
|
+
],
|
|
39273
|
+
url: '/api/users/user_registration_trend/',
|
|
39274
|
+
...options
|
|
39275
|
+
});
|
|
39276
|
+
};
|
|
39157
39277
|
/**
|
|
39158
39278
|
* Get application version
|
|
39159
39279
|
* Retrieves the current installed version of the application and the latest available version from GitHub (if available). Requires staff or support user permissions.
|