@geolens/sdk 1.4.5 → 1.4.7

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: {
@@ -330,8 +564,16 @@ export const chatEndpointAiChatPost = (options) => (options.client ?? client).po
330
564
  *
331
565
  * Chat-based map editing with server-sent event streaming.
332
566
  */
333
- export const chatStreamEndpointAiChatStreamPost = (options) => (options.client ?? client).post({
334
- security: [{ scheme: 'bearer', type: 'http' }],
567
+ export const chatStreamEndpointAiChatStreamPost = (options) => (options.client ?? client).sse.post({
568
+ security: [
569
+ { scheme: 'bearer', type: 'http' },
570
+ { name: 'X-Api-Key', type: 'apiKey' },
571
+ {
572
+ in: 'query',
573
+ name: 'api_key',
574
+ type: 'apiKey'
575
+ }
576
+ ],
335
577
  url: '/ai/chat/stream/',
336
578
  ...options,
337
579
  headers: {
@@ -345,7 +587,15 @@ export const chatStreamEndpointAiChatStreamPost = (options) => (options.client ?
345
587
  * Generate a map from a natural language prompt using an LLM.
346
588
  */
347
589
  export const generateMapEndpointAiGenerateMapPost = (options) => (options.client ?? client).post({
348
- security: [{ scheme: 'bearer', type: 'http' }],
590
+ security: [
591
+ { scheme: 'bearer', type: 'http' },
592
+ { name: 'X-Api-Key', type: 'apiKey' },
593
+ {
594
+ in: 'query',
595
+ name: 'api_key',
596
+ type: 'apiKey'
597
+ }
598
+ ],
349
599
  url: '/ai/generate-map/',
350
600
  ...options,
351
601
  headers: {
@@ -358,8 +608,16 @@ export const generateMapEndpointAiGenerateMapPost = (options) => (options.client
358
608
  *
359
609
  * Generate a map from a natural language prompt with streaming progress events.
360
610
  */
361
- export const generateMapStreamEndpointAiGenerateMapStreamPost = (options) => (options.client ?? client).post({
362
- security: [{ scheme: 'bearer', type: 'http' }],
611
+ export const generateMapStreamEndpointAiGenerateMapStreamPost = (options) => (options.client ?? client).sse.post({
612
+ security: [
613
+ { scheme: 'bearer', type: 'http' },
614
+ { name: 'X-Api-Key', type: 'apiKey' },
615
+ {
616
+ in: 'query',
617
+ name: 'api_key',
618
+ type: 'apiKey'
619
+ }
620
+ ],
363
621
  url: '/ai/generate-map/stream/',
364
622
  ...options,
365
623
  headers: {
@@ -373,7 +631,15 @@ export const generateMapStreamEndpointAiGenerateMapStreamPost = (options) => (op
373
631
  * Generate AI-suggested keywords for a dataset.
374
632
  */
375
633
  export const generateMetadataKeywordsAiMetadataKeywordsPost = (options) => (options.client ?? client).post({
376
- security: [{ scheme: 'bearer', type: 'http' }],
634
+ security: [
635
+ { scheme: 'bearer', type: 'http' },
636
+ { name: 'X-Api-Key', type: 'apiKey' },
637
+ {
638
+ in: 'query',
639
+ name: 'api_key',
640
+ type: 'apiKey'
641
+ }
642
+ ],
377
643
  url: '/ai/metadata/keywords/',
378
644
  ...options,
379
645
  headers: {
@@ -387,7 +653,15 @@ export const generateMetadataKeywordsAiMetadataKeywordsPost = (options) => (opti
387
653
  * Generate an AI-drafted lineage summary for a dataset.
388
654
  */
389
655
  export const generateMetadataLineageAiMetadataLineagePost = (options) => (options.client ?? client).post({
390
- security: [{ scheme: 'bearer', type: 'http' }],
656
+ security: [
657
+ { scheme: 'bearer', type: 'http' },
658
+ { name: 'X-Api-Key', type: 'apiKey' },
659
+ {
660
+ in: 'query',
661
+ name: 'api_key',
662
+ type: 'apiKey'
663
+ }
664
+ ],
391
665
  url: '/ai/metadata/lineage/',
392
666
  ...options,
393
667
  headers: {
@@ -401,7 +675,15 @@ export const generateMetadataLineageAiMetadataLineagePost = (options) => (option
401
675
  * Generate an AI-drafted quality statement for a dataset.
402
676
  */
403
677
  export const generateMetadataQualityStatementAiMetadataQualityStatementPost = (options) => (options.client ?? client).post({
404
- security: [{ scheme: 'bearer', type: 'http' }],
678
+ security: [
679
+ { scheme: 'bearer', type: 'http' },
680
+ { name: 'X-Api-Key', type: 'apiKey' },
681
+ {
682
+ in: 'query',
683
+ name: 'api_key',
684
+ type: 'apiKey'
685
+ }
686
+ ],
405
687
  url: '/ai/metadata/quality-statement/',
406
688
  ...options,
407
689
  headers: {
@@ -415,7 +697,15 @@ export const generateMetadataQualityStatementAiMetadataQualityStatementPost = (o
415
697
  * Generate an AI-drafted summary for a dataset.
416
698
  */
417
699
  export const generateMetadataSummaryAiMetadataSummaryPost = (options) => (options.client ?? client).post({
418
- security: [{ scheme: 'bearer', type: 'http' }],
700
+ security: [
701
+ { scheme: 'bearer', type: 'http' },
702
+ { name: 'X-Api-Key', type: 'apiKey' },
703
+ {
704
+ in: 'query',
705
+ name: 'api_key',
706
+ type: 'apiKey'
707
+ }
708
+ ],
419
709
  url: '/ai/metadata/summary/',
420
710
  ...options,
421
711
  headers: {
@@ -442,7 +732,15 @@ export const generateMetadataSummaryAiMetadataSummaryPost = (options) => (option
442
732
  * return 404 without leaking audit log details.
443
733
  */
444
734
  export const getColumnDdlFeedAuditDatasetsDatasetIdColumnDdlGet = (options) => (options.client ?? client).get({
445
- security: [{ scheme: 'bearer', type: 'http' }],
735
+ security: [
736
+ { scheme: 'bearer', type: 'http' },
737
+ { name: 'X-Api-Key', type: 'apiKey' },
738
+ {
739
+ in: 'query',
740
+ name: 'api_key',
741
+ type: 'apiKey'
742
+ }
743
+ ],
446
744
  url: '/audit/datasets/{dataset_id}/column-ddl',
447
745
  ...options
448
746
  });
@@ -452,7 +750,15 @@ export const getColumnDdlFeedAuditDatasetsDatasetIdColumnDdlGet = (options) => (
452
750
  * List the current user's API keys.
453
751
  */
454
752
  export const listMyApiKeysAuthApiKeysGet = (options) => (options?.client ?? client).get({
455
- security: [{ scheme: 'bearer', type: 'http' }],
753
+ security: [
754
+ { scheme: 'bearer', type: 'http' },
755
+ { name: 'X-Api-Key', type: 'apiKey' },
756
+ {
757
+ in: 'query',
758
+ name: 'api_key',
759
+ type: 'apiKey'
760
+ }
761
+ ],
456
762
  url: '/auth/api-keys/',
457
763
  ...options
458
764
  });
@@ -464,7 +770,15 @@ export const listMyApiKeysAuthApiKeysGet = (options) => (options?.client ?? clie
464
770
  * The raw key is returned only in this response and cannot be retrieved again.
465
771
  */
466
772
  export const createMyApiKeyAuthApiKeysPost = (options) => (options.client ?? client).post({
467
- security: [{ scheme: 'bearer', type: 'http' }],
773
+ security: [
774
+ { scheme: 'bearer', type: 'http' },
775
+ { name: 'X-Api-Key', type: 'apiKey' },
776
+ {
777
+ in: 'query',
778
+ name: 'api_key',
779
+ type: 'apiKey'
780
+ }
781
+ ],
468
782
  url: '/auth/api-keys/',
469
783
  ...options,
470
784
  headers: {
@@ -478,7 +792,15 @@ export const createMyApiKeyAuthApiKeysPost = (options) => (options.client ?? cli
478
792
  * Revoke (soft-delete) one of the current user's API keys.
479
793
  */
480
794
  export const revokeMyApiKeyAuthApiKeysKeyIdDelete = (options) => (options.client ?? client).delete({
481
- security: [{ scheme: 'bearer', type: 'http' }],
795
+ security: [
796
+ { scheme: 'bearer', type: 'http' },
797
+ { name: 'X-Api-Key', type: 'apiKey' },
798
+ {
799
+ in: 'query',
800
+ name: 'api_key',
801
+ type: 'apiKey'
802
+ }
803
+ ],
482
804
  url: '/auth/api-keys/{key_id}',
483
805
  ...options
484
806
  });
@@ -488,7 +810,15 @@ export const revokeMyApiKeyAuthApiKeysKeyIdDelete = (options) => (options.client
488
810
  * Change the current user's password (requires current password).
489
811
  */
490
812
  export const changePasswordAuthChangePasswordPost = (options) => (options.client ?? client).post({
491
- security: [{ scheme: 'bearer', type: 'http' }],
813
+ security: [
814
+ { scheme: 'bearer', type: 'http' },
815
+ { name: 'X-Api-Key', type: 'apiKey' },
816
+ {
817
+ in: 'query',
818
+ name: 'api_key',
819
+ type: 'apiKey'
820
+ }
821
+ ],
492
822
  url: '/auth/change-password/',
493
823
  ...options,
494
824
  headers: {
@@ -516,7 +846,15 @@ export const configAuthConfigGet = (options) => (options?.client ?? client).get(
516
846
  * ``typ='download'``, ``scope='dataset:{dataset_id}'``, and a TTL of 120s.
517
847
  */
518
848
  export const createDownloadTokenEndpointAuthDownloadTokenDatasetIdPost = (options) => (options.client ?? client).post({
519
- security: [{ scheme: 'bearer', type: 'http' }],
849
+ security: [
850
+ { scheme: 'bearer', type: 'http' },
851
+ { name: 'X-Api-Key', type: 'apiKey' },
852
+ {
853
+ in: 'query',
854
+ name: 'api_key',
855
+ type: 'apiKey'
856
+ }
857
+ ],
520
858
  url: '/auth/download-token/{dataset_id}',
521
859
  ...options
522
860
  });
@@ -545,7 +883,15 @@ export const loginAuthLoginPost = (options) => (options.client ?? client).post({
545
883
  * "logout doesn't invalidate the access JWT" gap.
546
884
  */
547
885
  export const logoutAuthLogoutPost = (options) => (options?.client ?? client).post({
548
- security: [{ scheme: 'bearer', type: 'http' }],
886
+ security: [
887
+ { scheme: 'bearer', type: 'http' },
888
+ { name: 'X-Api-Key', type: 'apiKey' },
889
+ {
890
+ in: 'query',
891
+ name: 'api_key',
892
+ type: 'apiKey'
893
+ }
894
+ ],
549
895
  url: '/auth/logout/',
550
896
  ...options
551
897
  });
@@ -555,7 +901,15 @@ export const logoutAuthLogoutPost = (options) => (options?.client ?? client).pos
555
901
  * Return the currently authenticated user's profile and roles.
556
902
  */
557
903
  export const meAuthMeGet = (options) => (options?.client ?? client).get({
558
- security: [{ scheme: 'bearer', type: 'http' }],
904
+ security: [
905
+ { scheme: 'bearer', type: 'http' },
906
+ { name: 'X-Api-Key', type: 'apiKey' },
907
+ {
908
+ in: 'query',
909
+ name: 'api_key',
910
+ type: 'apiKey'
911
+ }
912
+ ],
559
913
  url: '/auth/me/',
560
914
  ...options
561
915
  });
@@ -565,7 +919,15 @@ export const meAuthMeGet = (options) => (options?.client ?? client).get({
565
919
  * Return the effective permissions for the currently authenticated user.
566
920
  */
567
921
  export const mePermissionsAuthMePermissionsGet = (options) => (options?.client ?? client).get({
568
- security: [{ scheme: 'bearer', type: 'http' }],
922
+ security: [
923
+ { scheme: 'bearer', type: 'http' },
924
+ { name: 'X-Api-Key', type: 'apiKey' },
925
+ {
926
+ in: 'query',
927
+ name: 'api_key',
928
+ type: 'apiKey'
929
+ }
930
+ ],
569
931
  url: '/auth/me/permissions/',
570
932
  ...options
571
933
  });
@@ -575,7 +937,15 @@ export const mePermissionsAuthMePermissionsGet = (options) => (options?.client ?
575
937
  * Return the authenticated user's own storage and dataset quota usage.
576
938
  */
577
939
  export const meUsageAuthMeUsageGet = (options) => (options?.client ?? client).get({
578
- security: [{ scheme: 'bearer', type: 'http' }],
940
+ security: [
941
+ { scheme: 'bearer', type: 'http' },
942
+ { name: 'X-Api-Key', type: 'apiKey' },
943
+ {
944
+ in: 'query',
945
+ name: 'api_key',
946
+ type: 'apiKey'
947
+ }
948
+ ],
579
949
  url: '/auth/me/usage/',
580
950
  ...options
581
951
  });
@@ -613,6 +983,11 @@ export const oauthLoginAuthOauthProviderSlugLoginGet = (options) => (options.cli
613
983
  * Refresh
614
984
  *
615
985
  * Exchange a valid refresh token for a new access + refresh token pair.
986
+ *
987
+ * Multi-tenant clients must call this endpoint on their tenant host. Refresh
988
+ * tokens are opaque and carry no bearer ``tid`` claim, so tenant middleware
989
+ * binds the database transaction from that same-origin host before the user
990
+ * row is resolved and the next tenant-bound access token is minted.
616
991
  */
617
992
  export const refreshAuthRefreshPost = (options) => (options.client ?? client).post({
618
993
  url: '/auth/refresh/',
@@ -678,7 +1053,15 @@ export const verifyEmailAuthVerifyEmailPost = (options) => (options.client ?? cl
678
1053
  * List all collections with dataset_count and extent computed per-user.
679
1054
  */
680
1055
  export const listCollectionsEndpointCatalogCollectionsGet = (options) => (options?.client ?? client).get({
681
- security: [{ scheme: 'bearer', type: 'http' }],
1056
+ security: [
1057
+ { scheme: 'bearer', type: 'http' },
1058
+ { name: 'X-Api-Key', type: 'apiKey' },
1059
+ {
1060
+ in: 'query',
1061
+ name: 'api_key',
1062
+ type: 'apiKey'
1063
+ }
1064
+ ],
682
1065
  url: '/catalog/collections/',
683
1066
  ...options
684
1067
  });
@@ -688,7 +1071,15 @@ export const listCollectionsEndpointCatalogCollectionsGet = (options) => (option
688
1071
  * Create a new collection.
689
1072
  */
690
1073
  export const createCollectionEndpointCatalogCollectionsPost = (options) => (options.client ?? client).post({
691
- security: [{ scheme: 'bearer', type: 'http' }],
1074
+ security: [
1075
+ { scheme: 'bearer', type: 'http' },
1076
+ { name: 'X-Api-Key', type: 'apiKey' },
1077
+ {
1078
+ in: 'query',
1079
+ name: 'api_key',
1080
+ type: 'apiKey'
1081
+ }
1082
+ ],
692
1083
  url: '/catalog/collections/',
693
1084
  ...options,
694
1085
  headers: {
@@ -702,7 +1093,15 @@ export const createCollectionEndpointCatalogCollectionsPost = (options) => (opti
702
1093
  * Delete a collection. Owner or admin only.
703
1094
  */
704
1095
  export const deleteCollectionEndpointCatalogCollectionsCollectionIdDelete = (options) => (options.client ?? client).delete({
705
- security: [{ scheme: 'bearer', type: 'http' }],
1096
+ security: [
1097
+ { scheme: 'bearer', type: 'http' },
1098
+ { name: 'X-Api-Key', type: 'apiKey' },
1099
+ {
1100
+ in: 'query',
1101
+ name: 'api_key',
1102
+ type: 'apiKey'
1103
+ }
1104
+ ],
706
1105
  url: '/catalog/collections/{collection_id}',
707
1106
  ...options
708
1107
  });
@@ -712,7 +1111,15 @@ export const deleteCollectionEndpointCatalogCollectionsCollectionIdDelete = (opt
712
1111
  * Get a single collection with dataset_count and extent.
713
1112
  */
714
1113
  export const getCollectionEndpointCatalogCollectionsCollectionIdGet = (options) => (options.client ?? client).get({
715
- security: [{ scheme: 'bearer', type: 'http' }],
1114
+ security: [
1115
+ { scheme: 'bearer', type: 'http' },
1116
+ { name: 'X-Api-Key', type: 'apiKey' },
1117
+ {
1118
+ in: 'query',
1119
+ name: 'api_key',
1120
+ type: 'apiKey'
1121
+ }
1122
+ ],
716
1123
  url: '/catalog/collections/{collection_id}',
717
1124
  ...options
718
1125
  });
@@ -722,7 +1129,15 @@ export const getCollectionEndpointCatalogCollectionsCollectionIdGet = (options)
722
1129
  * Update a collection's name and/or description. Owner or admin only.
723
1130
  */
724
1131
  export const updateCollectionEndpointCatalogCollectionsCollectionIdPatch = (options) => (options.client ?? client).patch({
725
- security: [{ scheme: 'bearer', type: 'http' }],
1132
+ security: [
1133
+ { scheme: 'bearer', type: 'http' },
1134
+ { name: 'X-Api-Key', type: 'apiKey' },
1135
+ {
1136
+ in: 'query',
1137
+ name: 'api_key',
1138
+ type: 'apiKey'
1139
+ }
1140
+ ],
726
1141
  url: '/catalog/collections/{collection_id}',
727
1142
  ...options,
728
1143
  headers: {
@@ -736,7 +1151,15 @@ export const updateCollectionEndpointCatalogCollectionsCollectionIdPatch = (opti
736
1151
  * Get datasets in a collection with RBAC filtering.
737
1152
  */
738
1153
  export const getCollectionDatasetsEndpointCatalogCollectionsCollectionIdDatasetsGet = (options) => (options.client ?? client).get({
739
- security: [{ scheme: 'bearer', type: 'http' }],
1154
+ security: [
1155
+ { scheme: 'bearer', type: 'http' },
1156
+ { name: 'X-Api-Key', type: 'apiKey' },
1157
+ {
1158
+ in: 'query',
1159
+ name: 'api_key',
1160
+ type: 'apiKey'
1161
+ }
1162
+ ],
740
1163
  url: '/catalog/collections/{collection_id}/datasets/',
741
1164
  ...options
742
1165
  });
@@ -746,7 +1169,15 @@ export const getCollectionDatasetsEndpointCatalogCollectionsCollectionIdDatasets
746
1169
  * Add datasets to a collection. Collection owner or admin only.
747
1170
  */
748
1171
  export const addDatasetsEndpointCatalogCollectionsCollectionIdDatasetsPost = (options) => (options.client ?? client).post({
749
- security: [{ scheme: 'bearer', type: 'http' }],
1172
+ security: [
1173
+ { scheme: 'bearer', type: 'http' },
1174
+ { name: 'X-Api-Key', type: 'apiKey' },
1175
+ {
1176
+ in: 'query',
1177
+ name: 'api_key',
1178
+ type: 'apiKey'
1179
+ }
1180
+ ],
750
1181
  url: '/catalog/collections/{collection_id}/datasets/',
751
1182
  ...options,
752
1183
  headers: {
@@ -760,7 +1191,15 @@ export const addDatasetsEndpointCatalogCollectionsCollectionIdDatasetsPost = (op
760
1191
  * Remove a dataset from a collection. Collection owner or admin only.
761
1192
  */
762
1193
  export const removeDatasetEndpointCatalogCollectionsCollectionIdDatasetsDatasetIdDelete = (options) => (options.client ?? client).delete({
763
- security: [{ scheme: 'bearer', type: 'http' }],
1194
+ security: [
1195
+ { scheme: 'bearer', type: 'http' },
1196
+ { name: 'X-Api-Key', type: 'apiKey' },
1197
+ {
1198
+ in: 'query',
1199
+ name: 'api_key',
1200
+ type: 'apiKey'
1201
+ }
1202
+ ],
764
1203
  url: '/catalog/collections/{collection_id}/datasets/{dataset_id}',
765
1204
  ...options
766
1205
  });
@@ -770,7 +1209,15 @@ export const removeDatasetEndpointCatalogCollectionsCollectionIdDatasetsDatasetI
770
1209
  * List available OGC collections (catalog + per-dataset feature collections).
771
1210
  */
772
1211
  export const listCollectionsCollectionsGet = (options) => (options?.client ?? client).get({
773
- security: [{ scheme: 'bearer', type: 'http' }],
1212
+ security: [
1213
+ { scheme: 'bearer', type: 'http' },
1214
+ { name: 'X-Api-Key', type: 'apiKey' },
1215
+ {
1216
+ in: 'query',
1217
+ name: 'api_key',
1218
+ type: 'apiKey'
1219
+ }
1220
+ ],
774
1221
  url: '/collections',
775
1222
  ...options
776
1223
  });
@@ -780,7 +1227,15 @@ export const listCollectionsCollectionsGet = (options) => (options?.client ?? cl
780
1227
  * Get metadata for the datasets collection.
781
1228
  */
782
1229
  export const getCollectionMetadataCollectionsDatasetsGet = (options) => (options?.client ?? client).get({
783
- security: [{ scheme: 'bearer', type: 'http' }],
1230
+ security: [
1231
+ { scheme: 'bearer', type: 'http' },
1232
+ { name: 'X-Api-Key', type: 'apiKey' },
1233
+ {
1234
+ in: 'query',
1235
+ name: 'api_key',
1236
+ type: 'apiKey'
1237
+ }
1238
+ ],
784
1239
  url: '/collections/datasets',
785
1240
  ...options
786
1241
  });
@@ -790,7 +1245,20 @@ export const getCollectionMetadataCollectionsDatasetsGet = (options) => (options
790
1245
  * OGC API Records items endpoint -- mirrors /search/datasets.
791
1246
  */
792
1247
  export const collectionItemsCollectionsDatasetsItemsGet = (options) => (options?.client ?? client).get({
793
- security: [{ scheme: 'bearer', type: 'http' }],
1248
+ querySerializer: { parameters: {
1249
+ type: { array: { explode: false } },
1250
+ ids: { array: { explode: false } },
1251
+ externalIds: { array: { explode: false } }
1252
+ } },
1253
+ security: [
1254
+ { scheme: 'bearer', type: 'http' },
1255
+ { name: 'X-Api-Key', type: 'apiKey' },
1256
+ {
1257
+ in: 'query',
1258
+ name: 'api_key',
1259
+ type: 'apiKey'
1260
+ }
1261
+ ],
794
1262
  url: '/collections/datasets/items',
795
1263
  ...options,
796
1264
  headers: {
@@ -804,7 +1272,15 @@ export const collectionItemsCollectionsDatasetsItemsGet = (options) => (options?
804
1272
  * Get a single dataset as an OGC Record Feature.
805
1273
  */
806
1274
  export const getCollectionItemCollectionsDatasetsItemsRecordIdGet = (options) => (options.client ?? client).get({
807
- security: [{ scheme: 'bearer', type: 'http' }],
1275
+ security: [
1276
+ { scheme: 'bearer', type: 'http' },
1277
+ { name: 'X-Api-Key', type: 'apiKey' },
1278
+ {
1279
+ in: 'query',
1280
+ name: 'api_key',
1281
+ type: 'apiKey'
1282
+ }
1283
+ ],
808
1284
  url: '/collections/datasets/items/{record_id}',
809
1285
  ...options
810
1286
  });
@@ -832,7 +1308,15 @@ export const getSortablesCollectionsDatasetsSortablesGet = (options) => (options
832
1308
  * Per-dataset OGC collection metadata with extent, CRS, and items link.
833
1309
  */
834
1310
  export const getDatasetCollectionCollectionsDatasetIdGet = (options) => (options.client ?? client).get({
835
- security: [{ scheme: 'bearer', type: 'http' }],
1311
+ security: [
1312
+ { scheme: 'bearer', type: 'http' },
1313
+ { name: 'X-Api-Key', type: 'apiKey' },
1314
+ {
1315
+ in: 'query',
1316
+ name: 'api_key',
1317
+ type: 'apiKey'
1318
+ }
1319
+ ],
836
1320
  url: '/collections/{dataset_id}',
837
1321
  ...options
838
1322
  });
@@ -848,7 +1332,15 @@ export const getDatasetCollectionCollectionsDatasetIdGet = (options) => (options
848
1332
  * parameter SHALL be ignored" applies (OGC 17-069r4 §7.15.5).
849
1333
  */
850
1334
  export const getCollectionItemsCollectionsDatasetIdItemsGet = (options) => (options.client ?? client).get({
851
- security: [{ scheme: 'bearer', type: 'http' }],
1335
+ security: [
1336
+ { scheme: 'bearer', type: 'http' },
1337
+ { name: 'X-Api-Key', type: 'apiKey' },
1338
+ {
1339
+ in: 'query',
1340
+ name: 'api_key',
1341
+ type: 'apiKey'
1342
+ }
1343
+ ],
852
1344
  url: '/collections/{dataset_id}/items',
853
1345
  ...options
854
1346
  });
@@ -858,7 +1350,15 @@ export const getCollectionItemsCollectionsDatasetIdItemsGet = (options) => (opti
858
1350
  * OGC API Features single feature endpoint -- returns a GeoJSON Feature.
859
1351
  */
860
1352
  export const getCollectionItemFeatureCollectionsDatasetIdItemsFeatureIdGet = (options) => (options.client ?? client).get({
861
- security: [{ scheme: 'bearer', type: 'http' }],
1353
+ security: [
1354
+ { scheme: 'bearer', type: 'http' },
1355
+ { name: 'X-Api-Key', type: 'apiKey' },
1356
+ {
1357
+ in: 'query',
1358
+ name: 'api_key',
1359
+ type: 'apiKey'
1360
+ }
1361
+ ],
862
1362
  url: '/collections/{dataset_id}/items/{feature_id}',
863
1363
  ...options
864
1364
  });
@@ -868,7 +1368,15 @@ export const getCollectionItemFeatureCollectionsDatasetIdItemsFeatureIdGet = (op
868
1368
  * Preview what an import would change without applying any modifications.
869
1369
  */
870
1370
  export const dryRunConfigurationConfigOpsDryRunPost = (options) => (options.client ?? client).post({
871
- security: [{ scheme: 'bearer', type: 'http' }],
1371
+ security: [
1372
+ { scheme: 'bearer', type: 'http' },
1373
+ { name: 'X-Api-Key', type: 'apiKey' },
1374
+ {
1375
+ in: 'query',
1376
+ name: 'api_key',
1377
+ type: 'apiKey'
1378
+ }
1379
+ ],
872
1380
  url: '/config-ops/dry-run/',
873
1381
  ...options,
874
1382
  headers: {
@@ -888,7 +1396,15 @@ export const dryRunConfigurationConfigOpsDryRunPost = (options) => (options.clie
888
1396
  * document a download endpoint in OpenAPI.
889
1397
  */
890
1398
  export const exportConfigurationConfigOpsExportGet = (options) => (options?.client ?? client).get({
891
- security: [{ scheme: 'bearer', type: 'http' }],
1399
+ security: [
1400
+ { scheme: 'bearer', type: 'http' },
1401
+ { name: 'X-Api-Key', type: 'apiKey' },
1402
+ {
1403
+ in: 'query',
1404
+ name: 'api_key',
1405
+ type: 'apiKey'
1406
+ }
1407
+ ],
892
1408
  url: '/config-ops/export/',
893
1409
  ...options
894
1410
  });
@@ -901,7 +1417,15 @@ export const exportConfigurationConfigOpsExportGet = (options) => (options?.clie
901
1417
  * Overwrite mode: replaces all settings and OAuth providers.
902
1418
  */
903
1419
  export const importConfigurationConfigOpsImportPost = (options) => (options.client ?? client).post({
904
- security: [{ scheme: 'bearer', type: 'http' }],
1420
+ security: [
1421
+ { scheme: 'bearer', type: 'http' },
1422
+ { name: 'X-Api-Key', type: 'apiKey' },
1423
+ {
1424
+ in: 'query',
1425
+ name: 'api_key',
1426
+ type: 'apiKey'
1427
+ }
1428
+ ],
905
1429
  url: '/config-ops/import/',
906
1430
  ...options,
907
1431
  headers: {
@@ -917,7 +1441,15 @@ export const importConfigurationConfigOpsImportPost = (options) => (options.clie
917
1441
  * Returns pass/fail with latency and error details for each service.
918
1442
  */
919
1443
  export const validateConfigurationConfigOpsValidatePost = (options) => (options?.client ?? client).post({
920
- security: [{ scheme: 'bearer', type: 'http' }],
1444
+ security: [
1445
+ { scheme: 'bearer', type: 'http' },
1446
+ { name: 'X-Api-Key', type: 'apiKey' },
1447
+ {
1448
+ in: 'query',
1449
+ name: 'api_key',
1450
+ type: 'apiKey'
1451
+ }
1452
+ ],
921
1453
  url: '/config-ops/validate/',
922
1454
  ...options
923
1455
  });
@@ -933,7 +1465,15 @@ export const conformanceConformanceGet = (options) => (options?.client ?? client
933
1465
  * List datasets with visibility filtering and pagination.
934
1466
  */
935
1467
  export const listAllDatasetsDatasetsGet = (options) => (options?.client ?? client).get({
936
- security: [{ scheme: 'bearer', type: 'http' }],
1468
+ security: [
1469
+ { scheme: 'bearer', type: 'http' },
1470
+ { name: 'X-Api-Key', type: 'apiKey' },
1471
+ {
1472
+ in: 'query',
1473
+ name: 'api_key',
1474
+ type: 'apiKey'
1475
+ }
1476
+ ],
937
1477
  url: '/datasets/',
938
1478
  ...options
939
1479
  });
@@ -943,7 +1483,15 @@ export const listAllDatasetsDatasetsGet = (options) => (options?.client ?? clien
943
1483
  * Delete multiple datasets in one request. Returns per-item results.
944
1484
  */
945
1485
  export const bulkDeleteDatasetsEndpointDatasetsBulkDeletePost = (options) => (options.client ?? client).post({
946
- security: [{ scheme: 'bearer', type: 'http' }],
1486
+ security: [
1487
+ { scheme: 'bearer', type: 'http' },
1488
+ { name: 'X-Api-Key', type: 'apiKey' },
1489
+ {
1490
+ in: 'query',
1491
+ name: 'api_key',
1492
+ type: 'apiKey'
1493
+ }
1494
+ ],
947
1495
  url: '/datasets/bulk-delete/',
948
1496
  ...options,
949
1497
  headers: {
@@ -959,7 +1507,15 @@ export const bulkDeleteDatasetsEndpointDatasetsBulkDeletePost = (options) => (op
959
1507
  * Creates a PostGIS table in the data schema and a catalog record.
960
1508
  */
961
1509
  export const createEmptyDatasetEndpointDatasetsCreatePost = (options) => (options.client ?? client).post({
962
- security: [{ scheme: 'bearer', type: 'http' }],
1510
+ security: [
1511
+ { scheme: 'bearer', type: 'http' },
1512
+ { name: 'X-Api-Key', type: 'apiKey' },
1513
+ {
1514
+ in: 'query',
1515
+ name: 'api_key',
1516
+ type: 'apiKey'
1517
+ }
1518
+ ],
963
1519
  url: '/datasets/create/',
964
1520
  ...options,
965
1521
  headers: {
@@ -973,7 +1529,15 @@ export const createEmptyDatasetEndpointDatasetsCreatePost = (options) => (option
973
1529
  * DCAT-US Schema v3.0 catalog feed. Respects dataset visibility.
974
1530
  */
975
1531
  export const getDcatUs3CatalogDatasetsDcatUs30Get = (options) => (options?.client ?? client).get({
976
- security: [{ scheme: 'bearer', type: 'http' }],
1532
+ security: [
1533
+ { scheme: 'bearer', type: 'http' },
1534
+ { name: 'X-Api-Key', type: 'apiKey' },
1535
+ {
1536
+ in: 'query',
1537
+ name: 'api_key',
1538
+ type: 'apiKey'
1539
+ }
1540
+ ],
977
1541
  url: '/datasets/dcat-us/3.0/',
978
1542
  ...options
979
1543
  });
@@ -983,7 +1547,15 @@ export const getDcatUs3CatalogDatasetsDcatUs30Get = (options) => (options?.clien
983
1547
  * Validate the visible DCAT-US Schema v3.0 catalog feed.
984
1548
  */
985
1549
  export const validateDcatUs3CatalogDatasetsDcatUs30ValidationGet = (options) => (options?.client ?? client).get({
986
- security: [{ scheme: 'bearer', type: 'http' }],
1550
+ security: [
1551
+ { scheme: 'bearer', type: 'http' },
1552
+ { name: 'X-Api-Key', type: 'apiKey' },
1553
+ {
1554
+ in: 'query',
1555
+ name: 'api_key',
1556
+ type: 'apiKey'
1557
+ }
1558
+ ],
987
1559
  url: '/datasets/dcat-us/3.0/validation/',
988
1560
  ...options
989
1561
  });
@@ -993,7 +1565,15 @@ export const validateDcatUs3CatalogDatasetsDcatUs30ValidationGet = (options) =>
993
1565
  * DCAT 3 JSON-LD catalog feed. Respects dataset visibility.
994
1566
  */
995
1567
  export const getDcatCatalogDatasetsDcatGet = (options) => (options?.client ?? client).get({
996
- security: [{ scheme: 'bearer', type: 'http' }],
1568
+ security: [
1569
+ { scheme: 'bearer', type: 'http' },
1570
+ { name: 'X-Api-Key', type: 'apiKey' },
1571
+ {
1572
+ in: 'query',
1573
+ name: 'api_key',
1574
+ type: 'apiKey'
1575
+ }
1576
+ ],
997
1577
  url: '/datasets/dcat/',
998
1578
  ...options
999
1579
  });
@@ -1003,7 +1583,15 @@ export const getDcatCatalogDatasetsDcatGet = (options) => (options?.client ?? cl
1003
1583
  * Validate the visible W3C DCAT 3 catalog feed.
1004
1584
  */
1005
1585
  export const validateDcat3CatalogDatasetsDcatValidationGet = (options) => (options?.client ?? client).get({
1006
- security: [{ scheme: 'bearer', type: 'http' }],
1586
+ security: [
1587
+ { scheme: 'bearer', type: 'http' },
1588
+ { name: 'X-Api-Key', type: 'apiKey' },
1589
+ {
1590
+ in: 'query',
1591
+ name: 'api_key',
1592
+ type: 'apiKey'
1593
+ }
1594
+ ],
1007
1595
  url: '/datasets/dcat/validation/',
1008
1596
  ...options
1009
1597
  });
@@ -1013,7 +1601,15 @@ export const validateDcat3CatalogDatasetsDcatValidationGet = (options) => (optio
1013
1601
  * GeoDCAT-AP 2.0.0 catalog feed. Respects dataset visibility.
1014
1602
  */
1015
1603
  export const getGeodcatApCatalogDatasetsGeodcatApGet = (options) => (options?.client ?? client).get({
1016
- security: [{ scheme: 'bearer', type: 'http' }],
1604
+ security: [
1605
+ { scheme: 'bearer', type: 'http' },
1606
+ { name: 'X-Api-Key', type: 'apiKey' },
1607
+ {
1608
+ in: 'query',
1609
+ name: 'api_key',
1610
+ type: 'apiKey'
1611
+ }
1612
+ ],
1017
1613
  url: '/datasets/geodcat-ap/',
1018
1614
  ...options
1019
1615
  });
@@ -1023,7 +1619,15 @@ export const getGeodcatApCatalogDatasetsGeodcatApGet = (options) => (options?.cl
1023
1619
  * Validate the visible GeoDCAT-AP 2.0.0 catalog feed.
1024
1620
  */
1025
1621
  export const validateGeodcatApCatalogDatasetsGeodcatApValidationGet = (options) => (options?.client ?? client).get({
1026
- security: [{ scheme: 'bearer', type: 'http' }],
1622
+ security: [
1623
+ { scheme: 'bearer', type: 'http' },
1624
+ { name: 'X-Api-Key', type: 'apiKey' },
1625
+ {
1626
+ in: 'query',
1627
+ name: 'api_key',
1628
+ type: 'apiKey'
1629
+ }
1630
+ ],
1027
1631
  url: '/datasets/geodcat-ap/validation/',
1028
1632
  ...options
1029
1633
  });
@@ -1033,7 +1637,15 @@ export const validateGeodcatApCatalogDatasetsGeodcatApValidationGet = (options)
1033
1637
  * Delete a FK relationship. Editor+ required.
1034
1638
  */
1035
1639
  export const deleteDatasetRelationshipDatasetsRelationshipsRelationshipIdDelete = (options) => (options.client ?? client).delete({
1036
- security: [{ scheme: 'bearer', type: 'http' }],
1640
+ security: [
1641
+ { scheme: 'bearer', type: 'http' },
1642
+ { name: 'X-Api-Key', type: 'apiKey' },
1643
+ {
1644
+ in: 'query',
1645
+ name: 'api_key',
1646
+ type: 'apiKey'
1647
+ }
1648
+ ],
1037
1649
  url: '/datasets/relationships/{relationship_id}/',
1038
1650
  ...options
1039
1651
  });
@@ -1043,7 +1655,15 @@ export const deleteDatasetRelationshipDatasetsRelationshipsRelationshipIdDelete
1043
1655
  * Delete a dataset with cascade cleanup. Owner or admin only, requires confirm_title.
1044
1656
  */
1045
1657
  export const deleteDatasetEndpointDatasetsDatasetIdDelete = (options) => (options.client ?? client).delete({
1046
- security: [{ scheme: 'bearer', type: 'http' }],
1658
+ security: [
1659
+ { scheme: 'bearer', type: 'http' },
1660
+ { name: 'X-Api-Key', type: 'apiKey' },
1661
+ {
1662
+ in: 'query',
1663
+ name: 'api_key',
1664
+ type: 'apiKey'
1665
+ }
1666
+ ],
1047
1667
  url: '/datasets/{dataset_id}',
1048
1668
  ...options,
1049
1669
  headers: {
@@ -1057,7 +1677,15 @@ export const deleteDatasetEndpointDatasetsDatasetIdDelete = (options) => (option
1057
1677
  * Get a single dataset by ID with visibility check.
1058
1678
  */
1059
1679
  export const getSingleDatasetDatasetsDatasetIdGet = (options) => (options.client ?? client).get({
1060
- security: [{ scheme: 'bearer', type: 'http' }],
1680
+ security: [
1681
+ { scheme: 'bearer', type: 'http' },
1682
+ { name: 'X-Api-Key', type: 'apiKey' },
1683
+ {
1684
+ in: 'query',
1685
+ name: 'api_key',
1686
+ type: 'apiKey'
1687
+ }
1688
+ ],
1061
1689
  url: '/datasets/{dataset_id}',
1062
1690
  ...options
1063
1691
  });
@@ -1067,7 +1695,15 @@ export const getSingleDatasetDatasetsDatasetIdGet = (options) => (options.client
1067
1695
  * Update user-editable dataset metadata.
1068
1696
  */
1069
1697
  export const updateDatasetMetadataDatasetsDatasetIdPatch = (options) => (options.client ?? client).patch({
1070
- security: [{ scheme: 'bearer', type: 'http' }],
1698
+ security: [
1699
+ { scheme: 'bearer', type: 'http' },
1700
+ { name: 'X-Api-Key', type: 'apiKey' },
1701
+ {
1702
+ in: 'query',
1703
+ name: 'api_key',
1704
+ type: 'apiKey'
1705
+ }
1706
+ ],
1071
1707
  url: '/datasets/{dataset_id}',
1072
1708
  ...options,
1073
1709
  headers: {
@@ -1081,7 +1717,15 @@ export const updateDatasetMetadataDatasetsDatasetIdPatch = (options) => (options
1081
1717
  * List all attribute metadata for a dataset.
1082
1718
  */
1083
1719
  export const listAttributesEndpointDatasetsDatasetIdAttributesGet = (options) => (options.client ?? client).get({
1084
- security: [{ scheme: 'bearer', type: 'http' }],
1720
+ security: [
1721
+ { scheme: 'bearer', type: 'http' },
1722
+ { name: 'X-Api-Key', type: 'apiKey' },
1723
+ {
1724
+ in: 'query',
1725
+ name: 'api_key',
1726
+ type: 'apiKey'
1727
+ }
1728
+ ],
1085
1729
  url: '/datasets/{dataset_id}/attributes/',
1086
1730
  ...options
1087
1731
  });
@@ -1091,7 +1735,15 @@ export const listAttributesEndpointDatasetsDatasetIdAttributesGet = (options) =>
1091
1735
  * Get a single attribute metadata entry.
1092
1736
  */
1093
1737
  export const getAttributeEndpointDatasetsDatasetIdAttributesAttributeIdGet = (options) => (options.client ?? client).get({
1094
- security: [{ scheme: 'bearer', type: 'http' }],
1738
+ security: [
1739
+ { scheme: 'bearer', type: 'http' },
1740
+ { name: 'X-Api-Key', type: 'apiKey' },
1741
+ {
1742
+ in: 'query',
1743
+ name: 'api_key',
1744
+ type: 'apiKey'
1745
+ }
1746
+ ],
1095
1747
  url: '/datasets/{dataset_id}/attributes/{attribute_id}/',
1096
1748
  ...options
1097
1749
  });
@@ -1101,7 +1753,15 @@ export const getAttributeEndpointDatasetsDatasetIdAttributesAttributeIdGet = (op
1101
1753
  * Update user-editable attribute metadata fields.
1102
1754
  */
1103
1755
  export const updateAttributeEndpointDatasetsDatasetIdAttributesAttributeIdPatch = (options) => (options.client ?? client).patch({
1104
- security: [{ scheme: 'bearer', type: 'http' }],
1756
+ security: [
1757
+ { scheme: 'bearer', type: 'http' },
1758
+ { name: 'X-Api-Key', type: 'apiKey' },
1759
+ {
1760
+ in: 'query',
1761
+ name: 'api_key',
1762
+ type: 'apiKey'
1763
+ }
1764
+ ],
1105
1765
  url: '/datasets/{dataset_id}/attributes/{attribute_id}/',
1106
1766
  ...options,
1107
1767
  headers: {
@@ -1115,7 +1775,15 @@ export const updateAttributeEndpointDatasetsDatasetIdAttributesAttributeIdPatch
1115
1775
  * Reset attribute metadata to auto-populated values, clearing user_modified_fields.
1116
1776
  */
1117
1777
  export const resetAttributeEndpointDatasetsDatasetIdAttributesAttributeIdResetPost = (options) => (options.client ?? client).post({
1118
- security: [{ scheme: 'bearer', type: 'http' }],
1778
+ security: [
1779
+ { scheme: 'bearer', type: 'http' },
1780
+ { name: 'X-Api-Key', type: 'apiKey' },
1781
+ {
1782
+ in: 'query',
1783
+ name: 'api_key',
1784
+ type: 'apiKey'
1785
+ }
1786
+ ],
1119
1787
  url: '/datasets/{dataset_id}/attributes/{attribute_id}/reset/',
1120
1788
  ...options
1121
1789
  });
@@ -1125,7 +1793,15 @@ export const resetAttributeEndpointDatasetsDatasetIdAttributesAttributeIdResetPo
1125
1793
  * Get statistics for a numeric dataset column (for graduated styling).
1126
1794
  */
1127
1795
  export const getColumnStatsEndpointDatasetsDatasetIdColumnsColumnNameStatsGet = (options) => (options.client ?? client).get({
1128
- security: [{ scheme: 'bearer', type: 'http' }],
1796
+ security: [
1797
+ { scheme: 'bearer', type: 'http' },
1798
+ { name: 'X-Api-Key', type: 'apiKey' },
1799
+ {
1800
+ in: 'query',
1801
+ name: 'api_key',
1802
+ type: 'apiKey'
1803
+ }
1804
+ ],
1129
1805
  url: '/datasets/{dataset_id}/columns/{column_name}/stats/',
1130
1806
  ...options
1131
1807
  });
@@ -1135,7 +1811,15 @@ export const getColumnStatsEndpointDatasetsDatasetIdColumnsColumnNameStatsGet =
1135
1811
  * Get distinct values for a dataset column (for categorical styling).
1136
1812
  */
1137
1813
  export const getColumnValuesDatasetsDatasetIdColumnsColumnNameValuesGet = (options) => (options.client ?? client).get({
1138
- security: [{ scheme: 'bearer', type: 'http' }],
1814
+ security: [
1815
+ { scheme: 'bearer', type: 'http' },
1816
+ { name: 'X-Api-Key', type: 'apiKey' },
1817
+ {
1818
+ in: 'query',
1819
+ name: 'api_key',
1820
+ type: 'apiKey'
1821
+ }
1822
+ ],
1139
1823
  url: '/datasets/{dataset_id}/columns/{column_name}/values/',
1140
1824
  ...options
1141
1825
  });
@@ -1145,7 +1829,15 @@ export const getColumnValuesDatasetsDatasetIdColumnsColumnNameValuesGet = (optio
1145
1829
  * DCAT-US Schema v3.0 JSON-LD for a single dataset.
1146
1830
  */
1147
1831
  export const getDcatUs3RecordDatasetsDatasetIdDcatUs30Get = (options) => (options.client ?? client).get({
1148
- security: [{ scheme: 'bearer', type: 'http' }],
1832
+ security: [
1833
+ { scheme: 'bearer', type: 'http' },
1834
+ { name: 'X-Api-Key', type: 'apiKey' },
1835
+ {
1836
+ in: 'query',
1837
+ name: 'api_key',
1838
+ type: 'apiKey'
1839
+ }
1840
+ ],
1149
1841
  url: '/datasets/{dataset_id}/dcat-us/3.0/',
1150
1842
  ...options
1151
1843
  });
@@ -1155,7 +1847,15 @@ export const getDcatUs3RecordDatasetsDatasetIdDcatUs30Get = (options) => (option
1155
1847
  * Validate a single dataset as DCAT-US Schema v3.0.
1156
1848
  */
1157
1849
  export const validateDcatUs3RecordDatasetsDatasetIdDcatUs30ValidationGet = (options) => (options.client ?? client).get({
1158
- security: [{ scheme: 'bearer', type: 'http' }],
1850
+ security: [
1851
+ { scheme: 'bearer', type: 'http' },
1852
+ { name: 'X-Api-Key', type: 'apiKey' },
1853
+ {
1854
+ in: 'query',
1855
+ name: 'api_key',
1856
+ type: 'apiKey'
1857
+ }
1858
+ ],
1159
1859
  url: '/datasets/{dataset_id}/dcat-us/3.0/validation/',
1160
1860
  ...options
1161
1861
  });
@@ -1165,7 +1865,15 @@ export const validateDcatUs3RecordDatasetsDatasetIdDcatUs30ValidationGet = (opti
1165
1865
  * DCAT 3 JSON-LD for a single dataset.
1166
1866
  */
1167
1867
  export const getDcatRecordDatasetsDatasetIdDcatGet = (options) => (options.client ?? client).get({
1168
- security: [{ scheme: 'bearer', type: 'http' }],
1868
+ security: [
1869
+ { scheme: 'bearer', type: 'http' },
1870
+ { name: 'X-Api-Key', type: 'apiKey' },
1871
+ {
1872
+ in: 'query',
1873
+ name: 'api_key',
1874
+ type: 'apiKey'
1875
+ }
1876
+ ],
1169
1877
  url: '/datasets/{dataset_id}/dcat/',
1170
1878
  ...options
1171
1879
  });
@@ -1175,7 +1883,15 @@ export const getDcatRecordDatasetsDatasetIdDcatGet = (options) => (options.clien
1175
1883
  * Validate a single dataset as W3C DCAT 3.
1176
1884
  */
1177
1885
  export const validateDcat3RecordDatasetsDatasetIdDcatValidationGet = (options) => (options.client ?? client).get({
1178
- security: [{ scheme: 'bearer', type: 'http' }],
1886
+ security: [
1887
+ { scheme: 'bearer', type: 'http' },
1888
+ { name: 'X-Api-Key', type: 'apiKey' },
1889
+ {
1890
+ in: 'query',
1891
+ name: 'api_key',
1892
+ type: 'apiKey'
1893
+ }
1894
+ ],
1179
1895
  url: '/datasets/{dataset_id}/dcat/validation/',
1180
1896
  ...options
1181
1897
  });
@@ -1195,7 +1911,15 @@ export const validateDcat3RecordDatasetsDatasetIdDcatValidationGet = (options) =
1195
1911
  * user_id=NULL.
1196
1912
  */
1197
1913
  export const downloadCogDatasetsDatasetIdDownloadCogGet = (options) => (options.client ?? client).get({
1198
- security: [{ scheme: 'bearer', type: 'http' }],
1914
+ security: [
1915
+ { scheme: 'bearer', type: 'http' },
1916
+ { name: 'X-Api-Key', type: 'apiKey' },
1917
+ {
1918
+ in: 'query',
1919
+ name: 'api_key',
1920
+ type: 'apiKey'
1921
+ }
1922
+ ],
1199
1923
  url: '/datasets/{dataset_id}/download/cog',
1200
1924
  ...options
1201
1925
  });
@@ -1204,11 +1928,20 @@ export const downloadCogDatasetsDatasetIdDownloadCogGet = (options) => (options.
1204
1928
  *
1205
1929
  * Export a dataset as a downloadable file.
1206
1930
  *
1207
- * Supports GeoPackage, GeoJSON, Shapefile (zipped), and CSV formats.
1208
- * Optional CRS reprojection, spatial filtering, and attribute filtering.
1931
+ * Supports GeoPackage, GeoJSON, Shapefile (zipped), CSV, and GeoParquet
1932
+ * formats. Optional CRS reprojection, spatial filtering, and attribute
1933
+ * filtering. GeoParquet is always emitted in EPSG:4326 (OGC:CRS84).
1209
1934
  */
1210
1935
  export const exportDatasetEndpointDatasetsDatasetIdExportGet = (options) => (options.client ?? client).get({
1211
- security: [{ scheme: 'bearer', type: 'http' }],
1936
+ security: [
1937
+ { scheme: 'bearer', type: 'http' },
1938
+ { name: 'X-Api-Key', type: 'apiKey' },
1939
+ {
1940
+ in: 'query',
1941
+ name: 'api_key',
1942
+ type: 'apiKey'
1943
+ }
1944
+ ],
1212
1945
  url: '/datasets/{dataset_id}/export',
1213
1946
  ...options
1214
1947
  });
@@ -1236,7 +1969,15 @@ export const exportDatasetEndpointDatasetsDatasetIdExportGet = (options) => (opt
1236
1969
  * Truly credentialless requests keep the anonymous public path.
1237
1970
  */
1238
1971
  export const getFeaturesGeojsonZEndpointDatasetsDatasetIdFeaturesGeojsonGet = (options) => (options.client ?? client).get({
1239
- security: [{ scheme: 'bearer', type: 'http' }],
1972
+ security: [
1973
+ { scheme: 'bearer', type: 'http' },
1974
+ { name: 'X-Api-Key', type: 'apiKey' },
1975
+ {
1976
+ in: 'query',
1977
+ name: 'api_key',
1978
+ type: 'apiKey'
1979
+ }
1980
+ ],
1240
1981
  url: '/datasets/{dataset_id}/features.geojson',
1241
1982
  ...options
1242
1983
  });
@@ -1246,7 +1987,15 @@ export const getFeaturesGeojsonZEndpointDatasetsDatasetIdFeaturesGeojsonGet = (o
1246
1987
  * Get paginated GeoJSON features for a dataset.
1247
1988
  */
1248
1989
  export const listFeaturesDatasetsDatasetIdFeaturesGet = (options) => (options.client ?? client).get({
1249
- security: [{ scheme: 'bearer', type: 'http' }],
1990
+ security: [
1991
+ { scheme: 'bearer', type: 'http' },
1992
+ { name: 'X-Api-Key', type: 'apiKey' },
1993
+ {
1994
+ in: 'query',
1995
+ name: 'api_key',
1996
+ type: 'apiKey'
1997
+ }
1998
+ ],
1250
1999
  url: '/datasets/{dataset_id}/features/',
1251
2000
  ...options
1252
2001
  });
@@ -1256,7 +2005,15 @@ export const listFeaturesDatasetsDatasetIdFeaturesGet = (options) => (options.cl
1256
2005
  * Insert a new GeoJSON feature into a dataset.
1257
2006
  */
1258
2007
  export const createFeatureDatasetsDatasetIdFeaturesPost = (options) => (options.client ?? client).post({
1259
- security: [{ scheme: 'bearer', type: 'http' }],
2008
+ security: [
2009
+ { scheme: 'bearer', type: 'http' },
2010
+ { name: 'X-Api-Key', type: 'apiKey' },
2011
+ {
2012
+ in: 'query',
2013
+ name: 'api_key',
2014
+ type: 'apiKey'
2015
+ }
2016
+ ],
1260
2017
  url: '/datasets/{dataset_id}/features/',
1261
2018
  ...options,
1262
2019
  headers: {
@@ -1270,7 +2027,15 @@ export const createFeatureDatasetsDatasetIdFeaturesPost = (options) => (options.
1270
2027
  * Delete a feature by gid (hard delete).
1271
2028
  */
1272
2029
  export const deleteSingleFeatureDatasetsDatasetIdFeaturesGidDelete = (options) => (options.client ?? client).delete({
1273
- security: [{ scheme: 'bearer', type: 'http' }],
2030
+ security: [
2031
+ { scheme: 'bearer', type: 'http' },
2032
+ { name: 'X-Api-Key', type: 'apiKey' },
2033
+ {
2034
+ in: 'query',
2035
+ name: 'api_key',
2036
+ type: 'apiKey'
2037
+ }
2038
+ ],
1274
2039
  url: '/datasets/{dataset_id}/features/{gid}',
1275
2040
  ...options
1276
2041
  });
@@ -1280,7 +2045,15 @@ export const deleteSingleFeatureDatasetsDatasetIdFeaturesGidDelete = (options) =
1280
2045
  * Get a single GeoJSON feature by gid.
1281
2046
  */
1282
2047
  export const getSingleFeatureDatasetsDatasetIdFeaturesGidGet = (options) => (options.client ?? client).get({
1283
- security: [{ scheme: 'bearer', type: 'http' }],
2048
+ security: [
2049
+ { scheme: 'bearer', type: 'http' },
2050
+ { name: 'X-Api-Key', type: 'apiKey' },
2051
+ {
2052
+ in: 'query',
2053
+ name: 'api_key',
2054
+ type: 'apiKey'
2055
+ }
2056
+ ],
1284
2057
  url: '/datasets/{dataset_id}/features/{gid}',
1285
2058
  ...options
1286
2059
  });
@@ -1290,7 +2063,15 @@ export const getSingleFeatureDatasetsDatasetIdFeaturesGidGet = (options) => (opt
1290
2063
  * Partial update of a feature (PATCH semantics).
1291
2064
  */
1292
2065
  export const patchSingleFeatureDatasetsDatasetIdFeaturesGidPatch = (options) => (options.client ?? client).patch({
1293
- security: [{ scheme: 'bearer', type: 'http' }],
2066
+ security: [
2067
+ { scheme: 'bearer', type: 'http' },
2068
+ { name: 'X-Api-Key', type: 'apiKey' },
2069
+ {
2070
+ in: 'query',
2071
+ name: 'api_key',
2072
+ type: 'apiKey'
2073
+ }
2074
+ ],
1294
2075
  url: '/datasets/{dataset_id}/features/{gid}',
1295
2076
  ...options,
1296
2077
  headers: {
@@ -1304,7 +2085,15 @@ export const patchSingleFeatureDatasetsDatasetIdFeaturesGidPatch = (options) =>
1304
2085
  * Full replacement of a feature (PUT semantics).
1305
2086
  */
1306
2087
  export const replaceSingleFeatureDatasetsDatasetIdFeaturesGidPut = (options) => (options.client ?? client).put({
1307
- security: [{ scheme: 'bearer', type: 'http' }],
2088
+ security: [
2089
+ { scheme: 'bearer', type: 'http' },
2090
+ { name: 'X-Api-Key', type: 'apiKey' },
2091
+ {
2092
+ in: 'query',
2093
+ name: 'api_key',
2094
+ type: 'apiKey'
2095
+ }
2096
+ ],
1308
2097
  url: '/datasets/{dataset_id}/features/{gid}',
1309
2098
  ...options,
1310
2099
  headers: {
@@ -1318,7 +2107,15 @@ export const replaceSingleFeatureDatasetsDatasetIdFeaturesGidPut = (options) =>
1318
2107
  * Get related records for a feature via FK relationship.
1319
2108
  */
1320
2109
  export const getFeatureRelatedRecordsDatasetsDatasetIdFeaturesGidRelatedRelationshipIdGet = (options) => (options.client ?? client).get({
1321
- security: [{ scheme: 'bearer', type: 'http' }],
2110
+ security: [
2111
+ { scheme: 'bearer', type: 'http' },
2112
+ { name: 'X-Api-Key', type: 'apiKey' },
2113
+ {
2114
+ in: 'query',
2115
+ name: 'api_key',
2116
+ type: 'apiKey'
2117
+ }
2118
+ ],
1322
2119
  url: '/datasets/{dataset_id}/features/{gid}/related/{relationship_id}/',
1323
2120
  ...options
1324
2121
  });
@@ -1328,7 +2125,15 @@ export const getFeatureRelatedRecordsDatasetsDatasetIdFeaturesGidRelatedRelation
1328
2125
  * GeoDCAT-AP 2.0.0 JSON-LD for a single dataset.
1329
2126
  */
1330
2127
  export const getGeodcatApRecordDatasetsDatasetIdGeodcatApGet = (options) => (options.client ?? client).get({
1331
- security: [{ scheme: 'bearer', type: 'http' }],
2128
+ security: [
2129
+ { scheme: 'bearer', type: 'http' },
2130
+ { name: 'X-Api-Key', type: 'apiKey' },
2131
+ {
2132
+ in: 'query',
2133
+ name: 'api_key',
2134
+ type: 'apiKey'
2135
+ }
2136
+ ],
1332
2137
  url: '/datasets/{dataset_id}/geodcat-ap/',
1333
2138
  ...options
1334
2139
  });
@@ -1338,7 +2143,15 @@ export const getGeodcatApRecordDatasetsDatasetIdGeodcatApGet = (options) => (opt
1338
2143
  * Validate a single dataset as GeoDCAT-AP 2.0.0.
1339
2144
  */
1340
2145
  export const validateGeodcatApRecordDatasetsDatasetIdGeodcatApValidationGet = (options) => (options.client ?? client).get({
1341
- security: [{ scheme: 'bearer', type: 'http' }],
2146
+ security: [
2147
+ { scheme: 'bearer', type: 'http' },
2148
+ { name: 'X-Api-Key', type: 'apiKey' },
2149
+ {
2150
+ in: 'query',
2151
+ name: 'api_key',
2152
+ type: 'apiKey'
2153
+ }
2154
+ ],
1342
2155
  url: '/datasets/{dataset_id}/geodcat-ap/validation/',
1343
2156
  ...options
1344
2157
  });
@@ -1348,7 +2161,15 @@ export const validateGeodcatApRecordDatasetsDatasetIdGeodcatApValidationGet = (o
1348
2161
  * Get audit log history for a specific dataset.
1349
2162
  */
1350
2163
  export const getDatasetHistoryDatasetsDatasetIdHistoryGet = (options) => (options.client ?? client).get({
1351
- security: [{ scheme: 'bearer', type: 'http' }],
2164
+ security: [
2165
+ { scheme: 'bearer', type: 'http' },
2166
+ { name: 'X-Api-Key', type: 'apiKey' },
2167
+ {
2168
+ in: 'query',
2169
+ name: 'api_key',
2170
+ type: 'apiKey'
2171
+ }
2172
+ ],
1352
2173
  url: '/datasets/{dataset_id}/history',
1353
2174
  ...options
1354
2175
  });
@@ -1358,7 +2179,15 @@ export const getDatasetHistoryDatasetsDatasetIdHistoryGet = (options) => (option
1358
2179
  * Return maps that contain this dataset, filtered by caller's RBAC visibility.
1359
2180
  */
1360
2181
  export const datasetMapsDatasetsDatasetIdMapsGet = (options) => (options.client ?? client).get({
1361
- security: [{ scheme: 'bearer', type: 'http' }],
2182
+ security: [
2183
+ { scheme: 'bearer', type: 'http' },
2184
+ { name: 'X-Api-Key', type: 'apiKey' },
2185
+ {
2186
+ in: 'query',
2187
+ name: 'api_key',
2188
+ type: 'apiKey'
2189
+ }
2190
+ ],
1362
2191
  url: '/datasets/{dataset_id}/maps/',
1363
2192
  ...options
1364
2193
  });
@@ -1368,7 +2197,15 @@ export const datasetMapsDatasetsDatasetIdMapsGet = (options) => (options.client
1368
2197
  * Serve a quicklook PNG image for a dataset.
1369
2198
  */
1370
2199
  export const getQuicklookDatasetsDatasetIdQuicklookGet = (options) => (options.client ?? client).get({
1371
- security: [{ scheme: 'bearer', type: 'http' }],
2200
+ security: [
2201
+ { scheme: 'bearer', type: 'http' },
2202
+ { name: 'X-Api-Key', type: 'apiKey' },
2203
+ {
2204
+ in: 'query',
2205
+ name: 'api_key',
2206
+ type: 'apiKey'
2207
+ }
2208
+ ],
1372
2209
  url: '/datasets/{dataset_id}/quicklook',
1373
2210
  ...options
1374
2211
  });
@@ -1378,7 +2215,15 @@ export const getQuicklookDatasetsDatasetIdQuicklookGet = (options) => (options.c
1378
2215
  * Return top-5 datasets similar to this one by embedding cosine similarity.
1379
2216
  */
1380
2217
  export const listRelatedDatasetsDatasetsDatasetIdRelatedGet = (options) => (options.client ?? client).get({
1381
- security: [{ scheme: 'bearer', type: 'http' }],
2218
+ security: [
2219
+ { scheme: 'bearer', type: 'http' },
2220
+ { name: 'X-Api-Key', type: 'apiKey' },
2221
+ {
2222
+ in: 'query',
2223
+ name: 'api_key',
2224
+ type: 'apiKey'
2225
+ }
2226
+ ],
1382
2227
  url: '/datasets/{dataset_id}/related/',
1383
2228
  ...options
1384
2229
  });
@@ -1394,7 +2239,15 @@ export const listRelatedDatasetsDatasetsDatasetIdRelatedGet = (options) => (opti
1394
2239
  * pagination.
1395
2240
  */
1396
2241
  export const listDatasetRelationshipsDatasetsDatasetIdRelationshipsGet = (options) => (options.client ?? client).get({
1397
- security: [{ scheme: 'bearer', type: 'http' }],
2242
+ security: [
2243
+ { scheme: 'bearer', type: 'http' },
2244
+ { name: 'X-Api-Key', type: 'apiKey' },
2245
+ {
2246
+ in: 'query',
2247
+ name: 'api_key',
2248
+ type: 'apiKey'
2249
+ }
2250
+ ],
1398
2251
  url: '/datasets/{dataset_id}/relationships/',
1399
2252
  ...options
1400
2253
  });
@@ -1404,7 +2257,15 @@ export const listDatasetRelationshipsDatasetsDatasetIdRelationshipsGet = (option
1404
2257
  * Create a new FK relationship. Editor+ required.
1405
2258
  */
1406
2259
  export const createDatasetRelationshipDatasetsDatasetIdRelationshipsPost = (options) => (options.client ?? client).post({
1407
- security: [{ scheme: 'bearer', type: 'http' }],
2260
+ security: [
2261
+ { scheme: 'bearer', type: 'http' },
2262
+ { name: 'X-Api-Key', type: 'apiKey' },
2263
+ {
2264
+ in: 'query',
2265
+ name: 'api_key',
2266
+ type: 'apiKey'
2267
+ }
2268
+ ],
1408
2269
  url: '/datasets/{dataset_id}/relationships/',
1409
2270
  ...options,
1410
2271
  headers: {
@@ -1419,7 +2280,15 @@ export const createDatasetRelationshipDatasetsDatasetIdRelationshipsPost = (opti
1419
2280
  */
1420
2281
  export const reuploadDatasetDatasetsDatasetIdReuploadPost = (options) => (options.client ?? client).post({
1421
2282
  ...formDataBodySerializer,
1422
- security: [{ scheme: 'bearer', type: 'http' }],
2283
+ security: [
2284
+ { scheme: 'bearer', type: 'http' },
2285
+ { name: 'X-Api-Key', type: 'apiKey' },
2286
+ {
2287
+ in: 'query',
2288
+ name: 'api_key',
2289
+ type: 'apiKey'
2290
+ }
2291
+ ],
1423
2292
  url: '/datasets/{dataset_id}/reupload',
1424
2293
  ...options,
1425
2294
  headers: {
@@ -1433,7 +2302,15 @@ export const reuploadDatasetDatasetsDatasetIdReuploadPost = (options) => (option
1433
2302
  * Request presigned URL(s) for direct-to-S3 reupload.
1434
2303
  */
1435
2304
  export const requestPresignedReuploadDatasetsDatasetIdReuploadPresignedPost = (options) => (options.client ?? client).post({
1436
- security: [{ scheme: 'bearer', type: 'http' }],
2305
+ security: [
2306
+ { scheme: 'bearer', type: 'http' },
2307
+ { name: 'X-Api-Key', type: 'apiKey' },
2308
+ {
2309
+ in: 'query',
2310
+ name: 'api_key',
2311
+ type: 'apiKey'
2312
+ }
2313
+ ],
1437
2314
  url: '/datasets/{dataset_id}/reupload/presigned',
1438
2315
  ...options,
1439
2316
  headers: {
@@ -1447,7 +2324,15 @@ export const requestPresignedReuploadDatasetsDatasetIdReuploadPresignedPost = (o
1447
2324
  * Notify that direct-to-S3 reupload is complete.
1448
2325
  */
1449
2326
  export const completePresignedReuploadDatasetsDatasetIdReuploadPresignedJobIdCompletePost = (options) => (options.client ?? client).post({
1450
- security: [{ scheme: 'bearer', type: 'http' }],
2327
+ security: [
2328
+ { scheme: 'bearer', type: 'http' },
2329
+ { name: 'X-Api-Key', type: 'apiKey' },
2330
+ {
2331
+ in: 'query',
2332
+ name: 'api_key',
2333
+ type: 'apiKey'
2334
+ }
2335
+ ],
1451
2336
  url: '/datasets/{dataset_id}/reupload/presigned/{job_id}/complete',
1452
2337
  ...options,
1453
2338
  headers: {
@@ -1461,7 +2346,15 @@ export const completePresignedReuploadDatasetsDatasetIdReuploadPresignedJobIdCom
1461
2346
  * Preview a remote service layer for dataset re-upload.
1462
2347
  */
1463
2348
  export const reuploadServicePreviewDatasetsDatasetIdReuploadServicePreviewPost = (options) => (options.client ?? client).post({
1464
- security: [{ scheme: 'bearer', type: 'http' }],
2349
+ security: [
2350
+ { scheme: 'bearer', type: 'http' },
2351
+ { name: 'X-Api-Key', type: 'apiKey' },
2352
+ {
2353
+ in: 'query',
2354
+ name: 'api_key',
2355
+ type: 'apiKey'
2356
+ }
2357
+ ],
1465
2358
  url: '/datasets/{dataset_id}/reupload/service/preview',
1466
2359
  ...options,
1467
2360
  headers: {
@@ -1475,7 +2368,15 @@ export const reuploadServicePreviewDatasetsDatasetIdReuploadServicePreviewPost =
1475
2368
  * Commit a re-upload, queuing the background swap task.
1476
2369
  */
1477
2370
  export const reuploadCommitDatasetsDatasetIdReuploadJobIdCommitPost = (options) => (options.client ?? client).post({
1478
- security: [{ scheme: 'bearer', type: 'http' }],
2371
+ security: [
2372
+ { scheme: 'bearer', type: 'http' },
2373
+ { name: 'X-Api-Key', type: 'apiKey' },
2374
+ {
2375
+ in: 'query',
2376
+ name: 'api_key',
2377
+ type: 'apiKey'
2378
+ }
2379
+ ],
1479
2380
  url: '/datasets/{dataset_id}/reupload/{job_id}/commit',
1480
2381
  ...options,
1481
2382
  headers: {
@@ -1495,7 +2396,15 @@ export const reuploadCommitDatasetsDatasetIdReuploadJobIdCommitPost = (options)
1495
2396
  * layer; omit it to get the default first-layer metadata.
1496
2397
  */
1497
2398
  export const reuploadPreviewDatasetsDatasetIdReuploadJobIdPreviewPost = (options) => (options.client ?? client).post({
1498
- security: [{ scheme: 'bearer', type: 'http' }],
2399
+ security: [
2400
+ { scheme: 'bearer', type: 'http' },
2401
+ { name: 'X-Api-Key', type: 'apiKey' },
2402
+ {
2403
+ in: 'query',
2404
+ name: 'api_key',
2405
+ type: 'apiKey'
2406
+ }
2407
+ ],
1499
2408
  url: '/datasets/{dataset_id}/reupload/{job_id}/preview',
1500
2409
  ...options,
1501
2410
  headers: {
@@ -1512,7 +2421,15 @@ export const reuploadPreviewDatasetsDatasetIdReuploadJobIdPreviewPost = (options
1512
2421
  * Supports column filtering via query params: ``filter[column_name]=value``.
1513
2422
  */
1514
2423
  export const getDatasetRowsEndpointDatasetsDatasetIdRowsGet = (options) => (options.client ?? client).get({
1515
- security: [{ scheme: 'bearer', type: 'http' }],
2424
+ security: [
2425
+ { scheme: 'bearer', type: 'http' },
2426
+ { name: 'X-Api-Key', type: 'apiKey' },
2427
+ {
2428
+ in: 'query',
2429
+ name: 'api_key',
2430
+ type: 'apiKey'
2431
+ }
2432
+ ],
1516
2433
  url: '/datasets/{dataset_id}/rows/',
1517
2434
  ...options
1518
2435
  });
@@ -1525,7 +2442,15 @@ export const getDatasetRowsEndpointDatasetsDatasetIdRowsGet = (options) => (opti
1525
2442
  * draft -> ready -> internal -> published (and back one step).
1526
2443
  */
1527
2444
  export const updatePublicationStatusDatasetsDatasetIdStatusPatch = (options) => (options.client ?? client).patch({
1528
- security: [{ scheme: 'bearer', type: 'http' }],
2445
+ security: [
2446
+ { scheme: 'bearer', type: 'http' },
2447
+ { name: 'X-Api-Key', type: 'apiKey' },
2448
+ {
2449
+ in: 'query',
2450
+ name: 'api_key',
2451
+ type: 'apiKey'
2452
+ }
2453
+ ],
1529
2454
  url: '/datasets/{dataset_id}/status/',
1530
2455
  ...options,
1531
2456
  headers: {
@@ -1542,7 +2467,15 @@ export const updatePublicationStatusDatasetsDatasetIdStatusPatch = (options) =>
1542
2467
  * (e.g. draft -> ready -> internal -> published) completes server-side.
1543
2468
  */
1544
2469
  export const setTargetStatusDatasetsDatasetIdTargetStatusPatch = (options) => (options.client ?? client).patch({
1545
- security: [{ scheme: 'bearer', type: 'http' }],
2470
+ security: [
2471
+ { scheme: 'bearer', type: 'http' },
2472
+ { name: 'X-Api-Key', type: 'apiKey' },
2473
+ {
2474
+ in: 'query',
2475
+ name: 'api_key',
2476
+ type: 'apiKey'
2477
+ }
2478
+ ],
1546
2479
  url: '/datasets/{dataset_id}/target-status/',
1547
2480
  ...options,
1548
2481
  headers: {
@@ -1561,7 +2494,15 @@ export const setTargetStatusDatasetsDatasetIdTargetStatusPatch = (options) => (o
1561
2494
  * a single query).
1562
2495
  */
1563
2496
  export const validateDatasetDatasetsDatasetIdValidateGet = (options) => (options.client ?? client).get({
1564
- security: [{ scheme: 'bearer', type: 'http' }],
2497
+ security: [
2498
+ { scheme: 'bearer', type: 'http' },
2499
+ { name: 'X-Api-Key', type: 'apiKey' },
2500
+ {
2501
+ in: 'query',
2502
+ name: 'api_key',
2503
+ type: 'apiKey'
2504
+ }
2505
+ ],
1565
2506
  url: '/datasets/{dataset_id}/validate/',
1566
2507
  ...options
1567
2508
  });
@@ -1571,7 +2512,15 @@ export const validateDatasetDatasetsDatasetIdValidateGet = (options) => (options
1571
2512
  * Get paginated version history for a dataset.
1572
2513
  */
1573
2514
  export const getDatasetVersionsEndpointDatasetsDatasetIdVersionsGet = (options) => (options.client ?? client).get({
1574
- security: [{ scheme: 'bearer', type: 'http' }],
2515
+ security: [
2516
+ { scheme: 'bearer', type: 'http' },
2517
+ { name: 'X-Api-Key', type: 'apiKey' },
2518
+ {
2519
+ in: 'query',
2520
+ name: 'api_key',
2521
+ type: 'apiKey'
2522
+ }
2523
+ ],
1575
2524
  url: '/datasets/{dataset_id}/versions/',
1576
2525
  ...options
1577
2526
  });
@@ -1581,7 +2530,15 @@ export const getDatasetVersionsEndpointDatasetsDatasetIdVersionsGet = (options)
1581
2530
  * Return ordered list of COG sources for a VRT dataset.
1582
2531
  */
1583
2532
  export const listVrtSourcesDatasetsDatasetIdVrtSourcesGet = (options) => (options.client ?? client).get({
1584
- security: [{ scheme: 'bearer', type: 'http' }],
2533
+ security: [
2534
+ { scheme: 'bearer', type: 'http' },
2535
+ { name: 'X-Api-Key', type: 'apiKey' },
2536
+ {
2537
+ in: 'query',
2538
+ name: 'api_key',
2539
+ type: 'apiKey'
2540
+ }
2541
+ ],
1585
2542
  url: '/datasets/{dataset_id}/vrt-sources/',
1586
2543
  ...options
1587
2544
  });
@@ -1591,7 +2548,15 @@ export const listVrtSourcesDatasetsDatasetIdVrtSourcesGet = (options) => (option
1591
2548
  * Return paginated generation history for a VRT dataset.
1592
2549
  */
1593
2550
  export const listVrtGenerationsDatasetsDatasetIdVrtGenerationsGet = (options) => (options.client ?? client).get({
1594
- security: [{ scheme: 'bearer', type: 'http' }],
2551
+ security: [
2552
+ { scheme: 'bearer', type: 'http' },
2553
+ { name: 'X-Api-Key', type: 'apiKey' },
2554
+ {
2555
+ in: 'query',
2556
+ name: 'api_key',
2557
+ type: 'apiKey'
2558
+ }
2559
+ ],
1595
2560
  url: '/datasets/{dataset_id}/vrt/generations/',
1596
2561
  ...options
1597
2562
  });
@@ -1601,7 +2566,15 @@ export const listVrtGenerationsDatasetsDatasetIdVrtGenerationsGet = (options) =>
1601
2566
  * Trigger manual VRT regeneration with advisory lock to prevent concurrent rebuilds.
1602
2567
  */
1603
2568
  export const regenerateVrtEndpointDatasetsDatasetIdVrtRegeneratePost = (options) => (options.client ?? client).post({
1604
- security: [{ scheme: 'bearer', type: 'http' }],
2569
+ security: [
2570
+ { scheme: 'bearer', type: 'http' },
2571
+ { name: 'X-Api-Key', type: 'apiKey' },
2572
+ {
2573
+ in: 'query',
2574
+ name: 'api_key',
2575
+ type: 'apiKey'
2576
+ }
2577
+ ],
1605
2578
  url: '/datasets/{dataset_id}/vrt/regenerate/',
1606
2579
  ...options
1607
2580
  });
@@ -1611,7 +2584,15 @@ export const regenerateVrtEndpointDatasetsDatasetIdVrtRegeneratePost = (options)
1611
2584
  * Return VRT dataset status, last generation time, source count, and per-source health.
1612
2585
  */
1613
2586
  export const getVrtStatusDatasetsDatasetIdVrtStatusGet = (options) => (options.client ?? client).get({
1614
- security: [{ scheme: 'bearer', type: 'http' }],
2587
+ security: [
2588
+ { scheme: 'bearer', type: 'http' },
2589
+ { name: 'X-Api-Key', type: 'apiKey' },
2590
+ {
2591
+ in: 'query',
2592
+ name: 'api_key',
2593
+ type: 'apiKey'
2594
+ }
2595
+ ],
1615
2596
  url: '/datasets/{dataset_id}/vrt/status/',
1616
2597
  ...options
1617
2598
  });
@@ -1642,7 +2623,15 @@ export const healthHealthGet = (options) => (options?.client ?? client).get({ ur
1642
2623
  * Permission: same as POST /ingest/commit/{job_id} — 'upload' capability.
1643
2624
  */
1644
2625
  export const commitFanOutIngestCommitFanOutJobIdPost = (options) => (options.client ?? client).post({
1645
- security: [{ scheme: 'bearer', type: 'http' }],
2626
+ security: [
2627
+ { scheme: 'bearer', type: 'http' },
2628
+ { name: 'X-Api-Key', type: 'apiKey' },
2629
+ {
2630
+ in: 'query',
2631
+ name: 'api_key',
2632
+ type: 'apiKey'
2633
+ }
2634
+ ],
1646
2635
  url: '/ingest/commit-fan-out/{job_id}',
1647
2636
  ...options,
1648
2637
  headers: {
@@ -1659,7 +2648,15 @@ export const commitFanOutIngestCommitFanOutJobIdPost = (options) => (options.cli
1659
2648
  * Only callable on jobs with status 'pending'.
1660
2649
  */
1661
2650
  export const commitImportIngestCommitJobIdPost = (options) => (options.client ?? client).post({
1662
- security: [{ scheme: 'bearer', type: 'http' }],
2651
+ security: [
2652
+ { scheme: 'bearer', type: 'http' },
2653
+ { name: 'X-Api-Key', type: 'apiKey' },
2654
+ {
2655
+ in: 'query',
2656
+ name: 'api_key',
2657
+ type: 'apiKey'
2658
+ }
2659
+ ],
1663
2660
  url: '/ingest/commit/{job_id}',
1664
2661
  ...options,
1665
2662
  headers: {
@@ -1678,7 +2675,15 @@ export const commitImportIngestCommitJobIdPost = (options) => (options.client ??
1678
2675
  * thousands of orphan tables don't blow up the response payload.
1679
2676
  */
1680
2677
  export const discoverTablesIngestDiscoverGet = (options) => (options?.client ?? client).get({
1681
- security: [{ scheme: 'bearer', type: 'http' }],
2678
+ security: [
2679
+ { scheme: 'bearer', type: 'http' },
2680
+ { name: 'X-Api-Key', type: 'apiKey' },
2681
+ {
2682
+ in: 'query',
2683
+ name: 'api_key',
2684
+ type: 'apiKey'
2685
+ }
2686
+ ],
1682
2687
  url: '/ingest/discover/',
1683
2688
  ...options
1684
2689
  });
@@ -1688,7 +2693,15 @@ export const discoverTablesIngestDiscoverGet = (options) => (options?.client ??
1688
2693
  * Apply a versioned manifest through the ingest service layer.
1689
2694
  */
1690
2695
  export const applyManifestEndpointIngestManifestApplyPost = (options) => (options.client ?? client).post({
1691
- security: [{ scheme: 'bearer', type: 'http' }],
2696
+ security: [
2697
+ { scheme: 'bearer', type: 'http' },
2698
+ { name: 'X-Api-Key', type: 'apiKey' },
2699
+ {
2700
+ in: 'query',
2701
+ name: 'api_key',
2702
+ type: 'apiKey'
2703
+ }
2704
+ ],
1692
2705
  url: '/ingest/manifest/apply',
1693
2706
  ...options,
1694
2707
  headers: {
@@ -1706,7 +2719,15 @@ export const applyManifestEndpointIngestManifestApplyPost = (options) => (option
1706
2719
  * Only callable on jobs with status 'pending'.
1707
2720
  */
1708
2721
  export const previewFileIngestPreviewJobIdPost = (options) => (options.client ?? client).post({
1709
- security: [{ scheme: 'bearer', type: 'http' }],
2722
+ security: [
2723
+ { scheme: 'bearer', type: 'http' },
2724
+ { name: 'X-Api-Key', type: 'apiKey' },
2725
+ {
2726
+ in: 'query',
2727
+ name: 'api_key',
2728
+ type: 'apiKey'
2729
+ }
2730
+ ],
1710
2731
  url: '/ingest/preview/{job_id}',
1711
2732
  ...options
1712
2733
  });
@@ -1719,7 +2740,15 @@ export const previewFileIngestPreviewJobIdPost = (options) => (options.client ??
1719
2740
  * catalog entry.
1720
2741
  */
1721
2742
  export const registerTableIngestRegisterPost = (options) => (options.client ?? client).post({
1722
- security: [{ scheme: 'bearer', type: 'http' }],
2743
+ security: [
2744
+ { scheme: 'bearer', type: 'http' },
2745
+ { name: 'X-Api-Key', type: 'apiKey' },
2746
+ {
2747
+ in: 'query',
2748
+ name: 'api_key',
2749
+ type: 'apiKey'
2750
+ }
2751
+ ],
1723
2752
  url: '/ingest/register/',
1724
2753
  ...options,
1725
2754
  headers: {
@@ -1738,7 +2767,15 @@ export const registerTableIngestRegisterPost = (options) => (options.client ?? c
1738
2767
  * removing the sequential per-table latency (PERF-3).
1739
2768
  */
1740
2769
  export const bulkRegisterTablesIngestRegisterBulkPost = (options) => (options.client ?? client).post({
1741
- security: [{ scheme: 'bearer', type: 'http' }],
2770
+ security: [
2771
+ { scheme: 'bearer', type: 'http' },
2772
+ { name: 'X-Api-Key', type: 'apiKey' },
2773
+ {
2774
+ in: 'query',
2775
+ name: 'api_key',
2776
+ type: 'apiKey'
2777
+ }
2778
+ ],
1742
2779
  url: '/ingest/register/bulk/',
1743
2780
  ...options,
1744
2781
  headers: {
@@ -1756,7 +2793,15 @@ export const bulkRegisterTablesIngestRegisterBulkPost = (options) => (options.cl
1756
2793
  */
1757
2794
  export const uploadFileIngestUploadPost = (options) => (options.client ?? client).post({
1758
2795
  ...formDataBodySerializer,
1759
- security: [{ scheme: 'bearer', type: 'http' }],
2796
+ security: [
2797
+ { scheme: 'bearer', type: 'http' },
2798
+ { name: 'X-Api-Key', type: 'apiKey' },
2799
+ {
2800
+ in: 'query',
2801
+ name: 'api_key',
2802
+ type: 'apiKey'
2803
+ }
2804
+ ],
1760
2805
  url: '/ingest/upload',
1761
2806
  ...options,
1762
2807
  headers: {
@@ -1770,7 +2815,15 @@ export const uploadFileIngestUploadPost = (options) => (options.client ?? client
1770
2815
  * Return upload configuration including presigned upload availability.
1771
2816
  */
1772
2817
  export const getUploadConfigIngestUploadConfigGet = (options) => (options?.client ?? client).get({
1773
- security: [{ scheme: 'bearer', type: 'http' }],
2818
+ security: [
2819
+ { scheme: 'bearer', type: 'http' },
2820
+ { name: 'X-Api-Key', type: 'apiKey' },
2821
+ {
2822
+ in: 'query',
2823
+ name: 'api_key',
2824
+ type: 'apiKey'
2825
+ }
2826
+ ],
1774
2827
  url: '/ingest/upload/config',
1775
2828
  ...options
1776
2829
  });
@@ -1780,7 +2833,15 @@ export const getUploadConfigIngestUploadConfigGet = (options) => (options?.clien
1780
2833
  * Request presigned URL(s) for direct-to-S3 file upload.
1781
2834
  */
1782
2835
  export const requestPresignedUploadIngestUploadPresignedPost = (options) => (options.client ?? client).post({
1783
- security: [{ scheme: 'bearer', type: 'http' }],
2836
+ security: [
2837
+ { scheme: 'bearer', type: 'http' },
2838
+ { name: 'X-Api-Key', type: 'apiKey' },
2839
+ {
2840
+ in: 'query',
2841
+ name: 'api_key',
2842
+ type: 'apiKey'
2843
+ }
2844
+ ],
1784
2845
  url: '/ingest/upload/presigned',
1785
2846
  ...options,
1786
2847
  headers: {
@@ -1794,7 +2855,15 @@ export const requestPresignedUploadIngestUploadPresignedPost = (options) => (opt
1794
2855
  * Notify that direct-to-S3 upload is complete.
1795
2856
  */
1796
2857
  export const completePresignedUploadIngestUploadPresignedJobIdCompletePost = (options) => (options.client ?? client).post({
1797
- security: [{ scheme: 'bearer', type: 'http' }],
2858
+ security: [
2859
+ { scheme: 'bearer', type: 'http' },
2860
+ { name: 'X-Api-Key', type: 'apiKey' },
2861
+ {
2862
+ in: 'query',
2863
+ name: 'api_key',
2864
+ type: 'apiKey'
2865
+ }
2866
+ ],
1798
2867
  url: '/ingest/upload/presigned/{job_id}/complete',
1799
2868
  ...options,
1800
2869
  headers: {
@@ -1812,7 +2881,15 @@ export const completePresignedUploadIngestUploadPresignedJobIdCompletePost = (op
1812
2881
  * ``ingest.service.create_vrt_job`` (K5 extraction).
1813
2882
  */
1814
2883
  export const createVrtIngestVrtCreatePost = (options) => (options.client ?? client).post({
1815
- security: [{ scheme: 'bearer', type: 'http' }],
2884
+ security: [
2885
+ { scheme: 'bearer', type: 'http' },
2886
+ { name: 'X-Api-Key', type: 'apiKey' },
2887
+ {
2888
+ in: 'query',
2889
+ name: 'api_key',
2890
+ type: 'apiKey'
2891
+ }
2892
+ ],
1816
2893
  url: '/ingest/vrt/create',
1817
2894
  ...options,
1818
2895
  headers: {
@@ -1831,7 +2908,15 @@ export const createVrtIngestVrtCreatePost = (options) => (options.client ?? clie
1831
2908
  * Returns 422 if the source is incompatible with existing sources.
1832
2909
  */
1833
2910
  export const addVrtSourceIngestVrtDatasetIdSourcesPost = (options) => (options.client ?? client).post({
1834
- security: [{ scheme: 'bearer', type: 'http' }],
2911
+ security: [
2912
+ { scheme: 'bearer', type: 'http' },
2913
+ { name: 'X-Api-Key', type: 'apiKey' },
2914
+ {
2915
+ in: 'query',
2916
+ name: 'api_key',
2917
+ type: 'apiKey'
2918
+ }
2919
+ ],
1835
2920
  url: '/ingest/vrt/{dataset_id}/sources/',
1836
2921
  ...options,
1837
2922
  headers: {
@@ -1850,7 +2935,15 @@ export const addVrtSourceIngestVrtDatasetIdSourcesPost = (options) => (options.c
1850
2935
  * Returns 404 if the source is not linked to the VRT.
1851
2936
  */
1852
2937
  export const removeVrtSourceIngestVrtDatasetIdSourcesSourceDatasetIdDelete = (options) => (options.client ?? client).delete({
1853
- security: [{ scheme: 'bearer', type: 'http' }],
2938
+ security: [
2939
+ { scheme: 'bearer', type: 'http' },
2940
+ { name: 'X-Api-Key', type: 'apiKey' },
2941
+ {
2942
+ in: 'query',
2943
+ name: 'api_key',
2944
+ type: 'apiKey'
2945
+ }
2946
+ ],
1854
2947
  url: '/ingest/vrt/{dataset_id}/sources/{source_dataset_id}/',
1855
2948
  ...options
1856
2949
  });
@@ -1873,7 +2966,15 @@ export const removeVrtSourceIngestVrtDatasetIdSourcesSourceDatasetIdDelete = (op
1873
2966
  * user, to avoid leaking job existence (see visibility check below).
1874
2967
  */
1875
2968
  export const getJobStatusByDatasetJobsByDatasetDatasetIdGet = (options) => (options.client ?? client).get({
1876
- security: [{ scheme: 'bearer', type: 'http' }],
2969
+ security: [
2970
+ { scheme: 'bearer', type: 'http' },
2971
+ { name: 'X-Api-Key', type: 'apiKey' },
2972
+ {
2973
+ in: 'query',
2974
+ name: 'api_key',
2975
+ type: 'apiKey'
2976
+ }
2977
+ ],
1877
2978
  url: '/jobs/by-dataset/{dataset_id}',
1878
2979
  ...options
1879
2980
  });
@@ -1889,7 +2990,15 @@ export const getJobStatusByDatasetJobsByDatasetDatasetIdGet = (options) => (opti
1889
2990
  * that interval.
1890
2991
  */
1891
2992
  export const cleanupStaleJobsJobsCleanupStalePost = (options) => (options?.client ?? client).post({
1892
- security: [{ scheme: 'bearer', type: 'http' }],
2993
+ security: [
2994
+ { scheme: 'bearer', type: 'http' },
2995
+ { name: 'X-Api-Key', type: 'apiKey' },
2996
+ {
2997
+ in: 'query',
2998
+ name: 'api_key',
2999
+ type: 'apiKey'
3000
+ }
3001
+ ],
1893
3002
  url: '/jobs/cleanup/stale/',
1894
3003
  ...options
1895
3004
  });
@@ -1901,7 +3010,15 @@ export const cleanupStaleJobsJobsCleanupStalePost = (options) => (options?.clien
1901
3010
  * Only the job creator or an admin can view job status.
1902
3011
  */
1903
3012
  export const getJobStatusJobsJobIdGet = (options) => (options.client ?? client).get({
1904
- security: [{ scheme: 'bearer', type: 'http' }],
3013
+ security: [
3014
+ { scheme: 'bearer', type: 'http' },
3015
+ { name: 'X-Api-Key', type: 'apiKey' },
3016
+ {
3017
+ in: 'query',
3018
+ name: 'api_key',
3019
+ type: 'apiKey'
3020
+ }
3021
+ ],
1905
3022
  url: '/jobs/{job_id}',
1906
3023
  ...options
1907
3024
  });
@@ -1914,7 +3031,15 @@ export const getJobStatusJobsJobIdGet = (options) => (options.client ?? client).
1914
3031
  * still exist (preserved on failure for retry).
1915
3032
  */
1916
3033
  export const retryJobJobsJobIdRetryPost = (options) => (options.client ?? client).post({
1917
- security: [{ scheme: 'bearer', type: 'http' }],
3034
+ security: [
3035
+ { scheme: 'bearer', type: 'http' },
3036
+ { name: 'X-Api-Key', type: 'apiKey' },
3037
+ {
3038
+ in: 'query',
3039
+ name: 'api_key',
3040
+ type: 'apiKey'
3041
+ }
3042
+ ],
1918
3043
  url: '/jobs/{job_id}/retry',
1919
3044
  ...options
1920
3045
  });
@@ -1930,7 +3055,15 @@ export const retryJobJobsJobIdRetryPost = (options) => (options.client ?? client
1930
3055
  * Requires editor or admin role.
1931
3056
  */
1932
3057
  export const createLayerEndpointLayersPost = (options) => (options.client ?? client).post({
1933
- security: [{ scheme: 'bearer', type: 'http' }],
3058
+ security: [
3059
+ { scheme: 'bearer', type: 'http' },
3060
+ { name: 'X-Api-Key', type: 'apiKey' },
3061
+ {
3062
+ in: 'query',
3063
+ name: 'api_key',
3064
+ type: 'apiKey'
3065
+ }
3066
+ ],
1934
3067
  url: '/layers/',
1935
3068
  ...options,
1936
3069
  headers: {
@@ -1944,7 +3077,15 @@ export const createLayerEndpointLayersPost = (options) => (options.client ?? cli
1944
3077
  * Add a column to an existing layer.
1945
3078
  */
1946
3079
  export const addColumnEndpointLayersDatasetIdColumnsPost = (options) => (options.client ?? client).post({
1947
- security: [{ scheme: 'bearer', type: 'http' }],
3080
+ security: [
3081
+ { scheme: 'bearer', type: 'http' },
3082
+ { name: 'X-Api-Key', type: 'apiKey' },
3083
+ {
3084
+ in: 'query',
3085
+ name: 'api_key',
3086
+ type: 'apiKey'
3087
+ }
3088
+ ],
1948
3089
  url: '/layers/{dataset_id}/columns/',
1949
3090
  ...options,
1950
3091
  headers: {
@@ -1958,7 +3099,15 @@ export const addColumnEndpointLayersDatasetIdColumnsPost = (options) => (options
1958
3099
  * Remove a column from an existing layer.
1959
3100
  */
1960
3101
  export const dropColumnEndpointLayersDatasetIdColumnsColumnNameDelete = (options) => (options.client ?? client).delete({
1961
- security: [{ scheme: 'bearer', type: 'http' }],
3102
+ security: [
3103
+ { scheme: 'bearer', type: 'http' },
3104
+ { name: 'X-Api-Key', type: 'apiKey' },
3105
+ {
3106
+ in: 'query',
3107
+ name: 'api_key',
3108
+ type: 'apiKey'
3109
+ }
3110
+ ],
1962
3111
  url: '/layers/{dataset_id}/columns/{column_name}',
1963
3112
  ...options
1964
3113
  });
@@ -1968,7 +3117,15 @@ export const dropColumnEndpointLayersDatasetIdColumnsColumnNameDelete = (options
1968
3117
  * Rename a column on an existing layer.
1969
3118
  */
1970
3119
  export const renameColumnEndpointLayersDatasetIdColumnsColumnNameNamePatch = (options) => (options.client ?? client).patch({
1971
- security: [{ scheme: 'bearer', type: 'http' }],
3120
+ security: [
3121
+ { scheme: 'bearer', type: 'http' },
3122
+ { name: 'X-Api-Key', type: 'apiKey' },
3123
+ {
3124
+ in: 'query',
3125
+ name: 'api_key',
3126
+ type: 'apiKey'
3127
+ }
3128
+ ],
1972
3129
  url: '/layers/{dataset_id}/columns/{column_name}/name',
1973
3130
  ...options,
1974
3131
  headers: {
@@ -1976,6 +3133,28 @@ export const renameColumnEndpointLayersDatasetIdColumnsColumnNameNamePatch = (op
1976
3133
  ...options.headers
1977
3134
  }
1978
3135
  });
3136
+ /**
3137
+ * Column References Endpoint
3138
+ *
3139
+ * Count saved maps whose layer config references a column.
3140
+ *
3141
+ * fix(#458 E-06): surfaced in the schema editor before a rename/drop so the
3142
+ * editor knows how many saved maps depend on the column. Count only — map
3143
+ * titles may belong to other users and are not exposed here.
3144
+ */
3145
+ export const columnReferencesEndpointLayersDatasetIdColumnsColumnNameReferencesGet = (options) => (options.client ?? client).get({
3146
+ security: [
3147
+ { scheme: 'bearer', type: 'http' },
3148
+ { name: 'X-Api-Key', type: 'apiKey' },
3149
+ {
3150
+ in: 'query',
3151
+ name: 'api_key',
3152
+ type: 'apiKey'
3153
+ }
3154
+ ],
3155
+ url: '/layers/{dataset_id}/columns/{column_name}/references',
3156
+ ...options
3157
+ });
1979
3158
  /**
1980
3159
  * Alter Column Type Endpoint
1981
3160
  *
@@ -1985,7 +3164,15 @@ export const renameColumnEndpointLayersDatasetIdColumnsColumnNameNamePatch = (op
1985
3164
  * cast cause the request to fail and roll back.
1986
3165
  */
1987
3166
  export const alterColumnTypeEndpointLayersDatasetIdColumnsColumnNameTypePatch = (options) => (options.client ?? client).patch({
1988
- security: [{ scheme: 'bearer', type: 'http' }],
3167
+ security: [
3168
+ { scheme: 'bearer', type: 'http' },
3169
+ { name: 'X-Api-Key', type: 'apiKey' },
3170
+ {
3171
+ in: 'query',
3172
+ name: 'api_key',
3173
+ type: 'apiKey'
3174
+ }
3175
+ ],
1989
3176
  url: '/layers/{dataset_id}/columns/{column_name}/type',
1990
3177
  ...options,
1991
3178
  headers: {
@@ -2002,7 +3189,15 @@ export const alterColumnTypeEndpointLayersDatasetIdColumnsColumnNameTypePatch =
2002
3189
  * sort_dir (asc/desc), and visibility filter (private/internal/public).
2003
3190
  */
2004
3191
  export const listMapsEndpointMapsGet = (options) => (options?.client ?? client).get({
2005
- security: [{ scheme: 'bearer', type: 'http' }],
3192
+ security: [
3193
+ { scheme: 'bearer', type: 'http' },
3194
+ { name: 'X-Api-Key', type: 'apiKey' },
3195
+ {
3196
+ in: 'query',
3197
+ name: 'api_key',
3198
+ type: 'apiKey'
3199
+ }
3200
+ ],
2006
3201
  url: '/maps/',
2007
3202
  ...options
2008
3203
  });
@@ -2012,7 +3207,15 @@ export const listMapsEndpointMapsGet = (options) => (options?.client ?? client).
2012
3207
  * Create a new map.
2013
3208
  */
2014
3209
  export const createMapEndpointMapsPost = (options) => (options.client ?? client).post({
2015
- security: [{ scheme: 'bearer', type: 'http' }],
3210
+ security: [
3211
+ { scheme: 'bearer', type: 'http' },
3212
+ { name: 'X-Api-Key', type: 'apiKey' },
3213
+ {
3214
+ in: 'query',
3215
+ name: 'api_key',
3216
+ type: 'apiKey'
3217
+ }
3218
+ ],
2016
3219
  url: '/maps/',
2017
3220
  ...options,
2018
3221
  headers: {
@@ -2026,7 +3229,15 @@ export const createMapEndpointMapsPost = (options) => (options.client ?? client)
2026
3229
  * List reusable default and uploaded map icons.
2027
3230
  */
2028
3231
  export const listMapIconsEndpointMapsIconsGet = (options) => (options?.client ?? client).get({
2029
- security: [{ scheme: 'bearer', type: 'http' }],
3232
+ security: [
3233
+ { scheme: 'bearer', type: 'http' },
3234
+ { name: 'X-Api-Key', type: 'apiKey' },
3235
+ {
3236
+ in: 'query',
3237
+ name: 'api_key',
3238
+ type: 'apiKey'
3239
+ }
3240
+ ],
2030
3241
  url: '/maps/icons',
2031
3242
  ...options
2032
3243
  });
@@ -2037,7 +3248,15 @@ export const listMapIconsEndpointMapsIconsGet = (options) => (options?.client ??
2037
3248
  */
2038
3249
  export const uploadMapIconEndpointMapsIconsPost = (options) => (options.client ?? client).post({
2039
3250
  ...formDataBodySerializer,
2040
- security: [{ scheme: 'bearer', type: 'http' }],
3251
+ security: [
3252
+ { scheme: 'bearer', type: 'http' },
3253
+ { name: 'X-Api-Key', type: 'apiKey' },
3254
+ {
3255
+ in: 'query',
3256
+ name: 'api_key',
3257
+ type: 'apiKey'
3258
+ }
3259
+ ],
2041
3260
  url: '/maps/icons',
2042
3261
  ...options,
2043
3262
  headers: {
@@ -2071,7 +3290,15 @@ export const getMapIconAssetEndpointMapsIconsIconIdAssetGet = (options) => (opti
2071
3290
  * request type.
2072
3291
  */
2073
3292
  export const importMapStyleEndpointMapsImportPost = (options) => (options.client ?? client).post({
2074
- security: [{ scheme: 'bearer', type: 'http' }],
3293
+ security: [
3294
+ { scheme: 'bearer', type: 'http' },
3295
+ { name: 'X-Api-Key', type: 'apiKey' },
3296
+ {
3297
+ in: 'query',
3298
+ name: 'api_key',
3299
+ type: 'apiKey'
3300
+ }
3301
+ ],
2075
3302
  url: '/maps/import',
2076
3303
  ...options,
2077
3304
  headers: {
@@ -2094,7 +3321,15 @@ export const importMapStyleEndpointMapsImportPost = (options) => (options.client
2094
3321
  * layers the token's scope authorizes (SEC-022 capability posture).
2095
3322
  */
2096
3323
  export const getSharedMapEndpointMapsSharedTokenGet = (options) => (options.client ?? client).get({
2097
- security: [{ scheme: 'bearer', type: 'http' }],
3324
+ security: [
3325
+ { scheme: 'bearer', type: 'http' },
3326
+ { name: 'X-Api-Key', type: 'apiKey' },
3327
+ {
3328
+ in: 'query',
3329
+ name: 'api_key',
3330
+ type: 'apiKey'
3331
+ }
3332
+ ],
2098
3333
  url: '/maps/shared/{token}',
2099
3334
  ...options
2100
3335
  });
@@ -2116,7 +3351,15 @@ export const getGeolensSpritePngEndpointMapsSpritesGeolensPngGet = (options) =>
2116
3351
  * Delete a map. Only the owner or an admin can delete.
2117
3352
  */
2118
3353
  export const deleteMapEndpointMapsMapIdDelete = (options) => (options.client ?? client).delete({
2119
- security: [{ scheme: 'bearer', type: 'http' }],
3354
+ security: [
3355
+ { scheme: 'bearer', type: 'http' },
3356
+ { name: 'X-Api-Key', type: 'apiKey' },
3357
+ {
3358
+ in: 'query',
3359
+ name: 'api_key',
3360
+ type: 'apiKey'
3361
+ }
3362
+ ],
2120
3363
  url: '/maps/{map_id}',
2121
3364
  ...options
2122
3365
  });
@@ -2126,7 +3369,15 @@ export const deleteMapEndpointMapsMapIdDelete = (options) => (options.client ??
2126
3369
  * Get a single map with its layers.
2127
3370
  */
2128
3371
  export const getMapEndpointMapsMapIdGet = (options) => (options.client ?? client).get({
2129
- security: [{ scheme: 'bearer', type: 'http' }],
3372
+ security: [
3373
+ { scheme: 'bearer', type: 'http' },
3374
+ { name: 'X-Api-Key', type: 'apiKey' },
3375
+ {
3376
+ in: 'query',
3377
+ name: 'api_key',
3378
+ type: 'apiKey'
3379
+ }
3380
+ ],
2130
3381
  url: '/maps/{map_id}',
2131
3382
  ...options
2132
3383
  });
@@ -2136,7 +3387,15 @@ export const getMapEndpointMapsMapIdGet = (options) => (options.client ?? client
2136
3387
  * Update a map's metadata and/or replace its layers.
2137
3388
  */
2138
3389
  export const updateMapEndpointMapsMapIdPut = (options) => (options.client ?? client).put({
2139
- security: [{ scheme: 'bearer', type: 'http' }],
3390
+ security: [
3391
+ { scheme: 'bearer', type: 'http' },
3392
+ { name: 'X-Api-Key', type: 'apiKey' },
3393
+ {
3394
+ in: 'query',
3395
+ name: 'api_key',
3396
+ type: 'apiKey'
3397
+ }
3398
+ ],
2140
3399
  url: '/maps/{map_id}',
2141
3400
  ...options,
2142
3401
  headers: {
@@ -2150,7 +3409,15 @@ export const updateMapEndpointMapsMapIdPut = (options) => (options.client ?? cli
2150
3409
  * Return server-confirmed route access for the map viewer gate.
2151
3410
  */
2152
3411
  export const getMapAccessEndpointMapsMapIdAccessGet = (options) => (options.client ?? client).get({
2153
- security: [{ scheme: 'bearer', type: 'http' }],
3412
+ security: [
3413
+ { scheme: 'bearer', type: 'http' },
3414
+ { name: 'X-Api-Key', type: 'apiKey' },
3415
+ {
3416
+ in: 'query',
3417
+ name: 'api_key',
3418
+ type: 'apiKey'
3419
+ }
3420
+ ],
2154
3421
  url: '/maps/{map_id}/access/',
2155
3422
  ...options
2156
3423
  });
@@ -2160,7 +3427,15 @@ export const getMapAccessEndpointMapsMapIdAccessGet = (options) => (options.clie
2160
3427
  * Fork a map with RBAC-filtered layers. Any authenticated user can fork.
2161
3428
  */
2162
3429
  export const duplicateMapEndpointMapsMapIdDuplicatePost = (options) => (options.client ?? client).post({
2163
- security: [{ scheme: 'bearer', type: 'http' }],
3430
+ security: [
3431
+ { scheme: 'bearer', type: 'http' },
3432
+ { name: 'X-Api-Key', type: 'apiKey' },
3433
+ {
3434
+ in: 'query',
3435
+ name: 'api_key',
3436
+ type: 'apiKey'
3437
+ }
3438
+ ],
2164
3439
  url: '/maps/{map_id}/duplicate/',
2165
3440
  ...options
2166
3441
  });
@@ -2170,7 +3445,15 @@ export const duplicateMapEndpointMapsMapIdDuplicatePost = (options) => (options.
2170
3445
  * List all embed tokens for a map.
2171
3446
  */
2172
3447
  export const listEmbedTokensEndpointMapsMapIdEmbedTokensGet = (options) => (options.client ?? client).get({
2173
- security: [{ scheme: 'bearer', type: 'http' }],
3448
+ security: [
3449
+ { scheme: 'bearer', type: 'http' },
3450
+ { name: 'X-Api-Key', type: 'apiKey' },
3451
+ {
3452
+ in: 'query',
3453
+ name: 'api_key',
3454
+ type: 'apiKey'
3455
+ }
3456
+ ],
2174
3457
  url: '/maps/{map_id}/embed-tokens/',
2175
3458
  ...options
2176
3459
  });
@@ -2183,7 +3466,15 @@ export const listEmbedTokensEndpointMapsMapIdEmbedTokensGet = (options) => (opti
2183
3466
  * and non-empty origin restrictions require advanced sharing controls.
2184
3467
  */
2185
3468
  export const createEmbedTokenEndpointMapsMapIdEmbedTokensPost = (options) => (options.client ?? client).post({
2186
- security: [{ scheme: 'bearer', type: 'http' }],
3469
+ security: [
3470
+ { scheme: 'bearer', type: 'http' },
3471
+ { name: 'X-Api-Key', type: 'apiKey' },
3472
+ {
3473
+ in: 'query',
3474
+ name: 'api_key',
3475
+ type: 'apiKey'
3476
+ }
3477
+ ],
2187
3478
  url: '/maps/{map_id}/embed-tokens/',
2188
3479
  ...options,
2189
3480
  headers: {
@@ -2197,7 +3488,15 @@ export const createEmbedTokenEndpointMapsMapIdEmbedTokensPost = (options) => (op
2197
3488
  * Revoke an embed token.
2198
3489
  */
2199
3490
  export const revokeEmbedTokenEndpointMapsMapIdEmbedTokensTokenIdDelete = (options) => (options.client ?? client).delete({
2200
- security: [{ scheme: 'bearer', type: 'http' }],
3491
+ security: [
3492
+ { scheme: 'bearer', type: 'http' },
3493
+ { name: 'X-Api-Key', type: 'apiKey' },
3494
+ {
3495
+ in: 'query',
3496
+ name: 'api_key',
3497
+ type: 'apiKey'
3498
+ }
3499
+ ],
2201
3500
  url: '/maps/{map_id}/embed-tokens/{token_id}/',
2202
3501
  ...options
2203
3502
  });
@@ -2209,7 +3508,15 @@ export const revokeEmbedTokenEndpointMapsMapIdEmbedTokensTokenIdDelete = (option
2209
3508
  * Null clears restrictions. Non-empty origin restrictions require advanced sharing controls.
2210
3509
  */
2211
3510
  export const updateEmbedTokenEndpointMapsMapIdEmbedTokensTokenIdPatch = (options) => (options.client ?? client).patch({
2212
- security: [{ scheme: 'bearer', type: 'http' }],
3511
+ security: [
3512
+ { scheme: 'bearer', type: 'http' },
3513
+ { name: 'X-Api-Key', type: 'apiKey' },
3514
+ {
3515
+ in: 'query',
3516
+ name: 'api_key',
3517
+ type: 'apiKey'
3518
+ }
3519
+ ],
2213
3520
  url: '/maps/{map_id}/embed-tokens/{token_id}/',
2214
3521
  ...options,
2215
3522
  headers: {
@@ -2223,7 +3530,15 @@ export const updateEmbedTokenEndpointMapsMapIdEmbedTokensTokenIdPatch = (options
2223
3530
  * Return recent builder edit history for a map.
2224
3531
  */
2225
3532
  export const getMapHistoryEndpointMapsMapIdHistoryGet = (options) => (options.client ?? client).get({
2226
- security: [{ scheme: 'bearer', type: 'http' }],
3533
+ security: [
3534
+ { scheme: 'bearer', type: 'http' },
3535
+ { name: 'X-Api-Key', type: 'apiKey' },
3536
+ {
3537
+ in: 'query',
3538
+ name: 'api_key',
3539
+ type: 'apiKey'
3540
+ }
3541
+ ],
2227
3542
  url: '/maps/{map_id}/history',
2228
3543
  ...options
2229
3544
  });
@@ -2242,7 +3557,15 @@ export const getMapHistoryEndpointMapsMapIdHistoryGet = (options) => (options.cl
2242
3557
  * the trailing-slash form is a hidden alias.
2243
3558
  */
2244
3559
  export const patchMapLayersEndpointMapsMapIdLayersPatch = (options) => (options.client ?? client).patch({
2245
- security: [{ scheme: 'bearer', type: 'http' }],
3560
+ security: [
3561
+ { scheme: 'bearer', type: 'http' },
3562
+ { name: 'X-Api-Key', type: 'apiKey' },
3563
+ {
3564
+ in: 'query',
3565
+ name: 'api_key',
3566
+ type: 'apiKey'
3567
+ }
3568
+ ],
2246
3569
  url: '/maps/{map_id}/layers',
2247
3570
  ...options,
2248
3571
  headers: {
@@ -2265,7 +3588,15 @@ export const patchMapLayersEndpointMapsMapIdLayersPatch = (options) => (options.
2265
3588
  * hidden alias for callers that send the slash.
2266
3589
  */
2267
3590
  export const addLayerEndpointMapsMapIdLayersPost = (options) => (options.client ?? client).post({
2268
- security: [{ scheme: 'bearer', type: 'http' }],
3591
+ security: [
3592
+ { scheme: 'bearer', type: 'http' },
3593
+ { name: 'X-Api-Key', type: 'apiKey' },
3594
+ {
3595
+ in: 'query',
3596
+ name: 'api_key',
3597
+ type: 'apiKey'
3598
+ }
3599
+ ],
2269
3600
  url: '/maps/{map_id}/layers',
2270
3601
  ...options,
2271
3602
  headers: {
@@ -2287,7 +3618,15 @@ export const addLayerEndpointMapsMapIdLayersPost = (options) => (options.client
2287
3618
  * responsibility if all ids fail.
2288
3619
  */
2289
3620
  export const bulkDeleteLayersEndpointMapsMapIdLayersBulkDeletePost = (options) => (options.client ?? client).post({
2290
- security: [{ scheme: 'bearer', type: 'http' }],
3621
+ security: [
3622
+ { scheme: 'bearer', type: 'http' },
3623
+ { name: 'X-Api-Key', type: 'apiKey' },
3624
+ {
3625
+ in: 'query',
3626
+ name: 'api_key',
3627
+ type: 'apiKey'
3628
+ }
3629
+ ],
2291
3630
  url: '/maps/{map_id}/layers/bulk-delete',
2292
3631
  ...options,
2293
3632
  headers: {
@@ -2301,7 +3640,15 @@ export const bulkDeleteLayersEndpointMapsMapIdLayersBulkDeletePost = (options) =
2301
3640
  * Remove a layer from a map.
2302
3641
  */
2303
3642
  export const removeLayerEndpointMapsMapIdLayersLayerIdDelete = (options) => (options.client ?? client).delete({
2304
- security: [{ scheme: 'bearer', type: 'http' }],
3643
+ security: [
3644
+ { scheme: 'bearer', type: 'http' },
3645
+ { name: 'X-Api-Key', type: 'apiKey' },
3646
+ {
3647
+ in: 'query',
3648
+ name: 'api_key',
3649
+ type: 'apiKey'
3650
+ }
3651
+ ],
2305
3652
  url: '/maps/{map_id}/layers/{layer_id}',
2306
3653
  ...options
2307
3654
  });
@@ -2315,7 +3662,15 @@ export const removeLayerEndpointMapsMapIdLayersLayerIdDelete = (options) => (opt
2315
3662
  * but reads ``og_image_uri`` and uses the ``maps/og-images/`` key space.
2316
3663
  */
2317
3664
  export const getOgImageMapsMapIdOgImageGet = (options) => (options.client ?? client).get({
2318
- security: [{ scheme: 'bearer', type: 'http' }],
3665
+ security: [
3666
+ { scheme: 'bearer', type: 'http' },
3667
+ { name: 'X-Api-Key', type: 'apiKey' },
3668
+ {
3669
+ in: 'query',
3670
+ name: 'api_key',
3671
+ type: 'apiKey'
3672
+ }
3673
+ ],
2319
3674
  url: '/maps/{map_id}/og-image/',
2320
3675
  ...options
2321
3676
  });
@@ -2336,7 +3691,15 @@ export const getOgImageMapsMapIdOgImageGet = (options) => (options.client ?? cli
2336
3691
  * contract. Auth and PIL-verify rules are identical to upload_thumbnail.
2337
3692
  */
2338
3693
  export const uploadOgImageMapsMapIdOgImagePut = (options) => (options.client ?? client).put({
2339
- security: [{ scheme: 'bearer', type: 'http' }],
3694
+ security: [
3695
+ { scheme: 'bearer', type: 'http' },
3696
+ { name: 'X-Api-Key', type: 'apiKey' },
3697
+ {
3698
+ in: 'query',
3699
+ name: 'api_key',
3700
+ type: 'apiKey'
3701
+ }
3702
+ ],
2340
3703
  url: '/maps/{map_id}/og-image/',
2341
3704
  ...options,
2342
3705
  headers: {
@@ -2350,7 +3713,15 @@ export const uploadOgImageMapsMapIdOgImagePut = (options) => (options.client ??
2350
3713
  * Revoke share token(s) for a map. Owner or admin only.
2351
3714
  */
2352
3715
  export const revokeMapShareEndpointMapsMapIdShareDelete = (options) => (options.client ?? client).delete({
2353
- security: [{ scheme: 'bearer', type: 'http' }],
3716
+ security: [
3717
+ { scheme: 'bearer', type: 'http' },
3718
+ { name: 'X-Api-Key', type: 'apiKey' },
3719
+ {
3720
+ in: 'query',
3721
+ name: 'api_key',
3722
+ type: 'apiKey'
3723
+ }
3724
+ ],
2354
3725
  url: '/maps/{map_id}/share/',
2355
3726
  ...options
2356
3727
  });
@@ -2360,7 +3731,15 @@ export const revokeMapShareEndpointMapsMapIdShareDelete = (options) => (options.
2360
3731
  * Return the active share token for a map, or null if none exists.
2361
3732
  */
2362
3733
  export const getMapShareTokenEndpointMapsMapIdShareGet = (options) => (options.client ?? client).get({
2363
- security: [{ scheme: 'bearer', type: 'http' }],
3734
+ security: [
3735
+ { scheme: 'bearer', type: 'http' },
3736
+ { name: 'X-Api-Key', type: 'apiKey' },
3737
+ {
3738
+ in: 'query',
3739
+ name: 'api_key',
3740
+ type: 'apiKey'
3741
+ }
3742
+ ],
2364
3743
  url: '/maps/{map_id}/share/',
2365
3744
  ...options
2366
3745
  });
@@ -2369,10 +3748,18 @@ export const getMapShareTokenEndpointMapsMapIdShareGet = (options) => (options.c
2369
3748
  *
2370
3749
  * Update expiration on an existing share token. Owner or admin only.
2371
3750
  *
2372
- * Null clears expiration.
3751
+ * A fixed-day preset is available in every edition. Null clears expiration.
2373
3752
  */
2374
3753
  export const updateMapShareTokenEndpointMapsMapIdSharePatch = (options) => (options.client ?? client).patch({
2375
- security: [{ scheme: 'bearer', type: 'http' }],
3754
+ security: [
3755
+ { scheme: 'bearer', type: 'http' },
3756
+ { name: 'X-Api-Key', type: 'apiKey' },
3757
+ {
3758
+ in: 'query',
3759
+ name: 'api_key',
3760
+ type: 'apiKey'
3761
+ }
3762
+ ],
2376
3763
  url: '/maps/{map_id}/share/',
2377
3764
  ...options,
2378
3765
  headers: {
@@ -2386,7 +3773,15 @@ export const updateMapShareTokenEndpointMapsMapIdSharePatch = (options) => (opti
2386
3773
  * Create or retrieve a share token for a public map.
2387
3774
  */
2388
3775
  export const shareMapEndpointMapsMapIdSharePost = (options) => (options.client ?? client).post({
2389
- security: [{ scheme: 'bearer', type: 'http' }],
3776
+ security: [
3777
+ { scheme: 'bearer', type: 'http' },
3778
+ { name: 'X-Api-Key', type: 'apiKey' },
3779
+ {
3780
+ in: 'query',
3781
+ name: 'api_key',
3782
+ type: 'apiKey'
3783
+ }
3784
+ ],
2390
3785
  url: '/maps/{map_id}/share/',
2391
3786
  ...options,
2392
3787
  headers: {
@@ -2400,7 +3795,15 @@ export const shareMapEndpointMapsMapIdSharePost = (options) => (options.client ?
2400
3795
  * Export a saved map as a complete MapLibre style JSON document.
2401
3796
  */
2402
3797
  export const exportMapStyleEndpointMapsMapIdStyleJsonGet = (options) => (options.client ?? client).get({
2403
- security: [{ scheme: 'bearer', type: 'http' }],
3798
+ security: [
3799
+ { scheme: 'bearer', type: 'http' },
3800
+ { name: 'X-Api-Key', type: 'apiKey' },
3801
+ {
3802
+ in: 'query',
3803
+ name: 'api_key',
3804
+ type: 'apiKey'
3805
+ }
3806
+ ],
2404
3807
  url: '/maps/{map_id}/style.json',
2405
3808
  ...options
2406
3809
  });
@@ -2410,7 +3813,15 @@ export const exportMapStyleEndpointMapsMapIdStyleJsonGet = (options) => (options
2410
3813
  * Serve map thumbnail image from storage (visibility-checked).
2411
3814
  */
2412
3815
  export const getThumbnailMapsMapIdThumbnailGet = (options) => (options.client ?? client).get({
2413
- security: [{ scheme: 'bearer', type: 'http' }],
3816
+ security: [
3817
+ { scheme: 'bearer', type: 'http' },
3818
+ { name: 'X-Api-Key', type: 'apiKey' },
3819
+ {
3820
+ in: 'query',
3821
+ name: 'api_key',
3822
+ type: 'apiKey'
3823
+ }
3824
+ ],
2414
3825
  url: '/maps/{map_id}/thumbnail/',
2415
3826
  ...options
2416
3827
  });
@@ -2423,7 +3834,15 @@ export const getThumbnailMapsMapIdThumbnailGet = (options) => (options.client ??
2423
3834
  * bytes to the configured storage provider, and stores the storage key.
2424
3835
  */
2425
3836
  export const uploadThumbnailMapsMapIdThumbnailPut = (options) => (options.client ?? client).put({
2426
- security: [{ scheme: 'bearer', type: 'http' }],
3837
+ security: [
3838
+ { scheme: 'bearer', type: 'http' },
3839
+ { name: 'X-Api-Key', type: 'apiKey' },
3840
+ {
3841
+ in: 'query',
3842
+ name: 'api_key',
3843
+ type: 'apiKey'
3844
+ }
3845
+ ],
2427
3846
  url: '/maps/{map_id}/thumbnail/',
2428
3847
  ...options,
2429
3848
  headers: {
@@ -2437,7 +3856,15 @@ export const uploadThumbnailMapsMapIdThumbnailPut = (options) => (options.client
2437
3856
  * Check if a map has non-public datasets. Informational only.
2438
3857
  */
2439
3858
  export const visibilityCheckEndpointMapsMapIdVisibilityCheckGet = (options) => (options.client ?? client).get({
2440
- security: [{ scheme: 'bearer', type: 'http' }],
3859
+ security: [
3860
+ { scheme: 'bearer', type: 'http' },
3861
+ { name: 'X-Api-Key', type: 'apiKey' },
3862
+ {
3863
+ in: 'query',
3864
+ name: 'api_key',
3865
+ type: 'apiKey'
3866
+ }
3867
+ ],
2441
3868
  url: '/maps/{map_id}/visibility-check/',
2442
3869
  ...options
2443
3870
  });
@@ -2447,7 +3874,15 @@ export const visibilityCheckEndpointMapsMapIdVisibilityCheckGet = (options) => (
2447
3874
  * List all contacts for a record.
2448
3875
  */
2449
3876
  export const listContactsEndpointRecordsRecordIdContactsGet = (options) => (options.client ?? client).get({
2450
- security: [{ scheme: 'bearer', type: 'http' }],
3877
+ security: [
3878
+ { scheme: 'bearer', type: 'http' },
3879
+ { name: 'X-Api-Key', type: 'apiKey' },
3880
+ {
3881
+ in: 'query',
3882
+ name: 'api_key',
3883
+ type: 'apiKey'
3884
+ }
3885
+ ],
2451
3886
  url: '/records/{record_id}/contacts/',
2452
3887
  ...options
2453
3888
  });
@@ -2457,7 +3892,15 @@ export const listContactsEndpointRecordsRecordIdContactsGet = (options) => (opti
2457
3892
  * Create a new contact for a record.
2458
3893
  */
2459
3894
  export const createContactEndpointRecordsRecordIdContactsPost = (options) => (options.client ?? client).post({
2460
- security: [{ scheme: 'bearer', type: 'http' }],
3895
+ security: [
3896
+ { scheme: 'bearer', type: 'http' },
3897
+ { name: 'X-Api-Key', type: 'apiKey' },
3898
+ {
3899
+ in: 'query',
3900
+ name: 'api_key',
3901
+ type: 'apiKey'
3902
+ }
3903
+ ],
2461
3904
  url: '/records/{record_id}/contacts/',
2462
3905
  ...options,
2463
3906
  headers: {
@@ -2471,7 +3914,15 @@ export const createContactEndpointRecordsRecordIdContactsPost = (options) => (op
2471
3914
  * Delete a contact.
2472
3915
  */
2473
3916
  export const deleteContactEndpointRecordsRecordIdContactsContactIdDelete = (options) => (options.client ?? client).delete({
2474
- security: [{ scheme: 'bearer', type: 'http' }],
3917
+ security: [
3918
+ { scheme: 'bearer', type: 'http' },
3919
+ { name: 'X-Api-Key', type: 'apiKey' },
3920
+ {
3921
+ in: 'query',
3922
+ name: 'api_key',
3923
+ type: 'apiKey'
3924
+ }
3925
+ ],
2475
3926
  url: '/records/{record_id}/contacts/{contact_id}/',
2476
3927
  ...options
2477
3928
  });
@@ -2481,7 +3932,15 @@ export const deleteContactEndpointRecordsRecordIdContactsContactIdDelete = (opti
2481
3932
  * Update a contact.
2482
3933
  */
2483
3934
  export const updateContactEndpointRecordsRecordIdContactsContactIdPatch = (options) => (options.client ?? client).patch({
2484
- security: [{ scheme: 'bearer', type: 'http' }],
3935
+ security: [
3936
+ { scheme: 'bearer', type: 'http' },
3937
+ { name: 'X-Api-Key', type: 'apiKey' },
3938
+ {
3939
+ in: 'query',
3940
+ name: 'api_key',
3941
+ type: 'apiKey'
3942
+ }
3943
+ ],
2485
3944
  url: '/records/{record_id}/contacts/{contact_id}/',
2486
3945
  ...options,
2487
3946
  headers: {
@@ -2495,7 +3954,15 @@ export const updateContactEndpointRecordsRecordIdContactsContactIdPatch = (optio
2495
3954
  * List all distributions for a record.
2496
3955
  */
2497
3956
  export const listDistributionsEndpointRecordsRecordIdDistributionsGet = (options) => (options.client ?? client).get({
2498
- security: [{ scheme: 'bearer', type: 'http' }],
3957
+ security: [
3958
+ { scheme: 'bearer', type: 'http' },
3959
+ { name: 'X-Api-Key', type: 'apiKey' },
3960
+ {
3961
+ in: 'query',
3962
+ name: 'api_key',
3963
+ type: 'apiKey'
3964
+ }
3965
+ ],
2499
3966
  url: '/records/{record_id}/distributions/',
2500
3967
  ...options
2501
3968
  });
@@ -2505,7 +3972,15 @@ export const listDistributionsEndpointRecordsRecordIdDistributionsGet = (options
2505
3972
  * Create a manual distribution for a record.
2506
3973
  */
2507
3974
  export const createDistributionEndpointRecordsRecordIdDistributionsPost = (options) => (options.client ?? client).post({
2508
- security: [{ scheme: 'bearer', type: 'http' }],
3975
+ security: [
3976
+ { scheme: 'bearer', type: 'http' },
3977
+ { name: 'X-Api-Key', type: 'apiKey' },
3978
+ {
3979
+ in: 'query',
3980
+ name: 'api_key',
3981
+ type: 'apiKey'
3982
+ }
3983
+ ],
2509
3984
  url: '/records/{record_id}/distributions/',
2510
3985
  ...options,
2511
3986
  headers: {
@@ -2519,7 +3994,15 @@ export const createDistributionEndpointRecordsRecordIdDistributionsPost = (optio
2519
3994
  * Delete a distribution (manual only; auto-generated distributions are immutable).
2520
3995
  */
2521
3996
  export const deleteDistributionEndpointRecordsRecordIdDistributionsDistributionIdDelete = (options) => (options.client ?? client).delete({
2522
- security: [{ scheme: 'bearer', type: 'http' }],
3997
+ security: [
3998
+ { scheme: 'bearer', type: 'http' },
3999
+ { name: 'X-Api-Key', type: 'apiKey' },
4000
+ {
4001
+ in: 'query',
4002
+ name: 'api_key',
4003
+ type: 'apiKey'
4004
+ }
4005
+ ],
2523
4006
  url: '/records/{record_id}/distributions/{distribution_id}/',
2524
4007
  ...options
2525
4008
  });
@@ -2529,7 +4012,15 @@ export const deleteDistributionEndpointRecordsRecordIdDistributionsDistributionI
2529
4012
  * Update a distribution (manual only; auto-generated distributions are immutable).
2530
4013
  */
2531
4014
  export const updateDistributionEndpointRecordsRecordIdDistributionsDistributionIdPatch = (options) => (options.client ?? client).patch({
2532
- security: [{ scheme: 'bearer', type: 'http' }],
4015
+ security: [
4016
+ { scheme: 'bearer', type: 'http' },
4017
+ { name: 'X-Api-Key', type: 'apiKey' },
4018
+ {
4019
+ in: 'query',
4020
+ name: 'api_key',
4021
+ type: 'apiKey'
4022
+ }
4023
+ ],
2533
4024
  url: '/records/{record_id}/distributions/{distribution_id}/',
2534
4025
  ...options,
2535
4026
  headers: {
@@ -2543,7 +4034,15 @@ export const updateDistributionEndpointRecordsRecordIdDistributionsDistributionI
2543
4034
  * List all keywords for a record.
2544
4035
  */
2545
4036
  export const listKeywordsEndpointRecordsRecordIdKeywordsGet = (options) => (options.client ?? client).get({
2546
- security: [{ scheme: 'bearer', type: 'http' }],
4037
+ security: [
4038
+ { scheme: 'bearer', type: 'http' },
4039
+ { name: 'X-Api-Key', type: 'apiKey' },
4040
+ {
4041
+ in: 'query',
4042
+ name: 'api_key',
4043
+ type: 'apiKey'
4044
+ }
4045
+ ],
2547
4046
  url: '/records/{record_id}/keywords/',
2548
4047
  ...options
2549
4048
  });
@@ -2553,7 +4052,15 @@ export const listKeywordsEndpointRecordsRecordIdKeywordsGet = (options) => (opti
2553
4052
  * Create a new keyword for a record.
2554
4053
  */
2555
4054
  export const createKeywordEndpointRecordsRecordIdKeywordsPost = (options) => (options.client ?? client).post({
2556
- security: [{ scheme: 'bearer', type: 'http' }],
4055
+ security: [
4056
+ { scheme: 'bearer', type: 'http' },
4057
+ { name: 'X-Api-Key', type: 'apiKey' },
4058
+ {
4059
+ in: 'query',
4060
+ name: 'api_key',
4061
+ type: 'apiKey'
4062
+ }
4063
+ ],
2557
4064
  url: '/records/{record_id}/keywords/',
2558
4065
  ...options,
2559
4066
  headers: {
@@ -2567,17 +4074,91 @@ export const createKeywordEndpointRecordsRecordIdKeywordsPost = (options) => (op
2567
4074
  * Delete a keyword.
2568
4075
  */
2569
4076
  export const deleteKeywordEndpointRecordsRecordIdKeywordsKeywordIdDelete = (options) => (options.client ?? client).delete({
2570
- security: [{ scheme: 'bearer', type: 'http' }],
4077
+ security: [
4078
+ { scheme: 'bearer', type: 'http' },
4079
+ { name: 'X-Api-Key', type: 'apiKey' },
4080
+ {
4081
+ in: 'query',
4082
+ name: 'api_key',
4083
+ type: 'apiKey'
4084
+ }
4085
+ ],
2571
4086
  url: '/records/{record_id}/keywords/{keyword_id}/',
2572
4087
  ...options
2573
4088
  });
4089
+ /**
4090
+ * List Translations Endpoint
4091
+ *
4092
+ * List localized title/summary variants visible with the parent record.
4093
+ */
4094
+ export const listTranslationsEndpointRecordsRecordIdTranslationsGet = (options) => (options.client ?? client).get({
4095
+ security: [
4096
+ { scheme: 'bearer', type: 'http' },
4097
+ { name: 'X-Api-Key', type: 'apiKey' },
4098
+ {
4099
+ in: 'query',
4100
+ name: 'api_key',
4101
+ type: 'apiKey'
4102
+ }
4103
+ ],
4104
+ url: '/records/{record_id}/translations/',
4105
+ ...options
4106
+ });
4107
+ /**
4108
+ * Delete Translation Endpoint
4109
+ *
4110
+ * Delete one localized title/summary variant.
4111
+ */
4112
+ export const deleteTranslationEndpointRecordsRecordIdTranslationsLanguageDelete = (options) => (options.client ?? client).delete({
4113
+ security: [
4114
+ { scheme: 'bearer', type: 'http' },
4115
+ { name: 'X-Api-Key', type: 'apiKey' },
4116
+ {
4117
+ in: 'query',
4118
+ name: 'api_key',
4119
+ type: 'apiKey'
4120
+ }
4121
+ ],
4122
+ url: '/records/{record_id}/translations/{language}/',
4123
+ ...options
4124
+ });
4125
+ /**
4126
+ * Upsert Translation Endpoint
4127
+ *
4128
+ * Create or replace one localized title/summary variant.
4129
+ */
4130
+ export const upsertTranslationEndpointRecordsRecordIdTranslationsLanguagePut = (options) => (options.client ?? client).put({
4131
+ security: [
4132
+ { scheme: 'bearer', type: 'http' },
4133
+ { name: 'X-Api-Key', type: 'apiKey' },
4134
+ {
4135
+ in: 'query',
4136
+ name: 'api_key',
4137
+ type: 'apiKey'
4138
+ }
4139
+ ],
4140
+ url: '/records/{record_id}/translations/{language}/',
4141
+ ...options,
4142
+ headers: {
4143
+ 'Content-Type': 'application/json',
4144
+ ...options.headers
4145
+ }
4146
+ });
2574
4147
  /**
2575
4148
  * Search Datasets Endpoint
2576
4149
  *
2577
4150
  * Search datasets with text, spatial, and faceted filters.
2578
4151
  */
2579
4152
  export const searchDatasetsEndpointSearchDatasetsGet = (options) => (options?.client ?? client).get({
2580
- security: [{ scheme: 'bearer', type: 'http' }],
4153
+ security: [
4154
+ { scheme: 'bearer', type: 'http' },
4155
+ { name: 'X-Api-Key', type: 'apiKey' },
4156
+ {
4157
+ in: 'query',
4158
+ name: 'api_key',
4159
+ type: 'apiKey'
4160
+ }
4161
+ ],
2581
4162
  url: '/search/datasets/',
2582
4163
  ...options,
2583
4164
  headers: {
@@ -2591,7 +4172,15 @@ export const searchDatasetsEndpointSearchDatasetsGet = (options) => (options?.cl
2591
4172
  * Return record_type facet counts for the given filters.
2592
4173
  */
2593
4174
  export const searchFacetsEndpointSearchFacetsGet = (options) => (options?.client ?? client).get({
2594
- security: [{ scheme: 'bearer', type: 'http' }],
4175
+ security: [
4176
+ { scheme: 'bearer', type: 'http' },
4177
+ { name: 'X-Api-Key', type: 'apiKey' },
4178
+ {
4179
+ in: 'query',
4180
+ name: 'api_key',
4181
+ type: 'apiKey'
4182
+ }
4183
+ ],
2595
4184
  url: '/search/facets/',
2596
4185
  ...options
2597
4186
  });
@@ -2601,7 +4190,15 @@ export const searchFacetsEndpointSearchFacetsGet = (options) => (options?.client
2601
4190
  * List saved searches for the authenticated user.
2602
4191
  */
2603
4192
  export const listSavedSearchesEndpointSearchSavedGet = (options) => (options?.client ?? client).get({
2604
- security: [{ scheme: 'bearer', type: 'http' }],
4193
+ security: [
4194
+ { scheme: 'bearer', type: 'http' },
4195
+ { name: 'X-Api-Key', type: 'apiKey' },
4196
+ {
4197
+ in: 'query',
4198
+ name: 'api_key',
4199
+ type: 'apiKey'
4200
+ }
4201
+ ],
2605
4202
  url: '/search/saved/',
2606
4203
  ...options
2607
4204
  });
@@ -2611,7 +4208,15 @@ export const listSavedSearchesEndpointSearchSavedGet = (options) => (options?.cl
2611
4208
  * Save a search query with a name for later reuse.
2612
4209
  */
2613
4210
  export const createSavedSearchEndpointSearchSavedPost = (options) => (options.client ?? client).post({
2614
- security: [{ scheme: 'bearer', type: 'http' }],
4211
+ security: [
4212
+ { scheme: 'bearer', type: 'http' },
4213
+ { name: 'X-Api-Key', type: 'apiKey' },
4214
+ {
4215
+ in: 'query',
4216
+ name: 'api_key',
4217
+ type: 'apiKey'
4218
+ }
4219
+ ],
2615
4220
  url: '/search/saved/',
2616
4221
  ...options,
2617
4222
  headers: {
@@ -2625,7 +4230,15 @@ export const createSavedSearchEndpointSearchSavedPost = (options) => (options.cl
2625
4230
  * Delete a saved search.
2626
4231
  */
2627
4232
  export const deleteSavedSearchEndpointSearchSavedSearchIdDelete = (options) => (options.client ?? client).delete({
2628
- security: [{ scheme: 'bearer', type: 'http' }],
4233
+ security: [
4234
+ { scheme: 'bearer', type: 'http' },
4235
+ { name: 'X-Api-Key', type: 'apiKey' },
4236
+ {
4237
+ in: 'query',
4238
+ name: 'api_key',
4239
+ type: 'apiKey'
4240
+ }
4241
+ ],
2629
4242
  url: '/search/saved/{search_id}',
2630
4243
  ...options
2631
4244
  });
@@ -2635,10 +4248,83 @@ export const deleteSavedSearchEndpointSearchSavedSearchIdDelete = (options) => (
2635
4248
  * Get a single saved search by ID.
2636
4249
  */
2637
4250
  export const getSavedSearchEndpointSearchSavedSearchIdGet = (options) => (options.client ?? client).get({
2638
- security: [{ scheme: 'bearer', type: 'http' }],
4251
+ security: [
4252
+ { scheme: 'bearer', type: 'http' },
4253
+ { name: 'X-Api-Key', type: 'apiKey' },
4254
+ {
4255
+ in: 'query',
4256
+ name: 'api_key',
4257
+ type: 'apiKey'
4258
+ }
4259
+ ],
2639
4260
  url: '/search/saved/{search_id}',
2640
4261
  ...options
2641
4262
  });
4263
+ /**
4264
+ * List Connectors Endpoint
4265
+ *
4266
+ * List persistent connectors supplied by an installed overlay.
4267
+ *
4268
+ * Community's no-op extension returns an empty list; one-shot WFS, OGC API,
4269
+ * ArcGIS, and STAC imports remain on their existing free endpoints.
4270
+ */
4271
+ export const listConnectorsEndpointServicesConnectorsGet = (options) => (options?.client ?? client).get({
4272
+ security: [
4273
+ { scheme: 'bearer', type: 'http' },
4274
+ { name: 'X-Api-Key', type: 'apiKey' },
4275
+ {
4276
+ in: 'query',
4277
+ name: 'api_key',
4278
+ type: 'apiKey'
4279
+ }
4280
+ ],
4281
+ url: '/services/connectors/',
4282
+ ...options
4283
+ });
4284
+ /**
4285
+ * Discover Connector Resources Endpoint
4286
+ *
4287
+ * Validate connector config and discover non-secret source resources.
4288
+ */
4289
+ export const discoverConnectorResourcesEndpointServicesConnectorsConnectorNameDiscoverPost = (options) => (options.client ?? client).post({
4290
+ security: [
4291
+ { scheme: 'bearer', type: 'http' },
4292
+ { name: 'X-Api-Key', type: 'apiKey' },
4293
+ {
4294
+ in: 'query',
4295
+ name: 'api_key',
4296
+ type: 'apiKey'
4297
+ }
4298
+ ],
4299
+ url: '/services/connectors/{connector_name}/discover/',
4300
+ ...options,
4301
+ headers: {
4302
+ 'Content-Type': 'application/json',
4303
+ ...options.headers
4304
+ }
4305
+ });
4306
+ /**
4307
+ * Dispatch Connector Ingest Endpoint
4308
+ *
4309
+ * Dispatch an overlay-owned ingest and return its opaque job id.
4310
+ */
4311
+ export const dispatchConnectorIngestEndpointServicesConnectorsConnectorNameIngestPost = (options) => (options.client ?? client).post({
4312
+ security: [
4313
+ { scheme: 'bearer', type: 'http' },
4314
+ { name: 'X-Api-Key', type: 'apiKey' },
4315
+ {
4316
+ in: 'query',
4317
+ name: 'api_key',
4318
+ type: 'apiKey'
4319
+ }
4320
+ ],
4321
+ url: '/services/connectors/{connector_name}/ingest/',
4322
+ ...options,
4323
+ headers: {
4324
+ 'Content-Type': 'application/json',
4325
+ ...options.headers
4326
+ }
4327
+ });
2642
4328
  /**
2643
4329
  * Preview Service Layer
2644
4330
  *
@@ -2649,7 +4335,15 @@ export const getSavedSearchEndpointSearchSavedSearchIdGet = (options) => (option
2649
4335
  * ready for the existing commit flow.
2650
4336
  */
2651
4337
  export const previewServiceLayerServicesPreviewPost = (options) => (options.client ?? client).post({
2652
- security: [{ scheme: 'bearer', type: 'http' }],
4338
+ security: [
4339
+ { scheme: 'bearer', type: 'http' },
4340
+ { name: 'X-Api-Key', type: 'apiKey' },
4341
+ {
4342
+ in: 'query',
4343
+ name: 'api_key',
4344
+ type: 'apiKey'
4345
+ }
4346
+ ],
2653
4347
  url: '/services/preview/',
2654
4348
  ...options,
2655
4349
  headers: {
@@ -2666,7 +4360,15 @@ export const previewServiceLayerServicesPreviewPost = (options) => (options.clie
2666
4360
  * service, and returns a unified layer list. All attempts are audit-logged.
2667
4361
  */
2668
4362
  export const probeServiceUrlServicesProbePost = (options) => (options.client ?? client).post({
2669
- security: [{ scheme: 'bearer', type: 'http' }],
4363
+ security: [
4364
+ { scheme: 'bearer', type: 'http' },
4365
+ { name: 'X-Api-Key', type: 'apiKey' },
4366
+ {
4367
+ in: 'query',
4368
+ name: 'api_key',
4369
+ type: 'apiKey'
4370
+ }
4371
+ ],
2670
4372
  url: '/services/probe/',
2671
4373
  ...options,
2672
4374
  headers: {
@@ -2680,7 +4382,15 @@ export const probeServiceUrlServicesProbePost = (options) => (options.client ??
2680
4382
  * List collections from a connected STAC API.
2681
4383
  */
2682
4384
  export const stacCollectionsServicesStacCollectionsPost = (options) => (options.client ?? client).post({
2683
- security: [{ scheme: 'bearer', type: 'http' }],
4385
+ security: [
4386
+ { scheme: 'bearer', type: 'http' },
4387
+ { name: 'X-Api-Key', type: 'apiKey' },
4388
+ {
4389
+ in: 'query',
4390
+ name: 'api_key',
4391
+ type: 'apiKey'
4392
+ }
4393
+ ],
2684
4394
  url: '/services/stac/collections',
2685
4395
  ...options,
2686
4396
  headers: {
@@ -2694,7 +4404,15 @@ export const stacCollectionsServicesStacCollectionsPost = (options) => (options.
2694
4404
  * Connect to a STAC API and validate the endpoint.
2695
4405
  */
2696
4406
  export const stacConnectServicesStacConnectPost = (options) => (options.client ?? client).post({
2697
- security: [{ scheme: 'bearer', type: 'http' }],
4407
+ security: [
4408
+ { scheme: 'bearer', type: 'http' },
4409
+ { name: 'X-Api-Key', type: 'apiKey' },
4410
+ {
4411
+ in: 'query',
4412
+ name: 'api_key',
4413
+ type: 'apiKey'
4414
+ }
4415
+ ],
2698
4416
  url: '/services/stac/connect',
2699
4417
  ...options,
2700
4418
  headers: {
@@ -2712,7 +4430,15 @@ export const stacConnectServicesStacConnectPost = (options) => (options.client ?
2712
4430
  * remote source — no file download required.
2713
4431
  */
2714
4432
  export const stacImportServicesStacImportPost = (options) => (options.client ?? client).post({
2715
- security: [{ scheme: 'bearer', type: 'http' }],
4433
+ security: [
4434
+ { scheme: 'bearer', type: 'http' },
4435
+ { name: 'X-Api-Key', type: 'apiKey' },
4436
+ {
4437
+ in: 'query',
4438
+ name: 'api_key',
4439
+ type: 'apiKey'
4440
+ }
4441
+ ],
2716
4442
  url: '/services/stac/import',
2717
4443
  ...options,
2718
4444
  headers: {
@@ -2726,7 +4452,15 @@ export const stacImportServicesStacImportPost = (options) => (options.client ??
2726
4452
  * Search items in a STAC API with spatial/temporal filters.
2727
4453
  */
2728
4454
  export const stacSearchServicesStacSearchPost = (options) => (options.client ?? client).post({
2729
- security: [{ scheme: 'bearer', type: 'http' }],
4455
+ security: [
4456
+ { scheme: 'bearer', type: 'http' },
4457
+ { name: 'X-Api-Key', type: 'apiKey' },
4458
+ {
4459
+ in: 'query',
4460
+ name: 'api_key',
4461
+ type: 'apiKey'
4462
+ }
4463
+ ],
2730
4464
  url: '/services/stac/search',
2731
4465
  ...options,
2732
4466
  headers: {
@@ -2740,7 +4474,15 @@ export const stacSearchServicesStacSearchPost = (options) => (options.client ??
2740
4474
  * Update one or more settings (admin only). Returns updated settings.
2741
4475
  */
2742
4476
  export const updateSettingsSettingsPut = (options) => (options.client ?? client).put({
2743
- security: [{ scheme: 'bearer', type: 'http' }],
4477
+ security: [
4478
+ { scheme: 'bearer', type: 'http' },
4479
+ { name: 'X-Api-Key', type: 'apiKey' },
4480
+ {
4481
+ in: 'query',
4482
+ name: 'api_key',
4483
+ type: 'apiKey'
4484
+ }
4485
+ ],
2744
4486
  url: '/settings/',
2745
4487
  ...options,
2746
4488
  headers: {
@@ -2754,7 +4496,15 @@ export const updateSettingsSettingsPut = (options) => (options.client ?? client)
2754
4496
  * Return all settings grouped by tab with source indicators (admin only).
2755
4497
  */
2756
4498
  export const getAllSettingsSettingsAllGet = (options) => (options?.client ?? client).get({
2757
- security: [{ scheme: 'bearer', type: 'http' }],
4499
+ security: [
4500
+ { scheme: 'bearer', type: 'http' },
4501
+ { name: 'X-Api-Key', type: 'apiKey' },
4502
+ {
4503
+ in: 'query',
4504
+ name: 'api_key',
4505
+ type: 'apiKey'
4506
+ }
4507
+ ],
2758
4508
  url: '/settings/all/',
2759
4509
  ...options
2760
4510
  });
@@ -2764,7 +4514,15 @@ export const getAllSettingsSettingsAllGet = (options) => (options?.client ?? cli
2764
4514
  * Return which LLM API keys are configured (without exposing values).
2765
4515
  */
2766
4516
  export const getApiKeyStatusSettingsApiKeyStatusGet = (options) => (options?.client ?? client).get({
2767
- security: [{ scheme: 'bearer', type: 'http' }],
4517
+ security: [
4518
+ { scheme: 'bearer', type: 'http' },
4519
+ { name: 'X-Api-Key', type: 'apiKey' },
4520
+ {
4521
+ in: 'query',
4522
+ name: 'api_key',
4523
+ type: 'apiKey'
4524
+ }
4525
+ ],
2768
4526
  url: '/settings/api-key-status/',
2769
4527
  ...options
2770
4528
  });
@@ -2809,16 +4567,53 @@ export const getConfigModeSettingsConfigModeGet = (options) => (options?.client
2809
4567
  * Probe the configured embedding model and return its output dimensions.
2810
4568
  */
2811
4569
  export const detectEmbeddingDimsSettingsDetectEmbeddingDimsPost = (options) => (options?.client ?? client).post({
2812
- security: [{ scheme: 'bearer', type: 'http' }],
4570
+ security: [
4571
+ { scheme: 'bearer', type: 'http' },
4572
+ { name: 'X-Api-Key', type: 'apiKey' },
4573
+ {
4574
+ in: 'query',
4575
+ name: 'api_key',
4576
+ type: 'apiKey'
4577
+ }
4578
+ ],
2813
4579
  url: '/settings/detect-embedding-dims/',
2814
4580
  ...options
2815
4581
  });
4582
+ /**
4583
+ * Edition Info
4584
+ *
4585
+ * Return runtime capability metadata. Public, no auth required.
4586
+ */
4587
+ export const editionInfoSettingsEditionGet = (options) => (options?.client ?? client).get({ url: '/settings/edition/', ...options });
2816
4588
  /**
2817
4589
  * Get Enabled Plugins
2818
4590
  *
2819
4591
  * Return enabled plugin IDs. null = no restriction (all shown), [] = none, [...ids] = only those.
2820
4592
  */
2821
4593
  export const getEnabledPluginsSettingsEnabledPluginsGet = (options) => (options?.client ?? client).get({ url: '/settings/enabled-plugins/', ...options });
4594
+ /**
4595
+ * Get Enterprise Only Tabs
4596
+ *
4597
+ * Return the canonical list of restricted Settings tab keys.
4598
+ *
4599
+ * The frontend AdminSidebar uses this to avoid rendering tabs that the
4600
+ * current runtime does not expose. The backend write gate uses the same set
4601
+ * to reject writes to restricted settings, keeping UI and API behavior
4602
+ * aligned.
4603
+ */
4604
+ export const getEnterpriseOnlyTabsSettingsEnterpriseTabsGet = (options) => (options?.client ?? client).get({
4605
+ security: [
4606
+ { scheme: 'bearer', type: 'http' },
4607
+ { name: 'X-Api-Key', type: 'apiKey' },
4608
+ {
4609
+ in: 'query',
4610
+ name: 'api_key',
4611
+ type: 'apiKey'
4612
+ }
4613
+ ],
4614
+ url: '/settings/enterprise-tabs/',
4615
+ ...options
4616
+ });
2822
4617
  /**
2823
4618
  * Get Feature Flags
2824
4619
  *
@@ -2841,7 +4636,15 @@ export const getMapDefaultsSettingsMapDefaultsGet = (options) => (options?.clien
2841
4636
  * (NOTIF-05 / T-1229-09).
2842
4637
  */
2843
4638
  export const getNotificationStatusSettingsNotificationsStatusGet = (options) => (options?.client ?? client).get({
2844
- security: [{ scheme: 'bearer', type: 'http' }],
4639
+ security: [
4640
+ { scheme: 'bearer', type: 'http' },
4641
+ { name: 'X-Api-Key', type: 'apiKey' },
4642
+ {
4643
+ in: 'query',
4644
+ name: 'api_key',
4645
+ type: 'apiKey'
4646
+ }
4647
+ ],
2845
4648
  url: '/settings/notifications/status/',
2846
4649
  ...options
2847
4650
  });
@@ -2859,7 +4662,15 @@ export const getNotificationStatusSettingsNotificationsStatusGet = (options) =>
2859
4662
  * NotificationTestChannelResult for display in the admin UI.
2860
4663
  */
2861
4664
  export const sendTestNotificationSettingsNotificationsTestPost = (options) => (options?.client ?? client).post({
2862
- security: [{ scheme: 'bearer', type: 'http' }],
4665
+ security: [
4666
+ { scheme: 'bearer', type: 'http' },
4667
+ { name: 'X-Api-Key', type: 'apiKey' },
4668
+ {
4669
+ in: 'query',
4670
+ name: 'api_key',
4671
+ type: 'apiKey'
4672
+ }
4673
+ ],
2863
4674
  url: '/settings/notifications/test/',
2864
4675
  ...options
2865
4676
  });
@@ -2869,7 +4680,15 @@ export const sendTestNotificationSettingsNotificationsTestPost = (options) => (o
2869
4680
  * List all OAuth providers (admin only).
2870
4681
  */
2871
4682
  export const listOauthProvidersSettingsOauthProvidersGet = (options) => (options?.client ?? client).get({
2872
- security: [{ scheme: 'bearer', type: 'http' }],
4683
+ security: [
4684
+ { scheme: 'bearer', type: 'http' },
4685
+ { name: 'X-Api-Key', type: 'apiKey' },
4686
+ {
4687
+ in: 'query',
4688
+ name: 'api_key',
4689
+ type: 'apiKey'
4690
+ }
4691
+ ],
2873
4692
  url: '/settings/oauth-providers/',
2874
4693
  ...options
2875
4694
  });
@@ -2883,7 +4702,15 @@ export const listOauthProvidersSettingsOauthProvidersGet = (options) => (options
2883
4702
  * in the request body (SAML-12 / Pitfall 9 / T-217-03-AUDIT-LEAK).
2884
4703
  */
2885
4704
  export const createOauthProviderSettingsOauthProvidersPost = (options) => (options.client ?? client).post({
2886
- security: [{ scheme: 'bearer', type: 'http' }],
4705
+ security: [
4706
+ { scheme: 'bearer', type: 'http' },
4707
+ { name: 'X-Api-Key', type: 'apiKey' },
4708
+ {
4709
+ in: 'query',
4710
+ name: 'api_key',
4711
+ type: 'apiKey'
4712
+ }
4713
+ ],
2887
4714
  url: '/settings/oauth-providers/',
2888
4715
  ...options,
2889
4716
  headers: {
@@ -2902,7 +4729,15 @@ export const createOauthProviderSettingsOauthProvidersPost = (options) => (optio
2902
4729
  * delete events too).
2903
4730
  */
2904
4731
  export const deleteOauthProviderSettingsOauthProvidersProviderIdDelete = (options) => (options.client ?? client).delete({
2905
- security: [{ scheme: 'bearer', type: 'http' }],
4732
+ security: [
4733
+ { scheme: 'bearer', type: 'http' },
4734
+ { name: 'X-Api-Key', type: 'apiKey' },
4735
+ {
4736
+ in: 'query',
4737
+ name: 'api_key',
4738
+ type: 'apiKey'
4739
+ }
4740
+ ],
2906
4741
  url: '/settings/oauth-providers/{provider_id}',
2907
4742
  ...options
2908
4743
  });
@@ -2918,7 +4753,15 @@ export const deleteOauthProviderSettingsOauthProvidersProviderIdDelete = (option
2918
4753
  * T-217-03-AUDIT-LEAK HIGH severity).
2919
4754
  */
2920
4755
  export const updateOauthProviderSettingsOauthProvidersProviderIdPut = (options) => (options.client ?? client).put({
2921
- security: [{ scheme: 'bearer', type: 'http' }],
4756
+ security: [
4757
+ { scheme: 'bearer', type: 'http' },
4758
+ { name: 'X-Api-Key', type: 'apiKey' },
4759
+ {
4760
+ in: 'query',
4761
+ name: 'api_key',
4762
+ type: 'apiKey'
4763
+ }
4764
+ ],
2922
4765
  url: '/settings/oauth-providers/{provider_id}',
2923
4766
  ...options,
2924
4767
  headers: {
@@ -2932,7 +4775,15 @@ export const updateOauthProviderSettingsOauthProvidersProviderIdPut = (options)
2932
4775
  * Reset one or more settings to their defaults (admin only). Returns updated settings.
2933
4776
  */
2934
4777
  export const resetSettingsSettingsResetPost = (options) => (options.client ?? client).post({
2935
- security: [{ scheme: 'bearer', type: 'http' }],
4778
+ security: [
4779
+ { scheme: 'bearer', type: 'http' },
4780
+ { name: 'X-Api-Key', type: 'apiKey' },
4781
+ {
4782
+ in: 'query',
4783
+ name: 'api_key',
4784
+ type: 'apiKey'
4785
+ }
4786
+ ],
2936
4787
  url: '/settings/reset/',
2937
4788
  ...options,
2938
4789
  headers: {
@@ -2970,7 +4821,15 @@ export const getCollectionStacCollectionsCollectionIdGet = (options) => (options
2970
4821
  * List STAC Items within a collection.
2971
4822
  */
2972
4823
  export const getCollectionItemsStacCollectionsCollectionIdItemsGet = (options) => (options.client ?? client).get({
2973
- security: [{ scheme: 'bearer', type: 'http' }],
4824
+ security: [
4825
+ { scheme: 'bearer', type: 'http' },
4826
+ { name: 'X-Api-Key', type: 'apiKey' },
4827
+ {
4828
+ in: 'query',
4829
+ name: 'api_key',
4830
+ type: 'apiKey'
4831
+ }
4832
+ ],
2974
4833
  url: '/stac/collections/{collection_id}/items',
2975
4834
  ...options
2976
4835
  });
@@ -2980,7 +4839,15 @@ export const getCollectionItemsStacCollectionsCollectionIdItemsGet = (options) =
2980
4839
  * Get a single STAC Item within a collection.
2981
4840
  */
2982
4841
  export const getCollectionItemStacCollectionsCollectionIdItemsItemIdGet = (options) => (options.client ?? client).get({
2983
- security: [{ scheme: 'bearer', type: 'http' }],
4842
+ security: [
4843
+ { scheme: 'bearer', type: 'http' },
4844
+ { name: 'X-Api-Key', type: 'apiKey' },
4845
+ {
4846
+ in: 'query',
4847
+ name: 'api_key',
4848
+ type: 'apiKey'
4849
+ }
4850
+ ],
2984
4851
  url: '/stac/collections/{collection_id}/items/{item_id}',
2985
4852
  ...options
2986
4853
  });
@@ -2996,7 +4863,15 @@ export const conformanceStacConformanceGet = (options) => (options?.client ?? cl
2996
4863
  * Get a single STAC Item by dataset ID.
2997
4864
  */
2998
4865
  export const getItemStacItemsItemIdGet = (options) => (options.client ?? client).get({
2999
- security: [{ scheme: 'bearer', type: 'http' }],
4866
+ security: [
4867
+ { scheme: 'bearer', type: 'http' },
4868
+ { name: 'X-Api-Key', type: 'apiKey' },
4869
+ {
4870
+ in: 'query',
4871
+ name: 'api_key',
4872
+ type: 'apiKey'
4873
+ }
4874
+ ],
3000
4875
  url: '/stac/items/{item_id}',
3001
4876
  ...options
3002
4877
  });
@@ -3006,7 +4881,15 @@ export const getItemStacItemsItemIdGet = (options) => (options.client ?? client)
3006
4881
  * STAC Item Search (GET).
3007
4882
  */
3008
4883
  export const searchGetStacSearchGet = (options) => (options?.client ?? client).get({
3009
- security: [{ scheme: 'bearer', type: 'http' }],
4884
+ security: [
4885
+ { scheme: 'bearer', type: 'http' },
4886
+ { name: 'X-Api-Key', type: 'apiKey' },
4887
+ {
4888
+ in: 'query',
4889
+ name: 'api_key',
4890
+ type: 'apiKey'
4891
+ }
4892
+ ],
3010
4893
  url: '/stac/search',
3011
4894
  ...options
3012
4895
  });
@@ -3016,7 +4899,15 @@ export const searchGetStacSearchGet = (options) => (options?.client ?? client).g
3016
4899
  * STAC Item Search (POST with JSON body).
3017
4900
  */
3018
4901
  export const searchPostStacSearchPost = (options) => (options.client ?? client).post({
3019
- security: [{ scheme: 'bearer', type: 'http' }],
4902
+ security: [
4903
+ { scheme: 'bearer', type: 'http' },
4904
+ { name: 'X-Api-Key', type: 'apiKey' },
4905
+ {
4906
+ in: 'query',
4907
+ name: 'api_key',
4908
+ type: 'apiKey'
4909
+ }
4910
+ ],
3020
4911
  url: '/stac/search',
3021
4912
  ...options,
3022
4913
  headers: {
@@ -3040,7 +4931,15 @@ export const searchPostStacSearchPost = (options) => (options.client ?? client).
3040
4931
  * styling and popups keep working on the server-cluster path.
3041
4932
  */
3042
4933
  export const clusterTileEndpointTilesClustersTablePathZXYPbfGet = (options) => (options.client ?? client).get({
3043
- security: [{ scheme: 'bearer', type: 'http' }],
4934
+ security: [
4935
+ { scheme: 'bearer', type: 'http' },
4936
+ { name: 'X-Api-Key', type: 'apiKey' },
4937
+ {
4938
+ in: 'query',
4939
+ name: 'api_key',
4940
+ type: 'apiKey'
4941
+ }
4942
+ ],
3044
4943
  url: '/tiles/clusters/{table_path}/{z}/{x}/{y}.pbf',
3045
4944
  ...options
3046
4945
  });
@@ -3059,7 +4958,15 @@ export const clusterTileEndpointTilesClustersTablePathZXYPbfGet = (options) => (
3059
4958
  * 404 if dataset not found, not a raster, or has no raster asset
3060
4959
  */
3061
4960
  export const rasterAuthCheckTilesRasterAuthCheckGet = (options) => (options.client ?? client).get({
3062
- security: [{ scheme: 'bearer', type: 'http' }],
4961
+ security: [
4962
+ { scheme: 'bearer', type: 'http' },
4963
+ { name: 'X-Api-Key', type: 'apiKey' },
4964
+ {
4965
+ in: 'query',
4966
+ name: 'api_key',
4967
+ type: 'apiKey'
4968
+ }
4969
+ ],
3063
4970
  url: '/tiles/raster-auth-check/',
3064
4971
  ...options
3065
4972
  });
@@ -3090,7 +4997,15 @@ export const rasterAuthCheckTilesRasterAuthCheckGet = (options) => (options.clie
3090
4997
  * Must be > 0.
3091
4998
  */
3092
4999
  export const rasterTileProxyTilesRasterProxyDatasetIdZXYFmtGet = (options) => (options.client ?? client).get({
3093
- security: [{ scheme: 'bearer', type: 'http' }],
5000
+ security: [
5001
+ { scheme: 'bearer', type: 'http' },
5002
+ { name: 'X-Api-Key', type: 'apiKey' },
5003
+ {
5004
+ in: 'query',
5005
+ name: 'api_key',
5006
+ type: 'apiKey'
5007
+ }
5008
+ ],
3094
5009
  url: '/tiles/raster-proxy/{dataset_id}/{z}/{x}/{y}.{fmt}',
3095
5010
  ...options
3096
5011
  });
@@ -3108,7 +5023,15 @@ export const rasterTileProxyTilesRasterProxyDatasetIdZXYFmtGet = (options) => (o
3108
5023
  * Private/restricted datasets require authentication and RBAC checks.
3109
5024
  */
3110
5025
  export const getTileTokenTilesTokenDatasetIdGet = (options) => (options.client ?? client).get({
3111
- security: [{ scheme: 'bearer', type: 'http' }],
5026
+ security: [
5027
+ { scheme: 'bearer', type: 'http' },
5028
+ { name: 'X-Api-Key', type: 'apiKey' },
5029
+ {
5030
+ in: 'query',
5031
+ name: 'api_key',
5032
+ type: 'apiKey'
5033
+ }
5034
+ ],
3112
5035
  url: '/tiles/token/{dataset_id}/',
3113
5036
  ...options
3114
5037
  });
@@ -3131,7 +5054,15 @@ export const getTileTokenTilesTokenDatasetIdGet = (options) => (options.client ?
3131
5054
  * builds its raster-dem source from the real bounds/maxzoom descriptor.
3132
5055
  */
3133
5056
  export const getTileTokensBatchTilesTokensPost = (options) => (options.client ?? client).post({
3134
- security: [{ scheme: 'bearer', type: 'http' }],
5057
+ security: [
5058
+ { scheme: 'bearer', type: 'http' },
5059
+ { name: 'X-Api-Key', type: 'apiKey' },
5060
+ {
5061
+ in: 'query',
5062
+ name: 'api_key',
5063
+ type: 'apiKey'
5064
+ }
5065
+ ],
3135
5066
  url: '/tiles/tokens/',
3136
5067
  ...options,
3137
5068
  headers: {
@@ -3159,7 +5090,15 @@ export const getTileTokensBatchTilesTokensPost = (options) => (options.client ??
3159
5090
  * REST access to.
3160
5091
  */
3161
5092
  export const tileEndpointTilesTablePathZXYPbfGet = (options) => (options.client ?? client).get({
3162
- security: [{ scheme: 'bearer', type: 'http' }],
5093
+ security: [
5094
+ { scheme: 'bearer', type: 'http' },
5095
+ { name: 'X-Api-Key', type: 'apiKey' },
5096
+ {
5097
+ in: 'query',
5098
+ name: 'api_key',
5099
+ type: 'apiKey'
5100
+ }
5101
+ ],
3163
5102
  url: '/tiles/{table_path}/{z}/{x}/{y}.pbf',
3164
5103
  ...options
3165
5104
  });