@geolens/sdk 1.4.6 → 1.4.8

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.
@@ -13,7 +13,15 @@ export const landingPageGet = (options) => (options?.client ?? client).get({ url
13
13
  * Return single-deployment AI status; no provider-routing policy controls (admin only).
14
14
  */
15
15
  export const getAiStatusAdminAiStatusGet = (options) => (options?.client ?? client).get({
16
- security: [{ scheme: 'bearer', type: 'http' }],
16
+ security: [
17
+ { scheme: 'bearer', type: 'http' },
18
+ { name: 'X-Api-Key', type: 'apiKey' },
19
+ {
20
+ in: 'query',
21
+ name: 'api_key',
22
+ type: 'apiKey'
23
+ }
24
+ ],
17
25
  url: '/admin/ai-status/',
18
26
  ...options
19
27
  });
@@ -23,7 +31,15 @@ export const getAiStatusAdminAiStatusGet = (options) => (options?.client ?? clie
23
31
  * Toggle base AI features on/off at runtime; no provider-routing policy controls (admin only).
24
32
  */
25
33
  export const updateAiStatusAdminAiStatusPatch = (options) => (options.client ?? client).patch({
26
- security: [{ scheme: 'bearer', type: 'http' }],
34
+ security: [
35
+ { scheme: 'bearer', type: 'http' },
36
+ { name: 'X-Api-Key', type: 'apiKey' },
37
+ {
38
+ in: 'query',
39
+ name: 'api_key',
40
+ type: 'apiKey'
41
+ }
42
+ ],
27
43
  url: '/admin/ai-status/',
28
44
  ...options,
29
45
  headers: {
@@ -37,7 +53,15 @@ export const updateAiStatusAdminAiStatusPatch = (options) => (options.client ??
37
53
  * List all API keys (admin only). Never returns the raw key.
38
54
  */
39
55
  export const listApiKeysAdminApiKeysGet = (options) => (options?.client ?? client).get({
40
- security: [{ scheme: 'bearer', type: 'http' }],
56
+ security: [
57
+ { scheme: 'bearer', type: 'http' },
58
+ { name: 'X-Api-Key', type: 'apiKey' },
59
+ {
60
+ in: 'query',
61
+ name: 'api_key',
62
+ type: 'apiKey'
63
+ }
64
+ ],
41
65
  url: '/admin/api-keys/',
42
66
  ...options
43
67
  });
@@ -49,7 +73,15 @@ export const listApiKeysAdminApiKeysGet = (options) => (options?.client ?? clien
49
73
  * The raw key is returned only in this response and cannot be retrieved again.
50
74
  */
51
75
  export const createApiKeyAdminApiKeysPost = (options) => (options.client ?? client).post({
52
- security: [{ scheme: 'bearer', type: 'http' }],
76
+ security: [
77
+ { scheme: 'bearer', type: 'http' },
78
+ { name: 'X-Api-Key', type: 'apiKey' },
79
+ {
80
+ in: 'query',
81
+ name: 'api_key',
82
+ type: 'apiKey'
83
+ }
84
+ ],
53
85
  url: '/admin/api-keys/',
54
86
  ...options,
55
87
  headers: {
@@ -63,7 +95,15 @@ export const createApiKeyAdminApiKeysPost = (options) => (options.client ?? clie
63
95
  * Revoke (soft-delete) an API key (admin only).
64
96
  */
65
97
  export const revokeApiKeyAdminApiKeysKeyIdDelete = (options) => (options.client ?? client).delete({
66
- security: [{ scheme: 'bearer', type: 'http' }],
98
+ security: [
99
+ { scheme: 'bearer', type: 'http' },
100
+ { name: 'X-Api-Key', type: 'apiKey' },
101
+ {
102
+ in: 'query',
103
+ name: 'api_key',
104
+ type: 'apiKey'
105
+ }
106
+ ],
67
107
  url: '/admin/api-keys/{key_id}',
68
108
  ...options
69
109
  });
@@ -73,10 +113,36 @@ export const revokeApiKeyAdminApiKeysKeyIdDelete = (options) => (options.client
73
113
  * Query audit logs with optional filters (admin only).
74
114
  */
75
115
  export const listAuditLogsAdminAuditLogsGet = (options) => (options?.client ?? client).get({
76
- security: [{ scheme: 'bearer', type: 'http' }],
116
+ security: [
117
+ { scheme: 'bearer', type: 'http' },
118
+ { name: 'X-Api-Key', type: 'apiKey' },
119
+ {
120
+ in: 'query',
121
+ name: 'api_key',
122
+ type: 'apiKey'
123
+ }
124
+ ],
77
125
  url: '/admin/audit-logs/',
78
126
  ...options
79
127
  });
128
+ /**
129
+ * Export Audit Logs
130
+ *
131
+ * Export up to 100,000 audit log rows as CSV or JSON.
132
+ */
133
+ export const exportAuditLogsAdminAuditLogsExportFormatGet = (options) => (options.client ?? client).get({
134
+ security: [
135
+ { scheme: 'bearer', type: 'http' },
136
+ { name: 'X-Api-Key', type: 'apiKey' },
137
+ {
138
+ in: 'query',
139
+ name: 'api_key',
140
+ type: 'apiKey'
141
+ }
142
+ ],
143
+ url: '/admin/audit-logs/export/{format}',
144
+ ...options
145
+ });
80
146
  /**
81
147
  * Trigger Backfill
82
148
  *
@@ -86,7 +152,15 @@ export const listAuditLogsAdminAuditLogsGet = (options) => (options?.client ?? c
86
152
  * scratch (required after changing the embedding model or dimensions).
87
153
  */
88
154
  export const triggerBackfillAdminBackfillEmbeddingsPost = (options) => (options?.client ?? client).post({
89
- security: [{ scheme: 'bearer', type: 'http' }],
155
+ security: [
156
+ { scheme: 'bearer', type: 'http' },
157
+ { name: 'X-Api-Key', type: 'apiKey' },
158
+ {
159
+ in: 'query',
160
+ name: 'api_key',
161
+ type: 'apiKey'
162
+ }
163
+ ],
90
164
  url: '/admin/backfill-embeddings/',
91
165
  ...options
92
166
  });
@@ -96,7 +170,15 @@ export const triggerBackfillAdminBackfillEmbeddingsPost = (options) => (options?
96
170
  * List basic embed-token inventory across maps; no quota or domain-policy controls (admin only).
97
171
  */
98
172
  export const listAllEmbedTokensAdminEmbedTokensGet = (options) => (options?.client ?? client).get({
99
- security: [{ scheme: 'bearer', type: 'http' }],
173
+ security: [
174
+ { scheme: 'bearer', type: 'http' },
175
+ { name: 'X-Api-Key', type: 'apiKey' },
176
+ {
177
+ in: 'query',
178
+ name: 'api_key',
179
+ type: 'apiKey'
180
+ }
181
+ ],
100
182
  url: '/admin/embed-tokens/',
101
183
  ...options
102
184
  });
@@ -106,7 +188,15 @@ export const listAllEmbedTokensAdminEmbedTokensGet = (options) => (options?.clie
106
188
  * Bulk-revoke basic embed tokens; no quota or domain-policy controls (admin only).
107
189
  */
108
190
  export const bulkRevokeAdminEmbedTokensBulkRevokePost = (options) => (options.client ?? client).post({
109
- security: [{ scheme: 'bearer', type: 'http' }],
191
+ security: [
192
+ { scheme: 'bearer', type: 'http' },
193
+ { name: 'X-Api-Key', type: 'apiKey' },
194
+ {
195
+ in: 'query',
196
+ name: 'api_key',
197
+ type: 'apiKey'
198
+ }
199
+ ],
110
200
  url: '/admin/embed-tokens/bulk-revoke/',
111
201
  ...options,
112
202
  headers: {
@@ -120,7 +210,15 @@ export const bulkRevokeAdminEmbedTokensBulkRevokePost = (options) => (options.cl
120
210
  * Return semantic-search embedding coverage statistics (admin only).
121
211
  */
122
212
  export const getEmbeddingStatsAdminEmbeddingStatsGet = (options) => (options?.client ?? client).get({
123
- security: [{ scheme: 'bearer', type: 'http' }],
213
+ security: [
214
+ { scheme: 'bearer', type: 'http' },
215
+ { name: 'X-Api-Key', type: 'apiKey' },
216
+ {
217
+ in: 'query',
218
+ name: 'api_key',
219
+ type: 'apiKey'
220
+ }
221
+ ],
124
222
  url: '/admin/embedding-stats/',
125
223
  ...options
126
224
  });
@@ -130,7 +228,15 @@ export const getEmbeddingStatsAdminEmbeddingStatsGet = (options) => (options?.cl
130
228
  * Return infrastructure configuration, live health status, and OIDC provider connectivity.
131
229
  */
132
230
  export const getInfrastructureAdminInfrastructureGet = (options) => (options?.client ?? client).get({
133
- security: [{ scheme: 'bearer', type: 'http' }],
231
+ security: [
232
+ { scheme: 'bearer', type: 'http' },
233
+ { name: 'X-Api-Key', type: 'apiKey' },
234
+ {
235
+ in: 'query',
236
+ name: 'api_key',
237
+ type: 'apiKey'
238
+ }
239
+ ],
134
240
  url: '/admin/infrastructure/',
135
241
  ...options
136
242
  });
@@ -140,7 +246,15 @@ export const getInfrastructureAdminInfrastructureGet = (options) => (options?.cl
140
246
  * List all ingestion jobs with optional status/user/search filters (admin only).
141
247
  */
142
248
  export const listAdminJobsAdminJobsGet = (options) => (options?.client ?? client).get({
143
- security: [{ scheme: 'bearer', type: 'http' }],
249
+ security: [
250
+ { scheme: 'bearer', type: 'http' },
251
+ { name: 'X-Api-Key', type: 'apiKey' },
252
+ {
253
+ in: 'query',
254
+ name: 'api_key',
255
+ type: 'apiKey'
256
+ }
257
+ ],
144
258
  url: '/admin/jobs/',
145
259
  ...options
146
260
  });
@@ -150,7 +264,15 @@ export const listAdminJobsAdminJobsGet = (options) => (options?.client ?? client
150
264
  * List basic share-token inventory with map info; no quotas or domain controls (admin only).
151
265
  */
152
266
  export const listShareTokensEndpointAdminShareTokensGet = (options) => (options?.client ?? client).get({
153
- security: [{ scheme: 'bearer', type: 'http' }],
267
+ security: [
268
+ { scheme: 'bearer', type: 'http' },
269
+ { name: 'X-Api-Key', type: 'apiKey' },
270
+ {
271
+ in: 'query',
272
+ name: 'api_key',
273
+ type: 'apiKey'
274
+ }
275
+ ],
154
276
  url: '/admin/share-tokens/',
155
277
  ...options
156
278
  });
@@ -160,7 +282,15 @@ export const listShareTokensEndpointAdminShareTokensGet = (options) => (options?
160
282
  * Revoke a basic share token and cascade to its embed tokens; no quota controls (admin only).
161
283
  */
162
284
  export const adminRevokeShareTokenAdminShareTokensTokenIdDelete = (options) => (options.client ?? client).delete({
163
- security: [{ scheme: 'bearer', type: 'http' }],
285
+ security: [
286
+ { scheme: 'bearer', type: 'http' },
287
+ { name: 'X-Api-Key', type: 'apiKey' },
288
+ {
289
+ in: 'query',
290
+ name: 'api_key',
291
+ type: 'apiKey'
292
+ }
293
+ ],
164
294
  url: '/admin/share-tokens/{token_id}',
165
295
  ...options
166
296
  });
@@ -170,7 +300,15 @@ export const adminRevokeShareTokenAdminShareTokensTokenIdDelete = (options) => (
170
300
  * Return catalog statistics: counts, storage, breakdowns (admin only).
171
301
  */
172
302
  export const getCatalogStatsAdminStatsGet = (options) => (options?.client ?? client).get({
173
- security: [{ scheme: 'bearer', type: 'http' }],
303
+ security: [
304
+ { scheme: 'bearer', type: 'http' },
305
+ { name: 'X-Api-Key', type: 'apiKey' },
306
+ {
307
+ in: 'query',
308
+ name: 'api_key',
309
+ type: 'apiKey'
310
+ }
311
+ ],
174
312
  url: '/admin/stats/',
175
313
  ...options
176
314
  });
@@ -180,7 +318,15 @@ export const getCatalogStatsAdminStatsGet = (options) => (options?.client ?? cli
180
318
  * List all users with pagination and optional status/search filter (admin only).
181
319
  */
182
320
  export const listUsersAdminUsersGet = (options) => (options?.client ?? client).get({
183
- security: [{ scheme: 'bearer', type: 'http' }],
321
+ security: [
322
+ { scheme: 'bearer', type: 'http' },
323
+ { name: 'X-Api-Key', type: 'apiKey' },
324
+ {
325
+ in: 'query',
326
+ name: 'api_key',
327
+ type: 'apiKey'
328
+ }
329
+ ],
184
330
  url: '/admin/users/',
185
331
  ...options
186
332
  });
@@ -190,7 +336,15 @@ export const listUsersAdminUsersGet = (options) => (options?.client ?? client).g
190
336
  * Create a new user with the specified role (admin only).
191
337
  */
192
338
  export const createUserAdminUsersPost = (options) => (options.client ?? client).post({
193
- security: [{ scheme: 'bearer', type: 'http' }],
339
+ security: [
340
+ { scheme: 'bearer', type: 'http' },
341
+ { name: 'X-Api-Key', type: 'apiKey' },
342
+ {
343
+ in: 'query',
344
+ name: 'api_key',
345
+ type: 'apiKey'
346
+ }
347
+ ],
194
348
  url: '/admin/users/',
195
349
  ...options,
196
350
  headers: {
@@ -208,7 +362,15 @@ export const createUserAdminUsersPost = (options) => (options.client ?? client).
208
362
  * Cells starting with =, +, -, or @ are tab-prefixed (CSV injection hardening).
209
363
  */
210
364
  export const exportUsersCsvAdminUsersExportCsvGet = (options) => (options?.client ?? client).get({
211
- security: [{ scheme: 'bearer', type: 'http' }],
365
+ security: [
366
+ { scheme: 'bearer', type: 'http' },
367
+ { name: 'X-Api-Key', type: 'apiKey' },
368
+ {
369
+ in: 'query',
370
+ name: 'api_key',
371
+ type: 'apiKey'
372
+ }
373
+ ],
212
374
  url: '/admin/users/export.csv',
213
375
  ...options
214
376
  });
@@ -223,7 +385,15 @@ export const exportUsersCsvAdminUsersExportCsvGet = (options) => (options?.clien
223
385
  * page by incrementing ``skip``.
224
386
  */
225
387
  export const listUserNamesAdminUsersNamesGet = (options) => (options?.client ?? client).get({
226
- security: [{ scheme: 'bearer', type: 'http' }],
388
+ security: [
389
+ { scheme: 'bearer', type: 'http' },
390
+ { name: 'X-Api-Key', type: 'apiKey' },
391
+ {
392
+ in: 'query',
393
+ name: 'api_key',
394
+ type: 'apiKey'
395
+ }
396
+ ],
227
397
  url: '/admin/users/names/',
228
398
  ...options
229
399
  });
@@ -233,7 +403,15 @@ export const listUserNamesAdminUsersNamesGet = (options) => (options?.client ??
233
403
  * Hard-delete a user (admin only). Returns 400 for self-deletion or last-admin.
234
404
  */
235
405
  export const deleteUserAdminUsersUserIdDelete = (options) => (options.client ?? client).delete({
236
- security: [{ scheme: 'bearer', type: 'http' }],
406
+ security: [
407
+ { scheme: 'bearer', type: 'http' },
408
+ { name: 'X-Api-Key', type: 'apiKey' },
409
+ {
410
+ in: 'query',
411
+ name: 'api_key',
412
+ type: 'apiKey'
413
+ }
414
+ ],
237
415
  url: '/admin/users/{user_id}',
238
416
  ...options
239
417
  });
@@ -243,7 +421,15 @@ export const deleteUserAdminUsersUserIdDelete = (options) => (options.client ??
243
421
  * Get a specific user by ID (admin only).
244
422
  */
245
423
  export const getUserAdminUsersUserIdGet = (options) => (options.client ?? client).get({
246
- security: [{ scheme: 'bearer', type: 'http' }],
424
+ security: [
425
+ { scheme: 'bearer', type: 'http' },
426
+ { name: 'X-Api-Key', type: 'apiKey' },
427
+ {
428
+ in: 'query',
429
+ name: 'api_key',
430
+ type: 'apiKey'
431
+ }
432
+ ],
247
433
  url: '/admin/users/{user_id}',
248
434
  ...options
249
435
  });
@@ -253,7 +439,15 @@ export const getUserAdminUsersUserIdGet = (options) => (options.client ?? client
253
439
  * Update a user's fields and/or role (admin only).
254
440
  */
255
441
  export const updateUserAdminUsersUserIdPatch = (options) => (options.client ?? client).patch({
256
- security: [{ scheme: 'bearer', type: 'http' }],
442
+ security: [
443
+ { scheme: 'bearer', type: 'http' },
444
+ { name: 'X-Api-Key', type: 'apiKey' },
445
+ {
446
+ in: 'query',
447
+ name: 'api_key',
448
+ type: 'apiKey'
449
+ }
450
+ ],
257
451
  url: '/admin/users/{user_id}',
258
452
  ...options,
259
453
  headers: {
@@ -267,7 +461,15 @@ export const updateUserAdminUsersUserIdPatch = (options) => (options.client ?? c
267
461
  * Approve a pending user with the specified role (admin only).
268
462
  */
269
463
  export const approveUserAdminUsersUserIdApprovePost = (options) => (options.client ?? client).post({
270
- security: [{ scheme: 'bearer', type: 'http' }],
464
+ security: [
465
+ { scheme: 'bearer', type: 'http' },
466
+ { name: 'X-Api-Key', type: 'apiKey' },
467
+ {
468
+ in: 'query',
469
+ name: 'api_key',
470
+ type: 'apiKey'
471
+ }
472
+ ],
271
473
  url: '/admin/users/{user_id}/approve/',
272
474
  ...options,
273
475
  headers: {
@@ -281,7 +483,15 @@ export const approveUserAdminUsersUserIdApprovePost = (options) => (options.clie
281
483
  * Deactivate a user (admin only).
282
484
  */
283
485
  export const deactivateUserAdminUsersUserIdDeactivatePost = (options) => (options.client ?? client).post({
284
- security: [{ scheme: 'bearer', type: 'http' }],
486
+ security: [
487
+ { scheme: 'bearer', type: 'http' },
488
+ { name: 'X-Api-Key', type: 'apiKey' },
489
+ {
490
+ in: 'query',
491
+ name: 'api_key',
492
+ type: 'apiKey'
493
+ }
494
+ ],
285
495
  url: '/admin/users/{user_id}/deactivate/',
286
496
  ...options
287
497
  });
@@ -291,7 +501,15 @@ export const deactivateUserAdminUsersUserIdDeactivatePost = (options) => (option
291
501
  * Reject a pending user by hard-deleting them (admin only).
292
502
  */
293
503
  export const rejectUserAdminUsersUserIdRejectPost = (options) => (options.client ?? client).post({
294
- security: [{ scheme: 'bearer', type: 'http' }],
504
+ security: [
505
+ { scheme: 'bearer', type: 'http' },
506
+ { name: 'X-Api-Key', type: 'apiKey' },
507
+ {
508
+ in: 'query',
509
+ name: 'api_key',
510
+ type: 'apiKey'
511
+ }
512
+ ],
295
513
  url: '/admin/users/{user_id}/reject/',
296
514
  ...options
297
515
  });
@@ -307,7 +525,15 @@ export const rejectUserAdminUsersUserIdRejectPost = (options) => (options.client
307
525
  * gets 403.
308
526
  */
309
527
  export const aiAvailabilityEndpointAiAvailabilityGet = (options) => (options?.client ?? client).get({
310
- security: [{ scheme: 'bearer', type: 'http' }],
528
+ security: [
529
+ { scheme: 'bearer', type: 'http' },
530
+ { name: 'X-Api-Key', type: 'apiKey' },
531
+ {
532
+ in: 'query',
533
+ name: 'api_key',
534
+ type: 'apiKey'
535
+ }
536
+ ],
311
537
  url: '/ai/availability/',
312
538
  ...options
313
539
  });
@@ -317,7 +543,15 @@ export const aiAvailabilityEndpointAiAvailabilityGet = (options) => (options?.cl
317
543
  * Chat-based map editing: send a message and get back edit actions.
318
544
  */
319
545
  export const chatEndpointAiChatPost = (options) => (options.client ?? client).post({
320
- security: [{ scheme: 'bearer', type: 'http' }],
546
+ security: [
547
+ { scheme: 'bearer', type: 'http' },
548
+ { name: 'X-Api-Key', type: 'apiKey' },
549
+ {
550
+ in: 'query',
551
+ name: 'api_key',
552
+ type: 'apiKey'
553
+ }
554
+ ],
321
555
  url: '/ai/chat/',
322
556
  ...options,
323
557
  headers: {
@@ -325,13 +559,49 @@ export const chatEndpointAiChatPost = (options) => (options.client ?? client).po
325
559
  ...options.headers
326
560
  }
327
561
  });
562
+ /**
563
+ * Dataset Chat Stream Endpoint
564
+ *
565
+ * Dataset-scoped AI chat: ask questions about a single dataset's data.
566
+ *
567
+ * Read-only by construction — ``can_edit=False`` selects the query_data-only
568
+ * tool set, and a dataset-framed system prompt replaces the map-editing one.
569
+ * Reuses the whole map-chat streaming pipeline (SQL generation, sandbox
570
+ * validation, RBAC table allowlist, token budgeting) with one synthetic
571
+ * server-built layer.
572
+ */
573
+ export const datasetChatStreamEndpointAiChatDatasetStreamPost = (options) => (options.client ?? client).sse.post({
574
+ security: [
575
+ { scheme: 'bearer', type: 'http' },
576
+ { name: 'X-Api-Key', type: 'apiKey' },
577
+ {
578
+ in: 'query',
579
+ name: 'api_key',
580
+ type: 'apiKey'
581
+ }
582
+ ],
583
+ url: '/ai/chat/dataset/stream/',
584
+ ...options,
585
+ headers: {
586
+ 'Content-Type': 'application/json',
587
+ ...options.headers
588
+ }
589
+ });
328
590
  /**
329
591
  * Chat Stream Endpoint
330
592
  *
331
593
  * Chat-based map editing with server-sent event streaming.
332
594
  */
333
- export const chatStreamEndpointAiChatStreamPost = (options) => (options.client ?? client).post({
334
- security: [{ scheme: 'bearer', type: 'http' }],
595
+ export const chatStreamEndpointAiChatStreamPost = (options) => (options.client ?? client).sse.post({
596
+ security: [
597
+ { scheme: 'bearer', type: 'http' },
598
+ { name: 'X-Api-Key', type: 'apiKey' },
599
+ {
600
+ in: 'query',
601
+ name: 'api_key',
602
+ type: 'apiKey'
603
+ }
604
+ ],
335
605
  url: '/ai/chat/stream/',
336
606
  ...options,
337
607
  headers: {
@@ -345,7 +615,15 @@ export const chatStreamEndpointAiChatStreamPost = (options) => (options.client ?
345
615
  * Generate a map from a natural language prompt using an LLM.
346
616
  */
347
617
  export const generateMapEndpointAiGenerateMapPost = (options) => (options.client ?? client).post({
348
- security: [{ scheme: 'bearer', type: 'http' }],
618
+ security: [
619
+ { scheme: 'bearer', type: 'http' },
620
+ { name: 'X-Api-Key', type: 'apiKey' },
621
+ {
622
+ in: 'query',
623
+ name: 'api_key',
624
+ type: 'apiKey'
625
+ }
626
+ ],
349
627
  url: '/ai/generate-map/',
350
628
  ...options,
351
629
  headers: {
@@ -358,8 +636,16 @@ export const generateMapEndpointAiGenerateMapPost = (options) => (options.client
358
636
  *
359
637
  * Generate a map from a natural language prompt with streaming progress events.
360
638
  */
361
- export const generateMapStreamEndpointAiGenerateMapStreamPost = (options) => (options.client ?? client).post({
362
- security: [{ scheme: 'bearer', type: 'http' }],
639
+ export const generateMapStreamEndpointAiGenerateMapStreamPost = (options) => (options.client ?? client).sse.post({
640
+ security: [
641
+ { scheme: 'bearer', type: 'http' },
642
+ { name: 'X-Api-Key', type: 'apiKey' },
643
+ {
644
+ in: 'query',
645
+ name: 'api_key',
646
+ type: 'apiKey'
647
+ }
648
+ ],
363
649
  url: '/ai/generate-map/stream/',
364
650
  ...options,
365
651
  headers: {
@@ -373,7 +659,15 @@ export const generateMapStreamEndpointAiGenerateMapStreamPost = (options) => (op
373
659
  * Generate AI-suggested keywords for a dataset.
374
660
  */
375
661
  export const generateMetadataKeywordsAiMetadataKeywordsPost = (options) => (options.client ?? client).post({
376
- security: [{ scheme: 'bearer', type: 'http' }],
662
+ security: [
663
+ { scheme: 'bearer', type: 'http' },
664
+ { name: 'X-Api-Key', type: 'apiKey' },
665
+ {
666
+ in: 'query',
667
+ name: 'api_key',
668
+ type: 'apiKey'
669
+ }
670
+ ],
377
671
  url: '/ai/metadata/keywords/',
378
672
  ...options,
379
673
  headers: {
@@ -387,7 +681,15 @@ export const generateMetadataKeywordsAiMetadataKeywordsPost = (options) => (opti
387
681
  * Generate an AI-drafted lineage summary for a dataset.
388
682
  */
389
683
  export const generateMetadataLineageAiMetadataLineagePost = (options) => (options.client ?? client).post({
390
- security: [{ scheme: 'bearer', type: 'http' }],
684
+ security: [
685
+ { scheme: 'bearer', type: 'http' },
686
+ { name: 'X-Api-Key', type: 'apiKey' },
687
+ {
688
+ in: 'query',
689
+ name: 'api_key',
690
+ type: 'apiKey'
691
+ }
692
+ ],
391
693
  url: '/ai/metadata/lineage/',
392
694
  ...options,
393
695
  headers: {
@@ -401,7 +703,15 @@ export const generateMetadataLineageAiMetadataLineagePost = (options) => (option
401
703
  * Generate an AI-drafted quality statement for a dataset.
402
704
  */
403
705
  export const generateMetadataQualityStatementAiMetadataQualityStatementPost = (options) => (options.client ?? client).post({
404
- security: [{ scheme: 'bearer', type: 'http' }],
706
+ security: [
707
+ { scheme: 'bearer', type: 'http' },
708
+ { name: 'X-Api-Key', type: 'apiKey' },
709
+ {
710
+ in: 'query',
711
+ name: 'api_key',
712
+ type: 'apiKey'
713
+ }
714
+ ],
405
715
  url: '/ai/metadata/quality-statement/',
406
716
  ...options,
407
717
  headers: {
@@ -415,7 +725,15 @@ export const generateMetadataQualityStatementAiMetadataQualityStatementPost = (o
415
725
  * Generate an AI-drafted summary for a dataset.
416
726
  */
417
727
  export const generateMetadataSummaryAiMetadataSummaryPost = (options) => (options.client ?? client).post({
418
- security: [{ scheme: 'bearer', type: 'http' }],
728
+ security: [
729
+ { scheme: 'bearer', type: 'http' },
730
+ { name: 'X-Api-Key', type: 'apiKey' },
731
+ {
732
+ in: 'query',
733
+ name: 'api_key',
734
+ type: 'apiKey'
735
+ }
736
+ ],
419
737
  url: '/ai/metadata/summary/',
420
738
  ...options,
421
739
  headers: {
@@ -432,17 +750,28 @@ export const generateMetadataSummaryAiMetadataSummaryPost = (options) => (option
432
750
  * to dataset owners so they can detect editor-initiated schema changes.
433
751
  *
434
752
  * Access control (AGENTS.md Pre-Commit Checklist Rule 1):
435
- * - Owner + granted roles: 200 with their own dataset's DDL history
436
- * - Non-owner editor (no grant): 404 (check_dataset_access raises 404 for
437
- * private datasets)
753
+ * - Owner: 200 with their own dataset's DDL history
438
754
  * - Admin: 200 (admin access is always allowed)
755
+ * - Anyone else — including authenticated readers of a PUBLIC dataset: 404
756
+ * via check_dataset_write_access. fix(#458 E-37): the feed previously used
757
+ * check_dataset_access (read visibility), which let any logged-in user
758
+ * enumerate editor usernames/user_ids on public datasets, contradicting
759
+ * this owner-facing contract.
439
760
  * - Anonymous: 401 (get_current_active_user dependency)
440
761
  *
441
762
  * The dataset 404-before-auth-query ordering ensures non-existent datasets
442
763
  * return 404 without leaking audit log details.
443
764
  */
444
765
  export const getColumnDdlFeedAuditDatasetsDatasetIdColumnDdlGet = (options) => (options.client ?? client).get({
445
- security: [{ scheme: 'bearer', type: 'http' }],
766
+ security: [
767
+ { scheme: 'bearer', type: 'http' },
768
+ { name: 'X-Api-Key', type: 'apiKey' },
769
+ {
770
+ in: 'query',
771
+ name: 'api_key',
772
+ type: 'apiKey'
773
+ }
774
+ ],
446
775
  url: '/audit/datasets/{dataset_id}/column-ddl',
447
776
  ...options
448
777
  });
@@ -452,7 +781,15 @@ export const getColumnDdlFeedAuditDatasetsDatasetIdColumnDdlGet = (options) => (
452
781
  * List the current user's API keys.
453
782
  */
454
783
  export const listMyApiKeysAuthApiKeysGet = (options) => (options?.client ?? client).get({
455
- security: [{ scheme: 'bearer', type: 'http' }],
784
+ security: [
785
+ { scheme: 'bearer', type: 'http' },
786
+ { name: 'X-Api-Key', type: 'apiKey' },
787
+ {
788
+ in: 'query',
789
+ name: 'api_key',
790
+ type: 'apiKey'
791
+ }
792
+ ],
456
793
  url: '/auth/api-keys/',
457
794
  ...options
458
795
  });
@@ -464,7 +801,15 @@ export const listMyApiKeysAuthApiKeysGet = (options) => (options?.client ?? clie
464
801
  * The raw key is returned only in this response and cannot be retrieved again.
465
802
  */
466
803
  export const createMyApiKeyAuthApiKeysPost = (options) => (options.client ?? client).post({
467
- security: [{ scheme: 'bearer', type: 'http' }],
804
+ security: [
805
+ { scheme: 'bearer', type: 'http' },
806
+ { name: 'X-Api-Key', type: 'apiKey' },
807
+ {
808
+ in: 'query',
809
+ name: 'api_key',
810
+ type: 'apiKey'
811
+ }
812
+ ],
468
813
  url: '/auth/api-keys/',
469
814
  ...options,
470
815
  headers: {
@@ -478,7 +823,15 @@ export const createMyApiKeyAuthApiKeysPost = (options) => (options.client ?? cli
478
823
  * Revoke (soft-delete) one of the current user's API keys.
479
824
  */
480
825
  export const revokeMyApiKeyAuthApiKeysKeyIdDelete = (options) => (options.client ?? client).delete({
481
- security: [{ scheme: 'bearer', type: 'http' }],
826
+ security: [
827
+ { scheme: 'bearer', type: 'http' },
828
+ { name: 'X-Api-Key', type: 'apiKey' },
829
+ {
830
+ in: 'query',
831
+ name: 'api_key',
832
+ type: 'apiKey'
833
+ }
834
+ ],
482
835
  url: '/auth/api-keys/{key_id}',
483
836
  ...options
484
837
  });
@@ -488,7 +841,15 @@ export const revokeMyApiKeyAuthApiKeysKeyIdDelete = (options) => (options.client
488
841
  * Change the current user's password (requires current password).
489
842
  */
490
843
  export const changePasswordAuthChangePasswordPost = (options) => (options.client ?? client).post({
491
- security: [{ scheme: 'bearer', type: 'http' }],
844
+ security: [
845
+ { scheme: 'bearer', type: 'http' },
846
+ { name: 'X-Api-Key', type: 'apiKey' },
847
+ {
848
+ in: 'query',
849
+ name: 'api_key',
850
+ type: 'apiKey'
851
+ }
852
+ ],
492
853
  url: '/auth/change-password/',
493
854
  ...options,
494
855
  headers: {
@@ -516,7 +877,15 @@ export const configAuthConfigGet = (options) => (options?.client ?? client).get(
516
877
  * ``typ='download'``, ``scope='dataset:{dataset_id}'``, and a TTL of 120s.
517
878
  */
518
879
  export const createDownloadTokenEndpointAuthDownloadTokenDatasetIdPost = (options) => (options.client ?? client).post({
519
- security: [{ scheme: 'bearer', type: 'http' }],
880
+ security: [
881
+ { scheme: 'bearer', type: 'http' },
882
+ { name: 'X-Api-Key', type: 'apiKey' },
883
+ {
884
+ in: 'query',
885
+ name: 'api_key',
886
+ type: 'apiKey'
887
+ }
888
+ ],
520
889
  url: '/auth/download-token/{dataset_id}',
521
890
  ...options
522
891
  });
@@ -545,7 +914,15 @@ export const loginAuthLoginPost = (options) => (options.client ?? client).post({
545
914
  * "logout doesn't invalidate the access JWT" gap.
546
915
  */
547
916
  export const logoutAuthLogoutPost = (options) => (options?.client ?? client).post({
548
- security: [{ scheme: 'bearer', type: 'http' }],
917
+ security: [
918
+ { scheme: 'bearer', type: 'http' },
919
+ { name: 'X-Api-Key', type: 'apiKey' },
920
+ {
921
+ in: 'query',
922
+ name: 'api_key',
923
+ type: 'apiKey'
924
+ }
925
+ ],
549
926
  url: '/auth/logout/',
550
927
  ...options
551
928
  });
@@ -555,7 +932,15 @@ export const logoutAuthLogoutPost = (options) => (options?.client ?? client).pos
555
932
  * Return the currently authenticated user's profile and roles.
556
933
  */
557
934
  export const meAuthMeGet = (options) => (options?.client ?? client).get({
558
- security: [{ scheme: 'bearer', type: 'http' }],
935
+ security: [
936
+ { scheme: 'bearer', type: 'http' },
937
+ { name: 'X-Api-Key', type: 'apiKey' },
938
+ {
939
+ in: 'query',
940
+ name: 'api_key',
941
+ type: 'apiKey'
942
+ }
943
+ ],
559
944
  url: '/auth/me/',
560
945
  ...options
561
946
  });
@@ -565,7 +950,15 @@ export const meAuthMeGet = (options) => (options?.client ?? client).get({
565
950
  * Return the effective permissions for the currently authenticated user.
566
951
  */
567
952
  export const mePermissionsAuthMePermissionsGet = (options) => (options?.client ?? client).get({
568
- security: [{ scheme: 'bearer', type: 'http' }],
953
+ security: [
954
+ { scheme: 'bearer', type: 'http' },
955
+ { name: 'X-Api-Key', type: 'apiKey' },
956
+ {
957
+ in: 'query',
958
+ name: 'api_key',
959
+ type: 'apiKey'
960
+ }
961
+ ],
569
962
  url: '/auth/me/permissions/',
570
963
  ...options
571
964
  });
@@ -575,7 +968,15 @@ export const mePermissionsAuthMePermissionsGet = (options) => (options?.client ?
575
968
  * Return the authenticated user's own storage and dataset quota usage.
576
969
  */
577
970
  export const meUsageAuthMeUsageGet = (options) => (options?.client ?? client).get({
578
- security: [{ scheme: 'bearer', type: 'http' }],
971
+ security: [
972
+ { scheme: 'bearer', type: 'http' },
973
+ { name: 'X-Api-Key', type: 'apiKey' },
974
+ {
975
+ in: 'query',
976
+ name: 'api_key',
977
+ type: 'apiKey'
978
+ }
979
+ ],
579
980
  url: '/auth/me/usage/',
580
981
  ...options
581
982
  });
@@ -613,6 +1014,11 @@ export const oauthLoginAuthOauthProviderSlugLoginGet = (options) => (options.cli
613
1014
  * Refresh
614
1015
  *
615
1016
  * Exchange a valid refresh token for a new access + refresh token pair.
1017
+ *
1018
+ * Multi-tenant clients must call this endpoint on their tenant host. Refresh
1019
+ * tokens are opaque and carry no bearer ``tid`` claim, so tenant middleware
1020
+ * binds the database transaction from that same-origin host before the user
1021
+ * row is resolved and the next tenant-bound access token is minted.
616
1022
  */
617
1023
  export const refreshAuthRefreshPost = (options) => (options.client ?? client).post({
618
1024
  url: '/auth/refresh/',
@@ -678,7 +1084,15 @@ export const verifyEmailAuthVerifyEmailPost = (options) => (options.client ?? cl
678
1084
  * List all collections with dataset_count and extent computed per-user.
679
1085
  */
680
1086
  export const listCollectionsEndpointCatalogCollectionsGet = (options) => (options?.client ?? client).get({
681
- security: [{ scheme: 'bearer', type: 'http' }],
1087
+ security: [
1088
+ { scheme: 'bearer', type: 'http' },
1089
+ { name: 'X-Api-Key', type: 'apiKey' },
1090
+ {
1091
+ in: 'query',
1092
+ name: 'api_key',
1093
+ type: 'apiKey'
1094
+ }
1095
+ ],
682
1096
  url: '/catalog/collections/',
683
1097
  ...options
684
1098
  });
@@ -688,7 +1102,15 @@ export const listCollectionsEndpointCatalogCollectionsGet = (options) => (option
688
1102
  * Create a new collection.
689
1103
  */
690
1104
  export const createCollectionEndpointCatalogCollectionsPost = (options) => (options.client ?? client).post({
691
- security: [{ scheme: 'bearer', type: 'http' }],
1105
+ security: [
1106
+ { scheme: 'bearer', type: 'http' },
1107
+ { name: 'X-Api-Key', type: 'apiKey' },
1108
+ {
1109
+ in: 'query',
1110
+ name: 'api_key',
1111
+ type: 'apiKey'
1112
+ }
1113
+ ],
692
1114
  url: '/catalog/collections/',
693
1115
  ...options,
694
1116
  headers: {
@@ -702,7 +1124,15 @@ export const createCollectionEndpointCatalogCollectionsPost = (options) => (opti
702
1124
  * Delete a collection. Owner or admin only.
703
1125
  */
704
1126
  export const deleteCollectionEndpointCatalogCollectionsCollectionIdDelete = (options) => (options.client ?? client).delete({
705
- security: [{ scheme: 'bearer', type: 'http' }],
1127
+ security: [
1128
+ { scheme: 'bearer', type: 'http' },
1129
+ { name: 'X-Api-Key', type: 'apiKey' },
1130
+ {
1131
+ in: 'query',
1132
+ name: 'api_key',
1133
+ type: 'apiKey'
1134
+ }
1135
+ ],
706
1136
  url: '/catalog/collections/{collection_id}',
707
1137
  ...options
708
1138
  });
@@ -712,7 +1142,15 @@ export const deleteCollectionEndpointCatalogCollectionsCollectionIdDelete = (opt
712
1142
  * Get a single collection with dataset_count and extent.
713
1143
  */
714
1144
  export const getCollectionEndpointCatalogCollectionsCollectionIdGet = (options) => (options.client ?? client).get({
715
- security: [{ scheme: 'bearer', type: 'http' }],
1145
+ security: [
1146
+ { scheme: 'bearer', type: 'http' },
1147
+ { name: 'X-Api-Key', type: 'apiKey' },
1148
+ {
1149
+ in: 'query',
1150
+ name: 'api_key',
1151
+ type: 'apiKey'
1152
+ }
1153
+ ],
716
1154
  url: '/catalog/collections/{collection_id}',
717
1155
  ...options
718
1156
  });
@@ -722,7 +1160,15 @@ export const getCollectionEndpointCatalogCollectionsCollectionIdGet = (options)
722
1160
  * Update a collection's name and/or description. Owner or admin only.
723
1161
  */
724
1162
  export const updateCollectionEndpointCatalogCollectionsCollectionIdPatch = (options) => (options.client ?? client).patch({
725
- security: [{ scheme: 'bearer', type: 'http' }],
1163
+ security: [
1164
+ { scheme: 'bearer', type: 'http' },
1165
+ { name: 'X-Api-Key', type: 'apiKey' },
1166
+ {
1167
+ in: 'query',
1168
+ name: 'api_key',
1169
+ type: 'apiKey'
1170
+ }
1171
+ ],
726
1172
  url: '/catalog/collections/{collection_id}',
727
1173
  ...options,
728
1174
  headers: {
@@ -736,7 +1182,15 @@ export const updateCollectionEndpointCatalogCollectionsCollectionIdPatch = (opti
736
1182
  * Get datasets in a collection with RBAC filtering.
737
1183
  */
738
1184
  export const getCollectionDatasetsEndpointCatalogCollectionsCollectionIdDatasetsGet = (options) => (options.client ?? client).get({
739
- security: [{ scheme: 'bearer', type: 'http' }],
1185
+ security: [
1186
+ { scheme: 'bearer', type: 'http' },
1187
+ { name: 'X-Api-Key', type: 'apiKey' },
1188
+ {
1189
+ in: 'query',
1190
+ name: 'api_key',
1191
+ type: 'apiKey'
1192
+ }
1193
+ ],
740
1194
  url: '/catalog/collections/{collection_id}/datasets/',
741
1195
  ...options
742
1196
  });
@@ -746,7 +1200,15 @@ export const getCollectionDatasetsEndpointCatalogCollectionsCollectionIdDatasets
746
1200
  * Add datasets to a collection. Collection owner or admin only.
747
1201
  */
748
1202
  export const addDatasetsEndpointCatalogCollectionsCollectionIdDatasetsPost = (options) => (options.client ?? client).post({
749
- security: [{ scheme: 'bearer', type: 'http' }],
1203
+ security: [
1204
+ { scheme: 'bearer', type: 'http' },
1205
+ { name: 'X-Api-Key', type: 'apiKey' },
1206
+ {
1207
+ in: 'query',
1208
+ name: 'api_key',
1209
+ type: 'apiKey'
1210
+ }
1211
+ ],
750
1212
  url: '/catalog/collections/{collection_id}/datasets/',
751
1213
  ...options,
752
1214
  headers: {
@@ -760,7 +1222,15 @@ export const addDatasetsEndpointCatalogCollectionsCollectionIdDatasetsPost = (op
760
1222
  * Remove a dataset from a collection. Collection owner or admin only.
761
1223
  */
762
1224
  export const removeDatasetEndpointCatalogCollectionsCollectionIdDatasetsDatasetIdDelete = (options) => (options.client ?? client).delete({
763
- security: [{ scheme: 'bearer', type: 'http' }],
1225
+ security: [
1226
+ { scheme: 'bearer', type: 'http' },
1227
+ { name: 'X-Api-Key', type: 'apiKey' },
1228
+ {
1229
+ in: 'query',
1230
+ name: 'api_key',
1231
+ type: 'apiKey'
1232
+ }
1233
+ ],
764
1234
  url: '/catalog/collections/{collection_id}/datasets/{dataset_id}',
765
1235
  ...options
766
1236
  });
@@ -770,7 +1240,15 @@ export const removeDatasetEndpointCatalogCollectionsCollectionIdDatasetsDatasetI
770
1240
  * List available OGC collections (catalog + per-dataset feature collections).
771
1241
  */
772
1242
  export const listCollectionsCollectionsGet = (options) => (options?.client ?? client).get({
773
- security: [{ scheme: 'bearer', type: 'http' }],
1243
+ security: [
1244
+ { scheme: 'bearer', type: 'http' },
1245
+ { name: 'X-Api-Key', type: 'apiKey' },
1246
+ {
1247
+ in: 'query',
1248
+ name: 'api_key',
1249
+ type: 'apiKey'
1250
+ }
1251
+ ],
774
1252
  url: '/collections',
775
1253
  ...options
776
1254
  });
@@ -780,7 +1258,15 @@ export const listCollectionsCollectionsGet = (options) => (options?.client ?? cl
780
1258
  * Get metadata for the datasets collection.
781
1259
  */
782
1260
  export const getCollectionMetadataCollectionsDatasetsGet = (options) => (options?.client ?? client).get({
783
- security: [{ scheme: 'bearer', type: 'http' }],
1261
+ security: [
1262
+ { scheme: 'bearer', type: 'http' },
1263
+ { name: 'X-Api-Key', type: 'apiKey' },
1264
+ {
1265
+ in: 'query',
1266
+ name: 'api_key',
1267
+ type: 'apiKey'
1268
+ }
1269
+ ],
784
1270
  url: '/collections/datasets',
785
1271
  ...options
786
1272
  });
@@ -790,7 +1276,20 @@ export const getCollectionMetadataCollectionsDatasetsGet = (options) => (options
790
1276
  * OGC API Records items endpoint -- mirrors /search/datasets.
791
1277
  */
792
1278
  export const collectionItemsCollectionsDatasetsItemsGet = (options) => (options?.client ?? client).get({
793
- security: [{ scheme: 'bearer', type: 'http' }],
1279
+ querySerializer: { parameters: {
1280
+ type: { array: { explode: false } },
1281
+ ids: { array: { explode: false } },
1282
+ externalIds: { array: { explode: false } }
1283
+ } },
1284
+ security: [
1285
+ { scheme: 'bearer', type: 'http' },
1286
+ { name: 'X-Api-Key', type: 'apiKey' },
1287
+ {
1288
+ in: 'query',
1289
+ name: 'api_key',
1290
+ type: 'apiKey'
1291
+ }
1292
+ ],
794
1293
  url: '/collections/datasets/items',
795
1294
  ...options,
796
1295
  headers: {
@@ -804,7 +1303,15 @@ export const collectionItemsCollectionsDatasetsItemsGet = (options) => (options?
804
1303
  * Get a single dataset as an OGC Record Feature.
805
1304
  */
806
1305
  export const getCollectionItemCollectionsDatasetsItemsRecordIdGet = (options) => (options.client ?? client).get({
807
- security: [{ scheme: 'bearer', type: 'http' }],
1306
+ security: [
1307
+ { scheme: 'bearer', type: 'http' },
1308
+ { name: 'X-Api-Key', type: 'apiKey' },
1309
+ {
1310
+ in: 'query',
1311
+ name: 'api_key',
1312
+ type: 'apiKey'
1313
+ }
1314
+ ],
808
1315
  url: '/collections/datasets/items/{record_id}',
809
1316
  ...options
810
1317
  });
@@ -832,7 +1339,15 @@ export const getSortablesCollectionsDatasetsSortablesGet = (options) => (options
832
1339
  * Per-dataset OGC collection metadata with extent, CRS, and items link.
833
1340
  */
834
1341
  export const getDatasetCollectionCollectionsDatasetIdGet = (options) => (options.client ?? client).get({
835
- security: [{ scheme: 'bearer', type: 'http' }],
1342
+ security: [
1343
+ { scheme: 'bearer', type: 'http' },
1344
+ { name: 'X-Api-Key', type: 'apiKey' },
1345
+ {
1346
+ in: 'query',
1347
+ name: 'api_key',
1348
+ type: 'apiKey'
1349
+ }
1350
+ ],
836
1351
  url: '/collections/{dataset_id}',
837
1352
  ...options
838
1353
  });
@@ -848,7 +1363,15 @@ export const getDatasetCollectionCollectionsDatasetIdGet = (options) => (options
848
1363
  * parameter SHALL be ignored" applies (OGC 17-069r4 §7.15.5).
849
1364
  */
850
1365
  export const getCollectionItemsCollectionsDatasetIdItemsGet = (options) => (options.client ?? client).get({
851
- security: [{ scheme: 'bearer', type: 'http' }],
1366
+ security: [
1367
+ { scheme: 'bearer', type: 'http' },
1368
+ { name: 'X-Api-Key', type: 'apiKey' },
1369
+ {
1370
+ in: 'query',
1371
+ name: 'api_key',
1372
+ type: 'apiKey'
1373
+ }
1374
+ ],
852
1375
  url: '/collections/{dataset_id}/items',
853
1376
  ...options
854
1377
  });
@@ -858,7 +1381,15 @@ export const getCollectionItemsCollectionsDatasetIdItemsGet = (options) => (opti
858
1381
  * OGC API Features single feature endpoint -- returns a GeoJSON Feature.
859
1382
  */
860
1383
  export const getCollectionItemFeatureCollectionsDatasetIdItemsFeatureIdGet = (options) => (options.client ?? client).get({
861
- security: [{ scheme: 'bearer', type: 'http' }],
1384
+ security: [
1385
+ { scheme: 'bearer', type: 'http' },
1386
+ { name: 'X-Api-Key', type: 'apiKey' },
1387
+ {
1388
+ in: 'query',
1389
+ name: 'api_key',
1390
+ type: 'apiKey'
1391
+ }
1392
+ ],
862
1393
  url: '/collections/{dataset_id}/items/{feature_id}',
863
1394
  ...options
864
1395
  });
@@ -868,7 +1399,15 @@ export const getCollectionItemFeatureCollectionsDatasetIdItemsFeatureIdGet = (op
868
1399
  * Preview what an import would change without applying any modifications.
869
1400
  */
870
1401
  export const dryRunConfigurationConfigOpsDryRunPost = (options) => (options.client ?? client).post({
871
- security: [{ scheme: 'bearer', type: 'http' }],
1402
+ security: [
1403
+ { scheme: 'bearer', type: 'http' },
1404
+ { name: 'X-Api-Key', type: 'apiKey' },
1405
+ {
1406
+ in: 'query',
1407
+ name: 'api_key',
1408
+ type: 'apiKey'
1409
+ }
1410
+ ],
872
1411
  url: '/config-ops/dry-run/',
873
1412
  ...options,
874
1413
  headers: {
@@ -888,7 +1427,15 @@ export const dryRunConfigurationConfigOpsDryRunPost = (options) => (options.clie
888
1427
  * document a download endpoint in OpenAPI.
889
1428
  */
890
1429
  export const exportConfigurationConfigOpsExportGet = (options) => (options?.client ?? client).get({
891
- security: [{ scheme: 'bearer', type: 'http' }],
1430
+ security: [
1431
+ { scheme: 'bearer', type: 'http' },
1432
+ { name: 'X-Api-Key', type: 'apiKey' },
1433
+ {
1434
+ in: 'query',
1435
+ name: 'api_key',
1436
+ type: 'apiKey'
1437
+ }
1438
+ ],
892
1439
  url: '/config-ops/export/',
893
1440
  ...options
894
1441
  });
@@ -901,7 +1448,15 @@ export const exportConfigurationConfigOpsExportGet = (options) => (options?.clie
901
1448
  * Overwrite mode: replaces all settings and OAuth providers.
902
1449
  */
903
1450
  export const importConfigurationConfigOpsImportPost = (options) => (options.client ?? client).post({
904
- security: [{ scheme: 'bearer', type: 'http' }],
1451
+ security: [
1452
+ { scheme: 'bearer', type: 'http' },
1453
+ { name: 'X-Api-Key', type: 'apiKey' },
1454
+ {
1455
+ in: 'query',
1456
+ name: 'api_key',
1457
+ type: 'apiKey'
1458
+ }
1459
+ ],
905
1460
  url: '/config-ops/import/',
906
1461
  ...options,
907
1462
  headers: {
@@ -917,7 +1472,15 @@ export const importConfigurationConfigOpsImportPost = (options) => (options.clie
917
1472
  * Returns pass/fail with latency and error details for each service.
918
1473
  */
919
1474
  export const validateConfigurationConfigOpsValidatePost = (options) => (options?.client ?? client).post({
920
- security: [{ scheme: 'bearer', type: 'http' }],
1475
+ security: [
1476
+ { scheme: 'bearer', type: 'http' },
1477
+ { name: 'X-Api-Key', type: 'apiKey' },
1478
+ {
1479
+ in: 'query',
1480
+ name: 'api_key',
1481
+ type: 'apiKey'
1482
+ }
1483
+ ],
921
1484
  url: '/config-ops/validate/',
922
1485
  ...options
923
1486
  });
@@ -933,7 +1496,15 @@ export const conformanceConformanceGet = (options) => (options?.client ?? client
933
1496
  * List datasets with visibility filtering and pagination.
934
1497
  */
935
1498
  export const listAllDatasetsDatasetsGet = (options) => (options?.client ?? client).get({
936
- security: [{ scheme: 'bearer', type: 'http' }],
1499
+ security: [
1500
+ { scheme: 'bearer', type: 'http' },
1501
+ { name: 'X-Api-Key', type: 'apiKey' },
1502
+ {
1503
+ in: 'query',
1504
+ name: 'api_key',
1505
+ type: 'apiKey'
1506
+ }
1507
+ ],
937
1508
  url: '/datasets/',
938
1509
  ...options
939
1510
  });
@@ -943,7 +1514,15 @@ export const listAllDatasetsDatasetsGet = (options) => (options?.client ?? clien
943
1514
  * Delete multiple datasets in one request. Returns per-item results.
944
1515
  */
945
1516
  export const bulkDeleteDatasetsEndpointDatasetsBulkDeletePost = (options) => (options.client ?? client).post({
946
- security: [{ scheme: 'bearer', type: 'http' }],
1517
+ security: [
1518
+ { scheme: 'bearer', type: 'http' },
1519
+ { name: 'X-Api-Key', type: 'apiKey' },
1520
+ {
1521
+ in: 'query',
1522
+ name: 'api_key',
1523
+ type: 'apiKey'
1524
+ }
1525
+ ],
947
1526
  url: '/datasets/bulk-delete/',
948
1527
  ...options,
949
1528
  headers: {
@@ -959,7 +1538,15 @@ export const bulkDeleteDatasetsEndpointDatasetsBulkDeletePost = (options) => (op
959
1538
  * Creates a PostGIS table in the data schema and a catalog record.
960
1539
  */
961
1540
  export const createEmptyDatasetEndpointDatasetsCreatePost = (options) => (options.client ?? client).post({
962
- security: [{ scheme: 'bearer', type: 'http' }],
1541
+ security: [
1542
+ { scheme: 'bearer', type: 'http' },
1543
+ { name: 'X-Api-Key', type: 'apiKey' },
1544
+ {
1545
+ in: 'query',
1546
+ name: 'api_key',
1547
+ type: 'apiKey'
1548
+ }
1549
+ ],
963
1550
  url: '/datasets/create/',
964
1551
  ...options,
965
1552
  headers: {
@@ -973,7 +1560,15 @@ export const createEmptyDatasetEndpointDatasetsCreatePost = (options) => (option
973
1560
  * DCAT-US Schema v3.0 catalog feed. Respects dataset visibility.
974
1561
  */
975
1562
  export const getDcatUs3CatalogDatasetsDcatUs30Get = (options) => (options?.client ?? client).get({
976
- security: [{ scheme: 'bearer', type: 'http' }],
1563
+ security: [
1564
+ { scheme: 'bearer', type: 'http' },
1565
+ { name: 'X-Api-Key', type: 'apiKey' },
1566
+ {
1567
+ in: 'query',
1568
+ name: 'api_key',
1569
+ type: 'apiKey'
1570
+ }
1571
+ ],
977
1572
  url: '/datasets/dcat-us/3.0/',
978
1573
  ...options
979
1574
  });
@@ -983,7 +1578,15 @@ export const getDcatUs3CatalogDatasetsDcatUs30Get = (options) => (options?.clien
983
1578
  * Validate the visible DCAT-US Schema v3.0 catalog feed.
984
1579
  */
985
1580
  export const validateDcatUs3CatalogDatasetsDcatUs30ValidationGet = (options) => (options?.client ?? client).get({
986
- security: [{ scheme: 'bearer', type: 'http' }],
1581
+ security: [
1582
+ { scheme: 'bearer', type: 'http' },
1583
+ { name: 'X-Api-Key', type: 'apiKey' },
1584
+ {
1585
+ in: 'query',
1586
+ name: 'api_key',
1587
+ type: 'apiKey'
1588
+ }
1589
+ ],
987
1590
  url: '/datasets/dcat-us/3.0/validation/',
988
1591
  ...options
989
1592
  });
@@ -993,7 +1596,15 @@ export const validateDcatUs3CatalogDatasetsDcatUs30ValidationGet = (options) =>
993
1596
  * DCAT 3 JSON-LD catalog feed. Respects dataset visibility.
994
1597
  */
995
1598
  export const getDcatCatalogDatasetsDcatGet = (options) => (options?.client ?? client).get({
996
- security: [{ scheme: 'bearer', type: 'http' }],
1599
+ security: [
1600
+ { scheme: 'bearer', type: 'http' },
1601
+ { name: 'X-Api-Key', type: 'apiKey' },
1602
+ {
1603
+ in: 'query',
1604
+ name: 'api_key',
1605
+ type: 'apiKey'
1606
+ }
1607
+ ],
997
1608
  url: '/datasets/dcat/',
998
1609
  ...options
999
1610
  });
@@ -1003,7 +1614,15 @@ export const getDcatCatalogDatasetsDcatGet = (options) => (options?.client ?? cl
1003
1614
  * Validate the visible W3C DCAT 3 catalog feed.
1004
1615
  */
1005
1616
  export const validateDcat3CatalogDatasetsDcatValidationGet = (options) => (options?.client ?? client).get({
1006
- security: [{ scheme: 'bearer', type: 'http' }],
1617
+ security: [
1618
+ { scheme: 'bearer', type: 'http' },
1619
+ { name: 'X-Api-Key', type: 'apiKey' },
1620
+ {
1621
+ in: 'query',
1622
+ name: 'api_key',
1623
+ type: 'apiKey'
1624
+ }
1625
+ ],
1007
1626
  url: '/datasets/dcat/validation/',
1008
1627
  ...options
1009
1628
  });
@@ -1013,7 +1632,15 @@ export const validateDcat3CatalogDatasetsDcatValidationGet = (options) => (optio
1013
1632
  * GeoDCAT-AP 2.0.0 catalog feed. Respects dataset visibility.
1014
1633
  */
1015
1634
  export const getGeodcatApCatalogDatasetsGeodcatApGet = (options) => (options?.client ?? client).get({
1016
- security: [{ scheme: 'bearer', type: 'http' }],
1635
+ security: [
1636
+ { scheme: 'bearer', type: 'http' },
1637
+ { name: 'X-Api-Key', type: 'apiKey' },
1638
+ {
1639
+ in: 'query',
1640
+ name: 'api_key',
1641
+ type: 'apiKey'
1642
+ }
1643
+ ],
1017
1644
  url: '/datasets/geodcat-ap/',
1018
1645
  ...options
1019
1646
  });
@@ -1023,7 +1650,15 @@ export const getGeodcatApCatalogDatasetsGeodcatApGet = (options) => (options?.cl
1023
1650
  * Validate the visible GeoDCAT-AP 2.0.0 catalog feed.
1024
1651
  */
1025
1652
  export const validateGeodcatApCatalogDatasetsGeodcatApValidationGet = (options) => (options?.client ?? client).get({
1026
- security: [{ scheme: 'bearer', type: 'http' }],
1653
+ security: [
1654
+ { scheme: 'bearer', type: 'http' },
1655
+ { name: 'X-Api-Key', type: 'apiKey' },
1656
+ {
1657
+ in: 'query',
1658
+ name: 'api_key',
1659
+ type: 'apiKey'
1660
+ }
1661
+ ],
1027
1662
  url: '/datasets/geodcat-ap/validation/',
1028
1663
  ...options
1029
1664
  });
@@ -1033,7 +1668,15 @@ export const validateGeodcatApCatalogDatasetsGeodcatApValidationGet = (options)
1033
1668
  * Delete a FK relationship. Editor+ required.
1034
1669
  */
1035
1670
  export const deleteDatasetRelationshipDatasetsRelationshipsRelationshipIdDelete = (options) => (options.client ?? client).delete({
1036
- security: [{ scheme: 'bearer', type: 'http' }],
1671
+ security: [
1672
+ { scheme: 'bearer', type: 'http' },
1673
+ { name: 'X-Api-Key', type: 'apiKey' },
1674
+ {
1675
+ in: 'query',
1676
+ name: 'api_key',
1677
+ type: 'apiKey'
1678
+ }
1679
+ ],
1037
1680
  url: '/datasets/relationships/{relationship_id}/',
1038
1681
  ...options
1039
1682
  });
@@ -1043,7 +1686,15 @@ export const deleteDatasetRelationshipDatasetsRelationshipsRelationshipIdDelete
1043
1686
  * Delete a dataset with cascade cleanup. Owner or admin only, requires confirm_title.
1044
1687
  */
1045
1688
  export const deleteDatasetEndpointDatasetsDatasetIdDelete = (options) => (options.client ?? client).delete({
1046
- security: [{ scheme: 'bearer', type: 'http' }],
1689
+ security: [
1690
+ { scheme: 'bearer', type: 'http' },
1691
+ { name: 'X-Api-Key', type: 'apiKey' },
1692
+ {
1693
+ in: 'query',
1694
+ name: 'api_key',
1695
+ type: 'apiKey'
1696
+ }
1697
+ ],
1047
1698
  url: '/datasets/{dataset_id}',
1048
1699
  ...options,
1049
1700
  headers: {
@@ -1057,7 +1708,15 @@ export const deleteDatasetEndpointDatasetsDatasetIdDelete = (options) => (option
1057
1708
  * Get a single dataset by ID with visibility check.
1058
1709
  */
1059
1710
  export const getSingleDatasetDatasetsDatasetIdGet = (options) => (options.client ?? client).get({
1060
- security: [{ scheme: 'bearer', type: 'http' }],
1711
+ security: [
1712
+ { scheme: 'bearer', type: 'http' },
1713
+ { name: 'X-Api-Key', type: 'apiKey' },
1714
+ {
1715
+ in: 'query',
1716
+ name: 'api_key',
1717
+ type: 'apiKey'
1718
+ }
1719
+ ],
1061
1720
  url: '/datasets/{dataset_id}',
1062
1721
  ...options
1063
1722
  });
@@ -1067,7 +1726,15 @@ export const getSingleDatasetDatasetsDatasetIdGet = (options) => (options.client
1067
1726
  * Update user-editable dataset metadata.
1068
1727
  */
1069
1728
  export const updateDatasetMetadataDatasetsDatasetIdPatch = (options) => (options.client ?? client).patch({
1070
- security: [{ scheme: 'bearer', type: 'http' }],
1729
+ security: [
1730
+ { scheme: 'bearer', type: 'http' },
1731
+ { name: 'X-Api-Key', type: 'apiKey' },
1732
+ {
1733
+ in: 'query',
1734
+ name: 'api_key',
1735
+ type: 'apiKey'
1736
+ }
1737
+ ],
1071
1738
  url: '/datasets/{dataset_id}',
1072
1739
  ...options,
1073
1740
  headers: {
@@ -1081,7 +1748,15 @@ export const updateDatasetMetadataDatasetsDatasetIdPatch = (options) => (options
1081
1748
  * List all attribute metadata for a dataset.
1082
1749
  */
1083
1750
  export const listAttributesEndpointDatasetsDatasetIdAttributesGet = (options) => (options.client ?? client).get({
1084
- security: [{ scheme: 'bearer', type: 'http' }],
1751
+ security: [
1752
+ { scheme: 'bearer', type: 'http' },
1753
+ { name: 'X-Api-Key', type: 'apiKey' },
1754
+ {
1755
+ in: 'query',
1756
+ name: 'api_key',
1757
+ type: 'apiKey'
1758
+ }
1759
+ ],
1085
1760
  url: '/datasets/{dataset_id}/attributes/',
1086
1761
  ...options
1087
1762
  });
@@ -1091,7 +1766,15 @@ export const listAttributesEndpointDatasetsDatasetIdAttributesGet = (options) =>
1091
1766
  * Get a single attribute metadata entry.
1092
1767
  */
1093
1768
  export const getAttributeEndpointDatasetsDatasetIdAttributesAttributeIdGet = (options) => (options.client ?? client).get({
1094
- security: [{ scheme: 'bearer', type: 'http' }],
1769
+ security: [
1770
+ { scheme: 'bearer', type: 'http' },
1771
+ { name: 'X-Api-Key', type: 'apiKey' },
1772
+ {
1773
+ in: 'query',
1774
+ name: 'api_key',
1775
+ type: 'apiKey'
1776
+ }
1777
+ ],
1095
1778
  url: '/datasets/{dataset_id}/attributes/{attribute_id}/',
1096
1779
  ...options
1097
1780
  });
@@ -1101,7 +1784,15 @@ export const getAttributeEndpointDatasetsDatasetIdAttributesAttributeIdGet = (op
1101
1784
  * Update user-editable attribute metadata fields.
1102
1785
  */
1103
1786
  export const updateAttributeEndpointDatasetsDatasetIdAttributesAttributeIdPatch = (options) => (options.client ?? client).patch({
1104
- security: [{ scheme: 'bearer', type: 'http' }],
1787
+ security: [
1788
+ { scheme: 'bearer', type: 'http' },
1789
+ { name: 'X-Api-Key', type: 'apiKey' },
1790
+ {
1791
+ in: 'query',
1792
+ name: 'api_key',
1793
+ type: 'apiKey'
1794
+ }
1795
+ ],
1105
1796
  url: '/datasets/{dataset_id}/attributes/{attribute_id}/',
1106
1797
  ...options,
1107
1798
  headers: {
@@ -1115,7 +1806,15 @@ export const updateAttributeEndpointDatasetsDatasetIdAttributesAttributeIdPatch
1115
1806
  * Reset attribute metadata to auto-populated values, clearing user_modified_fields.
1116
1807
  */
1117
1808
  export const resetAttributeEndpointDatasetsDatasetIdAttributesAttributeIdResetPost = (options) => (options.client ?? client).post({
1118
- security: [{ scheme: 'bearer', type: 'http' }],
1809
+ security: [
1810
+ { scheme: 'bearer', type: 'http' },
1811
+ { name: 'X-Api-Key', type: 'apiKey' },
1812
+ {
1813
+ in: 'query',
1814
+ name: 'api_key',
1815
+ type: 'apiKey'
1816
+ }
1817
+ ],
1119
1818
  url: '/datasets/{dataset_id}/attributes/{attribute_id}/reset/',
1120
1819
  ...options
1121
1820
  });
@@ -1125,7 +1824,15 @@ export const resetAttributeEndpointDatasetsDatasetIdAttributesAttributeIdResetPo
1125
1824
  * Get statistics for a numeric dataset column (for graduated styling).
1126
1825
  */
1127
1826
  export const getColumnStatsEndpointDatasetsDatasetIdColumnsColumnNameStatsGet = (options) => (options.client ?? client).get({
1128
- security: [{ scheme: 'bearer', type: 'http' }],
1827
+ security: [
1828
+ { scheme: 'bearer', type: 'http' },
1829
+ { name: 'X-Api-Key', type: 'apiKey' },
1830
+ {
1831
+ in: 'query',
1832
+ name: 'api_key',
1833
+ type: 'apiKey'
1834
+ }
1835
+ ],
1129
1836
  url: '/datasets/{dataset_id}/columns/{column_name}/stats/',
1130
1837
  ...options
1131
1838
  });
@@ -1135,7 +1842,15 @@ export const getColumnStatsEndpointDatasetsDatasetIdColumnsColumnNameStatsGet =
1135
1842
  * Get distinct values for a dataset column (for categorical styling).
1136
1843
  */
1137
1844
  export const getColumnValuesDatasetsDatasetIdColumnsColumnNameValuesGet = (options) => (options.client ?? client).get({
1138
- security: [{ scheme: 'bearer', type: 'http' }],
1845
+ security: [
1846
+ { scheme: 'bearer', type: 'http' },
1847
+ { name: 'X-Api-Key', type: 'apiKey' },
1848
+ {
1849
+ in: 'query',
1850
+ name: 'api_key',
1851
+ type: 'apiKey'
1852
+ }
1853
+ ],
1139
1854
  url: '/datasets/{dataset_id}/columns/{column_name}/values/',
1140
1855
  ...options
1141
1856
  });
@@ -1145,7 +1860,15 @@ export const getColumnValuesDatasetsDatasetIdColumnsColumnNameValuesGet = (optio
1145
1860
  * DCAT-US Schema v3.0 JSON-LD for a single dataset.
1146
1861
  */
1147
1862
  export const getDcatUs3RecordDatasetsDatasetIdDcatUs30Get = (options) => (options.client ?? client).get({
1148
- security: [{ scheme: 'bearer', type: 'http' }],
1863
+ security: [
1864
+ { scheme: 'bearer', type: 'http' },
1865
+ { name: 'X-Api-Key', type: 'apiKey' },
1866
+ {
1867
+ in: 'query',
1868
+ name: 'api_key',
1869
+ type: 'apiKey'
1870
+ }
1871
+ ],
1149
1872
  url: '/datasets/{dataset_id}/dcat-us/3.0/',
1150
1873
  ...options
1151
1874
  });
@@ -1155,7 +1878,15 @@ export const getDcatUs3RecordDatasetsDatasetIdDcatUs30Get = (options) => (option
1155
1878
  * Validate a single dataset as DCAT-US Schema v3.0.
1156
1879
  */
1157
1880
  export const validateDcatUs3RecordDatasetsDatasetIdDcatUs30ValidationGet = (options) => (options.client ?? client).get({
1158
- security: [{ scheme: 'bearer', type: 'http' }],
1881
+ security: [
1882
+ { scheme: 'bearer', type: 'http' },
1883
+ { name: 'X-Api-Key', type: 'apiKey' },
1884
+ {
1885
+ in: 'query',
1886
+ name: 'api_key',
1887
+ type: 'apiKey'
1888
+ }
1889
+ ],
1159
1890
  url: '/datasets/{dataset_id}/dcat-us/3.0/validation/',
1160
1891
  ...options
1161
1892
  });
@@ -1165,7 +1896,15 @@ export const validateDcatUs3RecordDatasetsDatasetIdDcatUs30ValidationGet = (opti
1165
1896
  * DCAT 3 JSON-LD for a single dataset.
1166
1897
  */
1167
1898
  export const getDcatRecordDatasetsDatasetIdDcatGet = (options) => (options.client ?? client).get({
1168
- security: [{ scheme: 'bearer', type: 'http' }],
1899
+ security: [
1900
+ { scheme: 'bearer', type: 'http' },
1901
+ { name: 'X-Api-Key', type: 'apiKey' },
1902
+ {
1903
+ in: 'query',
1904
+ name: 'api_key',
1905
+ type: 'apiKey'
1906
+ }
1907
+ ],
1169
1908
  url: '/datasets/{dataset_id}/dcat/',
1170
1909
  ...options
1171
1910
  });
@@ -1175,7 +1914,15 @@ export const getDcatRecordDatasetsDatasetIdDcatGet = (options) => (options.clien
1175
1914
  * Validate a single dataset as W3C DCAT 3.
1176
1915
  */
1177
1916
  export const validateDcat3RecordDatasetsDatasetIdDcatValidationGet = (options) => (options.client ?? client).get({
1178
- security: [{ scheme: 'bearer', type: 'http' }],
1917
+ security: [
1918
+ { scheme: 'bearer', type: 'http' },
1919
+ { name: 'X-Api-Key', type: 'apiKey' },
1920
+ {
1921
+ in: 'query',
1922
+ name: 'api_key',
1923
+ type: 'apiKey'
1924
+ }
1925
+ ],
1179
1926
  url: '/datasets/{dataset_id}/dcat/validation/',
1180
1927
  ...options
1181
1928
  });
@@ -1195,7 +1942,15 @@ export const validateDcat3RecordDatasetsDatasetIdDcatValidationGet = (options) =
1195
1942
  * user_id=NULL.
1196
1943
  */
1197
1944
  export const downloadCogDatasetsDatasetIdDownloadCogGet = (options) => (options.client ?? client).get({
1198
- security: [{ scheme: 'bearer', type: 'http' }],
1945
+ security: [
1946
+ { scheme: 'bearer', type: 'http' },
1947
+ { name: 'X-Api-Key', type: 'apiKey' },
1948
+ {
1949
+ in: 'query',
1950
+ name: 'api_key',
1951
+ type: 'apiKey'
1952
+ }
1953
+ ],
1199
1954
  url: '/datasets/{dataset_id}/download/cog',
1200
1955
  ...options
1201
1956
  });
@@ -1209,7 +1964,15 @@ export const downloadCogDatasetsDatasetIdDownloadCogGet = (options) => (options.
1209
1964
  * filtering. GeoParquet is always emitted in EPSG:4326 (OGC:CRS84).
1210
1965
  */
1211
1966
  export const exportDatasetEndpointDatasetsDatasetIdExportGet = (options) => (options.client ?? client).get({
1212
- security: [{ scheme: 'bearer', type: 'http' }],
1967
+ security: [
1968
+ { scheme: 'bearer', type: 'http' },
1969
+ { name: 'X-Api-Key', type: 'apiKey' },
1970
+ {
1971
+ in: 'query',
1972
+ name: 'api_key',
1973
+ type: 'apiKey'
1974
+ }
1975
+ ],
1213
1976
  url: '/datasets/{dataset_id}/export',
1214
1977
  ...options
1215
1978
  });
@@ -1237,7 +2000,15 @@ export const exportDatasetEndpointDatasetsDatasetIdExportGet = (options) => (opt
1237
2000
  * Truly credentialless requests keep the anonymous public path.
1238
2001
  */
1239
2002
  export const getFeaturesGeojsonZEndpointDatasetsDatasetIdFeaturesGeojsonGet = (options) => (options.client ?? client).get({
1240
- security: [{ scheme: 'bearer', type: 'http' }],
2003
+ security: [
2004
+ { scheme: 'bearer', type: 'http' },
2005
+ { name: 'X-Api-Key', type: 'apiKey' },
2006
+ {
2007
+ in: 'query',
2008
+ name: 'api_key',
2009
+ type: 'apiKey'
2010
+ }
2011
+ ],
1241
2012
  url: '/datasets/{dataset_id}/features.geojson',
1242
2013
  ...options
1243
2014
  });
@@ -1245,9 +2016,23 @@ export const getFeaturesGeojsonZEndpointDatasetsDatasetIdFeaturesGeojsonGet = (o
1245
2016
  * List Features
1246
2017
  *
1247
2018
  * Get paginated GeoJSON features for a dataset.
2019
+ *
2020
+ * Pagination is OFFSET-based (fix(#458 E-40), documented limitation): rows can
2021
+ * skip or duplicate across pages under concurrent writes, though feature ids
2022
+ * stay stable (ORDER BY gid, the primary key). Clients that need stable
2023
+ * cursoring should use the OGC API Features endpoint, which supports keyset
2024
+ * pagination via ``after_gid``.
1248
2025
  */
1249
2026
  export const listFeaturesDatasetsDatasetIdFeaturesGet = (options) => (options.client ?? client).get({
1250
- security: [{ scheme: 'bearer', type: 'http' }],
2027
+ security: [
2028
+ { scheme: 'bearer', type: 'http' },
2029
+ { name: 'X-Api-Key', type: 'apiKey' },
2030
+ {
2031
+ in: 'query',
2032
+ name: 'api_key',
2033
+ type: 'apiKey'
2034
+ }
2035
+ ],
1251
2036
  url: '/datasets/{dataset_id}/features/',
1252
2037
  ...options
1253
2038
  });
@@ -1257,7 +2042,15 @@ export const listFeaturesDatasetsDatasetIdFeaturesGet = (options) => (options.cl
1257
2042
  * Insert a new GeoJSON feature into a dataset.
1258
2043
  */
1259
2044
  export const createFeatureDatasetsDatasetIdFeaturesPost = (options) => (options.client ?? client).post({
1260
- security: [{ scheme: 'bearer', type: 'http' }],
2045
+ security: [
2046
+ { scheme: 'bearer', type: 'http' },
2047
+ { name: 'X-Api-Key', type: 'apiKey' },
2048
+ {
2049
+ in: 'query',
2050
+ name: 'api_key',
2051
+ type: 'apiKey'
2052
+ }
2053
+ ],
1261
2054
  url: '/datasets/{dataset_id}/features/',
1262
2055
  ...options,
1263
2056
  headers: {
@@ -1271,7 +2064,15 @@ export const createFeatureDatasetsDatasetIdFeaturesPost = (options) => (options.
1271
2064
  * Delete a feature by gid (hard delete).
1272
2065
  */
1273
2066
  export const deleteSingleFeatureDatasetsDatasetIdFeaturesGidDelete = (options) => (options.client ?? client).delete({
1274
- security: [{ scheme: 'bearer', type: 'http' }],
2067
+ security: [
2068
+ { scheme: 'bearer', type: 'http' },
2069
+ { name: 'X-Api-Key', type: 'apiKey' },
2070
+ {
2071
+ in: 'query',
2072
+ name: 'api_key',
2073
+ type: 'apiKey'
2074
+ }
2075
+ ],
1275
2076
  url: '/datasets/{dataset_id}/features/{gid}',
1276
2077
  ...options
1277
2078
  });
@@ -1281,7 +2082,15 @@ export const deleteSingleFeatureDatasetsDatasetIdFeaturesGidDelete = (options) =
1281
2082
  * Get a single GeoJSON feature by gid.
1282
2083
  */
1283
2084
  export const getSingleFeatureDatasetsDatasetIdFeaturesGidGet = (options) => (options.client ?? client).get({
1284
- security: [{ scheme: 'bearer', type: 'http' }],
2085
+ security: [
2086
+ { scheme: 'bearer', type: 'http' },
2087
+ { name: 'X-Api-Key', type: 'apiKey' },
2088
+ {
2089
+ in: 'query',
2090
+ name: 'api_key',
2091
+ type: 'apiKey'
2092
+ }
2093
+ ],
1285
2094
  url: '/datasets/{dataset_id}/features/{gid}',
1286
2095
  ...options
1287
2096
  });
@@ -1291,7 +2100,15 @@ export const getSingleFeatureDatasetsDatasetIdFeaturesGidGet = (options) => (opt
1291
2100
  * Partial update of a feature (PATCH semantics).
1292
2101
  */
1293
2102
  export const patchSingleFeatureDatasetsDatasetIdFeaturesGidPatch = (options) => (options.client ?? client).patch({
1294
- security: [{ scheme: 'bearer', type: 'http' }],
2103
+ security: [
2104
+ { scheme: 'bearer', type: 'http' },
2105
+ { name: 'X-Api-Key', type: 'apiKey' },
2106
+ {
2107
+ in: 'query',
2108
+ name: 'api_key',
2109
+ type: 'apiKey'
2110
+ }
2111
+ ],
1295
2112
  url: '/datasets/{dataset_id}/features/{gid}',
1296
2113
  ...options,
1297
2114
  headers: {
@@ -1305,7 +2122,15 @@ export const patchSingleFeatureDatasetsDatasetIdFeaturesGidPatch = (options) =>
1305
2122
  * Full replacement of a feature (PUT semantics).
1306
2123
  */
1307
2124
  export const replaceSingleFeatureDatasetsDatasetIdFeaturesGidPut = (options) => (options.client ?? client).put({
1308
- security: [{ scheme: 'bearer', type: 'http' }],
2125
+ security: [
2126
+ { scheme: 'bearer', type: 'http' },
2127
+ { name: 'X-Api-Key', type: 'apiKey' },
2128
+ {
2129
+ in: 'query',
2130
+ name: 'api_key',
2131
+ type: 'apiKey'
2132
+ }
2133
+ ],
1309
2134
  url: '/datasets/{dataset_id}/features/{gid}',
1310
2135
  ...options,
1311
2136
  headers: {
@@ -1319,7 +2144,15 @@ export const replaceSingleFeatureDatasetsDatasetIdFeaturesGidPut = (options) =>
1319
2144
  * Get related records for a feature via FK relationship.
1320
2145
  */
1321
2146
  export const getFeatureRelatedRecordsDatasetsDatasetIdFeaturesGidRelatedRelationshipIdGet = (options) => (options.client ?? client).get({
1322
- security: [{ scheme: 'bearer', type: 'http' }],
2147
+ security: [
2148
+ { scheme: 'bearer', type: 'http' },
2149
+ { name: 'X-Api-Key', type: 'apiKey' },
2150
+ {
2151
+ in: 'query',
2152
+ name: 'api_key',
2153
+ type: 'apiKey'
2154
+ }
2155
+ ],
1323
2156
  url: '/datasets/{dataset_id}/features/{gid}/related/{relationship_id}/',
1324
2157
  ...options
1325
2158
  });
@@ -1329,7 +2162,15 @@ export const getFeatureRelatedRecordsDatasetsDatasetIdFeaturesGidRelatedRelation
1329
2162
  * GeoDCAT-AP 2.0.0 JSON-LD for a single dataset.
1330
2163
  */
1331
2164
  export const getGeodcatApRecordDatasetsDatasetIdGeodcatApGet = (options) => (options.client ?? client).get({
1332
- security: [{ scheme: 'bearer', type: 'http' }],
2165
+ security: [
2166
+ { scheme: 'bearer', type: 'http' },
2167
+ { name: 'X-Api-Key', type: 'apiKey' },
2168
+ {
2169
+ in: 'query',
2170
+ name: 'api_key',
2171
+ type: 'apiKey'
2172
+ }
2173
+ ],
1333
2174
  url: '/datasets/{dataset_id}/geodcat-ap/',
1334
2175
  ...options
1335
2176
  });
@@ -1339,7 +2180,15 @@ export const getGeodcatApRecordDatasetsDatasetIdGeodcatApGet = (options) => (opt
1339
2180
  * Validate a single dataset as GeoDCAT-AP 2.0.0.
1340
2181
  */
1341
2182
  export const validateGeodcatApRecordDatasetsDatasetIdGeodcatApValidationGet = (options) => (options.client ?? client).get({
1342
- security: [{ scheme: 'bearer', type: 'http' }],
2183
+ security: [
2184
+ { scheme: 'bearer', type: 'http' },
2185
+ { name: 'X-Api-Key', type: 'apiKey' },
2186
+ {
2187
+ in: 'query',
2188
+ name: 'api_key',
2189
+ type: 'apiKey'
2190
+ }
2191
+ ],
1343
2192
  url: '/datasets/{dataset_id}/geodcat-ap/validation/',
1344
2193
  ...options
1345
2194
  });
@@ -1349,7 +2198,15 @@ export const validateGeodcatApRecordDatasetsDatasetIdGeodcatApValidationGet = (o
1349
2198
  * Get audit log history for a specific dataset.
1350
2199
  */
1351
2200
  export const getDatasetHistoryDatasetsDatasetIdHistoryGet = (options) => (options.client ?? client).get({
1352
- security: [{ scheme: 'bearer', type: 'http' }],
2201
+ security: [
2202
+ { scheme: 'bearer', type: 'http' },
2203
+ { name: 'X-Api-Key', type: 'apiKey' },
2204
+ {
2205
+ in: 'query',
2206
+ name: 'api_key',
2207
+ type: 'apiKey'
2208
+ }
2209
+ ],
1353
2210
  url: '/datasets/{dataset_id}/history',
1354
2211
  ...options
1355
2212
  });
@@ -1359,7 +2216,15 @@ export const getDatasetHistoryDatasetsDatasetIdHistoryGet = (options) => (option
1359
2216
  * Return maps that contain this dataset, filtered by caller's RBAC visibility.
1360
2217
  */
1361
2218
  export const datasetMapsDatasetsDatasetIdMapsGet = (options) => (options.client ?? client).get({
1362
- security: [{ scheme: 'bearer', type: 'http' }],
2219
+ security: [
2220
+ { scheme: 'bearer', type: 'http' },
2221
+ { name: 'X-Api-Key', type: 'apiKey' },
2222
+ {
2223
+ in: 'query',
2224
+ name: 'api_key',
2225
+ type: 'apiKey'
2226
+ }
2227
+ ],
1363
2228
  url: '/datasets/{dataset_id}/maps/',
1364
2229
  ...options
1365
2230
  });
@@ -1369,7 +2234,15 @@ export const datasetMapsDatasetsDatasetIdMapsGet = (options) => (options.client
1369
2234
  * Serve a quicklook PNG image for a dataset.
1370
2235
  */
1371
2236
  export const getQuicklookDatasetsDatasetIdQuicklookGet = (options) => (options.client ?? client).get({
1372
- security: [{ scheme: 'bearer', type: 'http' }],
2237
+ security: [
2238
+ { scheme: 'bearer', type: 'http' },
2239
+ { name: 'X-Api-Key', type: 'apiKey' },
2240
+ {
2241
+ in: 'query',
2242
+ name: 'api_key',
2243
+ type: 'apiKey'
2244
+ }
2245
+ ],
1373
2246
  url: '/datasets/{dataset_id}/quicklook',
1374
2247
  ...options
1375
2248
  });
@@ -1379,7 +2252,15 @@ export const getQuicklookDatasetsDatasetIdQuicklookGet = (options) => (options.c
1379
2252
  * Return top-5 datasets similar to this one by embedding cosine similarity.
1380
2253
  */
1381
2254
  export const listRelatedDatasetsDatasetsDatasetIdRelatedGet = (options) => (options.client ?? client).get({
1382
- security: [{ scheme: 'bearer', type: 'http' }],
2255
+ security: [
2256
+ { scheme: 'bearer', type: 'http' },
2257
+ { name: 'X-Api-Key', type: 'apiKey' },
2258
+ {
2259
+ in: 'query',
2260
+ name: 'api_key',
2261
+ type: 'apiKey'
2262
+ }
2263
+ ],
1383
2264
  url: '/datasets/{dataset_id}/related/',
1384
2265
  ...options
1385
2266
  });
@@ -1395,7 +2276,15 @@ export const listRelatedDatasetsDatasetsDatasetIdRelatedGet = (options) => (opti
1395
2276
  * pagination.
1396
2277
  */
1397
2278
  export const listDatasetRelationshipsDatasetsDatasetIdRelationshipsGet = (options) => (options.client ?? client).get({
1398
- security: [{ scheme: 'bearer', type: 'http' }],
2279
+ security: [
2280
+ { scheme: 'bearer', type: 'http' },
2281
+ { name: 'X-Api-Key', type: 'apiKey' },
2282
+ {
2283
+ in: 'query',
2284
+ name: 'api_key',
2285
+ type: 'apiKey'
2286
+ }
2287
+ ],
1399
2288
  url: '/datasets/{dataset_id}/relationships/',
1400
2289
  ...options
1401
2290
  });
@@ -1405,7 +2294,15 @@ export const listDatasetRelationshipsDatasetsDatasetIdRelationshipsGet = (option
1405
2294
  * Create a new FK relationship. Editor+ required.
1406
2295
  */
1407
2296
  export const createDatasetRelationshipDatasetsDatasetIdRelationshipsPost = (options) => (options.client ?? client).post({
1408
- security: [{ scheme: 'bearer', type: 'http' }],
2297
+ security: [
2298
+ { scheme: 'bearer', type: 'http' },
2299
+ { name: 'X-Api-Key', type: 'apiKey' },
2300
+ {
2301
+ in: 'query',
2302
+ name: 'api_key',
2303
+ type: 'apiKey'
2304
+ }
2305
+ ],
1409
2306
  url: '/datasets/{dataset_id}/relationships/',
1410
2307
  ...options,
1411
2308
  headers: {
@@ -1420,7 +2317,15 @@ export const createDatasetRelationshipDatasetsDatasetIdRelationshipsPost = (opti
1420
2317
  */
1421
2318
  export const reuploadDatasetDatasetsDatasetIdReuploadPost = (options) => (options.client ?? client).post({
1422
2319
  ...formDataBodySerializer,
1423
- security: [{ scheme: 'bearer', type: 'http' }],
2320
+ security: [
2321
+ { scheme: 'bearer', type: 'http' },
2322
+ { name: 'X-Api-Key', type: 'apiKey' },
2323
+ {
2324
+ in: 'query',
2325
+ name: 'api_key',
2326
+ type: 'apiKey'
2327
+ }
2328
+ ],
1424
2329
  url: '/datasets/{dataset_id}/reupload',
1425
2330
  ...options,
1426
2331
  headers: {
@@ -1434,7 +2339,15 @@ export const reuploadDatasetDatasetsDatasetIdReuploadPost = (options) => (option
1434
2339
  * Request presigned URL(s) for direct-to-S3 reupload.
1435
2340
  */
1436
2341
  export const requestPresignedReuploadDatasetsDatasetIdReuploadPresignedPost = (options) => (options.client ?? client).post({
1437
- security: [{ scheme: 'bearer', type: 'http' }],
2342
+ security: [
2343
+ { scheme: 'bearer', type: 'http' },
2344
+ { name: 'X-Api-Key', type: 'apiKey' },
2345
+ {
2346
+ in: 'query',
2347
+ name: 'api_key',
2348
+ type: 'apiKey'
2349
+ }
2350
+ ],
1438
2351
  url: '/datasets/{dataset_id}/reupload/presigned',
1439
2352
  ...options,
1440
2353
  headers: {
@@ -1448,7 +2361,15 @@ export const requestPresignedReuploadDatasetsDatasetIdReuploadPresignedPost = (o
1448
2361
  * Notify that direct-to-S3 reupload is complete.
1449
2362
  */
1450
2363
  export const completePresignedReuploadDatasetsDatasetIdReuploadPresignedJobIdCompletePost = (options) => (options.client ?? client).post({
1451
- security: [{ scheme: 'bearer', type: 'http' }],
2364
+ security: [
2365
+ { scheme: 'bearer', type: 'http' },
2366
+ { name: 'X-Api-Key', type: 'apiKey' },
2367
+ {
2368
+ in: 'query',
2369
+ name: 'api_key',
2370
+ type: 'apiKey'
2371
+ }
2372
+ ],
1452
2373
  url: '/datasets/{dataset_id}/reupload/presigned/{job_id}/complete',
1453
2374
  ...options,
1454
2375
  headers: {
@@ -1462,7 +2383,15 @@ export const completePresignedReuploadDatasetsDatasetIdReuploadPresignedJobIdCom
1462
2383
  * Preview a remote service layer for dataset re-upload.
1463
2384
  */
1464
2385
  export const reuploadServicePreviewDatasetsDatasetIdReuploadServicePreviewPost = (options) => (options.client ?? client).post({
1465
- security: [{ scheme: 'bearer', type: 'http' }],
2386
+ security: [
2387
+ { scheme: 'bearer', type: 'http' },
2388
+ { name: 'X-Api-Key', type: 'apiKey' },
2389
+ {
2390
+ in: 'query',
2391
+ name: 'api_key',
2392
+ type: 'apiKey'
2393
+ }
2394
+ ],
1466
2395
  url: '/datasets/{dataset_id}/reupload/service/preview',
1467
2396
  ...options,
1468
2397
  headers: {
@@ -1476,7 +2405,15 @@ export const reuploadServicePreviewDatasetsDatasetIdReuploadServicePreviewPost =
1476
2405
  * Commit a re-upload, queuing the background swap task.
1477
2406
  */
1478
2407
  export const reuploadCommitDatasetsDatasetIdReuploadJobIdCommitPost = (options) => (options.client ?? client).post({
1479
- security: [{ scheme: 'bearer', type: 'http' }],
2408
+ security: [
2409
+ { scheme: 'bearer', type: 'http' },
2410
+ { name: 'X-Api-Key', type: 'apiKey' },
2411
+ {
2412
+ in: 'query',
2413
+ name: 'api_key',
2414
+ type: 'apiKey'
2415
+ }
2416
+ ],
1480
2417
  url: '/datasets/{dataset_id}/reupload/{job_id}/commit',
1481
2418
  ...options,
1482
2419
  headers: {
@@ -1496,7 +2433,15 @@ export const reuploadCommitDatasetsDatasetIdReuploadJobIdCommitPost = (options)
1496
2433
  * layer; omit it to get the default first-layer metadata.
1497
2434
  */
1498
2435
  export const reuploadPreviewDatasetsDatasetIdReuploadJobIdPreviewPost = (options) => (options.client ?? client).post({
1499
- security: [{ scheme: 'bearer', type: 'http' }],
2436
+ security: [
2437
+ { scheme: 'bearer', type: 'http' },
2438
+ { name: 'X-Api-Key', type: 'apiKey' },
2439
+ {
2440
+ in: 'query',
2441
+ name: 'api_key',
2442
+ type: 'apiKey'
2443
+ }
2444
+ ],
1500
2445
  url: '/datasets/{dataset_id}/reupload/{job_id}/preview',
1501
2446
  ...options,
1502
2447
  headers: {
@@ -1513,7 +2458,15 @@ export const reuploadPreviewDatasetsDatasetIdReuploadJobIdPreviewPost = (options
1513
2458
  * Supports column filtering via query params: ``filter[column_name]=value``.
1514
2459
  */
1515
2460
  export const getDatasetRowsEndpointDatasetsDatasetIdRowsGet = (options) => (options.client ?? client).get({
1516
- security: [{ scheme: 'bearer', type: 'http' }],
2461
+ security: [
2462
+ { scheme: 'bearer', type: 'http' },
2463
+ { name: 'X-Api-Key', type: 'apiKey' },
2464
+ {
2465
+ in: 'query',
2466
+ name: 'api_key',
2467
+ type: 'apiKey'
2468
+ }
2469
+ ],
1517
2470
  url: '/datasets/{dataset_id}/rows/',
1518
2471
  ...options
1519
2472
  });
@@ -1526,7 +2479,15 @@ export const getDatasetRowsEndpointDatasetsDatasetIdRowsGet = (options) => (opti
1526
2479
  * draft -> ready -> internal -> published (and back one step).
1527
2480
  */
1528
2481
  export const updatePublicationStatusDatasetsDatasetIdStatusPatch = (options) => (options.client ?? client).patch({
1529
- security: [{ scheme: 'bearer', type: 'http' }],
2482
+ security: [
2483
+ { scheme: 'bearer', type: 'http' },
2484
+ { name: 'X-Api-Key', type: 'apiKey' },
2485
+ {
2486
+ in: 'query',
2487
+ name: 'api_key',
2488
+ type: 'apiKey'
2489
+ }
2490
+ ],
1530
2491
  url: '/datasets/{dataset_id}/status/',
1531
2492
  ...options,
1532
2493
  headers: {
@@ -1543,7 +2504,15 @@ export const updatePublicationStatusDatasetsDatasetIdStatusPatch = (options) =>
1543
2504
  * (e.g. draft -> ready -> internal -> published) completes server-side.
1544
2505
  */
1545
2506
  export const setTargetStatusDatasetsDatasetIdTargetStatusPatch = (options) => (options.client ?? client).patch({
1546
- security: [{ scheme: 'bearer', type: 'http' }],
2507
+ security: [
2508
+ { scheme: 'bearer', type: 'http' },
2509
+ { name: 'X-Api-Key', type: 'apiKey' },
2510
+ {
2511
+ in: 'query',
2512
+ name: 'api_key',
2513
+ type: 'apiKey'
2514
+ }
2515
+ ],
1547
2516
  url: '/datasets/{dataset_id}/target-status/',
1548
2517
  ...options,
1549
2518
  headers: {
@@ -1562,7 +2531,15 @@ export const setTargetStatusDatasetsDatasetIdTargetStatusPatch = (options) => (o
1562
2531
  * a single query).
1563
2532
  */
1564
2533
  export const validateDatasetDatasetsDatasetIdValidateGet = (options) => (options.client ?? client).get({
1565
- security: [{ scheme: 'bearer', type: 'http' }],
2534
+ security: [
2535
+ { scheme: 'bearer', type: 'http' },
2536
+ { name: 'X-Api-Key', type: 'apiKey' },
2537
+ {
2538
+ in: 'query',
2539
+ name: 'api_key',
2540
+ type: 'apiKey'
2541
+ }
2542
+ ],
1566
2543
  url: '/datasets/{dataset_id}/validate/',
1567
2544
  ...options
1568
2545
  });
@@ -1572,7 +2549,15 @@ export const validateDatasetDatasetsDatasetIdValidateGet = (options) => (options
1572
2549
  * Get paginated version history for a dataset.
1573
2550
  */
1574
2551
  export const getDatasetVersionsEndpointDatasetsDatasetIdVersionsGet = (options) => (options.client ?? client).get({
1575
- security: [{ scheme: 'bearer', type: 'http' }],
2552
+ security: [
2553
+ { scheme: 'bearer', type: 'http' },
2554
+ { name: 'X-Api-Key', type: 'apiKey' },
2555
+ {
2556
+ in: 'query',
2557
+ name: 'api_key',
2558
+ type: 'apiKey'
2559
+ }
2560
+ ],
1576
2561
  url: '/datasets/{dataset_id}/versions/',
1577
2562
  ...options
1578
2563
  });
@@ -1582,7 +2567,15 @@ export const getDatasetVersionsEndpointDatasetsDatasetIdVersionsGet = (options)
1582
2567
  * Return ordered list of COG sources for a VRT dataset.
1583
2568
  */
1584
2569
  export const listVrtSourcesDatasetsDatasetIdVrtSourcesGet = (options) => (options.client ?? client).get({
1585
- security: [{ scheme: 'bearer', type: 'http' }],
2570
+ security: [
2571
+ { scheme: 'bearer', type: 'http' },
2572
+ { name: 'X-Api-Key', type: 'apiKey' },
2573
+ {
2574
+ in: 'query',
2575
+ name: 'api_key',
2576
+ type: 'apiKey'
2577
+ }
2578
+ ],
1586
2579
  url: '/datasets/{dataset_id}/vrt-sources/',
1587
2580
  ...options
1588
2581
  });
@@ -1592,7 +2585,15 @@ export const listVrtSourcesDatasetsDatasetIdVrtSourcesGet = (options) => (option
1592
2585
  * Return paginated generation history for a VRT dataset.
1593
2586
  */
1594
2587
  export const listVrtGenerationsDatasetsDatasetIdVrtGenerationsGet = (options) => (options.client ?? client).get({
1595
- security: [{ scheme: 'bearer', type: 'http' }],
2588
+ security: [
2589
+ { scheme: 'bearer', type: 'http' },
2590
+ { name: 'X-Api-Key', type: 'apiKey' },
2591
+ {
2592
+ in: 'query',
2593
+ name: 'api_key',
2594
+ type: 'apiKey'
2595
+ }
2596
+ ],
1596
2597
  url: '/datasets/{dataset_id}/vrt/generations/',
1597
2598
  ...options
1598
2599
  });
@@ -1602,7 +2603,15 @@ export const listVrtGenerationsDatasetsDatasetIdVrtGenerationsGet = (options) =>
1602
2603
  * Trigger manual VRT regeneration with advisory lock to prevent concurrent rebuilds.
1603
2604
  */
1604
2605
  export const regenerateVrtEndpointDatasetsDatasetIdVrtRegeneratePost = (options) => (options.client ?? client).post({
1605
- security: [{ scheme: 'bearer', type: 'http' }],
2606
+ security: [
2607
+ { scheme: 'bearer', type: 'http' },
2608
+ { name: 'X-Api-Key', type: 'apiKey' },
2609
+ {
2610
+ in: 'query',
2611
+ name: 'api_key',
2612
+ type: 'apiKey'
2613
+ }
2614
+ ],
1606
2615
  url: '/datasets/{dataset_id}/vrt/regenerate/',
1607
2616
  ...options
1608
2617
  });
@@ -1612,7 +2621,15 @@ export const regenerateVrtEndpointDatasetsDatasetIdVrtRegeneratePost = (options)
1612
2621
  * Return VRT dataset status, last generation time, source count, and per-source health.
1613
2622
  */
1614
2623
  export const getVrtStatusDatasetsDatasetIdVrtStatusGet = (options) => (options.client ?? client).get({
1615
- security: [{ scheme: 'bearer', type: 'http' }],
2624
+ security: [
2625
+ { scheme: 'bearer', type: 'http' },
2626
+ { name: 'X-Api-Key', type: 'apiKey' },
2627
+ {
2628
+ in: 'query',
2629
+ name: 'api_key',
2630
+ type: 'apiKey'
2631
+ }
2632
+ ],
1616
2633
  url: '/datasets/{dataset_id}/vrt/status/',
1617
2634
  ...options
1618
2635
  });
@@ -1643,7 +2660,15 @@ export const healthHealthGet = (options) => (options?.client ?? client).get({ ur
1643
2660
  * Permission: same as POST /ingest/commit/{job_id} — 'upload' capability.
1644
2661
  */
1645
2662
  export const commitFanOutIngestCommitFanOutJobIdPost = (options) => (options.client ?? client).post({
1646
- security: [{ scheme: 'bearer', type: 'http' }],
2663
+ security: [
2664
+ { scheme: 'bearer', type: 'http' },
2665
+ { name: 'X-Api-Key', type: 'apiKey' },
2666
+ {
2667
+ in: 'query',
2668
+ name: 'api_key',
2669
+ type: 'apiKey'
2670
+ }
2671
+ ],
1647
2672
  url: '/ingest/commit-fan-out/{job_id}',
1648
2673
  ...options,
1649
2674
  headers: {
@@ -1660,7 +2685,15 @@ export const commitFanOutIngestCommitFanOutJobIdPost = (options) => (options.cli
1660
2685
  * Only callable on jobs with status 'pending'.
1661
2686
  */
1662
2687
  export const commitImportIngestCommitJobIdPost = (options) => (options.client ?? client).post({
1663
- security: [{ scheme: 'bearer', type: 'http' }],
2688
+ security: [
2689
+ { scheme: 'bearer', type: 'http' },
2690
+ { name: 'X-Api-Key', type: 'apiKey' },
2691
+ {
2692
+ in: 'query',
2693
+ name: 'api_key',
2694
+ type: 'apiKey'
2695
+ }
2696
+ ],
1664
2697
  url: '/ingest/commit/{job_id}',
1665
2698
  ...options,
1666
2699
  headers: {
@@ -1679,7 +2712,15 @@ export const commitImportIngestCommitJobIdPost = (options) => (options.client ??
1679
2712
  * thousands of orphan tables don't blow up the response payload.
1680
2713
  */
1681
2714
  export const discoverTablesIngestDiscoverGet = (options) => (options?.client ?? client).get({
1682
- security: [{ scheme: 'bearer', type: 'http' }],
2715
+ security: [
2716
+ { scheme: 'bearer', type: 'http' },
2717
+ { name: 'X-Api-Key', type: 'apiKey' },
2718
+ {
2719
+ in: 'query',
2720
+ name: 'api_key',
2721
+ type: 'apiKey'
2722
+ }
2723
+ ],
1683
2724
  url: '/ingest/discover/',
1684
2725
  ...options
1685
2726
  });
@@ -1689,7 +2730,15 @@ export const discoverTablesIngestDiscoverGet = (options) => (options?.client ??
1689
2730
  * Apply a versioned manifest through the ingest service layer.
1690
2731
  */
1691
2732
  export const applyManifestEndpointIngestManifestApplyPost = (options) => (options.client ?? client).post({
1692
- security: [{ scheme: 'bearer', type: 'http' }],
2733
+ security: [
2734
+ { scheme: 'bearer', type: 'http' },
2735
+ { name: 'X-Api-Key', type: 'apiKey' },
2736
+ {
2737
+ in: 'query',
2738
+ name: 'api_key',
2739
+ type: 'apiKey'
2740
+ }
2741
+ ],
1693
2742
  url: '/ingest/manifest/apply',
1694
2743
  ...options,
1695
2744
  headers: {
@@ -1707,7 +2756,15 @@ export const applyManifestEndpointIngestManifestApplyPost = (options) => (option
1707
2756
  * Only callable on jobs with status 'pending'.
1708
2757
  */
1709
2758
  export const previewFileIngestPreviewJobIdPost = (options) => (options.client ?? client).post({
1710
- security: [{ scheme: 'bearer', type: 'http' }],
2759
+ security: [
2760
+ { scheme: 'bearer', type: 'http' },
2761
+ { name: 'X-Api-Key', type: 'apiKey' },
2762
+ {
2763
+ in: 'query',
2764
+ name: 'api_key',
2765
+ type: 'apiKey'
2766
+ }
2767
+ ],
1711
2768
  url: '/ingest/preview/{job_id}',
1712
2769
  ...options
1713
2770
  });
@@ -1720,7 +2777,15 @@ export const previewFileIngestPreviewJobIdPost = (options) => (options.client ??
1720
2777
  * catalog entry.
1721
2778
  */
1722
2779
  export const registerTableIngestRegisterPost = (options) => (options.client ?? client).post({
1723
- security: [{ scheme: 'bearer', type: 'http' }],
2780
+ security: [
2781
+ { scheme: 'bearer', type: 'http' },
2782
+ { name: 'X-Api-Key', type: 'apiKey' },
2783
+ {
2784
+ in: 'query',
2785
+ name: 'api_key',
2786
+ type: 'apiKey'
2787
+ }
2788
+ ],
1724
2789
  url: '/ingest/register/',
1725
2790
  ...options,
1726
2791
  headers: {
@@ -1739,7 +2804,15 @@ export const registerTableIngestRegisterPost = (options) => (options.client ?? c
1739
2804
  * removing the sequential per-table latency (PERF-3).
1740
2805
  */
1741
2806
  export const bulkRegisterTablesIngestRegisterBulkPost = (options) => (options.client ?? client).post({
1742
- security: [{ scheme: 'bearer', type: 'http' }],
2807
+ security: [
2808
+ { scheme: 'bearer', type: 'http' },
2809
+ { name: 'X-Api-Key', type: 'apiKey' },
2810
+ {
2811
+ in: 'query',
2812
+ name: 'api_key',
2813
+ type: 'apiKey'
2814
+ }
2815
+ ],
1743
2816
  url: '/ingest/register/bulk/',
1744
2817
  ...options,
1745
2818
  headers: {
@@ -1757,7 +2830,15 @@ export const bulkRegisterTablesIngestRegisterBulkPost = (options) => (options.cl
1757
2830
  */
1758
2831
  export const uploadFileIngestUploadPost = (options) => (options.client ?? client).post({
1759
2832
  ...formDataBodySerializer,
1760
- security: [{ scheme: 'bearer', type: 'http' }],
2833
+ security: [
2834
+ { scheme: 'bearer', type: 'http' },
2835
+ { name: 'X-Api-Key', type: 'apiKey' },
2836
+ {
2837
+ in: 'query',
2838
+ name: 'api_key',
2839
+ type: 'apiKey'
2840
+ }
2841
+ ],
1761
2842
  url: '/ingest/upload',
1762
2843
  ...options,
1763
2844
  headers: {
@@ -1771,7 +2852,15 @@ export const uploadFileIngestUploadPost = (options) => (options.client ?? client
1771
2852
  * Return upload configuration including presigned upload availability.
1772
2853
  */
1773
2854
  export const getUploadConfigIngestUploadConfigGet = (options) => (options?.client ?? client).get({
1774
- security: [{ scheme: 'bearer', type: 'http' }],
2855
+ security: [
2856
+ { scheme: 'bearer', type: 'http' },
2857
+ { name: 'X-Api-Key', type: 'apiKey' },
2858
+ {
2859
+ in: 'query',
2860
+ name: 'api_key',
2861
+ type: 'apiKey'
2862
+ }
2863
+ ],
1775
2864
  url: '/ingest/upload/config',
1776
2865
  ...options
1777
2866
  });
@@ -1781,7 +2870,15 @@ export const getUploadConfigIngestUploadConfigGet = (options) => (options?.clien
1781
2870
  * Request presigned URL(s) for direct-to-S3 file upload.
1782
2871
  */
1783
2872
  export const requestPresignedUploadIngestUploadPresignedPost = (options) => (options.client ?? client).post({
1784
- security: [{ scheme: 'bearer', type: 'http' }],
2873
+ security: [
2874
+ { scheme: 'bearer', type: 'http' },
2875
+ { name: 'X-Api-Key', type: 'apiKey' },
2876
+ {
2877
+ in: 'query',
2878
+ name: 'api_key',
2879
+ type: 'apiKey'
2880
+ }
2881
+ ],
1785
2882
  url: '/ingest/upload/presigned',
1786
2883
  ...options,
1787
2884
  headers: {
@@ -1795,7 +2892,15 @@ export const requestPresignedUploadIngestUploadPresignedPost = (options) => (opt
1795
2892
  * Notify that direct-to-S3 upload is complete.
1796
2893
  */
1797
2894
  export const completePresignedUploadIngestUploadPresignedJobIdCompletePost = (options) => (options.client ?? client).post({
1798
- security: [{ scheme: 'bearer', type: 'http' }],
2895
+ security: [
2896
+ { scheme: 'bearer', type: 'http' },
2897
+ { name: 'X-Api-Key', type: 'apiKey' },
2898
+ {
2899
+ in: 'query',
2900
+ name: 'api_key',
2901
+ type: 'apiKey'
2902
+ }
2903
+ ],
1799
2904
  url: '/ingest/upload/presigned/{job_id}/complete',
1800
2905
  ...options,
1801
2906
  headers: {
@@ -1813,7 +2918,15 @@ export const completePresignedUploadIngestUploadPresignedJobIdCompletePost = (op
1813
2918
  * ``ingest.service.create_vrt_job`` (K5 extraction).
1814
2919
  */
1815
2920
  export const createVrtIngestVrtCreatePost = (options) => (options.client ?? client).post({
1816
- security: [{ scheme: 'bearer', type: 'http' }],
2921
+ security: [
2922
+ { scheme: 'bearer', type: 'http' },
2923
+ { name: 'X-Api-Key', type: 'apiKey' },
2924
+ {
2925
+ in: 'query',
2926
+ name: 'api_key',
2927
+ type: 'apiKey'
2928
+ }
2929
+ ],
1817
2930
  url: '/ingest/vrt/create',
1818
2931
  ...options,
1819
2932
  headers: {
@@ -1832,7 +2945,15 @@ export const createVrtIngestVrtCreatePost = (options) => (options.client ?? clie
1832
2945
  * Returns 422 if the source is incompatible with existing sources.
1833
2946
  */
1834
2947
  export const addVrtSourceIngestVrtDatasetIdSourcesPost = (options) => (options.client ?? client).post({
1835
- security: [{ scheme: 'bearer', type: 'http' }],
2948
+ security: [
2949
+ { scheme: 'bearer', type: 'http' },
2950
+ { name: 'X-Api-Key', type: 'apiKey' },
2951
+ {
2952
+ in: 'query',
2953
+ name: 'api_key',
2954
+ type: 'apiKey'
2955
+ }
2956
+ ],
1836
2957
  url: '/ingest/vrt/{dataset_id}/sources/',
1837
2958
  ...options,
1838
2959
  headers: {
@@ -1851,7 +2972,15 @@ export const addVrtSourceIngestVrtDatasetIdSourcesPost = (options) => (options.c
1851
2972
  * Returns 404 if the source is not linked to the VRT.
1852
2973
  */
1853
2974
  export const removeVrtSourceIngestVrtDatasetIdSourcesSourceDatasetIdDelete = (options) => (options.client ?? client).delete({
1854
- security: [{ scheme: 'bearer', type: 'http' }],
2975
+ security: [
2976
+ { scheme: 'bearer', type: 'http' },
2977
+ { name: 'X-Api-Key', type: 'apiKey' },
2978
+ {
2979
+ in: 'query',
2980
+ name: 'api_key',
2981
+ type: 'apiKey'
2982
+ }
2983
+ ],
1855
2984
  url: '/ingest/vrt/{dataset_id}/sources/{source_dataset_id}/',
1856
2985
  ...options
1857
2986
  });
@@ -1874,7 +3003,15 @@ export const removeVrtSourceIngestVrtDatasetIdSourcesSourceDatasetIdDelete = (op
1874
3003
  * user, to avoid leaking job existence (see visibility check below).
1875
3004
  */
1876
3005
  export const getJobStatusByDatasetJobsByDatasetDatasetIdGet = (options) => (options.client ?? client).get({
1877
- security: [{ scheme: 'bearer', type: 'http' }],
3006
+ security: [
3007
+ { scheme: 'bearer', type: 'http' },
3008
+ { name: 'X-Api-Key', type: 'apiKey' },
3009
+ {
3010
+ in: 'query',
3011
+ name: 'api_key',
3012
+ type: 'apiKey'
3013
+ }
3014
+ ],
1878
3015
  url: '/jobs/by-dataset/{dataset_id}',
1879
3016
  ...options
1880
3017
  });
@@ -1890,7 +3027,15 @@ export const getJobStatusByDatasetJobsByDatasetDatasetIdGet = (options) => (opti
1890
3027
  * that interval.
1891
3028
  */
1892
3029
  export const cleanupStaleJobsJobsCleanupStalePost = (options) => (options?.client ?? client).post({
1893
- security: [{ scheme: 'bearer', type: 'http' }],
3030
+ security: [
3031
+ { scheme: 'bearer', type: 'http' },
3032
+ { name: 'X-Api-Key', type: 'apiKey' },
3033
+ {
3034
+ in: 'query',
3035
+ name: 'api_key',
3036
+ type: 'apiKey'
3037
+ }
3038
+ ],
1894
3039
  url: '/jobs/cleanup/stale/',
1895
3040
  ...options
1896
3041
  });
@@ -1902,7 +3047,15 @@ export const cleanupStaleJobsJobsCleanupStalePost = (options) => (options?.clien
1902
3047
  * Only the job creator or an admin can view job status.
1903
3048
  */
1904
3049
  export const getJobStatusJobsJobIdGet = (options) => (options.client ?? client).get({
1905
- security: [{ scheme: 'bearer', type: 'http' }],
3050
+ security: [
3051
+ { scheme: 'bearer', type: 'http' },
3052
+ { name: 'X-Api-Key', type: 'apiKey' },
3053
+ {
3054
+ in: 'query',
3055
+ name: 'api_key',
3056
+ type: 'apiKey'
3057
+ }
3058
+ ],
1906
3059
  url: '/jobs/{job_id}',
1907
3060
  ...options
1908
3061
  });
@@ -1915,7 +3068,15 @@ export const getJobStatusJobsJobIdGet = (options) => (options.client ?? client).
1915
3068
  * still exist (preserved on failure for retry).
1916
3069
  */
1917
3070
  export const retryJobJobsJobIdRetryPost = (options) => (options.client ?? client).post({
1918
- security: [{ scheme: 'bearer', type: 'http' }],
3071
+ security: [
3072
+ { scheme: 'bearer', type: 'http' },
3073
+ { name: 'X-Api-Key', type: 'apiKey' },
3074
+ {
3075
+ in: 'query',
3076
+ name: 'api_key',
3077
+ type: 'apiKey'
3078
+ }
3079
+ ],
1919
3080
  url: '/jobs/{job_id}/retry',
1920
3081
  ...options
1921
3082
  });
@@ -1931,7 +3092,15 @@ export const retryJobJobsJobIdRetryPost = (options) => (options.client ?? client
1931
3092
  * Requires editor or admin role.
1932
3093
  */
1933
3094
  export const createLayerEndpointLayersPost = (options) => (options.client ?? client).post({
1934
- security: [{ scheme: 'bearer', type: 'http' }],
3095
+ security: [
3096
+ { scheme: 'bearer', type: 'http' },
3097
+ { name: 'X-Api-Key', type: 'apiKey' },
3098
+ {
3099
+ in: 'query',
3100
+ name: 'api_key',
3101
+ type: 'apiKey'
3102
+ }
3103
+ ],
1935
3104
  url: '/layers/',
1936
3105
  ...options,
1937
3106
  headers: {
@@ -1945,7 +3114,15 @@ export const createLayerEndpointLayersPost = (options) => (options.client ?? cli
1945
3114
  * Add a column to an existing layer.
1946
3115
  */
1947
3116
  export const addColumnEndpointLayersDatasetIdColumnsPost = (options) => (options.client ?? client).post({
1948
- security: [{ scheme: 'bearer', type: 'http' }],
3117
+ security: [
3118
+ { scheme: 'bearer', type: 'http' },
3119
+ { name: 'X-Api-Key', type: 'apiKey' },
3120
+ {
3121
+ in: 'query',
3122
+ name: 'api_key',
3123
+ type: 'apiKey'
3124
+ }
3125
+ ],
1949
3126
  url: '/layers/{dataset_id}/columns/',
1950
3127
  ...options,
1951
3128
  headers: {
@@ -1959,7 +3136,15 @@ export const addColumnEndpointLayersDatasetIdColumnsPost = (options) => (options
1959
3136
  * Remove a column from an existing layer.
1960
3137
  */
1961
3138
  export const dropColumnEndpointLayersDatasetIdColumnsColumnNameDelete = (options) => (options.client ?? client).delete({
1962
- security: [{ scheme: 'bearer', type: 'http' }],
3139
+ security: [
3140
+ { scheme: 'bearer', type: 'http' },
3141
+ { name: 'X-Api-Key', type: 'apiKey' },
3142
+ {
3143
+ in: 'query',
3144
+ name: 'api_key',
3145
+ type: 'apiKey'
3146
+ }
3147
+ ],
1963
3148
  url: '/layers/{dataset_id}/columns/{column_name}',
1964
3149
  ...options
1965
3150
  });
@@ -1969,7 +3154,15 @@ export const dropColumnEndpointLayersDatasetIdColumnsColumnNameDelete = (options
1969
3154
  * Rename a column on an existing layer.
1970
3155
  */
1971
3156
  export const renameColumnEndpointLayersDatasetIdColumnsColumnNameNamePatch = (options) => (options.client ?? client).patch({
1972
- security: [{ scheme: 'bearer', type: 'http' }],
3157
+ security: [
3158
+ { scheme: 'bearer', type: 'http' },
3159
+ { name: 'X-Api-Key', type: 'apiKey' },
3160
+ {
3161
+ in: 'query',
3162
+ name: 'api_key',
3163
+ type: 'apiKey'
3164
+ }
3165
+ ],
1973
3166
  url: '/layers/{dataset_id}/columns/{column_name}/name',
1974
3167
  ...options,
1975
3168
  headers: {
@@ -1987,7 +3180,15 @@ export const renameColumnEndpointLayersDatasetIdColumnsColumnNameNamePatch = (op
1987
3180
  * titles may belong to other users and are not exposed here.
1988
3181
  */
1989
3182
  export const columnReferencesEndpointLayersDatasetIdColumnsColumnNameReferencesGet = (options) => (options.client ?? client).get({
1990
- security: [{ scheme: 'bearer', type: 'http' }],
3183
+ security: [
3184
+ { scheme: 'bearer', type: 'http' },
3185
+ { name: 'X-Api-Key', type: 'apiKey' },
3186
+ {
3187
+ in: 'query',
3188
+ name: 'api_key',
3189
+ type: 'apiKey'
3190
+ }
3191
+ ],
1991
3192
  url: '/layers/{dataset_id}/columns/{column_name}/references',
1992
3193
  ...options
1993
3194
  });
@@ -2000,7 +3201,15 @@ export const columnReferencesEndpointLayersDatasetIdColumnsColumnNameReferencesG
2000
3201
  * cast cause the request to fail and roll back.
2001
3202
  */
2002
3203
  export const alterColumnTypeEndpointLayersDatasetIdColumnsColumnNameTypePatch = (options) => (options.client ?? client).patch({
2003
- security: [{ scheme: 'bearer', type: 'http' }],
3204
+ security: [
3205
+ { scheme: 'bearer', type: 'http' },
3206
+ { name: 'X-Api-Key', type: 'apiKey' },
3207
+ {
3208
+ in: 'query',
3209
+ name: 'api_key',
3210
+ type: 'apiKey'
3211
+ }
3212
+ ],
2004
3213
  url: '/layers/{dataset_id}/columns/{column_name}/type',
2005
3214
  ...options,
2006
3215
  headers: {
@@ -2017,7 +3226,15 @@ export const alterColumnTypeEndpointLayersDatasetIdColumnsColumnNameTypePatch =
2017
3226
  * sort_dir (asc/desc), and visibility filter (private/internal/public).
2018
3227
  */
2019
3228
  export const listMapsEndpointMapsGet = (options) => (options?.client ?? client).get({
2020
- security: [{ scheme: 'bearer', type: 'http' }],
3229
+ security: [
3230
+ { scheme: 'bearer', type: 'http' },
3231
+ { name: 'X-Api-Key', type: 'apiKey' },
3232
+ {
3233
+ in: 'query',
3234
+ name: 'api_key',
3235
+ type: 'apiKey'
3236
+ }
3237
+ ],
2021
3238
  url: '/maps/',
2022
3239
  ...options
2023
3240
  });
@@ -2027,7 +3244,15 @@ export const listMapsEndpointMapsGet = (options) => (options?.client ?? client).
2027
3244
  * Create a new map.
2028
3245
  */
2029
3246
  export const createMapEndpointMapsPost = (options) => (options.client ?? client).post({
2030
- security: [{ scheme: 'bearer', type: 'http' }],
3247
+ security: [
3248
+ { scheme: 'bearer', type: 'http' },
3249
+ { name: 'X-Api-Key', type: 'apiKey' },
3250
+ {
3251
+ in: 'query',
3252
+ name: 'api_key',
3253
+ type: 'apiKey'
3254
+ }
3255
+ ],
2031
3256
  url: '/maps/',
2032
3257
  ...options,
2033
3258
  headers: {
@@ -2041,7 +3266,15 @@ export const createMapEndpointMapsPost = (options) => (options.client ?? client)
2041
3266
  * List reusable default and uploaded map icons.
2042
3267
  */
2043
3268
  export const listMapIconsEndpointMapsIconsGet = (options) => (options?.client ?? client).get({
2044
- security: [{ scheme: 'bearer', type: 'http' }],
3269
+ security: [
3270
+ { scheme: 'bearer', type: 'http' },
3271
+ { name: 'X-Api-Key', type: 'apiKey' },
3272
+ {
3273
+ in: 'query',
3274
+ name: 'api_key',
3275
+ type: 'apiKey'
3276
+ }
3277
+ ],
2045
3278
  url: '/maps/icons',
2046
3279
  ...options
2047
3280
  });
@@ -2052,7 +3285,15 @@ export const listMapIconsEndpointMapsIconsGet = (options) => (options?.client ??
2052
3285
  */
2053
3286
  export const uploadMapIconEndpointMapsIconsPost = (options) => (options.client ?? client).post({
2054
3287
  ...formDataBodySerializer,
2055
- security: [{ scheme: 'bearer', type: 'http' }],
3288
+ security: [
3289
+ { scheme: 'bearer', type: 'http' },
3290
+ { name: 'X-Api-Key', type: 'apiKey' },
3291
+ {
3292
+ in: 'query',
3293
+ name: 'api_key',
3294
+ type: 'apiKey'
3295
+ }
3296
+ ],
2056
3297
  url: '/maps/icons',
2057
3298
  ...options,
2058
3299
  headers: {
@@ -2086,7 +3327,15 @@ export const getMapIconAssetEndpointMapsIconsIconIdAssetGet = (options) => (opti
2086
3327
  * request type.
2087
3328
  */
2088
3329
  export const importMapStyleEndpointMapsImportPost = (options) => (options.client ?? client).post({
2089
- security: [{ scheme: 'bearer', type: 'http' }],
3330
+ security: [
3331
+ { scheme: 'bearer', type: 'http' },
3332
+ { name: 'X-Api-Key', type: 'apiKey' },
3333
+ {
3334
+ in: 'query',
3335
+ name: 'api_key',
3336
+ type: 'apiKey'
3337
+ }
3338
+ ],
2090
3339
  url: '/maps/import',
2091
3340
  ...options,
2092
3341
  headers: {
@@ -2109,7 +3358,15 @@ export const importMapStyleEndpointMapsImportPost = (options) => (options.client
2109
3358
  * layers the token's scope authorizes (SEC-022 capability posture).
2110
3359
  */
2111
3360
  export const getSharedMapEndpointMapsSharedTokenGet = (options) => (options.client ?? client).get({
2112
- security: [{ scheme: 'bearer', type: 'http' }],
3361
+ security: [
3362
+ { scheme: 'bearer', type: 'http' },
3363
+ { name: 'X-Api-Key', type: 'apiKey' },
3364
+ {
3365
+ in: 'query',
3366
+ name: 'api_key',
3367
+ type: 'apiKey'
3368
+ }
3369
+ ],
2113
3370
  url: '/maps/shared/{token}',
2114
3371
  ...options
2115
3372
  });
@@ -2131,7 +3388,15 @@ export const getGeolensSpritePngEndpointMapsSpritesGeolensPngGet = (options) =>
2131
3388
  * Delete a map. Only the owner or an admin can delete.
2132
3389
  */
2133
3390
  export const deleteMapEndpointMapsMapIdDelete = (options) => (options.client ?? client).delete({
2134
- security: [{ scheme: 'bearer', type: 'http' }],
3391
+ security: [
3392
+ { scheme: 'bearer', type: 'http' },
3393
+ { name: 'X-Api-Key', type: 'apiKey' },
3394
+ {
3395
+ in: 'query',
3396
+ name: 'api_key',
3397
+ type: 'apiKey'
3398
+ }
3399
+ ],
2135
3400
  url: '/maps/{map_id}',
2136
3401
  ...options
2137
3402
  });
@@ -2141,7 +3406,15 @@ export const deleteMapEndpointMapsMapIdDelete = (options) => (options.client ??
2141
3406
  * Get a single map with its layers.
2142
3407
  */
2143
3408
  export const getMapEndpointMapsMapIdGet = (options) => (options.client ?? client).get({
2144
- security: [{ scheme: 'bearer', type: 'http' }],
3409
+ security: [
3410
+ { scheme: 'bearer', type: 'http' },
3411
+ { name: 'X-Api-Key', type: 'apiKey' },
3412
+ {
3413
+ in: 'query',
3414
+ name: 'api_key',
3415
+ type: 'apiKey'
3416
+ }
3417
+ ],
2145
3418
  url: '/maps/{map_id}',
2146
3419
  ...options
2147
3420
  });
@@ -2151,7 +3424,15 @@ export const getMapEndpointMapsMapIdGet = (options) => (options.client ?? client
2151
3424
  * Update a map's metadata and/or replace its layers.
2152
3425
  */
2153
3426
  export const updateMapEndpointMapsMapIdPut = (options) => (options.client ?? client).put({
2154
- security: [{ scheme: 'bearer', type: 'http' }],
3427
+ security: [
3428
+ { scheme: 'bearer', type: 'http' },
3429
+ { name: 'X-Api-Key', type: 'apiKey' },
3430
+ {
3431
+ in: 'query',
3432
+ name: 'api_key',
3433
+ type: 'apiKey'
3434
+ }
3435
+ ],
2155
3436
  url: '/maps/{map_id}',
2156
3437
  ...options,
2157
3438
  headers: {
@@ -2165,7 +3446,15 @@ export const updateMapEndpointMapsMapIdPut = (options) => (options.client ?? cli
2165
3446
  * Return server-confirmed route access for the map viewer gate.
2166
3447
  */
2167
3448
  export const getMapAccessEndpointMapsMapIdAccessGet = (options) => (options.client ?? client).get({
2168
- security: [{ scheme: 'bearer', type: 'http' }],
3449
+ security: [
3450
+ { scheme: 'bearer', type: 'http' },
3451
+ { name: 'X-Api-Key', type: 'apiKey' },
3452
+ {
3453
+ in: 'query',
3454
+ name: 'api_key',
3455
+ type: 'apiKey'
3456
+ }
3457
+ ],
2169
3458
  url: '/maps/{map_id}/access/',
2170
3459
  ...options
2171
3460
  });
@@ -2175,7 +3464,15 @@ export const getMapAccessEndpointMapsMapIdAccessGet = (options) => (options.clie
2175
3464
  * Fork a map with RBAC-filtered layers. Any authenticated user can fork.
2176
3465
  */
2177
3466
  export const duplicateMapEndpointMapsMapIdDuplicatePost = (options) => (options.client ?? client).post({
2178
- security: [{ scheme: 'bearer', type: 'http' }],
3467
+ security: [
3468
+ { scheme: 'bearer', type: 'http' },
3469
+ { name: 'X-Api-Key', type: 'apiKey' },
3470
+ {
3471
+ in: 'query',
3472
+ name: 'api_key',
3473
+ type: 'apiKey'
3474
+ }
3475
+ ],
2179
3476
  url: '/maps/{map_id}/duplicate/',
2180
3477
  ...options
2181
3478
  });
@@ -2185,7 +3482,15 @@ export const duplicateMapEndpointMapsMapIdDuplicatePost = (options) => (options.
2185
3482
  * List all embed tokens for a map.
2186
3483
  */
2187
3484
  export const listEmbedTokensEndpointMapsMapIdEmbedTokensGet = (options) => (options.client ?? client).get({
2188
- security: [{ scheme: 'bearer', type: 'http' }],
3485
+ security: [
3486
+ { scheme: 'bearer', type: 'http' },
3487
+ { name: 'X-Api-Key', type: 'apiKey' },
3488
+ {
3489
+ in: 'query',
3490
+ name: 'api_key',
3491
+ type: 'apiKey'
3492
+ }
3493
+ ],
2189
3494
  url: '/maps/{map_id}/embed-tokens/',
2190
3495
  ...options
2191
3496
  });
@@ -2198,7 +3503,15 @@ export const listEmbedTokensEndpointMapsMapIdEmbedTokensGet = (options) => (opti
2198
3503
  * and non-empty origin restrictions require advanced sharing controls.
2199
3504
  */
2200
3505
  export const createEmbedTokenEndpointMapsMapIdEmbedTokensPost = (options) => (options.client ?? client).post({
2201
- security: [{ scheme: 'bearer', type: 'http' }],
3506
+ security: [
3507
+ { scheme: 'bearer', type: 'http' },
3508
+ { name: 'X-Api-Key', type: 'apiKey' },
3509
+ {
3510
+ in: 'query',
3511
+ name: 'api_key',
3512
+ type: 'apiKey'
3513
+ }
3514
+ ],
2202
3515
  url: '/maps/{map_id}/embed-tokens/',
2203
3516
  ...options,
2204
3517
  headers: {
@@ -2212,7 +3525,15 @@ export const createEmbedTokenEndpointMapsMapIdEmbedTokensPost = (options) => (op
2212
3525
  * Revoke an embed token.
2213
3526
  */
2214
3527
  export const revokeEmbedTokenEndpointMapsMapIdEmbedTokensTokenIdDelete = (options) => (options.client ?? client).delete({
2215
- security: [{ scheme: 'bearer', type: 'http' }],
3528
+ security: [
3529
+ { scheme: 'bearer', type: 'http' },
3530
+ { name: 'X-Api-Key', type: 'apiKey' },
3531
+ {
3532
+ in: 'query',
3533
+ name: 'api_key',
3534
+ type: 'apiKey'
3535
+ }
3536
+ ],
2216
3537
  url: '/maps/{map_id}/embed-tokens/{token_id}/',
2217
3538
  ...options
2218
3539
  });
@@ -2224,7 +3545,15 @@ export const revokeEmbedTokenEndpointMapsMapIdEmbedTokensTokenIdDelete = (option
2224
3545
  * Null clears restrictions. Non-empty origin restrictions require advanced sharing controls.
2225
3546
  */
2226
3547
  export const updateEmbedTokenEndpointMapsMapIdEmbedTokensTokenIdPatch = (options) => (options.client ?? client).patch({
2227
- security: [{ scheme: 'bearer', type: 'http' }],
3548
+ security: [
3549
+ { scheme: 'bearer', type: 'http' },
3550
+ { name: 'X-Api-Key', type: 'apiKey' },
3551
+ {
3552
+ in: 'query',
3553
+ name: 'api_key',
3554
+ type: 'apiKey'
3555
+ }
3556
+ ],
2228
3557
  url: '/maps/{map_id}/embed-tokens/{token_id}/',
2229
3558
  ...options,
2230
3559
  headers: {
@@ -2238,7 +3567,15 @@ export const updateEmbedTokenEndpointMapsMapIdEmbedTokensTokenIdPatch = (options
2238
3567
  * Return recent builder edit history for a map.
2239
3568
  */
2240
3569
  export const getMapHistoryEndpointMapsMapIdHistoryGet = (options) => (options.client ?? client).get({
2241
- security: [{ scheme: 'bearer', type: 'http' }],
3570
+ security: [
3571
+ { scheme: 'bearer', type: 'http' },
3572
+ { name: 'X-Api-Key', type: 'apiKey' },
3573
+ {
3574
+ in: 'query',
3575
+ name: 'api_key',
3576
+ type: 'apiKey'
3577
+ }
3578
+ ],
2242
3579
  url: '/maps/{map_id}/history',
2243
3580
  ...options
2244
3581
  });
@@ -2257,7 +3594,15 @@ export const getMapHistoryEndpointMapsMapIdHistoryGet = (options) => (options.cl
2257
3594
  * the trailing-slash form is a hidden alias.
2258
3595
  */
2259
3596
  export const patchMapLayersEndpointMapsMapIdLayersPatch = (options) => (options.client ?? client).patch({
2260
- security: [{ scheme: 'bearer', type: 'http' }],
3597
+ security: [
3598
+ { scheme: 'bearer', type: 'http' },
3599
+ { name: 'X-Api-Key', type: 'apiKey' },
3600
+ {
3601
+ in: 'query',
3602
+ name: 'api_key',
3603
+ type: 'apiKey'
3604
+ }
3605
+ ],
2261
3606
  url: '/maps/{map_id}/layers',
2262
3607
  ...options,
2263
3608
  headers: {
@@ -2280,7 +3625,15 @@ export const patchMapLayersEndpointMapsMapIdLayersPatch = (options) => (options.
2280
3625
  * hidden alias for callers that send the slash.
2281
3626
  */
2282
3627
  export const addLayerEndpointMapsMapIdLayersPost = (options) => (options.client ?? client).post({
2283
- security: [{ scheme: 'bearer', type: 'http' }],
3628
+ security: [
3629
+ { scheme: 'bearer', type: 'http' },
3630
+ { name: 'X-Api-Key', type: 'apiKey' },
3631
+ {
3632
+ in: 'query',
3633
+ name: 'api_key',
3634
+ type: 'apiKey'
3635
+ }
3636
+ ],
2284
3637
  url: '/maps/{map_id}/layers',
2285
3638
  ...options,
2286
3639
  headers: {
@@ -2302,7 +3655,15 @@ export const addLayerEndpointMapsMapIdLayersPost = (options) => (options.client
2302
3655
  * responsibility if all ids fail.
2303
3656
  */
2304
3657
  export const bulkDeleteLayersEndpointMapsMapIdLayersBulkDeletePost = (options) => (options.client ?? client).post({
2305
- security: [{ scheme: 'bearer', type: 'http' }],
3658
+ security: [
3659
+ { scheme: 'bearer', type: 'http' },
3660
+ { name: 'X-Api-Key', type: 'apiKey' },
3661
+ {
3662
+ in: 'query',
3663
+ name: 'api_key',
3664
+ type: 'apiKey'
3665
+ }
3666
+ ],
2306
3667
  url: '/maps/{map_id}/layers/bulk-delete',
2307
3668
  ...options,
2308
3669
  headers: {
@@ -2316,7 +3677,15 @@ export const bulkDeleteLayersEndpointMapsMapIdLayersBulkDeletePost = (options) =
2316
3677
  * Remove a layer from a map.
2317
3678
  */
2318
3679
  export const removeLayerEndpointMapsMapIdLayersLayerIdDelete = (options) => (options.client ?? client).delete({
2319
- security: [{ scheme: 'bearer', type: 'http' }],
3680
+ security: [
3681
+ { scheme: 'bearer', type: 'http' },
3682
+ { name: 'X-Api-Key', type: 'apiKey' },
3683
+ {
3684
+ in: 'query',
3685
+ name: 'api_key',
3686
+ type: 'apiKey'
3687
+ }
3688
+ ],
2320
3689
  url: '/maps/{map_id}/layers/{layer_id}',
2321
3690
  ...options
2322
3691
  });
@@ -2330,7 +3699,15 @@ export const removeLayerEndpointMapsMapIdLayersLayerIdDelete = (options) => (opt
2330
3699
  * but reads ``og_image_uri`` and uses the ``maps/og-images/`` key space.
2331
3700
  */
2332
3701
  export const getOgImageMapsMapIdOgImageGet = (options) => (options.client ?? client).get({
2333
- security: [{ scheme: 'bearer', type: 'http' }],
3702
+ security: [
3703
+ { scheme: 'bearer', type: 'http' },
3704
+ { name: 'X-Api-Key', type: 'apiKey' },
3705
+ {
3706
+ in: 'query',
3707
+ name: 'api_key',
3708
+ type: 'apiKey'
3709
+ }
3710
+ ],
2334
3711
  url: '/maps/{map_id}/og-image/',
2335
3712
  ...options
2336
3713
  });
@@ -2351,7 +3728,15 @@ export const getOgImageMapsMapIdOgImageGet = (options) => (options.client ?? cli
2351
3728
  * contract. Auth and PIL-verify rules are identical to upload_thumbnail.
2352
3729
  */
2353
3730
  export const uploadOgImageMapsMapIdOgImagePut = (options) => (options.client ?? client).put({
2354
- security: [{ scheme: 'bearer', type: 'http' }],
3731
+ security: [
3732
+ { scheme: 'bearer', type: 'http' },
3733
+ { name: 'X-Api-Key', type: 'apiKey' },
3734
+ {
3735
+ in: 'query',
3736
+ name: 'api_key',
3737
+ type: 'apiKey'
3738
+ }
3739
+ ],
2355
3740
  url: '/maps/{map_id}/og-image/',
2356
3741
  ...options,
2357
3742
  headers: {
@@ -2365,7 +3750,15 @@ export const uploadOgImageMapsMapIdOgImagePut = (options) => (options.client ??
2365
3750
  * Revoke share token(s) for a map. Owner or admin only.
2366
3751
  */
2367
3752
  export const revokeMapShareEndpointMapsMapIdShareDelete = (options) => (options.client ?? client).delete({
2368
- security: [{ scheme: 'bearer', type: 'http' }],
3753
+ security: [
3754
+ { scheme: 'bearer', type: 'http' },
3755
+ { name: 'X-Api-Key', type: 'apiKey' },
3756
+ {
3757
+ in: 'query',
3758
+ name: 'api_key',
3759
+ type: 'apiKey'
3760
+ }
3761
+ ],
2369
3762
  url: '/maps/{map_id}/share/',
2370
3763
  ...options
2371
3764
  });
@@ -2375,7 +3768,15 @@ export const revokeMapShareEndpointMapsMapIdShareDelete = (options) => (options.
2375
3768
  * Return the active share token for a map, or null if none exists.
2376
3769
  */
2377
3770
  export const getMapShareTokenEndpointMapsMapIdShareGet = (options) => (options.client ?? client).get({
2378
- security: [{ scheme: 'bearer', type: 'http' }],
3771
+ security: [
3772
+ { scheme: 'bearer', type: 'http' },
3773
+ { name: 'X-Api-Key', type: 'apiKey' },
3774
+ {
3775
+ in: 'query',
3776
+ name: 'api_key',
3777
+ type: 'apiKey'
3778
+ }
3779
+ ],
2379
3780
  url: '/maps/{map_id}/share/',
2380
3781
  ...options
2381
3782
  });
@@ -2384,10 +3785,18 @@ export const getMapShareTokenEndpointMapsMapIdShareGet = (options) => (options.c
2384
3785
  *
2385
3786
  * Update expiration on an existing share token. Owner or admin only.
2386
3787
  *
2387
- * Null clears expiration.
3788
+ * A fixed-day preset is always available. Null clears expiration.
2388
3789
  */
2389
3790
  export const updateMapShareTokenEndpointMapsMapIdSharePatch = (options) => (options.client ?? client).patch({
2390
- security: [{ scheme: 'bearer', type: 'http' }],
3791
+ security: [
3792
+ { scheme: 'bearer', type: 'http' },
3793
+ { name: 'X-Api-Key', type: 'apiKey' },
3794
+ {
3795
+ in: 'query',
3796
+ name: 'api_key',
3797
+ type: 'apiKey'
3798
+ }
3799
+ ],
2391
3800
  url: '/maps/{map_id}/share/',
2392
3801
  ...options,
2393
3802
  headers: {
@@ -2401,7 +3810,15 @@ export const updateMapShareTokenEndpointMapsMapIdSharePatch = (options) => (opti
2401
3810
  * Create or retrieve a share token for a public map.
2402
3811
  */
2403
3812
  export const shareMapEndpointMapsMapIdSharePost = (options) => (options.client ?? client).post({
2404
- security: [{ scheme: 'bearer', type: 'http' }],
3813
+ security: [
3814
+ { scheme: 'bearer', type: 'http' },
3815
+ { name: 'X-Api-Key', type: 'apiKey' },
3816
+ {
3817
+ in: 'query',
3818
+ name: 'api_key',
3819
+ type: 'apiKey'
3820
+ }
3821
+ ],
2405
3822
  url: '/maps/{map_id}/share/',
2406
3823
  ...options,
2407
3824
  headers: {
@@ -2415,7 +3832,15 @@ export const shareMapEndpointMapsMapIdSharePost = (options) => (options.client ?
2415
3832
  * Export a saved map as a complete MapLibre style JSON document.
2416
3833
  */
2417
3834
  export const exportMapStyleEndpointMapsMapIdStyleJsonGet = (options) => (options.client ?? client).get({
2418
- security: [{ scheme: 'bearer', type: 'http' }],
3835
+ security: [
3836
+ { scheme: 'bearer', type: 'http' },
3837
+ { name: 'X-Api-Key', type: 'apiKey' },
3838
+ {
3839
+ in: 'query',
3840
+ name: 'api_key',
3841
+ type: 'apiKey'
3842
+ }
3843
+ ],
2419
3844
  url: '/maps/{map_id}/style.json',
2420
3845
  ...options
2421
3846
  });
@@ -2425,7 +3850,15 @@ export const exportMapStyleEndpointMapsMapIdStyleJsonGet = (options) => (options
2425
3850
  * Serve map thumbnail image from storage (visibility-checked).
2426
3851
  */
2427
3852
  export const getThumbnailMapsMapIdThumbnailGet = (options) => (options.client ?? client).get({
2428
- security: [{ scheme: 'bearer', type: 'http' }],
3853
+ security: [
3854
+ { scheme: 'bearer', type: 'http' },
3855
+ { name: 'X-Api-Key', type: 'apiKey' },
3856
+ {
3857
+ in: 'query',
3858
+ name: 'api_key',
3859
+ type: 'apiKey'
3860
+ }
3861
+ ],
2429
3862
  url: '/maps/{map_id}/thumbnail/',
2430
3863
  ...options
2431
3864
  });
@@ -2438,7 +3871,15 @@ export const getThumbnailMapsMapIdThumbnailGet = (options) => (options.client ??
2438
3871
  * bytes to the configured storage provider, and stores the storage key.
2439
3872
  */
2440
3873
  export const uploadThumbnailMapsMapIdThumbnailPut = (options) => (options.client ?? client).put({
2441
- security: [{ scheme: 'bearer', type: 'http' }],
3874
+ security: [
3875
+ { scheme: 'bearer', type: 'http' },
3876
+ { name: 'X-Api-Key', type: 'apiKey' },
3877
+ {
3878
+ in: 'query',
3879
+ name: 'api_key',
3880
+ type: 'apiKey'
3881
+ }
3882
+ ],
2442
3883
  url: '/maps/{map_id}/thumbnail/',
2443
3884
  ...options,
2444
3885
  headers: {
@@ -2452,7 +3893,15 @@ export const uploadThumbnailMapsMapIdThumbnailPut = (options) => (options.client
2452
3893
  * Check if a map has non-public datasets. Informational only.
2453
3894
  */
2454
3895
  export const visibilityCheckEndpointMapsMapIdVisibilityCheckGet = (options) => (options.client ?? client).get({
2455
- security: [{ scheme: 'bearer', type: 'http' }],
3896
+ security: [
3897
+ { scheme: 'bearer', type: 'http' },
3898
+ { name: 'X-Api-Key', type: 'apiKey' },
3899
+ {
3900
+ in: 'query',
3901
+ name: 'api_key',
3902
+ type: 'apiKey'
3903
+ }
3904
+ ],
2456
3905
  url: '/maps/{map_id}/visibility-check/',
2457
3906
  ...options
2458
3907
  });
@@ -2462,7 +3911,15 @@ export const visibilityCheckEndpointMapsMapIdVisibilityCheckGet = (options) => (
2462
3911
  * List all contacts for a record.
2463
3912
  */
2464
3913
  export const listContactsEndpointRecordsRecordIdContactsGet = (options) => (options.client ?? client).get({
2465
- security: [{ scheme: 'bearer', type: 'http' }],
3914
+ security: [
3915
+ { scheme: 'bearer', type: 'http' },
3916
+ { name: 'X-Api-Key', type: 'apiKey' },
3917
+ {
3918
+ in: 'query',
3919
+ name: 'api_key',
3920
+ type: 'apiKey'
3921
+ }
3922
+ ],
2466
3923
  url: '/records/{record_id}/contacts/',
2467
3924
  ...options
2468
3925
  });
@@ -2472,7 +3929,15 @@ export const listContactsEndpointRecordsRecordIdContactsGet = (options) => (opti
2472
3929
  * Create a new contact for a record.
2473
3930
  */
2474
3931
  export const createContactEndpointRecordsRecordIdContactsPost = (options) => (options.client ?? client).post({
2475
- security: [{ scheme: 'bearer', type: 'http' }],
3932
+ security: [
3933
+ { scheme: 'bearer', type: 'http' },
3934
+ { name: 'X-Api-Key', type: 'apiKey' },
3935
+ {
3936
+ in: 'query',
3937
+ name: 'api_key',
3938
+ type: 'apiKey'
3939
+ }
3940
+ ],
2476
3941
  url: '/records/{record_id}/contacts/',
2477
3942
  ...options,
2478
3943
  headers: {
@@ -2486,7 +3951,15 @@ export const createContactEndpointRecordsRecordIdContactsPost = (options) => (op
2486
3951
  * Delete a contact.
2487
3952
  */
2488
3953
  export const deleteContactEndpointRecordsRecordIdContactsContactIdDelete = (options) => (options.client ?? client).delete({
2489
- security: [{ scheme: 'bearer', type: 'http' }],
3954
+ security: [
3955
+ { scheme: 'bearer', type: 'http' },
3956
+ { name: 'X-Api-Key', type: 'apiKey' },
3957
+ {
3958
+ in: 'query',
3959
+ name: 'api_key',
3960
+ type: 'apiKey'
3961
+ }
3962
+ ],
2490
3963
  url: '/records/{record_id}/contacts/{contact_id}/',
2491
3964
  ...options
2492
3965
  });
@@ -2496,7 +3969,15 @@ export const deleteContactEndpointRecordsRecordIdContactsContactIdDelete = (opti
2496
3969
  * Update a contact.
2497
3970
  */
2498
3971
  export const updateContactEndpointRecordsRecordIdContactsContactIdPatch = (options) => (options.client ?? client).patch({
2499
- security: [{ scheme: 'bearer', type: 'http' }],
3972
+ security: [
3973
+ { scheme: 'bearer', type: 'http' },
3974
+ { name: 'X-Api-Key', type: 'apiKey' },
3975
+ {
3976
+ in: 'query',
3977
+ name: 'api_key',
3978
+ type: 'apiKey'
3979
+ }
3980
+ ],
2500
3981
  url: '/records/{record_id}/contacts/{contact_id}/',
2501
3982
  ...options,
2502
3983
  headers: {
@@ -2510,7 +3991,15 @@ export const updateContactEndpointRecordsRecordIdContactsContactIdPatch = (optio
2510
3991
  * List all distributions for a record.
2511
3992
  */
2512
3993
  export const listDistributionsEndpointRecordsRecordIdDistributionsGet = (options) => (options.client ?? client).get({
2513
- security: [{ scheme: 'bearer', type: 'http' }],
3994
+ security: [
3995
+ { scheme: 'bearer', type: 'http' },
3996
+ { name: 'X-Api-Key', type: 'apiKey' },
3997
+ {
3998
+ in: 'query',
3999
+ name: 'api_key',
4000
+ type: 'apiKey'
4001
+ }
4002
+ ],
2514
4003
  url: '/records/{record_id}/distributions/',
2515
4004
  ...options
2516
4005
  });
@@ -2520,7 +4009,15 @@ export const listDistributionsEndpointRecordsRecordIdDistributionsGet = (options
2520
4009
  * Create a manual distribution for a record.
2521
4010
  */
2522
4011
  export const createDistributionEndpointRecordsRecordIdDistributionsPost = (options) => (options.client ?? client).post({
2523
- security: [{ scheme: 'bearer', type: 'http' }],
4012
+ security: [
4013
+ { scheme: 'bearer', type: 'http' },
4014
+ { name: 'X-Api-Key', type: 'apiKey' },
4015
+ {
4016
+ in: 'query',
4017
+ name: 'api_key',
4018
+ type: 'apiKey'
4019
+ }
4020
+ ],
2524
4021
  url: '/records/{record_id}/distributions/',
2525
4022
  ...options,
2526
4023
  headers: {
@@ -2534,7 +4031,15 @@ export const createDistributionEndpointRecordsRecordIdDistributionsPost = (optio
2534
4031
  * Delete a distribution (manual only; auto-generated distributions are immutable).
2535
4032
  */
2536
4033
  export const deleteDistributionEndpointRecordsRecordIdDistributionsDistributionIdDelete = (options) => (options.client ?? client).delete({
2537
- security: [{ scheme: 'bearer', type: 'http' }],
4034
+ security: [
4035
+ { scheme: 'bearer', type: 'http' },
4036
+ { name: 'X-Api-Key', type: 'apiKey' },
4037
+ {
4038
+ in: 'query',
4039
+ name: 'api_key',
4040
+ type: 'apiKey'
4041
+ }
4042
+ ],
2538
4043
  url: '/records/{record_id}/distributions/{distribution_id}/',
2539
4044
  ...options
2540
4045
  });
@@ -2544,7 +4049,15 @@ export const deleteDistributionEndpointRecordsRecordIdDistributionsDistributionI
2544
4049
  * Update a distribution (manual only; auto-generated distributions are immutable).
2545
4050
  */
2546
4051
  export const updateDistributionEndpointRecordsRecordIdDistributionsDistributionIdPatch = (options) => (options.client ?? client).patch({
2547
- security: [{ scheme: 'bearer', type: 'http' }],
4052
+ security: [
4053
+ { scheme: 'bearer', type: 'http' },
4054
+ { name: 'X-Api-Key', type: 'apiKey' },
4055
+ {
4056
+ in: 'query',
4057
+ name: 'api_key',
4058
+ type: 'apiKey'
4059
+ }
4060
+ ],
2548
4061
  url: '/records/{record_id}/distributions/{distribution_id}/',
2549
4062
  ...options,
2550
4063
  headers: {
@@ -2558,7 +4071,15 @@ export const updateDistributionEndpointRecordsRecordIdDistributionsDistributionI
2558
4071
  * List all keywords for a record.
2559
4072
  */
2560
4073
  export const listKeywordsEndpointRecordsRecordIdKeywordsGet = (options) => (options.client ?? client).get({
2561
- security: [{ scheme: 'bearer', type: 'http' }],
4074
+ security: [
4075
+ { scheme: 'bearer', type: 'http' },
4076
+ { name: 'X-Api-Key', type: 'apiKey' },
4077
+ {
4078
+ in: 'query',
4079
+ name: 'api_key',
4080
+ type: 'apiKey'
4081
+ }
4082
+ ],
2562
4083
  url: '/records/{record_id}/keywords/',
2563
4084
  ...options
2564
4085
  });
@@ -2568,7 +4089,15 @@ export const listKeywordsEndpointRecordsRecordIdKeywordsGet = (options) => (opti
2568
4089
  * Create a new keyword for a record.
2569
4090
  */
2570
4091
  export const createKeywordEndpointRecordsRecordIdKeywordsPost = (options) => (options.client ?? client).post({
2571
- security: [{ scheme: 'bearer', type: 'http' }],
4092
+ security: [
4093
+ { scheme: 'bearer', type: 'http' },
4094
+ { name: 'X-Api-Key', type: 'apiKey' },
4095
+ {
4096
+ in: 'query',
4097
+ name: 'api_key',
4098
+ type: 'apiKey'
4099
+ }
4100
+ ],
2572
4101
  url: '/records/{record_id}/keywords/',
2573
4102
  ...options,
2574
4103
  headers: {
@@ -2582,17 +4111,91 @@ export const createKeywordEndpointRecordsRecordIdKeywordsPost = (options) => (op
2582
4111
  * Delete a keyword.
2583
4112
  */
2584
4113
  export const deleteKeywordEndpointRecordsRecordIdKeywordsKeywordIdDelete = (options) => (options.client ?? client).delete({
2585
- security: [{ scheme: 'bearer', type: 'http' }],
4114
+ security: [
4115
+ { scheme: 'bearer', type: 'http' },
4116
+ { name: 'X-Api-Key', type: 'apiKey' },
4117
+ {
4118
+ in: 'query',
4119
+ name: 'api_key',
4120
+ type: 'apiKey'
4121
+ }
4122
+ ],
2586
4123
  url: '/records/{record_id}/keywords/{keyword_id}/',
2587
4124
  ...options
2588
4125
  });
4126
+ /**
4127
+ * List Translations Endpoint
4128
+ *
4129
+ * List localized title/summary variants visible with the parent record.
4130
+ */
4131
+ export const listTranslationsEndpointRecordsRecordIdTranslationsGet = (options) => (options.client ?? client).get({
4132
+ security: [
4133
+ { scheme: 'bearer', type: 'http' },
4134
+ { name: 'X-Api-Key', type: 'apiKey' },
4135
+ {
4136
+ in: 'query',
4137
+ name: 'api_key',
4138
+ type: 'apiKey'
4139
+ }
4140
+ ],
4141
+ url: '/records/{record_id}/translations/',
4142
+ ...options
4143
+ });
4144
+ /**
4145
+ * Delete Translation Endpoint
4146
+ *
4147
+ * Delete one localized title/summary variant.
4148
+ */
4149
+ export const deleteTranslationEndpointRecordsRecordIdTranslationsLanguageDelete = (options) => (options.client ?? client).delete({
4150
+ security: [
4151
+ { scheme: 'bearer', type: 'http' },
4152
+ { name: 'X-Api-Key', type: 'apiKey' },
4153
+ {
4154
+ in: 'query',
4155
+ name: 'api_key',
4156
+ type: 'apiKey'
4157
+ }
4158
+ ],
4159
+ url: '/records/{record_id}/translations/{language}/',
4160
+ ...options
4161
+ });
4162
+ /**
4163
+ * Upsert Translation Endpoint
4164
+ *
4165
+ * Create or replace one localized title/summary variant.
4166
+ */
4167
+ export const upsertTranslationEndpointRecordsRecordIdTranslationsLanguagePut = (options) => (options.client ?? client).put({
4168
+ security: [
4169
+ { scheme: 'bearer', type: 'http' },
4170
+ { name: 'X-Api-Key', type: 'apiKey' },
4171
+ {
4172
+ in: 'query',
4173
+ name: 'api_key',
4174
+ type: 'apiKey'
4175
+ }
4176
+ ],
4177
+ url: '/records/{record_id}/translations/{language}/',
4178
+ ...options,
4179
+ headers: {
4180
+ 'Content-Type': 'application/json',
4181
+ ...options.headers
4182
+ }
4183
+ });
2589
4184
  /**
2590
4185
  * Search Datasets Endpoint
2591
4186
  *
2592
4187
  * Search datasets with text, spatial, and faceted filters.
2593
4188
  */
2594
4189
  export const searchDatasetsEndpointSearchDatasetsGet = (options) => (options?.client ?? client).get({
2595
- security: [{ scheme: 'bearer', type: 'http' }],
4190
+ security: [
4191
+ { scheme: 'bearer', type: 'http' },
4192
+ { name: 'X-Api-Key', type: 'apiKey' },
4193
+ {
4194
+ in: 'query',
4195
+ name: 'api_key',
4196
+ type: 'apiKey'
4197
+ }
4198
+ ],
2596
4199
  url: '/search/datasets/',
2597
4200
  ...options,
2598
4201
  headers: {
@@ -2606,7 +4209,15 @@ export const searchDatasetsEndpointSearchDatasetsGet = (options) => (options?.cl
2606
4209
  * Return record_type facet counts for the given filters.
2607
4210
  */
2608
4211
  export const searchFacetsEndpointSearchFacetsGet = (options) => (options?.client ?? client).get({
2609
- security: [{ scheme: 'bearer', type: 'http' }],
4212
+ security: [
4213
+ { scheme: 'bearer', type: 'http' },
4214
+ { name: 'X-Api-Key', type: 'apiKey' },
4215
+ {
4216
+ in: 'query',
4217
+ name: 'api_key',
4218
+ type: 'apiKey'
4219
+ }
4220
+ ],
2610
4221
  url: '/search/facets/',
2611
4222
  ...options
2612
4223
  });
@@ -2616,7 +4227,15 @@ export const searchFacetsEndpointSearchFacetsGet = (options) => (options?.client
2616
4227
  * List saved searches for the authenticated user.
2617
4228
  */
2618
4229
  export const listSavedSearchesEndpointSearchSavedGet = (options) => (options?.client ?? client).get({
2619
- security: [{ scheme: 'bearer', type: 'http' }],
4230
+ security: [
4231
+ { scheme: 'bearer', type: 'http' },
4232
+ { name: 'X-Api-Key', type: 'apiKey' },
4233
+ {
4234
+ in: 'query',
4235
+ name: 'api_key',
4236
+ type: 'apiKey'
4237
+ }
4238
+ ],
2620
4239
  url: '/search/saved/',
2621
4240
  ...options
2622
4241
  });
@@ -2626,7 +4245,15 @@ export const listSavedSearchesEndpointSearchSavedGet = (options) => (options?.cl
2626
4245
  * Save a search query with a name for later reuse.
2627
4246
  */
2628
4247
  export const createSavedSearchEndpointSearchSavedPost = (options) => (options.client ?? client).post({
2629
- security: [{ scheme: 'bearer', type: 'http' }],
4248
+ security: [
4249
+ { scheme: 'bearer', type: 'http' },
4250
+ { name: 'X-Api-Key', type: 'apiKey' },
4251
+ {
4252
+ in: 'query',
4253
+ name: 'api_key',
4254
+ type: 'apiKey'
4255
+ }
4256
+ ],
2630
4257
  url: '/search/saved/',
2631
4258
  ...options,
2632
4259
  headers: {
@@ -2640,7 +4267,15 @@ export const createSavedSearchEndpointSearchSavedPost = (options) => (options.cl
2640
4267
  * Delete a saved search.
2641
4268
  */
2642
4269
  export const deleteSavedSearchEndpointSearchSavedSearchIdDelete = (options) => (options.client ?? client).delete({
2643
- security: [{ scheme: 'bearer', type: 'http' }],
4270
+ security: [
4271
+ { scheme: 'bearer', type: 'http' },
4272
+ { name: 'X-Api-Key', type: 'apiKey' },
4273
+ {
4274
+ in: 'query',
4275
+ name: 'api_key',
4276
+ type: 'apiKey'
4277
+ }
4278
+ ],
2644
4279
  url: '/search/saved/{search_id}',
2645
4280
  ...options
2646
4281
  });
@@ -2650,10 +4285,83 @@ export const deleteSavedSearchEndpointSearchSavedSearchIdDelete = (options) => (
2650
4285
  * Get a single saved search by ID.
2651
4286
  */
2652
4287
  export const getSavedSearchEndpointSearchSavedSearchIdGet = (options) => (options.client ?? client).get({
2653
- security: [{ scheme: 'bearer', type: 'http' }],
4288
+ security: [
4289
+ { scheme: 'bearer', type: 'http' },
4290
+ { name: 'X-Api-Key', type: 'apiKey' },
4291
+ {
4292
+ in: 'query',
4293
+ name: 'api_key',
4294
+ type: 'apiKey'
4295
+ }
4296
+ ],
2654
4297
  url: '/search/saved/{search_id}',
2655
4298
  ...options
2656
4299
  });
4300
+ /**
4301
+ * List Connectors Endpoint
4302
+ *
4303
+ * List persistent connectors supplied by an installed overlay.
4304
+ *
4305
+ * Community's no-op extension returns an empty list; one-shot WFS, OGC API,
4306
+ * ArcGIS, and STAC imports remain on their existing free endpoints.
4307
+ */
4308
+ export const listConnectorsEndpointServicesConnectorsGet = (options) => (options?.client ?? client).get({
4309
+ security: [
4310
+ { scheme: 'bearer', type: 'http' },
4311
+ { name: 'X-Api-Key', type: 'apiKey' },
4312
+ {
4313
+ in: 'query',
4314
+ name: 'api_key',
4315
+ type: 'apiKey'
4316
+ }
4317
+ ],
4318
+ url: '/services/connectors/',
4319
+ ...options
4320
+ });
4321
+ /**
4322
+ * Discover Connector Resources Endpoint
4323
+ *
4324
+ * Validate connector config and discover non-secret source resources.
4325
+ */
4326
+ export const discoverConnectorResourcesEndpointServicesConnectorsConnectorNameDiscoverPost = (options) => (options.client ?? client).post({
4327
+ security: [
4328
+ { scheme: 'bearer', type: 'http' },
4329
+ { name: 'X-Api-Key', type: 'apiKey' },
4330
+ {
4331
+ in: 'query',
4332
+ name: 'api_key',
4333
+ type: 'apiKey'
4334
+ }
4335
+ ],
4336
+ url: '/services/connectors/{connector_name}/discover/',
4337
+ ...options,
4338
+ headers: {
4339
+ 'Content-Type': 'application/json',
4340
+ ...options.headers
4341
+ }
4342
+ });
4343
+ /**
4344
+ * Dispatch Connector Ingest Endpoint
4345
+ *
4346
+ * Dispatch an overlay-owned ingest and return its opaque job id.
4347
+ */
4348
+ export const dispatchConnectorIngestEndpointServicesConnectorsConnectorNameIngestPost = (options) => (options.client ?? client).post({
4349
+ security: [
4350
+ { scheme: 'bearer', type: 'http' },
4351
+ { name: 'X-Api-Key', type: 'apiKey' },
4352
+ {
4353
+ in: 'query',
4354
+ name: 'api_key',
4355
+ type: 'apiKey'
4356
+ }
4357
+ ],
4358
+ url: '/services/connectors/{connector_name}/ingest/',
4359
+ ...options,
4360
+ headers: {
4361
+ 'Content-Type': 'application/json',
4362
+ ...options.headers
4363
+ }
4364
+ });
2657
4365
  /**
2658
4366
  * Preview Service Layer
2659
4367
  *
@@ -2664,7 +4372,15 @@ export const getSavedSearchEndpointSearchSavedSearchIdGet = (options) => (option
2664
4372
  * ready for the existing commit flow.
2665
4373
  */
2666
4374
  export const previewServiceLayerServicesPreviewPost = (options) => (options.client ?? client).post({
2667
- security: [{ scheme: 'bearer', type: 'http' }],
4375
+ security: [
4376
+ { scheme: 'bearer', type: 'http' },
4377
+ { name: 'X-Api-Key', type: 'apiKey' },
4378
+ {
4379
+ in: 'query',
4380
+ name: 'api_key',
4381
+ type: 'apiKey'
4382
+ }
4383
+ ],
2668
4384
  url: '/services/preview/',
2669
4385
  ...options,
2670
4386
  headers: {
@@ -2681,7 +4397,15 @@ export const previewServiceLayerServicesPreviewPost = (options) => (options.clie
2681
4397
  * service, and returns a unified layer list. All attempts are audit-logged.
2682
4398
  */
2683
4399
  export const probeServiceUrlServicesProbePost = (options) => (options.client ?? client).post({
2684
- security: [{ scheme: 'bearer', type: 'http' }],
4400
+ security: [
4401
+ { scheme: 'bearer', type: 'http' },
4402
+ { name: 'X-Api-Key', type: 'apiKey' },
4403
+ {
4404
+ in: 'query',
4405
+ name: 'api_key',
4406
+ type: 'apiKey'
4407
+ }
4408
+ ],
2685
4409
  url: '/services/probe/',
2686
4410
  ...options,
2687
4411
  headers: {
@@ -2695,7 +4419,15 @@ export const probeServiceUrlServicesProbePost = (options) => (options.client ??
2695
4419
  * List collections from a connected STAC API.
2696
4420
  */
2697
4421
  export const stacCollectionsServicesStacCollectionsPost = (options) => (options.client ?? client).post({
2698
- security: [{ scheme: 'bearer', type: 'http' }],
4422
+ security: [
4423
+ { scheme: 'bearer', type: 'http' },
4424
+ { name: 'X-Api-Key', type: 'apiKey' },
4425
+ {
4426
+ in: 'query',
4427
+ name: 'api_key',
4428
+ type: 'apiKey'
4429
+ }
4430
+ ],
2699
4431
  url: '/services/stac/collections',
2700
4432
  ...options,
2701
4433
  headers: {
@@ -2709,7 +4441,15 @@ export const stacCollectionsServicesStacCollectionsPost = (options) => (options.
2709
4441
  * Connect to a STAC API and validate the endpoint.
2710
4442
  */
2711
4443
  export const stacConnectServicesStacConnectPost = (options) => (options.client ?? client).post({
2712
- security: [{ scheme: 'bearer', type: 'http' }],
4444
+ security: [
4445
+ { scheme: 'bearer', type: 'http' },
4446
+ { name: 'X-Api-Key', type: 'apiKey' },
4447
+ {
4448
+ in: 'query',
4449
+ name: 'api_key',
4450
+ type: 'apiKey'
4451
+ }
4452
+ ],
2713
4453
  url: '/services/stac/connect',
2714
4454
  ...options,
2715
4455
  headers: {
@@ -2727,7 +4467,15 @@ export const stacConnectServicesStacConnectPost = (options) => (options.client ?
2727
4467
  * remote source — no file download required.
2728
4468
  */
2729
4469
  export const stacImportServicesStacImportPost = (options) => (options.client ?? client).post({
2730
- security: [{ scheme: 'bearer', type: 'http' }],
4470
+ security: [
4471
+ { scheme: 'bearer', type: 'http' },
4472
+ { name: 'X-Api-Key', type: 'apiKey' },
4473
+ {
4474
+ in: 'query',
4475
+ name: 'api_key',
4476
+ type: 'apiKey'
4477
+ }
4478
+ ],
2731
4479
  url: '/services/stac/import',
2732
4480
  ...options,
2733
4481
  headers: {
@@ -2741,7 +4489,15 @@ export const stacImportServicesStacImportPost = (options) => (options.client ??
2741
4489
  * Search items in a STAC API with spatial/temporal filters.
2742
4490
  */
2743
4491
  export const stacSearchServicesStacSearchPost = (options) => (options.client ?? client).post({
2744
- security: [{ scheme: 'bearer', type: 'http' }],
4492
+ security: [
4493
+ { scheme: 'bearer', type: 'http' },
4494
+ { name: 'X-Api-Key', type: 'apiKey' },
4495
+ {
4496
+ in: 'query',
4497
+ name: 'api_key',
4498
+ type: 'apiKey'
4499
+ }
4500
+ ],
2745
4501
  url: '/services/stac/search',
2746
4502
  ...options,
2747
4503
  headers: {
@@ -2755,7 +4511,15 @@ export const stacSearchServicesStacSearchPost = (options) => (options.client ??
2755
4511
  * Update one or more settings (admin only). Returns updated settings.
2756
4512
  */
2757
4513
  export const updateSettingsSettingsPut = (options) => (options.client ?? client).put({
2758
- security: [{ scheme: 'bearer', type: 'http' }],
4514
+ security: [
4515
+ { scheme: 'bearer', type: 'http' },
4516
+ { name: 'X-Api-Key', type: 'apiKey' },
4517
+ {
4518
+ in: 'query',
4519
+ name: 'api_key',
4520
+ type: 'apiKey'
4521
+ }
4522
+ ],
2759
4523
  url: '/settings/',
2760
4524
  ...options,
2761
4525
  headers: {
@@ -2769,7 +4533,15 @@ export const updateSettingsSettingsPut = (options) => (options.client ?? client)
2769
4533
  * Return all settings grouped by tab with source indicators (admin only).
2770
4534
  */
2771
4535
  export const getAllSettingsSettingsAllGet = (options) => (options?.client ?? client).get({
2772
- security: [{ scheme: 'bearer', type: 'http' }],
4536
+ security: [
4537
+ { scheme: 'bearer', type: 'http' },
4538
+ { name: 'X-Api-Key', type: 'apiKey' },
4539
+ {
4540
+ in: 'query',
4541
+ name: 'api_key',
4542
+ type: 'apiKey'
4543
+ }
4544
+ ],
2773
4545
  url: '/settings/all/',
2774
4546
  ...options
2775
4547
  });
@@ -2779,7 +4551,15 @@ export const getAllSettingsSettingsAllGet = (options) => (options?.client ?? cli
2779
4551
  * Return which LLM API keys are configured (without exposing values).
2780
4552
  */
2781
4553
  export const getApiKeyStatusSettingsApiKeyStatusGet = (options) => (options?.client ?? client).get({
2782
- security: [{ scheme: 'bearer', type: 'http' }],
4554
+ security: [
4555
+ { scheme: 'bearer', type: 'http' },
4556
+ { name: 'X-Api-Key', type: 'apiKey' },
4557
+ {
4558
+ in: 'query',
4559
+ name: 'api_key',
4560
+ type: 'apiKey'
4561
+ }
4562
+ ],
2783
4563
  url: '/settings/api-key-status/',
2784
4564
  ...options
2785
4565
  });
@@ -2824,16 +4604,53 @@ export const getConfigModeSettingsConfigModeGet = (options) => (options?.client
2824
4604
  * Probe the configured embedding model and return its output dimensions.
2825
4605
  */
2826
4606
  export const detectEmbeddingDimsSettingsDetectEmbeddingDimsPost = (options) => (options?.client ?? client).post({
2827
- security: [{ scheme: 'bearer', type: 'http' }],
4607
+ security: [
4608
+ { scheme: 'bearer', type: 'http' },
4609
+ { name: 'X-Api-Key', type: 'apiKey' },
4610
+ {
4611
+ in: 'query',
4612
+ name: 'api_key',
4613
+ type: 'apiKey'
4614
+ }
4615
+ ],
2828
4616
  url: '/settings/detect-embedding-dims/',
2829
4617
  ...options
2830
4618
  });
4619
+ /**
4620
+ * Edition Info
4621
+ *
4622
+ * Return runtime capability metadata. Public, no auth required.
4623
+ */
4624
+ export const editionInfoSettingsEditionGet = (options) => (options?.client ?? client).get({ url: '/settings/edition/', ...options });
2831
4625
  /**
2832
4626
  * Get Enabled Plugins
2833
4627
  *
2834
4628
  * Return enabled plugin IDs. null = no restriction (all shown), [] = none, [...ids] = only those.
2835
4629
  */
2836
4630
  export const getEnabledPluginsSettingsEnabledPluginsGet = (options) => (options?.client ?? client).get({ url: '/settings/enabled-plugins/', ...options });
4631
+ /**
4632
+ * Get Enterprise Only Tabs
4633
+ *
4634
+ * Return the canonical list of restricted Settings tab keys.
4635
+ *
4636
+ * The frontend AdminSidebar uses this to avoid rendering tabs that the
4637
+ * current runtime does not expose. The backend write gate uses the same set
4638
+ * to reject writes to restricted settings, keeping UI and API behavior
4639
+ * aligned.
4640
+ */
4641
+ export const getEnterpriseOnlyTabsSettingsEnterpriseTabsGet = (options) => (options?.client ?? client).get({
4642
+ security: [
4643
+ { scheme: 'bearer', type: 'http' },
4644
+ { name: 'X-Api-Key', type: 'apiKey' },
4645
+ {
4646
+ in: 'query',
4647
+ name: 'api_key',
4648
+ type: 'apiKey'
4649
+ }
4650
+ ],
4651
+ url: '/settings/enterprise-tabs/',
4652
+ ...options
4653
+ });
2837
4654
  /**
2838
4655
  * Get Feature Flags
2839
4656
  *
@@ -2856,7 +4673,15 @@ export const getMapDefaultsSettingsMapDefaultsGet = (options) => (options?.clien
2856
4673
  * (NOTIF-05 / T-1229-09).
2857
4674
  */
2858
4675
  export const getNotificationStatusSettingsNotificationsStatusGet = (options) => (options?.client ?? client).get({
2859
- security: [{ scheme: 'bearer', type: 'http' }],
4676
+ security: [
4677
+ { scheme: 'bearer', type: 'http' },
4678
+ { name: 'X-Api-Key', type: 'apiKey' },
4679
+ {
4680
+ in: 'query',
4681
+ name: 'api_key',
4682
+ type: 'apiKey'
4683
+ }
4684
+ ],
2860
4685
  url: '/settings/notifications/status/',
2861
4686
  ...options
2862
4687
  });
@@ -2874,7 +4699,15 @@ export const getNotificationStatusSettingsNotificationsStatusGet = (options) =>
2874
4699
  * NotificationTestChannelResult for display in the admin UI.
2875
4700
  */
2876
4701
  export const sendTestNotificationSettingsNotificationsTestPost = (options) => (options?.client ?? client).post({
2877
- security: [{ scheme: 'bearer', type: 'http' }],
4702
+ security: [
4703
+ { scheme: 'bearer', type: 'http' },
4704
+ { name: 'X-Api-Key', type: 'apiKey' },
4705
+ {
4706
+ in: 'query',
4707
+ name: 'api_key',
4708
+ type: 'apiKey'
4709
+ }
4710
+ ],
2878
4711
  url: '/settings/notifications/test/',
2879
4712
  ...options
2880
4713
  });
@@ -2884,7 +4717,15 @@ export const sendTestNotificationSettingsNotificationsTestPost = (options) => (o
2884
4717
  * List all OAuth providers (admin only).
2885
4718
  */
2886
4719
  export const listOauthProvidersSettingsOauthProvidersGet = (options) => (options?.client ?? client).get({
2887
- security: [{ scheme: 'bearer', type: 'http' }],
4720
+ security: [
4721
+ { scheme: 'bearer', type: 'http' },
4722
+ { name: 'X-Api-Key', type: 'apiKey' },
4723
+ {
4724
+ in: 'query',
4725
+ name: 'api_key',
4726
+ type: 'apiKey'
4727
+ }
4728
+ ],
2888
4729
  url: '/settings/oauth-providers/',
2889
4730
  ...options
2890
4731
  });
@@ -2898,7 +4739,15 @@ export const listOauthProvidersSettingsOauthProvidersGet = (options) => (options
2898
4739
  * in the request body (SAML-12 / Pitfall 9 / T-217-03-AUDIT-LEAK).
2899
4740
  */
2900
4741
  export const createOauthProviderSettingsOauthProvidersPost = (options) => (options.client ?? client).post({
2901
- security: [{ scheme: 'bearer', type: 'http' }],
4742
+ security: [
4743
+ { scheme: 'bearer', type: 'http' },
4744
+ { name: 'X-Api-Key', type: 'apiKey' },
4745
+ {
4746
+ in: 'query',
4747
+ name: 'api_key',
4748
+ type: 'apiKey'
4749
+ }
4750
+ ],
2902
4751
  url: '/settings/oauth-providers/',
2903
4752
  ...options,
2904
4753
  headers: {
@@ -2917,7 +4766,15 @@ export const createOauthProviderSettingsOauthProvidersPost = (options) => (optio
2917
4766
  * delete events too).
2918
4767
  */
2919
4768
  export const deleteOauthProviderSettingsOauthProvidersProviderIdDelete = (options) => (options.client ?? client).delete({
2920
- security: [{ scheme: 'bearer', type: 'http' }],
4769
+ security: [
4770
+ { scheme: 'bearer', type: 'http' },
4771
+ { name: 'X-Api-Key', type: 'apiKey' },
4772
+ {
4773
+ in: 'query',
4774
+ name: 'api_key',
4775
+ type: 'apiKey'
4776
+ }
4777
+ ],
2921
4778
  url: '/settings/oauth-providers/{provider_id}',
2922
4779
  ...options
2923
4780
  });
@@ -2933,7 +4790,15 @@ export const deleteOauthProviderSettingsOauthProvidersProviderIdDelete = (option
2933
4790
  * T-217-03-AUDIT-LEAK HIGH severity).
2934
4791
  */
2935
4792
  export const updateOauthProviderSettingsOauthProvidersProviderIdPut = (options) => (options.client ?? client).put({
2936
- security: [{ scheme: 'bearer', type: 'http' }],
4793
+ security: [
4794
+ { scheme: 'bearer', type: 'http' },
4795
+ { name: 'X-Api-Key', type: 'apiKey' },
4796
+ {
4797
+ in: 'query',
4798
+ name: 'api_key',
4799
+ type: 'apiKey'
4800
+ }
4801
+ ],
2937
4802
  url: '/settings/oauth-providers/{provider_id}',
2938
4803
  ...options,
2939
4804
  headers: {
@@ -2947,7 +4812,15 @@ export const updateOauthProviderSettingsOauthProvidersProviderIdPut = (options)
2947
4812
  * Reset one or more settings to their defaults (admin only). Returns updated settings.
2948
4813
  */
2949
4814
  export const resetSettingsSettingsResetPost = (options) => (options.client ?? client).post({
2950
- security: [{ scheme: 'bearer', type: 'http' }],
4815
+ security: [
4816
+ { scheme: 'bearer', type: 'http' },
4817
+ { name: 'X-Api-Key', type: 'apiKey' },
4818
+ {
4819
+ in: 'query',
4820
+ name: 'api_key',
4821
+ type: 'apiKey'
4822
+ }
4823
+ ],
2951
4824
  url: '/settings/reset/',
2952
4825
  ...options,
2953
4826
  headers: {
@@ -2985,7 +4858,15 @@ export const getCollectionStacCollectionsCollectionIdGet = (options) => (options
2985
4858
  * List STAC Items within a collection.
2986
4859
  */
2987
4860
  export const getCollectionItemsStacCollectionsCollectionIdItemsGet = (options) => (options.client ?? client).get({
2988
- security: [{ scheme: 'bearer', type: 'http' }],
4861
+ security: [
4862
+ { scheme: 'bearer', type: 'http' },
4863
+ { name: 'X-Api-Key', type: 'apiKey' },
4864
+ {
4865
+ in: 'query',
4866
+ name: 'api_key',
4867
+ type: 'apiKey'
4868
+ }
4869
+ ],
2989
4870
  url: '/stac/collections/{collection_id}/items',
2990
4871
  ...options
2991
4872
  });
@@ -2995,7 +4876,15 @@ export const getCollectionItemsStacCollectionsCollectionIdItemsGet = (options) =
2995
4876
  * Get a single STAC Item within a collection.
2996
4877
  */
2997
4878
  export const getCollectionItemStacCollectionsCollectionIdItemsItemIdGet = (options) => (options.client ?? client).get({
2998
- security: [{ scheme: 'bearer', type: 'http' }],
4879
+ security: [
4880
+ { scheme: 'bearer', type: 'http' },
4881
+ { name: 'X-Api-Key', type: 'apiKey' },
4882
+ {
4883
+ in: 'query',
4884
+ name: 'api_key',
4885
+ type: 'apiKey'
4886
+ }
4887
+ ],
2999
4888
  url: '/stac/collections/{collection_id}/items/{item_id}',
3000
4889
  ...options
3001
4890
  });
@@ -3011,7 +4900,15 @@ export const conformanceStacConformanceGet = (options) => (options?.client ?? cl
3011
4900
  * Get a single STAC Item by dataset ID.
3012
4901
  */
3013
4902
  export const getItemStacItemsItemIdGet = (options) => (options.client ?? client).get({
3014
- security: [{ scheme: 'bearer', type: 'http' }],
4903
+ security: [
4904
+ { scheme: 'bearer', type: 'http' },
4905
+ { name: 'X-Api-Key', type: 'apiKey' },
4906
+ {
4907
+ in: 'query',
4908
+ name: 'api_key',
4909
+ type: 'apiKey'
4910
+ }
4911
+ ],
3015
4912
  url: '/stac/items/{item_id}',
3016
4913
  ...options
3017
4914
  });
@@ -3021,7 +4918,15 @@ export const getItemStacItemsItemIdGet = (options) => (options.client ?? client)
3021
4918
  * STAC Item Search (GET).
3022
4919
  */
3023
4920
  export const searchGetStacSearchGet = (options) => (options?.client ?? client).get({
3024
- security: [{ scheme: 'bearer', type: 'http' }],
4921
+ security: [
4922
+ { scheme: 'bearer', type: 'http' },
4923
+ { name: 'X-Api-Key', type: 'apiKey' },
4924
+ {
4925
+ in: 'query',
4926
+ name: 'api_key',
4927
+ type: 'apiKey'
4928
+ }
4929
+ ],
3025
4930
  url: '/stac/search',
3026
4931
  ...options
3027
4932
  });
@@ -3031,7 +4936,15 @@ export const searchGetStacSearchGet = (options) => (options?.client ?? client).g
3031
4936
  * STAC Item Search (POST with JSON body).
3032
4937
  */
3033
4938
  export const searchPostStacSearchPost = (options) => (options.client ?? client).post({
3034
- security: [{ scheme: 'bearer', type: 'http' }],
4939
+ security: [
4940
+ { scheme: 'bearer', type: 'http' },
4941
+ { name: 'X-Api-Key', type: 'apiKey' },
4942
+ {
4943
+ in: 'query',
4944
+ name: 'api_key',
4945
+ type: 'apiKey'
4946
+ }
4947
+ ],
3035
4948
  url: '/stac/search',
3036
4949
  ...options,
3037
4950
  headers: {
@@ -3055,7 +4968,15 @@ export const searchPostStacSearchPost = (options) => (options.client ?? client).
3055
4968
  * styling and popups keep working on the server-cluster path.
3056
4969
  */
3057
4970
  export const clusterTileEndpointTilesClustersTablePathZXYPbfGet = (options) => (options.client ?? client).get({
3058
- security: [{ scheme: 'bearer', type: 'http' }],
4971
+ security: [
4972
+ { scheme: 'bearer', type: 'http' },
4973
+ { name: 'X-Api-Key', type: 'apiKey' },
4974
+ {
4975
+ in: 'query',
4976
+ name: 'api_key',
4977
+ type: 'apiKey'
4978
+ }
4979
+ ],
3059
4980
  url: '/tiles/clusters/{table_path}/{z}/{x}/{y}.pbf',
3060
4981
  ...options
3061
4982
  });
@@ -3074,7 +4995,15 @@ export const clusterTileEndpointTilesClustersTablePathZXYPbfGet = (options) => (
3074
4995
  * 404 if dataset not found, not a raster, or has no raster asset
3075
4996
  */
3076
4997
  export const rasterAuthCheckTilesRasterAuthCheckGet = (options) => (options.client ?? client).get({
3077
- security: [{ scheme: 'bearer', type: 'http' }],
4998
+ security: [
4999
+ { scheme: 'bearer', type: 'http' },
5000
+ { name: 'X-Api-Key', type: 'apiKey' },
5001
+ {
5002
+ in: 'query',
5003
+ name: 'api_key',
5004
+ type: 'apiKey'
5005
+ }
5006
+ ],
3078
5007
  url: '/tiles/raster-auth-check/',
3079
5008
  ...options
3080
5009
  });
@@ -3105,7 +5034,15 @@ export const rasterAuthCheckTilesRasterAuthCheckGet = (options) => (options.clie
3105
5034
  * Must be > 0.
3106
5035
  */
3107
5036
  export const rasterTileProxyTilesRasterProxyDatasetIdZXYFmtGet = (options) => (options.client ?? client).get({
3108
- security: [{ scheme: 'bearer', type: 'http' }],
5037
+ security: [
5038
+ { scheme: 'bearer', type: 'http' },
5039
+ { name: 'X-Api-Key', type: 'apiKey' },
5040
+ {
5041
+ in: 'query',
5042
+ name: 'api_key',
5043
+ type: 'apiKey'
5044
+ }
5045
+ ],
3109
5046
  url: '/tiles/raster-proxy/{dataset_id}/{z}/{x}/{y}.{fmt}',
3110
5047
  ...options
3111
5048
  });
@@ -3123,7 +5060,15 @@ export const rasterTileProxyTilesRasterProxyDatasetIdZXYFmtGet = (options) => (o
3123
5060
  * Private/restricted datasets require authentication and RBAC checks.
3124
5061
  */
3125
5062
  export const getTileTokenTilesTokenDatasetIdGet = (options) => (options.client ?? client).get({
3126
- security: [{ scheme: 'bearer', type: 'http' }],
5063
+ security: [
5064
+ { scheme: 'bearer', type: 'http' },
5065
+ { name: 'X-Api-Key', type: 'apiKey' },
5066
+ {
5067
+ in: 'query',
5068
+ name: 'api_key',
5069
+ type: 'apiKey'
5070
+ }
5071
+ ],
3127
5072
  url: '/tiles/token/{dataset_id}/',
3128
5073
  ...options
3129
5074
  });
@@ -3146,7 +5091,15 @@ export const getTileTokenTilesTokenDatasetIdGet = (options) => (options.client ?
3146
5091
  * builds its raster-dem source from the real bounds/maxzoom descriptor.
3147
5092
  */
3148
5093
  export const getTileTokensBatchTilesTokensPost = (options) => (options.client ?? client).post({
3149
- security: [{ scheme: 'bearer', type: 'http' }],
5094
+ security: [
5095
+ { scheme: 'bearer', type: 'http' },
5096
+ { name: 'X-Api-Key', type: 'apiKey' },
5097
+ {
5098
+ in: 'query',
5099
+ name: 'api_key',
5100
+ type: 'apiKey'
5101
+ }
5102
+ ],
3150
5103
  url: '/tiles/tokens/',
3151
5104
  ...options,
3152
5105
  headers: {
@@ -3174,7 +5127,15 @@ export const getTileTokensBatchTilesTokensPost = (options) => (options.client ??
3174
5127
  * REST access to.
3175
5128
  */
3176
5129
  export const tileEndpointTilesTablePathZXYPbfGet = (options) => (options.client ?? client).get({
3177
- security: [{ scheme: 'bearer', type: 'http' }],
5130
+ security: [
5131
+ { scheme: 'bearer', type: 'http' },
5132
+ { name: 'X-Api-Key', type: 'apiKey' },
5133
+ {
5134
+ in: 'query',
5135
+ name: 'api_key',
5136
+ type: 'apiKey'
5137
+ }
5138
+ ],
3178
5139
  url: '/tiles/{table_path}/{z}/{x}/{y}.pbf',
3179
5140
  ...options
3180
5141
  });