waldur-js-client 7.9.9-dev.2 → 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 +93 -1
- package/dist/sdk.gen.js +442 -0
- package/dist/types.gen.d.ts +1596 -12
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -5928,6 +5928,73 @@ export const dailyQuotasRetrieve = (options) => {
|
|
|
5928
5928
|
...options
|
|
5929
5929
|
});
|
|
5930
5930
|
};
|
|
5931
|
+
export const dataAccessLogsList = (options) => {
|
|
5932
|
+
return (options?.client ?? _heyApiClient).get({
|
|
5933
|
+
security: [
|
|
5934
|
+
{
|
|
5935
|
+
name: 'Authorization',
|
|
5936
|
+
type: 'apiKey'
|
|
5937
|
+
},
|
|
5938
|
+
{
|
|
5939
|
+
scheme: 'bearer',
|
|
5940
|
+
type: 'http'
|
|
5941
|
+
}
|
|
5942
|
+
],
|
|
5943
|
+
url: '/api/data-access-logs/',
|
|
5944
|
+
...options
|
|
5945
|
+
});
|
|
5946
|
+
};
|
|
5947
|
+
/**
|
|
5948
|
+
* Get number of items in the collection matching the request parameters.
|
|
5949
|
+
*/
|
|
5950
|
+
export const dataAccessLogsCount = (options) => {
|
|
5951
|
+
return (options?.client ?? _heyApiClient).head({
|
|
5952
|
+
security: [
|
|
5953
|
+
{
|
|
5954
|
+
name: 'Authorization',
|
|
5955
|
+
type: 'apiKey'
|
|
5956
|
+
},
|
|
5957
|
+
{
|
|
5958
|
+
scheme: 'bearer',
|
|
5959
|
+
type: 'http'
|
|
5960
|
+
}
|
|
5961
|
+
],
|
|
5962
|
+
url: '/api/data-access-logs/',
|
|
5963
|
+
...options
|
|
5964
|
+
});
|
|
5965
|
+
};
|
|
5966
|
+
export const dataAccessLogsDestroy = (options) => {
|
|
5967
|
+
return (options.client ?? _heyApiClient).delete({
|
|
5968
|
+
security: [
|
|
5969
|
+
{
|
|
5970
|
+
name: 'Authorization',
|
|
5971
|
+
type: 'apiKey'
|
|
5972
|
+
},
|
|
5973
|
+
{
|
|
5974
|
+
scheme: 'bearer',
|
|
5975
|
+
type: 'http'
|
|
5976
|
+
}
|
|
5977
|
+
],
|
|
5978
|
+
url: '/api/data-access-logs/{uuid}/',
|
|
5979
|
+
...options
|
|
5980
|
+
});
|
|
5981
|
+
};
|
|
5982
|
+
export const dataAccessLogsRetrieve = (options) => {
|
|
5983
|
+
return (options.client ?? _heyApiClient).get({
|
|
5984
|
+
security: [
|
|
5985
|
+
{
|
|
5986
|
+
name: 'Authorization',
|
|
5987
|
+
type: 'apiKey'
|
|
5988
|
+
},
|
|
5989
|
+
{
|
|
5990
|
+
scheme: 'bearer',
|
|
5991
|
+
type: 'http'
|
|
5992
|
+
}
|
|
5993
|
+
],
|
|
5994
|
+
url: '/api/data-access-logs/{uuid}/',
|
|
5995
|
+
...options
|
|
5996
|
+
});
|
|
5997
|
+
};
|
|
5931
5998
|
/**
|
|
5932
5999
|
* Get comprehensive database statistics
|
|
5933
6000
|
* Retrieves comprehensive statistics about the PostgreSQL database including:
|
|
@@ -14505,6 +14572,26 @@ export const marketplaceProviderOfferingsCustomersList = (options) => {
|
|
|
14505
14572
|
...options
|
|
14506
14573
|
});
|
|
14507
14574
|
};
|
|
14575
|
+
/**
|
|
14576
|
+
* Delete user attribute config
|
|
14577
|
+
* Deletes the user attribute configuration for this offering. The offering will fall back to system defaults.
|
|
14578
|
+
*/
|
|
14579
|
+
export const marketplaceProviderOfferingsDeleteUserAttributeConfigDestroy = (options) => {
|
|
14580
|
+
return (options.client ?? _heyApiClient).delete({
|
|
14581
|
+
security: [
|
|
14582
|
+
{
|
|
14583
|
+
name: 'Authorization',
|
|
14584
|
+
type: 'apiKey'
|
|
14585
|
+
},
|
|
14586
|
+
{
|
|
14587
|
+
scheme: 'bearer',
|
|
14588
|
+
type: 'http'
|
|
14589
|
+
}
|
|
14590
|
+
],
|
|
14591
|
+
url: '/api/marketplace-provider-offerings/{uuid}/delete-user-attribute-config/',
|
|
14592
|
+
...options
|
|
14593
|
+
});
|
|
14594
|
+
};
|
|
14508
14595
|
/**
|
|
14509
14596
|
* Delete an access endpoint from an offering
|
|
14510
14597
|
* Deletes an existing access endpoint from an offering by its UUID.
|
|
@@ -15201,6 +15288,78 @@ export const marketplaceProviderOfferingsUnpause = (options) => {
|
|
|
15201
15288
|
...options
|
|
15202
15289
|
});
|
|
15203
15290
|
};
|
|
15291
|
+
/**
|
|
15292
|
+
* Update user attribute config
|
|
15293
|
+
* Creates or updates the user attribute configuration for this offering. This determines which user attributes are shared with the service provider.
|
|
15294
|
+
*/
|
|
15295
|
+
export const marketplaceProviderOfferingsUpdateUserAttributeConfigPartialUpdate = (options) => {
|
|
15296
|
+
return (options.client ?? _heyApiClient).patch({
|
|
15297
|
+
security: [
|
|
15298
|
+
{
|
|
15299
|
+
name: 'Authorization',
|
|
15300
|
+
type: 'apiKey'
|
|
15301
|
+
},
|
|
15302
|
+
{
|
|
15303
|
+
scheme: 'bearer',
|
|
15304
|
+
type: 'http'
|
|
15305
|
+
}
|
|
15306
|
+
],
|
|
15307
|
+
url: '/api/marketplace-provider-offerings/{uuid}/update-user-attribute-config/',
|
|
15308
|
+
...options,
|
|
15309
|
+
headers: {
|
|
15310
|
+
'Content-Type': 'application/json',
|
|
15311
|
+
...options.headers
|
|
15312
|
+
}
|
|
15313
|
+
});
|
|
15314
|
+
};
|
|
15315
|
+
/**
|
|
15316
|
+
* Update user attribute config
|
|
15317
|
+
* Creates or updates the user attribute configuration for this offering. This determines which user attributes are shared with the service provider.
|
|
15318
|
+
*/
|
|
15319
|
+
export const marketplaceProviderOfferingsUpdateUserAttributeConfig = (options) => {
|
|
15320
|
+
return (options.client ?? _heyApiClient).post({
|
|
15321
|
+
security: [
|
|
15322
|
+
{
|
|
15323
|
+
name: 'Authorization',
|
|
15324
|
+
type: 'apiKey'
|
|
15325
|
+
},
|
|
15326
|
+
{
|
|
15327
|
+
scheme: 'bearer',
|
|
15328
|
+
type: 'http'
|
|
15329
|
+
}
|
|
15330
|
+
],
|
|
15331
|
+
url: '/api/marketplace-provider-offerings/{uuid}/update-user-attribute-config/',
|
|
15332
|
+
...options,
|
|
15333
|
+
headers: {
|
|
15334
|
+
'Content-Type': 'application/json',
|
|
15335
|
+
...options.headers
|
|
15336
|
+
}
|
|
15337
|
+
});
|
|
15338
|
+
};
|
|
15339
|
+
/**
|
|
15340
|
+
* Update user attribute config
|
|
15341
|
+
* Creates or updates the user attribute configuration for this offering. This determines which user attributes are shared with the service provider.
|
|
15342
|
+
*/
|
|
15343
|
+
export const marketplaceProviderOfferingsUpdateUserAttributeConfigUpdate = (options) => {
|
|
15344
|
+
return (options.client ?? _heyApiClient).put({
|
|
15345
|
+
security: [
|
|
15346
|
+
{
|
|
15347
|
+
name: 'Authorization',
|
|
15348
|
+
type: 'apiKey'
|
|
15349
|
+
},
|
|
15350
|
+
{
|
|
15351
|
+
scheme: 'bearer',
|
|
15352
|
+
type: 'http'
|
|
15353
|
+
}
|
|
15354
|
+
],
|
|
15355
|
+
url: '/api/marketplace-provider-offerings/{uuid}/update-user-attribute-config/',
|
|
15356
|
+
...options,
|
|
15357
|
+
headers: {
|
|
15358
|
+
'Content-Type': 'application/json',
|
|
15359
|
+
...options.headers
|
|
15360
|
+
}
|
|
15361
|
+
});
|
|
15362
|
+
};
|
|
15204
15363
|
/**
|
|
15205
15364
|
* Update offering attributes
|
|
15206
15365
|
* Updates the attributes of an offering.
|
|
@@ -15585,6 +15744,26 @@ export const marketplaceProviderOfferingsUpdateUser = (options) => {
|
|
|
15585
15744
|
}
|
|
15586
15745
|
});
|
|
15587
15746
|
};
|
|
15747
|
+
/**
|
|
15748
|
+
* Get user attribute config
|
|
15749
|
+
* Returns the user attribute configuration for this offering, which determines which user attributes are exposed to the service provider.
|
|
15750
|
+
*/
|
|
15751
|
+
export const marketplaceProviderOfferingsUserAttributeConfigRetrieve = (options) => {
|
|
15752
|
+
return (options.client ?? _heyApiClient).get({
|
|
15753
|
+
security: [
|
|
15754
|
+
{
|
|
15755
|
+
name: 'Authorization',
|
|
15756
|
+
type: 'apiKey'
|
|
15757
|
+
},
|
|
15758
|
+
{
|
|
15759
|
+
scheme: 'bearer',
|
|
15760
|
+
type: 'http'
|
|
15761
|
+
}
|
|
15762
|
+
],
|
|
15763
|
+
url: '/api/marketplace-provider-offerings/{uuid}/user-attribute-config/',
|
|
15764
|
+
...options
|
|
15765
|
+
});
|
|
15766
|
+
};
|
|
15588
15767
|
/**
|
|
15589
15768
|
* Check user access to offering resources
|
|
15590
15769
|
* Checks if a specified user has access to any non-terminated resource of this offering.
|
|
@@ -30083,6 +30262,25 @@ export const proposalProtectedCallsAffinityMatrixRetrieve = (options) => {
|
|
|
30083
30262
|
...options
|
|
30084
30263
|
});
|
|
30085
30264
|
};
|
|
30265
|
+
/**
|
|
30266
|
+
* Get applicant attribute exposure configuration for this call.
|
|
30267
|
+
*/
|
|
30268
|
+
export const proposalProtectedCallsApplicantAttributeConfigRetrieve = (options) => {
|
|
30269
|
+
return (options.client ?? _heyApiClient).get({
|
|
30270
|
+
security: [
|
|
30271
|
+
{
|
|
30272
|
+
name: 'Authorization',
|
|
30273
|
+
type: 'apiKey'
|
|
30274
|
+
},
|
|
30275
|
+
{
|
|
30276
|
+
scheme: 'bearer',
|
|
30277
|
+
type: 'http'
|
|
30278
|
+
}
|
|
30279
|
+
],
|
|
30280
|
+
url: '/api/proposal-protected-calls/{uuid}/applicant_attribute_config/',
|
|
30281
|
+
...options
|
|
30282
|
+
});
|
|
30283
|
+
};
|
|
30086
30284
|
/**
|
|
30087
30285
|
* Archive a call.
|
|
30088
30286
|
*/
|
|
@@ -30270,6 +30468,25 @@ export const proposalProtectedCallsCreateManualAssignment = (options) => {
|
|
|
30270
30468
|
}
|
|
30271
30469
|
});
|
|
30272
30470
|
};
|
|
30471
|
+
/**
|
|
30472
|
+
* Delete custom applicant attribute config, reverting to system defaults.
|
|
30473
|
+
*/
|
|
30474
|
+
export const proposalProtectedCallsDeleteApplicantAttributeConfigDestroy = (options) => {
|
|
30475
|
+
return (options.client ?? _heyApiClient).delete({
|
|
30476
|
+
security: [
|
|
30477
|
+
{
|
|
30478
|
+
name: 'Authorization',
|
|
30479
|
+
type: 'apiKey'
|
|
30480
|
+
},
|
|
30481
|
+
{
|
|
30482
|
+
scheme: 'bearer',
|
|
30483
|
+
type: 'http'
|
|
30484
|
+
}
|
|
30485
|
+
],
|
|
30486
|
+
url: '/api/proposal-protected-calls/{uuid}/delete_applicant_attribute_config/',
|
|
30487
|
+
...options
|
|
30488
|
+
});
|
|
30489
|
+
};
|
|
30273
30490
|
/**
|
|
30274
30491
|
* Revoke a role from a user
|
|
30275
30492
|
* Removes a specific role from a user within the current scope. This effectively revokes their permissions associated with that role.
|
|
@@ -30997,6 +31214,52 @@ export const proposalProtectedCallsSuggestionsList = (options) => {
|
|
|
30997
31214
|
...options
|
|
30998
31215
|
});
|
|
30999
31216
|
};
|
|
31217
|
+
/**
|
|
31218
|
+
* Create or update applicant attribute exposure configuration.
|
|
31219
|
+
*/
|
|
31220
|
+
export const proposalProtectedCallsUpdateApplicantAttributeConfigPartialUpdate = (options) => {
|
|
31221
|
+
return (options.client ?? _heyApiClient).patch({
|
|
31222
|
+
security: [
|
|
31223
|
+
{
|
|
31224
|
+
name: 'Authorization',
|
|
31225
|
+
type: 'apiKey'
|
|
31226
|
+
},
|
|
31227
|
+
{
|
|
31228
|
+
scheme: 'bearer',
|
|
31229
|
+
type: 'http'
|
|
31230
|
+
}
|
|
31231
|
+
],
|
|
31232
|
+
url: '/api/proposal-protected-calls/{uuid}/update_applicant_attribute_config/',
|
|
31233
|
+
...options,
|
|
31234
|
+
headers: {
|
|
31235
|
+
'Content-Type': 'application/json',
|
|
31236
|
+
...options.headers
|
|
31237
|
+
}
|
|
31238
|
+
});
|
|
31239
|
+
};
|
|
31240
|
+
/**
|
|
31241
|
+
* Create or update applicant attribute exposure configuration.
|
|
31242
|
+
*/
|
|
31243
|
+
export const proposalProtectedCallsUpdateApplicantAttributeConfig = (options) => {
|
|
31244
|
+
return (options.client ?? _heyApiClient).post({
|
|
31245
|
+
security: [
|
|
31246
|
+
{
|
|
31247
|
+
name: 'Authorization',
|
|
31248
|
+
type: 'apiKey'
|
|
31249
|
+
},
|
|
31250
|
+
{
|
|
31251
|
+
scheme: 'bearer',
|
|
31252
|
+
type: 'http'
|
|
31253
|
+
}
|
|
31254
|
+
],
|
|
31255
|
+
url: '/api/proposal-protected-calls/{uuid}/update_applicant_attribute_config/',
|
|
31256
|
+
...options,
|
|
31257
|
+
headers: {
|
|
31258
|
+
'Content-Type': 'application/json',
|
|
31259
|
+
...options.headers
|
|
31260
|
+
}
|
|
31261
|
+
});
|
|
31262
|
+
};
|
|
31000
31263
|
/**
|
|
31001
31264
|
* Update a user's role expiration
|
|
31002
31265
|
* Updates the expiration time for a user's existing role in the current scope. This is useful for extending or shortening the duration of a permission. To make a role permanent, set expiration_time to null.
|
|
@@ -31110,6 +31373,25 @@ export const proposalPublicCallsRetrieve = (options) => {
|
|
|
31110
31373
|
...options
|
|
31111
31374
|
});
|
|
31112
31375
|
};
|
|
31376
|
+
/**
|
|
31377
|
+
* Check if the current user is eligible to submit proposals to this call.
|
|
31378
|
+
*/
|
|
31379
|
+
export const proposalPublicCallsCheckEligibilityRetrieve = (options) => {
|
|
31380
|
+
return (options.client ?? _heyApiClient).get({
|
|
31381
|
+
security: [
|
|
31382
|
+
{
|
|
31383
|
+
name: 'Authorization',
|
|
31384
|
+
type: 'apiKey'
|
|
31385
|
+
},
|
|
31386
|
+
{
|
|
31387
|
+
scheme: 'bearer',
|
|
31388
|
+
type: 'http'
|
|
31389
|
+
}
|
|
31390
|
+
],
|
|
31391
|
+
url: '/api/proposal-public-calls/{uuid}/check_eligibility/',
|
|
31392
|
+
...options
|
|
31393
|
+
});
|
|
31394
|
+
};
|
|
31113
31395
|
export const proposalRequestedOfferingsList = (options) => {
|
|
31114
31396
|
return (options?.client ?? _heyApiClient).get({
|
|
31115
31397
|
security: [
|
|
@@ -38711,6 +38993,46 @@ export const usersChangePassword = (options) => {
|
|
|
38711
38993
|
}
|
|
38712
38994
|
});
|
|
38713
38995
|
};
|
|
38996
|
+
/**
|
|
38997
|
+
* Get user data access visibility
|
|
38998
|
+
* Shows who has access to the user's profile data. Includes administrative access (staff/support), organizational access (same customer/project), and service provider access (via consent). Regular users see counts for admin access; staff/support see individual records.
|
|
38999
|
+
*/
|
|
39000
|
+
export const usersDataAccessRetrieve = (options) => {
|
|
39001
|
+
return (options.client ?? _heyApiClient).get({
|
|
39002
|
+
security: [
|
|
39003
|
+
{
|
|
39004
|
+
name: 'Authorization',
|
|
39005
|
+
type: 'apiKey'
|
|
39006
|
+
},
|
|
39007
|
+
{
|
|
39008
|
+
scheme: 'bearer',
|
|
39009
|
+
type: 'http'
|
|
39010
|
+
}
|
|
39011
|
+
],
|
|
39012
|
+
url: '/api/users/{uuid}/data_access/',
|
|
39013
|
+
...options
|
|
39014
|
+
});
|
|
39015
|
+
};
|
|
39016
|
+
/**
|
|
39017
|
+
* Get user data access history
|
|
39018
|
+
* Shows historical log of who has accessed the user's profile data. Regular users see anonymized accessor categories. Staff/support see full details including accessor identity, IP, and context.
|
|
39019
|
+
*/
|
|
39020
|
+
export const usersDataAccessHistoryList = (options) => {
|
|
39021
|
+
return (options.client ?? _heyApiClient).get({
|
|
39022
|
+
security: [
|
|
39023
|
+
{
|
|
39024
|
+
name: 'Authorization',
|
|
39025
|
+
type: 'apiKey'
|
|
39026
|
+
},
|
|
39027
|
+
{
|
|
39028
|
+
scheme: 'bearer',
|
|
39029
|
+
type: 'http'
|
|
39030
|
+
}
|
|
39031
|
+
],
|
|
39032
|
+
url: '/api/users/{uuid}/data_access_history/',
|
|
39033
|
+
...options
|
|
39034
|
+
});
|
|
39035
|
+
};
|
|
38714
39036
|
/**
|
|
38715
39037
|
* Synchronize user details from eduTEAMS
|
|
38716
39038
|
*/
|
|
@@ -38832,6 +39154,126 @@ export const usersMeCount = (options) => {
|
|
|
38832
39154
|
...options
|
|
38833
39155
|
});
|
|
38834
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
|
+
};
|
|
38835
39277
|
/**
|
|
38836
39278
|
* Get application version
|
|
38837
39279
|
* Retrieves the current installed version of the application and the latest available version from GitHub (if available). Requires staff or support user permissions.
|