waldur-js-client 7.9.9-dev.1 → 7.9.9-dev.11

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.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:
@@ -6632,6 +6699,73 @@ export const emailLogsRetrieve = (options) => {
6632
6699
  ...options
6633
6700
  });
6634
6701
  };
6702
+ export const eventSubscriptionQueuesList = (options) => {
6703
+ return (options?.client ?? _heyApiClient).get({
6704
+ security: [
6705
+ {
6706
+ name: 'Authorization',
6707
+ type: 'apiKey'
6708
+ },
6709
+ {
6710
+ scheme: 'bearer',
6711
+ type: 'http'
6712
+ }
6713
+ ],
6714
+ url: '/api/event-subscription-queues/',
6715
+ ...options
6716
+ });
6717
+ };
6718
+ /**
6719
+ * Get number of items in the collection matching the request parameters.
6720
+ */
6721
+ export const eventSubscriptionQueuesCount = (options) => {
6722
+ return (options?.client ?? _heyApiClient).head({
6723
+ security: [
6724
+ {
6725
+ name: 'Authorization',
6726
+ type: 'apiKey'
6727
+ },
6728
+ {
6729
+ scheme: 'bearer',
6730
+ type: 'http'
6731
+ }
6732
+ ],
6733
+ url: '/api/event-subscription-queues/',
6734
+ ...options
6735
+ });
6736
+ };
6737
+ export const eventSubscriptionQueuesDestroy = (options) => {
6738
+ return (options.client ?? _heyApiClient).delete({
6739
+ security: [
6740
+ {
6741
+ name: 'Authorization',
6742
+ type: 'apiKey'
6743
+ },
6744
+ {
6745
+ scheme: 'bearer',
6746
+ type: 'http'
6747
+ }
6748
+ ],
6749
+ url: '/api/event-subscription-queues/{uuid}/',
6750
+ ...options
6751
+ });
6752
+ };
6753
+ export const eventSubscriptionQueuesRetrieve = (options) => {
6754
+ return (options.client ?? _heyApiClient).get({
6755
+ security: [
6756
+ {
6757
+ name: 'Authorization',
6758
+ type: 'apiKey'
6759
+ },
6760
+ {
6761
+ scheme: 'bearer',
6762
+ type: 'http'
6763
+ }
6764
+ ],
6765
+ url: '/api/event-subscription-queues/{uuid}/',
6766
+ ...options
6767
+ });
6768
+ };
6635
6769
  export const eventSubscriptionsList = (options) => {
6636
6770
  return (options?.client ?? _heyApiClient).get({
6637
6771
  security: [
@@ -6719,6 +6853,29 @@ export const eventSubscriptionsRetrieve = (options) => {
6719
6853
  ...options
6720
6854
  });
6721
6855
  };
6856
+ /**
6857
+ * Create a RabbitMQ queue for receiving events for a specific offering and object type. The receiver must call this endpoint before subscribing via STOMP to ensure the queue is created with correct arguments (DLX, max-length, etc.).
6858
+ */
6859
+ export const eventSubscriptionsCreateQueue = (options) => {
6860
+ return (options.client ?? _heyApiClient).post({
6861
+ security: [
6862
+ {
6863
+ name: 'Authorization',
6864
+ type: 'apiKey'
6865
+ },
6866
+ {
6867
+ scheme: 'bearer',
6868
+ type: 'http'
6869
+ }
6870
+ ],
6871
+ url: '/api/event-subscriptions/{uuid}/create_queue/',
6872
+ ...options,
6873
+ headers: {
6874
+ 'Content-Type': 'application/json',
6875
+ ...options.headers
6876
+ }
6877
+ });
6878
+ };
6722
6879
  export const eventsList = (options) => {
6723
6880
  return (options?.client ?? _heyApiClient).get({
6724
6881
  security: [
@@ -7867,6 +8024,54 @@ export const identityProvidersUpdate = (options) => {
7867
8024
  }
7868
8025
  });
7869
8026
  };
8027
+ /**
8028
+ * Discover OIDC provider metadata
8029
+ * Fetches OIDC discovery metadata from the provider and returns supported claims, scopes, and suggested mappings to Waldur User fields. Use this to configure attribute_mapping when setting up a new identity provider.
8030
+ */
8031
+ export const identityProvidersDiscoverMetadata = (options) => {
8032
+ return (options.client ?? _heyApiClient).post({
8033
+ security: [
8034
+ {
8035
+ name: 'Authorization',
8036
+ type: 'apiKey'
8037
+ },
8038
+ {
8039
+ scheme: 'bearer',
8040
+ type: 'http'
8041
+ }
8042
+ ],
8043
+ url: '/api/identity-providers/discover_metadata/',
8044
+ ...options,
8045
+ headers: {
8046
+ 'Content-Type': 'application/json',
8047
+ ...options.headers
8048
+ }
8049
+ });
8050
+ };
8051
+ /**
8052
+ * Generate default attribute mapping
8053
+ * Generates a suggested attribute_mapping configuration based on the claims supported by an OIDC provider. This can be used as a starting point when creating a new identity provider.
8054
+ */
8055
+ export const identityProvidersGenerateMapping = (options) => {
8056
+ return (options.client ?? _heyApiClient).post({
8057
+ security: [
8058
+ {
8059
+ name: 'Authorization',
8060
+ type: 'apiKey'
8061
+ },
8062
+ {
8063
+ scheme: 'bearer',
8064
+ type: 'http'
8065
+ }
8066
+ ],
8067
+ url: '/api/identity-providers/generate-mapping/',
8068
+ ...options,
8069
+ headers: {
8070
+ 'Content-Type': 'application/json',
8071
+ ...options.headers
8072
+ }
8073
+ });
8074
+ };
7870
8075
  export const invoiceItemsList = (options) => {
7871
8076
  return (options?.client ?? _heyApiClient).get({
7872
8077
  security: [
@@ -14505,6 +14710,26 @@ export const marketplaceProviderOfferingsCustomersList = (options) => {
14505
14710
  ...options
14506
14711
  });
14507
14712
  };
14713
+ /**
14714
+ * Delete user attribute config
14715
+ * Deletes the user attribute configuration for this offering. The offering will fall back to system defaults.
14716
+ */
14717
+ export const marketplaceProviderOfferingsDeleteUserAttributeConfigDestroy = (options) => {
14718
+ return (options.client ?? _heyApiClient).delete({
14719
+ security: [
14720
+ {
14721
+ name: 'Authorization',
14722
+ type: 'apiKey'
14723
+ },
14724
+ {
14725
+ scheme: 'bearer',
14726
+ type: 'http'
14727
+ }
14728
+ ],
14729
+ url: '/api/marketplace-provider-offerings/{uuid}/delete-user-attribute-config/',
14730
+ ...options
14731
+ });
14732
+ };
14508
14733
  /**
14509
14734
  * Delete an access endpoint from an offering
14510
14735
  * Deletes an existing access endpoint from an offering by its UUID.
@@ -15201,6 +15426,78 @@ export const marketplaceProviderOfferingsUnpause = (options) => {
15201
15426
  ...options
15202
15427
  });
15203
15428
  };
15429
+ /**
15430
+ * Update user attribute config
15431
+ * Creates or updates the user attribute configuration for this offering. This determines which user attributes are shared with the service provider.
15432
+ */
15433
+ export const marketplaceProviderOfferingsUpdateUserAttributeConfigPartialUpdate = (options) => {
15434
+ return (options.client ?? _heyApiClient).patch({
15435
+ security: [
15436
+ {
15437
+ name: 'Authorization',
15438
+ type: 'apiKey'
15439
+ },
15440
+ {
15441
+ scheme: 'bearer',
15442
+ type: 'http'
15443
+ }
15444
+ ],
15445
+ url: '/api/marketplace-provider-offerings/{uuid}/update-user-attribute-config/',
15446
+ ...options,
15447
+ headers: {
15448
+ 'Content-Type': 'application/json',
15449
+ ...options.headers
15450
+ }
15451
+ });
15452
+ };
15453
+ /**
15454
+ * Update user attribute config
15455
+ * Creates or updates the user attribute configuration for this offering. This determines which user attributes are shared with the service provider.
15456
+ */
15457
+ export const marketplaceProviderOfferingsUpdateUserAttributeConfig = (options) => {
15458
+ return (options.client ?? _heyApiClient).post({
15459
+ security: [
15460
+ {
15461
+ name: 'Authorization',
15462
+ type: 'apiKey'
15463
+ },
15464
+ {
15465
+ scheme: 'bearer',
15466
+ type: 'http'
15467
+ }
15468
+ ],
15469
+ url: '/api/marketplace-provider-offerings/{uuid}/update-user-attribute-config/',
15470
+ ...options,
15471
+ headers: {
15472
+ 'Content-Type': 'application/json',
15473
+ ...options.headers
15474
+ }
15475
+ });
15476
+ };
15477
+ /**
15478
+ * Update user attribute config
15479
+ * Creates or updates the user attribute configuration for this offering. This determines which user attributes are shared with the service provider.
15480
+ */
15481
+ export const marketplaceProviderOfferingsUpdateUserAttributeConfigUpdate = (options) => {
15482
+ return (options.client ?? _heyApiClient).put({
15483
+ security: [
15484
+ {
15485
+ name: 'Authorization',
15486
+ type: 'apiKey'
15487
+ },
15488
+ {
15489
+ scheme: 'bearer',
15490
+ type: 'http'
15491
+ }
15492
+ ],
15493
+ url: '/api/marketplace-provider-offerings/{uuid}/update-user-attribute-config/',
15494
+ ...options,
15495
+ headers: {
15496
+ 'Content-Type': 'application/json',
15497
+ ...options.headers
15498
+ }
15499
+ });
15500
+ };
15204
15501
  /**
15205
15502
  * Update offering attributes
15206
15503
  * Updates the attributes of an offering.
@@ -15585,6 +15882,26 @@ export const marketplaceProviderOfferingsUpdateUser = (options) => {
15585
15882
  }
15586
15883
  });
15587
15884
  };
15885
+ /**
15886
+ * Get user attribute config
15887
+ * Returns the user attribute configuration for this offering, which determines which user attributes are exposed to the service provider.
15888
+ */
15889
+ export const marketplaceProviderOfferingsUserAttributeConfigRetrieve = (options) => {
15890
+ return (options.client ?? _heyApiClient).get({
15891
+ security: [
15892
+ {
15893
+ name: 'Authorization',
15894
+ type: 'apiKey'
15895
+ },
15896
+ {
15897
+ scheme: 'bearer',
15898
+ type: 'http'
15899
+ }
15900
+ ],
15901
+ url: '/api/marketplace-provider-offerings/{uuid}/user-attribute-config/',
15902
+ ...options
15903
+ });
15904
+ };
15588
15905
  /**
15589
15906
  * Check user access to offering resources
15590
15907
  * Checks if a specified user has access to any non-terminated resource of this offering.
@@ -15820,6 +16137,46 @@ export const marketplaceProviderResourcesGlauthUsersConfigRetrieve = (options) =
15820
16137
  ...options
15821
16138
  });
15822
16139
  };
16140
+ /**
16141
+ * Get resource version history
16142
+ * Returns the version history of changes made to this resource. Only accessible by staff and support users.
16143
+ */
16144
+ export const marketplaceProviderResourcesHistoryList = (options) => {
16145
+ return (options.client ?? _heyApiClient).get({
16146
+ security: [
16147
+ {
16148
+ name: 'Authorization',
16149
+ type: 'apiKey'
16150
+ },
16151
+ {
16152
+ scheme: 'bearer',
16153
+ type: 'http'
16154
+ }
16155
+ ],
16156
+ url: '/api/marketplace-provider-resources/{uuid}/history/',
16157
+ ...options
16158
+ });
16159
+ };
16160
+ /**
16161
+ * Get resource state at a specific timestamp
16162
+ * Returns the state of the resource as it was at the specified timestamp. Only accessible by staff and support users.
16163
+ */
16164
+ export const marketplaceProviderResourcesHistoryAtRetrieve = (options) => {
16165
+ return (options.client ?? _heyApiClient).get({
16166
+ security: [
16167
+ {
16168
+ name: 'Authorization',
16169
+ type: 'apiKey'
16170
+ },
16171
+ {
16172
+ scheme: 'bearer',
16173
+ type: 'http'
16174
+ }
16175
+ ],
16176
+ url: '/api/marketplace-provider-resources/{uuid}/history/at/',
16177
+ ...options
16178
+ });
16179
+ };
15823
16180
  /**
15824
16181
  * Move a resource to another project
15825
16182
  * Moves a resource and its associated data to a different project. Requires staff permissions.
@@ -16950,6 +17307,46 @@ export const marketplaceResourcesGlauthUsersConfigRetrieve = (options) => {
16950
17307
  ...options
16951
17308
  });
16952
17309
  };
17310
+ /**
17311
+ * Get resource version history
17312
+ * Returns the version history of changes made to this resource. Only accessible by staff and support users.
17313
+ */
17314
+ export const marketplaceResourcesHistoryList = (options) => {
17315
+ return (options.client ?? _heyApiClient).get({
17316
+ security: [
17317
+ {
17318
+ name: 'Authorization',
17319
+ type: 'apiKey'
17320
+ },
17321
+ {
17322
+ scheme: 'bearer',
17323
+ type: 'http'
17324
+ }
17325
+ ],
17326
+ url: '/api/marketplace-resources/{uuid}/history/',
17327
+ ...options
17328
+ });
17329
+ };
17330
+ /**
17331
+ * Get resource state at a specific timestamp
17332
+ * Returns the state of the resource as it was at the specified timestamp. Only accessible by staff and support users.
17333
+ */
17334
+ export const marketplaceResourcesHistoryAtRetrieve = (options) => {
17335
+ return (options.client ?? _heyApiClient).get({
17336
+ security: [
17337
+ {
17338
+ name: 'Authorization',
17339
+ type: 'apiKey'
17340
+ },
17341
+ {
17342
+ scheme: 'bearer',
17343
+ type: 'http'
17344
+ }
17345
+ ],
17346
+ url: '/api/marketplace-resources/{uuid}/history/at/',
17347
+ ...options
17348
+ });
17349
+ };
16953
17350
  /**
16954
17351
  * Move a resource to another project
16955
17352
  * Moves a resource and its associated data to a different project. Requires staff permissions.
@@ -18595,6 +18992,30 @@ export const marketplaceServiceProvidersDeleteUser = (options) => {
18595
18992
  }
18596
18993
  });
18597
18994
  };
18995
+ /**
18996
+ * Generate site agent configuration
18997
+ * Generates a YAML configuration file for waldur-site-agent based on selected SLURM offerings. The configuration includes offering details, components, backend settings, and optionally SLURM periodic usage policy settings. Secrets are shown as placeholders that need to be filled in.
18998
+ */
18999
+ export const marketplaceServiceProvidersGenerateSiteAgentConfig = (options) => {
19000
+ return (options.client ?? _heyApiClient).post({
19001
+ security: [
19002
+ {
19003
+ name: 'Authorization',
19004
+ type: 'apiKey'
19005
+ },
19006
+ {
19007
+ scheme: 'bearer',
19008
+ type: 'http'
19009
+ }
19010
+ ],
19011
+ url: '/api/marketplace-service-providers/{uuid}/generate_site_agent_config/',
19012
+ ...options,
19013
+ headers: {
19014
+ 'Content-Type': 'application/json',
19015
+ ...options.headers
19016
+ }
19017
+ });
19018
+ };
18598
19019
  /**
18599
19020
  * List users and their roles in a scope
18600
19021
  * Retrieves a list of users who have a role within a specific scope (e.g., a project or an organization). The list can be filtered by user details or role.
@@ -19355,6 +19776,29 @@ export const marketplaceSlurmPeriodicUsagePoliciesActionsCount = (options) => {
19355
19776
  ...options
19356
19777
  });
19357
19778
  };
19779
+ /**
19780
+ * Preview policy impact without saving. Returns threshold calculations, carryover projections, and QoS trigger points.
19781
+ */
19782
+ export const marketplaceSlurmPeriodicUsagePoliciesPreviewImpact = (options) => {
19783
+ return (options?.client ?? _heyApiClient).post({
19784
+ security: [
19785
+ {
19786
+ name: 'Authorization',
19787
+ type: 'apiKey'
19788
+ },
19789
+ {
19790
+ scheme: 'bearer',
19791
+ type: 'http'
19792
+ }
19793
+ ],
19794
+ url: '/api/marketplace-slurm-periodic-usage-policies/preview_impact/',
19795
+ ...options,
19796
+ headers: {
19797
+ 'Content-Type': 'application/json',
19798
+ ...options?.headers
19799
+ }
19800
+ });
19801
+ };
19358
19802
  /**
19359
19803
  * List software catalogs
19360
19804
  * Returns a paginated list of available software catalogs, such as EESSI or Spack.
@@ -20471,6 +20915,44 @@ export const marketplaceStatsOfferingsCounterStatsCount = (options) => {
20471
20915
  ...options
20472
20916
  });
20473
20917
  };
20918
+ /**
20919
+ * Return comprehensive order statistics including daily breakdown, state/type aggregations, and summary stats.
20920
+ */
20921
+ export const marketplaceStatsOrderStatsRetrieve = (options) => {
20922
+ return (options?.client ?? _heyApiClient).get({
20923
+ security: [
20924
+ {
20925
+ name: 'Authorization',
20926
+ type: 'apiKey'
20927
+ },
20928
+ {
20929
+ scheme: 'bearer',
20930
+ type: 'http'
20931
+ }
20932
+ ],
20933
+ url: '/api/marketplace-stats/order_stats/',
20934
+ ...options
20935
+ });
20936
+ };
20937
+ /**
20938
+ * Get number of items in the collection matching the request parameters.
20939
+ */
20940
+ export const marketplaceStatsOrderStatsCount = (options) => {
20941
+ return (options?.client ?? _heyApiClient).head({
20942
+ security: [
20943
+ {
20944
+ name: 'Authorization',
20945
+ type: 'apiKey'
20946
+ },
20947
+ {
20948
+ scheme: 'bearer',
20949
+ type: 'http'
20950
+ }
20951
+ ],
20952
+ url: '/api/marketplace-stats/order_stats/',
20953
+ ...options
20954
+ });
20955
+ };
20474
20956
  /**
20475
20957
  * Return project count per organization.
20476
20958
  */
@@ -20699,6 +21181,120 @@ export const marketplaceStatsProjectsUsagesGroupedByOecdCount = (options) => {
20699
21181
  ...options
20700
21182
  });
20701
21183
  };
21184
+ /**
21185
+ * Return customer statistics for a service provider.
21186
+ */
21187
+ export const marketplaceStatsProviderCustomersRetrieve = (options) => {
21188
+ return (options.client ?? _heyApiClient).get({
21189
+ security: [
21190
+ {
21191
+ name: 'Authorization',
21192
+ type: 'apiKey'
21193
+ },
21194
+ {
21195
+ scheme: 'bearer',
21196
+ type: 'http'
21197
+ }
21198
+ ],
21199
+ url: '/api/marketplace-stats/provider_customers/',
21200
+ ...options
21201
+ });
21202
+ };
21203
+ /**
21204
+ * Get number of items in the collection matching the request parameters.
21205
+ */
21206
+ export const marketplaceStatsProviderCustomersCount = (options) => {
21207
+ return (options.client ?? _heyApiClient).head({
21208
+ security: [
21209
+ {
21210
+ name: 'Authorization',
21211
+ type: 'apiKey'
21212
+ },
21213
+ {
21214
+ scheme: 'bearer',
21215
+ type: 'http'
21216
+ }
21217
+ ],
21218
+ url: '/api/marketplace-stats/provider_customers/',
21219
+ ...options
21220
+ });
21221
+ };
21222
+ /**
21223
+ * Return offering performance statistics for a service provider.
21224
+ */
21225
+ export const marketplaceStatsProviderOfferingsRetrieve = (options) => {
21226
+ return (options.client ?? _heyApiClient).get({
21227
+ security: [
21228
+ {
21229
+ name: 'Authorization',
21230
+ type: 'apiKey'
21231
+ },
21232
+ {
21233
+ scheme: 'bearer',
21234
+ type: 'http'
21235
+ }
21236
+ ],
21237
+ url: '/api/marketplace-stats/provider_offerings/',
21238
+ ...options
21239
+ });
21240
+ };
21241
+ /**
21242
+ * Get number of items in the collection matching the request parameters.
21243
+ */
21244
+ export const marketplaceStatsProviderOfferingsCount = (options) => {
21245
+ return (options.client ?? _heyApiClient).head({
21246
+ security: [
21247
+ {
21248
+ name: 'Authorization',
21249
+ type: 'apiKey'
21250
+ },
21251
+ {
21252
+ scheme: 'bearer',
21253
+ type: 'http'
21254
+ }
21255
+ ],
21256
+ url: '/api/marketplace-stats/provider_offerings/',
21257
+ ...options
21258
+ });
21259
+ };
21260
+ /**
21261
+ * Return resource statistics for a service provider.
21262
+ */
21263
+ export const marketplaceStatsProviderResourcesRetrieve = (options) => {
21264
+ return (options.client ?? _heyApiClient).get({
21265
+ security: [
21266
+ {
21267
+ name: 'Authorization',
21268
+ type: 'apiKey'
21269
+ },
21270
+ {
21271
+ scheme: 'bearer',
21272
+ type: 'http'
21273
+ }
21274
+ ],
21275
+ url: '/api/marketplace-stats/provider_resources/',
21276
+ ...options
21277
+ });
21278
+ };
21279
+ /**
21280
+ * Get number of items in the collection matching the request parameters.
21281
+ */
21282
+ export const marketplaceStatsProviderResourcesCount = (options) => {
21283
+ return (options.client ?? _heyApiClient).head({
21284
+ security: [
21285
+ {
21286
+ name: 'Authorization',
21287
+ type: 'apiKey'
21288
+ },
21289
+ {
21290
+ scheme: 'bearer',
21291
+ type: 'http'
21292
+ }
21293
+ ],
21294
+ url: '/api/marketplace-stats/provider_resources/',
21295
+ ...options
21296
+ });
21297
+ };
20702
21298
  /**
20703
21299
  * Get resource provisioning statistics.
20704
21300
  */
@@ -20775,6 +21371,44 @@ export const marketplaceStatsResourcesLimitsCount = (options) => {
20775
21371
  ...options
20776
21372
  });
20777
21373
  };
21374
+ /**
21375
+ * Return usage-based resources with no usage reported in the specified billing period.
21376
+ */
21377
+ export const marketplaceStatsResourcesMissingUsageList = (options) => {
21378
+ return (options?.client ?? _heyApiClient).get({
21379
+ security: [
21380
+ {
21381
+ name: 'Authorization',
21382
+ type: 'apiKey'
21383
+ },
21384
+ {
21385
+ scheme: 'bearer',
21386
+ type: 'http'
21387
+ }
21388
+ ],
21389
+ url: '/api/marketplace-stats/resources_missing_usage/',
21390
+ ...options
21391
+ });
21392
+ };
21393
+ /**
21394
+ * Get number of items in the collection matching the request parameters.
21395
+ */
21396
+ export const marketplaceStatsResourcesMissingUsageCount = (options) => {
21397
+ return (options?.client ?? _heyApiClient).head({
21398
+ security: [
21399
+ {
21400
+ name: 'Authorization',
21401
+ type: 'apiKey'
21402
+ },
21403
+ {
21404
+ scheme: 'bearer',
21405
+ type: 'http'
21406
+ }
21407
+ ],
21408
+ url: '/api/marketplace-stats/resources_missing_usage/',
21409
+ ...options
21410
+ });
21411
+ };
20778
21412
  /**
20779
21413
  * Total cost of active resources per offering.
20780
21414
  */
@@ -27423,7 +28057,7 @@ export const openstackTenantsPushSecurityGroups = (options) => {
27423
28057
  };
27424
28058
  /**
27425
28059
  * Set tenant quotas
27426
- * A quota can be set for a particular tenant. Only staff users can do that.
28060
+ * A quota can be set for a particular tenant. Only staff users and service provider owners/managers can do that.
27427
28061
  * In order to set quota submit POST request to /api/openstack-tenants/<uuid>/set_quotas/.
27428
28062
  * The quota values are propagated to the backend.
27429
28063
  *
@@ -30083,6 +30717,25 @@ export const proposalProtectedCallsAffinityMatrixRetrieve = (options) => {
30083
30717
  ...options
30084
30718
  });
30085
30719
  };
30720
+ /**
30721
+ * Get applicant attribute exposure configuration for this call.
30722
+ */
30723
+ export const proposalProtectedCallsApplicantAttributeConfigRetrieve = (options) => {
30724
+ return (options.client ?? _heyApiClient).get({
30725
+ security: [
30726
+ {
30727
+ name: 'Authorization',
30728
+ type: 'apiKey'
30729
+ },
30730
+ {
30731
+ scheme: 'bearer',
30732
+ type: 'http'
30733
+ }
30734
+ ],
30735
+ url: '/api/proposal-protected-calls/{uuid}/applicant_attribute_config/',
30736
+ ...options
30737
+ });
30738
+ };
30086
30739
  /**
30087
30740
  * Archive a call.
30088
30741
  */
@@ -30270,6 +30923,25 @@ export const proposalProtectedCallsCreateManualAssignment = (options) => {
30270
30923
  }
30271
30924
  });
30272
30925
  };
30926
+ /**
30927
+ * Delete custom applicant attribute config, reverting to system defaults.
30928
+ */
30929
+ export const proposalProtectedCallsDeleteApplicantAttributeConfigDestroy = (options) => {
30930
+ return (options.client ?? _heyApiClient).delete({
30931
+ security: [
30932
+ {
30933
+ name: 'Authorization',
30934
+ type: 'apiKey'
30935
+ },
30936
+ {
30937
+ scheme: 'bearer',
30938
+ type: 'http'
30939
+ }
30940
+ ],
30941
+ url: '/api/proposal-protected-calls/{uuid}/delete_applicant_attribute_config/',
30942
+ ...options
30943
+ });
30944
+ };
30273
30945
  /**
30274
30946
  * Revoke a role from a user
30275
30947
  * Removes a specific role from a user within the current scope. This effectively revokes their permissions associated with that role.
@@ -30997,6 +31669,52 @@ export const proposalProtectedCallsSuggestionsList = (options) => {
30997
31669
  ...options
30998
31670
  });
30999
31671
  };
31672
+ /**
31673
+ * Create or update applicant attribute exposure configuration.
31674
+ */
31675
+ export const proposalProtectedCallsUpdateApplicantAttributeConfigPartialUpdate = (options) => {
31676
+ return (options.client ?? _heyApiClient).patch({
31677
+ security: [
31678
+ {
31679
+ name: 'Authorization',
31680
+ type: 'apiKey'
31681
+ },
31682
+ {
31683
+ scheme: 'bearer',
31684
+ type: 'http'
31685
+ }
31686
+ ],
31687
+ url: '/api/proposal-protected-calls/{uuid}/update_applicant_attribute_config/',
31688
+ ...options,
31689
+ headers: {
31690
+ 'Content-Type': 'application/json',
31691
+ ...options.headers
31692
+ }
31693
+ });
31694
+ };
31695
+ /**
31696
+ * Create or update applicant attribute exposure configuration.
31697
+ */
31698
+ export const proposalProtectedCallsUpdateApplicantAttributeConfig = (options) => {
31699
+ return (options.client ?? _heyApiClient).post({
31700
+ security: [
31701
+ {
31702
+ name: 'Authorization',
31703
+ type: 'apiKey'
31704
+ },
31705
+ {
31706
+ scheme: 'bearer',
31707
+ type: 'http'
31708
+ }
31709
+ ],
31710
+ url: '/api/proposal-protected-calls/{uuid}/update_applicant_attribute_config/',
31711
+ ...options,
31712
+ headers: {
31713
+ 'Content-Type': 'application/json',
31714
+ ...options.headers
31715
+ }
31716
+ });
31717
+ };
31000
31718
  /**
31001
31719
  * Update a user's role expiration
31002
31720
  * 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 +31828,25 @@ export const proposalPublicCallsRetrieve = (options) => {
31110
31828
  ...options
31111
31829
  });
31112
31830
  };
31831
+ /**
31832
+ * Check if the current user is eligible to submit proposals to this call.
31833
+ */
31834
+ export const proposalPublicCallsCheckEligibilityRetrieve = (options) => {
31835
+ return (options.client ?? _heyApiClient).get({
31836
+ security: [
31837
+ {
31838
+ name: 'Authorization',
31839
+ type: 'apiKey'
31840
+ },
31841
+ {
31842
+ scheme: 'bearer',
31843
+ type: 'http'
31844
+ }
31845
+ ],
31846
+ url: '/api/proposal-public-calls/{uuid}/check_eligibility/',
31847
+ ...options
31848
+ });
31849
+ };
31113
31850
  export const proposalRequestedOfferingsList = (options) => {
31114
31851
  return (options?.client ?? _heyApiClient).get({
31115
31852
  security: [
@@ -38711,6 +39448,46 @@ export const usersChangePassword = (options) => {
38711
39448
  }
38712
39449
  });
38713
39450
  };
39451
+ /**
39452
+ * Get user data access visibility
39453
+ * 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.
39454
+ */
39455
+ export const usersDataAccessRetrieve = (options) => {
39456
+ return (options.client ?? _heyApiClient).get({
39457
+ security: [
39458
+ {
39459
+ name: 'Authorization',
39460
+ type: 'apiKey'
39461
+ },
39462
+ {
39463
+ scheme: 'bearer',
39464
+ type: 'http'
39465
+ }
39466
+ ],
39467
+ url: '/api/users/{uuid}/data_access/',
39468
+ ...options
39469
+ });
39470
+ };
39471
+ /**
39472
+ * Get user data access history
39473
+ * 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.
39474
+ */
39475
+ export const usersDataAccessHistoryList = (options) => {
39476
+ return (options.client ?? _heyApiClient).get({
39477
+ security: [
39478
+ {
39479
+ name: 'Authorization',
39480
+ type: 'apiKey'
39481
+ },
39482
+ {
39483
+ scheme: 'bearer',
39484
+ type: 'http'
39485
+ }
39486
+ ],
39487
+ url: '/api/users/{uuid}/data_access_history/',
39488
+ ...options
39489
+ });
39490
+ };
38714
39491
  /**
38715
39492
  * Synchronize user details from eduTEAMS
38716
39493
  */
@@ -38794,7 +39571,7 @@ export const usersConfirmEmail = (options) => {
38794
39571
  };
38795
39572
  /**
38796
39573
  * Get current user details
38797
- * Get current user details, including authentication token.
39574
+ * Get current user details, including authentication token and profile completeness status.
38798
39575
  */
38799
39576
  export const usersMeRetrieve = (options) => {
38800
39577
  return (options?.client ?? _heyApiClient).get({
@@ -38832,6 +39609,166 @@ export const usersMeCount = (options) => {
38832
39609
  ...options
38833
39610
  });
38834
39611
  };
39612
+ /**
39613
+ * Check profile completeness
39614
+ * Check if user profile is complete with all mandatory attributes.
39615
+ */
39616
+ export const usersProfileCompletenessRetrieve = (options) => {
39617
+ return (options?.client ?? _heyApiClient).get({
39618
+ security: [
39619
+ {
39620
+ name: 'Authorization',
39621
+ type: 'apiKey'
39622
+ },
39623
+ {
39624
+ scheme: 'bearer',
39625
+ type: 'http'
39626
+ }
39627
+ ],
39628
+ url: '/api/users/profile_completeness/',
39629
+ ...options
39630
+ });
39631
+ };
39632
+ /**
39633
+ * Check profile completeness
39634
+ * Get number of items in the collection matching the request parameters.
39635
+ */
39636
+ export const usersProfileCompletenessCount = (options) => {
39637
+ return (options?.client ?? _heyApiClient).head({
39638
+ security: [
39639
+ {
39640
+ name: 'Authorization',
39641
+ type: 'apiKey'
39642
+ },
39643
+ {
39644
+ scheme: 'bearer',
39645
+ type: 'http'
39646
+ }
39647
+ ],
39648
+ url: '/api/users/profile_completeness/',
39649
+ ...options
39650
+ });
39651
+ };
39652
+ /**
39653
+ * Get user counts by active status
39654
+ * Returns aggregated counts of users by active/inactive status. Staff or support only.
39655
+ */
39656
+ export const usersUserActiveStatusCountList = (options) => {
39657
+ return (options?.client ?? _heyApiClient).get({
39658
+ security: [
39659
+ {
39660
+ name: 'Authorization',
39661
+ type: 'apiKey'
39662
+ },
39663
+ {
39664
+ scheme: 'bearer',
39665
+ type: 'http'
39666
+ }
39667
+ ],
39668
+ url: '/api/users/user_active_status_count/',
39669
+ ...options
39670
+ });
39671
+ };
39672
+ /**
39673
+ * Get user counts by active status
39674
+ * Get number of items in the collection matching the request parameters.
39675
+ */
39676
+ export const usersUserActiveStatusCountCount = (options) => {
39677
+ return (options?.client ?? _heyApiClient).head({
39678
+ security: [
39679
+ {
39680
+ name: 'Authorization',
39681
+ type: 'apiKey'
39682
+ },
39683
+ {
39684
+ scheme: 'bearer',
39685
+ type: 'http'
39686
+ }
39687
+ ],
39688
+ url: '/api/users/user_active_status_count/',
39689
+ ...options
39690
+ });
39691
+ };
39692
+ /**
39693
+ * Get user counts by preferred language
39694
+ * Returns aggregated counts of users by preferred language. Staff or support only.
39695
+ */
39696
+ export const usersUserLanguageCountList = (options) => {
39697
+ return (options?.client ?? _heyApiClient).get({
39698
+ security: [
39699
+ {
39700
+ name: 'Authorization',
39701
+ type: 'apiKey'
39702
+ },
39703
+ {
39704
+ scheme: 'bearer',
39705
+ type: 'http'
39706
+ }
39707
+ ],
39708
+ url: '/api/users/user_language_count/',
39709
+ ...options
39710
+ });
39711
+ };
39712
+ /**
39713
+ * Get user counts by preferred language
39714
+ * Get number of items in the collection matching the request parameters.
39715
+ */
39716
+ export const usersUserLanguageCountCount = (options) => {
39717
+ return (options?.client ?? _heyApiClient).head({
39718
+ security: [
39719
+ {
39720
+ name: 'Authorization',
39721
+ type: 'apiKey'
39722
+ },
39723
+ {
39724
+ scheme: 'bearer',
39725
+ type: 'http'
39726
+ }
39727
+ ],
39728
+ url: '/api/users/user_language_count/',
39729
+ ...options
39730
+ });
39731
+ };
39732
+ /**
39733
+ * Get user registration trends by month
39734
+ * Returns user registration counts aggregated by month. Staff or support only.
39735
+ */
39736
+ export const usersUserRegistrationTrendList = (options) => {
39737
+ return (options?.client ?? _heyApiClient).get({
39738
+ security: [
39739
+ {
39740
+ name: 'Authorization',
39741
+ type: 'apiKey'
39742
+ },
39743
+ {
39744
+ scheme: 'bearer',
39745
+ type: 'http'
39746
+ }
39747
+ ],
39748
+ url: '/api/users/user_registration_trend/',
39749
+ ...options
39750
+ });
39751
+ };
39752
+ /**
39753
+ * Get user registration trends by month
39754
+ * Get number of items in the collection matching the request parameters.
39755
+ */
39756
+ export const usersUserRegistrationTrendCount = (options) => {
39757
+ return (options?.client ?? _heyApiClient).head({
39758
+ security: [
39759
+ {
39760
+ name: 'Authorization',
39761
+ type: 'apiKey'
39762
+ },
39763
+ {
39764
+ scheme: 'bearer',
39765
+ type: 'http'
39766
+ }
39767
+ ],
39768
+ url: '/api/users/user_registration_trend/',
39769
+ ...options
39770
+ });
39771
+ };
38835
39772
  /**
38836
39773
  * Get application version
38837
39774
  * Retrieves the current installed version of the application and the latest available version from GitHub (if available). Requires staff or support user permissions.