waldur-js-client 7.9.7-dev.1 → 7.9.7-dev.10
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 +138 -27
- package/dist/sdk.gen.js +360 -140
- package/dist/types.gen.d.ts +1223 -257
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -4150,6 +4150,29 @@ export const celeryStatsRetrieve = (options) => {
|
|
|
4150
4150
|
...options
|
|
4151
4151
|
});
|
|
4152
4152
|
};
|
|
4153
|
+
/**
|
|
4154
|
+
* Execute a tool and return the result.
|
|
4155
|
+
*/
|
|
4156
|
+
export const chatToolsExecute = (options) => {
|
|
4157
|
+
return (options.client ?? _heyApiClient).post({
|
|
4158
|
+
security: [
|
|
4159
|
+
{
|
|
4160
|
+
name: 'Authorization',
|
|
4161
|
+
type: 'apiKey'
|
|
4162
|
+
},
|
|
4163
|
+
{
|
|
4164
|
+
scheme: 'bearer',
|
|
4165
|
+
type: 'http'
|
|
4166
|
+
}
|
|
4167
|
+
],
|
|
4168
|
+
url: '/api/chat-tools/execute/',
|
|
4169
|
+
...options,
|
|
4170
|
+
headers: {
|
|
4171
|
+
'Content-Type': 'application/json',
|
|
4172
|
+
...options.headers
|
|
4173
|
+
}
|
|
4174
|
+
});
|
|
4175
|
+
};
|
|
4153
4176
|
export const chatInvoke = (options) => {
|
|
4154
4177
|
return (options?.client ?? _heyApiClient).post({
|
|
4155
4178
|
security: [
|
|
@@ -6033,10 +6056,23 @@ export const dailyQuotasRetrieve = (options) => {
|
|
|
6033
6056
|
});
|
|
6034
6057
|
};
|
|
6035
6058
|
/**
|
|
6036
|
-
* Get database
|
|
6037
|
-
* Retrieves statistics about the database
|
|
6059
|
+
* Get comprehensive database statistics
|
|
6060
|
+
* Retrieves comprehensive statistics about the PostgreSQL database including:
|
|
6061
|
+
* - **Table statistics**: Top 10 largest tables by size
|
|
6062
|
+
* - **Connection statistics**: Active, idle, and waiting connections with utilization
|
|
6063
|
+
* - **Database size**: Total size, data size, and index size
|
|
6064
|
+
* - **Cache performance**: Buffer cache and index hit ratios (should be >99%)
|
|
6065
|
+
* - **Transaction statistics**: Commits, rollbacks, deadlocks
|
|
6066
|
+
* - **Lock statistics**: Current locks and waiting queries
|
|
6067
|
+
* - **Maintenance statistics**: Dead tuples, vacuum needs, oldest transaction age
|
|
6068
|
+
* - **Active queries**: Currently running queries with duration
|
|
6069
|
+
* - **Query performance**: Sequential vs index scan ratios
|
|
6070
|
+
* - **Replication status**: WAL size and replication lag (if applicable)
|
|
6071
|
+
*
|
|
6072
|
+
* This information is useful for monitoring, debugging, and performance tuning.
|
|
6073
|
+
* Requires support user permissions.
|
|
6038
6074
|
*/
|
|
6039
|
-
export const
|
|
6075
|
+
export const databaseStatsRetrieve = (options) => {
|
|
6040
6076
|
return (options?.client ?? _heyApiClient).get({
|
|
6041
6077
|
security: [
|
|
6042
6078
|
{
|
|
@@ -18548,6 +18584,39 @@ export const marketplaceServiceProvidersUpdateUser = (options) => {
|
|
|
18548
18584
|
}
|
|
18549
18585
|
});
|
|
18550
18586
|
};
|
|
18587
|
+
/**
|
|
18588
|
+
* Get agent connection statistics
|
|
18589
|
+
* Returns connection status for all registered agents.
|
|
18590
|
+
*
|
|
18591
|
+
* For each agent identity, provides:
|
|
18592
|
+
* - Agent metadata (name, version, offering)
|
|
18593
|
+
* - Services and their states
|
|
18594
|
+
* - Event subscriptions with RabbitMQ connection status
|
|
18595
|
+
* - RabbitMQ queues associated with the agent's offering
|
|
18596
|
+
*
|
|
18597
|
+
* The RMQ connection data includes:
|
|
18598
|
+
* - Whether the agent is currently connected
|
|
18599
|
+
* - Connection source IP, timestamp, and state
|
|
18600
|
+
* - Traffic statistics (bytes sent/received)
|
|
18601
|
+
*
|
|
18602
|
+
* Requires support user permissions.
|
|
18603
|
+
*/
|
|
18604
|
+
export const marketplaceSiteAgentConnectionStatsRetrieve = (options) => {
|
|
18605
|
+
return (options?.client ?? _heyApiClient).get({
|
|
18606
|
+
security: [
|
|
18607
|
+
{
|
|
18608
|
+
name: 'Authorization',
|
|
18609
|
+
type: 'apiKey'
|
|
18610
|
+
},
|
|
18611
|
+
{
|
|
18612
|
+
scheme: 'bearer',
|
|
18613
|
+
type: 'http'
|
|
18614
|
+
}
|
|
18615
|
+
],
|
|
18616
|
+
url: '/api/marketplace-site-agent-connection-stats/',
|
|
18617
|
+
...options
|
|
18618
|
+
});
|
|
18619
|
+
};
|
|
18551
18620
|
export const marketplaceSiteAgentIdentitiesList = (options) => {
|
|
18552
18621
|
return (options?.client ?? _heyApiClient).get({
|
|
18553
18622
|
security: [
|
|
@@ -18701,6 +18770,29 @@ export const marketplaceSiteAgentIdentitiesRegisterService = (options) => {
|
|
|
18701
18770
|
}
|
|
18702
18771
|
});
|
|
18703
18772
|
};
|
|
18773
|
+
/**
|
|
18774
|
+
* Remove agent identities that have no active services. Staff only.
|
|
18775
|
+
*/
|
|
18776
|
+
export const marketplaceSiteAgentIdentitiesCleanupOrphaned = (options) => {
|
|
18777
|
+
return (options?.client ?? _heyApiClient).post({
|
|
18778
|
+
security: [
|
|
18779
|
+
{
|
|
18780
|
+
name: 'Authorization',
|
|
18781
|
+
type: 'apiKey'
|
|
18782
|
+
},
|
|
18783
|
+
{
|
|
18784
|
+
scheme: 'bearer',
|
|
18785
|
+
type: 'http'
|
|
18786
|
+
}
|
|
18787
|
+
],
|
|
18788
|
+
url: '/api/marketplace-site-agent-identities/cleanup_orphaned/',
|
|
18789
|
+
...options,
|
|
18790
|
+
headers: {
|
|
18791
|
+
'Content-Type': 'application/json',
|
|
18792
|
+
...options?.headers
|
|
18793
|
+
}
|
|
18794
|
+
});
|
|
18795
|
+
};
|
|
18704
18796
|
export const marketplaceSiteAgentProcessorsList = (options) => {
|
|
18705
18797
|
return (options?.client ?? _heyApiClient).get({
|
|
18706
18798
|
security: [
|
|
@@ -18736,6 +18828,22 @@ export const marketplaceSiteAgentProcessorsCount = (options) => {
|
|
|
18736
18828
|
...options
|
|
18737
18829
|
});
|
|
18738
18830
|
};
|
|
18831
|
+
export const marketplaceSiteAgentProcessorsDestroy = (options) => {
|
|
18832
|
+
return (options.client ?? _heyApiClient).delete({
|
|
18833
|
+
security: [
|
|
18834
|
+
{
|
|
18835
|
+
name: 'Authorization',
|
|
18836
|
+
type: 'apiKey'
|
|
18837
|
+
},
|
|
18838
|
+
{
|
|
18839
|
+
scheme: 'bearer',
|
|
18840
|
+
type: 'http'
|
|
18841
|
+
}
|
|
18842
|
+
],
|
|
18843
|
+
url: '/api/marketplace-site-agent-processors/{uuid}/',
|
|
18844
|
+
...options
|
|
18845
|
+
});
|
|
18846
|
+
};
|
|
18739
18847
|
export const marketplaceSiteAgentProcessorsRetrieve = (options) => {
|
|
18740
18848
|
return (options.client ?? _heyApiClient).get({
|
|
18741
18849
|
security: [
|
|
@@ -18787,6 +18895,22 @@ export const marketplaceSiteAgentServicesCount = (options) => {
|
|
|
18787
18895
|
...options
|
|
18788
18896
|
});
|
|
18789
18897
|
};
|
|
18898
|
+
export const marketplaceSiteAgentServicesDestroy = (options) => {
|
|
18899
|
+
return (options.client ?? _heyApiClient).delete({
|
|
18900
|
+
security: [
|
|
18901
|
+
{
|
|
18902
|
+
name: 'Authorization',
|
|
18903
|
+
type: 'apiKey'
|
|
18904
|
+
},
|
|
18905
|
+
{
|
|
18906
|
+
scheme: 'bearer',
|
|
18907
|
+
type: 'http'
|
|
18908
|
+
}
|
|
18909
|
+
],
|
|
18910
|
+
url: '/api/marketplace-site-agent-services/{uuid}/',
|
|
18911
|
+
...options
|
|
18912
|
+
});
|
|
18913
|
+
};
|
|
18790
18914
|
export const marketplaceSiteAgentServicesRetrieve = (options) => {
|
|
18791
18915
|
return (options.client ?? _heyApiClient).get({
|
|
18792
18916
|
security: [
|
|
@@ -18849,6 +18973,67 @@ export const marketplaceSiteAgentServicesSetStatistics = (options) => {
|
|
|
18849
18973
|
}
|
|
18850
18974
|
});
|
|
18851
18975
|
};
|
|
18976
|
+
/**
|
|
18977
|
+
* Remove agent services that have been inactive for a specified time. Staff only.
|
|
18978
|
+
*/
|
|
18979
|
+
export const marketplaceSiteAgentServicesCleanupStale = (options) => {
|
|
18980
|
+
return (options?.client ?? _heyApiClient).post({
|
|
18981
|
+
security: [
|
|
18982
|
+
{
|
|
18983
|
+
name: 'Authorization',
|
|
18984
|
+
type: 'apiKey'
|
|
18985
|
+
},
|
|
18986
|
+
{
|
|
18987
|
+
scheme: 'bearer',
|
|
18988
|
+
type: 'http'
|
|
18989
|
+
}
|
|
18990
|
+
],
|
|
18991
|
+
url: '/api/marketplace-site-agent-services/cleanup_stale/',
|
|
18992
|
+
...options,
|
|
18993
|
+
headers: {
|
|
18994
|
+
'Content-Type': 'application/json',
|
|
18995
|
+
...options?.headers
|
|
18996
|
+
}
|
|
18997
|
+
});
|
|
18998
|
+
};
|
|
18999
|
+
/**
|
|
19000
|
+
* Get aggregated statistics about agent identities, services, and processors. Support users only.
|
|
19001
|
+
*/
|
|
19002
|
+
export const marketplaceSiteAgentStatsRetrieve = (options) => {
|
|
19003
|
+
return (options?.client ?? _heyApiClient).get({
|
|
19004
|
+
security: [
|
|
19005
|
+
{
|
|
19006
|
+
name: 'Authorization',
|
|
19007
|
+
type: 'apiKey'
|
|
19008
|
+
},
|
|
19009
|
+
{
|
|
19010
|
+
scheme: 'bearer',
|
|
19011
|
+
type: 'http'
|
|
19012
|
+
}
|
|
19013
|
+
],
|
|
19014
|
+
url: '/api/marketplace-site-agent-stats/',
|
|
19015
|
+
...options
|
|
19016
|
+
});
|
|
19017
|
+
};
|
|
19018
|
+
/**
|
|
19019
|
+
* Get Celery task status for agent-related tasks. Support users only.
|
|
19020
|
+
*/
|
|
19021
|
+
export const marketplaceSiteAgentTaskStatsRetrieve = (options) => {
|
|
19022
|
+
return (options?.client ?? _heyApiClient).get({
|
|
19023
|
+
security: [
|
|
19024
|
+
{
|
|
19025
|
+
name: 'Authorization',
|
|
19026
|
+
type: 'apiKey'
|
|
19027
|
+
},
|
|
19028
|
+
{
|
|
19029
|
+
scheme: 'bearer',
|
|
19030
|
+
type: 'http'
|
|
19031
|
+
}
|
|
19032
|
+
],
|
|
19033
|
+
url: '/api/marketplace-site-agent-task-stats/',
|
|
19034
|
+
...options
|
|
19035
|
+
});
|
|
19036
|
+
};
|
|
18852
19037
|
export const marketplaceSlurmPeriodicUsagePoliciesList = (options) => {
|
|
18853
19038
|
return (options?.client ?? _heyApiClient).get({
|
|
18854
19039
|
security: [
|
|
@@ -21212,133 +21397,6 @@ export const notificationMessagesEnable = (options) => {
|
|
|
21212
21397
|
...options
|
|
21213
21398
|
});
|
|
21214
21399
|
};
|
|
21215
|
-
export const onboardingCountryConfigsList = (options) => {
|
|
21216
|
-
return (options?.client ?? _heyApiClient).get({
|
|
21217
|
-
security: [
|
|
21218
|
-
{
|
|
21219
|
-
name: 'Authorization',
|
|
21220
|
-
type: 'apiKey'
|
|
21221
|
-
},
|
|
21222
|
-
{
|
|
21223
|
-
scheme: 'bearer',
|
|
21224
|
-
type: 'http'
|
|
21225
|
-
}
|
|
21226
|
-
],
|
|
21227
|
-
url: '/api/onboarding-country-configs/',
|
|
21228
|
-
...options
|
|
21229
|
-
});
|
|
21230
|
-
};
|
|
21231
|
-
/**
|
|
21232
|
-
* Get number of items in the collection matching the request parameters.
|
|
21233
|
-
*/
|
|
21234
|
-
export const onboardingCountryConfigsCount = (options) => {
|
|
21235
|
-
return (options?.client ?? _heyApiClient).head({
|
|
21236
|
-
security: [
|
|
21237
|
-
{
|
|
21238
|
-
name: 'Authorization',
|
|
21239
|
-
type: 'apiKey'
|
|
21240
|
-
},
|
|
21241
|
-
{
|
|
21242
|
-
scheme: 'bearer',
|
|
21243
|
-
type: 'http'
|
|
21244
|
-
}
|
|
21245
|
-
],
|
|
21246
|
-
url: '/api/onboarding-country-configs/',
|
|
21247
|
-
...options
|
|
21248
|
-
});
|
|
21249
|
-
};
|
|
21250
|
-
export const onboardingCountryConfigsCreate = (options) => {
|
|
21251
|
-
return (options.client ?? _heyApiClient).post({
|
|
21252
|
-
security: [
|
|
21253
|
-
{
|
|
21254
|
-
name: 'Authorization',
|
|
21255
|
-
type: 'apiKey'
|
|
21256
|
-
},
|
|
21257
|
-
{
|
|
21258
|
-
scheme: 'bearer',
|
|
21259
|
-
type: 'http'
|
|
21260
|
-
}
|
|
21261
|
-
],
|
|
21262
|
-
url: '/api/onboarding-country-configs/',
|
|
21263
|
-
...options,
|
|
21264
|
-
headers: {
|
|
21265
|
-
'Content-Type': 'application/json',
|
|
21266
|
-
...options.headers
|
|
21267
|
-
}
|
|
21268
|
-
});
|
|
21269
|
-
};
|
|
21270
|
-
export const onboardingCountryConfigsDestroy = (options) => {
|
|
21271
|
-
return (options.client ?? _heyApiClient).delete({
|
|
21272
|
-
security: [
|
|
21273
|
-
{
|
|
21274
|
-
name: 'Authorization',
|
|
21275
|
-
type: 'apiKey'
|
|
21276
|
-
},
|
|
21277
|
-
{
|
|
21278
|
-
scheme: 'bearer',
|
|
21279
|
-
type: 'http'
|
|
21280
|
-
}
|
|
21281
|
-
],
|
|
21282
|
-
url: '/api/onboarding-country-configs/{uuid}/',
|
|
21283
|
-
...options
|
|
21284
|
-
});
|
|
21285
|
-
};
|
|
21286
|
-
export const onboardingCountryConfigsRetrieve = (options) => {
|
|
21287
|
-
return (options.client ?? _heyApiClient).get({
|
|
21288
|
-
security: [
|
|
21289
|
-
{
|
|
21290
|
-
name: 'Authorization',
|
|
21291
|
-
type: 'apiKey'
|
|
21292
|
-
},
|
|
21293
|
-
{
|
|
21294
|
-
scheme: 'bearer',
|
|
21295
|
-
type: 'http'
|
|
21296
|
-
}
|
|
21297
|
-
],
|
|
21298
|
-
url: '/api/onboarding-country-configs/{uuid}/',
|
|
21299
|
-
...options
|
|
21300
|
-
});
|
|
21301
|
-
};
|
|
21302
|
-
export const onboardingCountryConfigsPartialUpdate = (options) => {
|
|
21303
|
-
return (options.client ?? _heyApiClient).patch({
|
|
21304
|
-
security: [
|
|
21305
|
-
{
|
|
21306
|
-
name: 'Authorization',
|
|
21307
|
-
type: 'apiKey'
|
|
21308
|
-
},
|
|
21309
|
-
{
|
|
21310
|
-
scheme: 'bearer',
|
|
21311
|
-
type: 'http'
|
|
21312
|
-
}
|
|
21313
|
-
],
|
|
21314
|
-
url: '/api/onboarding-country-configs/{uuid}/',
|
|
21315
|
-
...options,
|
|
21316
|
-
headers: {
|
|
21317
|
-
'Content-Type': 'application/json',
|
|
21318
|
-
...options.headers
|
|
21319
|
-
}
|
|
21320
|
-
});
|
|
21321
|
-
};
|
|
21322
|
-
export const onboardingCountryConfigsUpdate = (options) => {
|
|
21323
|
-
return (options.client ?? _heyApiClient).put({
|
|
21324
|
-
security: [
|
|
21325
|
-
{
|
|
21326
|
-
name: 'Authorization',
|
|
21327
|
-
type: 'apiKey'
|
|
21328
|
-
},
|
|
21329
|
-
{
|
|
21330
|
-
scheme: 'bearer',
|
|
21331
|
-
type: 'http'
|
|
21332
|
-
}
|
|
21333
|
-
],
|
|
21334
|
-
url: '/api/onboarding-country-configs/{uuid}/',
|
|
21335
|
-
...options,
|
|
21336
|
-
headers: {
|
|
21337
|
-
'Content-Type': 'application/json',
|
|
21338
|
-
...options.headers
|
|
21339
|
-
}
|
|
21340
|
-
});
|
|
21341
|
-
};
|
|
21342
21400
|
export const onboardingJustificationsList = (options) => {
|
|
21343
21401
|
return (options?.client ?? _heyApiClient).get({
|
|
21344
21402
|
security: [
|
|
@@ -21721,7 +21779,7 @@ export const onboardingVerificationsCount = (options) => {
|
|
|
21721
21779
|
});
|
|
21722
21780
|
};
|
|
21723
21781
|
export const onboardingVerificationsCreate = (options) => {
|
|
21724
|
-
return (options
|
|
21782
|
+
return (options?.client ?? _heyApiClient).post({
|
|
21725
21783
|
security: [
|
|
21726
21784
|
{
|
|
21727
21785
|
name: 'Authorization',
|
|
@@ -21736,7 +21794,7 @@ export const onboardingVerificationsCreate = (options) => {
|
|
|
21736
21794
|
...options,
|
|
21737
21795
|
headers: {
|
|
21738
21796
|
'Content-Type': 'application/json',
|
|
21739
|
-
...options
|
|
21797
|
+
...options?.headers
|
|
21740
21798
|
}
|
|
21741
21799
|
});
|
|
21742
21800
|
};
|
|
@@ -21813,7 +21871,7 @@ export const onboardingVerificationsUpdate = (options) => {
|
|
|
21813
21871
|
});
|
|
21814
21872
|
};
|
|
21815
21873
|
/**
|
|
21816
|
-
* Get checklist with questions and existing answers.
|
|
21874
|
+
* Get checklist with questions and existing answers. Supports both customer and intent checklists via checklist_type parameter.
|
|
21817
21875
|
*/
|
|
21818
21876
|
export const onboardingVerificationsChecklistRetrieve = (options) => {
|
|
21819
21877
|
return (options.client ?? _heyApiClient).get({
|
|
@@ -21832,7 +21890,7 @@ export const onboardingVerificationsChecklistRetrieve = (options) => {
|
|
|
21832
21890
|
});
|
|
21833
21891
|
};
|
|
21834
21892
|
/**
|
|
21835
|
-
* Get checklist completion status.
|
|
21893
|
+
* Get checklist completion status. Supports both customer and intent checklists via checklist_type parameter.
|
|
21836
21894
|
*/
|
|
21837
21895
|
export const onboardingVerificationsCompletionStatusRetrieve = (options) => {
|
|
21838
21896
|
return (options.client ?? _heyApiClient).get({
|
|
@@ -21893,7 +21951,7 @@ export const onboardingVerificationsRunValidation = (options) => {
|
|
|
21893
21951
|
});
|
|
21894
21952
|
};
|
|
21895
21953
|
/**
|
|
21896
|
-
* Submit checklist
|
|
21954
|
+
* Submit answers to checklist questions. Automatically detects which checklist (customer or intent) each question belongs to.
|
|
21897
21955
|
*/
|
|
21898
21956
|
export const onboardingVerificationsSubmitAnswers = (options) => {
|
|
21899
21957
|
return (options.client ?? _heyApiClient).post({
|
|
@@ -21915,6 +21973,44 @@ export const onboardingVerificationsSubmitAnswers = (options) => {
|
|
|
21915
21973
|
}
|
|
21916
21974
|
});
|
|
21917
21975
|
};
|
|
21976
|
+
/**
|
|
21977
|
+
* Get available onboarding checklists (customer and intent) for preview. This endpoint allows users to see checklist questions before creating a verification. Supports checklist_type parameter to filter by customer or intent checklists. Includes questions with onboarding metadata (field mappings).
|
|
21978
|
+
*/
|
|
21979
|
+
export const onboardingVerificationsAvailableChecklistsRetrieve = (options) => {
|
|
21980
|
+
return (options?.client ?? _heyApiClient).get({
|
|
21981
|
+
security: [
|
|
21982
|
+
{
|
|
21983
|
+
name: 'Authorization',
|
|
21984
|
+
type: 'apiKey'
|
|
21985
|
+
},
|
|
21986
|
+
{
|
|
21987
|
+
scheme: 'bearer',
|
|
21988
|
+
type: 'http'
|
|
21989
|
+
}
|
|
21990
|
+
],
|
|
21991
|
+
url: '/api/onboarding-verifications/available_checklists/',
|
|
21992
|
+
...options
|
|
21993
|
+
});
|
|
21994
|
+
};
|
|
21995
|
+
/**
|
|
21996
|
+
* Get number of items in the collection matching the request parameters.
|
|
21997
|
+
*/
|
|
21998
|
+
export const onboardingVerificationsAvailableChecklistsCount = (options) => {
|
|
21999
|
+
return (options?.client ?? _heyApiClient).head({
|
|
22000
|
+
security: [
|
|
22001
|
+
{
|
|
22002
|
+
name: 'Authorization',
|
|
22003
|
+
type: 'apiKey'
|
|
22004
|
+
},
|
|
22005
|
+
{
|
|
22006
|
+
scheme: 'bearer',
|
|
22007
|
+
type: 'http'
|
|
22008
|
+
}
|
|
22009
|
+
],
|
|
22010
|
+
url: '/api/onboarding-verifications/available_checklists/',
|
|
22011
|
+
...options
|
|
22012
|
+
});
|
|
22013
|
+
};
|
|
21918
22014
|
/**
|
|
21919
22015
|
* Get checklist template for creating new objects.
|
|
21920
22016
|
*/
|
|
@@ -21954,10 +22050,10 @@ export const onboardingVerificationsChecklistTemplateCount = (options) => {
|
|
|
21954
22050
|
});
|
|
21955
22051
|
};
|
|
21956
22052
|
/**
|
|
21957
|
-
* Start company validation process by creating a verification record.
|
|
22053
|
+
* Start company validation process by creating a verification record. User selects validation_method (e.g., 'ariregister', 'wirtschaftscompass'). Checklists are used for intent and customer data collection. Then call run_validation to perform automatic validation or create manual justification.
|
|
21958
22054
|
*/
|
|
21959
22055
|
export const onboardingVerificationsStartVerification = (options) => {
|
|
21960
|
-
return (options
|
|
22056
|
+
return (options?.client ?? _heyApiClient).post({
|
|
21961
22057
|
security: [
|
|
21962
22058
|
{
|
|
21963
22059
|
name: 'Authorization',
|
|
@@ -21972,10 +22068,29 @@ export const onboardingVerificationsStartVerification = (options) => {
|
|
|
21972
22068
|
...options,
|
|
21973
22069
|
headers: {
|
|
21974
22070
|
'Content-Type': 'application/json',
|
|
21975
|
-
...options
|
|
22071
|
+
...options?.headers
|
|
21976
22072
|
}
|
|
21977
22073
|
});
|
|
21978
22074
|
};
|
|
22075
|
+
/**
|
|
22076
|
+
* Return person identifier field specification for a specific validation method. The validation_method parameter should match one of the available methods (e.g., 'ariregister', 'wirtschaftscompass', 'bolagsverket', 'breg').
|
|
22077
|
+
*/
|
|
22078
|
+
export const onboardingPersonIdentifierFieldsRetrieve = (options) => {
|
|
22079
|
+
return (options.client ?? _heyApiClient).get({
|
|
22080
|
+
security: [
|
|
22081
|
+
{
|
|
22082
|
+
name: 'Authorization',
|
|
22083
|
+
type: 'apiKey'
|
|
22084
|
+
},
|
|
22085
|
+
{
|
|
22086
|
+
scheme: 'bearer',
|
|
22087
|
+
type: 'http'
|
|
22088
|
+
}
|
|
22089
|
+
],
|
|
22090
|
+
url: '/api/onboarding/person-identifier-fields/',
|
|
22091
|
+
...options
|
|
22092
|
+
});
|
|
22093
|
+
};
|
|
21979
22094
|
/**
|
|
21980
22095
|
* Return list of supported countries for validation.
|
|
21981
22096
|
*/
|
|
@@ -23291,7 +23406,7 @@ export const openportalUnmanagedProjectsListUsersList = (options) => {
|
|
|
23291
23406
|
};
|
|
23292
23407
|
/**
|
|
23293
23408
|
* Move project to another customer
|
|
23294
|
-
* Moves a project and its associated resources to a different customer. This is a staff-only action. You can choose whether to preserve existing project permissions for users.
|
|
23409
|
+
* Moves a project and its associated resources to a different customer. This is a staff-only action. You can choose whether to preserve existing project permissions for users. Terminated projects can also be moved.
|
|
23295
23410
|
*/
|
|
23296
23411
|
export const openportalUnmanagedProjectsMoveProject = (options) => {
|
|
23297
23412
|
return (options.client ?? _heyApiClient).post({
|
|
@@ -28576,7 +28691,7 @@ export const projectsListUsersList = (options) => {
|
|
|
28576
28691
|
};
|
|
28577
28692
|
/**
|
|
28578
28693
|
* Move project to another customer
|
|
28579
|
-
* Moves a project and its associated resources to a different customer. This is a staff-only action. You can choose whether to preserve existing project permissions for users.
|
|
28694
|
+
* Moves a project and its associated resources to a different customer. This is a staff-only action. You can choose whether to preserve existing project permissions for users. Terminated projects can also be moved.
|
|
28580
28695
|
*/
|
|
28581
28696
|
export const projectsMoveProject = (options) => {
|
|
28582
28697
|
return (options.client ?? _heyApiClient).post({
|
|
@@ -31153,6 +31268,111 @@ export const query = (options) => {
|
|
|
31153
31268
|
}
|
|
31154
31269
|
});
|
|
31155
31270
|
};
|
|
31271
|
+
/**
|
|
31272
|
+
* Get RabbitMQ cluster overview statistics
|
|
31273
|
+
* Returns global RabbitMQ cluster health and performance metrics.
|
|
31274
|
+
*
|
|
31275
|
+
* Includes:
|
|
31276
|
+
* - **Cluster info**: Name, RabbitMQ version, Erlang version
|
|
31277
|
+
* - **Message stats**: Publish/deliver/confirm/ack counts and rates (per second)
|
|
31278
|
+
* - **Queue totals**: Total messages, ready messages, unacknowledged messages
|
|
31279
|
+
* - **Object totals**: Connection, channel, exchange, queue, and consumer counts
|
|
31280
|
+
* - **Listeners**: Active protocol listeners (AMQP, HTTP, etc.)
|
|
31281
|
+
*
|
|
31282
|
+
* Requires support user permissions.
|
|
31283
|
+
*/
|
|
31284
|
+
export const rabbitmqOverviewRetrieve = (options) => {
|
|
31285
|
+
return (options?.client ?? _heyApiClient).get({
|
|
31286
|
+
security: [
|
|
31287
|
+
{
|
|
31288
|
+
name: 'Authorization',
|
|
31289
|
+
type: 'apiKey'
|
|
31290
|
+
},
|
|
31291
|
+
{
|
|
31292
|
+
scheme: 'bearer',
|
|
31293
|
+
type: 'http'
|
|
31294
|
+
}
|
|
31295
|
+
],
|
|
31296
|
+
url: '/api/rabbitmq-overview/',
|
|
31297
|
+
...options
|
|
31298
|
+
});
|
|
31299
|
+
};
|
|
31300
|
+
/**
|
|
31301
|
+
* Get RabbitMQ subscription queue statistics
|
|
31302
|
+
* Provides statistics about RabbitMQ subscription queues.
|
|
31303
|
+
*
|
|
31304
|
+
* Returns information about all vhosts with their subscription queues, including:
|
|
31305
|
+
* - Queue names and message counts
|
|
31306
|
+
* - Waldur user and subscription information linked to each vhost
|
|
31307
|
+
* - Total message counts per vhost and across all vhosts
|
|
31308
|
+
*
|
|
31309
|
+
* Requires support user permissions.
|
|
31310
|
+
*/
|
|
31311
|
+
export const rabbitmqStatsRetrieve = (options) => {
|
|
31312
|
+
return (options?.client ?? _heyApiClient).get({
|
|
31313
|
+
security: [
|
|
31314
|
+
{
|
|
31315
|
+
name: 'Authorization',
|
|
31316
|
+
type: 'apiKey'
|
|
31317
|
+
},
|
|
31318
|
+
{
|
|
31319
|
+
scheme: 'bearer',
|
|
31320
|
+
type: 'http'
|
|
31321
|
+
}
|
|
31322
|
+
],
|
|
31323
|
+
url: '/api/rabbitmq-stats/',
|
|
31324
|
+
...options
|
|
31325
|
+
});
|
|
31326
|
+
};
|
|
31327
|
+
/**
|
|
31328
|
+
* Purge or delete RabbitMQ subscription queues
|
|
31329
|
+
* Purges messages from or deletes specified RabbitMQ subscription queues.
|
|
31330
|
+
*
|
|
31331
|
+
* **Purge operations** (remove messages, keep queue):
|
|
31332
|
+
* - `vhost` and `queue_name`: Purge a specific queue
|
|
31333
|
+
* - `vhost` and `queue_pattern`: Purge queues matching pattern (e.g., '*_resource')
|
|
31334
|
+
* - `purge_all_subscription_queues`: Purge all subscription queues across all vhosts
|
|
31335
|
+
*
|
|
31336
|
+
* **Delete operations** (remove queue entirely):
|
|
31337
|
+
* - `vhost`, `queue_name`, and `delete_queue=true`: Delete a specific queue
|
|
31338
|
+
* - `vhost`, `queue_pattern`, and `delete_queue=true`: Delete queues matching pattern
|
|
31339
|
+
* - `delete_all_subscription_queues`: Delete all subscription queues across all vhosts
|
|
31340
|
+
*
|
|
31341
|
+
* Requires staff permissions (more restrictive than viewing).
|
|
31342
|
+
*/
|
|
31343
|
+
export const rabbitmqStats = (options) => {
|
|
31344
|
+
return (options?.client ?? _heyApiClient).post({
|
|
31345
|
+
security: [
|
|
31346
|
+
{
|
|
31347
|
+
name: 'Authorization',
|
|
31348
|
+
type: 'apiKey'
|
|
31349
|
+
},
|
|
31350
|
+
{
|
|
31351
|
+
scheme: 'bearer',
|
|
31352
|
+
type: 'http'
|
|
31353
|
+
}
|
|
31354
|
+
],
|
|
31355
|
+
url: '/api/rabbitmq-stats/',
|
|
31356
|
+
...options,
|
|
31357
|
+
headers: {
|
|
31358
|
+
'Content-Type': 'application/json',
|
|
31359
|
+
...options?.headers
|
|
31360
|
+
}
|
|
31361
|
+
});
|
|
31362
|
+
};
|
|
31363
|
+
/**
|
|
31364
|
+
* Get RabbitMQ user connection statistics
|
|
31365
|
+
* Returns enriched connection data for all RabbitMQ users.
|
|
31366
|
+
*
|
|
31367
|
+
* For each user (which corresponds to an EventSubscription), provides:
|
|
31368
|
+
* - Connection state (running, blocked, blocking)
|
|
31369
|
+
* - Traffic statistics (bytes sent/received)
|
|
31370
|
+
* - Connection timestamp
|
|
31371
|
+
* - Client properties (product, version, platform)
|
|
31372
|
+
* - Channel count and heartbeat timeout
|
|
31373
|
+
*
|
|
31374
|
+
* Requires support user permissions.
|
|
31375
|
+
*/
|
|
31156
31376
|
export const rabbitmqUserStatsList = (options) => {
|
|
31157
31377
|
return (options?.client ?? _heyApiClient).get({
|
|
31158
31378
|
security: [
|