@postman/sdk-config 0.3.1 → 0.3.2
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/README.md +8 -4
- package/dist/index.cjs +111 -23
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +111 -23
- package/dist/index.js.map +1 -1
- package/dist/sdk-config/index.cjs +79 -6
- package/dist/sdk-config/index.cjs.map +1 -1
- package/dist/sdk-config/index.js +79 -6
- package/dist/sdk-config/index.js.map +1 -1
- package/dist/sdk-config/v1/index.cjs +79 -6
- package/dist/sdk-config/v1/index.cjs.map +1 -1
- package/dist/sdk-config/v1/index.d.cts +4766 -0
- package/dist/sdk-config/v1/index.d.ts +4766 -0
- package/dist/sdk-config/v1/index.js +79 -6
- package/dist/sdk-config/v1/index.js.map +1 -1
- package/dist/sdk-config-ir/index.cjs +32 -17
- package/dist/sdk-config-ir/index.cjs.map +1 -1
- package/dist/sdk-config-ir/index.js +32 -17
- package/dist/sdk-config-ir/index.js.map +1 -1
- package/dist/sdk-config-ir/v1/index.cjs +32 -17
- package/dist/sdk-config-ir/v1/index.cjs.map +1 -1
- package/dist/sdk-config-ir/v1/index.d.cts +475 -160
- package/dist/sdk-config-ir/v1/index.d.ts +475 -160
- package/dist/sdk-config-ir/v1/index.js +32 -17
- package/dist/sdk-config-ir/v1/index.js.map +1 -1
- package/package.json +1 -1
- package/src/sdk-config/v1/README.md +14 -7
- package/src/sdk-config-ir/v1/README.md +92 -91
|
@@ -1254,11 +1254,15 @@ declare const credentialResolutionSchema: z.ZodEnum<{
|
|
|
1254
1254
|
}>;
|
|
1255
1255
|
declare const publishConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1256
1256
|
url: z.ZodOptional<z.ZodString>;
|
|
1257
|
-
/**
|
|
1258
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1259
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1260
|
-
*/
|
|
1257
|
+
/** Reference to registry publishing credentials. */
|
|
1261
1258
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1259
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1260
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1261
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1262
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1263
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1264
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1265
|
+
}, z.core.$strict>>;
|
|
1262
1266
|
/**
|
|
1263
1267
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1264
1268
|
* fall back to target.sdkVersion.
|
|
@@ -1279,11 +1283,15 @@ declare const publishConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1279
1283
|
publishToJsr: z.ZodOptional<z.ZodBoolean>;
|
|
1280
1284
|
}, z.core.$strict>, z.ZodObject<{
|
|
1281
1285
|
url: z.ZodOptional<z.ZodString>;
|
|
1282
|
-
/**
|
|
1283
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1284
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1285
|
-
*/
|
|
1286
|
+
/** Reference to registry publishing credentials. */
|
|
1286
1287
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1288
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1289
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1290
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1291
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1292
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1293
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1294
|
+
}, z.core.$strict>>;
|
|
1287
1295
|
/**
|
|
1288
1296
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1289
1297
|
* fall back to target.sdkVersion.
|
|
@@ -1300,11 +1308,15 @@ declare const publishConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1300
1308
|
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1301
1309
|
}, z.core.$strict>, z.ZodObject<{
|
|
1302
1310
|
url: z.ZodOptional<z.ZodString>;
|
|
1303
|
-
/**
|
|
1304
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1305
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1306
|
-
*/
|
|
1311
|
+
/** Reference to registry publishing credentials. */
|
|
1307
1312
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1313
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1314
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1315
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1316
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1317
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1318
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1319
|
+
}, z.core.$strict>>;
|
|
1308
1320
|
/**
|
|
1309
1321
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1310
1322
|
* fall back to target.sdkVersion.
|
|
@@ -1320,11 +1332,15 @@ declare const publishConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1320
1332
|
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1321
1333
|
}, z.core.$strict>, z.ZodObject<{
|
|
1322
1334
|
url: z.ZodOptional<z.ZodString>;
|
|
1323
|
-
/**
|
|
1324
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1325
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1326
|
-
*/
|
|
1335
|
+
/** Reference to registry publishing credentials. */
|
|
1327
1336
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1337
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1338
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1339
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1340
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1341
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1342
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1343
|
+
}, z.core.$strict>>;
|
|
1328
1344
|
/**
|
|
1329
1345
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1330
1346
|
* fall back to target.sdkVersion.
|
|
@@ -1338,11 +1354,15 @@ declare const publishConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1338
1354
|
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1339
1355
|
}, z.core.$strict>, z.ZodObject<{
|
|
1340
1356
|
url: z.ZodOptional<z.ZodString>;
|
|
1341
|
-
/**
|
|
1342
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1343
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1344
|
-
*/
|
|
1357
|
+
/** Reference to registry publishing credentials. */
|
|
1345
1358
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1359
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1360
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1361
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1362
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1363
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1364
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1365
|
+
}, z.core.$strict>>;
|
|
1346
1366
|
/**
|
|
1347
1367
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1348
1368
|
* fall back to target.sdkVersion.
|
|
@@ -1356,11 +1376,15 @@ declare const publishConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1356
1376
|
tokenEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1357
1377
|
}, z.core.$strict>, z.ZodObject<{
|
|
1358
1378
|
url: z.ZodOptional<z.ZodString>;
|
|
1359
|
-
/**
|
|
1360
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1361
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1362
|
-
*/
|
|
1379
|
+
/** Reference to registry publishing credentials. */
|
|
1363
1380
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1381
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1382
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1383
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1384
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1385
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1386
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1387
|
+
}, z.core.$strict>>;
|
|
1364
1388
|
/**
|
|
1365
1389
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1366
1390
|
* fall back to target.sdkVersion.
|
|
@@ -1373,11 +1397,15 @@ declare const publishConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1373
1397
|
registry: z.ZodLiteral<"go">;
|
|
1374
1398
|
}, z.core.$strict>, z.ZodObject<{
|
|
1375
1399
|
url: z.ZodOptional<z.ZodString>;
|
|
1376
|
-
/**
|
|
1377
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1378
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1379
|
-
*/
|
|
1400
|
+
/** Reference to registry publishing credentials. */
|
|
1380
1401
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1402
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1403
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1404
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1405
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1406
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1407
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1408
|
+
}, z.core.$strict>>;
|
|
1381
1409
|
/**
|
|
1382
1410
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1383
1411
|
* fall back to target.sdkVersion.
|
|
@@ -1390,11 +1418,15 @@ declare const publishConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1390
1418
|
registry: z.ZodLiteral<"composer">;
|
|
1391
1419
|
}, z.core.$strict>, z.ZodObject<{
|
|
1392
1420
|
url: z.ZodOptional<z.ZodString>;
|
|
1393
|
-
/**
|
|
1394
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1395
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1396
|
-
*/
|
|
1421
|
+
/** Reference to registry publishing credentials. */
|
|
1397
1422
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1423
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1424
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1425
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1426
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1427
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1428
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1429
|
+
}, z.core.$strict>>;
|
|
1398
1430
|
/**
|
|
1399
1431
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1400
1432
|
* fall back to target.sdkVersion.
|
|
@@ -1415,18 +1447,18 @@ declare const publishConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1415
1447
|
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1416
1448
|
secretKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1417
1449
|
}, z.core.$strict>>;
|
|
1418
|
-
/**
|
|
1419
|
-
* Reference to Maven signing credentials. Raw signing keys are intentionally not part of SDK
|
|
1420
|
-
* Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1421
|
-
*/
|
|
1450
|
+
/** Reference to Maven signing credentials. */
|
|
1422
1451
|
signingCredentialsRef: z.ZodOptional<z.ZodString>;
|
|
1452
|
+
/** Raw Maven signing material. These values can be sensitive and must be handled as secrets. */
|
|
1453
|
+
signature: z.ZodOptional<z.ZodObject<{
|
|
1454
|
+
keyId: z.ZodString;
|
|
1455
|
+
password: z.ZodString;
|
|
1456
|
+
secretKey: z.ZodString;
|
|
1457
|
+
}, z.core.$strict>>;
|
|
1423
1458
|
}, z.core.$strict>], "registry">;
|
|
1424
1459
|
/** Artifact delivery is independent from optional package registry publication. */
|
|
1425
1460
|
declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1426
|
-
/**
|
|
1427
|
-
* Where output credential references are resolved. SDK Config IR carries refs only; raw resolved
|
|
1428
|
-
* credentials belong at the external publisher/orchestrator boundary, not in this config.
|
|
1429
|
-
*/
|
|
1461
|
+
/** Where output credential references are resolved. */
|
|
1430
1462
|
credentialResolution: z.ZodDefault<z.ZodEnum<{
|
|
1431
1463
|
"refs-only": "refs-only";
|
|
1432
1464
|
"resolved-by-orchestrator": "resolved-by-orchestrator";
|
|
@@ -1436,11 +1468,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1436
1468
|
path: z.ZodOptional<z.ZodString>;
|
|
1437
1469
|
publish: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1438
1470
|
url: z.ZodOptional<z.ZodString>;
|
|
1439
|
-
/**
|
|
1440
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1441
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1442
|
-
*/
|
|
1471
|
+
/** Reference to registry publishing credentials. */
|
|
1443
1472
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1473
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1474
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1475
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1476
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1477
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1478
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1479
|
+
}, z.core.$strict>>;
|
|
1444
1480
|
/**
|
|
1445
1481
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1446
1482
|
* fall back to target.sdkVersion.
|
|
@@ -1461,11 +1497,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1461
1497
|
publishToJsr: z.ZodOptional<z.ZodBoolean>;
|
|
1462
1498
|
}, z.core.$strict>, z.ZodObject<{
|
|
1463
1499
|
url: z.ZodOptional<z.ZodString>;
|
|
1464
|
-
/**
|
|
1465
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1466
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1467
|
-
*/
|
|
1500
|
+
/** Reference to registry publishing credentials. */
|
|
1468
1501
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1502
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1503
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1504
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1505
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1506
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1507
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1508
|
+
}, z.core.$strict>>;
|
|
1469
1509
|
/**
|
|
1470
1510
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1471
1511
|
* fall back to target.sdkVersion.
|
|
@@ -1482,11 +1522,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1482
1522
|
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1483
1523
|
}, z.core.$strict>, z.ZodObject<{
|
|
1484
1524
|
url: z.ZodOptional<z.ZodString>;
|
|
1485
|
-
/**
|
|
1486
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1487
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1488
|
-
*/
|
|
1525
|
+
/** Reference to registry publishing credentials. */
|
|
1489
1526
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1527
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1528
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1529
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1530
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1531
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1532
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1533
|
+
}, z.core.$strict>>;
|
|
1490
1534
|
/**
|
|
1491
1535
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1492
1536
|
* fall back to target.sdkVersion.
|
|
@@ -1502,11 +1546,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1502
1546
|
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1503
1547
|
}, z.core.$strict>, z.ZodObject<{
|
|
1504
1548
|
url: z.ZodOptional<z.ZodString>;
|
|
1505
|
-
/**
|
|
1506
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1507
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1508
|
-
*/
|
|
1549
|
+
/** Reference to registry publishing credentials. */
|
|
1509
1550
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1551
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1552
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1553
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1554
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1555
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1556
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1557
|
+
}, z.core.$strict>>;
|
|
1510
1558
|
/**
|
|
1511
1559
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1512
1560
|
* fall back to target.sdkVersion.
|
|
@@ -1520,11 +1568,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1520
1568
|
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1521
1569
|
}, z.core.$strict>, z.ZodObject<{
|
|
1522
1570
|
url: z.ZodOptional<z.ZodString>;
|
|
1523
|
-
/**
|
|
1524
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1525
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1526
|
-
*/
|
|
1571
|
+
/** Reference to registry publishing credentials. */
|
|
1527
1572
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1573
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1574
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1575
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1576
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1577
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1578
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1579
|
+
}, z.core.$strict>>;
|
|
1528
1580
|
/**
|
|
1529
1581
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1530
1582
|
* fall back to target.sdkVersion.
|
|
@@ -1538,11 +1590,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1538
1590
|
tokenEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1539
1591
|
}, z.core.$strict>, z.ZodObject<{
|
|
1540
1592
|
url: z.ZodOptional<z.ZodString>;
|
|
1541
|
-
/**
|
|
1542
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1543
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1544
|
-
*/
|
|
1593
|
+
/** Reference to registry publishing credentials. */
|
|
1545
1594
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1595
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1596
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1597
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1598
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1599
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1600
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1601
|
+
}, z.core.$strict>>;
|
|
1546
1602
|
/**
|
|
1547
1603
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1548
1604
|
* fall back to target.sdkVersion.
|
|
@@ -1555,11 +1611,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1555
1611
|
registry: z.ZodLiteral<"go">;
|
|
1556
1612
|
}, z.core.$strict>, z.ZodObject<{
|
|
1557
1613
|
url: z.ZodOptional<z.ZodString>;
|
|
1558
|
-
/**
|
|
1559
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1560
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1561
|
-
*/
|
|
1614
|
+
/** Reference to registry publishing credentials. */
|
|
1562
1615
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1616
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1617
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1618
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1619
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1620
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1621
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1622
|
+
}, z.core.$strict>>;
|
|
1563
1623
|
/**
|
|
1564
1624
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1565
1625
|
* fall back to target.sdkVersion.
|
|
@@ -1572,11 +1632,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1572
1632
|
registry: z.ZodLiteral<"composer">;
|
|
1573
1633
|
}, z.core.$strict>, z.ZodObject<{
|
|
1574
1634
|
url: z.ZodOptional<z.ZodString>;
|
|
1575
|
-
/**
|
|
1576
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1577
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1578
|
-
*/
|
|
1635
|
+
/** Reference to registry publishing credentials. */
|
|
1579
1636
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1637
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1638
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1639
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1640
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1641
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1642
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1643
|
+
}, z.core.$strict>>;
|
|
1580
1644
|
/**
|
|
1581
1645
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1582
1646
|
* fall back to target.sdkVersion.
|
|
@@ -1597,17 +1661,17 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1597
1661
|
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1598
1662
|
secretKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1599
1663
|
}, z.core.$strict>>;
|
|
1600
|
-
/**
|
|
1601
|
-
* Reference to Maven signing credentials. Raw signing keys are intentionally not part of SDK
|
|
1602
|
-
* Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1603
|
-
*/
|
|
1664
|
+
/** Reference to Maven signing credentials. */
|
|
1604
1665
|
signingCredentialsRef: z.ZodOptional<z.ZodString>;
|
|
1666
|
+
/** Raw Maven signing material. These values can be sensitive and must be handled as secrets. */
|
|
1667
|
+
signature: z.ZodOptional<z.ZodObject<{
|
|
1668
|
+
keyId: z.ZodString;
|
|
1669
|
+
password: z.ZodString;
|
|
1670
|
+
secretKey: z.ZodString;
|
|
1671
|
+
}, z.core.$strict>>;
|
|
1605
1672
|
}, z.core.$strict>], "registry">>;
|
|
1606
1673
|
}, z.core.$strict>, z.ZodObject<{
|
|
1607
|
-
/**
|
|
1608
|
-
* Where output credential references are resolved. SDK Config IR carries refs only; raw resolved
|
|
1609
|
-
* credentials belong at the external publisher/orchestrator boundary, not in this config.
|
|
1610
|
-
*/
|
|
1674
|
+
/** Where output credential references are resolved. */
|
|
1611
1675
|
credentialResolution: z.ZodDefault<z.ZodEnum<{
|
|
1612
1676
|
"refs-only": "refs-only";
|
|
1613
1677
|
"resolved-by-orchestrator": "resolved-by-orchestrator";
|
|
@@ -1617,11 +1681,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1617
1681
|
fileName: z.ZodOptional<z.ZodString>;
|
|
1618
1682
|
publish: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1619
1683
|
url: z.ZodOptional<z.ZodString>;
|
|
1620
|
-
/**
|
|
1621
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1622
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1623
|
-
*/
|
|
1684
|
+
/** Reference to registry publishing credentials. */
|
|
1624
1685
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1686
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1687
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1688
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1689
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1690
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1691
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1692
|
+
}, z.core.$strict>>;
|
|
1625
1693
|
/**
|
|
1626
1694
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1627
1695
|
* fall back to target.sdkVersion.
|
|
@@ -1642,11 +1710,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1642
1710
|
publishToJsr: z.ZodOptional<z.ZodBoolean>;
|
|
1643
1711
|
}, z.core.$strict>, z.ZodObject<{
|
|
1644
1712
|
url: z.ZodOptional<z.ZodString>;
|
|
1645
|
-
/**
|
|
1646
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1647
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1648
|
-
*/
|
|
1713
|
+
/** Reference to registry publishing credentials. */
|
|
1649
1714
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1715
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1716
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1717
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1718
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1719
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1720
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1721
|
+
}, z.core.$strict>>;
|
|
1650
1722
|
/**
|
|
1651
1723
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1652
1724
|
* fall back to target.sdkVersion.
|
|
@@ -1663,11 +1735,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1663
1735
|
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1664
1736
|
}, z.core.$strict>, z.ZodObject<{
|
|
1665
1737
|
url: z.ZodOptional<z.ZodString>;
|
|
1666
|
-
/**
|
|
1667
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1668
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1669
|
-
*/
|
|
1738
|
+
/** Reference to registry publishing credentials. */
|
|
1670
1739
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1740
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1741
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1742
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1743
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1744
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1745
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1746
|
+
}, z.core.$strict>>;
|
|
1671
1747
|
/**
|
|
1672
1748
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1673
1749
|
* fall back to target.sdkVersion.
|
|
@@ -1683,11 +1759,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1683
1759
|
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1684
1760
|
}, z.core.$strict>, z.ZodObject<{
|
|
1685
1761
|
url: z.ZodOptional<z.ZodString>;
|
|
1686
|
-
/**
|
|
1687
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1688
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1689
|
-
*/
|
|
1762
|
+
/** Reference to registry publishing credentials. */
|
|
1690
1763
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1764
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1765
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1766
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1767
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1768
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1769
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1770
|
+
}, z.core.$strict>>;
|
|
1691
1771
|
/**
|
|
1692
1772
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1693
1773
|
* fall back to target.sdkVersion.
|
|
@@ -1701,11 +1781,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1701
1781
|
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1702
1782
|
}, z.core.$strict>, z.ZodObject<{
|
|
1703
1783
|
url: z.ZodOptional<z.ZodString>;
|
|
1704
|
-
/**
|
|
1705
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1706
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1707
|
-
*/
|
|
1784
|
+
/** Reference to registry publishing credentials. */
|
|
1708
1785
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1786
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1787
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1788
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1789
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1790
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1791
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1792
|
+
}, z.core.$strict>>;
|
|
1709
1793
|
/**
|
|
1710
1794
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1711
1795
|
* fall back to target.sdkVersion.
|
|
@@ -1719,11 +1803,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1719
1803
|
tokenEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1720
1804
|
}, z.core.$strict>, z.ZodObject<{
|
|
1721
1805
|
url: z.ZodOptional<z.ZodString>;
|
|
1722
|
-
/**
|
|
1723
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1724
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1725
|
-
*/
|
|
1806
|
+
/** Reference to registry publishing credentials. */
|
|
1726
1807
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1808
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1809
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1810
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1811
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1812
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1813
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1814
|
+
}, z.core.$strict>>;
|
|
1727
1815
|
/**
|
|
1728
1816
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1729
1817
|
* fall back to target.sdkVersion.
|
|
@@ -1736,11 +1824,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1736
1824
|
registry: z.ZodLiteral<"go">;
|
|
1737
1825
|
}, z.core.$strict>, z.ZodObject<{
|
|
1738
1826
|
url: z.ZodOptional<z.ZodString>;
|
|
1739
|
-
/**
|
|
1740
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1741
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1742
|
-
*/
|
|
1827
|
+
/** Reference to registry publishing credentials. */
|
|
1743
1828
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1829
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1830
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1831
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1832
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1833
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1834
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1835
|
+
}, z.core.$strict>>;
|
|
1744
1836
|
/**
|
|
1745
1837
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1746
1838
|
* fall back to target.sdkVersion.
|
|
@@ -1753,11 +1845,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1753
1845
|
registry: z.ZodLiteral<"composer">;
|
|
1754
1846
|
}, z.core.$strict>, z.ZodObject<{
|
|
1755
1847
|
url: z.ZodOptional<z.ZodString>;
|
|
1756
|
-
/**
|
|
1757
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1758
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1759
|
-
*/
|
|
1848
|
+
/** Reference to registry publishing credentials. */
|
|
1760
1849
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1850
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1851
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1852
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1853
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1854
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1855
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1856
|
+
}, z.core.$strict>>;
|
|
1761
1857
|
/**
|
|
1762
1858
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1763
1859
|
* fall back to target.sdkVersion.
|
|
@@ -1778,17 +1874,17 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1778
1874
|
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1779
1875
|
secretKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1780
1876
|
}, z.core.$strict>>;
|
|
1781
|
-
/**
|
|
1782
|
-
* Reference to Maven signing credentials. Raw signing keys are intentionally not part of SDK
|
|
1783
|
-
* Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1784
|
-
*/
|
|
1877
|
+
/** Reference to Maven signing credentials. */
|
|
1785
1878
|
signingCredentialsRef: z.ZodOptional<z.ZodString>;
|
|
1879
|
+
/** Raw Maven signing material. These values can be sensitive and must be handled as secrets. */
|
|
1880
|
+
signature: z.ZodOptional<z.ZodObject<{
|
|
1881
|
+
keyId: z.ZodString;
|
|
1882
|
+
password: z.ZodString;
|
|
1883
|
+
secretKey: z.ZodString;
|
|
1884
|
+
}, z.core.$strict>>;
|
|
1786
1885
|
}, z.core.$strict>], "registry">>;
|
|
1787
1886
|
}, z.core.$strict>, z.ZodObject<{
|
|
1788
|
-
/**
|
|
1789
|
-
* Where output credential references are resolved. SDK Config IR carries refs only; raw resolved
|
|
1790
|
-
* credentials belong at the external publisher/orchestrator boundary, not in this config.
|
|
1791
|
-
*/
|
|
1887
|
+
/** Where output credential references are resolved. */
|
|
1792
1888
|
credentialResolution: z.ZodDefault<z.ZodEnum<{
|
|
1793
1889
|
"refs-only": "refs-only";
|
|
1794
1890
|
"resolved-by-orchestrator": "resolved-by-orchestrator";
|
|
@@ -1803,17 +1899,30 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1803
1899
|
push: "push";
|
|
1804
1900
|
release: "release";
|
|
1805
1901
|
"pull-request": "pull-request";
|
|
1902
|
+
commit: "commit";
|
|
1903
|
+
"commit-and-release": "commit-and-release";
|
|
1806
1904
|
}>>;
|
|
1807
1905
|
reviewers: z.ZodOptional<z.ZodObject<{
|
|
1808
1906
|
teams: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1809
1907
|
users: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1810
1908
|
}, z.core.$strict>>;
|
|
1811
|
-
/**
|
|
1812
|
-
* Reference to GitHub credentials. Raw tokens are intentionally not part of SDK Config IR; the
|
|
1813
|
-
* external publisher or orchestrator resolves this reference before use.
|
|
1814
|
-
*/
|
|
1909
|
+
/** Reference to GitHub credentials. */
|
|
1815
1910
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1911
|
+
/** Raw GitHub credentials. These values can be sensitive and must be handled as secrets. */
|
|
1912
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1913
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1914
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1915
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1916
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1917
|
+
}, z.core.$strict>>;
|
|
1816
1918
|
privateRepository: z.ZodOptional<z.ZodBoolean>;
|
|
1919
|
+
/** GitHub license block scoped to repository delivery. */
|
|
1920
|
+
license: z.ZodOptional<z.ZodObject<{
|
|
1921
|
+
/** SPDX identifier or license key for the repository license (for example, "MIT"). */
|
|
1922
|
+
type: z.ZodOptional<z.ZodString>;
|
|
1923
|
+
/** Path to a custom license file to be committed into the GitHub repository. */
|
|
1924
|
+
customPath: z.ZodOptional<z.ZodString>;
|
|
1925
|
+
}, z.core.$strict>>;
|
|
1817
1926
|
/** GitHub replay control. If omitted, the external publisher applies its default behavior. */
|
|
1818
1927
|
replay: z.ZodOptional<z.ZodObject<{
|
|
1819
1928
|
enabled: z.ZodBoolean;
|
|
@@ -1827,11 +1936,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1827
1936
|
}, z.core.$strict>;
|
|
1828
1937
|
publish: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1829
1938
|
url: z.ZodOptional<z.ZodString>;
|
|
1830
|
-
/**
|
|
1831
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1832
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1833
|
-
*/
|
|
1939
|
+
/** Reference to registry publishing credentials. */
|
|
1834
1940
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1941
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1942
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1943
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1944
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1945
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1946
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1947
|
+
}, z.core.$strict>>;
|
|
1835
1948
|
/**
|
|
1836
1949
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1837
1950
|
* fall back to target.sdkVersion.
|
|
@@ -1852,11 +1965,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1852
1965
|
publishToJsr: z.ZodOptional<z.ZodBoolean>;
|
|
1853
1966
|
}, z.core.$strict>, z.ZodObject<{
|
|
1854
1967
|
url: z.ZodOptional<z.ZodString>;
|
|
1855
|
-
/**
|
|
1856
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1857
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1858
|
-
*/
|
|
1968
|
+
/** Reference to registry publishing credentials. */
|
|
1859
1969
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1970
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1971
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1972
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1973
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1974
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1975
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1976
|
+
}, z.core.$strict>>;
|
|
1860
1977
|
/**
|
|
1861
1978
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1862
1979
|
* fall back to target.sdkVersion.
|
|
@@ -1873,11 +1990,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1873
1990
|
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1874
1991
|
}, z.core.$strict>, z.ZodObject<{
|
|
1875
1992
|
url: z.ZodOptional<z.ZodString>;
|
|
1876
|
-
/**
|
|
1877
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1878
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1879
|
-
*/
|
|
1993
|
+
/** Reference to registry publishing credentials. */
|
|
1880
1994
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1995
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1996
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1997
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1998
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1999
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2000
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2001
|
+
}, z.core.$strict>>;
|
|
1881
2002
|
/**
|
|
1882
2003
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1883
2004
|
* fall back to target.sdkVersion.
|
|
@@ -1893,11 +2014,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1893
2014
|
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1894
2015
|
}, z.core.$strict>, z.ZodObject<{
|
|
1895
2016
|
url: z.ZodOptional<z.ZodString>;
|
|
1896
|
-
/**
|
|
1897
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1898
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1899
|
-
*/
|
|
2017
|
+
/** Reference to registry publishing credentials. */
|
|
1900
2018
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2019
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
2020
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2021
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2022
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2023
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2024
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2025
|
+
}, z.core.$strict>>;
|
|
1901
2026
|
/**
|
|
1902
2027
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1903
2028
|
* fall back to target.sdkVersion.
|
|
@@ -1911,11 +2036,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1911
2036
|
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1912
2037
|
}, z.core.$strict>, z.ZodObject<{
|
|
1913
2038
|
url: z.ZodOptional<z.ZodString>;
|
|
1914
|
-
/**
|
|
1915
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1916
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1917
|
-
*/
|
|
2039
|
+
/** Reference to registry publishing credentials. */
|
|
1918
2040
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2041
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
2042
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2043
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2044
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2045
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2046
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2047
|
+
}, z.core.$strict>>;
|
|
1919
2048
|
/**
|
|
1920
2049
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1921
2050
|
* fall back to target.sdkVersion.
|
|
@@ -1929,11 +2058,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1929
2058
|
tokenEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1930
2059
|
}, z.core.$strict>, z.ZodObject<{
|
|
1931
2060
|
url: z.ZodOptional<z.ZodString>;
|
|
1932
|
-
/**
|
|
1933
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1934
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1935
|
-
*/
|
|
2061
|
+
/** Reference to registry publishing credentials. */
|
|
1936
2062
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2063
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
2064
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2065
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2066
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2067
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2068
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2069
|
+
}, z.core.$strict>>;
|
|
1937
2070
|
/**
|
|
1938
2071
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1939
2072
|
* fall back to target.sdkVersion.
|
|
@@ -1946,11 +2079,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1946
2079
|
registry: z.ZodLiteral<"go">;
|
|
1947
2080
|
}, z.core.$strict>, z.ZodObject<{
|
|
1948
2081
|
url: z.ZodOptional<z.ZodString>;
|
|
1949
|
-
/**
|
|
1950
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1951
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1952
|
-
*/
|
|
2082
|
+
/** Reference to registry publishing credentials. */
|
|
1953
2083
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2084
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
2085
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2086
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2087
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2088
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2089
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2090
|
+
}, z.core.$strict>>;
|
|
1954
2091
|
/**
|
|
1955
2092
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1956
2093
|
* fall back to target.sdkVersion.
|
|
@@ -1963,11 +2100,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1963
2100
|
registry: z.ZodLiteral<"composer">;
|
|
1964
2101
|
}, z.core.$strict>, z.ZodObject<{
|
|
1965
2102
|
url: z.ZodOptional<z.ZodString>;
|
|
1966
|
-
/**
|
|
1967
|
-
* Reference to registry publishing credentials. Raw tokens/passwords are intentionally not part of
|
|
1968
|
-
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1969
|
-
*/
|
|
2103
|
+
/** Reference to registry publishing credentials. */
|
|
1970
2104
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2105
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
2106
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2107
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2108
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2109
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2110
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2111
|
+
}, z.core.$strict>>;
|
|
1971
2112
|
/**
|
|
1972
2113
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1973
2114
|
* fall back to target.sdkVersion.
|
|
@@ -1988,11 +2129,14 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1988
2129
|
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1989
2130
|
secretKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1990
2131
|
}, z.core.$strict>>;
|
|
1991
|
-
/**
|
|
1992
|
-
* Reference to Maven signing credentials. Raw signing keys are intentionally not part of SDK
|
|
1993
|
-
* Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1994
|
-
*/
|
|
2132
|
+
/** Reference to Maven signing credentials. */
|
|
1995
2133
|
signingCredentialsRef: z.ZodOptional<z.ZodString>;
|
|
2134
|
+
/** Raw Maven signing material. These values can be sensitive and must be handled as secrets. */
|
|
2135
|
+
signature: z.ZodOptional<z.ZodObject<{
|
|
2136
|
+
keyId: z.ZodString;
|
|
2137
|
+
password: z.ZodString;
|
|
2138
|
+
secretKey: z.ZodString;
|
|
2139
|
+
}, z.core.$strict>>;
|
|
1996
2140
|
}, z.core.$strict>], "registry">>;
|
|
1997
2141
|
}, z.core.$strict>], "delivery">;
|
|
1998
2142
|
type CredentialResolution = z.infer<typeof credentialResolutionSchema>;
|
|
@@ -2387,6 +2531,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2387
2531
|
publish: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2388
2532
|
url: z.ZodOptional<z.ZodString>;
|
|
2389
2533
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2534
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2535
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2536
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2537
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2538
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2539
|
+
}, z.core.$strict>>;
|
|
2390
2540
|
version: z.ZodOptional<z.ZodString>;
|
|
2391
2541
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2392
2542
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2399,6 +2549,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2399
2549
|
}, z.core.$strict>, z.ZodObject<{
|
|
2400
2550
|
url: z.ZodOptional<z.ZodString>;
|
|
2401
2551
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2552
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2553
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2554
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2555
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2556
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2557
|
+
}, z.core.$strict>>;
|
|
2402
2558
|
version: z.ZodOptional<z.ZodString>;
|
|
2403
2559
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2404
2560
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2410,6 +2566,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2410
2566
|
}, z.core.$strict>, z.ZodObject<{
|
|
2411
2567
|
url: z.ZodOptional<z.ZodString>;
|
|
2412
2568
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2569
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2570
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2571
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2572
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2573
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2574
|
+
}, z.core.$strict>>;
|
|
2413
2575
|
version: z.ZodOptional<z.ZodString>;
|
|
2414
2576
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2415
2577
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2420,6 +2582,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2420
2582
|
}, z.core.$strict>, z.ZodObject<{
|
|
2421
2583
|
url: z.ZodOptional<z.ZodString>;
|
|
2422
2584
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2585
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2586
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2587
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2588
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2589
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2590
|
+
}, z.core.$strict>>;
|
|
2423
2591
|
version: z.ZodOptional<z.ZodString>;
|
|
2424
2592
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2425
2593
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2429,6 +2597,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2429
2597
|
}, z.core.$strict>, z.ZodObject<{
|
|
2430
2598
|
url: z.ZodOptional<z.ZodString>;
|
|
2431
2599
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2600
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2601
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2602
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2603
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2604
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2605
|
+
}, z.core.$strict>>;
|
|
2432
2606
|
version: z.ZodOptional<z.ZodString>;
|
|
2433
2607
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2434
2608
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2438,6 +2612,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2438
2612
|
}, z.core.$strict>, z.ZodObject<{
|
|
2439
2613
|
url: z.ZodOptional<z.ZodString>;
|
|
2440
2614
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2615
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2616
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2617
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2618
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2619
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2620
|
+
}, z.core.$strict>>;
|
|
2441
2621
|
version: z.ZodOptional<z.ZodString>;
|
|
2442
2622
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2443
2623
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2446,6 +2626,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2446
2626
|
}, z.core.$strict>, z.ZodObject<{
|
|
2447
2627
|
url: z.ZodOptional<z.ZodString>;
|
|
2448
2628
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2629
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2630
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2631
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2632
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2633
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2634
|
+
}, z.core.$strict>>;
|
|
2449
2635
|
version: z.ZodOptional<z.ZodString>;
|
|
2450
2636
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2451
2637
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2454,6 +2640,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2454
2640
|
}, z.core.$strict>, z.ZodObject<{
|
|
2455
2641
|
url: z.ZodOptional<z.ZodString>;
|
|
2456
2642
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2643
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2644
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2645
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2646
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2647
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2648
|
+
}, z.core.$strict>>;
|
|
2457
2649
|
version: z.ZodOptional<z.ZodString>;
|
|
2458
2650
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2459
2651
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2469,6 +2661,11 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2469
2661
|
secretKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2470
2662
|
}, z.core.$strict>>;
|
|
2471
2663
|
signingCredentialsRef: z.ZodOptional<z.ZodString>;
|
|
2664
|
+
signature: z.ZodOptional<z.ZodObject<{
|
|
2665
|
+
keyId: z.ZodString;
|
|
2666
|
+
password: z.ZodString;
|
|
2667
|
+
secretKey: z.ZodString;
|
|
2668
|
+
}, z.core.$strict>>;
|
|
2472
2669
|
}, z.core.$strict>], "registry">>;
|
|
2473
2670
|
}, z.core.$strict>, z.ZodObject<{
|
|
2474
2671
|
credentialResolution: z.ZodDefault<z.ZodEnum<{
|
|
@@ -2481,6 +2678,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2481
2678
|
publish: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2482
2679
|
url: z.ZodOptional<z.ZodString>;
|
|
2483
2680
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2681
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2682
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2683
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2684
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2685
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2686
|
+
}, z.core.$strict>>;
|
|
2484
2687
|
version: z.ZodOptional<z.ZodString>;
|
|
2485
2688
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2486
2689
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2493,6 +2696,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2493
2696
|
}, z.core.$strict>, z.ZodObject<{
|
|
2494
2697
|
url: z.ZodOptional<z.ZodString>;
|
|
2495
2698
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2699
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2700
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2701
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2702
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2703
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2704
|
+
}, z.core.$strict>>;
|
|
2496
2705
|
version: z.ZodOptional<z.ZodString>;
|
|
2497
2706
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2498
2707
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2504,6 +2713,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2504
2713
|
}, z.core.$strict>, z.ZodObject<{
|
|
2505
2714
|
url: z.ZodOptional<z.ZodString>;
|
|
2506
2715
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2716
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2717
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2718
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2719
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2720
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2721
|
+
}, z.core.$strict>>;
|
|
2507
2722
|
version: z.ZodOptional<z.ZodString>;
|
|
2508
2723
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2509
2724
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2514,6 +2729,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2514
2729
|
}, z.core.$strict>, z.ZodObject<{
|
|
2515
2730
|
url: z.ZodOptional<z.ZodString>;
|
|
2516
2731
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2732
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2733
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2734
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2735
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2736
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2737
|
+
}, z.core.$strict>>;
|
|
2517
2738
|
version: z.ZodOptional<z.ZodString>;
|
|
2518
2739
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2519
2740
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2523,6 +2744,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2523
2744
|
}, z.core.$strict>, z.ZodObject<{
|
|
2524
2745
|
url: z.ZodOptional<z.ZodString>;
|
|
2525
2746
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2747
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2748
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2749
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2750
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2751
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2752
|
+
}, z.core.$strict>>;
|
|
2526
2753
|
version: z.ZodOptional<z.ZodString>;
|
|
2527
2754
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2528
2755
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2532,6 +2759,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2532
2759
|
}, z.core.$strict>, z.ZodObject<{
|
|
2533
2760
|
url: z.ZodOptional<z.ZodString>;
|
|
2534
2761
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2762
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2763
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2764
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2765
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2766
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2767
|
+
}, z.core.$strict>>;
|
|
2535
2768
|
version: z.ZodOptional<z.ZodString>;
|
|
2536
2769
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2537
2770
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2540,6 +2773,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2540
2773
|
}, z.core.$strict>, z.ZodObject<{
|
|
2541
2774
|
url: z.ZodOptional<z.ZodString>;
|
|
2542
2775
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2776
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2777
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2778
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2779
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2780
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2781
|
+
}, z.core.$strict>>;
|
|
2543
2782
|
version: z.ZodOptional<z.ZodString>;
|
|
2544
2783
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2545
2784
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2548,6 +2787,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2548
2787
|
}, z.core.$strict>, z.ZodObject<{
|
|
2549
2788
|
url: z.ZodOptional<z.ZodString>;
|
|
2550
2789
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2790
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2791
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2792
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2793
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2794
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2795
|
+
}, z.core.$strict>>;
|
|
2551
2796
|
version: z.ZodOptional<z.ZodString>;
|
|
2552
2797
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2553
2798
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2563,6 +2808,11 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2563
2808
|
secretKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2564
2809
|
}, z.core.$strict>>;
|
|
2565
2810
|
signingCredentialsRef: z.ZodOptional<z.ZodString>;
|
|
2811
|
+
signature: z.ZodOptional<z.ZodObject<{
|
|
2812
|
+
keyId: z.ZodString;
|
|
2813
|
+
password: z.ZodString;
|
|
2814
|
+
secretKey: z.ZodString;
|
|
2815
|
+
}, z.core.$strict>>;
|
|
2566
2816
|
}, z.core.$strict>], "registry">>;
|
|
2567
2817
|
}, z.core.$strict>, z.ZodObject<{
|
|
2568
2818
|
credentialResolution: z.ZodDefault<z.ZodEnum<{
|
|
@@ -2579,13 +2829,25 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2579
2829
|
push: "push";
|
|
2580
2830
|
release: "release";
|
|
2581
2831
|
"pull-request": "pull-request";
|
|
2832
|
+
commit: "commit";
|
|
2833
|
+
"commit-and-release": "commit-and-release";
|
|
2582
2834
|
}>>;
|
|
2583
2835
|
reviewers: z.ZodOptional<z.ZodObject<{
|
|
2584
2836
|
teams: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2585
2837
|
users: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2586
2838
|
}, z.core.$strict>>;
|
|
2587
2839
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2840
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2841
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2842
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2843
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2844
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2845
|
+
}, z.core.$strict>>;
|
|
2588
2846
|
privateRepository: z.ZodOptional<z.ZodBoolean>;
|
|
2847
|
+
license: z.ZodOptional<z.ZodObject<{
|
|
2848
|
+
type: z.ZodOptional<z.ZodString>;
|
|
2849
|
+
customPath: z.ZodOptional<z.ZodString>;
|
|
2850
|
+
}, z.core.$strict>>;
|
|
2589
2851
|
replay: z.ZodOptional<z.ZodObject<{
|
|
2590
2852
|
enabled: z.ZodBoolean;
|
|
2591
2853
|
}, z.core.$strict>>;
|
|
@@ -2596,6 +2858,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2596
2858
|
publish: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2597
2859
|
url: z.ZodOptional<z.ZodString>;
|
|
2598
2860
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2861
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2862
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2863
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2864
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2865
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2866
|
+
}, z.core.$strict>>;
|
|
2599
2867
|
version: z.ZodOptional<z.ZodString>;
|
|
2600
2868
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2601
2869
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2608,6 +2876,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2608
2876
|
}, z.core.$strict>, z.ZodObject<{
|
|
2609
2877
|
url: z.ZodOptional<z.ZodString>;
|
|
2610
2878
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2879
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2880
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2881
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2882
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2883
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2884
|
+
}, z.core.$strict>>;
|
|
2611
2885
|
version: z.ZodOptional<z.ZodString>;
|
|
2612
2886
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2613
2887
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2619,6 +2893,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2619
2893
|
}, z.core.$strict>, z.ZodObject<{
|
|
2620
2894
|
url: z.ZodOptional<z.ZodString>;
|
|
2621
2895
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2896
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2897
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2898
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2899
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2900
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2901
|
+
}, z.core.$strict>>;
|
|
2622
2902
|
version: z.ZodOptional<z.ZodString>;
|
|
2623
2903
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2624
2904
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2629,6 +2909,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2629
2909
|
}, z.core.$strict>, z.ZodObject<{
|
|
2630
2910
|
url: z.ZodOptional<z.ZodString>;
|
|
2631
2911
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2912
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2913
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2914
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2915
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2916
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2917
|
+
}, z.core.$strict>>;
|
|
2632
2918
|
version: z.ZodOptional<z.ZodString>;
|
|
2633
2919
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2634
2920
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2638,6 +2924,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2638
2924
|
}, z.core.$strict>, z.ZodObject<{
|
|
2639
2925
|
url: z.ZodOptional<z.ZodString>;
|
|
2640
2926
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2927
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2928
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2929
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2930
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2931
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2932
|
+
}, z.core.$strict>>;
|
|
2641
2933
|
version: z.ZodOptional<z.ZodString>;
|
|
2642
2934
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2643
2935
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2647,6 +2939,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2647
2939
|
}, z.core.$strict>, z.ZodObject<{
|
|
2648
2940
|
url: z.ZodOptional<z.ZodString>;
|
|
2649
2941
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2942
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2943
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2944
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2945
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2946
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2947
|
+
}, z.core.$strict>>;
|
|
2650
2948
|
version: z.ZodOptional<z.ZodString>;
|
|
2651
2949
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2652
2950
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2655,6 +2953,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2655
2953
|
}, z.core.$strict>, z.ZodObject<{
|
|
2656
2954
|
url: z.ZodOptional<z.ZodString>;
|
|
2657
2955
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2956
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2957
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2958
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2959
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2960
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2961
|
+
}, z.core.$strict>>;
|
|
2658
2962
|
version: z.ZodOptional<z.ZodString>;
|
|
2659
2963
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2660
2964
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2663,6 +2967,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2663
2967
|
}, z.core.$strict>, z.ZodObject<{
|
|
2664
2968
|
url: z.ZodOptional<z.ZodString>;
|
|
2665
2969
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2970
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2971
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2972
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2973
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2974
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2975
|
+
}, z.core.$strict>>;
|
|
2666
2976
|
version: z.ZodOptional<z.ZodString>;
|
|
2667
2977
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2668
2978
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2678,6 +2988,11 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2678
2988
|
secretKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2679
2989
|
}, z.core.$strict>>;
|
|
2680
2990
|
signingCredentialsRef: z.ZodOptional<z.ZodString>;
|
|
2991
|
+
signature: z.ZodOptional<z.ZodObject<{
|
|
2992
|
+
keyId: z.ZodString;
|
|
2993
|
+
password: z.ZodString;
|
|
2994
|
+
secretKey: z.ZodString;
|
|
2995
|
+
}, z.core.$strict>>;
|
|
2681
2996
|
}, z.core.$strict>], "registry">>;
|
|
2682
2997
|
}, z.core.$strict>], "delivery">;
|
|
2683
2998
|
docs: z.ZodObject<{
|