waldur-js-client 7.9.10-dev.3 → 7.9.10-dev.5

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
@@ -5823,6 +5823,46 @@ export const customersDeleteUser = (options) => {
5823
5823
  }
5824
5824
  });
5825
5825
  };
5826
+ /**
5827
+ * Get version history
5828
+ * Returns the version history for this object. Only accessible by staff and support users.
5829
+ */
5830
+ export const customersHistoryList = (options) => {
5831
+ return (options.client ?? _heyApiClient).get({
5832
+ security: [
5833
+ {
5834
+ name: 'Authorization',
5835
+ type: 'apiKey'
5836
+ },
5837
+ {
5838
+ scheme: 'bearer',
5839
+ type: 'http'
5840
+ }
5841
+ ],
5842
+ url: '/api/customers/{uuid}/history/',
5843
+ ...options
5844
+ });
5845
+ };
5846
+ /**
5847
+ * Get object state at a specific timestamp
5848
+ * Returns the state of the object as it was at the specified timestamp. Only accessible by staff and support users.
5849
+ */
5850
+ export const customersHistoryAtRetrieve = (options) => {
5851
+ return (options.client ?? _heyApiClient).get({
5852
+ security: [
5853
+ {
5854
+ name: 'Authorization',
5855
+ type: 'apiKey'
5856
+ },
5857
+ {
5858
+ scheme: 'bearer',
5859
+ type: 'http'
5860
+ }
5861
+ ],
5862
+ url: '/api/customers/{uuid}/history/at/',
5863
+ ...options
5864
+ });
5865
+ };
5826
5866
  /**
5827
5867
  * List users and their roles in a scope
5828
5868
  * 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.
@@ -8500,6 +8540,46 @@ export const invoicesRetrieve = (options) => {
8500
8540
  ...options
8501
8541
  });
8502
8542
  };
8543
+ /**
8544
+ * Get version history
8545
+ * Returns the version history for this object. Only accessible by staff and support users.
8546
+ */
8547
+ export const invoicesHistoryList = (options) => {
8548
+ return (options.client ?? _heyApiClient).get({
8549
+ security: [
8550
+ {
8551
+ name: 'Authorization',
8552
+ type: 'apiKey'
8553
+ },
8554
+ {
8555
+ scheme: 'bearer',
8556
+ type: 'http'
8557
+ }
8558
+ ],
8559
+ url: '/api/invoices/{uuid}/history/',
8560
+ ...options
8561
+ });
8562
+ };
8563
+ /**
8564
+ * Get object state at a specific timestamp
8565
+ * Returns the state of the object as it was at the specified timestamp. Only accessible by staff and support users.
8566
+ */
8567
+ export const invoicesHistoryAtRetrieve = (options) => {
8568
+ return (options.client ?? _heyApiClient).get({
8569
+ security: [
8570
+ {
8571
+ name: 'Authorization',
8572
+ type: 'apiKey'
8573
+ },
8574
+ {
8575
+ scheme: 'bearer',
8576
+ type: 'http'
8577
+ }
8578
+ ],
8579
+ url: '/api/invoices/{uuid}/history/at/',
8580
+ ...options
8581
+ });
8582
+ };
8503
8583
  /**
8504
8584
  * Get invoice items
8505
8585
  * Retrieve a list of invoice items for the specified invoice.
@@ -8978,6 +9058,46 @@ export const keysRetrieve = (options) => {
8978
9058
  ...options
8979
9059
  });
8980
9060
  };
9061
+ /**
9062
+ * Get version history
9063
+ * Returns the version history for this object. Only accessible by staff and support users.
9064
+ */
9065
+ export const keysHistoryList = (options) => {
9066
+ return (options.client ?? _heyApiClient).get({
9067
+ security: [
9068
+ {
9069
+ name: 'Authorization',
9070
+ type: 'apiKey'
9071
+ },
9072
+ {
9073
+ scheme: 'bearer',
9074
+ type: 'http'
9075
+ }
9076
+ ],
9077
+ url: '/api/keys/{uuid}/history/',
9078
+ ...options
9079
+ });
9080
+ };
9081
+ /**
9082
+ * Get object state at a specific timestamp
9083
+ * Returns the state of the object as it was at the specified timestamp. Only accessible by staff and support users.
9084
+ */
9085
+ export const keysHistoryAtRetrieve = (options) => {
9086
+ return (options.client ?? _heyApiClient).get({
9087
+ security: [
9088
+ {
9089
+ name: 'Authorization',
9090
+ type: 'apiKey'
9091
+ },
9092
+ {
9093
+ scheme: 'bearer',
9094
+ type: 'http'
9095
+ }
9096
+ ],
9097
+ url: '/api/keys/{uuid}/history/at/',
9098
+ ...options
9099
+ });
9100
+ };
8981
9101
  export const lexisLinksList = (options) => {
8982
9102
  return (options?.client ?? _heyApiClient).get({
8983
9103
  security: [
@@ -13850,6 +13970,46 @@ export const marketplacePlansDeleteOrganizationGroups = (options) => {
13850
13970
  ...options
13851
13971
  });
13852
13972
  };
13973
+ /**
13974
+ * Get version history
13975
+ * Returns the version history for this object. Only accessible by staff and support users.
13976
+ */
13977
+ export const marketplacePlansHistoryList = (options) => {
13978
+ return (options.client ?? _heyApiClient).get({
13979
+ security: [
13980
+ {
13981
+ name: 'Authorization',
13982
+ type: 'apiKey'
13983
+ },
13984
+ {
13985
+ scheme: 'bearer',
13986
+ type: 'http'
13987
+ }
13988
+ ],
13989
+ url: '/api/marketplace-plans/{uuid}/history/',
13990
+ ...options
13991
+ });
13992
+ };
13993
+ /**
13994
+ * Get object state at a specific timestamp
13995
+ * Returns the state of the object as it was at the specified timestamp. Only accessible by staff and support users.
13996
+ */
13997
+ export const marketplacePlansHistoryAtRetrieve = (options) => {
13998
+ return (options.client ?? _heyApiClient).get({
13999
+ security: [
14000
+ {
14001
+ name: 'Authorization',
14002
+ type: 'apiKey'
14003
+ },
14004
+ {
14005
+ scheme: 'bearer',
14006
+ type: 'http'
14007
+ }
14008
+ ],
14009
+ url: '/api/marketplace-plans/{uuid}/history/at/',
14010
+ ...options
14011
+ });
14012
+ };
13853
14013
  /**
13854
14014
  * Update plan component discounts
13855
14015
  *
@@ -15017,6 +15177,46 @@ export const marketplaceProviderOfferingsGlauthUsersConfigRetrieve = (options) =
15017
15177
  ...options
15018
15178
  });
15019
15179
  };
15180
+ /**
15181
+ * Get version history
15182
+ * Returns the version history for this object. Only accessible by staff and support users.
15183
+ */
15184
+ export const marketplaceProviderOfferingsHistoryList = (options) => {
15185
+ return (options.client ?? _heyApiClient).get({
15186
+ security: [
15187
+ {
15188
+ name: 'Authorization',
15189
+ type: 'apiKey'
15190
+ },
15191
+ {
15192
+ scheme: 'bearer',
15193
+ type: 'http'
15194
+ }
15195
+ ],
15196
+ url: '/api/marketplace-provider-offerings/{uuid}/history/',
15197
+ ...options
15198
+ });
15199
+ };
15200
+ /**
15201
+ * Get object state at a specific timestamp
15202
+ * Returns the state of the object as it was at the specified timestamp. Only accessible by staff and support users.
15203
+ */
15204
+ export const marketplaceProviderOfferingsHistoryAtRetrieve = (options) => {
15205
+ return (options.client ?? _heyApiClient).get({
15206
+ security: [
15207
+ {
15208
+ name: 'Authorization',
15209
+ type: 'apiKey'
15210
+ },
15211
+ {
15212
+ scheme: 'bearer',
15213
+ type: 'http'
15214
+ }
15215
+ ],
15216
+ url: '/api/marketplace-provider-offerings/{uuid}/history/at/',
15217
+ ...options
15218
+ });
15219
+ };
15020
15220
  /**
15021
15221
  * Import a resource
15022
15222
  * Imports a backend resource into the marketplace.
@@ -16217,8 +16417,8 @@ export const marketplaceProviderResourcesGlauthUsersConfigRetrieve = (options) =
16217
16417
  });
16218
16418
  };
16219
16419
  /**
16220
- * Get resource version history
16221
- * Returns the version history of changes made to this resource. Only accessible by staff and support users.
16420
+ * Get version history
16421
+ * Returns the version history for this object. Only accessible by staff and support users.
16222
16422
  */
16223
16423
  export const marketplaceProviderResourcesHistoryList = (options) => {
16224
16424
  return (options.client ?? _heyApiClient).get({
@@ -16237,8 +16437,8 @@ export const marketplaceProviderResourcesHistoryList = (options) => {
16237
16437
  });
16238
16438
  };
16239
16439
  /**
16240
- * Get resource state at a specific timestamp
16241
- * Returns the state of the resource as it was at the specified timestamp. Only accessible by staff and support users.
16440
+ * Get object state at a specific timestamp
16441
+ * Returns the state of the object as it was at the specified timestamp. Only accessible by staff and support users.
16242
16442
  */
16243
16443
  export const marketplaceProviderResourcesHistoryAtRetrieve = (options) => {
16244
16444
  return (options.client ?? _heyApiClient).get({
@@ -17387,8 +17587,8 @@ export const marketplaceResourcesGlauthUsersConfigRetrieve = (options) => {
17387
17587
  });
17388
17588
  };
17389
17589
  /**
17390
- * Get resource version history
17391
- * Returns the version history of changes made to this resource. Only accessible by staff and support users.
17590
+ * Get version history
17591
+ * Returns the version history for this object. Only accessible by staff and support users.
17392
17592
  */
17393
17593
  export const marketplaceResourcesHistoryList = (options) => {
17394
17594
  return (options.client ?? _heyApiClient).get({
@@ -17407,8 +17607,8 @@ export const marketplaceResourcesHistoryList = (options) => {
17407
17607
  });
17408
17608
  };
17409
17609
  /**
17410
- * Get resource state at a specific timestamp
17411
- * Returns the state of the resource as it was at the specified timestamp. Only accessible by staff and support users.
17610
+ * Get object state at a specific timestamp
17611
+ * Returns the state of the object as it was at the specified timestamp. Only accessible by staff and support users.
17412
17612
  */
17413
17613
  export const marketplaceResourcesHistoryAtRetrieve = (options) => {
17414
17614
  return (options.client ?? _heyApiClient).get({
@@ -20462,6 +20662,44 @@ export const marketplaceSoftwareVersionsUpdate = (options) => {
20462
20662
  ...options
20463
20663
  });
20464
20664
  };
20665
+ /**
20666
+ * Return aggregated usage trends per month.
20667
+ */
20668
+ export const marketplaceStatsAggregatedUsageTrendsList = (options) => {
20669
+ return (options?.client ?? _heyApiClient).get({
20670
+ security: [
20671
+ {
20672
+ name: 'Authorization',
20673
+ type: 'apiKey'
20674
+ },
20675
+ {
20676
+ scheme: 'bearer',
20677
+ type: 'http'
20678
+ }
20679
+ ],
20680
+ url: '/api/marketplace-stats/aggregated_usage_trends/',
20681
+ ...options
20682
+ });
20683
+ };
20684
+ /**
20685
+ * Get number of items in the collection matching the request parameters.
20686
+ */
20687
+ export const marketplaceStatsAggregatedUsageTrendsCount = (options) => {
20688
+ return (options?.client ?? _heyApiClient).head({
20689
+ security: [
20690
+ {
20691
+ name: 'Authorization',
20692
+ type: 'apiKey'
20693
+ },
20694
+ {
20695
+ scheme: 'bearer',
20696
+ type: 'http'
20697
+ }
20698
+ ],
20699
+ url: '/api/marketplace-stats/aggregated_usage_trends/',
20700
+ ...options
20701
+ });
20702
+ };
20465
20703
  /**
20466
20704
  * Return component usages for current month.
20467
20705
  */
@@ -39964,6 +40202,46 @@ export const usersDataAccessHistoryList = (options) => {
39964
40202
  ...options
39965
40203
  });
39966
40204
  };
40205
+ /**
40206
+ * Get version history
40207
+ * Returns the version history for this object. Only accessible by staff and support users.
40208
+ */
40209
+ export const usersHistoryList = (options) => {
40210
+ return (options.client ?? _heyApiClient).get({
40211
+ security: [
40212
+ {
40213
+ name: 'Authorization',
40214
+ type: 'apiKey'
40215
+ },
40216
+ {
40217
+ scheme: 'bearer',
40218
+ type: 'http'
40219
+ }
40220
+ ],
40221
+ url: '/api/users/{uuid}/history/',
40222
+ ...options
40223
+ });
40224
+ };
40225
+ /**
40226
+ * Get object state at a specific timestamp
40227
+ * Returns the state of the object as it was at the specified timestamp. Only accessible by staff and support users.
40228
+ */
40229
+ export const usersHistoryAtRetrieve = (options) => {
40230
+ return (options.client ?? _heyApiClient).get({
40231
+ security: [
40232
+ {
40233
+ name: 'Authorization',
40234
+ type: 'apiKey'
40235
+ },
40236
+ {
40237
+ scheme: 'bearer',
40238
+ type: 'http'
40239
+ }
40240
+ ],
40241
+ url: '/api/users/{uuid}/history/at/',
40242
+ ...options
40243
+ });
40244
+ };
39967
40245
  /**
39968
40246
  * Synchronize user details from eduTEAMS
39969
40247
  */