@geolens/sdk 1.4.6 → 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
  });
@@ -1209,7 +1933,15 @@ export const downloadCogDatasetsDatasetIdDownloadCogGet = (options) => (options.
1209
1933
  * filtering. GeoParquet is always emitted in EPSG:4326 (OGC:CRS84).
1210
1934
  */
1211
1935
  export const exportDatasetEndpointDatasetsDatasetIdExportGet = (options) => (options.client ?? client).get({
1212
- 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
+ ],
1213
1945
  url: '/datasets/{dataset_id}/export',
1214
1946
  ...options
1215
1947
  });
@@ -1237,7 +1969,15 @@ export const exportDatasetEndpointDatasetsDatasetIdExportGet = (options) => (opt
1237
1969
  * Truly credentialless requests keep the anonymous public path.
1238
1970
  */
1239
1971
  export const getFeaturesGeojsonZEndpointDatasetsDatasetIdFeaturesGeojsonGet = (options) => (options.client ?? client).get({
1240
- 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
+ ],
1241
1981
  url: '/datasets/{dataset_id}/features.geojson',
1242
1982
  ...options
1243
1983
  });
@@ -1247,7 +1987,15 @@ export const getFeaturesGeojsonZEndpointDatasetsDatasetIdFeaturesGeojsonGet = (o
1247
1987
  * Get paginated GeoJSON features for a dataset.
1248
1988
  */
1249
1989
  export const listFeaturesDatasetsDatasetIdFeaturesGet = (options) => (options.client ?? client).get({
1250
- 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
+ ],
1251
1999
  url: '/datasets/{dataset_id}/features/',
1252
2000
  ...options
1253
2001
  });
@@ -1257,7 +2005,15 @@ export const listFeaturesDatasetsDatasetIdFeaturesGet = (options) => (options.cl
1257
2005
  * Insert a new GeoJSON feature into a dataset.
1258
2006
  */
1259
2007
  export const createFeatureDatasetsDatasetIdFeaturesPost = (options) => (options.client ?? client).post({
1260
- 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
+ ],
1261
2017
  url: '/datasets/{dataset_id}/features/',
1262
2018
  ...options,
1263
2019
  headers: {
@@ -1271,7 +2027,15 @@ export const createFeatureDatasetsDatasetIdFeaturesPost = (options) => (options.
1271
2027
  * Delete a feature by gid (hard delete).
1272
2028
  */
1273
2029
  export const deleteSingleFeatureDatasetsDatasetIdFeaturesGidDelete = (options) => (options.client ?? client).delete({
1274
- 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
+ ],
1275
2039
  url: '/datasets/{dataset_id}/features/{gid}',
1276
2040
  ...options
1277
2041
  });
@@ -1281,7 +2045,15 @@ export const deleteSingleFeatureDatasetsDatasetIdFeaturesGidDelete = (options) =
1281
2045
  * Get a single GeoJSON feature by gid.
1282
2046
  */
1283
2047
  export const getSingleFeatureDatasetsDatasetIdFeaturesGidGet = (options) => (options.client ?? client).get({
1284
- 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
+ ],
1285
2057
  url: '/datasets/{dataset_id}/features/{gid}',
1286
2058
  ...options
1287
2059
  });
@@ -1291,7 +2063,15 @@ export const getSingleFeatureDatasetsDatasetIdFeaturesGidGet = (options) => (opt
1291
2063
  * Partial update of a feature (PATCH semantics).
1292
2064
  */
1293
2065
  export const patchSingleFeatureDatasetsDatasetIdFeaturesGidPatch = (options) => (options.client ?? client).patch({
1294
- 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
+ ],
1295
2075
  url: '/datasets/{dataset_id}/features/{gid}',
1296
2076
  ...options,
1297
2077
  headers: {
@@ -1305,7 +2085,15 @@ export const patchSingleFeatureDatasetsDatasetIdFeaturesGidPatch = (options) =>
1305
2085
  * Full replacement of a feature (PUT semantics).
1306
2086
  */
1307
2087
  export const replaceSingleFeatureDatasetsDatasetIdFeaturesGidPut = (options) => (options.client ?? client).put({
1308
- 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
+ ],
1309
2097
  url: '/datasets/{dataset_id}/features/{gid}',
1310
2098
  ...options,
1311
2099
  headers: {
@@ -1319,7 +2107,15 @@ export const replaceSingleFeatureDatasetsDatasetIdFeaturesGidPut = (options) =>
1319
2107
  * Get related records for a feature via FK relationship.
1320
2108
  */
1321
2109
  export const getFeatureRelatedRecordsDatasetsDatasetIdFeaturesGidRelatedRelationshipIdGet = (options) => (options.client ?? client).get({
1322
- 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
+ ],
1323
2119
  url: '/datasets/{dataset_id}/features/{gid}/related/{relationship_id}/',
1324
2120
  ...options
1325
2121
  });
@@ -1329,7 +2125,15 @@ export const getFeatureRelatedRecordsDatasetsDatasetIdFeaturesGidRelatedRelation
1329
2125
  * GeoDCAT-AP 2.0.0 JSON-LD for a single dataset.
1330
2126
  */
1331
2127
  export const getGeodcatApRecordDatasetsDatasetIdGeodcatApGet = (options) => (options.client ?? client).get({
1332
- 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
+ ],
1333
2137
  url: '/datasets/{dataset_id}/geodcat-ap/',
1334
2138
  ...options
1335
2139
  });
@@ -1339,7 +2143,15 @@ export const getGeodcatApRecordDatasetsDatasetIdGeodcatApGet = (options) => (opt
1339
2143
  * Validate a single dataset as GeoDCAT-AP 2.0.0.
1340
2144
  */
1341
2145
  export const validateGeodcatApRecordDatasetsDatasetIdGeodcatApValidationGet = (options) => (options.client ?? client).get({
1342
- 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
+ ],
1343
2155
  url: '/datasets/{dataset_id}/geodcat-ap/validation/',
1344
2156
  ...options
1345
2157
  });
@@ -1349,7 +2161,15 @@ export const validateGeodcatApRecordDatasetsDatasetIdGeodcatApValidationGet = (o
1349
2161
  * Get audit log history for a specific dataset.
1350
2162
  */
1351
2163
  export const getDatasetHistoryDatasetsDatasetIdHistoryGet = (options) => (options.client ?? client).get({
1352
- 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
+ ],
1353
2173
  url: '/datasets/{dataset_id}/history',
1354
2174
  ...options
1355
2175
  });
@@ -1359,7 +2179,15 @@ export const getDatasetHistoryDatasetsDatasetIdHistoryGet = (options) => (option
1359
2179
  * Return maps that contain this dataset, filtered by caller's RBAC visibility.
1360
2180
  */
1361
2181
  export const datasetMapsDatasetsDatasetIdMapsGet = (options) => (options.client ?? client).get({
1362
- 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
+ ],
1363
2191
  url: '/datasets/{dataset_id}/maps/',
1364
2192
  ...options
1365
2193
  });
@@ -1369,7 +2197,15 @@ export const datasetMapsDatasetsDatasetIdMapsGet = (options) => (options.client
1369
2197
  * Serve a quicklook PNG image for a dataset.
1370
2198
  */
1371
2199
  export const getQuicklookDatasetsDatasetIdQuicklookGet = (options) => (options.client ?? client).get({
1372
- 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
+ ],
1373
2209
  url: '/datasets/{dataset_id}/quicklook',
1374
2210
  ...options
1375
2211
  });
@@ -1379,7 +2215,15 @@ export const getQuicklookDatasetsDatasetIdQuicklookGet = (options) => (options.c
1379
2215
  * Return top-5 datasets similar to this one by embedding cosine similarity.
1380
2216
  */
1381
2217
  export const listRelatedDatasetsDatasetsDatasetIdRelatedGet = (options) => (options.client ?? client).get({
1382
- 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
+ ],
1383
2227
  url: '/datasets/{dataset_id}/related/',
1384
2228
  ...options
1385
2229
  });
@@ -1395,7 +2239,15 @@ export const listRelatedDatasetsDatasetsDatasetIdRelatedGet = (options) => (opti
1395
2239
  * pagination.
1396
2240
  */
1397
2241
  export const listDatasetRelationshipsDatasetsDatasetIdRelationshipsGet = (options) => (options.client ?? client).get({
1398
- 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
+ ],
1399
2251
  url: '/datasets/{dataset_id}/relationships/',
1400
2252
  ...options
1401
2253
  });
@@ -1405,7 +2257,15 @@ export const listDatasetRelationshipsDatasetsDatasetIdRelationshipsGet = (option
1405
2257
  * Create a new FK relationship. Editor+ required.
1406
2258
  */
1407
2259
  export const createDatasetRelationshipDatasetsDatasetIdRelationshipsPost = (options) => (options.client ?? client).post({
1408
- 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
+ ],
1409
2269
  url: '/datasets/{dataset_id}/relationships/',
1410
2270
  ...options,
1411
2271
  headers: {
@@ -1420,7 +2280,15 @@ export const createDatasetRelationshipDatasetsDatasetIdRelationshipsPost = (opti
1420
2280
  */
1421
2281
  export const reuploadDatasetDatasetsDatasetIdReuploadPost = (options) => (options.client ?? client).post({
1422
2282
  ...formDataBodySerializer,
1423
- 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
+ ],
1424
2292
  url: '/datasets/{dataset_id}/reupload',
1425
2293
  ...options,
1426
2294
  headers: {
@@ -1434,7 +2302,15 @@ export const reuploadDatasetDatasetsDatasetIdReuploadPost = (options) => (option
1434
2302
  * Request presigned URL(s) for direct-to-S3 reupload.
1435
2303
  */
1436
2304
  export const requestPresignedReuploadDatasetsDatasetIdReuploadPresignedPost = (options) => (options.client ?? client).post({
1437
- 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
+ ],
1438
2314
  url: '/datasets/{dataset_id}/reupload/presigned',
1439
2315
  ...options,
1440
2316
  headers: {
@@ -1448,7 +2324,15 @@ export const requestPresignedReuploadDatasetsDatasetIdReuploadPresignedPost = (o
1448
2324
  * Notify that direct-to-S3 reupload is complete.
1449
2325
  */
1450
2326
  export const completePresignedReuploadDatasetsDatasetIdReuploadPresignedJobIdCompletePost = (options) => (options.client ?? client).post({
1451
- 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
+ ],
1452
2336
  url: '/datasets/{dataset_id}/reupload/presigned/{job_id}/complete',
1453
2337
  ...options,
1454
2338
  headers: {
@@ -1462,7 +2346,15 @@ export const completePresignedReuploadDatasetsDatasetIdReuploadPresignedJobIdCom
1462
2346
  * Preview a remote service layer for dataset re-upload.
1463
2347
  */
1464
2348
  export const reuploadServicePreviewDatasetsDatasetIdReuploadServicePreviewPost = (options) => (options.client ?? client).post({
1465
- 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
+ ],
1466
2358
  url: '/datasets/{dataset_id}/reupload/service/preview',
1467
2359
  ...options,
1468
2360
  headers: {
@@ -1476,7 +2368,15 @@ export const reuploadServicePreviewDatasetsDatasetIdReuploadServicePreviewPost =
1476
2368
  * Commit a re-upload, queuing the background swap task.
1477
2369
  */
1478
2370
  export const reuploadCommitDatasetsDatasetIdReuploadJobIdCommitPost = (options) => (options.client ?? client).post({
1479
- 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
+ ],
1480
2380
  url: '/datasets/{dataset_id}/reupload/{job_id}/commit',
1481
2381
  ...options,
1482
2382
  headers: {
@@ -1496,7 +2396,15 @@ export const reuploadCommitDatasetsDatasetIdReuploadJobIdCommitPost = (options)
1496
2396
  * layer; omit it to get the default first-layer metadata.
1497
2397
  */
1498
2398
  export const reuploadPreviewDatasetsDatasetIdReuploadJobIdPreviewPost = (options) => (options.client ?? client).post({
1499
- 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
+ ],
1500
2408
  url: '/datasets/{dataset_id}/reupload/{job_id}/preview',
1501
2409
  ...options,
1502
2410
  headers: {
@@ -1513,7 +2421,15 @@ export const reuploadPreviewDatasetsDatasetIdReuploadJobIdPreviewPost = (options
1513
2421
  * Supports column filtering via query params: ``filter[column_name]=value``.
1514
2422
  */
1515
2423
  export const getDatasetRowsEndpointDatasetsDatasetIdRowsGet = (options) => (options.client ?? client).get({
1516
- 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
+ ],
1517
2433
  url: '/datasets/{dataset_id}/rows/',
1518
2434
  ...options
1519
2435
  });
@@ -1526,7 +2442,15 @@ export const getDatasetRowsEndpointDatasetsDatasetIdRowsGet = (options) => (opti
1526
2442
  * draft -> ready -> internal -> published (and back one step).
1527
2443
  */
1528
2444
  export const updatePublicationStatusDatasetsDatasetIdStatusPatch = (options) => (options.client ?? client).patch({
1529
- 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
+ ],
1530
2454
  url: '/datasets/{dataset_id}/status/',
1531
2455
  ...options,
1532
2456
  headers: {
@@ -1543,7 +2467,15 @@ export const updatePublicationStatusDatasetsDatasetIdStatusPatch = (options) =>
1543
2467
  * (e.g. draft -> ready -> internal -> published) completes server-side.
1544
2468
  */
1545
2469
  export const setTargetStatusDatasetsDatasetIdTargetStatusPatch = (options) => (options.client ?? client).patch({
1546
- 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
+ ],
1547
2479
  url: '/datasets/{dataset_id}/target-status/',
1548
2480
  ...options,
1549
2481
  headers: {
@@ -1562,7 +2494,15 @@ export const setTargetStatusDatasetsDatasetIdTargetStatusPatch = (options) => (o
1562
2494
  * a single query).
1563
2495
  */
1564
2496
  export const validateDatasetDatasetsDatasetIdValidateGet = (options) => (options.client ?? client).get({
1565
- 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
+ ],
1566
2506
  url: '/datasets/{dataset_id}/validate/',
1567
2507
  ...options
1568
2508
  });
@@ -1572,7 +2512,15 @@ export const validateDatasetDatasetsDatasetIdValidateGet = (options) => (options
1572
2512
  * Get paginated version history for a dataset.
1573
2513
  */
1574
2514
  export const getDatasetVersionsEndpointDatasetsDatasetIdVersionsGet = (options) => (options.client ?? client).get({
1575
- 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
+ ],
1576
2524
  url: '/datasets/{dataset_id}/versions/',
1577
2525
  ...options
1578
2526
  });
@@ -1582,7 +2530,15 @@ export const getDatasetVersionsEndpointDatasetsDatasetIdVersionsGet = (options)
1582
2530
  * Return ordered list of COG sources for a VRT dataset.
1583
2531
  */
1584
2532
  export const listVrtSourcesDatasetsDatasetIdVrtSourcesGet = (options) => (options.client ?? client).get({
1585
- 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
+ ],
1586
2542
  url: '/datasets/{dataset_id}/vrt-sources/',
1587
2543
  ...options
1588
2544
  });
@@ -1592,7 +2548,15 @@ export const listVrtSourcesDatasetsDatasetIdVrtSourcesGet = (options) => (option
1592
2548
  * Return paginated generation history for a VRT dataset.
1593
2549
  */
1594
2550
  export const listVrtGenerationsDatasetsDatasetIdVrtGenerationsGet = (options) => (options.client ?? client).get({
1595
- 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
+ ],
1596
2560
  url: '/datasets/{dataset_id}/vrt/generations/',
1597
2561
  ...options
1598
2562
  });
@@ -1602,7 +2566,15 @@ export const listVrtGenerationsDatasetsDatasetIdVrtGenerationsGet = (options) =>
1602
2566
  * Trigger manual VRT regeneration with advisory lock to prevent concurrent rebuilds.
1603
2567
  */
1604
2568
  export const regenerateVrtEndpointDatasetsDatasetIdVrtRegeneratePost = (options) => (options.client ?? client).post({
1605
- 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
+ ],
1606
2578
  url: '/datasets/{dataset_id}/vrt/regenerate/',
1607
2579
  ...options
1608
2580
  });
@@ -1612,7 +2584,15 @@ export const regenerateVrtEndpointDatasetsDatasetIdVrtRegeneratePost = (options)
1612
2584
  * Return VRT dataset status, last generation time, source count, and per-source health.
1613
2585
  */
1614
2586
  export const getVrtStatusDatasetsDatasetIdVrtStatusGet = (options) => (options.client ?? client).get({
1615
- 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
+ ],
1616
2596
  url: '/datasets/{dataset_id}/vrt/status/',
1617
2597
  ...options
1618
2598
  });
@@ -1643,7 +2623,15 @@ export const healthHealthGet = (options) => (options?.client ?? client).get({ ur
1643
2623
  * Permission: same as POST /ingest/commit/{job_id} — 'upload' capability.
1644
2624
  */
1645
2625
  export const commitFanOutIngestCommitFanOutJobIdPost = (options) => (options.client ?? client).post({
1646
- 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
+ ],
1647
2635
  url: '/ingest/commit-fan-out/{job_id}',
1648
2636
  ...options,
1649
2637
  headers: {
@@ -1660,7 +2648,15 @@ export const commitFanOutIngestCommitFanOutJobIdPost = (options) => (options.cli
1660
2648
  * Only callable on jobs with status 'pending'.
1661
2649
  */
1662
2650
  export const commitImportIngestCommitJobIdPost = (options) => (options.client ?? client).post({
1663
- 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
+ ],
1664
2660
  url: '/ingest/commit/{job_id}',
1665
2661
  ...options,
1666
2662
  headers: {
@@ -1679,7 +2675,15 @@ export const commitImportIngestCommitJobIdPost = (options) => (options.client ??
1679
2675
  * thousands of orphan tables don't blow up the response payload.
1680
2676
  */
1681
2677
  export const discoverTablesIngestDiscoverGet = (options) => (options?.client ?? client).get({
1682
- 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
+ ],
1683
2687
  url: '/ingest/discover/',
1684
2688
  ...options
1685
2689
  });
@@ -1689,7 +2693,15 @@ export const discoverTablesIngestDiscoverGet = (options) => (options?.client ??
1689
2693
  * Apply a versioned manifest through the ingest service layer.
1690
2694
  */
1691
2695
  export const applyManifestEndpointIngestManifestApplyPost = (options) => (options.client ?? client).post({
1692
- 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
+ ],
1693
2705
  url: '/ingest/manifest/apply',
1694
2706
  ...options,
1695
2707
  headers: {
@@ -1707,7 +2719,15 @@ export const applyManifestEndpointIngestManifestApplyPost = (options) => (option
1707
2719
  * Only callable on jobs with status 'pending'.
1708
2720
  */
1709
2721
  export const previewFileIngestPreviewJobIdPost = (options) => (options.client ?? client).post({
1710
- 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
+ ],
1711
2731
  url: '/ingest/preview/{job_id}',
1712
2732
  ...options
1713
2733
  });
@@ -1720,7 +2740,15 @@ export const previewFileIngestPreviewJobIdPost = (options) => (options.client ??
1720
2740
  * catalog entry.
1721
2741
  */
1722
2742
  export const registerTableIngestRegisterPost = (options) => (options.client ?? client).post({
1723
- 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
+ ],
1724
2752
  url: '/ingest/register/',
1725
2753
  ...options,
1726
2754
  headers: {
@@ -1739,7 +2767,15 @@ export const registerTableIngestRegisterPost = (options) => (options.client ?? c
1739
2767
  * removing the sequential per-table latency (PERF-3).
1740
2768
  */
1741
2769
  export const bulkRegisterTablesIngestRegisterBulkPost = (options) => (options.client ?? client).post({
1742
- 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
+ ],
1743
2779
  url: '/ingest/register/bulk/',
1744
2780
  ...options,
1745
2781
  headers: {
@@ -1757,7 +2793,15 @@ export const bulkRegisterTablesIngestRegisterBulkPost = (options) => (options.cl
1757
2793
  */
1758
2794
  export const uploadFileIngestUploadPost = (options) => (options.client ?? client).post({
1759
2795
  ...formDataBodySerializer,
1760
- 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
+ ],
1761
2805
  url: '/ingest/upload',
1762
2806
  ...options,
1763
2807
  headers: {
@@ -1771,7 +2815,15 @@ export const uploadFileIngestUploadPost = (options) => (options.client ?? client
1771
2815
  * Return upload configuration including presigned upload availability.
1772
2816
  */
1773
2817
  export const getUploadConfigIngestUploadConfigGet = (options) => (options?.client ?? client).get({
1774
- 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
+ ],
1775
2827
  url: '/ingest/upload/config',
1776
2828
  ...options
1777
2829
  });
@@ -1781,7 +2833,15 @@ export const getUploadConfigIngestUploadConfigGet = (options) => (options?.clien
1781
2833
  * Request presigned URL(s) for direct-to-S3 file upload.
1782
2834
  */
1783
2835
  export const requestPresignedUploadIngestUploadPresignedPost = (options) => (options.client ?? client).post({
1784
- 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
+ ],
1785
2845
  url: '/ingest/upload/presigned',
1786
2846
  ...options,
1787
2847
  headers: {
@@ -1795,7 +2855,15 @@ export const requestPresignedUploadIngestUploadPresignedPost = (options) => (opt
1795
2855
  * Notify that direct-to-S3 upload is complete.
1796
2856
  */
1797
2857
  export const completePresignedUploadIngestUploadPresignedJobIdCompletePost = (options) => (options.client ?? client).post({
1798
- 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
+ ],
1799
2867
  url: '/ingest/upload/presigned/{job_id}/complete',
1800
2868
  ...options,
1801
2869
  headers: {
@@ -1813,7 +2881,15 @@ export const completePresignedUploadIngestUploadPresignedJobIdCompletePost = (op
1813
2881
  * ``ingest.service.create_vrt_job`` (K5 extraction).
1814
2882
  */
1815
2883
  export const createVrtIngestVrtCreatePost = (options) => (options.client ?? client).post({
1816
- 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
+ ],
1817
2893
  url: '/ingest/vrt/create',
1818
2894
  ...options,
1819
2895
  headers: {
@@ -1832,7 +2908,15 @@ export const createVrtIngestVrtCreatePost = (options) => (options.client ?? clie
1832
2908
  * Returns 422 if the source is incompatible with existing sources.
1833
2909
  */
1834
2910
  export const addVrtSourceIngestVrtDatasetIdSourcesPost = (options) => (options.client ?? client).post({
1835
- 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
+ ],
1836
2920
  url: '/ingest/vrt/{dataset_id}/sources/',
1837
2921
  ...options,
1838
2922
  headers: {
@@ -1851,7 +2935,15 @@ export const addVrtSourceIngestVrtDatasetIdSourcesPost = (options) => (options.c
1851
2935
  * Returns 404 if the source is not linked to the VRT.
1852
2936
  */
1853
2937
  export const removeVrtSourceIngestVrtDatasetIdSourcesSourceDatasetIdDelete = (options) => (options.client ?? client).delete({
1854
- 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
+ ],
1855
2947
  url: '/ingest/vrt/{dataset_id}/sources/{source_dataset_id}/',
1856
2948
  ...options
1857
2949
  });
@@ -1874,7 +2966,15 @@ export const removeVrtSourceIngestVrtDatasetIdSourcesSourceDatasetIdDelete = (op
1874
2966
  * user, to avoid leaking job existence (see visibility check below).
1875
2967
  */
1876
2968
  export const getJobStatusByDatasetJobsByDatasetDatasetIdGet = (options) => (options.client ?? client).get({
1877
- 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
+ ],
1878
2978
  url: '/jobs/by-dataset/{dataset_id}',
1879
2979
  ...options
1880
2980
  });
@@ -1890,7 +2990,15 @@ export const getJobStatusByDatasetJobsByDatasetDatasetIdGet = (options) => (opti
1890
2990
  * that interval.
1891
2991
  */
1892
2992
  export const cleanupStaleJobsJobsCleanupStalePost = (options) => (options?.client ?? client).post({
1893
- 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
+ ],
1894
3002
  url: '/jobs/cleanup/stale/',
1895
3003
  ...options
1896
3004
  });
@@ -1902,7 +3010,15 @@ export const cleanupStaleJobsJobsCleanupStalePost = (options) => (options?.clien
1902
3010
  * Only the job creator or an admin can view job status.
1903
3011
  */
1904
3012
  export const getJobStatusJobsJobIdGet = (options) => (options.client ?? client).get({
1905
- 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
+ ],
1906
3022
  url: '/jobs/{job_id}',
1907
3023
  ...options
1908
3024
  });
@@ -1915,7 +3031,15 @@ export const getJobStatusJobsJobIdGet = (options) => (options.client ?? client).
1915
3031
  * still exist (preserved on failure for retry).
1916
3032
  */
1917
3033
  export const retryJobJobsJobIdRetryPost = (options) => (options.client ?? client).post({
1918
- 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
+ ],
1919
3043
  url: '/jobs/{job_id}/retry',
1920
3044
  ...options
1921
3045
  });
@@ -1931,7 +3055,15 @@ export const retryJobJobsJobIdRetryPost = (options) => (options.client ?? client
1931
3055
  * Requires editor or admin role.
1932
3056
  */
1933
3057
  export const createLayerEndpointLayersPost = (options) => (options.client ?? client).post({
1934
- 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
+ ],
1935
3067
  url: '/layers/',
1936
3068
  ...options,
1937
3069
  headers: {
@@ -1945,7 +3077,15 @@ export const createLayerEndpointLayersPost = (options) => (options.client ?? cli
1945
3077
  * Add a column to an existing layer.
1946
3078
  */
1947
3079
  export const addColumnEndpointLayersDatasetIdColumnsPost = (options) => (options.client ?? client).post({
1948
- 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
+ ],
1949
3089
  url: '/layers/{dataset_id}/columns/',
1950
3090
  ...options,
1951
3091
  headers: {
@@ -1959,7 +3099,15 @@ export const addColumnEndpointLayersDatasetIdColumnsPost = (options) => (options
1959
3099
  * Remove a column from an existing layer.
1960
3100
  */
1961
3101
  export const dropColumnEndpointLayersDatasetIdColumnsColumnNameDelete = (options) => (options.client ?? client).delete({
1962
- 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
+ ],
1963
3111
  url: '/layers/{dataset_id}/columns/{column_name}',
1964
3112
  ...options
1965
3113
  });
@@ -1969,7 +3117,15 @@ export const dropColumnEndpointLayersDatasetIdColumnsColumnNameDelete = (options
1969
3117
  * Rename a column on an existing layer.
1970
3118
  */
1971
3119
  export const renameColumnEndpointLayersDatasetIdColumnsColumnNameNamePatch = (options) => (options.client ?? client).patch({
1972
- 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
+ ],
1973
3129
  url: '/layers/{dataset_id}/columns/{column_name}/name',
1974
3130
  ...options,
1975
3131
  headers: {
@@ -1987,7 +3143,15 @@ export const renameColumnEndpointLayersDatasetIdColumnsColumnNameNamePatch = (op
1987
3143
  * titles may belong to other users and are not exposed here.
1988
3144
  */
1989
3145
  export const columnReferencesEndpointLayersDatasetIdColumnsColumnNameReferencesGet = (options) => (options.client ?? client).get({
1990
- security: [{ scheme: 'bearer', type: 'http' }],
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
+ ],
1991
3155
  url: '/layers/{dataset_id}/columns/{column_name}/references',
1992
3156
  ...options
1993
3157
  });
@@ -2000,7 +3164,15 @@ export const columnReferencesEndpointLayersDatasetIdColumnsColumnNameReferencesG
2000
3164
  * cast cause the request to fail and roll back.
2001
3165
  */
2002
3166
  export const alterColumnTypeEndpointLayersDatasetIdColumnsColumnNameTypePatch = (options) => (options.client ?? client).patch({
2003
- 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
+ ],
2004
3176
  url: '/layers/{dataset_id}/columns/{column_name}/type',
2005
3177
  ...options,
2006
3178
  headers: {
@@ -2017,7 +3189,15 @@ export const alterColumnTypeEndpointLayersDatasetIdColumnsColumnNameTypePatch =
2017
3189
  * sort_dir (asc/desc), and visibility filter (private/internal/public).
2018
3190
  */
2019
3191
  export const listMapsEndpointMapsGet = (options) => (options?.client ?? client).get({
2020
- 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
+ ],
2021
3201
  url: '/maps/',
2022
3202
  ...options
2023
3203
  });
@@ -2027,7 +3207,15 @@ export const listMapsEndpointMapsGet = (options) => (options?.client ?? client).
2027
3207
  * Create a new map.
2028
3208
  */
2029
3209
  export const createMapEndpointMapsPost = (options) => (options.client ?? client).post({
2030
- 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
+ ],
2031
3219
  url: '/maps/',
2032
3220
  ...options,
2033
3221
  headers: {
@@ -2041,7 +3229,15 @@ export const createMapEndpointMapsPost = (options) => (options.client ?? client)
2041
3229
  * List reusable default and uploaded map icons.
2042
3230
  */
2043
3231
  export const listMapIconsEndpointMapsIconsGet = (options) => (options?.client ?? client).get({
2044
- 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
+ ],
2045
3241
  url: '/maps/icons',
2046
3242
  ...options
2047
3243
  });
@@ -2052,7 +3248,15 @@ export const listMapIconsEndpointMapsIconsGet = (options) => (options?.client ??
2052
3248
  */
2053
3249
  export const uploadMapIconEndpointMapsIconsPost = (options) => (options.client ?? client).post({
2054
3250
  ...formDataBodySerializer,
2055
- 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
+ ],
2056
3260
  url: '/maps/icons',
2057
3261
  ...options,
2058
3262
  headers: {
@@ -2086,7 +3290,15 @@ export const getMapIconAssetEndpointMapsIconsIconIdAssetGet = (options) => (opti
2086
3290
  * request type.
2087
3291
  */
2088
3292
  export const importMapStyleEndpointMapsImportPost = (options) => (options.client ?? client).post({
2089
- 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
+ ],
2090
3302
  url: '/maps/import',
2091
3303
  ...options,
2092
3304
  headers: {
@@ -2109,7 +3321,15 @@ export const importMapStyleEndpointMapsImportPost = (options) => (options.client
2109
3321
  * layers the token's scope authorizes (SEC-022 capability posture).
2110
3322
  */
2111
3323
  export const getSharedMapEndpointMapsSharedTokenGet = (options) => (options.client ?? client).get({
2112
- 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
+ ],
2113
3333
  url: '/maps/shared/{token}',
2114
3334
  ...options
2115
3335
  });
@@ -2131,7 +3351,15 @@ export const getGeolensSpritePngEndpointMapsSpritesGeolensPngGet = (options) =>
2131
3351
  * Delete a map. Only the owner or an admin can delete.
2132
3352
  */
2133
3353
  export const deleteMapEndpointMapsMapIdDelete = (options) => (options.client ?? client).delete({
2134
- 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
+ ],
2135
3363
  url: '/maps/{map_id}',
2136
3364
  ...options
2137
3365
  });
@@ -2141,7 +3369,15 @@ export const deleteMapEndpointMapsMapIdDelete = (options) => (options.client ??
2141
3369
  * Get a single map with its layers.
2142
3370
  */
2143
3371
  export const getMapEndpointMapsMapIdGet = (options) => (options.client ?? client).get({
2144
- 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
+ ],
2145
3381
  url: '/maps/{map_id}',
2146
3382
  ...options
2147
3383
  });
@@ -2151,7 +3387,15 @@ export const getMapEndpointMapsMapIdGet = (options) => (options.client ?? client
2151
3387
  * Update a map's metadata and/or replace its layers.
2152
3388
  */
2153
3389
  export const updateMapEndpointMapsMapIdPut = (options) => (options.client ?? client).put({
2154
- 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
+ ],
2155
3399
  url: '/maps/{map_id}',
2156
3400
  ...options,
2157
3401
  headers: {
@@ -2165,7 +3409,15 @@ export const updateMapEndpointMapsMapIdPut = (options) => (options.client ?? cli
2165
3409
  * Return server-confirmed route access for the map viewer gate.
2166
3410
  */
2167
3411
  export const getMapAccessEndpointMapsMapIdAccessGet = (options) => (options.client ?? client).get({
2168
- 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
+ ],
2169
3421
  url: '/maps/{map_id}/access/',
2170
3422
  ...options
2171
3423
  });
@@ -2175,7 +3427,15 @@ export const getMapAccessEndpointMapsMapIdAccessGet = (options) => (options.clie
2175
3427
  * Fork a map with RBAC-filtered layers. Any authenticated user can fork.
2176
3428
  */
2177
3429
  export const duplicateMapEndpointMapsMapIdDuplicatePost = (options) => (options.client ?? client).post({
2178
- 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
+ ],
2179
3439
  url: '/maps/{map_id}/duplicate/',
2180
3440
  ...options
2181
3441
  });
@@ -2185,7 +3445,15 @@ export const duplicateMapEndpointMapsMapIdDuplicatePost = (options) => (options.
2185
3445
  * List all embed tokens for a map.
2186
3446
  */
2187
3447
  export const listEmbedTokensEndpointMapsMapIdEmbedTokensGet = (options) => (options.client ?? client).get({
2188
- 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
+ ],
2189
3457
  url: '/maps/{map_id}/embed-tokens/',
2190
3458
  ...options
2191
3459
  });
@@ -2198,7 +3466,15 @@ export const listEmbedTokensEndpointMapsMapIdEmbedTokensGet = (options) => (opti
2198
3466
  * and non-empty origin restrictions require advanced sharing controls.
2199
3467
  */
2200
3468
  export const createEmbedTokenEndpointMapsMapIdEmbedTokensPost = (options) => (options.client ?? client).post({
2201
- 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
+ ],
2202
3478
  url: '/maps/{map_id}/embed-tokens/',
2203
3479
  ...options,
2204
3480
  headers: {
@@ -2212,7 +3488,15 @@ export const createEmbedTokenEndpointMapsMapIdEmbedTokensPost = (options) => (op
2212
3488
  * Revoke an embed token.
2213
3489
  */
2214
3490
  export const revokeEmbedTokenEndpointMapsMapIdEmbedTokensTokenIdDelete = (options) => (options.client ?? client).delete({
2215
- 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
+ ],
2216
3500
  url: '/maps/{map_id}/embed-tokens/{token_id}/',
2217
3501
  ...options
2218
3502
  });
@@ -2224,7 +3508,15 @@ export const revokeEmbedTokenEndpointMapsMapIdEmbedTokensTokenIdDelete = (option
2224
3508
  * Null clears restrictions. Non-empty origin restrictions require advanced sharing controls.
2225
3509
  */
2226
3510
  export const updateEmbedTokenEndpointMapsMapIdEmbedTokensTokenIdPatch = (options) => (options.client ?? client).patch({
2227
- 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
+ ],
2228
3520
  url: '/maps/{map_id}/embed-tokens/{token_id}/',
2229
3521
  ...options,
2230
3522
  headers: {
@@ -2238,7 +3530,15 @@ export const updateEmbedTokenEndpointMapsMapIdEmbedTokensTokenIdPatch = (options
2238
3530
  * Return recent builder edit history for a map.
2239
3531
  */
2240
3532
  export const getMapHistoryEndpointMapsMapIdHistoryGet = (options) => (options.client ?? client).get({
2241
- 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
+ ],
2242
3542
  url: '/maps/{map_id}/history',
2243
3543
  ...options
2244
3544
  });
@@ -2257,7 +3557,15 @@ export const getMapHistoryEndpointMapsMapIdHistoryGet = (options) => (options.cl
2257
3557
  * the trailing-slash form is a hidden alias.
2258
3558
  */
2259
3559
  export const patchMapLayersEndpointMapsMapIdLayersPatch = (options) => (options.client ?? client).patch({
2260
- 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
+ ],
2261
3569
  url: '/maps/{map_id}/layers',
2262
3570
  ...options,
2263
3571
  headers: {
@@ -2280,7 +3588,15 @@ export const patchMapLayersEndpointMapsMapIdLayersPatch = (options) => (options.
2280
3588
  * hidden alias for callers that send the slash.
2281
3589
  */
2282
3590
  export const addLayerEndpointMapsMapIdLayersPost = (options) => (options.client ?? client).post({
2283
- 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
+ ],
2284
3600
  url: '/maps/{map_id}/layers',
2285
3601
  ...options,
2286
3602
  headers: {
@@ -2302,7 +3618,15 @@ export const addLayerEndpointMapsMapIdLayersPost = (options) => (options.client
2302
3618
  * responsibility if all ids fail.
2303
3619
  */
2304
3620
  export const bulkDeleteLayersEndpointMapsMapIdLayersBulkDeletePost = (options) => (options.client ?? client).post({
2305
- 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
+ ],
2306
3630
  url: '/maps/{map_id}/layers/bulk-delete',
2307
3631
  ...options,
2308
3632
  headers: {
@@ -2316,7 +3640,15 @@ export const bulkDeleteLayersEndpointMapsMapIdLayersBulkDeletePost = (options) =
2316
3640
  * Remove a layer from a map.
2317
3641
  */
2318
3642
  export const removeLayerEndpointMapsMapIdLayersLayerIdDelete = (options) => (options.client ?? client).delete({
2319
- 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
+ ],
2320
3652
  url: '/maps/{map_id}/layers/{layer_id}',
2321
3653
  ...options
2322
3654
  });
@@ -2330,7 +3662,15 @@ export const removeLayerEndpointMapsMapIdLayersLayerIdDelete = (options) => (opt
2330
3662
  * but reads ``og_image_uri`` and uses the ``maps/og-images/`` key space.
2331
3663
  */
2332
3664
  export const getOgImageMapsMapIdOgImageGet = (options) => (options.client ?? client).get({
2333
- 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
+ ],
2334
3674
  url: '/maps/{map_id}/og-image/',
2335
3675
  ...options
2336
3676
  });
@@ -2351,7 +3691,15 @@ export const getOgImageMapsMapIdOgImageGet = (options) => (options.client ?? cli
2351
3691
  * contract. Auth and PIL-verify rules are identical to upload_thumbnail.
2352
3692
  */
2353
3693
  export const uploadOgImageMapsMapIdOgImagePut = (options) => (options.client ?? client).put({
2354
- 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
+ ],
2355
3703
  url: '/maps/{map_id}/og-image/',
2356
3704
  ...options,
2357
3705
  headers: {
@@ -2365,7 +3713,15 @@ export const uploadOgImageMapsMapIdOgImagePut = (options) => (options.client ??
2365
3713
  * Revoke share token(s) for a map. Owner or admin only.
2366
3714
  */
2367
3715
  export const revokeMapShareEndpointMapsMapIdShareDelete = (options) => (options.client ?? client).delete({
2368
- 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
+ ],
2369
3725
  url: '/maps/{map_id}/share/',
2370
3726
  ...options
2371
3727
  });
@@ -2375,7 +3731,15 @@ export const revokeMapShareEndpointMapsMapIdShareDelete = (options) => (options.
2375
3731
  * Return the active share token for a map, or null if none exists.
2376
3732
  */
2377
3733
  export const getMapShareTokenEndpointMapsMapIdShareGet = (options) => (options.client ?? client).get({
2378
- 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
+ ],
2379
3743
  url: '/maps/{map_id}/share/',
2380
3744
  ...options
2381
3745
  });
@@ -2384,10 +3748,18 @@ export const getMapShareTokenEndpointMapsMapIdShareGet = (options) => (options.c
2384
3748
  *
2385
3749
  * Update expiration on an existing share token. Owner or admin only.
2386
3750
  *
2387
- * Null clears expiration.
3751
+ * A fixed-day preset is available in every edition. Null clears expiration.
2388
3752
  */
2389
3753
  export const updateMapShareTokenEndpointMapsMapIdSharePatch = (options) => (options.client ?? client).patch({
2390
- 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
+ ],
2391
3763
  url: '/maps/{map_id}/share/',
2392
3764
  ...options,
2393
3765
  headers: {
@@ -2401,7 +3773,15 @@ export const updateMapShareTokenEndpointMapsMapIdSharePatch = (options) => (opti
2401
3773
  * Create or retrieve a share token for a public map.
2402
3774
  */
2403
3775
  export const shareMapEndpointMapsMapIdSharePost = (options) => (options.client ?? client).post({
2404
- 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
+ ],
2405
3785
  url: '/maps/{map_id}/share/',
2406
3786
  ...options,
2407
3787
  headers: {
@@ -2415,7 +3795,15 @@ export const shareMapEndpointMapsMapIdSharePost = (options) => (options.client ?
2415
3795
  * Export a saved map as a complete MapLibre style JSON document.
2416
3796
  */
2417
3797
  export const exportMapStyleEndpointMapsMapIdStyleJsonGet = (options) => (options.client ?? client).get({
2418
- 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
+ ],
2419
3807
  url: '/maps/{map_id}/style.json',
2420
3808
  ...options
2421
3809
  });
@@ -2425,7 +3813,15 @@ export const exportMapStyleEndpointMapsMapIdStyleJsonGet = (options) => (options
2425
3813
  * Serve map thumbnail image from storage (visibility-checked).
2426
3814
  */
2427
3815
  export const getThumbnailMapsMapIdThumbnailGet = (options) => (options.client ?? client).get({
2428
- 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
+ ],
2429
3825
  url: '/maps/{map_id}/thumbnail/',
2430
3826
  ...options
2431
3827
  });
@@ -2438,7 +3834,15 @@ export const getThumbnailMapsMapIdThumbnailGet = (options) => (options.client ??
2438
3834
  * bytes to the configured storage provider, and stores the storage key.
2439
3835
  */
2440
3836
  export const uploadThumbnailMapsMapIdThumbnailPut = (options) => (options.client ?? client).put({
2441
- 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
+ ],
2442
3846
  url: '/maps/{map_id}/thumbnail/',
2443
3847
  ...options,
2444
3848
  headers: {
@@ -2452,7 +3856,15 @@ export const uploadThumbnailMapsMapIdThumbnailPut = (options) => (options.client
2452
3856
  * Check if a map has non-public datasets. Informational only.
2453
3857
  */
2454
3858
  export const visibilityCheckEndpointMapsMapIdVisibilityCheckGet = (options) => (options.client ?? client).get({
2455
- 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
+ ],
2456
3868
  url: '/maps/{map_id}/visibility-check/',
2457
3869
  ...options
2458
3870
  });
@@ -2462,7 +3874,15 @@ export const visibilityCheckEndpointMapsMapIdVisibilityCheckGet = (options) => (
2462
3874
  * List all contacts for a record.
2463
3875
  */
2464
3876
  export const listContactsEndpointRecordsRecordIdContactsGet = (options) => (options.client ?? client).get({
2465
- 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
+ ],
2466
3886
  url: '/records/{record_id}/contacts/',
2467
3887
  ...options
2468
3888
  });
@@ -2472,7 +3892,15 @@ export const listContactsEndpointRecordsRecordIdContactsGet = (options) => (opti
2472
3892
  * Create a new contact for a record.
2473
3893
  */
2474
3894
  export const createContactEndpointRecordsRecordIdContactsPost = (options) => (options.client ?? client).post({
2475
- 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
+ ],
2476
3904
  url: '/records/{record_id}/contacts/',
2477
3905
  ...options,
2478
3906
  headers: {
@@ -2486,7 +3914,15 @@ export const createContactEndpointRecordsRecordIdContactsPost = (options) => (op
2486
3914
  * Delete a contact.
2487
3915
  */
2488
3916
  export const deleteContactEndpointRecordsRecordIdContactsContactIdDelete = (options) => (options.client ?? client).delete({
2489
- 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
+ ],
2490
3926
  url: '/records/{record_id}/contacts/{contact_id}/',
2491
3927
  ...options
2492
3928
  });
@@ -2496,7 +3932,15 @@ export const deleteContactEndpointRecordsRecordIdContactsContactIdDelete = (opti
2496
3932
  * Update a contact.
2497
3933
  */
2498
3934
  export const updateContactEndpointRecordsRecordIdContactsContactIdPatch = (options) => (options.client ?? client).patch({
2499
- 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
+ ],
2500
3944
  url: '/records/{record_id}/contacts/{contact_id}/',
2501
3945
  ...options,
2502
3946
  headers: {
@@ -2510,7 +3954,15 @@ export const updateContactEndpointRecordsRecordIdContactsContactIdPatch = (optio
2510
3954
  * List all distributions for a record.
2511
3955
  */
2512
3956
  export const listDistributionsEndpointRecordsRecordIdDistributionsGet = (options) => (options.client ?? client).get({
2513
- 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
+ ],
2514
3966
  url: '/records/{record_id}/distributions/',
2515
3967
  ...options
2516
3968
  });
@@ -2520,7 +3972,15 @@ export const listDistributionsEndpointRecordsRecordIdDistributionsGet = (options
2520
3972
  * Create a manual distribution for a record.
2521
3973
  */
2522
3974
  export const createDistributionEndpointRecordsRecordIdDistributionsPost = (options) => (options.client ?? client).post({
2523
- 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
+ ],
2524
3984
  url: '/records/{record_id}/distributions/',
2525
3985
  ...options,
2526
3986
  headers: {
@@ -2534,7 +3994,15 @@ export const createDistributionEndpointRecordsRecordIdDistributionsPost = (optio
2534
3994
  * Delete a distribution (manual only; auto-generated distributions are immutable).
2535
3995
  */
2536
3996
  export const deleteDistributionEndpointRecordsRecordIdDistributionsDistributionIdDelete = (options) => (options.client ?? client).delete({
2537
- 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
+ ],
2538
4006
  url: '/records/{record_id}/distributions/{distribution_id}/',
2539
4007
  ...options
2540
4008
  });
@@ -2544,7 +4012,15 @@ export const deleteDistributionEndpointRecordsRecordIdDistributionsDistributionI
2544
4012
  * Update a distribution (manual only; auto-generated distributions are immutable).
2545
4013
  */
2546
4014
  export const updateDistributionEndpointRecordsRecordIdDistributionsDistributionIdPatch = (options) => (options.client ?? client).patch({
2547
- 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
+ ],
2548
4024
  url: '/records/{record_id}/distributions/{distribution_id}/',
2549
4025
  ...options,
2550
4026
  headers: {
@@ -2558,7 +4034,15 @@ export const updateDistributionEndpointRecordsRecordIdDistributionsDistributionI
2558
4034
  * List all keywords for a record.
2559
4035
  */
2560
4036
  export const listKeywordsEndpointRecordsRecordIdKeywordsGet = (options) => (options.client ?? client).get({
2561
- 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
+ ],
2562
4046
  url: '/records/{record_id}/keywords/',
2563
4047
  ...options
2564
4048
  });
@@ -2568,7 +4052,15 @@ export const listKeywordsEndpointRecordsRecordIdKeywordsGet = (options) => (opti
2568
4052
  * Create a new keyword for a record.
2569
4053
  */
2570
4054
  export const createKeywordEndpointRecordsRecordIdKeywordsPost = (options) => (options.client ?? client).post({
2571
- 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
+ ],
2572
4064
  url: '/records/{record_id}/keywords/',
2573
4065
  ...options,
2574
4066
  headers: {
@@ -2582,17 +4074,91 @@ export const createKeywordEndpointRecordsRecordIdKeywordsPost = (options) => (op
2582
4074
  * Delete a keyword.
2583
4075
  */
2584
4076
  export const deleteKeywordEndpointRecordsRecordIdKeywordsKeywordIdDelete = (options) => (options.client ?? client).delete({
2585
- 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
+ ],
2586
4086
  url: '/records/{record_id}/keywords/{keyword_id}/',
2587
4087
  ...options
2588
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
+ });
2589
4147
  /**
2590
4148
  * Search Datasets Endpoint
2591
4149
  *
2592
4150
  * Search datasets with text, spatial, and faceted filters.
2593
4151
  */
2594
4152
  export const searchDatasetsEndpointSearchDatasetsGet = (options) => (options?.client ?? client).get({
2595
- 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
+ ],
2596
4162
  url: '/search/datasets/',
2597
4163
  ...options,
2598
4164
  headers: {
@@ -2606,7 +4172,15 @@ export const searchDatasetsEndpointSearchDatasetsGet = (options) => (options?.cl
2606
4172
  * Return record_type facet counts for the given filters.
2607
4173
  */
2608
4174
  export const searchFacetsEndpointSearchFacetsGet = (options) => (options?.client ?? client).get({
2609
- 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
+ ],
2610
4184
  url: '/search/facets/',
2611
4185
  ...options
2612
4186
  });
@@ -2616,7 +4190,15 @@ export const searchFacetsEndpointSearchFacetsGet = (options) => (options?.client
2616
4190
  * List saved searches for the authenticated user.
2617
4191
  */
2618
4192
  export const listSavedSearchesEndpointSearchSavedGet = (options) => (options?.client ?? client).get({
2619
- 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
+ ],
2620
4202
  url: '/search/saved/',
2621
4203
  ...options
2622
4204
  });
@@ -2626,7 +4208,15 @@ export const listSavedSearchesEndpointSearchSavedGet = (options) => (options?.cl
2626
4208
  * Save a search query with a name for later reuse.
2627
4209
  */
2628
4210
  export const createSavedSearchEndpointSearchSavedPost = (options) => (options.client ?? client).post({
2629
- 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
+ ],
2630
4220
  url: '/search/saved/',
2631
4221
  ...options,
2632
4222
  headers: {
@@ -2640,7 +4230,15 @@ export const createSavedSearchEndpointSearchSavedPost = (options) => (options.cl
2640
4230
  * Delete a saved search.
2641
4231
  */
2642
4232
  export const deleteSavedSearchEndpointSearchSavedSearchIdDelete = (options) => (options.client ?? client).delete({
2643
- 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
+ ],
2644
4242
  url: '/search/saved/{search_id}',
2645
4243
  ...options
2646
4244
  });
@@ -2650,10 +4248,83 @@ export const deleteSavedSearchEndpointSearchSavedSearchIdDelete = (options) => (
2650
4248
  * Get a single saved search by ID.
2651
4249
  */
2652
4250
  export const getSavedSearchEndpointSearchSavedSearchIdGet = (options) => (options.client ?? client).get({
2653
- 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
+ ],
2654
4260
  url: '/search/saved/{search_id}',
2655
4261
  ...options
2656
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
+ });
2657
4328
  /**
2658
4329
  * Preview Service Layer
2659
4330
  *
@@ -2664,7 +4335,15 @@ export const getSavedSearchEndpointSearchSavedSearchIdGet = (options) => (option
2664
4335
  * ready for the existing commit flow.
2665
4336
  */
2666
4337
  export const previewServiceLayerServicesPreviewPost = (options) => (options.client ?? client).post({
2667
- 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
+ ],
2668
4347
  url: '/services/preview/',
2669
4348
  ...options,
2670
4349
  headers: {
@@ -2681,7 +4360,15 @@ export const previewServiceLayerServicesPreviewPost = (options) => (options.clie
2681
4360
  * service, and returns a unified layer list. All attempts are audit-logged.
2682
4361
  */
2683
4362
  export const probeServiceUrlServicesProbePost = (options) => (options.client ?? client).post({
2684
- 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
+ ],
2685
4372
  url: '/services/probe/',
2686
4373
  ...options,
2687
4374
  headers: {
@@ -2695,7 +4382,15 @@ export const probeServiceUrlServicesProbePost = (options) => (options.client ??
2695
4382
  * List collections from a connected STAC API.
2696
4383
  */
2697
4384
  export const stacCollectionsServicesStacCollectionsPost = (options) => (options.client ?? client).post({
2698
- 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
+ ],
2699
4394
  url: '/services/stac/collections',
2700
4395
  ...options,
2701
4396
  headers: {
@@ -2709,7 +4404,15 @@ export const stacCollectionsServicesStacCollectionsPost = (options) => (options.
2709
4404
  * Connect to a STAC API and validate the endpoint.
2710
4405
  */
2711
4406
  export const stacConnectServicesStacConnectPost = (options) => (options.client ?? client).post({
2712
- 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
+ ],
2713
4416
  url: '/services/stac/connect',
2714
4417
  ...options,
2715
4418
  headers: {
@@ -2727,7 +4430,15 @@ export const stacConnectServicesStacConnectPost = (options) => (options.client ?
2727
4430
  * remote source — no file download required.
2728
4431
  */
2729
4432
  export const stacImportServicesStacImportPost = (options) => (options.client ?? client).post({
2730
- 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
+ ],
2731
4442
  url: '/services/stac/import',
2732
4443
  ...options,
2733
4444
  headers: {
@@ -2741,7 +4452,15 @@ export const stacImportServicesStacImportPost = (options) => (options.client ??
2741
4452
  * Search items in a STAC API with spatial/temporal filters.
2742
4453
  */
2743
4454
  export const stacSearchServicesStacSearchPost = (options) => (options.client ?? client).post({
2744
- 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
+ ],
2745
4464
  url: '/services/stac/search',
2746
4465
  ...options,
2747
4466
  headers: {
@@ -2755,7 +4474,15 @@ export const stacSearchServicesStacSearchPost = (options) => (options.client ??
2755
4474
  * Update one or more settings (admin only). Returns updated settings.
2756
4475
  */
2757
4476
  export const updateSettingsSettingsPut = (options) => (options.client ?? client).put({
2758
- 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
+ ],
2759
4486
  url: '/settings/',
2760
4487
  ...options,
2761
4488
  headers: {
@@ -2769,7 +4496,15 @@ export const updateSettingsSettingsPut = (options) => (options.client ?? client)
2769
4496
  * Return all settings grouped by tab with source indicators (admin only).
2770
4497
  */
2771
4498
  export const getAllSettingsSettingsAllGet = (options) => (options?.client ?? client).get({
2772
- 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
+ ],
2773
4508
  url: '/settings/all/',
2774
4509
  ...options
2775
4510
  });
@@ -2779,7 +4514,15 @@ export const getAllSettingsSettingsAllGet = (options) => (options?.client ?? cli
2779
4514
  * Return which LLM API keys are configured (without exposing values).
2780
4515
  */
2781
4516
  export const getApiKeyStatusSettingsApiKeyStatusGet = (options) => (options?.client ?? client).get({
2782
- 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
+ ],
2783
4526
  url: '/settings/api-key-status/',
2784
4527
  ...options
2785
4528
  });
@@ -2824,16 +4567,53 @@ export const getConfigModeSettingsConfigModeGet = (options) => (options?.client
2824
4567
  * Probe the configured embedding model and return its output dimensions.
2825
4568
  */
2826
4569
  export const detectEmbeddingDimsSettingsDetectEmbeddingDimsPost = (options) => (options?.client ?? client).post({
2827
- 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
+ ],
2828
4579
  url: '/settings/detect-embedding-dims/',
2829
4580
  ...options
2830
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 });
2831
4588
  /**
2832
4589
  * Get Enabled Plugins
2833
4590
  *
2834
4591
  * Return enabled plugin IDs. null = no restriction (all shown), [] = none, [...ids] = only those.
2835
4592
  */
2836
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
+ });
2837
4617
  /**
2838
4618
  * Get Feature Flags
2839
4619
  *
@@ -2856,7 +4636,15 @@ export const getMapDefaultsSettingsMapDefaultsGet = (options) => (options?.clien
2856
4636
  * (NOTIF-05 / T-1229-09).
2857
4637
  */
2858
4638
  export const getNotificationStatusSettingsNotificationsStatusGet = (options) => (options?.client ?? client).get({
2859
- 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
+ ],
2860
4648
  url: '/settings/notifications/status/',
2861
4649
  ...options
2862
4650
  });
@@ -2874,7 +4662,15 @@ export const getNotificationStatusSettingsNotificationsStatusGet = (options) =>
2874
4662
  * NotificationTestChannelResult for display in the admin UI.
2875
4663
  */
2876
4664
  export const sendTestNotificationSettingsNotificationsTestPost = (options) => (options?.client ?? client).post({
2877
- 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
+ ],
2878
4674
  url: '/settings/notifications/test/',
2879
4675
  ...options
2880
4676
  });
@@ -2884,7 +4680,15 @@ export const sendTestNotificationSettingsNotificationsTestPost = (options) => (o
2884
4680
  * List all OAuth providers (admin only).
2885
4681
  */
2886
4682
  export const listOauthProvidersSettingsOauthProvidersGet = (options) => (options?.client ?? client).get({
2887
- 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
+ ],
2888
4692
  url: '/settings/oauth-providers/',
2889
4693
  ...options
2890
4694
  });
@@ -2898,7 +4702,15 @@ export const listOauthProvidersSettingsOauthProvidersGet = (options) => (options
2898
4702
  * in the request body (SAML-12 / Pitfall 9 / T-217-03-AUDIT-LEAK).
2899
4703
  */
2900
4704
  export const createOauthProviderSettingsOauthProvidersPost = (options) => (options.client ?? client).post({
2901
- 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
+ ],
2902
4714
  url: '/settings/oauth-providers/',
2903
4715
  ...options,
2904
4716
  headers: {
@@ -2917,7 +4729,15 @@ export const createOauthProviderSettingsOauthProvidersPost = (options) => (optio
2917
4729
  * delete events too).
2918
4730
  */
2919
4731
  export const deleteOauthProviderSettingsOauthProvidersProviderIdDelete = (options) => (options.client ?? client).delete({
2920
- 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
+ ],
2921
4741
  url: '/settings/oauth-providers/{provider_id}',
2922
4742
  ...options
2923
4743
  });
@@ -2933,7 +4753,15 @@ export const deleteOauthProviderSettingsOauthProvidersProviderIdDelete = (option
2933
4753
  * T-217-03-AUDIT-LEAK HIGH severity).
2934
4754
  */
2935
4755
  export const updateOauthProviderSettingsOauthProvidersProviderIdPut = (options) => (options.client ?? client).put({
2936
- 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
+ ],
2937
4765
  url: '/settings/oauth-providers/{provider_id}',
2938
4766
  ...options,
2939
4767
  headers: {
@@ -2947,7 +4775,15 @@ export const updateOauthProviderSettingsOauthProvidersProviderIdPut = (options)
2947
4775
  * Reset one or more settings to their defaults (admin only). Returns updated settings.
2948
4776
  */
2949
4777
  export const resetSettingsSettingsResetPost = (options) => (options.client ?? client).post({
2950
- 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
+ ],
2951
4787
  url: '/settings/reset/',
2952
4788
  ...options,
2953
4789
  headers: {
@@ -2985,7 +4821,15 @@ export const getCollectionStacCollectionsCollectionIdGet = (options) => (options
2985
4821
  * List STAC Items within a collection.
2986
4822
  */
2987
4823
  export const getCollectionItemsStacCollectionsCollectionIdItemsGet = (options) => (options.client ?? client).get({
2988
- 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
+ ],
2989
4833
  url: '/stac/collections/{collection_id}/items',
2990
4834
  ...options
2991
4835
  });
@@ -2995,7 +4839,15 @@ export const getCollectionItemsStacCollectionsCollectionIdItemsGet = (options) =
2995
4839
  * Get a single STAC Item within a collection.
2996
4840
  */
2997
4841
  export const getCollectionItemStacCollectionsCollectionIdItemsItemIdGet = (options) => (options.client ?? client).get({
2998
- 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
+ ],
2999
4851
  url: '/stac/collections/{collection_id}/items/{item_id}',
3000
4852
  ...options
3001
4853
  });
@@ -3011,7 +4863,15 @@ export const conformanceStacConformanceGet = (options) => (options?.client ?? cl
3011
4863
  * Get a single STAC Item by dataset ID.
3012
4864
  */
3013
4865
  export const getItemStacItemsItemIdGet = (options) => (options.client ?? client).get({
3014
- 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
+ ],
3015
4875
  url: '/stac/items/{item_id}',
3016
4876
  ...options
3017
4877
  });
@@ -3021,7 +4881,15 @@ export const getItemStacItemsItemIdGet = (options) => (options.client ?? client)
3021
4881
  * STAC Item Search (GET).
3022
4882
  */
3023
4883
  export const searchGetStacSearchGet = (options) => (options?.client ?? client).get({
3024
- 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
+ ],
3025
4893
  url: '/stac/search',
3026
4894
  ...options
3027
4895
  });
@@ -3031,7 +4899,15 @@ export const searchGetStacSearchGet = (options) => (options?.client ?? client).g
3031
4899
  * STAC Item Search (POST with JSON body).
3032
4900
  */
3033
4901
  export const searchPostStacSearchPost = (options) => (options.client ?? client).post({
3034
- 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
+ ],
3035
4911
  url: '/stac/search',
3036
4912
  ...options,
3037
4913
  headers: {
@@ -3055,7 +4931,15 @@ export const searchPostStacSearchPost = (options) => (options.client ?? client).
3055
4931
  * styling and popups keep working on the server-cluster path.
3056
4932
  */
3057
4933
  export const clusterTileEndpointTilesClustersTablePathZXYPbfGet = (options) => (options.client ?? client).get({
3058
- 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
+ ],
3059
4943
  url: '/tiles/clusters/{table_path}/{z}/{x}/{y}.pbf',
3060
4944
  ...options
3061
4945
  });
@@ -3074,7 +4958,15 @@ export const clusterTileEndpointTilesClustersTablePathZXYPbfGet = (options) => (
3074
4958
  * 404 if dataset not found, not a raster, or has no raster asset
3075
4959
  */
3076
4960
  export const rasterAuthCheckTilesRasterAuthCheckGet = (options) => (options.client ?? client).get({
3077
- 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
+ ],
3078
4970
  url: '/tiles/raster-auth-check/',
3079
4971
  ...options
3080
4972
  });
@@ -3105,7 +4997,15 @@ export const rasterAuthCheckTilesRasterAuthCheckGet = (options) => (options.clie
3105
4997
  * Must be > 0.
3106
4998
  */
3107
4999
  export const rasterTileProxyTilesRasterProxyDatasetIdZXYFmtGet = (options) => (options.client ?? client).get({
3108
- 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
+ ],
3109
5009
  url: '/tiles/raster-proxy/{dataset_id}/{z}/{x}/{y}.{fmt}',
3110
5010
  ...options
3111
5011
  });
@@ -3123,7 +5023,15 @@ export const rasterTileProxyTilesRasterProxyDatasetIdZXYFmtGet = (options) => (o
3123
5023
  * Private/restricted datasets require authentication and RBAC checks.
3124
5024
  */
3125
5025
  export const getTileTokenTilesTokenDatasetIdGet = (options) => (options.client ?? client).get({
3126
- 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
+ ],
3127
5035
  url: '/tiles/token/{dataset_id}/',
3128
5036
  ...options
3129
5037
  });
@@ -3146,7 +5054,15 @@ export const getTileTokenTilesTokenDatasetIdGet = (options) => (options.client ?
3146
5054
  * builds its raster-dem source from the real bounds/maxzoom descriptor.
3147
5055
  */
3148
5056
  export const getTileTokensBatchTilesTokensPost = (options) => (options.client ?? client).post({
3149
- 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
+ ],
3150
5066
  url: '/tiles/tokens/',
3151
5067
  ...options,
3152
5068
  headers: {
@@ -3174,7 +5090,15 @@ export const getTileTokensBatchTilesTokensPost = (options) => (options.client ??
3174
5090
  * REST access to.
3175
5091
  */
3176
5092
  export const tileEndpointTilesTablePathZXYPbfGet = (options) => (options.client ?? client).get({
3177
- 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
+ ],
3178
5102
  url: '/tiles/{table_path}/{z}/{x}/{y}.pbf',
3179
5103
  ...options
3180
5104
  });