@alvera-ai/platform-sdk 0.1.0

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.
Files changed (75) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +99 -0
  3. package/dist/client.d.ts +198 -0
  4. package/dist/client.d.ts.map +1 -0
  5. package/dist/client.js +129 -0
  6. package/dist/client.js.map +1 -0
  7. package/dist/generated/client/client.gen.d.ts +3 -0
  8. package/dist/generated/client/client.gen.d.ts.map +1 -0
  9. package/dist/generated/client/client.gen.js +236 -0
  10. package/dist/generated/client/client.gen.js.map +1 -0
  11. package/dist/generated/client/index.d.ts +9 -0
  12. package/dist/generated/client/index.d.ts.map +1 -0
  13. package/dist/generated/client/index.js +7 -0
  14. package/dist/generated/client/index.js.map +1 -0
  15. package/dist/generated/client/types.gen.d.ts +118 -0
  16. package/dist/generated/client/types.gen.d.ts.map +1 -0
  17. package/dist/generated/client/types.gen.js +3 -0
  18. package/dist/generated/client/types.gen.js.map +1 -0
  19. package/dist/generated/client/utils.gen.d.ts +34 -0
  20. package/dist/generated/client/utils.gen.d.ts.map +1 -0
  21. package/dist/generated/client/utils.gen.js +229 -0
  22. package/dist/generated/client/utils.gen.js.map +1 -0
  23. package/dist/generated/client.gen.d.ts +13 -0
  24. package/dist/generated/client.gen.d.ts.map +1 -0
  25. package/dist/generated/client.gen.js +4 -0
  26. package/dist/generated/client.gen.js.map +1 -0
  27. package/dist/generated/core/auth.gen.d.ts +19 -0
  28. package/dist/generated/core/auth.gen.d.ts.map +1 -0
  29. package/dist/generated/core/auth.gen.js +15 -0
  30. package/dist/generated/core/auth.gen.js.map +1 -0
  31. package/dist/generated/core/bodySerializer.gen.d.ts +26 -0
  32. package/dist/generated/core/bodySerializer.gen.d.ts.map +1 -0
  33. package/dist/generated/core/bodySerializer.gen.js +58 -0
  34. package/dist/generated/core/bodySerializer.gen.js.map +1 -0
  35. package/dist/generated/core/params.gen.d.ts +44 -0
  36. package/dist/generated/core/params.gen.d.ts.map +1 -0
  37. package/dist/generated/core/params.gen.js +101 -0
  38. package/dist/generated/core/params.gen.js.map +1 -0
  39. package/dist/generated/core/pathSerializer.gen.d.ts +34 -0
  40. package/dist/generated/core/pathSerializer.gen.d.ts.map +1 -0
  41. package/dist/generated/core/pathSerializer.gen.js +107 -0
  42. package/dist/generated/core/pathSerializer.gen.js.map +1 -0
  43. package/dist/generated/core/queryKeySerializer.gen.d.ts +19 -0
  44. package/dist/generated/core/queryKeySerializer.gen.d.ts.map +1 -0
  45. package/dist/generated/core/queryKeySerializer.gen.js +93 -0
  46. package/dist/generated/core/queryKeySerializer.gen.js.map +1 -0
  47. package/dist/generated/core/serverSentEvents.gen.d.ts +72 -0
  48. package/dist/generated/core/serverSentEvents.gen.d.ts.map +1 -0
  49. package/dist/generated/core/serverSentEvents.gen.js +134 -0
  50. package/dist/generated/core/serverSentEvents.gen.js.map +1 -0
  51. package/dist/generated/core/types.gen.d.ts +79 -0
  52. package/dist/generated/core/types.gen.d.ts.map +1 -0
  53. package/dist/generated/core/types.gen.js +3 -0
  54. package/dist/generated/core/types.gen.js.map +1 -0
  55. package/dist/generated/core/utils.gen.d.ts +20 -0
  56. package/dist/generated/core/utils.gen.d.ts.map +1 -0
  57. package/dist/generated/core/utils.gen.js +88 -0
  58. package/dist/generated/core/utils.gen.js.map +1 -0
  59. package/dist/generated/index.d.ts +3 -0
  60. package/dist/generated/index.d.ts.map +1 -0
  61. package/dist/generated/index.js +3 -0
  62. package/dist/generated/index.js.map +1 -0
  63. package/dist/generated/sdk.gen.d.ts +263 -0
  64. package/dist/generated/sdk.gen.d.ts.map +1 -0
  65. package/dist/generated/sdk.gen.js +433 -0
  66. package/dist/generated/sdk.gen.js.map +1 -0
  67. package/dist/generated/types.gen.d.ts +3958 -0
  68. package/dist/generated/types.gen.d.ts.map +1 -0
  69. package/dist/generated/types.gen.js +3 -0
  70. package/dist/generated/types.gen.js.map +1 -0
  71. package/dist/index.d.ts +2 -0
  72. package/dist/index.d.ts.map +1 -0
  73. package/dist/index.js +2 -0
  74. package/dist/index.js.map +1 -0
  75. package/package.json +60 -0
@@ -0,0 +1,433 @@
1
+ // This file is auto-generated by @hey-api/openapi-ts
2
+ import { client } from './client.gen.js';
3
+ /**
4
+ * Health check
5
+ *
6
+ * Public health check endpoint that returns:
7
+ * - Application version
8
+ * - Database connectivity status (SELECT 1 query)
9
+ * - Current timestamp
10
+ *
11
+ * **No authentication required.**
12
+ *
13
+ */
14
+ export const platformApiPingControllerPing = (options) => (options?.client ?? client).get({ url: '/api/ping', ...options });
15
+ /**
16
+ * Search a dataset
17
+ *
18
+ * Search a dataset by type with Flop-based pagination and filtering. The dataset parameter is the dataset type atom (e.g. patient, member, appointment).
19
+ */
20
+ export const platformApiDatasetControllerSearch = (options) => (options.client ?? client).get({
21
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
22
+ url: '/api/v1/datasets/{dataset}/search',
23
+ ...options
24
+ });
25
+ /**
26
+ * Revoke current session
27
+ *
28
+ * Revokes the current Bearer session — deactivates the session and deletes
29
+ * the linked UserToken. The Bearer token becomes immediately invalid.
30
+ *
31
+ * Only works with `Authorization: Bearer <session_token>` (not X-API-Key).
32
+ *
33
+ * **Requires Bearer authentication.**
34
+ *
35
+ */
36
+ export const platformApiSessionControllerDelete = (options) => (options?.client ?? client).delete({
37
+ security: [{ scheme: 'bearer', type: 'http' }],
38
+ url: '/api/v1/sessions',
39
+ ...options
40
+ });
41
+ /**
42
+ * Create a session (human auth)
43
+ *
44
+ * Exchange user credentials for a Bearer session token.
45
+ *
46
+ * Send `{email, password, tenant_slug}` to authenticate a human user and receive
47
+ * a session token. Use the returned `session_token` as
48
+ * `Authorization: Bearer <session_token>` on subsequent API requests.
49
+ *
50
+ * Optionally specify `expires_in` (seconds) to control session duration.
51
+ * Default: 86400 (24 hours). Maximum: 2592000 (30 days).
52
+ *
53
+ * For M2M (server-to-server) authentication, use `X-API-Key` header directly on
54
+ * each request instead — no session exchange needed.
55
+ *
56
+ * **No authentication required** — this endpoint authenticates the caller.
57
+ *
58
+ */
59
+ export const platformApiSessionControllerCreate = (options) => (options.client ?? client).post({
60
+ url: '/api/v1/sessions',
61
+ ...options,
62
+ headers: {
63
+ 'Content-Type': 'application/json',
64
+ ...options.headers
65
+ }
66
+ });
67
+ /**
68
+ * Verify current session
69
+ *
70
+ * Returns the current session's tenant, role, and identity information.
71
+ *
72
+ * Works with both authentication methods:
73
+ * - `X-API-Key` header (M2M)
74
+ * - `Authorization: Bearer <session_token>` (human sessions)
75
+ *
76
+ * Use this as a "who am I" endpoint to confirm credentials are valid and
77
+ * inspect the resolved tenant, role, and identity.
78
+ *
79
+ * **Requires authentication** (X-API-Key or Bearer token).
80
+ *
81
+ */
82
+ export const platformApiSessionControllerVerify = (options) => (options?.client ?? client).get({
83
+ security: [{ name: 'X-API-Key', type: 'apiKey' }, { scheme: 'bearer', type: 'http' }],
84
+ url: '/api/v1/sessions/verify',
85
+ ...options
86
+ });
87
+ /**
88
+ * List action status updaters
89
+ *
90
+ * Returns a paginated list of action status updaters for the authenticated tenant.
91
+ */
92
+ export const platformApiActionStatusUpdaterControllerIndex = (options) => (options.client ?? client).get({
93
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
94
+ url: '/api/v1/tenants/{tenant_slug}/action-status-updaters',
95
+ ...options
96
+ });
97
+ /**
98
+ * Create an action status updater
99
+ *
100
+ * Creates a new action status updater for the authenticated tenant.
101
+ */
102
+ export const platformApiActionStatusUpdaterControllerCreate = (options) => (options.client ?? client).post({
103
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
104
+ url: '/api/v1/tenants/{tenant_slug}/action-status-updaters',
105
+ ...options,
106
+ headers: {
107
+ 'Content-Type': 'application/json',
108
+ ...options.headers
109
+ }
110
+ });
111
+ /**
112
+ * Replace an action status updater
113
+ *
114
+ * Replaces an action status updater with the full resource body. PUT semantics — all required fields must be present.
115
+ */
116
+ export const platformApiActionStatusUpdaterControllerUpdate = (options) => (options.client ?? client).put({
117
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
118
+ url: '/api/v1/tenants/{tenant_slug}/action-status-updaters/{id}',
119
+ ...options,
120
+ headers: {
121
+ 'Content-Type': 'application/json',
122
+ ...options.headers
123
+ }
124
+ });
125
+ /**
126
+ * Execute an individual action for a dataset record
127
+ *
128
+ * Executes a single workflow action identified by decision_key for the given dataset record, bypassing filter and decision evaluation
129
+ */
130
+ export const platformApiWorkflowControllerExecute = (options) => (options.client ?? client).post({
131
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
132
+ url: '/api/v1/tenants/{tenant_slug}/agentic-workflows/{workflow_slug}/execute',
133
+ ...options,
134
+ headers: {
135
+ 'Content-Type': 'application/json',
136
+ ...options.headers
137
+ }
138
+ });
139
+ /**
140
+ * Resolve a short URL token to a page
141
+ *
142
+ * Given a connected app slug and a Puid short URL token, resolves the token to
143
+ * the pre-stored route path and MDM subject ID. The Cloudflare app calls this
144
+ * endpoint when a customer clicks a short URL, forwarding the original client
145
+ * headers (user-agent, IP, country) in the request body.
146
+ *
147
+ * When the page token is linked to a message (via workflow action execution),
148
+ * the regulated message details (raw body, channel, status) are included in
149
+ * the response.
150
+ *
151
+ * **Requires X-API-Key authentication.**
152
+ *
153
+ */
154
+ export const platformApiConnectedAppControllerResolvePage = (options) => (options.client ?? client).post({
155
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
156
+ url: '/api/v1/tenants/{tenant_slug}/connected-apps/{slug}/resolve-page',
157
+ ...options,
158
+ headers: {
159
+ 'Content-Type': 'application/json',
160
+ ...options.headers
161
+ }
162
+ });
163
+ /**
164
+ * Update message tracking fields for a page
165
+ *
166
+ * Updates tracking timestamps (opened_at, form_submitted_at) on the message
167
+ * linked to a page token. Called by the connected app when a user opens a page
168
+ * or submits a form.
169
+ *
170
+ * **Requires X-API-Key authentication.**
171
+ *
172
+ */
173
+ export const platformApiConnectedAppControllerUpdatePage = (options) => (options.client ?? client).put({
174
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
175
+ url: '/api/v1/tenants/{tenant_slug}/connected-apps/{slug}/update-message-tracking',
176
+ ...options,
177
+ headers: {
178
+ 'Content-Type': 'application/json',
179
+ ...options.headers
180
+ }
181
+ });
182
+ /**
183
+ * Ingest JSON data
184
+ *
185
+ * Ingest a single JSON record for processing through the data activation pipeline
186
+ */
187
+ export const platformApiDataActivationClientControllerIngest = (options) => (options.client ?? client).post({
188
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
189
+ url: '/api/v1/tenants/{tenant_slug}/data-activation-clients/{slug}/ingest',
190
+ ...options,
191
+ headers: {
192
+ 'Content-Type': 'application/json',
193
+ ...options.headers
194
+ }
195
+ });
196
+ /**
197
+ * List datalakes
198
+ *
199
+ * Returns a paginated list of datalakes for the authenticated tenant.
200
+ */
201
+ export const platformApiDatalakeControllerIndex = (options) => (options.client ?? client).get({
202
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
203
+ url: '/api/v1/tenants/{tenant_slug}/datalakes',
204
+ ...options
205
+ });
206
+ /**
207
+ * Create a datalake
208
+ *
209
+ * Creates a new datalake for the authenticated tenant.
210
+ */
211
+ export const platformApiDatalakeControllerCreate = (options) => (options.client ?? client).post({
212
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
213
+ url: '/api/v1/tenants/{tenant_slug}/datalakes',
214
+ ...options,
215
+ headers: {
216
+ 'Content-Type': 'application/json',
217
+ ...options.headers
218
+ }
219
+ });
220
+ /**
221
+ * List AI agents
222
+ *
223
+ * Returns a paginated list of AI agents for the authenticated tenant.
224
+ */
225
+ export const platformApiAiAgentControllerIndex = (options) => (options.client ?? client).get({
226
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
227
+ url: '/api/v1/tenants/{tenant_slug}/datalakes/{datalake_slug}/ai-agents',
228
+ ...options
229
+ });
230
+ /**
231
+ * Create an AI agent
232
+ *
233
+ * Creates a new AI agent for the authenticated tenant.
234
+ */
235
+ export const platformApiAiAgentControllerCreate = (options) => (options.client ?? client).post({
236
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
237
+ url: '/api/v1/tenants/{tenant_slug}/datalakes/{datalake_slug}/ai-agents',
238
+ ...options,
239
+ headers: {
240
+ 'Content-Type': 'application/json',
241
+ ...options.headers
242
+ }
243
+ });
244
+ /**
245
+ * Delete an AI agent
246
+ *
247
+ * Deletes an AI agent. Returns 409 if the agent is attached to a workflow.
248
+ */
249
+ export const platformApiAiAgentControllerDelete = (options) => (options.client ?? client).delete({
250
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
251
+ url: '/api/v1/tenants/{tenant_slug}/datalakes/{datalake_slug}/ai-agents/{id}',
252
+ ...options
253
+ });
254
+ /**
255
+ * Get an AI agent
256
+ *
257
+ * Returns a single AI agent by ID.
258
+ */
259
+ export const platformApiAiAgentControllerShow = (options) => (options.client ?? client).get({
260
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
261
+ url: '/api/v1/tenants/{tenant_slug}/datalakes/{datalake_slug}/ai-agents/{id}',
262
+ ...options
263
+ });
264
+ /**
265
+ * Replace an AI agent
266
+ *
267
+ * Replaces an AI agent with the full resource body. PUT semantics — all required fields must be present.
268
+ */
269
+ export const platformApiAiAgentControllerUpdate = (options) => (options.client ?? client).put({
270
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
271
+ url: '/api/v1/tenants/{tenant_slug}/datalakes/{datalake_slug}/ai-agents/{id}',
272
+ ...options,
273
+ headers: {
274
+ 'Content-Type': 'application/json',
275
+ ...options.headers
276
+ }
277
+ });
278
+ /**
279
+ * List data sources
280
+ *
281
+ * Returns a paginated list of data sources for the authenticated tenant.
282
+ */
283
+ export const platformApiDataSourceControllerIndex = (options) => (options.client ?? client).get({
284
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
285
+ url: '/api/v1/tenants/{tenant_slug}/datalakes/{datalake_slug}/data-sources',
286
+ ...options
287
+ });
288
+ /**
289
+ * Create a data source
290
+ *
291
+ * Creates a new data source for the authenticated tenant.
292
+ */
293
+ export const platformApiDataSourceControllerCreate = (options) => (options.client ?? client).post({
294
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
295
+ url: '/api/v1/tenants/{tenant_slug}/datalakes/{datalake_slug}/data-sources',
296
+ ...options,
297
+ headers: {
298
+ 'Content-Type': 'application/json',
299
+ ...options.headers
300
+ }
301
+ });
302
+ /**
303
+ * Replace a data source
304
+ *
305
+ * Replaces a data source with the full resource body. PUT semantics — all required fields must be present.
306
+ */
307
+ export const platformApiDataSourceControllerUpdate = (options) => (options.client ?? client).put({
308
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
309
+ url: '/api/v1/tenants/{tenant_slug}/datalakes/{datalake_slug}/data-sources/{id}',
310
+ ...options,
311
+ headers: {
312
+ 'Content-Type': 'application/json',
313
+ ...options.headers
314
+ }
315
+ });
316
+ /**
317
+ * List generic tables
318
+ *
319
+ * Returns a paginated list of generic tables for the datalake (custom tables + system tables for the data domain).
320
+ */
321
+ export const platformApiGenericTableControllerIndex = (options) => (options.client ?? client).get({
322
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
323
+ url: '/api/v1/tenants/{tenant_slug}/datalakes/{datalake_slug}/generic-tables',
324
+ ...options
325
+ });
326
+ /**
327
+ * Create a generic table
328
+ *
329
+ * Creates a new custom generic table within the datalake.
330
+ */
331
+ export const platformApiGenericTableControllerCreate = (options) => (options.client ?? client).post({
332
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
333
+ url: '/api/v1/tenants/{tenant_slug}/datalakes/{datalake_slug}/generic-tables',
334
+ ...options,
335
+ headers: {
336
+ 'Content-Type': 'application/json',
337
+ ...options.headers
338
+ }
339
+ });
340
+ /**
341
+ * Verify subject identity
342
+ *
343
+ * Verify a subject's identity against their master record using fuzzy matching.
344
+ *
345
+ * Supports verification by:
346
+ * - **family_name** — Jaro distance >= 0.85
347
+ * - **given_name** — Jaro distance >= 0.80
348
+ * - **birth_date** — Fuzzy component matching >= 0.80
349
+ * - **identifiers** — Exact (system, value) match
350
+ *
351
+ * At least one verification field is required.
352
+ *
353
+ * **Requires X-API-Key authentication.**
354
+ *
355
+ */
356
+ export const platformApiMdmControllerVerify = (options) => (options.client ?? client).post({
357
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
358
+ url: '/api/v1/tenants/{tenant_slug}/datalakes/{datalake_slug}/mdm/verify',
359
+ ...options,
360
+ headers: {
361
+ 'Content-Type': 'application/json',
362
+ ...options.headers
363
+ }
364
+ });
365
+ /**
366
+ * Get a datalake
367
+ *
368
+ * Returns a single datalake by ID (non-sensitive metadata only).
369
+ */
370
+ export const platformApiDatalakeControllerShow = (options) => (options.client ?? client).get({
371
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
372
+ url: '/api/v1/tenants/{tenant_slug}/datalakes/{id}',
373
+ ...options
374
+ });
375
+ /**
376
+ * List tools
377
+ *
378
+ * Returns a paginated list of tools for the authenticated tenant.
379
+ */
380
+ export const platformApiToolControllerIndex = (options) => (options.client ?? client).get({
381
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
382
+ url: '/api/v1/tenants/{tenant_slug}/tools',
383
+ ...options
384
+ });
385
+ /**
386
+ * Create a tool
387
+ *
388
+ * Creates a new tool for the authenticated tenant.
389
+ */
390
+ export const platformApiToolControllerCreate = (options) => (options.client ?? client).post({
391
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
392
+ url: '/api/v1/tenants/{tenant_slug}/tools',
393
+ ...options,
394
+ headers: {
395
+ 'Content-Type': 'application/json',
396
+ ...options.headers
397
+ }
398
+ });
399
+ /**
400
+ * Delete a tool
401
+ *
402
+ * Deletes a tool. Returns 409 if the tool is referenced by another resource.
403
+ */
404
+ export const platformApiToolControllerDelete = (options) => (options.client ?? client).delete({
405
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
406
+ url: '/api/v1/tenants/{tenant_slug}/tools/{id}',
407
+ ...options
408
+ });
409
+ /**
410
+ * Get a tool
411
+ *
412
+ * Returns a single tool by ID.
413
+ */
414
+ export const platformApiToolControllerShow = (options) => (options.client ?? client).get({
415
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
416
+ url: '/api/v1/tenants/{tenant_slug}/tools/{id}',
417
+ ...options
418
+ });
419
+ /**
420
+ * Replace a tool
421
+ *
422
+ * Replaces a tool with the full resource body. PUT semantics — all required fields must be present.
423
+ */
424
+ export const platformApiToolControllerUpdate = (options) => (options.client ?? client).put({
425
+ security: [{ name: 'X-API-Key', type: 'apiKey' }],
426
+ url: '/api/v1/tenants/{tenant_slug}/tools/{id}',
427
+ ...options,
428
+ headers: {
429
+ 'Content-Type': 'application/json',
430
+ ...options.headers
431
+ }
432
+ });
433
+ //# sourceMappingURL=sdk.gen.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sdk.gen.js","sourceRoot":"","sources":["../../src/generated/sdk.gen.ts"],"names":[],"mappings":"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"}