waldur-js-client 7.9.10-dev.4 → 7.9.10-dev.6

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({
@@ -21641,7 +21841,7 @@ export const marketplaceStatsResourceUsageByCustomerCount = (options) => {
21641
21841
  });
21642
21842
  };
21643
21843
  /**
21644
- * Return component usages grouped by creator's organization type.
21844
+ * Return component usages grouped by project members' organization type.
21645
21845
  */
21646
21846
  export const marketplaceStatsResourceUsageByOrganizationTypeList = (options) => {
21647
21847
  return (options?.client ?? _heyApiClient).get({
@@ -21944,6 +22144,44 @@ export const marketplaceStatsUserIdentitySourceCountCount = (options) => {
21944
22144
  ...options
21945
22145
  });
21946
22146
  };
22147
+ /**
22148
+ * Return user count grouped by job title.
22149
+ */
22150
+ export const marketplaceStatsUserJobTitleCountList = (options) => {
22151
+ return (options?.client ?? _heyApiClient).get({
22152
+ security: [
22153
+ {
22154
+ name: 'Authorization',
22155
+ type: 'apiKey'
22156
+ },
22157
+ {
22158
+ scheme: 'bearer',
22159
+ type: 'http'
22160
+ }
22161
+ ],
22162
+ url: '/api/marketplace-stats/user_job_title_count/',
22163
+ ...options
22164
+ });
22165
+ };
22166
+ /**
22167
+ * Get number of items in the collection matching the request parameters.
22168
+ */
22169
+ export const marketplaceStatsUserJobTitleCountCount = (options) => {
22170
+ return (options?.client ?? _heyApiClient).head({
22171
+ security: [
22172
+ {
22173
+ name: 'Authorization',
22174
+ type: 'apiKey'
22175
+ },
22176
+ {
22177
+ scheme: 'bearer',
22178
+ type: 'http'
22179
+ }
22180
+ ],
22181
+ url: '/api/marketplace-stats/user_job_title_count/',
22182
+ ...options
22183
+ });
22184
+ };
21947
22185
  /**
21948
22186
  * Return user count grouped by organization.
21949
22187
  */
@@ -21982,6 +22220,44 @@ export const marketplaceStatsUserOrganizationCountCount = (options) => {
21982
22220
  ...options
21983
22221
  });
21984
22222
  };
22223
+ /**
22224
+ * Return user count grouped by organization type (SCHAC URN).
22225
+ */
22226
+ export const marketplaceStatsUserOrganizationTypeCountList = (options) => {
22227
+ return (options?.client ?? _heyApiClient).get({
22228
+ security: [
22229
+ {
22230
+ name: 'Authorization',
22231
+ type: 'apiKey'
22232
+ },
22233
+ {
22234
+ scheme: 'bearer',
22235
+ type: 'http'
22236
+ }
22237
+ ],
22238
+ url: '/api/marketplace-stats/user_organization_type_count/',
22239
+ ...options
22240
+ });
22241
+ };
22242
+ /**
22243
+ * Get number of items in the collection matching the request parameters.
22244
+ */
22245
+ export const marketplaceStatsUserOrganizationTypeCountCount = (options) => {
22246
+ return (options?.client ?? _heyApiClient).head({
22247
+ security: [
22248
+ {
22249
+ name: 'Authorization',
22250
+ type: 'apiKey'
22251
+ },
22252
+ {
22253
+ scheme: 'bearer',
22254
+ type: 'http'
22255
+ }
22256
+ ],
22257
+ url: '/api/marketplace-stats/user_organization_type_count/',
22258
+ ...options
22259
+ });
22260
+ };
21985
22261
  export const marketplaceTagsList = (options) => {
21986
22262
  return (options?.client ?? _heyApiClient).get({
21987
22263
  security: [
@@ -40002,6 +40278,46 @@ export const usersDataAccessHistoryList = (options) => {
40002
40278
  ...options
40003
40279
  });
40004
40280
  };
40281
+ /**
40282
+ * Get version history
40283
+ * Returns the version history for this object. Only accessible by staff and support users.
40284
+ */
40285
+ export const usersHistoryList = (options) => {
40286
+ return (options.client ?? _heyApiClient).get({
40287
+ security: [
40288
+ {
40289
+ name: 'Authorization',
40290
+ type: 'apiKey'
40291
+ },
40292
+ {
40293
+ scheme: 'bearer',
40294
+ type: 'http'
40295
+ }
40296
+ ],
40297
+ url: '/api/users/{uuid}/history/',
40298
+ ...options
40299
+ });
40300
+ };
40301
+ /**
40302
+ * Get object state at a specific timestamp
40303
+ * Returns the state of the object as it was at the specified timestamp. Only accessible by staff and support users.
40304
+ */
40305
+ export const usersHistoryAtRetrieve = (options) => {
40306
+ return (options.client ?? _heyApiClient).get({
40307
+ security: [
40308
+ {
40309
+ name: 'Authorization',
40310
+ type: 'apiKey'
40311
+ },
40312
+ {
40313
+ scheme: 'bearer',
40314
+ type: 'http'
40315
+ }
40316
+ ],
40317
+ url: '/api/users/{uuid}/history/at/',
40318
+ ...options
40319
+ });
40320
+ };
40005
40321
  /**
40006
40322
  * Synchronize user details from eduTEAMS
40007
40323
  */