@hasna/capacity 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +74 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.js +6663 -0
- package/dist/domain/authority-evidence.d.ts +198 -0
- package/dist/domain/catalog.d.ts +65 -0
- package/dist/domain/counter.d.ts +7 -0
- package/dist/domain/eligibility.d.ts +4 -0
- package/dist/domain/ids.d.ts +47 -0
- package/dist/domain/invariants.d.ts +4 -0
- package/dist/domain/models.d.ts +300 -0
- package/dist/domain/native-subscription.d.ts +211 -0
- package/dist/domain/online-generation-receipt.d.ts +497 -0
- package/dist/domain/state.d.ts +19 -0
- package/dist/errors.d.ts +26 -0
- package/dist/http/handler.d.ts +3 -0
- package/dist/http/openapi.d.ts +1070 -0
- package/dist/http/stores.d.ts +20 -0
- package/dist/http/types.d.ts +141 -0
- package/dist/index.d.ts +56 -0
- package/dist/index.js +14909 -0
- package/dist/sdk/index.d.ts +8 -0
- package/dist/sdk/local.d.ts +5 -0
- package/dist/sdk/remote.d.ts +2 -0
- package/dist/sdk/types.d.ts +107 -0
- package/dist/serialization/dto.d.ts +13 -0
- package/dist/serialization/json.d.ts +7 -0
- package/dist/storage/credential-use-authorizer.d.ts +9 -0
- package/dist/storage/credential-verifier.d.ts +13 -0
- package/dist/storage/effect-dispatch.d.ts +278 -0
- package/dist/storage/file-recovery-ledger.d.ts +66 -0
- package/dist/storage/memory.d.ts +47 -0
- package/dist/storage/native-revocation.d.ts +10 -0
- package/dist/storage/postgres-config.d.ts +25 -0
- package/dist/storage/postgres-migrations.d.ts +10 -0
- package/dist/storage/postgres-migrator.d.ts +12 -0
- package/dist/storage/postgres.d.ts +90 -0
- package/dist/storage/recovery.d.ts +11 -0
- package/dist/storage/repository.d.ts +310 -0
- package/dist/storage/shared.d.ts +18 -0
- package/dist/storage/sqlite-migrations.d.ts +11 -0
- package/dist/storage/sqlite.d.ts +51 -0
- package/dist/version.d.ts +2 -0
- package/package.json +49 -0
|
@@ -0,0 +1,1070 @@
|
|
|
1
|
+
export declare const ACCOUNTS_CAPACITY_OPENAPI: Readonly<{
|
|
2
|
+
readonly openapi: "3.1.0";
|
|
3
|
+
readonly info: {
|
|
4
|
+
readonly title: "Hasna Accounts Capacity API";
|
|
5
|
+
readonly version: "1.0.0";
|
|
6
|
+
readonly description: "Owner-scoped, non-SaaS Accounts capacity metadata. This API does not issue leases or expose credential material.";
|
|
7
|
+
};
|
|
8
|
+
readonly jsonSchemaDialect: "https://json-schema.org/draft/2020-12/schema";
|
|
9
|
+
readonly servers: readonly [{
|
|
10
|
+
readonly url: "https://accounts.capacity.hasna.internal";
|
|
11
|
+
}];
|
|
12
|
+
readonly tags: readonly [{
|
|
13
|
+
readonly name: "catalog";
|
|
14
|
+
}, {
|
|
15
|
+
readonly name: "capacity";
|
|
16
|
+
}, {
|
|
17
|
+
readonly name: "internal";
|
|
18
|
+
}, {
|
|
19
|
+
readonly name: "operations";
|
|
20
|
+
}];
|
|
21
|
+
readonly paths: {
|
|
22
|
+
readonly "/v1/auth-capsules/{id}/bootstrap-intents": {
|
|
23
|
+
readonly post: {
|
|
24
|
+
readonly operationId: "createBootstrapIntent";
|
|
25
|
+
readonly security: readonly Readonly<Record<string, readonly string[]>>[];
|
|
26
|
+
readonly parameters: readonly [{
|
|
27
|
+
readonly name: "id";
|
|
28
|
+
readonly in: "path";
|
|
29
|
+
readonly required: true;
|
|
30
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
31
|
+
}, {
|
|
32
|
+
readonly name: "Idempotency-Key";
|
|
33
|
+
readonly in: "header";
|
|
34
|
+
readonly required: true;
|
|
35
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
36
|
+
}, {
|
|
37
|
+
readonly name: "If-Match";
|
|
38
|
+
readonly in: "header";
|
|
39
|
+
readonly required: true;
|
|
40
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
41
|
+
}];
|
|
42
|
+
readonly requestBody: Readonly<Record<string, unknown>>;
|
|
43
|
+
readonly responses: {
|
|
44
|
+
readonly "400": {
|
|
45
|
+
readonly description: "Invalid closed request";
|
|
46
|
+
readonly content: {
|
|
47
|
+
readonly "application/json": {
|
|
48
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
readonly "403": {
|
|
53
|
+
readonly description: "Authentication, scope, or owner denied";
|
|
54
|
+
readonly content: {
|
|
55
|
+
readonly "application/json": {
|
|
56
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
readonly "404": {
|
|
61
|
+
readonly description: "Not found, including cross-owner identifiers";
|
|
62
|
+
readonly content: {
|
|
63
|
+
readonly "application/json": {
|
|
64
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
readonly "409": {
|
|
69
|
+
readonly description: "Revision or idempotency conflict";
|
|
70
|
+
readonly content: {
|
|
71
|
+
readonly "application/json": {
|
|
72
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
readonly "422": {
|
|
77
|
+
readonly description: "Policy denied";
|
|
78
|
+
readonly content: {
|
|
79
|
+
readonly "application/json": {
|
|
80
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
81
|
+
};
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
readonly "503": {
|
|
85
|
+
readonly description: "Required authority unavailable";
|
|
86
|
+
readonly content: {
|
|
87
|
+
readonly "application/json": {
|
|
88
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
readonly "201": Readonly<Record<string, unknown>>;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
readonly "/v1/auth-capsules/{id}/bootstrap-intents/{intentId}": {
|
|
97
|
+
readonly get: {
|
|
98
|
+
readonly operationId: "getBootstrapIntent";
|
|
99
|
+
readonly security: readonly Readonly<Record<string, readonly string[]>>[];
|
|
100
|
+
readonly parameters: readonly [{
|
|
101
|
+
readonly name: "id";
|
|
102
|
+
readonly in: "path";
|
|
103
|
+
readonly required: true;
|
|
104
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
105
|
+
}, {
|
|
106
|
+
readonly name: "intentId";
|
|
107
|
+
readonly in: "path";
|
|
108
|
+
readonly required: true;
|
|
109
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
110
|
+
}];
|
|
111
|
+
readonly responses: {
|
|
112
|
+
readonly "400": {
|
|
113
|
+
readonly description: "Invalid closed request";
|
|
114
|
+
readonly content: {
|
|
115
|
+
readonly "application/json": {
|
|
116
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
117
|
+
};
|
|
118
|
+
};
|
|
119
|
+
};
|
|
120
|
+
readonly "403": {
|
|
121
|
+
readonly description: "Authentication, scope, or owner denied";
|
|
122
|
+
readonly content: {
|
|
123
|
+
readonly "application/json": {
|
|
124
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
125
|
+
};
|
|
126
|
+
};
|
|
127
|
+
};
|
|
128
|
+
readonly "404": {
|
|
129
|
+
readonly description: "Not found, including cross-owner identifiers";
|
|
130
|
+
readonly content: {
|
|
131
|
+
readonly "application/json": {
|
|
132
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
133
|
+
};
|
|
134
|
+
};
|
|
135
|
+
};
|
|
136
|
+
readonly "409": {
|
|
137
|
+
readonly description: "Revision or idempotency conflict";
|
|
138
|
+
readonly content: {
|
|
139
|
+
readonly "application/json": {
|
|
140
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
};
|
|
144
|
+
readonly "422": {
|
|
145
|
+
readonly description: "Policy denied";
|
|
146
|
+
readonly content: {
|
|
147
|
+
readonly "application/json": {
|
|
148
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
149
|
+
};
|
|
150
|
+
};
|
|
151
|
+
};
|
|
152
|
+
readonly "503": {
|
|
153
|
+
readonly description: "Required authority unavailable";
|
|
154
|
+
readonly content: {
|
|
155
|
+
readonly "application/json": {
|
|
156
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
157
|
+
};
|
|
158
|
+
};
|
|
159
|
+
};
|
|
160
|
+
readonly "200": Readonly<Record<string, unknown>>;
|
|
161
|
+
};
|
|
162
|
+
};
|
|
163
|
+
};
|
|
164
|
+
readonly "/v1/credential-operations": {
|
|
165
|
+
readonly get: {
|
|
166
|
+
readonly operationId: "listCredentialOperations";
|
|
167
|
+
readonly security: readonly Readonly<Record<string, readonly string[]>>[];
|
|
168
|
+
readonly responses: {
|
|
169
|
+
readonly "400": {
|
|
170
|
+
readonly description: "Invalid closed request";
|
|
171
|
+
readonly content: {
|
|
172
|
+
readonly "application/json": {
|
|
173
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
174
|
+
};
|
|
175
|
+
};
|
|
176
|
+
};
|
|
177
|
+
readonly "403": {
|
|
178
|
+
readonly description: "Authentication, scope, or owner denied";
|
|
179
|
+
readonly content: {
|
|
180
|
+
readonly "application/json": {
|
|
181
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
182
|
+
};
|
|
183
|
+
};
|
|
184
|
+
};
|
|
185
|
+
readonly "404": {
|
|
186
|
+
readonly description: "Not found, including cross-owner identifiers";
|
|
187
|
+
readonly content: {
|
|
188
|
+
readonly "application/json": {
|
|
189
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
};
|
|
193
|
+
readonly "409": {
|
|
194
|
+
readonly description: "Revision or idempotency conflict";
|
|
195
|
+
readonly content: {
|
|
196
|
+
readonly "application/json": {
|
|
197
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
198
|
+
};
|
|
199
|
+
};
|
|
200
|
+
};
|
|
201
|
+
readonly "422": {
|
|
202
|
+
readonly description: "Policy denied";
|
|
203
|
+
readonly content: {
|
|
204
|
+
readonly "application/json": {
|
|
205
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
206
|
+
};
|
|
207
|
+
};
|
|
208
|
+
};
|
|
209
|
+
readonly "503": {
|
|
210
|
+
readonly description: "Required authority unavailable";
|
|
211
|
+
readonly content: {
|
|
212
|
+
readonly "application/json": {
|
|
213
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
214
|
+
};
|
|
215
|
+
};
|
|
216
|
+
};
|
|
217
|
+
readonly "200": Readonly<Record<string, unknown>>;
|
|
218
|
+
};
|
|
219
|
+
};
|
|
220
|
+
readonly post: {
|
|
221
|
+
readonly operationId: "requestCredentialOperation";
|
|
222
|
+
readonly description: "Creates brokered_secret or workload_identity intent only. Native ceremony is rejected.";
|
|
223
|
+
readonly security: readonly Readonly<Record<string, readonly string[]>>[];
|
|
224
|
+
readonly parameters: readonly [{
|
|
225
|
+
readonly name: "Idempotency-Key";
|
|
226
|
+
readonly in: "header";
|
|
227
|
+
readonly required: true;
|
|
228
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
229
|
+
}];
|
|
230
|
+
readonly requestBody: Readonly<Record<string, unknown>>;
|
|
231
|
+
readonly responses: {
|
|
232
|
+
readonly "400": {
|
|
233
|
+
readonly description: "Invalid closed request";
|
|
234
|
+
readonly content: {
|
|
235
|
+
readonly "application/json": {
|
|
236
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
237
|
+
};
|
|
238
|
+
};
|
|
239
|
+
};
|
|
240
|
+
readonly "403": {
|
|
241
|
+
readonly description: "Authentication, scope, or owner denied";
|
|
242
|
+
readonly content: {
|
|
243
|
+
readonly "application/json": {
|
|
244
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
245
|
+
};
|
|
246
|
+
};
|
|
247
|
+
};
|
|
248
|
+
readonly "404": {
|
|
249
|
+
readonly description: "Not found, including cross-owner identifiers";
|
|
250
|
+
readonly content: {
|
|
251
|
+
readonly "application/json": {
|
|
252
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
253
|
+
};
|
|
254
|
+
};
|
|
255
|
+
};
|
|
256
|
+
readonly "409": {
|
|
257
|
+
readonly description: "Revision or idempotency conflict";
|
|
258
|
+
readonly content: {
|
|
259
|
+
readonly "application/json": {
|
|
260
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
261
|
+
};
|
|
262
|
+
};
|
|
263
|
+
};
|
|
264
|
+
readonly "422": {
|
|
265
|
+
readonly description: "Policy denied";
|
|
266
|
+
readonly content: {
|
|
267
|
+
readonly "application/json": {
|
|
268
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
269
|
+
};
|
|
270
|
+
};
|
|
271
|
+
};
|
|
272
|
+
readonly "503": {
|
|
273
|
+
readonly description: "Required authority unavailable";
|
|
274
|
+
readonly content: {
|
|
275
|
+
readonly "application/json": {
|
|
276
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
277
|
+
};
|
|
278
|
+
};
|
|
279
|
+
};
|
|
280
|
+
readonly "202": Readonly<Record<string, unknown>>;
|
|
281
|
+
};
|
|
282
|
+
};
|
|
283
|
+
};
|
|
284
|
+
readonly "/v1/credential-operations/{id}": {
|
|
285
|
+
readonly get: {
|
|
286
|
+
readonly operationId: "getCredentialOperation";
|
|
287
|
+
readonly security: readonly Readonly<Record<string, readonly string[]>>[];
|
|
288
|
+
readonly parameters: readonly [{
|
|
289
|
+
readonly name: "id";
|
|
290
|
+
readonly in: "path";
|
|
291
|
+
readonly required: true;
|
|
292
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
293
|
+
}];
|
|
294
|
+
readonly responses: {
|
|
295
|
+
readonly "400": {
|
|
296
|
+
readonly description: "Invalid closed request";
|
|
297
|
+
readonly content: {
|
|
298
|
+
readonly "application/json": {
|
|
299
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
300
|
+
};
|
|
301
|
+
};
|
|
302
|
+
};
|
|
303
|
+
readonly "403": {
|
|
304
|
+
readonly description: "Authentication, scope, or owner denied";
|
|
305
|
+
readonly content: {
|
|
306
|
+
readonly "application/json": {
|
|
307
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
308
|
+
};
|
|
309
|
+
};
|
|
310
|
+
};
|
|
311
|
+
readonly "404": {
|
|
312
|
+
readonly description: "Not found, including cross-owner identifiers";
|
|
313
|
+
readonly content: {
|
|
314
|
+
readonly "application/json": {
|
|
315
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
316
|
+
};
|
|
317
|
+
};
|
|
318
|
+
};
|
|
319
|
+
readonly "409": {
|
|
320
|
+
readonly description: "Revision or idempotency conflict";
|
|
321
|
+
readonly content: {
|
|
322
|
+
readonly "application/json": {
|
|
323
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
324
|
+
};
|
|
325
|
+
};
|
|
326
|
+
};
|
|
327
|
+
readonly "422": {
|
|
328
|
+
readonly description: "Policy denied";
|
|
329
|
+
readonly content: {
|
|
330
|
+
readonly "application/json": {
|
|
331
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
332
|
+
};
|
|
333
|
+
};
|
|
334
|
+
};
|
|
335
|
+
readonly "503": {
|
|
336
|
+
readonly description: "Required authority unavailable";
|
|
337
|
+
readonly content: {
|
|
338
|
+
readonly "application/json": {
|
|
339
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
340
|
+
};
|
|
341
|
+
};
|
|
342
|
+
};
|
|
343
|
+
readonly "200": Readonly<Record<string, unknown>>;
|
|
344
|
+
};
|
|
345
|
+
};
|
|
346
|
+
};
|
|
347
|
+
readonly "/v1/capacity/query": {
|
|
348
|
+
readonly post: {
|
|
349
|
+
readonly operationId: "queryCapacity";
|
|
350
|
+
readonly description: "Non-reservational diagnostic only; never acquires or issues a lease.";
|
|
351
|
+
readonly security: readonly Readonly<Record<string, readonly string[]>>[];
|
|
352
|
+
readonly requestBody: Readonly<Record<string, unknown>>;
|
|
353
|
+
readonly responses: {
|
|
354
|
+
readonly "400": {
|
|
355
|
+
readonly description: "Invalid closed request";
|
|
356
|
+
readonly content: {
|
|
357
|
+
readonly "application/json": {
|
|
358
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
359
|
+
};
|
|
360
|
+
};
|
|
361
|
+
};
|
|
362
|
+
readonly "403": {
|
|
363
|
+
readonly description: "Authentication, scope, or owner denied";
|
|
364
|
+
readonly content: {
|
|
365
|
+
readonly "application/json": {
|
|
366
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
367
|
+
};
|
|
368
|
+
};
|
|
369
|
+
};
|
|
370
|
+
readonly "404": {
|
|
371
|
+
readonly description: "Not found, including cross-owner identifiers";
|
|
372
|
+
readonly content: {
|
|
373
|
+
readonly "application/json": {
|
|
374
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
375
|
+
};
|
|
376
|
+
};
|
|
377
|
+
};
|
|
378
|
+
readonly "409": {
|
|
379
|
+
readonly description: "Revision or idempotency conflict";
|
|
380
|
+
readonly content: {
|
|
381
|
+
readonly "application/json": {
|
|
382
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
383
|
+
};
|
|
384
|
+
};
|
|
385
|
+
};
|
|
386
|
+
readonly "422": {
|
|
387
|
+
readonly description: "Policy denied";
|
|
388
|
+
readonly content: {
|
|
389
|
+
readonly "application/json": {
|
|
390
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
391
|
+
};
|
|
392
|
+
};
|
|
393
|
+
};
|
|
394
|
+
readonly "503": {
|
|
395
|
+
readonly description: "Required authority unavailable";
|
|
396
|
+
readonly content: {
|
|
397
|
+
readonly "application/json": {
|
|
398
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
399
|
+
};
|
|
400
|
+
};
|
|
401
|
+
};
|
|
402
|
+
readonly "200": Readonly<Record<string, unknown>>;
|
|
403
|
+
};
|
|
404
|
+
};
|
|
405
|
+
};
|
|
406
|
+
readonly "/internal/v1/native-subscriptions/probe": {
|
|
407
|
+
readonly post: {
|
|
408
|
+
readonly operationId: "probeNativeSubscription";
|
|
409
|
+
readonly description: "Credential- and network-free PROBE_NATIVE. This route cannot reserve or mutate state.";
|
|
410
|
+
readonly security: readonly Readonly<Record<string, readonly string[]>>[];
|
|
411
|
+
readonly requestBody: Readonly<Record<string, unknown>>;
|
|
412
|
+
readonly responses: {
|
|
413
|
+
readonly "400": {
|
|
414
|
+
readonly description: "Invalid closed request";
|
|
415
|
+
readonly content: {
|
|
416
|
+
readonly "application/json": {
|
|
417
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
418
|
+
};
|
|
419
|
+
};
|
|
420
|
+
};
|
|
421
|
+
readonly "403": {
|
|
422
|
+
readonly description: "Authentication, scope, or owner denied";
|
|
423
|
+
readonly content: {
|
|
424
|
+
readonly "application/json": {
|
|
425
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
426
|
+
};
|
|
427
|
+
};
|
|
428
|
+
};
|
|
429
|
+
readonly "404": {
|
|
430
|
+
readonly description: "Not found, including cross-owner identifiers";
|
|
431
|
+
readonly content: {
|
|
432
|
+
readonly "application/json": {
|
|
433
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
434
|
+
};
|
|
435
|
+
};
|
|
436
|
+
};
|
|
437
|
+
readonly "409": {
|
|
438
|
+
readonly description: "Revision or idempotency conflict";
|
|
439
|
+
readonly content: {
|
|
440
|
+
readonly "application/json": {
|
|
441
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
442
|
+
};
|
|
443
|
+
};
|
|
444
|
+
};
|
|
445
|
+
readonly "422": {
|
|
446
|
+
readonly description: "Policy denied";
|
|
447
|
+
readonly content: {
|
|
448
|
+
readonly "application/json": {
|
|
449
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
450
|
+
};
|
|
451
|
+
};
|
|
452
|
+
};
|
|
453
|
+
readonly "503": {
|
|
454
|
+
readonly description: "Required authority unavailable";
|
|
455
|
+
readonly content: {
|
|
456
|
+
readonly "application/json": {
|
|
457
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
458
|
+
};
|
|
459
|
+
};
|
|
460
|
+
};
|
|
461
|
+
readonly "200": Readonly<Record<string, unknown>>;
|
|
462
|
+
};
|
|
463
|
+
};
|
|
464
|
+
};
|
|
465
|
+
readonly "/internal/v1/capsule-maintenance/grants": {
|
|
466
|
+
readonly post: {
|
|
467
|
+
readonly operationId: "issueCapsuleMaintenanceGrant";
|
|
468
|
+
readonly description: "Accounts-only one-use maintenance reservation bound to exact zero-live and drain evidence.";
|
|
469
|
+
readonly security: readonly Readonly<Record<string, readonly string[]>>[];
|
|
470
|
+
readonly requestBody: Readonly<Record<string, unknown>>;
|
|
471
|
+
readonly responses: {
|
|
472
|
+
readonly "400": {
|
|
473
|
+
readonly description: "Invalid closed request";
|
|
474
|
+
readonly content: {
|
|
475
|
+
readonly "application/json": {
|
|
476
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
477
|
+
};
|
|
478
|
+
};
|
|
479
|
+
};
|
|
480
|
+
readonly "403": {
|
|
481
|
+
readonly description: "Authentication, scope, or owner denied";
|
|
482
|
+
readonly content: {
|
|
483
|
+
readonly "application/json": {
|
|
484
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
485
|
+
};
|
|
486
|
+
};
|
|
487
|
+
};
|
|
488
|
+
readonly "404": {
|
|
489
|
+
readonly description: "Not found, including cross-owner identifiers";
|
|
490
|
+
readonly content: {
|
|
491
|
+
readonly "application/json": {
|
|
492
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
493
|
+
};
|
|
494
|
+
};
|
|
495
|
+
};
|
|
496
|
+
readonly "409": {
|
|
497
|
+
readonly description: "Revision or idempotency conflict";
|
|
498
|
+
readonly content: {
|
|
499
|
+
readonly "application/json": {
|
|
500
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
501
|
+
};
|
|
502
|
+
};
|
|
503
|
+
};
|
|
504
|
+
readonly "422": {
|
|
505
|
+
readonly description: "Policy denied";
|
|
506
|
+
readonly content: {
|
|
507
|
+
readonly "application/json": {
|
|
508
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
509
|
+
};
|
|
510
|
+
};
|
|
511
|
+
};
|
|
512
|
+
readonly "503": {
|
|
513
|
+
readonly description: "Required authority unavailable";
|
|
514
|
+
readonly content: {
|
|
515
|
+
readonly "application/json": {
|
|
516
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
517
|
+
};
|
|
518
|
+
};
|
|
519
|
+
};
|
|
520
|
+
readonly "200": Readonly<Record<string, unknown>>;
|
|
521
|
+
};
|
|
522
|
+
};
|
|
523
|
+
};
|
|
524
|
+
readonly "/internal/v1/capsule-maintenance/consume": {
|
|
525
|
+
readonly post: {
|
|
526
|
+
readonly operationId: "consumeCapsuleMaintenanceGrant";
|
|
527
|
+
readonly description: "Atomically consumes one Accounts-issued maintenance grant.";
|
|
528
|
+
readonly security: readonly Readonly<Record<string, readonly string[]>>[];
|
|
529
|
+
readonly requestBody: Readonly<Record<string, unknown>>;
|
|
530
|
+
readonly responses: {
|
|
531
|
+
readonly "400": {
|
|
532
|
+
readonly description: "Invalid closed request";
|
|
533
|
+
readonly content: {
|
|
534
|
+
readonly "application/json": {
|
|
535
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
536
|
+
};
|
|
537
|
+
};
|
|
538
|
+
};
|
|
539
|
+
readonly "403": {
|
|
540
|
+
readonly description: "Authentication, scope, or owner denied";
|
|
541
|
+
readonly content: {
|
|
542
|
+
readonly "application/json": {
|
|
543
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
544
|
+
};
|
|
545
|
+
};
|
|
546
|
+
};
|
|
547
|
+
readonly "404": {
|
|
548
|
+
readonly description: "Not found, including cross-owner identifiers";
|
|
549
|
+
readonly content: {
|
|
550
|
+
readonly "application/json": {
|
|
551
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
552
|
+
};
|
|
553
|
+
};
|
|
554
|
+
};
|
|
555
|
+
readonly "409": {
|
|
556
|
+
readonly description: "Revision or idempotency conflict";
|
|
557
|
+
readonly content: {
|
|
558
|
+
readonly "application/json": {
|
|
559
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
560
|
+
};
|
|
561
|
+
};
|
|
562
|
+
};
|
|
563
|
+
readonly "422": {
|
|
564
|
+
readonly description: "Policy denied";
|
|
565
|
+
readonly content: {
|
|
566
|
+
readonly "application/json": {
|
|
567
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
568
|
+
};
|
|
569
|
+
};
|
|
570
|
+
};
|
|
571
|
+
readonly "503": {
|
|
572
|
+
readonly description: "Required authority unavailable";
|
|
573
|
+
readonly content: {
|
|
574
|
+
readonly "application/json": {
|
|
575
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
576
|
+
};
|
|
577
|
+
};
|
|
578
|
+
};
|
|
579
|
+
readonly "200": Readonly<Record<string, unknown>>;
|
|
580
|
+
};
|
|
581
|
+
};
|
|
582
|
+
};
|
|
583
|
+
readonly "/internal/v1/capability-uses/consume": {
|
|
584
|
+
readonly post: {
|
|
585
|
+
readonly operationId: "consumeCapabilityUse";
|
|
586
|
+
readonly description: "Accounts-owned atomic one-use capability ordinal consumption.";
|
|
587
|
+
readonly security: readonly Readonly<Record<string, readonly string[]>>[];
|
|
588
|
+
readonly requestBody: Readonly<Record<string, unknown>>;
|
|
589
|
+
readonly responses: {
|
|
590
|
+
readonly "400": {
|
|
591
|
+
readonly description: "Invalid closed request";
|
|
592
|
+
readonly content: {
|
|
593
|
+
readonly "application/json": {
|
|
594
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
595
|
+
};
|
|
596
|
+
};
|
|
597
|
+
};
|
|
598
|
+
readonly "403": {
|
|
599
|
+
readonly description: "Authentication, scope, or owner denied";
|
|
600
|
+
readonly content: {
|
|
601
|
+
readonly "application/json": {
|
|
602
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
603
|
+
};
|
|
604
|
+
};
|
|
605
|
+
};
|
|
606
|
+
readonly "404": {
|
|
607
|
+
readonly description: "Not found, including cross-owner identifiers";
|
|
608
|
+
readonly content: {
|
|
609
|
+
readonly "application/json": {
|
|
610
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
611
|
+
};
|
|
612
|
+
};
|
|
613
|
+
};
|
|
614
|
+
readonly "409": {
|
|
615
|
+
readonly description: "Revision or idempotency conflict";
|
|
616
|
+
readonly content: {
|
|
617
|
+
readonly "application/json": {
|
|
618
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
619
|
+
};
|
|
620
|
+
};
|
|
621
|
+
};
|
|
622
|
+
readonly "422": {
|
|
623
|
+
readonly description: "Policy denied";
|
|
624
|
+
readonly content: {
|
|
625
|
+
readonly "application/json": {
|
|
626
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
627
|
+
};
|
|
628
|
+
};
|
|
629
|
+
};
|
|
630
|
+
readonly "503": {
|
|
631
|
+
readonly description: "Required authority unavailable";
|
|
632
|
+
readonly content: {
|
|
633
|
+
readonly "application/json": {
|
|
634
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
635
|
+
};
|
|
636
|
+
};
|
|
637
|
+
};
|
|
638
|
+
readonly "200": Readonly<Record<string, unknown>>;
|
|
639
|
+
};
|
|
640
|
+
};
|
|
641
|
+
};
|
|
642
|
+
readonly "/internal/v1/slot-eligibility": {
|
|
643
|
+
readonly post: {
|
|
644
|
+
readonly operationId: "issueSlotEligibility";
|
|
645
|
+
readonly security: readonly Readonly<Record<string, readonly string[]>>[];
|
|
646
|
+
readonly requestBody: Readonly<Record<string, unknown>>;
|
|
647
|
+
readonly responses: {
|
|
648
|
+
readonly "400": {
|
|
649
|
+
readonly description: "Invalid closed request";
|
|
650
|
+
readonly content: {
|
|
651
|
+
readonly "application/json": {
|
|
652
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
653
|
+
};
|
|
654
|
+
};
|
|
655
|
+
};
|
|
656
|
+
readonly "403": {
|
|
657
|
+
readonly description: "Authentication, scope, or owner denied";
|
|
658
|
+
readonly content: {
|
|
659
|
+
readonly "application/json": {
|
|
660
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
661
|
+
};
|
|
662
|
+
};
|
|
663
|
+
};
|
|
664
|
+
readonly "404": {
|
|
665
|
+
readonly description: "Not found, including cross-owner identifiers";
|
|
666
|
+
readonly content: {
|
|
667
|
+
readonly "application/json": {
|
|
668
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
669
|
+
};
|
|
670
|
+
};
|
|
671
|
+
};
|
|
672
|
+
readonly "409": {
|
|
673
|
+
readonly description: "Revision or idempotency conflict";
|
|
674
|
+
readonly content: {
|
|
675
|
+
readonly "application/json": {
|
|
676
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
677
|
+
};
|
|
678
|
+
};
|
|
679
|
+
};
|
|
680
|
+
readonly "422": {
|
|
681
|
+
readonly description: "Policy denied";
|
|
682
|
+
readonly content: {
|
|
683
|
+
readonly "application/json": {
|
|
684
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
685
|
+
};
|
|
686
|
+
};
|
|
687
|
+
};
|
|
688
|
+
readonly "503": {
|
|
689
|
+
readonly description: "Required authority unavailable";
|
|
690
|
+
readonly content: {
|
|
691
|
+
readonly "application/json": {
|
|
692
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
693
|
+
};
|
|
694
|
+
};
|
|
695
|
+
};
|
|
696
|
+
readonly "200": Readonly<Record<string, unknown>>;
|
|
697
|
+
};
|
|
698
|
+
};
|
|
699
|
+
};
|
|
700
|
+
readonly "/internal/v1/generation-check": {
|
|
701
|
+
readonly post: {
|
|
702
|
+
readonly operationId: "checkGeneration";
|
|
703
|
+
readonly security: readonly Readonly<Record<string, readonly string[]>>[];
|
|
704
|
+
readonly requestBody: Readonly<Record<string, unknown>>;
|
|
705
|
+
readonly responses: {
|
|
706
|
+
readonly "400": {
|
|
707
|
+
readonly description: "Invalid closed request";
|
|
708
|
+
readonly content: {
|
|
709
|
+
readonly "application/json": {
|
|
710
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
711
|
+
};
|
|
712
|
+
};
|
|
713
|
+
};
|
|
714
|
+
readonly "403": {
|
|
715
|
+
readonly description: "Authentication, scope, or owner denied";
|
|
716
|
+
readonly content: {
|
|
717
|
+
readonly "application/json": {
|
|
718
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
719
|
+
};
|
|
720
|
+
};
|
|
721
|
+
};
|
|
722
|
+
readonly "404": {
|
|
723
|
+
readonly description: "Not found, including cross-owner identifiers";
|
|
724
|
+
readonly content: {
|
|
725
|
+
readonly "application/json": {
|
|
726
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
727
|
+
};
|
|
728
|
+
};
|
|
729
|
+
};
|
|
730
|
+
readonly "409": {
|
|
731
|
+
readonly description: "Revision or idempotency conflict";
|
|
732
|
+
readonly content: {
|
|
733
|
+
readonly "application/json": {
|
|
734
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
735
|
+
};
|
|
736
|
+
};
|
|
737
|
+
};
|
|
738
|
+
readonly "422": {
|
|
739
|
+
readonly description: "Policy denied";
|
|
740
|
+
readonly content: {
|
|
741
|
+
readonly "application/json": {
|
|
742
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
743
|
+
};
|
|
744
|
+
};
|
|
745
|
+
};
|
|
746
|
+
readonly "503": {
|
|
747
|
+
readonly description: "Required authority unavailable";
|
|
748
|
+
readonly content: {
|
|
749
|
+
readonly "application/json": {
|
|
750
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
751
|
+
};
|
|
752
|
+
};
|
|
753
|
+
};
|
|
754
|
+
readonly "200": Readonly<Record<string, unknown>>;
|
|
755
|
+
};
|
|
756
|
+
};
|
|
757
|
+
};
|
|
758
|
+
readonly "/internal/v1/capacity-pool-evidence": {
|
|
759
|
+
readonly post: {
|
|
760
|
+
readonly operationId: "ingestCapacityPoolEvidence";
|
|
761
|
+
readonly security: readonly Readonly<Record<string, readonly string[]>>[];
|
|
762
|
+
readonly requestBody: Readonly<Record<string, unknown>>;
|
|
763
|
+
readonly responses: {
|
|
764
|
+
readonly "400": {
|
|
765
|
+
readonly description: "Invalid closed request";
|
|
766
|
+
readonly content: {
|
|
767
|
+
readonly "application/json": {
|
|
768
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
769
|
+
};
|
|
770
|
+
};
|
|
771
|
+
};
|
|
772
|
+
readonly "403": {
|
|
773
|
+
readonly description: "Authentication, scope, or owner denied";
|
|
774
|
+
readonly content: {
|
|
775
|
+
readonly "application/json": {
|
|
776
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
777
|
+
};
|
|
778
|
+
};
|
|
779
|
+
};
|
|
780
|
+
readonly "404": {
|
|
781
|
+
readonly description: "Not found, including cross-owner identifiers";
|
|
782
|
+
readonly content: {
|
|
783
|
+
readonly "application/json": {
|
|
784
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
785
|
+
};
|
|
786
|
+
};
|
|
787
|
+
};
|
|
788
|
+
readonly "409": {
|
|
789
|
+
readonly description: "Revision or idempotency conflict";
|
|
790
|
+
readonly content: {
|
|
791
|
+
readonly "application/json": {
|
|
792
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
793
|
+
};
|
|
794
|
+
};
|
|
795
|
+
};
|
|
796
|
+
readonly "422": {
|
|
797
|
+
readonly description: "Policy denied";
|
|
798
|
+
readonly content: {
|
|
799
|
+
readonly "application/json": {
|
|
800
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
801
|
+
};
|
|
802
|
+
};
|
|
803
|
+
};
|
|
804
|
+
readonly "503": {
|
|
805
|
+
readonly description: "Required authority unavailable";
|
|
806
|
+
readonly content: {
|
|
807
|
+
readonly "application/json": {
|
|
808
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
809
|
+
};
|
|
810
|
+
};
|
|
811
|
+
};
|
|
812
|
+
readonly "200": Readonly<Record<string, unknown>>;
|
|
813
|
+
};
|
|
814
|
+
};
|
|
815
|
+
};
|
|
816
|
+
readonly "/internal/v1/execution-policy-evidence": {
|
|
817
|
+
readonly post: {
|
|
818
|
+
readonly operationId: "ingestExecutionPolicyEvidence";
|
|
819
|
+
readonly security: readonly Readonly<Record<string, readonly string[]>>[];
|
|
820
|
+
readonly requestBody: Readonly<Record<string, unknown>>;
|
|
821
|
+
readonly responses: {
|
|
822
|
+
readonly "400": {
|
|
823
|
+
readonly description: "Invalid closed request";
|
|
824
|
+
readonly content: {
|
|
825
|
+
readonly "application/json": {
|
|
826
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
827
|
+
};
|
|
828
|
+
};
|
|
829
|
+
};
|
|
830
|
+
readonly "403": {
|
|
831
|
+
readonly description: "Authentication, scope, or owner denied";
|
|
832
|
+
readonly content: {
|
|
833
|
+
readonly "application/json": {
|
|
834
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
835
|
+
};
|
|
836
|
+
};
|
|
837
|
+
};
|
|
838
|
+
readonly "404": {
|
|
839
|
+
readonly description: "Not found, including cross-owner identifiers";
|
|
840
|
+
readonly content: {
|
|
841
|
+
readonly "application/json": {
|
|
842
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
843
|
+
};
|
|
844
|
+
};
|
|
845
|
+
};
|
|
846
|
+
readonly "409": {
|
|
847
|
+
readonly description: "Revision or idempotency conflict";
|
|
848
|
+
readonly content: {
|
|
849
|
+
readonly "application/json": {
|
|
850
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
851
|
+
};
|
|
852
|
+
};
|
|
853
|
+
};
|
|
854
|
+
readonly "422": {
|
|
855
|
+
readonly description: "Policy denied";
|
|
856
|
+
readonly content: {
|
|
857
|
+
readonly "application/json": {
|
|
858
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
859
|
+
};
|
|
860
|
+
};
|
|
861
|
+
};
|
|
862
|
+
readonly "503": {
|
|
863
|
+
readonly description: "Required authority unavailable";
|
|
864
|
+
readonly content: {
|
|
865
|
+
readonly "application/json": {
|
|
866
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
867
|
+
};
|
|
868
|
+
};
|
|
869
|
+
};
|
|
870
|
+
readonly "200": Readonly<Record<string, unknown>>;
|
|
871
|
+
};
|
|
872
|
+
};
|
|
873
|
+
};
|
|
874
|
+
readonly "/internal/v1/credential-binding-receipts": {
|
|
875
|
+
readonly post: {
|
|
876
|
+
readonly operationId: "ingestCredentialBindingReceipt";
|
|
877
|
+
readonly description: "Safe signed receipt metadata only; raw handles are excluded.";
|
|
878
|
+
readonly security: readonly Readonly<Record<string, readonly string[]>>[];
|
|
879
|
+
readonly requestBody: Readonly<Record<string, unknown>>;
|
|
880
|
+
readonly responses: {
|
|
881
|
+
readonly "400": {
|
|
882
|
+
readonly description: "Invalid closed request";
|
|
883
|
+
readonly content: {
|
|
884
|
+
readonly "application/json": {
|
|
885
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
886
|
+
};
|
|
887
|
+
};
|
|
888
|
+
};
|
|
889
|
+
readonly "403": {
|
|
890
|
+
readonly description: "Authentication, scope, or owner denied";
|
|
891
|
+
readonly content: {
|
|
892
|
+
readonly "application/json": {
|
|
893
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
894
|
+
};
|
|
895
|
+
};
|
|
896
|
+
};
|
|
897
|
+
readonly "404": {
|
|
898
|
+
readonly description: "Not found, including cross-owner identifiers";
|
|
899
|
+
readonly content: {
|
|
900
|
+
readonly "application/json": {
|
|
901
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
902
|
+
};
|
|
903
|
+
};
|
|
904
|
+
};
|
|
905
|
+
readonly "409": {
|
|
906
|
+
readonly description: "Revision or idempotency conflict";
|
|
907
|
+
readonly content: {
|
|
908
|
+
readonly "application/json": {
|
|
909
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
910
|
+
};
|
|
911
|
+
};
|
|
912
|
+
};
|
|
913
|
+
readonly "422": {
|
|
914
|
+
readonly description: "Policy denied";
|
|
915
|
+
readonly content: {
|
|
916
|
+
readonly "application/json": {
|
|
917
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
918
|
+
};
|
|
919
|
+
};
|
|
920
|
+
};
|
|
921
|
+
readonly "503": {
|
|
922
|
+
readonly description: "Required authority unavailable";
|
|
923
|
+
readonly content: {
|
|
924
|
+
readonly "application/json": {
|
|
925
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
926
|
+
};
|
|
927
|
+
};
|
|
928
|
+
};
|
|
929
|
+
readonly "200": Readonly<Record<string, unknown>>;
|
|
930
|
+
};
|
|
931
|
+
};
|
|
932
|
+
};
|
|
933
|
+
readonly "/health": {
|
|
934
|
+
readonly get: {
|
|
935
|
+
readonly operationId: "health";
|
|
936
|
+
readonly security: readonly [];
|
|
937
|
+
readonly responses: {
|
|
938
|
+
readonly "200": Readonly<Record<string, unknown>>;
|
|
939
|
+
};
|
|
940
|
+
};
|
|
941
|
+
};
|
|
942
|
+
readonly "/ready": {
|
|
943
|
+
readonly get: {
|
|
944
|
+
readonly operationId: "ready";
|
|
945
|
+
readonly security: readonly [];
|
|
946
|
+
readonly responses: {
|
|
947
|
+
readonly "200": Readonly<Record<string, unknown>>;
|
|
948
|
+
readonly "503": Readonly<Record<string, unknown>>;
|
|
949
|
+
};
|
|
950
|
+
};
|
|
951
|
+
};
|
|
952
|
+
readonly "/version": {
|
|
953
|
+
readonly get: {
|
|
954
|
+
readonly operationId: "version";
|
|
955
|
+
readonly security: readonly [];
|
|
956
|
+
readonly responses: {
|
|
957
|
+
readonly "200": Readonly<Record<string, unknown>>;
|
|
958
|
+
};
|
|
959
|
+
};
|
|
960
|
+
};
|
|
961
|
+
readonly "/openapi.json": {
|
|
962
|
+
readonly get: {
|
|
963
|
+
readonly operationId: "openApi";
|
|
964
|
+
readonly security: readonly [];
|
|
965
|
+
readonly responses: {
|
|
966
|
+
readonly "200": {
|
|
967
|
+
readonly description: "This document";
|
|
968
|
+
readonly content: {
|
|
969
|
+
readonly "application/json": {
|
|
970
|
+
readonly schema: Readonly<Record<string, unknown>>;
|
|
971
|
+
};
|
|
972
|
+
};
|
|
973
|
+
};
|
|
974
|
+
};
|
|
975
|
+
};
|
|
976
|
+
};
|
|
977
|
+
};
|
|
978
|
+
readonly components: {
|
|
979
|
+
readonly securitySchemes: {
|
|
980
|
+
readonly capacityBearer: {
|
|
981
|
+
readonly type: "oauth2";
|
|
982
|
+
readonly description: "Separately audienced Hasna capacity credential; legacy profile keys are rejected.";
|
|
983
|
+
readonly flows: {
|
|
984
|
+
readonly clientCredentials: {
|
|
985
|
+
readonly tokenUrl: "https://identities.hasna.internal/oauth/token";
|
|
986
|
+
readonly scopes: {
|
|
987
|
+
[k: string]: string;
|
|
988
|
+
};
|
|
989
|
+
};
|
|
990
|
+
};
|
|
991
|
+
};
|
|
992
|
+
};
|
|
993
|
+
readonly schemas: {
|
|
994
|
+
readonly Counter: Readonly<Record<string, unknown>>;
|
|
995
|
+
readonly PositiveCounter: Readonly<Record<string, unknown>>;
|
|
996
|
+
readonly ProviderAccount: {
|
|
997
|
+
readonly oneOf: readonly [Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>];
|
|
998
|
+
readonly discriminator: {
|
|
999
|
+
readonly propertyName: "status";
|
|
1000
|
+
};
|
|
1001
|
+
};
|
|
1002
|
+
readonly Entitlement: {
|
|
1003
|
+
readonly oneOf: readonly [Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>];
|
|
1004
|
+
readonly discriminator: {
|
|
1005
|
+
readonly propertyName: "status";
|
|
1006
|
+
};
|
|
1007
|
+
};
|
|
1008
|
+
readonly CapacityPool: {
|
|
1009
|
+
readonly oneOf: Readonly<Record<string, unknown>>[];
|
|
1010
|
+
readonly discriminator: {
|
|
1011
|
+
readonly propertyName: "status";
|
|
1012
|
+
};
|
|
1013
|
+
};
|
|
1014
|
+
readonly AccountLane: {
|
|
1015
|
+
readonly oneOf: readonly [Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>];
|
|
1016
|
+
readonly discriminator: {
|
|
1017
|
+
readonly propertyName: "status";
|
|
1018
|
+
};
|
|
1019
|
+
};
|
|
1020
|
+
readonly AuthCapsule: {
|
|
1021
|
+
readonly oneOf: readonly [Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>];
|
|
1022
|
+
readonly discriminator: {
|
|
1023
|
+
readonly propertyName: "status";
|
|
1024
|
+
};
|
|
1025
|
+
};
|
|
1026
|
+
readonly CredentialBinding: {
|
|
1027
|
+
readonly oneOf: readonly [Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>];
|
|
1028
|
+
readonly discriminator: {
|
|
1029
|
+
readonly propertyName: "status";
|
|
1030
|
+
};
|
|
1031
|
+
};
|
|
1032
|
+
readonly CredentialOperation: Readonly<Record<string, unknown>>;
|
|
1033
|
+
readonly BootstrapIntent: Readonly<Record<string, unknown>>;
|
|
1034
|
+
readonly ProviderDestinationPolicy: Readonly<Record<string, unknown>>;
|
|
1035
|
+
readonly OnlineGenerationCheckReceipt: {
|
|
1036
|
+
readonly oneOf: readonly [Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>];
|
|
1037
|
+
};
|
|
1038
|
+
readonly DiagnosticSlotEligibility: {
|
|
1039
|
+
readonly oneOf: readonly [Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>];
|
|
1040
|
+
readonly discriminator: {
|
|
1041
|
+
readonly propertyName: "eligible";
|
|
1042
|
+
};
|
|
1043
|
+
};
|
|
1044
|
+
readonly SlotEligibilityWire: {
|
|
1045
|
+
readonly oneOf: readonly [Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>];
|
|
1046
|
+
};
|
|
1047
|
+
readonly NativeSubscriptionProbeRequest: Readonly<Record<string, unknown>>;
|
|
1048
|
+
readonly NativeSubscriptionProbeResult: Readonly<Record<string, unknown>>;
|
|
1049
|
+
readonly CapsuleMaintenanceRequest: Readonly<Record<string, unknown>>;
|
|
1050
|
+
readonly CapsuleMaintenanceGrant: Readonly<Record<string, unknown>>;
|
|
1051
|
+
readonly CapsuleMaintenanceConsumeCommand: Readonly<Record<string, unknown>>;
|
|
1052
|
+
readonly CapsuleMaintenanceConsumeReceipt: Readonly<Record<string, unknown>>;
|
|
1053
|
+
readonly CapabilityUseConsumeRequest: Readonly<Record<string, unknown>>;
|
|
1054
|
+
readonly CapabilityUseConsumeResult: {
|
|
1055
|
+
readonly oneOf: readonly [Readonly<Record<string, unknown>>, Readonly<Record<string, unknown>>];
|
|
1056
|
+
};
|
|
1057
|
+
readonly ProviderAccountCreate: Readonly<Record<string, unknown>>;
|
|
1058
|
+
readonly EntitlementCreate: Readonly<Record<string, unknown>>;
|
|
1059
|
+
readonly AccountLaneCreate: Readonly<Record<string, unknown>>;
|
|
1060
|
+
readonly BootstrapIntentCreate: Readonly<Record<string, unknown>>;
|
|
1061
|
+
readonly CredentialOperationRequest: Readonly<Record<string, unknown>>;
|
|
1062
|
+
readonly CapacityQueryRequest: Readonly<Record<string, unknown>>;
|
|
1063
|
+
readonly InternalSlotEligibilityRequest: Readonly<Record<string, unknown>>;
|
|
1064
|
+
readonly InternalGenerationCheckRequest: Readonly<Record<string, unknown>>;
|
|
1065
|
+
readonly SafeEvidenceIngestion: Readonly<Record<string, unknown>>;
|
|
1066
|
+
readonly ErrorEnvelope: Readonly<Record<string, unknown>>;
|
|
1067
|
+
};
|
|
1068
|
+
};
|
|
1069
|
+
}>;
|
|
1070
|
+
export declare function serializeAccountsCapacityOpenApi(): string;
|