@grapity/grapity 0.4.1 → 0.5.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/dist/assets/{index-JAhtTTW2.js → index-BAMa58dH.js} +103 -78
- package/dist/assets/index-BAMa58dH.js.map +1 -0
- package/dist/assets/index-D24I8qIY.css +1 -0
- package/dist/core/index.d.ts +32 -1417
- package/dist/index.html +2 -3
- package/package.json +5 -5
- package/dist/assets/index-JAhtTTW2.js.map +0 -1
- package/dist/assets/index-LDlidn22.css +0 -1
package/dist/core/index.d.ts
CHANGED
|
@@ -1141,40 +1141,19 @@ interface components {
|
|
|
1141
1141
|
};
|
|
1142
1142
|
responses: never;
|
|
1143
1143
|
parameters: {
|
|
1144
|
-
/**
|
|
1145
|
-
* @description URL-friendly spec identifier
|
|
1146
|
-
* @example payments-api
|
|
1147
|
-
*/
|
|
1144
|
+
/** @description URL-friendly spec identifier */
|
|
1148
1145
|
specName: string;
|
|
1149
|
-
/**
|
|
1150
|
-
* @description Semantic version
|
|
1151
|
-
* @example 1.2.0
|
|
1152
|
-
*/
|
|
1146
|
+
/** @description Semantic version */
|
|
1153
1147
|
semver: string;
|
|
1154
|
-
/**
|
|
1155
|
-
* @description URL-friendly gateway config identifier
|
|
1156
|
-
* @example payments-api-gateway
|
|
1157
|
-
*/
|
|
1148
|
+
/** @description URL-friendly gateway config identifier */
|
|
1158
1149
|
gatewayConfigName: string;
|
|
1159
|
-
/**
|
|
1160
|
-
* @description Gateway config version UUID
|
|
1161
|
-
* @example a1b2c3d4-e5f6-7890-abcd-ef1234567890
|
|
1162
|
-
*/
|
|
1150
|
+
/** @description Gateway config version UUID */
|
|
1163
1151
|
versionId: string;
|
|
1164
|
-
/**
|
|
1165
|
-
* @description Gateway provider (e.g., kong)
|
|
1166
|
-
* @example kong
|
|
1167
|
-
*/
|
|
1152
|
+
/** @description Gateway provider (e.g., kong) */
|
|
1168
1153
|
provider: string;
|
|
1169
|
-
/**
|
|
1170
|
-
* @description Deployment environment (e.g., staging, production)
|
|
1171
|
-
* @example staging
|
|
1172
|
-
*/
|
|
1154
|
+
/** @description Deployment environment (e.g., staging, production) */
|
|
1173
1155
|
environment: string;
|
|
1174
|
-
/**
|
|
1175
|
-
* @description Gateway log entry UUID
|
|
1176
|
-
* @example a1b2c3d4-e5f6-7890-abcd-ef1234567890
|
|
1177
|
-
*/
|
|
1156
|
+
/** @description Gateway log entry UUID */
|
|
1178
1157
|
logId: string;
|
|
1179
1158
|
};
|
|
1180
1159
|
requestBodies: never;
|
|
@@ -1197,13 +1176,6 @@ interface operations {
|
|
|
1197
1176
|
[name: string]: unknown;
|
|
1198
1177
|
};
|
|
1199
1178
|
content: {
|
|
1200
|
-
/**
|
|
1201
|
-
* @example {
|
|
1202
|
-
* "status": "ok",
|
|
1203
|
-
* "version": "0.2.0",
|
|
1204
|
-
* "uptime": 3600.42
|
|
1205
|
-
* }
|
|
1206
|
-
*/
|
|
1207
1179
|
"application/json": components["schemas"]["HealthResponse"];
|
|
1208
1180
|
};
|
|
1209
1181
|
};
|
|
@@ -1213,13 +1185,6 @@ interface operations {
|
|
|
1213
1185
|
[name: string]: unknown;
|
|
1214
1186
|
};
|
|
1215
1187
|
content: {
|
|
1216
|
-
/**
|
|
1217
|
-
* @example {
|
|
1218
|
-
* "error": "unauthorized",
|
|
1219
|
-
* "message": "Invalid or missing bearer token",
|
|
1220
|
-
* "statusCode": 401
|
|
1221
|
-
* }
|
|
1222
|
-
*/
|
|
1223
1188
|
"application/json": components["schemas"]["ApiError"];
|
|
1224
1189
|
};
|
|
1225
1190
|
};
|
|
@@ -1229,13 +1194,6 @@ interface operations {
|
|
|
1229
1194
|
[name: string]: unknown;
|
|
1230
1195
|
};
|
|
1231
1196
|
content: {
|
|
1232
|
-
/**
|
|
1233
|
-
* @example {
|
|
1234
|
-
* "error": "forbidden",
|
|
1235
|
-
* "message": "Missing required scope: specs:write",
|
|
1236
|
-
* "statusCode": 403
|
|
1237
|
-
* }
|
|
1238
|
-
*/
|
|
1239
1197
|
"application/json": components["schemas"]["ApiError"];
|
|
1240
1198
|
};
|
|
1241
1199
|
};
|
|
@@ -1245,13 +1203,6 @@ interface operations {
|
|
|
1245
1203
|
[name: string]: unknown;
|
|
1246
1204
|
};
|
|
1247
1205
|
content: {
|
|
1248
|
-
/**
|
|
1249
|
-
* @example {
|
|
1250
|
-
* "error": "internal_error",
|
|
1251
|
-
* "message": "Internal server error",
|
|
1252
|
-
* "statusCode": 500
|
|
1253
|
-
* }
|
|
1254
|
-
*/
|
|
1255
1206
|
"application/json": components["schemas"]["ApiError"];
|
|
1256
1207
|
};
|
|
1257
1208
|
};
|
|
@@ -1264,10 +1215,7 @@ interface operations {
|
|
|
1264
1215
|
type?: components["schemas"]["SpecType"];
|
|
1265
1216
|
/** @description Filter by owner */
|
|
1266
1217
|
owner?: string;
|
|
1267
|
-
/**
|
|
1268
|
-
* @description Comma-separated list of tags to filter by
|
|
1269
|
-
* @example payments,public
|
|
1270
|
-
*/
|
|
1218
|
+
/** @description Comma-separated list of tags to filter by */
|
|
1271
1219
|
tags?: string;
|
|
1272
1220
|
};
|
|
1273
1221
|
header?: never;
|
|
@@ -1282,58 +1230,6 @@ interface operations {
|
|
|
1282
1230
|
[name: string]: unknown;
|
|
1283
1231
|
};
|
|
1284
1232
|
content: {
|
|
1285
|
-
/**
|
|
1286
|
-
* @example {
|
|
1287
|
-
* "data": [
|
|
1288
|
-
* {
|
|
1289
|
-
* "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
1290
|
-
* "name": "payments-api",
|
|
1291
|
-
* "type": "openapi",
|
|
1292
|
-
* "description": "Payments service API",
|
|
1293
|
-
* "owner": "platform-team",
|
|
1294
|
-
* "sourceRepo": "https://github.com/acme/payments-service",
|
|
1295
|
-
* "tags": [
|
|
1296
|
-
* "payments",
|
|
1297
|
-
* "public"
|
|
1298
|
-
* ],
|
|
1299
|
-
* "createdAt": "2026-04-25T10:30:00.000Z",
|
|
1300
|
-
* "updatedAt": "2026-06-07T14:00:00.000Z",
|
|
1301
|
-
* "latestVersion": {
|
|
1302
|
-
* "id": "ver-uuid-1",
|
|
1303
|
-
* "specId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
1304
|
-
* "semver": "1.2.0",
|
|
1305
|
-
* "checksum": "sha256-abc123",
|
|
1306
|
-
* "gitRef": "a1b2c3d4",
|
|
1307
|
-
* "pushedBy": "github-actions[bot]",
|
|
1308
|
-
* "previousVersion": "1.1.0",
|
|
1309
|
-
* "isPrerelease": false,
|
|
1310
|
-
* "createdAt": "2026-06-07T14:00:00.000Z"
|
|
1311
|
-
* }
|
|
1312
|
-
* },
|
|
1313
|
-
* {
|
|
1314
|
-
* "id": "b2c3d4e5-f6a7-8901-bcde-f23456789012",
|
|
1315
|
-
* "name": "notifications-api",
|
|
1316
|
-
* "type": "asyncapi",
|
|
1317
|
-
* "description": "Event-driven notifications",
|
|
1318
|
-
* "owner": "messaging-team",
|
|
1319
|
-
* "tags": [
|
|
1320
|
-
* "events",
|
|
1321
|
-
* "internal"
|
|
1322
|
-
* ],
|
|
1323
|
-
* "createdAt": "2026-05-01T09:00:00.000Z",
|
|
1324
|
-
* "updatedAt": "2026-05-15T11:30:00.000Z",
|
|
1325
|
-
* "latestVersion": {
|
|
1326
|
-
* "id": "ver-uuid-2",
|
|
1327
|
-
* "specId": "b2c3d4e5-f6a7-8901-bcde-f23456789012",
|
|
1328
|
-
* "semver": "0.3.0",
|
|
1329
|
-
* "checksum": "sha256-def456",
|
|
1330
|
-
* "isPrerelease": true,
|
|
1331
|
-
* "createdAt": "2026-05-15T11:30:00.000Z"
|
|
1332
|
-
* }
|
|
1333
|
-
* }
|
|
1334
|
-
* ]
|
|
1335
|
-
* }
|
|
1336
|
-
*/
|
|
1337
1233
|
"application/json": components["schemas"]["ListSpecsResponse"];
|
|
1338
1234
|
};
|
|
1339
1235
|
};
|
|
@@ -1343,13 +1239,6 @@ interface operations {
|
|
|
1343
1239
|
[name: string]: unknown;
|
|
1344
1240
|
};
|
|
1345
1241
|
content: {
|
|
1346
|
-
/**
|
|
1347
|
-
* @example {
|
|
1348
|
-
* "error": "unauthorized",
|
|
1349
|
-
* "message": "Invalid or missing bearer token",
|
|
1350
|
-
* "statusCode": 401
|
|
1351
|
-
* }
|
|
1352
|
-
*/
|
|
1353
1242
|
"application/json": components["schemas"]["ApiError"];
|
|
1354
1243
|
};
|
|
1355
1244
|
};
|
|
@@ -1359,13 +1248,6 @@ interface operations {
|
|
|
1359
1248
|
[name: string]: unknown;
|
|
1360
1249
|
};
|
|
1361
1250
|
content: {
|
|
1362
|
-
/**
|
|
1363
|
-
* @example {
|
|
1364
|
-
* "error": "forbidden",
|
|
1365
|
-
* "message": "Missing required scope: specs:write",
|
|
1366
|
-
* "statusCode": 403
|
|
1367
|
-
* }
|
|
1368
|
-
*/
|
|
1369
1251
|
"application/json": components["schemas"]["ApiError"];
|
|
1370
1252
|
};
|
|
1371
1253
|
};
|
|
@@ -1375,13 +1257,6 @@ interface operations {
|
|
|
1375
1257
|
[name: string]: unknown;
|
|
1376
1258
|
};
|
|
1377
1259
|
content: {
|
|
1378
|
-
/**
|
|
1379
|
-
* @example {
|
|
1380
|
-
* "error": "internal_error",
|
|
1381
|
-
* "message": "Internal server error",
|
|
1382
|
-
* "statusCode": 500
|
|
1383
|
-
* }
|
|
1384
|
-
*/
|
|
1385
1260
|
"application/json": components["schemas"]["ApiError"];
|
|
1386
1261
|
};
|
|
1387
1262
|
};
|
|
@@ -1396,24 +1271,6 @@ interface operations {
|
|
|
1396
1271
|
};
|
|
1397
1272
|
requestBody: {
|
|
1398
1273
|
content: {
|
|
1399
|
-
/**
|
|
1400
|
-
* @example {
|
|
1401
|
-
* "content": "openapi: 3.1.0\ninfo:\n title: Payments API\n version: 1.0.0\npaths:\n /payments:\n get:\n operationId: listPayments\n responses:\n '200':\n description: OK\n",
|
|
1402
|
-
* "name": "payments-api",
|
|
1403
|
-
* "type": "openapi",
|
|
1404
|
-
* "description": "Payments service API",
|
|
1405
|
-
* "owner": "platform-team",
|
|
1406
|
-
* "sourceRepo": "https://github.com/acme/payments-service",
|
|
1407
|
-
* "tags": [
|
|
1408
|
-
* "payments",
|
|
1409
|
-
* "public"
|
|
1410
|
-
* ],
|
|
1411
|
-
* "gitRef": "a1b2c3d4",
|
|
1412
|
-
* "pushedBy": "github-actions[bot]",
|
|
1413
|
-
* "prerelease": false,
|
|
1414
|
-
* "force": false
|
|
1415
|
-
* }
|
|
1416
|
-
*/
|
|
1417
1274
|
"application/json": components["schemas"]["PushSpecRequest"];
|
|
1418
1275
|
};
|
|
1419
1276
|
};
|
|
@@ -1424,66 +1281,6 @@ interface operations {
|
|
|
1424
1281
|
[name: string]: unknown;
|
|
1425
1282
|
};
|
|
1426
1283
|
content: {
|
|
1427
|
-
/**
|
|
1428
|
-
* @example {
|
|
1429
|
-
* "data": {
|
|
1430
|
-
* "isNewSpec": false,
|
|
1431
|
-
* "spec": {
|
|
1432
|
-
* "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
1433
|
-
* "name": "payments-api",
|
|
1434
|
-
* "type": "openapi",
|
|
1435
|
-
* "description": "Payments service API",
|
|
1436
|
-
* "owner": "platform-team",
|
|
1437
|
-
* "sourceRepo": "https://github.com/acme/payments-service",
|
|
1438
|
-
* "tags": [
|
|
1439
|
-
* "payments",
|
|
1440
|
-
* "public"
|
|
1441
|
-
* ],
|
|
1442
|
-
* "createdAt": "2026-04-25T10:30:00.000Z",
|
|
1443
|
-
* "updatedAt": "2026-06-07T14:00:00.000Z"
|
|
1444
|
-
* },
|
|
1445
|
-
* "version": {
|
|
1446
|
-
* "id": "ver-uuid-3",
|
|
1447
|
-
* "specId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
1448
|
-
* "semver": "1.2.0",
|
|
1449
|
-
* "checksum": "sha256-ghi789",
|
|
1450
|
-
* "gitRef": "a1b2c3d4",
|
|
1451
|
-
* "pushedBy": "github-actions[bot]",
|
|
1452
|
-
* "previousVersion": "1.1.0",
|
|
1453
|
-
* "isPrerelease": false,
|
|
1454
|
-
* "createdAt": "2026-06-07T14:00:00.000Z",
|
|
1455
|
-
* "compatibility": {
|
|
1456
|
-
* "previousVersion": "1.1.0",
|
|
1457
|
-
* "classification": "minor",
|
|
1458
|
-
* "suggestedVersion": "1.2.0",
|
|
1459
|
-
* "breakingChanges": [],
|
|
1460
|
-
* "safeChanges": [
|
|
1461
|
-
* {
|
|
1462
|
-
* "id": "chg-1",
|
|
1463
|
-
* "rule": "endpoint-added",
|
|
1464
|
-
* "description": "Endpoint GET /payments/{id}/refunds added",
|
|
1465
|
-
* "path": "/payments/{id}/refunds/GET"
|
|
1466
|
-
* }
|
|
1467
|
-
* ]
|
|
1468
|
-
* }
|
|
1469
|
-
* },
|
|
1470
|
-
* "compatReport": {
|
|
1471
|
-
* "previousVersion": "1.1.0",
|
|
1472
|
-
* "classification": "minor",
|
|
1473
|
-
* "suggestedVersion": "1.2.0",
|
|
1474
|
-
* "breakingChanges": [],
|
|
1475
|
-
* "safeChanges": [
|
|
1476
|
-
* {
|
|
1477
|
-
* "id": "chg-1",
|
|
1478
|
-
* "rule": "endpoint-added",
|
|
1479
|
-
* "description": "Endpoint GET /payments/{id}/refunds added",
|
|
1480
|
-
* "path": "/payments/{id}/refunds/GET"
|
|
1481
|
-
* }
|
|
1482
|
-
* ]
|
|
1483
|
-
* }
|
|
1484
|
-
* }
|
|
1485
|
-
* }
|
|
1486
|
-
*/
|
|
1487
1284
|
"application/json": components["schemas"]["PushSpecResponse"];
|
|
1488
1285
|
};
|
|
1489
1286
|
};
|
|
@@ -1493,13 +1290,6 @@ interface operations {
|
|
|
1493
1290
|
[name: string]: unknown;
|
|
1494
1291
|
};
|
|
1495
1292
|
content: {
|
|
1496
|
-
/**
|
|
1497
|
-
* @example {
|
|
1498
|
-
* "error": "bad_request",
|
|
1499
|
-
* "message": "Missing required field: content",
|
|
1500
|
-
* "statusCode": 400
|
|
1501
|
-
* }
|
|
1502
|
-
*/
|
|
1503
1293
|
"application/json": components["schemas"]["ApiError"];
|
|
1504
1294
|
};
|
|
1505
1295
|
};
|
|
@@ -1509,13 +1299,6 @@ interface operations {
|
|
|
1509
1299
|
[name: string]: unknown;
|
|
1510
1300
|
};
|
|
1511
1301
|
content: {
|
|
1512
|
-
/**
|
|
1513
|
-
* @example {
|
|
1514
|
-
* "error": "unauthorized",
|
|
1515
|
-
* "message": "Invalid or missing bearer token",
|
|
1516
|
-
* "statusCode": 401
|
|
1517
|
-
* }
|
|
1518
|
-
*/
|
|
1519
1302
|
"application/json": components["schemas"]["ApiError"];
|
|
1520
1303
|
};
|
|
1521
1304
|
};
|
|
@@ -1525,13 +1308,6 @@ interface operations {
|
|
|
1525
1308
|
[name: string]: unknown;
|
|
1526
1309
|
};
|
|
1527
1310
|
content: {
|
|
1528
|
-
/**
|
|
1529
|
-
* @example {
|
|
1530
|
-
* "error": "forbidden",
|
|
1531
|
-
* "message": "Missing required scope: specs:write",
|
|
1532
|
-
* "statusCode": 403
|
|
1533
|
-
* }
|
|
1534
|
-
*/
|
|
1535
1311
|
"application/json": components["schemas"]["ApiError"];
|
|
1536
1312
|
};
|
|
1537
1313
|
};
|
|
@@ -1541,27 +1317,6 @@ interface operations {
|
|
|
1541
1317
|
[name: string]: unknown;
|
|
1542
1318
|
};
|
|
1543
1319
|
content: {
|
|
1544
|
-
/**
|
|
1545
|
-
* @example {
|
|
1546
|
-
* "error": "breaking_change",
|
|
1547
|
-
* "message": "Breaking changes detected. Use force: true with a reason to override.",
|
|
1548
|
-
* "statusCode": 409,
|
|
1549
|
-
* "compatReport": {
|
|
1550
|
-
* "previousVersion": "1.1.0",
|
|
1551
|
-
* "classification": "major",
|
|
1552
|
-
* "suggestedVersion": "2.0.0",
|
|
1553
|
-
* "breakingChanges": [
|
|
1554
|
-
* {
|
|
1555
|
-
* "id": "chg-2",
|
|
1556
|
-
* "rule": "response-property-removed",
|
|
1557
|
-
* "description": "Response property 'userId' was removed from GET /users/{id}",
|
|
1558
|
-
* "path": "/users/{id}/GET/response/200/userId"
|
|
1559
|
-
* }
|
|
1560
|
-
* ],
|
|
1561
|
-
* "safeChanges": []
|
|
1562
|
-
* }
|
|
1563
|
-
* }
|
|
1564
|
-
*/
|
|
1565
1320
|
"application/json": components["schemas"]["BreakingChangeError"];
|
|
1566
1321
|
};
|
|
1567
1322
|
};
|
|
@@ -1571,13 +1326,6 @@ interface operations {
|
|
|
1571
1326
|
[name: string]: unknown;
|
|
1572
1327
|
};
|
|
1573
1328
|
content: {
|
|
1574
|
-
/**
|
|
1575
|
-
* @example {
|
|
1576
|
-
* "error": "prerelease_constraint",
|
|
1577
|
-
* "message": "Cannot push pre-release version. payments-api@1.1.0 is already a release version.",
|
|
1578
|
-
* "statusCode": 422
|
|
1579
|
-
* }
|
|
1580
|
-
*/
|
|
1581
1329
|
"application/json": components["schemas"]["ApiError"];
|
|
1582
1330
|
};
|
|
1583
1331
|
};
|
|
@@ -1587,13 +1335,6 @@ interface operations {
|
|
|
1587
1335
|
[name: string]: unknown;
|
|
1588
1336
|
};
|
|
1589
1337
|
content: {
|
|
1590
|
-
/**
|
|
1591
|
-
* @example {
|
|
1592
|
-
* "error": "internal_error",
|
|
1593
|
-
* "message": "Internal server error",
|
|
1594
|
-
* "statusCode": 500
|
|
1595
|
-
* }
|
|
1596
|
-
*/
|
|
1597
1338
|
"application/json": components["schemas"]["ApiError"];
|
|
1598
1339
|
};
|
|
1599
1340
|
};
|
|
@@ -1604,10 +1345,7 @@ interface operations {
|
|
|
1604
1345
|
query?: never;
|
|
1605
1346
|
header?: never;
|
|
1606
1347
|
path: {
|
|
1607
|
-
/**
|
|
1608
|
-
* @description URL-friendly spec identifier
|
|
1609
|
-
* @example payments-api
|
|
1610
|
-
*/
|
|
1348
|
+
/** @description URL-friendly spec identifier */
|
|
1611
1349
|
name: components["parameters"]["specName"];
|
|
1612
1350
|
};
|
|
1613
1351
|
cookie?: never;
|
|
@@ -1620,37 +1358,6 @@ interface operations {
|
|
|
1620
1358
|
[name: string]: unknown;
|
|
1621
1359
|
};
|
|
1622
1360
|
content: {
|
|
1623
|
-
/**
|
|
1624
|
-
* @example {
|
|
1625
|
-
* "data": {
|
|
1626
|
-
* "spec": {
|
|
1627
|
-
* "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
1628
|
-
* "name": "payments-api",
|
|
1629
|
-
* "type": "openapi",
|
|
1630
|
-
* "description": "Payments service API",
|
|
1631
|
-
* "owner": "platform-team",
|
|
1632
|
-
* "sourceRepo": "https://github.com/acme/payments-service",
|
|
1633
|
-
* "tags": [
|
|
1634
|
-
* "payments",
|
|
1635
|
-
* "public"
|
|
1636
|
-
* ],
|
|
1637
|
-
* "createdAt": "2026-04-25T10:30:00.000Z",
|
|
1638
|
-
* "updatedAt": "2026-06-07T14:00:00.000Z"
|
|
1639
|
-
* },
|
|
1640
|
-
* "latestVersion": {
|
|
1641
|
-
* "id": "ver-uuid-1",
|
|
1642
|
-
* "specId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
1643
|
-
* "semver": "1.2.0",
|
|
1644
|
-
* "checksum": "sha256-abc123",
|
|
1645
|
-
* "gitRef": "a1b2c3d4",
|
|
1646
|
-
* "pushedBy": "github-actions[bot]",
|
|
1647
|
-
* "previousVersion": "1.1.0",
|
|
1648
|
-
* "isPrerelease": false,
|
|
1649
|
-
* "createdAt": "2026-06-07T14:00:00.000Z"
|
|
1650
|
-
* }
|
|
1651
|
-
* }
|
|
1652
|
-
* }
|
|
1653
|
-
*/
|
|
1654
1361
|
"application/json": components["schemas"]["GetSpecResponse"];
|
|
1655
1362
|
};
|
|
1656
1363
|
};
|
|
@@ -1660,13 +1367,6 @@ interface operations {
|
|
|
1660
1367
|
[name: string]: unknown;
|
|
1661
1368
|
};
|
|
1662
1369
|
content: {
|
|
1663
|
-
/**
|
|
1664
|
-
* @example {
|
|
1665
|
-
* "error": "unauthorized",
|
|
1666
|
-
* "message": "Invalid or missing bearer token",
|
|
1667
|
-
* "statusCode": 401
|
|
1668
|
-
* }
|
|
1669
|
-
*/
|
|
1670
1370
|
"application/json": components["schemas"]["ApiError"];
|
|
1671
1371
|
};
|
|
1672
1372
|
};
|
|
@@ -1676,13 +1376,6 @@ interface operations {
|
|
|
1676
1376
|
[name: string]: unknown;
|
|
1677
1377
|
};
|
|
1678
1378
|
content: {
|
|
1679
|
-
/**
|
|
1680
|
-
* @example {
|
|
1681
|
-
* "error": "forbidden",
|
|
1682
|
-
* "message": "Missing required scope: specs:write",
|
|
1683
|
-
* "statusCode": 403
|
|
1684
|
-
* }
|
|
1685
|
-
*/
|
|
1686
1379
|
"application/json": components["schemas"]["ApiError"];
|
|
1687
1380
|
};
|
|
1688
1381
|
};
|
|
@@ -1692,13 +1385,6 @@ interface operations {
|
|
|
1692
1385
|
[name: string]: unknown;
|
|
1693
1386
|
};
|
|
1694
1387
|
content: {
|
|
1695
|
-
/**
|
|
1696
|
-
* @example {
|
|
1697
|
-
* "error": "not_found",
|
|
1698
|
-
* "message": "Spec \"payments-api\" not found",
|
|
1699
|
-
* "statusCode": 404
|
|
1700
|
-
* }
|
|
1701
|
-
*/
|
|
1702
1388
|
"application/json": components["schemas"]["ApiError"];
|
|
1703
1389
|
};
|
|
1704
1390
|
};
|
|
@@ -1708,13 +1394,6 @@ interface operations {
|
|
|
1708
1394
|
[name: string]: unknown;
|
|
1709
1395
|
};
|
|
1710
1396
|
content: {
|
|
1711
|
-
/**
|
|
1712
|
-
* @example {
|
|
1713
|
-
* "error": "internal_error",
|
|
1714
|
-
* "message": "Internal server error",
|
|
1715
|
-
* "statusCode": 500
|
|
1716
|
-
* }
|
|
1717
|
-
*/
|
|
1718
1397
|
"application/json": components["schemas"]["ApiError"];
|
|
1719
1398
|
};
|
|
1720
1399
|
};
|
|
@@ -1725,10 +1404,7 @@ interface operations {
|
|
|
1725
1404
|
query?: never;
|
|
1726
1405
|
header?: never;
|
|
1727
1406
|
path: {
|
|
1728
|
-
/**
|
|
1729
|
-
* @description URL-friendly spec identifier
|
|
1730
|
-
* @example payments-api
|
|
1731
|
-
*/
|
|
1407
|
+
/** @description URL-friendly spec identifier */
|
|
1732
1408
|
name: components["parameters"]["specName"];
|
|
1733
1409
|
};
|
|
1734
1410
|
cookie?: never;
|
|
@@ -1748,13 +1424,6 @@ interface operations {
|
|
|
1748
1424
|
[name: string]: unknown;
|
|
1749
1425
|
};
|
|
1750
1426
|
content: {
|
|
1751
|
-
/**
|
|
1752
|
-
* @example {
|
|
1753
|
-
* "error": "unauthorized",
|
|
1754
|
-
* "message": "Invalid or missing bearer token",
|
|
1755
|
-
* "statusCode": 401
|
|
1756
|
-
* }
|
|
1757
|
-
*/
|
|
1758
1427
|
"application/json": components["schemas"]["ApiError"];
|
|
1759
1428
|
};
|
|
1760
1429
|
};
|
|
@@ -1764,13 +1433,6 @@ interface operations {
|
|
|
1764
1433
|
[name: string]: unknown;
|
|
1765
1434
|
};
|
|
1766
1435
|
content: {
|
|
1767
|
-
/**
|
|
1768
|
-
* @example {
|
|
1769
|
-
* "error": "forbidden",
|
|
1770
|
-
* "message": "Missing required scope: specs:write",
|
|
1771
|
-
* "statusCode": 403
|
|
1772
|
-
* }
|
|
1773
|
-
*/
|
|
1774
1436
|
"application/json": components["schemas"]["ApiError"];
|
|
1775
1437
|
};
|
|
1776
1438
|
};
|
|
@@ -1780,13 +1442,6 @@ interface operations {
|
|
|
1780
1442
|
[name: string]: unknown;
|
|
1781
1443
|
};
|
|
1782
1444
|
content: {
|
|
1783
|
-
/**
|
|
1784
|
-
* @example {
|
|
1785
|
-
* "error": "not_found",
|
|
1786
|
-
* "message": "Spec \"payments-api\" not found",
|
|
1787
|
-
* "statusCode": 404
|
|
1788
|
-
* }
|
|
1789
|
-
*/
|
|
1790
1445
|
"application/json": components["schemas"]["ApiError"];
|
|
1791
1446
|
};
|
|
1792
1447
|
};
|
|
@@ -1796,13 +1451,6 @@ interface operations {
|
|
|
1796
1451
|
[name: string]: unknown;
|
|
1797
1452
|
};
|
|
1798
1453
|
content: {
|
|
1799
|
-
/**
|
|
1800
|
-
* @example {
|
|
1801
|
-
* "error": "internal_error",
|
|
1802
|
-
* "message": "Internal server error",
|
|
1803
|
-
* "statusCode": 500
|
|
1804
|
-
* }
|
|
1805
|
-
*/
|
|
1806
1454
|
"application/json": components["schemas"]["ApiError"];
|
|
1807
1455
|
};
|
|
1808
1456
|
};
|
|
@@ -1813,21 +1461,13 @@ interface operations {
|
|
|
1813
1461
|
query?: never;
|
|
1814
1462
|
header?: never;
|
|
1815
1463
|
path: {
|
|
1816
|
-
/**
|
|
1817
|
-
* @description URL-friendly spec identifier
|
|
1818
|
-
* @example payments-api
|
|
1819
|
-
*/
|
|
1464
|
+
/** @description URL-friendly spec identifier */
|
|
1820
1465
|
name: components["parameters"]["specName"];
|
|
1821
1466
|
};
|
|
1822
1467
|
cookie?: never;
|
|
1823
1468
|
};
|
|
1824
1469
|
requestBody: {
|
|
1825
1470
|
content: {
|
|
1826
|
-
/**
|
|
1827
|
-
* @example {
|
|
1828
|
-
* "content": "openapi: 3.1.0\ninfo:\n title: Payments API\n version: 1.0.0\npaths:\n /payments:\n get:\n operationId: listPayments\n responses:\n '200':\n description: OK\n"
|
|
1829
|
-
* }
|
|
1830
|
-
*/
|
|
1831
1471
|
"application/json": components["schemas"]["ValidateSpecRequest"];
|
|
1832
1472
|
};
|
|
1833
1473
|
};
|
|
@@ -1838,28 +1478,6 @@ interface operations {
|
|
|
1838
1478
|
[name: string]: unknown;
|
|
1839
1479
|
};
|
|
1840
1480
|
content: {
|
|
1841
|
-
/**
|
|
1842
|
-
* @example {
|
|
1843
|
-
* "data": {
|
|
1844
|
-
* "valid": true,
|
|
1845
|
-
* "compatReport": {
|
|
1846
|
-
* "previousVersion": "1.1.0",
|
|
1847
|
-
* "classification": "minor",
|
|
1848
|
-
* "suggestedVersion": "1.2.0",
|
|
1849
|
-
* "breakingChanges": [],
|
|
1850
|
-
* "safeChanges": [
|
|
1851
|
-
* {
|
|
1852
|
-
* "id": "chg-1",
|
|
1853
|
-
* "rule": "endpoint-added",
|
|
1854
|
-
* "description": "Endpoint GET /payments/{id}/refunds added",
|
|
1855
|
-
* "path": "/payments/{id}/refunds/GET"
|
|
1856
|
-
* }
|
|
1857
|
-
* ]
|
|
1858
|
-
* },
|
|
1859
|
-
* "warnings": []
|
|
1860
|
-
* }
|
|
1861
|
-
* }
|
|
1862
|
-
*/
|
|
1863
1481
|
"application/json": components["schemas"]["ValidateSpecResponse"];
|
|
1864
1482
|
};
|
|
1865
1483
|
};
|
|
@@ -1869,13 +1487,6 @@ interface operations {
|
|
|
1869
1487
|
[name: string]: unknown;
|
|
1870
1488
|
};
|
|
1871
1489
|
content: {
|
|
1872
|
-
/**
|
|
1873
|
-
* @example {
|
|
1874
|
-
* "error": "bad_request",
|
|
1875
|
-
* "message": "Request body must be valid JSON",
|
|
1876
|
-
* "statusCode": 400
|
|
1877
|
-
* }
|
|
1878
|
-
*/
|
|
1879
1490
|
"application/json": components["schemas"]["ApiError"];
|
|
1880
1491
|
};
|
|
1881
1492
|
};
|
|
@@ -1885,13 +1496,6 @@ interface operations {
|
|
|
1885
1496
|
[name: string]: unknown;
|
|
1886
1497
|
};
|
|
1887
1498
|
content: {
|
|
1888
|
-
/**
|
|
1889
|
-
* @example {
|
|
1890
|
-
* "error": "unauthorized",
|
|
1891
|
-
* "message": "Invalid or missing bearer token",
|
|
1892
|
-
* "statusCode": 401
|
|
1893
|
-
* }
|
|
1894
|
-
*/
|
|
1895
1499
|
"application/json": components["schemas"]["ApiError"];
|
|
1896
1500
|
};
|
|
1897
1501
|
};
|
|
@@ -1901,13 +1505,6 @@ interface operations {
|
|
|
1901
1505
|
[name: string]: unknown;
|
|
1902
1506
|
};
|
|
1903
1507
|
content: {
|
|
1904
|
-
/**
|
|
1905
|
-
* @example {
|
|
1906
|
-
* "error": "forbidden",
|
|
1907
|
-
* "message": "Missing required scope: specs:write",
|
|
1908
|
-
* "statusCode": 403
|
|
1909
|
-
* }
|
|
1910
|
-
*/
|
|
1911
1508
|
"application/json": components["schemas"]["ApiError"];
|
|
1912
1509
|
};
|
|
1913
1510
|
};
|
|
@@ -1917,13 +1514,6 @@ interface operations {
|
|
|
1917
1514
|
[name: string]: unknown;
|
|
1918
1515
|
};
|
|
1919
1516
|
content: {
|
|
1920
|
-
/**
|
|
1921
|
-
* @example {
|
|
1922
|
-
* "error": "not_found",
|
|
1923
|
-
* "message": "Spec \"payments-api\" not found",
|
|
1924
|
-
* "statusCode": 404
|
|
1925
|
-
* }
|
|
1926
|
-
*/
|
|
1927
1517
|
"application/json": components["schemas"]["ApiError"];
|
|
1928
1518
|
};
|
|
1929
1519
|
};
|
|
@@ -1933,13 +1523,6 @@ interface operations {
|
|
|
1933
1523
|
[name: string]: unknown;
|
|
1934
1524
|
};
|
|
1935
1525
|
content: {
|
|
1936
|
-
/**
|
|
1937
|
-
* @example {
|
|
1938
|
-
* "error": "internal_error",
|
|
1939
|
-
* "message": "Internal server error",
|
|
1940
|
-
* "statusCode": 500
|
|
1941
|
-
* }
|
|
1942
|
-
*/
|
|
1943
1526
|
"application/json": components["schemas"]["ApiError"];
|
|
1944
1527
|
};
|
|
1945
1528
|
};
|
|
@@ -1955,10 +1538,7 @@ interface operations {
|
|
|
1955
1538
|
};
|
|
1956
1539
|
header?: never;
|
|
1957
1540
|
path: {
|
|
1958
|
-
/**
|
|
1959
|
-
* @description URL-friendly spec identifier
|
|
1960
|
-
* @example payments-api
|
|
1961
|
-
*/
|
|
1541
|
+
/** @description URL-friendly spec identifier */
|
|
1962
1542
|
name: components["parameters"]["specName"];
|
|
1963
1543
|
};
|
|
1964
1544
|
cookie?: never;
|
|
@@ -1971,40 +1551,6 @@ interface operations {
|
|
|
1971
1551
|
[name: string]: unknown;
|
|
1972
1552
|
};
|
|
1973
1553
|
content: {
|
|
1974
|
-
/**
|
|
1975
|
-
* @example {
|
|
1976
|
-
* "data": [
|
|
1977
|
-
* {
|
|
1978
|
-
* "id": "ver-uuid-1",
|
|
1979
|
-
* "specId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
1980
|
-
* "semver": "1.2.0",
|
|
1981
|
-
* "checksum": "sha256-abc123",
|
|
1982
|
-
* "gitRef": "a1b2c3d4",
|
|
1983
|
-
* "pushedBy": "github-actions[bot]",
|
|
1984
|
-
* "previousVersion": "1.1.0",
|
|
1985
|
-
* "isPrerelease": false,
|
|
1986
|
-
* "createdAt": "2026-06-07T14:00:00.000Z"
|
|
1987
|
-
* },
|
|
1988
|
-
* {
|
|
1989
|
-
* "id": "ver-uuid-0",
|
|
1990
|
-
* "specId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
1991
|
-
* "semver": "1.1.0",
|
|
1992
|
-
* "checksum": "sha256-old456",
|
|
1993
|
-
* "gitRef": "b2c3d4e5",
|
|
1994
|
-
* "pushedBy": "github-actions[bot]",
|
|
1995
|
-
* "previousVersion": "1.0.0",
|
|
1996
|
-
* "isPrerelease": false,
|
|
1997
|
-
* "createdAt": "2026-05-01T09:00:00.000Z"
|
|
1998
|
-
* }
|
|
1999
|
-
* ],
|
|
2000
|
-
* "pagination": {
|
|
2001
|
-
* "hasMore": false,
|
|
2002
|
-
* "limit": 10,
|
|
2003
|
-
* "offset": 0,
|
|
2004
|
-
* "total": 2
|
|
2005
|
-
* }
|
|
2006
|
-
* }
|
|
2007
|
-
*/
|
|
2008
1554
|
"application/json": components["schemas"]["VersionsPage"];
|
|
2009
1555
|
};
|
|
2010
1556
|
};
|
|
@@ -2014,13 +1560,6 @@ interface operations {
|
|
|
2014
1560
|
[name: string]: unknown;
|
|
2015
1561
|
};
|
|
2016
1562
|
content: {
|
|
2017
|
-
/**
|
|
2018
|
-
* @example {
|
|
2019
|
-
* "error": "unauthorized",
|
|
2020
|
-
* "message": "Invalid or missing bearer token",
|
|
2021
|
-
* "statusCode": 401
|
|
2022
|
-
* }
|
|
2023
|
-
*/
|
|
2024
1563
|
"application/json": components["schemas"]["ApiError"];
|
|
2025
1564
|
};
|
|
2026
1565
|
};
|
|
@@ -2030,13 +1569,6 @@ interface operations {
|
|
|
2030
1569
|
[name: string]: unknown;
|
|
2031
1570
|
};
|
|
2032
1571
|
content: {
|
|
2033
|
-
/**
|
|
2034
|
-
* @example {
|
|
2035
|
-
* "error": "forbidden",
|
|
2036
|
-
* "message": "Missing required scope: specs:write",
|
|
2037
|
-
* "statusCode": 403
|
|
2038
|
-
* }
|
|
2039
|
-
*/
|
|
2040
1572
|
"application/json": components["schemas"]["ApiError"];
|
|
2041
1573
|
};
|
|
2042
1574
|
};
|
|
@@ -2046,13 +1578,6 @@ interface operations {
|
|
|
2046
1578
|
[name: string]: unknown;
|
|
2047
1579
|
};
|
|
2048
1580
|
content: {
|
|
2049
|
-
/**
|
|
2050
|
-
* @example {
|
|
2051
|
-
* "error": "not_found",
|
|
2052
|
-
* "message": "Spec \"payments-api\" not found",
|
|
2053
|
-
* "statusCode": 404
|
|
2054
|
-
* }
|
|
2055
|
-
*/
|
|
2056
1581
|
"application/json": components["schemas"]["ApiError"];
|
|
2057
1582
|
};
|
|
2058
1583
|
};
|
|
@@ -2062,13 +1587,6 @@ interface operations {
|
|
|
2062
1587
|
[name: string]: unknown;
|
|
2063
1588
|
};
|
|
2064
1589
|
content: {
|
|
2065
|
-
/**
|
|
2066
|
-
* @example {
|
|
2067
|
-
* "error": "internal_error",
|
|
2068
|
-
* "message": "Internal server error",
|
|
2069
|
-
* "statusCode": 500
|
|
2070
|
-
* }
|
|
2071
|
-
*/
|
|
2072
1590
|
"application/json": components["schemas"]["ApiError"];
|
|
2073
1591
|
};
|
|
2074
1592
|
};
|
|
@@ -2079,15 +1597,9 @@ interface operations {
|
|
|
2079
1597
|
query?: never;
|
|
2080
1598
|
header?: never;
|
|
2081
1599
|
path: {
|
|
2082
|
-
/**
|
|
2083
|
-
* @description URL-friendly spec identifier
|
|
2084
|
-
* @example payments-api
|
|
2085
|
-
*/
|
|
1600
|
+
/** @description URL-friendly spec identifier */
|
|
2086
1601
|
name: components["parameters"]["specName"];
|
|
2087
|
-
/**
|
|
2088
|
-
* @description Semantic version
|
|
2089
|
-
* @example 1.2.0
|
|
2090
|
-
*/
|
|
1602
|
+
/** @description Semantic version */
|
|
2091
1603
|
semver: components["parameters"]["semver"];
|
|
2092
1604
|
};
|
|
2093
1605
|
cookie?: never;
|
|
@@ -2100,21 +1612,6 @@ interface operations {
|
|
|
2100
1612
|
[name: string]: unknown;
|
|
2101
1613
|
};
|
|
2102
1614
|
content: {
|
|
2103
|
-
/**
|
|
2104
|
-
* @example {
|
|
2105
|
-
* "data": {
|
|
2106
|
-
* "id": "ver-uuid-1",
|
|
2107
|
-
* "specId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
2108
|
-
* "semver": "1.2.0",
|
|
2109
|
-
* "checksum": "sha256-abc123",
|
|
2110
|
-
* "gitRef": "a1b2c3d4",
|
|
2111
|
-
* "pushedBy": "github-actions[bot]",
|
|
2112
|
-
* "previousVersion": "1.1.0",
|
|
2113
|
-
* "isPrerelease": false,
|
|
2114
|
-
* "createdAt": "2026-06-07T14:00:00.000Z"
|
|
2115
|
-
* }
|
|
2116
|
-
* }
|
|
2117
|
-
*/
|
|
2118
1615
|
"application/json": components["schemas"]["GetVersionResponse"];
|
|
2119
1616
|
};
|
|
2120
1617
|
};
|
|
@@ -2124,13 +1621,6 @@ interface operations {
|
|
|
2124
1621
|
[name: string]: unknown;
|
|
2125
1622
|
};
|
|
2126
1623
|
content: {
|
|
2127
|
-
/**
|
|
2128
|
-
* @example {
|
|
2129
|
-
* "error": "unauthorized",
|
|
2130
|
-
* "message": "Invalid or missing bearer token",
|
|
2131
|
-
* "statusCode": 401
|
|
2132
|
-
* }
|
|
2133
|
-
*/
|
|
2134
1624
|
"application/json": components["schemas"]["ApiError"];
|
|
2135
1625
|
};
|
|
2136
1626
|
};
|
|
@@ -2140,13 +1630,6 @@ interface operations {
|
|
|
2140
1630
|
[name: string]: unknown;
|
|
2141
1631
|
};
|
|
2142
1632
|
content: {
|
|
2143
|
-
/**
|
|
2144
|
-
* @example {
|
|
2145
|
-
* "error": "forbidden",
|
|
2146
|
-
* "message": "Missing required scope: specs:write",
|
|
2147
|
-
* "statusCode": 403
|
|
2148
|
-
* }
|
|
2149
|
-
*/
|
|
2150
1633
|
"application/json": components["schemas"]["ApiError"];
|
|
2151
1634
|
};
|
|
2152
1635
|
};
|
|
@@ -2156,13 +1639,6 @@ interface operations {
|
|
|
2156
1639
|
[name: string]: unknown;
|
|
2157
1640
|
};
|
|
2158
1641
|
content: {
|
|
2159
|
-
/**
|
|
2160
|
-
* @example {
|
|
2161
|
-
* "error": "not_found",
|
|
2162
|
-
* "message": "Version 9.9.9 not found for spec \"payments-api\"",
|
|
2163
|
-
* "statusCode": 404
|
|
2164
|
-
* }
|
|
2165
|
-
*/
|
|
2166
1642
|
"application/json": components["schemas"]["ApiError"];
|
|
2167
1643
|
};
|
|
2168
1644
|
};
|
|
@@ -2172,13 +1648,6 @@ interface operations {
|
|
|
2172
1648
|
[name: string]: unknown;
|
|
2173
1649
|
};
|
|
2174
1650
|
content: {
|
|
2175
|
-
/**
|
|
2176
|
-
* @example {
|
|
2177
|
-
* "error": "internal_error",
|
|
2178
|
-
* "message": "Internal server error",
|
|
2179
|
-
* "statusCode": 500
|
|
2180
|
-
* }
|
|
2181
|
-
*/
|
|
2182
1651
|
"application/json": components["schemas"]["ApiError"];
|
|
2183
1652
|
};
|
|
2184
1653
|
};
|
|
@@ -2189,10 +1658,7 @@ interface operations {
|
|
|
2189
1658
|
query?: never;
|
|
2190
1659
|
header?: never;
|
|
2191
1660
|
path: {
|
|
2192
|
-
/**
|
|
2193
|
-
* @description URL-friendly spec identifier
|
|
2194
|
-
* @example payments-api
|
|
2195
|
-
*/
|
|
1661
|
+
/** @description URL-friendly spec identifier */
|
|
2196
1662
|
name: components["parameters"]["specName"];
|
|
2197
1663
|
};
|
|
2198
1664
|
cookie?: never;
|
|
@@ -2215,13 +1681,6 @@ interface operations {
|
|
|
2215
1681
|
[name: string]: unknown;
|
|
2216
1682
|
};
|
|
2217
1683
|
content: {
|
|
2218
|
-
/**
|
|
2219
|
-
* @example {
|
|
2220
|
-
* "error": "unauthorized",
|
|
2221
|
-
* "message": "Invalid or missing bearer token",
|
|
2222
|
-
* "statusCode": 401
|
|
2223
|
-
* }
|
|
2224
|
-
*/
|
|
2225
1684
|
"application/json": components["schemas"]["ApiError"];
|
|
2226
1685
|
};
|
|
2227
1686
|
};
|
|
@@ -2231,13 +1690,6 @@ interface operations {
|
|
|
2231
1690
|
[name: string]: unknown;
|
|
2232
1691
|
};
|
|
2233
1692
|
content: {
|
|
2234
|
-
/**
|
|
2235
|
-
* @example {
|
|
2236
|
-
* "error": "forbidden",
|
|
2237
|
-
* "message": "Missing required scope: specs:write",
|
|
2238
|
-
* "statusCode": 403
|
|
2239
|
-
* }
|
|
2240
|
-
*/
|
|
2241
1693
|
"application/json": components["schemas"]["ApiError"];
|
|
2242
1694
|
};
|
|
2243
1695
|
};
|
|
@@ -2247,13 +1699,6 @@ interface operations {
|
|
|
2247
1699
|
[name: string]: unknown;
|
|
2248
1700
|
};
|
|
2249
1701
|
content: {
|
|
2250
|
-
/**
|
|
2251
|
-
* @example {
|
|
2252
|
-
* "error": "not_found",
|
|
2253
|
-
* "message": "Spec \"payments-api\" not found",
|
|
2254
|
-
* "statusCode": 404
|
|
2255
|
-
* }
|
|
2256
|
-
*/
|
|
2257
1702
|
"application/json": components["schemas"]["ApiError"];
|
|
2258
1703
|
};
|
|
2259
1704
|
};
|
|
@@ -2263,13 +1708,6 @@ interface operations {
|
|
|
2263
1708
|
[name: string]: unknown;
|
|
2264
1709
|
};
|
|
2265
1710
|
content: {
|
|
2266
|
-
/**
|
|
2267
|
-
* @example {
|
|
2268
|
-
* "error": "internal_error",
|
|
2269
|
-
* "message": "Internal server error",
|
|
2270
|
-
* "statusCode": 500
|
|
2271
|
-
* }
|
|
2272
|
-
*/
|
|
2273
1711
|
"application/json": components["schemas"]["ApiError"];
|
|
2274
1712
|
};
|
|
2275
1713
|
};
|
|
@@ -2280,10 +1718,7 @@ interface operations {
|
|
|
2280
1718
|
query?: never;
|
|
2281
1719
|
header?: never;
|
|
2282
1720
|
path: {
|
|
2283
|
-
/**
|
|
2284
|
-
* @description URL-friendly spec identifier
|
|
2285
|
-
* @example payments-api
|
|
2286
|
-
*/
|
|
1721
|
+
/** @description URL-friendly spec identifier */
|
|
2287
1722
|
name: components["parameters"]["specName"];
|
|
2288
1723
|
};
|
|
2289
1724
|
cookie?: never;
|
|
@@ -2306,13 +1741,6 @@ interface operations {
|
|
|
2306
1741
|
[name: string]: unknown;
|
|
2307
1742
|
};
|
|
2308
1743
|
content: {
|
|
2309
|
-
/**
|
|
2310
|
-
* @example {
|
|
2311
|
-
* "error": "unauthorized",
|
|
2312
|
-
* "message": "Invalid or missing bearer token",
|
|
2313
|
-
* "statusCode": 401
|
|
2314
|
-
* }
|
|
2315
|
-
*/
|
|
2316
1744
|
"application/json": components["schemas"]["ApiError"];
|
|
2317
1745
|
};
|
|
2318
1746
|
};
|
|
@@ -2322,13 +1750,6 @@ interface operations {
|
|
|
2322
1750
|
[name: string]: unknown;
|
|
2323
1751
|
};
|
|
2324
1752
|
content: {
|
|
2325
|
-
/**
|
|
2326
|
-
* @example {
|
|
2327
|
-
* "error": "forbidden",
|
|
2328
|
-
* "message": "Missing required scope: specs:write",
|
|
2329
|
-
* "statusCode": 403
|
|
2330
|
-
* }
|
|
2331
|
-
*/
|
|
2332
1753
|
"application/json": components["schemas"]["ApiError"];
|
|
2333
1754
|
};
|
|
2334
1755
|
};
|
|
@@ -2338,13 +1759,6 @@ interface operations {
|
|
|
2338
1759
|
[name: string]: unknown;
|
|
2339
1760
|
};
|
|
2340
1761
|
content: {
|
|
2341
|
-
/**
|
|
2342
|
-
* @example {
|
|
2343
|
-
* "error": "not_found",
|
|
2344
|
-
* "message": "Spec \"payments-api\" not found",
|
|
2345
|
-
* "statusCode": 404
|
|
2346
|
-
* }
|
|
2347
|
-
*/
|
|
2348
1762
|
"application/json": components["schemas"]["ApiError"];
|
|
2349
1763
|
};
|
|
2350
1764
|
};
|
|
@@ -2354,13 +1768,6 @@ interface operations {
|
|
|
2354
1768
|
[name: string]: unknown;
|
|
2355
1769
|
};
|
|
2356
1770
|
content: {
|
|
2357
|
-
/**
|
|
2358
|
-
* @example {
|
|
2359
|
-
* "error": "internal_error",
|
|
2360
|
-
* "message": "Internal server error",
|
|
2361
|
-
* "statusCode": 500
|
|
2362
|
-
* }
|
|
2363
|
-
*/
|
|
2364
1771
|
"application/json": components["schemas"]["ApiError"];
|
|
2365
1772
|
};
|
|
2366
1773
|
};
|
|
@@ -2371,15 +1778,9 @@ interface operations {
|
|
|
2371
1778
|
query?: never;
|
|
2372
1779
|
header?: never;
|
|
2373
1780
|
path: {
|
|
2374
|
-
/**
|
|
2375
|
-
* @description URL-friendly spec identifier
|
|
2376
|
-
* @example payments-api
|
|
2377
|
-
*/
|
|
1781
|
+
/** @description URL-friendly spec identifier */
|
|
2378
1782
|
name: components["parameters"]["specName"];
|
|
2379
|
-
/**
|
|
2380
|
-
* @description Semantic version
|
|
2381
|
-
* @example 1.2.0
|
|
2382
|
-
*/
|
|
1783
|
+
/** @description Semantic version */
|
|
2383
1784
|
semver: components["parameters"]["semver"];
|
|
2384
1785
|
};
|
|
2385
1786
|
cookie?: never;
|
|
@@ -2402,13 +1803,6 @@ interface operations {
|
|
|
2402
1803
|
[name: string]: unknown;
|
|
2403
1804
|
};
|
|
2404
1805
|
content: {
|
|
2405
|
-
/**
|
|
2406
|
-
* @example {
|
|
2407
|
-
* "error": "unauthorized",
|
|
2408
|
-
* "message": "Invalid or missing bearer token",
|
|
2409
|
-
* "statusCode": 401
|
|
2410
|
-
* }
|
|
2411
|
-
*/
|
|
2412
1806
|
"application/json": components["schemas"]["ApiError"];
|
|
2413
1807
|
};
|
|
2414
1808
|
};
|
|
@@ -2418,13 +1812,6 @@ interface operations {
|
|
|
2418
1812
|
[name: string]: unknown;
|
|
2419
1813
|
};
|
|
2420
1814
|
content: {
|
|
2421
|
-
/**
|
|
2422
|
-
* @example {
|
|
2423
|
-
* "error": "forbidden",
|
|
2424
|
-
* "message": "Missing required scope: specs:write",
|
|
2425
|
-
* "statusCode": 403
|
|
2426
|
-
* }
|
|
2427
|
-
*/
|
|
2428
1815
|
"application/json": components["schemas"]["ApiError"];
|
|
2429
1816
|
};
|
|
2430
1817
|
};
|
|
@@ -2434,13 +1821,6 @@ interface operations {
|
|
|
2434
1821
|
[name: string]: unknown;
|
|
2435
1822
|
};
|
|
2436
1823
|
content: {
|
|
2437
|
-
/**
|
|
2438
|
-
* @example {
|
|
2439
|
-
* "error": "not_found",
|
|
2440
|
-
* "message": "Version 9.9.9 not found for spec \"payments-api\"",
|
|
2441
|
-
* "statusCode": 404
|
|
2442
|
-
* }
|
|
2443
|
-
*/
|
|
2444
1824
|
"application/json": components["schemas"]["ApiError"];
|
|
2445
1825
|
};
|
|
2446
1826
|
};
|
|
@@ -2450,13 +1830,6 @@ interface operations {
|
|
|
2450
1830
|
[name: string]: unknown;
|
|
2451
1831
|
};
|
|
2452
1832
|
content: {
|
|
2453
|
-
/**
|
|
2454
|
-
* @example {
|
|
2455
|
-
* "error": "internal_error",
|
|
2456
|
-
* "message": "Internal server error",
|
|
2457
|
-
* "statusCode": 500
|
|
2458
|
-
* }
|
|
2459
|
-
*/
|
|
2460
1833
|
"application/json": components["schemas"]["ApiError"];
|
|
2461
1834
|
};
|
|
2462
1835
|
};
|
|
@@ -2467,15 +1840,9 @@ interface operations {
|
|
|
2467
1840
|
query?: never;
|
|
2468
1841
|
header?: never;
|
|
2469
1842
|
path: {
|
|
2470
|
-
/**
|
|
2471
|
-
* @description URL-friendly spec identifier
|
|
2472
|
-
* @example payments-api
|
|
2473
|
-
*/
|
|
1843
|
+
/** @description URL-friendly spec identifier */
|
|
2474
1844
|
name: components["parameters"]["specName"];
|
|
2475
|
-
/**
|
|
2476
|
-
* @description Semantic version
|
|
2477
|
-
* @example 1.2.0
|
|
2478
|
-
*/
|
|
1845
|
+
/** @description Semantic version */
|
|
2479
1846
|
semver: components["parameters"]["semver"];
|
|
2480
1847
|
};
|
|
2481
1848
|
cookie?: never;
|
|
@@ -2498,13 +1865,6 @@ interface operations {
|
|
|
2498
1865
|
[name: string]: unknown;
|
|
2499
1866
|
};
|
|
2500
1867
|
content: {
|
|
2501
|
-
/**
|
|
2502
|
-
* @example {
|
|
2503
|
-
* "error": "unauthorized",
|
|
2504
|
-
* "message": "Invalid or missing bearer token",
|
|
2505
|
-
* "statusCode": 401
|
|
2506
|
-
* }
|
|
2507
|
-
*/
|
|
2508
1868
|
"application/json": components["schemas"]["ApiError"];
|
|
2509
1869
|
};
|
|
2510
1870
|
};
|
|
@@ -2514,13 +1874,6 @@ interface operations {
|
|
|
2514
1874
|
[name: string]: unknown;
|
|
2515
1875
|
};
|
|
2516
1876
|
content: {
|
|
2517
|
-
/**
|
|
2518
|
-
* @example {
|
|
2519
|
-
* "error": "forbidden",
|
|
2520
|
-
* "message": "Missing required scope: specs:write",
|
|
2521
|
-
* "statusCode": 403
|
|
2522
|
-
* }
|
|
2523
|
-
*/
|
|
2524
1877
|
"application/json": components["schemas"]["ApiError"];
|
|
2525
1878
|
};
|
|
2526
1879
|
};
|
|
@@ -2530,13 +1883,6 @@ interface operations {
|
|
|
2530
1883
|
[name: string]: unknown;
|
|
2531
1884
|
};
|
|
2532
1885
|
content: {
|
|
2533
|
-
/**
|
|
2534
|
-
* @example {
|
|
2535
|
-
* "error": "not_found",
|
|
2536
|
-
* "message": "Version 9.9.9 not found for spec \"payments-api\"",
|
|
2537
|
-
* "statusCode": 404
|
|
2538
|
-
* }
|
|
2539
|
-
*/
|
|
2540
1886
|
"application/json": components["schemas"]["ApiError"];
|
|
2541
1887
|
};
|
|
2542
1888
|
};
|
|
@@ -2546,13 +1892,6 @@ interface operations {
|
|
|
2546
1892
|
[name: string]: unknown;
|
|
2547
1893
|
};
|
|
2548
1894
|
content: {
|
|
2549
|
-
/**
|
|
2550
|
-
* @example {
|
|
2551
|
-
* "error": "internal_error",
|
|
2552
|
-
* "message": "Internal server error",
|
|
2553
|
-
* "statusCode": 500
|
|
2554
|
-
* }
|
|
2555
|
-
*/
|
|
2556
1895
|
"application/json": components["schemas"]["ApiError"];
|
|
2557
1896
|
};
|
|
2558
1897
|
};
|
|
@@ -2563,15 +1902,9 @@ interface operations {
|
|
|
2563
1902
|
query?: never;
|
|
2564
1903
|
header?: never;
|
|
2565
1904
|
path: {
|
|
2566
|
-
/**
|
|
2567
|
-
* @description URL-friendly spec identifier
|
|
2568
|
-
* @example payments-api
|
|
2569
|
-
*/
|
|
1905
|
+
/** @description URL-friendly spec identifier */
|
|
2570
1906
|
name: components["parameters"]["specName"];
|
|
2571
|
-
/**
|
|
2572
|
-
* @description Semantic version
|
|
2573
|
-
* @example 1.2.0
|
|
2574
|
-
*/
|
|
1907
|
+
/** @description Semantic version */
|
|
2575
1908
|
semver: components["parameters"]["semver"];
|
|
2576
1909
|
};
|
|
2577
1910
|
cookie?: never;
|
|
@@ -2584,24 +1917,6 @@ interface operations {
|
|
|
2584
1917
|
[name: string]: unknown;
|
|
2585
1918
|
};
|
|
2586
1919
|
content: {
|
|
2587
|
-
/**
|
|
2588
|
-
* @example {
|
|
2589
|
-
* "data": {
|
|
2590
|
-
* "previousVersion": "1.1.0",
|
|
2591
|
-
* "classification": "minor",
|
|
2592
|
-
* "suggestedVersion": "1.2.0",
|
|
2593
|
-
* "breakingChanges": [],
|
|
2594
|
-
* "safeChanges": [
|
|
2595
|
-
* {
|
|
2596
|
-
* "id": "chg-1",
|
|
2597
|
-
* "rule": "endpoint-added",
|
|
2598
|
-
* "description": "Endpoint GET /payments/{id}/refunds added",
|
|
2599
|
-
* "path": "/payments/{id}/refunds/GET"
|
|
2600
|
-
* }
|
|
2601
|
-
* ]
|
|
2602
|
-
* }
|
|
2603
|
-
* }
|
|
2604
|
-
*/
|
|
2605
1920
|
"application/json": components["schemas"]["GetCompatReportResponse"];
|
|
2606
1921
|
};
|
|
2607
1922
|
};
|
|
@@ -2611,13 +1926,6 @@ interface operations {
|
|
|
2611
1926
|
[name: string]: unknown;
|
|
2612
1927
|
};
|
|
2613
1928
|
content: {
|
|
2614
|
-
/**
|
|
2615
|
-
* @example {
|
|
2616
|
-
* "error": "unauthorized",
|
|
2617
|
-
* "message": "Invalid or missing bearer token",
|
|
2618
|
-
* "statusCode": 401
|
|
2619
|
-
* }
|
|
2620
|
-
*/
|
|
2621
1929
|
"application/json": components["schemas"]["ApiError"];
|
|
2622
1930
|
};
|
|
2623
1931
|
};
|
|
@@ -2627,13 +1935,6 @@ interface operations {
|
|
|
2627
1935
|
[name: string]: unknown;
|
|
2628
1936
|
};
|
|
2629
1937
|
content: {
|
|
2630
|
-
/**
|
|
2631
|
-
* @example {
|
|
2632
|
-
* "error": "forbidden",
|
|
2633
|
-
* "message": "Missing required scope: specs:write",
|
|
2634
|
-
* "statusCode": 403
|
|
2635
|
-
* }
|
|
2636
|
-
*/
|
|
2637
1938
|
"application/json": components["schemas"]["ApiError"];
|
|
2638
1939
|
};
|
|
2639
1940
|
};
|
|
@@ -2643,13 +1944,6 @@ interface operations {
|
|
|
2643
1944
|
[name: string]: unknown;
|
|
2644
1945
|
};
|
|
2645
1946
|
content: {
|
|
2646
|
-
/**
|
|
2647
|
-
* @example {
|
|
2648
|
-
* "error": "not_found",
|
|
2649
|
-
* "message": "Compat report not found for payments-api@1.0.0",
|
|
2650
|
-
* "statusCode": 404
|
|
2651
|
-
* }
|
|
2652
|
-
*/
|
|
2653
1947
|
"application/json": components["schemas"]["ApiError"];
|
|
2654
1948
|
};
|
|
2655
1949
|
};
|
|
@@ -2659,13 +1953,6 @@ interface operations {
|
|
|
2659
1953
|
[name: string]: unknown;
|
|
2660
1954
|
};
|
|
2661
1955
|
content: {
|
|
2662
|
-
/**
|
|
2663
|
-
* @example {
|
|
2664
|
-
* "error": "internal_error",
|
|
2665
|
-
* "message": "Internal server error",
|
|
2666
|
-
* "statusCode": 500
|
|
2667
|
-
* }
|
|
2668
|
-
*/
|
|
2669
1956
|
"application/json": components["schemas"]["ApiError"];
|
|
2670
1957
|
};
|
|
2671
1958
|
};
|
|
@@ -2674,23 +1961,14 @@ interface operations {
|
|
|
2674
1961
|
compareVersions: {
|
|
2675
1962
|
parameters: {
|
|
2676
1963
|
query: {
|
|
2677
|
-
/**
|
|
2678
|
-
* @description Starting version (inclusive). If newer than `to`, the order is normalized.
|
|
2679
|
-
* @example 1.0.0
|
|
2680
|
-
*/
|
|
1964
|
+
/** @description Starting version (inclusive). If newer than `to`, the order is normalized. */
|
|
2681
1965
|
from: string;
|
|
2682
|
-
/**
|
|
2683
|
-
* @description Ending version (inclusive). If older than `from`, the order is normalized.
|
|
2684
|
-
* @example 1.3.0
|
|
2685
|
-
*/
|
|
1966
|
+
/** @description Ending version (inclusive). If older than `from`, the order is normalized. */
|
|
2686
1967
|
to: string;
|
|
2687
1968
|
};
|
|
2688
1969
|
header?: never;
|
|
2689
1970
|
path: {
|
|
2690
|
-
/**
|
|
2691
|
-
* @description URL-friendly spec identifier
|
|
2692
|
-
* @example payments-api
|
|
2693
|
-
*/
|
|
1971
|
+
/** @description URL-friendly spec identifier */
|
|
2694
1972
|
name: components["parameters"]["specName"];
|
|
2695
1973
|
};
|
|
2696
1974
|
cookie?: never;
|
|
@@ -2703,53 +1981,6 @@ interface operations {
|
|
|
2703
1981
|
[name: string]: unknown;
|
|
2704
1982
|
};
|
|
2705
1983
|
content: {
|
|
2706
|
-
/**
|
|
2707
|
-
* @example {
|
|
2708
|
-
* "data": {
|
|
2709
|
-
* "from": "1.0.0",
|
|
2710
|
-
* "to": "1.3.0",
|
|
2711
|
-
* "steps": [
|
|
2712
|
-
* {
|
|
2713
|
-
* "version": "1.1.0",
|
|
2714
|
-
* "previousVersion": "1.0.0",
|
|
2715
|
-
* "classification": "minor",
|
|
2716
|
-
* "breakingChanges": [],
|
|
2717
|
-
* "safeChanges": [
|
|
2718
|
-
* {
|
|
2719
|
-
* "id": "chg-1",
|
|
2720
|
-
* "rule": "endpoint-added",
|
|
2721
|
-
* "description": "Endpoint GET /payments/{id}/refunds added",
|
|
2722
|
-
* "path": "/payments/{id}/refunds/GET",
|
|
2723
|
-
* "category": "structural"
|
|
2724
|
-
* }
|
|
2725
|
-
* ]
|
|
2726
|
-
* },
|
|
2727
|
-
* {
|
|
2728
|
-
* "version": "1.2.0",
|
|
2729
|
-
* "previousVersion": "1.1.0",
|
|
2730
|
-
* "classification": "patch",
|
|
2731
|
-
* "breakingChanges": [],
|
|
2732
|
-
* "safeChanges": []
|
|
2733
|
-
* },
|
|
2734
|
-
* {
|
|
2735
|
-
* "version": "1.3.0",
|
|
2736
|
-
* "previousVersion": "1.2.0",
|
|
2737
|
-
* "classification": "major",
|
|
2738
|
-
* "breakingChanges": [
|
|
2739
|
-
* {
|
|
2740
|
-
* "id": "chg-2",
|
|
2741
|
-
* "rule": "response-property-removed",
|
|
2742
|
-
* "description": "Response property 'userId' was removed from GET /users/{id}",
|
|
2743
|
-
* "path": "/users/{id}/GET/response/200/userId",
|
|
2744
|
-
* "category": "structural"
|
|
2745
|
-
* }
|
|
2746
|
-
* ],
|
|
2747
|
-
* "safeChanges": []
|
|
2748
|
-
* }
|
|
2749
|
-
* ]
|
|
2750
|
-
* }
|
|
2751
|
-
* }
|
|
2752
|
-
*/
|
|
2753
1984
|
"application/json": components["schemas"]["CompareVersionsResponse"];
|
|
2754
1985
|
};
|
|
2755
1986
|
};
|
|
@@ -2759,13 +1990,6 @@ interface operations {
|
|
|
2759
1990
|
[name: string]: unknown;
|
|
2760
1991
|
};
|
|
2761
1992
|
content: {
|
|
2762
|
-
/**
|
|
2763
|
-
* @example {
|
|
2764
|
-
* "error": "unauthorized",
|
|
2765
|
-
* "message": "Invalid or missing bearer token",
|
|
2766
|
-
* "statusCode": 401
|
|
2767
|
-
* }
|
|
2768
|
-
*/
|
|
2769
1993
|
"application/json": components["schemas"]["ApiError"];
|
|
2770
1994
|
};
|
|
2771
1995
|
};
|
|
@@ -2775,13 +1999,6 @@ interface operations {
|
|
|
2775
1999
|
[name: string]: unknown;
|
|
2776
2000
|
};
|
|
2777
2001
|
content: {
|
|
2778
|
-
/**
|
|
2779
|
-
* @example {
|
|
2780
|
-
* "error": "forbidden",
|
|
2781
|
-
* "message": "Missing required scope: specs:write",
|
|
2782
|
-
* "statusCode": 403
|
|
2783
|
-
* }
|
|
2784
|
-
*/
|
|
2785
2002
|
"application/json": components["schemas"]["ApiError"];
|
|
2786
2003
|
};
|
|
2787
2004
|
};
|
|
@@ -2791,13 +2008,6 @@ interface operations {
|
|
|
2791
2008
|
[name: string]: unknown;
|
|
2792
2009
|
};
|
|
2793
2010
|
content: {
|
|
2794
|
-
/**
|
|
2795
|
-
* @example {
|
|
2796
|
-
* "error": "not_found",
|
|
2797
|
-
* "message": "Version 1.3.0 not found for spec \"payments-api\"",
|
|
2798
|
-
* "statusCode": 404
|
|
2799
|
-
* }
|
|
2800
|
-
*/
|
|
2801
2011
|
"application/json": components["schemas"]["ApiError"];
|
|
2802
2012
|
};
|
|
2803
2013
|
};
|
|
@@ -2807,13 +2017,6 @@ interface operations {
|
|
|
2807
2017
|
[name: string]: unknown;
|
|
2808
2018
|
};
|
|
2809
2019
|
content: {
|
|
2810
|
-
/**
|
|
2811
|
-
* @example {
|
|
2812
|
-
* "error": "internal_error",
|
|
2813
|
-
* "message": "Internal server error",
|
|
2814
|
-
* "statusCode": 500
|
|
2815
|
-
* }
|
|
2816
|
-
*/
|
|
2817
2020
|
"application/json": components["schemas"]["ApiError"];
|
|
2818
2021
|
};
|
|
2819
2022
|
};
|
|
@@ -2834,21 +2037,6 @@ interface operations {
|
|
|
2834
2037
|
[name: string]: unknown;
|
|
2835
2038
|
};
|
|
2836
2039
|
content: {
|
|
2837
|
-
/**
|
|
2838
|
-
* @example {
|
|
2839
|
-
* "data": [
|
|
2840
|
-
* {
|
|
2841
|
-
* "id": "cfg-uuid-1",
|
|
2842
|
-
* "name": "payments-api-gateway",
|
|
2843
|
-
* "provider": "kong",
|
|
2844
|
-
* "specName": "payments-api",
|
|
2845
|
-
* "specSemver": "1.2.0",
|
|
2846
|
-
* "createdAt": "2026-04-25T10:30:00.000Z",
|
|
2847
|
-
* "updatedAt": "2026-06-07T14:00:00.000Z"
|
|
2848
|
-
* }
|
|
2849
|
-
* ]
|
|
2850
|
-
* }
|
|
2851
|
-
*/
|
|
2852
2040
|
"application/json": components["schemas"]["ListGatewayConfigsResponse"];
|
|
2853
2041
|
};
|
|
2854
2042
|
};
|
|
@@ -2858,13 +2046,6 @@ interface operations {
|
|
|
2858
2046
|
[name: string]: unknown;
|
|
2859
2047
|
};
|
|
2860
2048
|
content: {
|
|
2861
|
-
/**
|
|
2862
|
-
* @example {
|
|
2863
|
-
* "error": "unauthorized",
|
|
2864
|
-
* "message": "Invalid or missing bearer token",
|
|
2865
|
-
* "statusCode": 401
|
|
2866
|
-
* }
|
|
2867
|
-
*/
|
|
2868
2049
|
"application/json": components["schemas"]["ApiError"];
|
|
2869
2050
|
};
|
|
2870
2051
|
};
|
|
@@ -2874,13 +2055,6 @@ interface operations {
|
|
|
2874
2055
|
[name: string]: unknown;
|
|
2875
2056
|
};
|
|
2876
2057
|
content: {
|
|
2877
|
-
/**
|
|
2878
|
-
* @example {
|
|
2879
|
-
* "error": "forbidden",
|
|
2880
|
-
* "message": "Missing required scope: specs:write",
|
|
2881
|
-
* "statusCode": 403
|
|
2882
|
-
* }
|
|
2883
|
-
*/
|
|
2884
2058
|
"application/json": components["schemas"]["ApiError"];
|
|
2885
2059
|
};
|
|
2886
2060
|
};
|
|
@@ -2890,13 +2064,6 @@ interface operations {
|
|
|
2890
2064
|
[name: string]: unknown;
|
|
2891
2065
|
};
|
|
2892
2066
|
content: {
|
|
2893
|
-
/**
|
|
2894
|
-
* @example {
|
|
2895
|
-
* "error": "internal_error",
|
|
2896
|
-
* "message": "Internal server error",
|
|
2897
|
-
* "statusCode": 500
|
|
2898
|
-
* }
|
|
2899
|
-
*/
|
|
2900
2067
|
"application/json": components["schemas"]["ApiError"];
|
|
2901
2068
|
};
|
|
2902
2069
|
};
|
|
@@ -2911,64 +2078,6 @@ interface operations {
|
|
|
2911
2078
|
};
|
|
2912
2079
|
requestBody: {
|
|
2913
2080
|
content: {
|
|
2914
|
-
/**
|
|
2915
|
-
* @example {
|
|
2916
|
-
* "name": "payments-api-gateway",
|
|
2917
|
-
* "provider": "kong",
|
|
2918
|
-
* "specName": "payments-api",
|
|
2919
|
-
* "specSemver": "1.2.0",
|
|
2920
|
-
* "routes": [
|
|
2921
|
-
* {
|
|
2922
|
-
* "path": "/payments",
|
|
2923
|
-
* "methods": [
|
|
2924
|
-
* "GET",
|
|
2925
|
-
* "POST"
|
|
2926
|
-
* ]
|
|
2927
|
-
* },
|
|
2928
|
-
* {
|
|
2929
|
-
* "path": "/payments/{id}",
|
|
2930
|
-
* "methods": [
|
|
2931
|
-
* "GET",
|
|
2932
|
-
* "PUT",
|
|
2933
|
-
* "DELETE"
|
|
2934
|
-
* ]
|
|
2935
|
-
* }
|
|
2936
|
-
* ],
|
|
2937
|
-
* "environments": {
|
|
2938
|
-
* "staging": {
|
|
2939
|
-
* "kongAddr": "http://kong-staging:8001",
|
|
2940
|
-
* "upstream": "http://payments-staging:8080",
|
|
2941
|
-
* "plugins": [
|
|
2942
|
-
* {
|
|
2943
|
-
* "name": "rate-limiting",
|
|
2944
|
-
* "config": {
|
|
2945
|
-
* "minute": 1000
|
|
2946
|
-
* },
|
|
2947
|
-
* "order": 1
|
|
2948
|
-
* },
|
|
2949
|
-
* {
|
|
2950
|
-
* "name": "jwt",
|
|
2951
|
-
* "config": {
|
|
2952
|
-
* "issuer": "https://auth.example.com"
|
|
2953
|
-
* },
|
|
2954
|
-
* "order": 2
|
|
2955
|
-
* }
|
|
2956
|
-
* ]
|
|
2957
|
-
* }
|
|
2958
|
-
* },
|
|
2959
|
-
* "callerIdentification": {
|
|
2960
|
-
* "strategy": "first-match",
|
|
2961
|
-
* "rules": [
|
|
2962
|
-
* {
|
|
2963
|
-
* "source": "header:x-consumer-id",
|
|
2964
|
-
* "confidence": "high"
|
|
2965
|
-
* }
|
|
2966
|
-
* ]
|
|
2967
|
-
* },
|
|
2968
|
-
* "content": "apiVersion: v1\nkind: GatewayConfig",
|
|
2969
|
-
* "pushedBy": "github-actions[bot]"
|
|
2970
|
-
* }
|
|
2971
|
-
*/
|
|
2972
2081
|
"application/json": components["schemas"]["PushGatewayConfigRequest"];
|
|
2973
2082
|
};
|
|
2974
2083
|
};
|
|
@@ -2979,63 +2088,6 @@ interface operations {
|
|
|
2979
2088
|
[name: string]: unknown;
|
|
2980
2089
|
};
|
|
2981
2090
|
content: {
|
|
2982
|
-
/**
|
|
2983
|
-
* @example {
|
|
2984
|
-
* "data": {
|
|
2985
|
-
* "config": {
|
|
2986
|
-
* "id": "cfg-uuid-1",
|
|
2987
|
-
* "name": "payments-api-gateway",
|
|
2988
|
-
* "provider": "kong",
|
|
2989
|
-
* "specName": "payments-api",
|
|
2990
|
-
* "specSemver": "1.2.0",
|
|
2991
|
-
* "createdAt": "2026-04-25T10:30:00.000Z",
|
|
2992
|
-
* "updatedAt": "2026-06-07T14:00:00.000Z"
|
|
2993
|
-
* },
|
|
2994
|
-
* "version": {
|
|
2995
|
-
* "id": "ver-uuid-1",
|
|
2996
|
-
* "gatewayConfigId": "cfg-uuid-1",
|
|
2997
|
-
* "routes": [
|
|
2998
|
-
* {
|
|
2999
|
-
* "path": "/payments",
|
|
3000
|
-
* "methods": [
|
|
3001
|
-
* "GET",
|
|
3002
|
-
* "POST"
|
|
3003
|
-
* ]
|
|
3004
|
-
* }
|
|
3005
|
-
* ],
|
|
3006
|
-
* "environments": [
|
|
3007
|
-
* {
|
|
3008
|
-
* "name": "staging",
|
|
3009
|
-
* "kongAddr": "http://kong-staging:8001",
|
|
3010
|
-
* "upstream": "http://payments-staging:8080",
|
|
3011
|
-
* "plugins": [
|
|
3012
|
-
* {
|
|
3013
|
-
* "name": "rate-limiting",
|
|
3014
|
-
* "config": {
|
|
3015
|
-
* "minute": 1000
|
|
3016
|
-
* },
|
|
3017
|
-
* "order": 1
|
|
3018
|
-
* }
|
|
3019
|
-
* ]
|
|
3020
|
-
* }
|
|
3021
|
-
* ],
|
|
3022
|
-
* "callerIdentification": {
|
|
3023
|
-
* "strategy": "first-match",
|
|
3024
|
-
* "rules": [
|
|
3025
|
-
* {
|
|
3026
|
-
* "source": "header:x-consumer-id",
|
|
3027
|
-
* "confidence": "high"
|
|
3028
|
-
* }
|
|
3029
|
-
* ]
|
|
3030
|
-
* },
|
|
3031
|
-
* "content": "apiVersion: v1\nkind: GatewayConfig",
|
|
3032
|
-
* "checksum": "sha256-abc123",
|
|
3033
|
-
* "pushedBy": "github-actions[bot]",
|
|
3034
|
-
* "createdAt": "2026-06-07T14:00:00.000Z"
|
|
3035
|
-
* }
|
|
3036
|
-
* }
|
|
3037
|
-
* }
|
|
3038
|
-
*/
|
|
3039
2091
|
"application/json": components["schemas"]["PushGatewayConfigResponse"];
|
|
3040
2092
|
};
|
|
3041
2093
|
};
|
|
@@ -3045,13 +2097,6 @@ interface operations {
|
|
|
3045
2097
|
[name: string]: unknown;
|
|
3046
2098
|
};
|
|
3047
2099
|
content: {
|
|
3048
|
-
/**
|
|
3049
|
-
* @example {
|
|
3050
|
-
* "error": "bad_request",
|
|
3051
|
-
* "message": "Missing required field: name",
|
|
3052
|
-
* "statusCode": 400
|
|
3053
|
-
* }
|
|
3054
|
-
*/
|
|
3055
2100
|
"application/json": components["schemas"]["ApiError"];
|
|
3056
2101
|
};
|
|
3057
2102
|
};
|
|
@@ -3061,13 +2106,6 @@ interface operations {
|
|
|
3061
2106
|
[name: string]: unknown;
|
|
3062
2107
|
};
|
|
3063
2108
|
content: {
|
|
3064
|
-
/**
|
|
3065
|
-
* @example {
|
|
3066
|
-
* "error": "unauthorized",
|
|
3067
|
-
* "message": "Invalid or missing bearer token",
|
|
3068
|
-
* "statusCode": 401
|
|
3069
|
-
* }
|
|
3070
|
-
*/
|
|
3071
2109
|
"application/json": components["schemas"]["ApiError"];
|
|
3072
2110
|
};
|
|
3073
2111
|
};
|
|
@@ -3077,13 +2115,6 @@ interface operations {
|
|
|
3077
2115
|
[name: string]: unknown;
|
|
3078
2116
|
};
|
|
3079
2117
|
content: {
|
|
3080
|
-
/**
|
|
3081
|
-
* @example {
|
|
3082
|
-
* "error": "forbidden",
|
|
3083
|
-
* "message": "Missing required scope: specs:write",
|
|
3084
|
-
* "statusCode": 403
|
|
3085
|
-
* }
|
|
3086
|
-
*/
|
|
3087
2118
|
"application/json": components["schemas"]["ApiError"];
|
|
3088
2119
|
};
|
|
3089
2120
|
};
|
|
@@ -3093,13 +2124,6 @@ interface operations {
|
|
|
3093
2124
|
[name: string]: unknown;
|
|
3094
2125
|
};
|
|
3095
2126
|
content: {
|
|
3096
|
-
/**
|
|
3097
|
-
* @example {
|
|
3098
|
-
* "error": "name_exists",
|
|
3099
|
-
* "message": "Gateway config name 'payments-api-gateway' already exists with a different spec",
|
|
3100
|
-
* "statusCode": 409
|
|
3101
|
-
* }
|
|
3102
|
-
*/
|
|
3103
2127
|
"application/json": components["schemas"]["ApiError"];
|
|
3104
2128
|
};
|
|
3105
2129
|
};
|
|
@@ -3109,13 +2133,6 @@ interface operations {
|
|
|
3109
2133
|
[name: string]: unknown;
|
|
3110
2134
|
};
|
|
3111
2135
|
content: {
|
|
3112
|
-
/**
|
|
3113
|
-
* @example {
|
|
3114
|
-
* "error": "unsupported_provider",
|
|
3115
|
-
* "message": "Unsupported provider 'nginx'",
|
|
3116
|
-
* "statusCode": 422
|
|
3117
|
-
* }
|
|
3118
|
-
*/
|
|
3119
2136
|
"application/json": components["schemas"]["ApiError"];
|
|
3120
2137
|
};
|
|
3121
2138
|
};
|
|
@@ -3125,13 +2142,6 @@ interface operations {
|
|
|
3125
2142
|
[name: string]: unknown;
|
|
3126
2143
|
};
|
|
3127
2144
|
content: {
|
|
3128
|
-
/**
|
|
3129
|
-
* @example {
|
|
3130
|
-
* "error": "internal_error",
|
|
3131
|
-
* "message": "Internal server error",
|
|
3132
|
-
* "statusCode": 500
|
|
3133
|
-
* }
|
|
3134
|
-
*/
|
|
3135
2145
|
"application/json": components["schemas"]["ApiError"];
|
|
3136
2146
|
};
|
|
3137
2147
|
};
|
|
@@ -3142,10 +2152,7 @@ interface operations {
|
|
|
3142
2152
|
query?: never;
|
|
3143
2153
|
header?: never;
|
|
3144
2154
|
path: {
|
|
3145
|
-
/**
|
|
3146
|
-
* @description URL-friendly gateway config identifier
|
|
3147
|
-
* @example payments-api-gateway
|
|
3148
|
-
*/
|
|
2155
|
+
/** @description URL-friendly gateway config identifier */
|
|
3149
2156
|
name: components["parameters"]["gatewayConfigName"];
|
|
3150
2157
|
};
|
|
3151
2158
|
cookie?: never;
|
|
@@ -3158,19 +2165,6 @@ interface operations {
|
|
|
3158
2165
|
[name: string]: unknown;
|
|
3159
2166
|
};
|
|
3160
2167
|
content: {
|
|
3161
|
-
/**
|
|
3162
|
-
* @example {
|
|
3163
|
-
* "data": {
|
|
3164
|
-
* "id": "cfg-uuid-1",
|
|
3165
|
-
* "name": "payments-api-gateway",
|
|
3166
|
-
* "provider": "kong",
|
|
3167
|
-
* "specName": "payments-api",
|
|
3168
|
-
* "specSemver": "1.2.0",
|
|
3169
|
-
* "createdAt": "2026-04-25T10:30:00.000Z",
|
|
3170
|
-
* "updatedAt": "2026-06-07T14:00:00.000Z"
|
|
3171
|
-
* }
|
|
3172
|
-
* }
|
|
3173
|
-
*/
|
|
3174
2168
|
"application/json": components["schemas"]["GetGatewayConfigResponse"];
|
|
3175
2169
|
};
|
|
3176
2170
|
};
|
|
@@ -3180,13 +2174,6 @@ interface operations {
|
|
|
3180
2174
|
[name: string]: unknown;
|
|
3181
2175
|
};
|
|
3182
2176
|
content: {
|
|
3183
|
-
/**
|
|
3184
|
-
* @example {
|
|
3185
|
-
* "error": "unauthorized",
|
|
3186
|
-
* "message": "Invalid or missing bearer token",
|
|
3187
|
-
* "statusCode": 401
|
|
3188
|
-
* }
|
|
3189
|
-
*/
|
|
3190
2177
|
"application/json": components["schemas"]["ApiError"];
|
|
3191
2178
|
};
|
|
3192
2179
|
};
|
|
@@ -3196,13 +2183,6 @@ interface operations {
|
|
|
3196
2183
|
[name: string]: unknown;
|
|
3197
2184
|
};
|
|
3198
2185
|
content: {
|
|
3199
|
-
/**
|
|
3200
|
-
* @example {
|
|
3201
|
-
* "error": "forbidden",
|
|
3202
|
-
* "message": "Missing required scope: specs:write",
|
|
3203
|
-
* "statusCode": 403
|
|
3204
|
-
* }
|
|
3205
|
-
*/
|
|
3206
2186
|
"application/json": components["schemas"]["ApiError"];
|
|
3207
2187
|
};
|
|
3208
2188
|
};
|
|
@@ -3212,13 +2192,6 @@ interface operations {
|
|
|
3212
2192
|
[name: string]: unknown;
|
|
3213
2193
|
};
|
|
3214
2194
|
content: {
|
|
3215
|
-
/**
|
|
3216
|
-
* @example {
|
|
3217
|
-
* "error": "not_found",
|
|
3218
|
-
* "message": "Gateway config \"payments-api-gateway\" not found",
|
|
3219
|
-
* "statusCode": 404
|
|
3220
|
-
* }
|
|
3221
|
-
*/
|
|
3222
2195
|
"application/json": components["schemas"]["ApiError"];
|
|
3223
2196
|
};
|
|
3224
2197
|
};
|
|
@@ -3228,13 +2201,6 @@ interface operations {
|
|
|
3228
2201
|
[name: string]: unknown;
|
|
3229
2202
|
};
|
|
3230
2203
|
content: {
|
|
3231
|
-
/**
|
|
3232
|
-
* @example {
|
|
3233
|
-
* "error": "internal_error",
|
|
3234
|
-
* "message": "Internal server error",
|
|
3235
|
-
* "statusCode": 500
|
|
3236
|
-
* }
|
|
3237
|
-
*/
|
|
3238
2204
|
"application/json": components["schemas"]["ApiError"];
|
|
3239
2205
|
};
|
|
3240
2206
|
};
|
|
@@ -3245,10 +2211,7 @@ interface operations {
|
|
|
3245
2211
|
query?: never;
|
|
3246
2212
|
header?: never;
|
|
3247
2213
|
path: {
|
|
3248
|
-
/**
|
|
3249
|
-
* @description URL-friendly gateway config identifier
|
|
3250
|
-
* @example payments-api-gateway
|
|
3251
|
-
*/
|
|
2214
|
+
/** @description URL-friendly gateway config identifier */
|
|
3252
2215
|
name: components["parameters"]["gatewayConfigName"];
|
|
3253
2216
|
};
|
|
3254
2217
|
cookie?: never;
|
|
@@ -3261,53 +2224,6 @@ interface operations {
|
|
|
3261
2224
|
[name: string]: unknown;
|
|
3262
2225
|
};
|
|
3263
2226
|
content: {
|
|
3264
|
-
/**
|
|
3265
|
-
* @example {
|
|
3266
|
-
* "data": [
|
|
3267
|
-
* {
|
|
3268
|
-
* "id": "ver-uuid-1",
|
|
3269
|
-
* "gatewayConfigId": "cfg-uuid-1",
|
|
3270
|
-
* "routes": [
|
|
3271
|
-
* {
|
|
3272
|
-
* "path": "/payments",
|
|
3273
|
-
* "methods": [
|
|
3274
|
-
* "GET",
|
|
3275
|
-
* "POST"
|
|
3276
|
-
* ]
|
|
3277
|
-
* }
|
|
3278
|
-
* ],
|
|
3279
|
-
* "environments": [
|
|
3280
|
-
* {
|
|
3281
|
-
* "name": "staging",
|
|
3282
|
-
* "kongAddr": "http://kong-staging:8001",
|
|
3283
|
-
* "upstream": "http://payments-staging:8080",
|
|
3284
|
-
* "plugins": [
|
|
3285
|
-
* {
|
|
3286
|
-
* "name": "rate-limiting",
|
|
3287
|
-
* "config": {
|
|
3288
|
-
* "minute": 1000
|
|
3289
|
-
* },
|
|
3290
|
-
* "order": 1
|
|
3291
|
-
* }
|
|
3292
|
-
* ]
|
|
3293
|
-
* }
|
|
3294
|
-
* ],
|
|
3295
|
-
* "callerIdentification": {
|
|
3296
|
-
* "strategy": "first-match",
|
|
3297
|
-
* "rules": [
|
|
3298
|
-
* {
|
|
3299
|
-
* "source": "header:x-consumer-id",
|
|
3300
|
-
* "confidence": "high"
|
|
3301
|
-
* }
|
|
3302
|
-
* ]
|
|
3303
|
-
* },
|
|
3304
|
-
* "checksum": "sha256-abc123",
|
|
3305
|
-
* "pushedBy": "github-actions[bot]",
|
|
3306
|
-
* "createdAt": "2026-06-07T14:00:00.000Z"
|
|
3307
|
-
* }
|
|
3308
|
-
* ]
|
|
3309
|
-
* }
|
|
3310
|
-
*/
|
|
3311
2227
|
"application/json": components["schemas"]["ListGatewayConfigVersionsResponse"];
|
|
3312
2228
|
};
|
|
3313
2229
|
};
|
|
@@ -3317,13 +2233,6 @@ interface operations {
|
|
|
3317
2233
|
[name: string]: unknown;
|
|
3318
2234
|
};
|
|
3319
2235
|
content: {
|
|
3320
|
-
/**
|
|
3321
|
-
* @example {
|
|
3322
|
-
* "error": "unauthorized",
|
|
3323
|
-
* "message": "Invalid or missing bearer token",
|
|
3324
|
-
* "statusCode": 401
|
|
3325
|
-
* }
|
|
3326
|
-
*/
|
|
3327
2236
|
"application/json": components["schemas"]["ApiError"];
|
|
3328
2237
|
};
|
|
3329
2238
|
};
|
|
@@ -3333,13 +2242,6 @@ interface operations {
|
|
|
3333
2242
|
[name: string]: unknown;
|
|
3334
2243
|
};
|
|
3335
2244
|
content: {
|
|
3336
|
-
/**
|
|
3337
|
-
* @example {
|
|
3338
|
-
* "error": "forbidden",
|
|
3339
|
-
* "message": "Missing required scope: specs:write",
|
|
3340
|
-
* "statusCode": 403
|
|
3341
|
-
* }
|
|
3342
|
-
*/
|
|
3343
2245
|
"application/json": components["schemas"]["ApiError"];
|
|
3344
2246
|
};
|
|
3345
2247
|
};
|
|
@@ -3349,13 +2251,6 @@ interface operations {
|
|
|
3349
2251
|
[name: string]: unknown;
|
|
3350
2252
|
};
|
|
3351
2253
|
content: {
|
|
3352
|
-
/**
|
|
3353
|
-
* @example {
|
|
3354
|
-
* "error": "not_found",
|
|
3355
|
-
* "message": "Gateway config \"payments-api-gateway\" not found",
|
|
3356
|
-
* "statusCode": 404
|
|
3357
|
-
* }
|
|
3358
|
-
*/
|
|
3359
2254
|
"application/json": components["schemas"]["ApiError"];
|
|
3360
2255
|
};
|
|
3361
2256
|
};
|
|
@@ -3365,13 +2260,6 @@ interface operations {
|
|
|
3365
2260
|
[name: string]: unknown;
|
|
3366
2261
|
};
|
|
3367
2262
|
content: {
|
|
3368
|
-
/**
|
|
3369
|
-
* @example {
|
|
3370
|
-
* "error": "internal_error",
|
|
3371
|
-
* "message": "Internal server error",
|
|
3372
|
-
* "statusCode": 500
|
|
3373
|
-
* }
|
|
3374
|
-
*/
|
|
3375
2263
|
"application/json": components["schemas"]["ApiError"];
|
|
3376
2264
|
};
|
|
3377
2265
|
};
|
|
@@ -3382,15 +2270,9 @@ interface operations {
|
|
|
3382
2270
|
query?: never;
|
|
3383
2271
|
header?: never;
|
|
3384
2272
|
path: {
|
|
3385
|
-
/**
|
|
3386
|
-
* @description URL-friendly gateway config identifier
|
|
3387
|
-
* @example payments-api-gateway
|
|
3388
|
-
*/
|
|
2273
|
+
/** @description URL-friendly gateway config identifier */
|
|
3389
2274
|
name: components["parameters"]["gatewayConfigName"];
|
|
3390
|
-
/**
|
|
3391
|
-
* @description Gateway config version UUID
|
|
3392
|
-
* @example a1b2c3d4-e5f6-7890-abcd-ef1234567890
|
|
3393
|
-
*/
|
|
2275
|
+
/** @description Gateway config version UUID */
|
|
3394
2276
|
versionId: components["parameters"]["versionId"];
|
|
3395
2277
|
};
|
|
3396
2278
|
cookie?: never;
|
|
@@ -3403,52 +2285,6 @@ interface operations {
|
|
|
3403
2285
|
[name: string]: unknown;
|
|
3404
2286
|
};
|
|
3405
2287
|
content: {
|
|
3406
|
-
/**
|
|
3407
|
-
* @example {
|
|
3408
|
-
* "data": {
|
|
3409
|
-
* "id": "ver-uuid-1",
|
|
3410
|
-
* "gatewayConfigId": "cfg-uuid-1",
|
|
3411
|
-
* "routes": [
|
|
3412
|
-
* {
|
|
3413
|
-
* "path": "/payments",
|
|
3414
|
-
* "methods": [
|
|
3415
|
-
* "GET",
|
|
3416
|
-
* "POST"
|
|
3417
|
-
* ]
|
|
3418
|
-
* }
|
|
3419
|
-
* ],
|
|
3420
|
-
* "environments": [
|
|
3421
|
-
* {
|
|
3422
|
-
* "name": "staging",
|
|
3423
|
-
* "kongAddr": "http://kong-staging:8001",
|
|
3424
|
-
* "upstream": "http://payments-staging:8080",
|
|
3425
|
-
* "plugins": [
|
|
3426
|
-
* {
|
|
3427
|
-
* "name": "rate-limiting",
|
|
3428
|
-
* "config": {
|
|
3429
|
-
* "minute": 1000
|
|
3430
|
-
* },
|
|
3431
|
-
* "order": 1
|
|
3432
|
-
* }
|
|
3433
|
-
* ]
|
|
3434
|
-
* }
|
|
3435
|
-
* ],
|
|
3436
|
-
* "callerIdentification": {
|
|
3437
|
-
* "strategy": "first-match",
|
|
3438
|
-
* "rules": [
|
|
3439
|
-
* {
|
|
3440
|
-
* "source": "header:x-consumer-id",
|
|
3441
|
-
* "confidence": "high"
|
|
3442
|
-
* }
|
|
3443
|
-
* ]
|
|
3444
|
-
* },
|
|
3445
|
-
* "content": "apiVersion: v1\nkind: GatewayConfig",
|
|
3446
|
-
* "checksum": "sha256-abc123",
|
|
3447
|
-
* "pushedBy": "github-actions[bot]",
|
|
3448
|
-
* "createdAt": "2026-06-07T14:00:00.000Z"
|
|
3449
|
-
* }
|
|
3450
|
-
* }
|
|
3451
|
-
*/
|
|
3452
2288
|
"application/json": components["schemas"]["GetGatewayConfigVersionResponse"];
|
|
3453
2289
|
};
|
|
3454
2290
|
};
|
|
@@ -3458,13 +2294,6 @@ interface operations {
|
|
|
3458
2294
|
[name: string]: unknown;
|
|
3459
2295
|
};
|
|
3460
2296
|
content: {
|
|
3461
|
-
/**
|
|
3462
|
-
* @example {
|
|
3463
|
-
* "error": "unauthorized",
|
|
3464
|
-
* "message": "Invalid or missing bearer token",
|
|
3465
|
-
* "statusCode": 401
|
|
3466
|
-
* }
|
|
3467
|
-
*/
|
|
3468
2297
|
"application/json": components["schemas"]["ApiError"];
|
|
3469
2298
|
};
|
|
3470
2299
|
};
|
|
@@ -3474,13 +2303,6 @@ interface operations {
|
|
|
3474
2303
|
[name: string]: unknown;
|
|
3475
2304
|
};
|
|
3476
2305
|
content: {
|
|
3477
|
-
/**
|
|
3478
|
-
* @example {
|
|
3479
|
-
* "error": "forbidden",
|
|
3480
|
-
* "message": "Missing required scope: specs:write",
|
|
3481
|
-
* "statusCode": 403
|
|
3482
|
-
* }
|
|
3483
|
-
*/
|
|
3484
2306
|
"application/json": components["schemas"]["ApiError"];
|
|
3485
2307
|
};
|
|
3486
2308
|
};
|
|
@@ -3490,13 +2312,6 @@ interface operations {
|
|
|
3490
2312
|
[name: string]: unknown;
|
|
3491
2313
|
};
|
|
3492
2314
|
content: {
|
|
3493
|
-
/**
|
|
3494
|
-
* @example {
|
|
3495
|
-
* "error": "not_found",
|
|
3496
|
-
* "message": "Version ver-uuid-99 not found for gateway config \"payments-api-gateway\"",
|
|
3497
|
-
* "statusCode": 404
|
|
3498
|
-
* }
|
|
3499
|
-
*/
|
|
3500
2315
|
"application/json": components["schemas"]["ApiError"];
|
|
3501
2316
|
};
|
|
3502
2317
|
};
|
|
@@ -3506,13 +2321,6 @@ interface operations {
|
|
|
3506
2321
|
[name: string]: unknown;
|
|
3507
2322
|
};
|
|
3508
2323
|
content: {
|
|
3509
|
-
/**
|
|
3510
|
-
* @example {
|
|
3511
|
-
* "error": "internal_error",
|
|
3512
|
-
* "message": "Internal server error",
|
|
3513
|
-
* "statusCode": 500
|
|
3514
|
-
* }
|
|
3515
|
-
*/
|
|
3516
2324
|
"application/json": components["schemas"]["ApiError"];
|
|
3517
2325
|
};
|
|
3518
2326
|
};
|
|
@@ -3523,41 +2331,15 @@ interface operations {
|
|
|
3523
2331
|
query?: never;
|
|
3524
2332
|
header?: never;
|
|
3525
2333
|
path: {
|
|
3526
|
-
/**
|
|
3527
|
-
* @description Gateway provider (e.g., kong)
|
|
3528
|
-
* @example kong
|
|
3529
|
-
*/
|
|
2334
|
+
/** @description Gateway provider (e.g., kong) */
|
|
3530
2335
|
provider: components["parameters"]["provider"];
|
|
3531
|
-
/**
|
|
3532
|
-
* @description Deployment environment (e.g., staging, production)
|
|
3533
|
-
* @example staging
|
|
3534
|
-
*/
|
|
2336
|
+
/** @description Deployment environment (e.g., staging, production) */
|
|
3535
2337
|
environment: components["parameters"]["environment"];
|
|
3536
2338
|
};
|
|
3537
2339
|
cookie?: never;
|
|
3538
2340
|
};
|
|
3539
2341
|
requestBody: {
|
|
3540
2342
|
content: {
|
|
3541
|
-
/**
|
|
3542
|
-
* @example {
|
|
3543
|
-
* "service": {
|
|
3544
|
-
* "name": "payments-api-gateway"
|
|
3545
|
-
* },
|
|
3546
|
-
* "request": {
|
|
3547
|
-
* "method": "GET",
|
|
3548
|
-
* "uri": "/payments",
|
|
3549
|
-
* "headers": {
|
|
3550
|
-
* "x-consumer-id": "consumer-123"
|
|
3551
|
-
* }
|
|
3552
|
-
* },
|
|
3553
|
-
* "response": {
|
|
3554
|
-
* "status": 200
|
|
3555
|
-
* },
|
|
3556
|
-
* "latencies": {
|
|
3557
|
-
* "request": 42
|
|
3558
|
-
* }
|
|
3559
|
-
* }
|
|
3560
|
-
*/
|
|
3561
2343
|
"application/json": Record<string, never>;
|
|
3562
2344
|
};
|
|
3563
2345
|
};
|
|
@@ -3568,11 +2350,6 @@ interface operations {
|
|
|
3568
2350
|
[name: string]: unknown;
|
|
3569
2351
|
};
|
|
3570
2352
|
content: {
|
|
3571
|
-
/**
|
|
3572
|
-
* @example {
|
|
3573
|
-
* "status": "ok"
|
|
3574
|
-
* }
|
|
3575
|
-
*/
|
|
3576
2353
|
"application/json": {
|
|
3577
2354
|
/** @example ok */
|
|
3578
2355
|
status?: string;
|
|
@@ -3585,13 +2362,6 @@ interface operations {
|
|
|
3585
2362
|
[name: string]: unknown;
|
|
3586
2363
|
};
|
|
3587
2364
|
content: {
|
|
3588
|
-
/**
|
|
3589
|
-
* @example {
|
|
3590
|
-
* "error": "bad_request",
|
|
3591
|
-
* "message": "Missing service.name in gateway log payload",
|
|
3592
|
-
* "statusCode": 400
|
|
3593
|
-
* }
|
|
3594
|
-
*/
|
|
3595
2365
|
"application/json": components["schemas"]["ApiError"];
|
|
3596
2366
|
};
|
|
3597
2367
|
};
|
|
@@ -3601,13 +2371,6 @@ interface operations {
|
|
|
3601
2371
|
[name: string]: unknown;
|
|
3602
2372
|
};
|
|
3603
2373
|
content: {
|
|
3604
|
-
/**
|
|
3605
|
-
* @example {
|
|
3606
|
-
* "error": "unauthorized",
|
|
3607
|
-
* "message": "Invalid or missing bearer token",
|
|
3608
|
-
* "statusCode": 401
|
|
3609
|
-
* }
|
|
3610
|
-
*/
|
|
3611
2374
|
"application/json": components["schemas"]["ApiError"];
|
|
3612
2375
|
};
|
|
3613
2376
|
};
|
|
@@ -3617,13 +2380,6 @@ interface operations {
|
|
|
3617
2380
|
[name: string]: unknown;
|
|
3618
2381
|
};
|
|
3619
2382
|
content: {
|
|
3620
|
-
/**
|
|
3621
|
-
* @example {
|
|
3622
|
-
* "error": "forbidden",
|
|
3623
|
-
* "message": "Missing required scope: specs:write",
|
|
3624
|
-
* "statusCode": 403
|
|
3625
|
-
* }
|
|
3626
|
-
*/
|
|
3627
2383
|
"application/json": components["schemas"]["ApiError"];
|
|
3628
2384
|
};
|
|
3629
2385
|
};
|
|
@@ -3633,13 +2389,6 @@ interface operations {
|
|
|
3633
2389
|
[name: string]: unknown;
|
|
3634
2390
|
};
|
|
3635
2391
|
content: {
|
|
3636
|
-
/**
|
|
3637
|
-
* @example {
|
|
3638
|
-
* "error": "internal_error",
|
|
3639
|
-
* "message": "Internal server error",
|
|
3640
|
-
* "statusCode": 500
|
|
3641
|
-
* }
|
|
3642
|
-
*/
|
|
3643
2392
|
"application/json": components["schemas"]["ApiError"];
|
|
3644
2393
|
};
|
|
3645
2394
|
};
|
|
@@ -3679,33 +2428,6 @@ interface operations {
|
|
|
3679
2428
|
[name: string]: unknown;
|
|
3680
2429
|
};
|
|
3681
2430
|
content: {
|
|
3682
|
-
/**
|
|
3683
|
-
* @example {
|
|
3684
|
-
* "data": [
|
|
3685
|
-
* {
|
|
3686
|
-
* "id": "log-uuid-1",
|
|
3687
|
-
* "provider": "kong",
|
|
3688
|
-
* "gatewayConfigName": "payments-api-gateway",
|
|
3689
|
-
* "environment": "staging",
|
|
3690
|
-
* "method": "GET",
|
|
3691
|
-
* "path": "/payments",
|
|
3692
|
-
* "routePath": "/payments",
|
|
3693
|
-
* "status": 200,
|
|
3694
|
-
* "callerId": "consumer-123",
|
|
3695
|
-
* "callerSource": "header:x-consumer-id",
|
|
3696
|
-
* "callerConfidence": "high",
|
|
3697
|
-
* "occurredAt": "2026-06-07T14:00:00.000Z",
|
|
3698
|
-
* "createdAt": "2026-06-07T14:00:01.000Z"
|
|
3699
|
-
* }
|
|
3700
|
-
* ],
|
|
3701
|
-
* "pagination": {
|
|
3702
|
-
* "hasMore": false,
|
|
3703
|
-
* "limit": 50,
|
|
3704
|
-
* "offset": 0,
|
|
3705
|
-
* "total": 1
|
|
3706
|
-
* }
|
|
3707
|
-
* }
|
|
3708
|
-
*/
|
|
3709
2431
|
"application/json": components["schemas"]["ListGatewayLogsResponse"];
|
|
3710
2432
|
};
|
|
3711
2433
|
};
|
|
@@ -3715,13 +2437,6 @@ interface operations {
|
|
|
3715
2437
|
[name: string]: unknown;
|
|
3716
2438
|
};
|
|
3717
2439
|
content: {
|
|
3718
|
-
/**
|
|
3719
|
-
* @example {
|
|
3720
|
-
* "error": "unauthorized",
|
|
3721
|
-
* "message": "Invalid or missing bearer token",
|
|
3722
|
-
* "statusCode": 401
|
|
3723
|
-
* }
|
|
3724
|
-
*/
|
|
3725
2440
|
"application/json": components["schemas"]["ApiError"];
|
|
3726
2441
|
};
|
|
3727
2442
|
};
|
|
@@ -3731,13 +2446,6 @@ interface operations {
|
|
|
3731
2446
|
[name: string]: unknown;
|
|
3732
2447
|
};
|
|
3733
2448
|
content: {
|
|
3734
|
-
/**
|
|
3735
|
-
* @example {
|
|
3736
|
-
* "error": "forbidden",
|
|
3737
|
-
* "message": "Missing required scope: specs:write",
|
|
3738
|
-
* "statusCode": 403
|
|
3739
|
-
* }
|
|
3740
|
-
*/
|
|
3741
2449
|
"application/json": components["schemas"]["ApiError"];
|
|
3742
2450
|
};
|
|
3743
2451
|
};
|
|
@@ -3747,13 +2455,6 @@ interface operations {
|
|
|
3747
2455
|
[name: string]: unknown;
|
|
3748
2456
|
};
|
|
3749
2457
|
content: {
|
|
3750
|
-
/**
|
|
3751
|
-
* @example {
|
|
3752
|
-
* "error": "internal_error",
|
|
3753
|
-
* "message": "Internal server error",
|
|
3754
|
-
* "statusCode": 500
|
|
3755
|
-
* }
|
|
3756
|
-
*/
|
|
3757
2458
|
"application/json": components["schemas"]["ApiError"];
|
|
3758
2459
|
};
|
|
3759
2460
|
};
|
|
@@ -3783,21 +2484,6 @@ interface operations {
|
|
|
3783
2484
|
[name: string]: unknown;
|
|
3784
2485
|
};
|
|
3785
2486
|
content: {
|
|
3786
|
-
/**
|
|
3787
|
-
* @example {
|
|
3788
|
-
* "data": [
|
|
3789
|
-
* {
|
|
3790
|
-
* "gatewayConfigName": "payments-api-gateway",
|
|
3791
|
-
* "environment": "staging",
|
|
3792
|
-
* "method": "GET",
|
|
3793
|
-
* "routePath": "/payments",
|
|
3794
|
-
* "lastSeenAt": "2026-06-07T14:00:00.000Z",
|
|
3795
|
-
* "totalCalls": 15042,
|
|
3796
|
-
* "uniqueCallerIds": 128
|
|
3797
|
-
* }
|
|
3798
|
-
* ]
|
|
3799
|
-
* }
|
|
3800
|
-
*/
|
|
3801
2487
|
"application/json": components["schemas"]["GetGatewayLogStatsResponse"];
|
|
3802
2488
|
};
|
|
3803
2489
|
};
|
|
@@ -3807,13 +2493,6 @@ interface operations {
|
|
|
3807
2493
|
[name: string]: unknown;
|
|
3808
2494
|
};
|
|
3809
2495
|
content: {
|
|
3810
|
-
/**
|
|
3811
|
-
* @example {
|
|
3812
|
-
* "error": "unauthorized",
|
|
3813
|
-
* "message": "Invalid or missing bearer token",
|
|
3814
|
-
* "statusCode": 401
|
|
3815
|
-
* }
|
|
3816
|
-
*/
|
|
3817
2496
|
"application/json": components["schemas"]["ApiError"];
|
|
3818
2497
|
};
|
|
3819
2498
|
};
|
|
@@ -3823,13 +2502,6 @@ interface operations {
|
|
|
3823
2502
|
[name: string]: unknown;
|
|
3824
2503
|
};
|
|
3825
2504
|
content: {
|
|
3826
|
-
/**
|
|
3827
|
-
* @example {
|
|
3828
|
-
* "error": "forbidden",
|
|
3829
|
-
* "message": "Missing required scope: specs:write",
|
|
3830
|
-
* "statusCode": 403
|
|
3831
|
-
* }
|
|
3832
|
-
*/
|
|
3833
2505
|
"application/json": components["schemas"]["ApiError"];
|
|
3834
2506
|
};
|
|
3835
2507
|
};
|
|
@@ -3839,13 +2511,6 @@ interface operations {
|
|
|
3839
2511
|
[name: string]: unknown;
|
|
3840
2512
|
};
|
|
3841
2513
|
content: {
|
|
3842
|
-
/**
|
|
3843
|
-
* @example {
|
|
3844
|
-
* "error": "internal_error",
|
|
3845
|
-
* "message": "Internal server error",
|
|
3846
|
-
* "statusCode": 500
|
|
3847
|
-
* }
|
|
3848
|
-
*/
|
|
3849
2514
|
"application/json": components["schemas"]["ApiError"];
|
|
3850
2515
|
};
|
|
3851
2516
|
};
|
|
@@ -3856,10 +2521,7 @@ interface operations {
|
|
|
3856
2521
|
query?: never;
|
|
3857
2522
|
header?: never;
|
|
3858
2523
|
path: {
|
|
3859
|
-
/**
|
|
3860
|
-
* @description Gateway log entry UUID
|
|
3861
|
-
* @example a1b2c3d4-e5f6-7890-abcd-ef1234567890
|
|
3862
|
-
*/
|
|
2524
|
+
/** @description Gateway log entry UUID */
|
|
3863
2525
|
id: components["parameters"]["logId"];
|
|
3864
2526
|
};
|
|
3865
2527
|
cookie?: never;
|
|
@@ -3872,25 +2534,6 @@ interface operations {
|
|
|
3872
2534
|
[name: string]: unknown;
|
|
3873
2535
|
};
|
|
3874
2536
|
content: {
|
|
3875
|
-
/**
|
|
3876
|
-
* @example {
|
|
3877
|
-
* "data": {
|
|
3878
|
-
* "id": "log-uuid-1",
|
|
3879
|
-
* "provider": "kong",
|
|
3880
|
-
* "gatewayConfigName": "payments-api-gateway",
|
|
3881
|
-
* "environment": "staging",
|
|
3882
|
-
* "method": "GET",
|
|
3883
|
-
* "path": "/payments",
|
|
3884
|
-
* "routePath": "/payments",
|
|
3885
|
-
* "status": 200,
|
|
3886
|
-
* "callerId": "consumer-123",
|
|
3887
|
-
* "callerSource": "header:x-consumer-id",
|
|
3888
|
-
* "callerConfidence": "high",
|
|
3889
|
-
* "occurredAt": "2026-06-07T14:00:00.000Z",
|
|
3890
|
-
* "createdAt": "2026-06-07T14:00:01.000Z"
|
|
3891
|
-
* }
|
|
3892
|
-
* }
|
|
3893
|
-
*/
|
|
3894
2537
|
"application/json": components["schemas"]["GetGatewayLogResponse"];
|
|
3895
2538
|
};
|
|
3896
2539
|
};
|
|
@@ -3900,13 +2543,6 @@ interface operations {
|
|
|
3900
2543
|
[name: string]: unknown;
|
|
3901
2544
|
};
|
|
3902
2545
|
content: {
|
|
3903
|
-
/**
|
|
3904
|
-
* @example {
|
|
3905
|
-
* "error": "unauthorized",
|
|
3906
|
-
* "message": "Invalid or missing bearer token",
|
|
3907
|
-
* "statusCode": 401
|
|
3908
|
-
* }
|
|
3909
|
-
*/
|
|
3910
2546
|
"application/json": components["schemas"]["ApiError"];
|
|
3911
2547
|
};
|
|
3912
2548
|
};
|
|
@@ -3916,13 +2552,6 @@ interface operations {
|
|
|
3916
2552
|
[name: string]: unknown;
|
|
3917
2553
|
};
|
|
3918
2554
|
content: {
|
|
3919
|
-
/**
|
|
3920
|
-
* @example {
|
|
3921
|
-
* "error": "forbidden",
|
|
3922
|
-
* "message": "Missing required scope: specs:write",
|
|
3923
|
-
* "statusCode": 403
|
|
3924
|
-
* }
|
|
3925
|
-
*/
|
|
3926
2555
|
"application/json": components["schemas"]["ApiError"];
|
|
3927
2556
|
};
|
|
3928
2557
|
};
|
|
@@ -3932,13 +2561,6 @@ interface operations {
|
|
|
3932
2561
|
[name: string]: unknown;
|
|
3933
2562
|
};
|
|
3934
2563
|
content: {
|
|
3935
|
-
/**
|
|
3936
|
-
* @example {
|
|
3937
|
-
* "error": "not_found",
|
|
3938
|
-
* "message": "Log not found",
|
|
3939
|
-
* "statusCode": 404
|
|
3940
|
-
* }
|
|
3941
|
-
*/
|
|
3942
2564
|
"application/json": components["schemas"]["ApiError"];
|
|
3943
2565
|
};
|
|
3944
2566
|
};
|
|
@@ -3948,13 +2570,6 @@ interface operations {
|
|
|
3948
2570
|
[name: string]: unknown;
|
|
3949
2571
|
};
|
|
3950
2572
|
content: {
|
|
3951
|
-
/**
|
|
3952
|
-
* @example {
|
|
3953
|
-
* "error": "internal_error",
|
|
3954
|
-
* "message": "Internal server error",
|
|
3955
|
-
* "statusCode": 500
|
|
3956
|
-
* }
|
|
3957
|
-
*/
|
|
3958
2573
|
"application/json": components["schemas"]["ApiError"];
|
|
3959
2574
|
};
|
|
3960
2575
|
};
|