@postman/sdk-config 0.3.1 → 0.3.3
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 +199 -45
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +199 -45
- package/dist/index.js.map +1 -1
- package/dist/sdk-config/index.cjs +167 -28
- package/dist/sdk-config/index.cjs.map +1 -1
- package/dist/sdk-config/index.d.cts +1 -1
- package/dist/sdk-config/index.d.ts +1 -1
- package/dist/sdk-config/index.js +167 -28
- package/dist/sdk-config/index.js.map +1 -1
- package/dist/sdk-config/v1/index.cjs +167 -28
- package/dist/sdk-config/v1/index.cjs.map +1 -1
- package/dist/sdk-config/v1/index.d.cts +4803 -1
- package/dist/sdk-config/v1/index.d.ts +4803 -1
- package/dist/sdk-config/v1/index.js +167 -28
- package/dist/sdk-config/v1/index.js.map +1 -1
- package/dist/sdk-config-ir/index.cjs +40 -19
- package/dist/sdk-config-ir/index.cjs.map +1 -1
- package/dist/sdk-config-ir/index.d.cts +1 -1
- package/dist/sdk-config-ir/index.d.ts +1 -1
- package/dist/sdk-config-ir/index.js +40 -19
- package/dist/sdk-config-ir/index.js.map +1 -1
- package/dist/sdk-config-ir/v1/index.cjs +40 -19
- package/dist/sdk-config-ir/v1/index.cjs.map +1 -1
- package/dist/sdk-config-ir/v1/index.d.cts +490 -162
- package/dist/sdk-config-ir/v1/index.d.ts +490 -162
- package/dist/sdk-config-ir/v1/index.js +40 -19
- package/dist/sdk-config-ir/v1/index.js.map +1 -1
- package/dist/{typescript-DNqK3T3v.d.cts → typescript-CKRe_6MB.d.cts} +5 -0
- package/dist/{typescript-DNqK3T3v.d.ts → typescript-CKRe_6MB.d.ts} +5 -0
- package/package.json +1 -1
- package/src/sdk-config/v1/README.md +33 -23
- package/src/sdk-config-ir/v1/README.md +102 -96
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { b as JsonObject } from '../../typescript-
|
|
2
|
-
export { C as CliGenerationConfig, a as CsharpGenerationConfig, D as Dependency, G as GoGenerationConfig, J as JavaGenerationConfig, c as JsonValue, K as KotlinGenerationConfig, M as McpAvailabilityStatus, d as McpGenerationConfig, e as McpToolFilter, P as PackageConfig, f as PhpGenerationConfig, g as PlanModifiers, h as PythonGenerationConfig, R as RubyGenerationConfig, i as RustGenerationConfig, S as SwiftGenerationConfig, T as TerraformGenerationConfig, j as TypescriptGenerationConfig, k as cliGenerationConfigSchema, l as composerPackageNameSchema, m as csharpGenerationConfigSchema, n as dependencySchema, o as exactSemverSchema, p as goGenerationConfigSchema, q as goModulePathSchema, r as javaGenerationConfigSchema, s as jsonObjectSchema, t as jsonValueSchema, u as kotlinGenerationConfigSchema, v as mcpAvailabilityStatuses, w as mcpGenerationConfigSchema, x as nonEmptyStringSchema, y as packageConfigSchema, z as phpGenerationConfigSchema, A as pythonGenerationConfigSchema, B as relativePathSchema, E as rubyGenerationConfigSchema, F as rustGenerationConfigSchema, H as swiftGenerationConfigSchema, I as terraformGenerationConfigSchema, L as typescriptGenerationConfigSchema } from '../../typescript-
|
|
1
|
+
import { b as JsonObject } from '../../typescript-CKRe_6MB.cjs';
|
|
2
|
+
export { C as CliGenerationConfig, a as CsharpGenerationConfig, D as Dependency, G as GoGenerationConfig, J as JavaGenerationConfig, c as JsonValue, K as KotlinGenerationConfig, M as McpAvailabilityStatus, d as McpGenerationConfig, e as McpToolFilter, P as PackageConfig, f as PhpGenerationConfig, g as PlanModifiers, h as PythonGenerationConfig, R as RubyGenerationConfig, i as RustGenerationConfig, S as SwiftGenerationConfig, T as TerraformGenerationConfig, j as TypescriptGenerationConfig, k as cliGenerationConfigSchema, l as composerPackageNameSchema, m as csharpGenerationConfigSchema, n as dependencySchema, o as exactSemverSchema, p as goGenerationConfigSchema, q as goModulePathSchema, r as javaGenerationConfigSchema, s as jsonObjectSchema, t as jsonValueSchema, u as kotlinGenerationConfigSchema, v as mcpAvailabilityStatuses, w as mcpGenerationConfigSchema, x as nonEmptyStringSchema, y as packageConfigSchema, z as phpGenerationConfigSchema, A as pythonGenerationConfigSchema, B as relativePathSchema, E as rubyGenerationConfigSchema, F as rustGenerationConfigSchema, H as swiftGenerationConfigSchema, I as terraformGenerationConfigSchema, L as typescriptGenerationConfigSchema } from '../../typescript-CKRe_6MB.cjs';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
|
|
5
5
|
declare const authSchemeSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -688,6 +688,10 @@ declare const languageGenerationConfigSchema: z.ZodObject<{
|
|
|
688
688
|
}, z.core.$strict>>;
|
|
689
689
|
alwaysInitializeOptionals: z.ZodOptional<z.ZodBoolean>;
|
|
690
690
|
useTypedDictRequests: z.ZodOptional<z.ZodBoolean>;
|
|
691
|
+
additionalInitExports: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
692
|
+
from: z.ZodString;
|
|
693
|
+
imports: z.ZodArray<z.ZodString>;
|
|
694
|
+
}, z.core.$strict>>>;
|
|
691
695
|
}, z.core.$strict>>;
|
|
692
696
|
java: z.ZodOptional<z.ZodObject<{
|
|
693
697
|
packageLayout: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1071,6 +1075,10 @@ declare const generationConfigSchema: z.ZodObject<{
|
|
|
1071
1075
|
}, z.core.$strict>>;
|
|
1072
1076
|
alwaysInitializeOptionals: z.ZodOptional<z.ZodBoolean>;
|
|
1073
1077
|
useTypedDictRequests: z.ZodOptional<z.ZodBoolean>;
|
|
1078
|
+
additionalInitExports: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1079
|
+
from: z.ZodString;
|
|
1080
|
+
imports: z.ZodArray<z.ZodString>;
|
|
1081
|
+
}, z.core.$strict>>>;
|
|
1074
1082
|
}, z.core.$strict>>;
|
|
1075
1083
|
java: z.ZodOptional<z.ZodObject<{
|
|
1076
1084
|
packageLayout: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1254,11 +1262,15 @@ declare const credentialResolutionSchema: z.ZodEnum<{
|
|
|
1254
1262
|
}>;
|
|
1255
1263
|
declare const publishConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1256
1264
|
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
|
-
*/
|
|
1265
|
+
/** Reference to registry publishing credentials. */
|
|
1261
1266
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1267
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1268
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1269
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1270
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1271
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1272
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1273
|
+
}, z.core.$strict>>;
|
|
1262
1274
|
/**
|
|
1263
1275
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1264
1276
|
* fall back to target.sdkVersion.
|
|
@@ -1279,11 +1291,15 @@ declare const publishConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1279
1291
|
publishToJsr: z.ZodOptional<z.ZodBoolean>;
|
|
1280
1292
|
}, z.core.$strict>, z.ZodObject<{
|
|
1281
1293
|
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
|
-
*/
|
|
1294
|
+
/** Reference to registry publishing credentials. */
|
|
1286
1295
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1296
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1297
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1298
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1299
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1300
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1301
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1302
|
+
}, z.core.$strict>>;
|
|
1287
1303
|
/**
|
|
1288
1304
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1289
1305
|
* fall back to target.sdkVersion.
|
|
@@ -1300,11 +1316,15 @@ declare const publishConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1300
1316
|
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1301
1317
|
}, z.core.$strict>, z.ZodObject<{
|
|
1302
1318
|
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
|
-
*/
|
|
1319
|
+
/** Reference to registry publishing credentials. */
|
|
1307
1320
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1321
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1322
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1323
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1324
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1325
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1326
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1327
|
+
}, z.core.$strict>>;
|
|
1308
1328
|
/**
|
|
1309
1329
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1310
1330
|
* fall back to target.sdkVersion.
|
|
@@ -1320,11 +1340,15 @@ declare const publishConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1320
1340
|
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1321
1341
|
}, z.core.$strict>, z.ZodObject<{
|
|
1322
1342
|
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
|
-
*/
|
|
1343
|
+
/** Reference to registry publishing credentials. */
|
|
1327
1344
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1345
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1346
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1347
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1348
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1349
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1350
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1351
|
+
}, z.core.$strict>>;
|
|
1328
1352
|
/**
|
|
1329
1353
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1330
1354
|
* fall back to target.sdkVersion.
|
|
@@ -1338,11 +1362,15 @@ declare const publishConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1338
1362
|
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1339
1363
|
}, z.core.$strict>, z.ZodObject<{
|
|
1340
1364
|
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
|
-
*/
|
|
1365
|
+
/** Reference to registry publishing credentials. */
|
|
1345
1366
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1367
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1368
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1369
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1370
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1371
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1372
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1373
|
+
}, z.core.$strict>>;
|
|
1346
1374
|
/**
|
|
1347
1375
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1348
1376
|
* fall back to target.sdkVersion.
|
|
@@ -1356,11 +1384,15 @@ declare const publishConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1356
1384
|
tokenEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1357
1385
|
}, z.core.$strict>, z.ZodObject<{
|
|
1358
1386
|
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
|
-
*/
|
|
1387
|
+
/** Reference to registry publishing credentials. */
|
|
1363
1388
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1389
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1390
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1391
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1392
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1393
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1394
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1395
|
+
}, z.core.$strict>>;
|
|
1364
1396
|
/**
|
|
1365
1397
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1366
1398
|
* fall back to target.sdkVersion.
|
|
@@ -1373,11 +1405,15 @@ declare const publishConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1373
1405
|
registry: z.ZodLiteral<"go">;
|
|
1374
1406
|
}, z.core.$strict>, z.ZodObject<{
|
|
1375
1407
|
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
|
-
*/
|
|
1408
|
+
/** Reference to registry publishing credentials. */
|
|
1380
1409
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1410
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1411
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1412
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1413
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1414
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1415
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1416
|
+
}, z.core.$strict>>;
|
|
1381
1417
|
/**
|
|
1382
1418
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1383
1419
|
* fall back to target.sdkVersion.
|
|
@@ -1390,11 +1426,15 @@ declare const publishConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1390
1426
|
registry: z.ZodLiteral<"composer">;
|
|
1391
1427
|
}, z.core.$strict>, z.ZodObject<{
|
|
1392
1428
|
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
|
-
*/
|
|
1429
|
+
/** Reference to registry publishing credentials. */
|
|
1397
1430
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1431
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1432
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1433
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1434
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1435
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1436
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1437
|
+
}, z.core.$strict>>;
|
|
1398
1438
|
/**
|
|
1399
1439
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1400
1440
|
* fall back to target.sdkVersion.
|
|
@@ -1415,18 +1455,18 @@ declare const publishConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1415
1455
|
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1416
1456
|
secretKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1417
1457
|
}, 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
|
-
*/
|
|
1458
|
+
/** Reference to Maven signing credentials. */
|
|
1422
1459
|
signingCredentialsRef: z.ZodOptional<z.ZodString>;
|
|
1460
|
+
/** Raw Maven signing material. These values can be sensitive and must be handled as secrets. */
|
|
1461
|
+
signature: z.ZodOptional<z.ZodObject<{
|
|
1462
|
+
keyId: z.ZodString;
|
|
1463
|
+
password: z.ZodString;
|
|
1464
|
+
secretKey: z.ZodString;
|
|
1465
|
+
}, z.core.$strict>>;
|
|
1423
1466
|
}, z.core.$strict>], "registry">;
|
|
1424
1467
|
/** Artifact delivery is independent from optional package registry publication. */
|
|
1425
1468
|
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
|
-
*/
|
|
1469
|
+
/** Where output credential references are resolved. */
|
|
1430
1470
|
credentialResolution: z.ZodDefault<z.ZodEnum<{
|
|
1431
1471
|
"refs-only": "refs-only";
|
|
1432
1472
|
"resolved-by-orchestrator": "resolved-by-orchestrator";
|
|
@@ -1436,11 +1476,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1436
1476
|
path: z.ZodOptional<z.ZodString>;
|
|
1437
1477
|
publish: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1438
1478
|
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
|
-
*/
|
|
1479
|
+
/** Reference to registry publishing credentials. */
|
|
1443
1480
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1481
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1482
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1483
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1484
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1485
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1486
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1487
|
+
}, z.core.$strict>>;
|
|
1444
1488
|
/**
|
|
1445
1489
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1446
1490
|
* fall back to target.sdkVersion.
|
|
@@ -1461,11 +1505,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1461
1505
|
publishToJsr: z.ZodOptional<z.ZodBoolean>;
|
|
1462
1506
|
}, z.core.$strict>, z.ZodObject<{
|
|
1463
1507
|
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
|
-
*/
|
|
1508
|
+
/** Reference to registry publishing credentials. */
|
|
1468
1509
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1510
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1511
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1512
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1513
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1514
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1515
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1516
|
+
}, z.core.$strict>>;
|
|
1469
1517
|
/**
|
|
1470
1518
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1471
1519
|
* fall back to target.sdkVersion.
|
|
@@ -1482,11 +1530,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1482
1530
|
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1483
1531
|
}, z.core.$strict>, z.ZodObject<{
|
|
1484
1532
|
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
|
-
*/
|
|
1533
|
+
/** Reference to registry publishing credentials. */
|
|
1489
1534
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1535
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1536
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1537
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1538
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1539
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1540
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1541
|
+
}, z.core.$strict>>;
|
|
1490
1542
|
/**
|
|
1491
1543
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1492
1544
|
* fall back to target.sdkVersion.
|
|
@@ -1502,11 +1554,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1502
1554
|
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1503
1555
|
}, z.core.$strict>, z.ZodObject<{
|
|
1504
1556
|
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
|
-
*/
|
|
1557
|
+
/** Reference to registry publishing credentials. */
|
|
1509
1558
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1559
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1560
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1561
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1562
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1563
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1564
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1565
|
+
}, z.core.$strict>>;
|
|
1510
1566
|
/**
|
|
1511
1567
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1512
1568
|
* fall back to target.sdkVersion.
|
|
@@ -1520,11 +1576,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1520
1576
|
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1521
1577
|
}, z.core.$strict>, z.ZodObject<{
|
|
1522
1578
|
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
|
-
*/
|
|
1579
|
+
/** Reference to registry publishing credentials. */
|
|
1527
1580
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1581
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1582
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1583
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1584
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1585
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1586
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1587
|
+
}, z.core.$strict>>;
|
|
1528
1588
|
/**
|
|
1529
1589
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1530
1590
|
* fall back to target.sdkVersion.
|
|
@@ -1538,11 +1598,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1538
1598
|
tokenEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1539
1599
|
}, z.core.$strict>, z.ZodObject<{
|
|
1540
1600
|
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
|
-
*/
|
|
1601
|
+
/** Reference to registry publishing credentials. */
|
|
1545
1602
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1603
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1604
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1605
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1606
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1607
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1608
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1609
|
+
}, z.core.$strict>>;
|
|
1546
1610
|
/**
|
|
1547
1611
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1548
1612
|
* fall back to target.sdkVersion.
|
|
@@ -1555,11 +1619,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1555
1619
|
registry: z.ZodLiteral<"go">;
|
|
1556
1620
|
}, z.core.$strict>, z.ZodObject<{
|
|
1557
1621
|
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
|
-
*/
|
|
1622
|
+
/** Reference to registry publishing credentials. */
|
|
1562
1623
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1624
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1625
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1626
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1627
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1628
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1629
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1630
|
+
}, z.core.$strict>>;
|
|
1563
1631
|
/**
|
|
1564
1632
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1565
1633
|
* fall back to target.sdkVersion.
|
|
@@ -1572,11 +1640,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1572
1640
|
registry: z.ZodLiteral<"composer">;
|
|
1573
1641
|
}, z.core.$strict>, z.ZodObject<{
|
|
1574
1642
|
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
|
-
*/
|
|
1643
|
+
/** Reference to registry publishing credentials. */
|
|
1579
1644
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1645
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1646
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1647
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1648
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1649
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1650
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1651
|
+
}, z.core.$strict>>;
|
|
1580
1652
|
/**
|
|
1581
1653
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1582
1654
|
* fall back to target.sdkVersion.
|
|
@@ -1597,17 +1669,17 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1597
1669
|
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1598
1670
|
secretKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1599
1671
|
}, 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
|
-
*/
|
|
1672
|
+
/** Reference to Maven signing credentials. */
|
|
1604
1673
|
signingCredentialsRef: z.ZodOptional<z.ZodString>;
|
|
1674
|
+
/** Raw Maven signing material. These values can be sensitive and must be handled as secrets. */
|
|
1675
|
+
signature: z.ZodOptional<z.ZodObject<{
|
|
1676
|
+
keyId: z.ZodString;
|
|
1677
|
+
password: z.ZodString;
|
|
1678
|
+
secretKey: z.ZodString;
|
|
1679
|
+
}, z.core.$strict>>;
|
|
1605
1680
|
}, z.core.$strict>], "registry">>;
|
|
1606
1681
|
}, 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
|
-
*/
|
|
1682
|
+
/** Where output credential references are resolved. */
|
|
1611
1683
|
credentialResolution: z.ZodDefault<z.ZodEnum<{
|
|
1612
1684
|
"refs-only": "refs-only";
|
|
1613
1685
|
"resolved-by-orchestrator": "resolved-by-orchestrator";
|
|
@@ -1617,11 +1689,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1617
1689
|
fileName: z.ZodOptional<z.ZodString>;
|
|
1618
1690
|
publish: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1619
1691
|
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
|
-
*/
|
|
1692
|
+
/** Reference to registry publishing credentials. */
|
|
1624
1693
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1694
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1695
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1696
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1697
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1698
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1699
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1700
|
+
}, z.core.$strict>>;
|
|
1625
1701
|
/**
|
|
1626
1702
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1627
1703
|
* fall back to target.sdkVersion.
|
|
@@ -1642,11 +1718,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1642
1718
|
publishToJsr: z.ZodOptional<z.ZodBoolean>;
|
|
1643
1719
|
}, z.core.$strict>, z.ZodObject<{
|
|
1644
1720
|
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
|
-
*/
|
|
1721
|
+
/** Reference to registry publishing credentials. */
|
|
1649
1722
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1723
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1724
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1725
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1726
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1727
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1728
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1729
|
+
}, z.core.$strict>>;
|
|
1650
1730
|
/**
|
|
1651
1731
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1652
1732
|
* fall back to target.sdkVersion.
|
|
@@ -1663,11 +1743,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1663
1743
|
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1664
1744
|
}, z.core.$strict>, z.ZodObject<{
|
|
1665
1745
|
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
|
-
*/
|
|
1746
|
+
/** Reference to registry publishing credentials. */
|
|
1670
1747
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1748
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1749
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1750
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1751
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1752
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1753
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1754
|
+
}, z.core.$strict>>;
|
|
1671
1755
|
/**
|
|
1672
1756
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1673
1757
|
* fall back to target.sdkVersion.
|
|
@@ -1683,11 +1767,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1683
1767
|
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1684
1768
|
}, z.core.$strict>, z.ZodObject<{
|
|
1685
1769
|
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
|
-
*/
|
|
1770
|
+
/** Reference to registry publishing credentials. */
|
|
1690
1771
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1772
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1773
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1774
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1775
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1776
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1777
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1778
|
+
}, z.core.$strict>>;
|
|
1691
1779
|
/**
|
|
1692
1780
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1693
1781
|
* fall back to target.sdkVersion.
|
|
@@ -1701,11 +1789,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1701
1789
|
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1702
1790
|
}, z.core.$strict>, z.ZodObject<{
|
|
1703
1791
|
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
|
-
*/
|
|
1792
|
+
/** Reference to registry publishing credentials. */
|
|
1708
1793
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1794
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1795
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1796
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1797
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1798
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1799
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1800
|
+
}, z.core.$strict>>;
|
|
1709
1801
|
/**
|
|
1710
1802
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1711
1803
|
* fall back to target.sdkVersion.
|
|
@@ -1719,11 +1811,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1719
1811
|
tokenEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1720
1812
|
}, z.core.$strict>, z.ZodObject<{
|
|
1721
1813
|
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
|
-
*/
|
|
1814
|
+
/** Reference to registry publishing credentials. */
|
|
1726
1815
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1816
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1817
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1818
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1819
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1820
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1821
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1822
|
+
}, z.core.$strict>>;
|
|
1727
1823
|
/**
|
|
1728
1824
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1729
1825
|
* fall back to target.sdkVersion.
|
|
@@ -1736,11 +1832,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1736
1832
|
registry: z.ZodLiteral<"go">;
|
|
1737
1833
|
}, z.core.$strict>, z.ZodObject<{
|
|
1738
1834
|
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
|
-
*/
|
|
1835
|
+
/** Reference to registry publishing credentials. */
|
|
1743
1836
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1837
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1838
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1839
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1840
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1841
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1842
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1843
|
+
}, z.core.$strict>>;
|
|
1744
1844
|
/**
|
|
1745
1845
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1746
1846
|
* fall back to target.sdkVersion.
|
|
@@ -1753,11 +1853,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1753
1853
|
registry: z.ZodLiteral<"composer">;
|
|
1754
1854
|
}, z.core.$strict>, z.ZodObject<{
|
|
1755
1855
|
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
|
-
*/
|
|
1856
|
+
/** Reference to registry publishing credentials. */
|
|
1760
1857
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1858
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1859
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1860
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1861
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1862
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1863
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1864
|
+
}, z.core.$strict>>;
|
|
1761
1865
|
/**
|
|
1762
1866
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1763
1867
|
* fall back to target.sdkVersion.
|
|
@@ -1778,17 +1882,17 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1778
1882
|
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1779
1883
|
secretKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1780
1884
|
}, 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
|
-
*/
|
|
1885
|
+
/** Reference to Maven signing credentials. */
|
|
1785
1886
|
signingCredentialsRef: z.ZodOptional<z.ZodString>;
|
|
1887
|
+
/** Raw Maven signing material. These values can be sensitive and must be handled as secrets. */
|
|
1888
|
+
signature: z.ZodOptional<z.ZodObject<{
|
|
1889
|
+
keyId: z.ZodString;
|
|
1890
|
+
password: z.ZodString;
|
|
1891
|
+
secretKey: z.ZodString;
|
|
1892
|
+
}, z.core.$strict>>;
|
|
1786
1893
|
}, z.core.$strict>], "registry">>;
|
|
1787
1894
|
}, 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
|
-
*/
|
|
1895
|
+
/** Where output credential references are resolved. */
|
|
1792
1896
|
credentialResolution: z.ZodDefault<z.ZodEnum<{
|
|
1793
1897
|
"refs-only": "refs-only";
|
|
1794
1898
|
"resolved-by-orchestrator": "resolved-by-orchestrator";
|
|
@@ -1803,17 +1907,30 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1803
1907
|
push: "push";
|
|
1804
1908
|
release: "release";
|
|
1805
1909
|
"pull-request": "pull-request";
|
|
1910
|
+
commit: "commit";
|
|
1911
|
+
"commit-and-release": "commit-and-release";
|
|
1806
1912
|
}>>;
|
|
1807
1913
|
reviewers: z.ZodOptional<z.ZodObject<{
|
|
1808
1914
|
teams: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1809
1915
|
users: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1810
1916
|
}, 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
|
-
*/
|
|
1917
|
+
/** Reference to GitHub credentials. */
|
|
1815
1918
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1919
|
+
/** Raw GitHub credentials. These values can be sensitive and must be handled as secrets. */
|
|
1920
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1921
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1922
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1923
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1924
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1925
|
+
}, z.core.$strict>>;
|
|
1816
1926
|
privateRepository: z.ZodOptional<z.ZodBoolean>;
|
|
1927
|
+
/** GitHub license block scoped to repository delivery. */
|
|
1928
|
+
license: z.ZodOptional<z.ZodObject<{
|
|
1929
|
+
/** SPDX identifier or license key for the repository license (for example, "MIT"). */
|
|
1930
|
+
type: z.ZodOptional<z.ZodString>;
|
|
1931
|
+
/** Path to a custom license file to be committed into the GitHub repository. */
|
|
1932
|
+
customPath: z.ZodOptional<z.ZodString>;
|
|
1933
|
+
}, z.core.$strict>>;
|
|
1817
1934
|
/** GitHub replay control. If omitted, the external publisher applies its default behavior. */
|
|
1818
1935
|
replay: z.ZodOptional<z.ZodObject<{
|
|
1819
1936
|
enabled: z.ZodBoolean;
|
|
@@ -1827,11 +1944,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1827
1944
|
}, z.core.$strict>;
|
|
1828
1945
|
publish: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1829
1946
|
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
|
-
*/
|
|
1947
|
+
/** Reference to registry publishing credentials. */
|
|
1834
1948
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1949
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1950
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1951
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1952
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1953
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1954
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1955
|
+
}, z.core.$strict>>;
|
|
1835
1956
|
/**
|
|
1836
1957
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1837
1958
|
* fall back to target.sdkVersion.
|
|
@@ -1852,11 +1973,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1852
1973
|
publishToJsr: z.ZodOptional<z.ZodBoolean>;
|
|
1853
1974
|
}, z.core.$strict>, z.ZodObject<{
|
|
1854
1975
|
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
|
-
*/
|
|
1976
|
+
/** Reference to registry publishing credentials. */
|
|
1859
1977
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1978
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
1979
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
1980
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1981
|
+
password: z.ZodOptional<z.ZodString>;
|
|
1982
|
+
token: z.ZodOptional<z.ZodString>;
|
|
1983
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1984
|
+
}, z.core.$strict>>;
|
|
1860
1985
|
/**
|
|
1861
1986
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1862
1987
|
* fall back to target.sdkVersion.
|
|
@@ -1873,11 +1998,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1873
1998
|
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1874
1999
|
}, z.core.$strict>, z.ZodObject<{
|
|
1875
2000
|
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
|
-
*/
|
|
2001
|
+
/** Reference to registry publishing credentials. */
|
|
1880
2002
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2003
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
2004
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2005
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2006
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2007
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2008
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2009
|
+
}, z.core.$strict>>;
|
|
1881
2010
|
/**
|
|
1882
2011
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1883
2012
|
* fall back to target.sdkVersion.
|
|
@@ -1893,11 +2022,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1893
2022
|
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1894
2023
|
}, z.core.$strict>, z.ZodObject<{
|
|
1895
2024
|
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
|
-
*/
|
|
2025
|
+
/** Reference to registry publishing credentials. */
|
|
1900
2026
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2027
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
2028
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2029
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2030
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2031
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2032
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2033
|
+
}, z.core.$strict>>;
|
|
1901
2034
|
/**
|
|
1902
2035
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1903
2036
|
* fall back to target.sdkVersion.
|
|
@@ -1911,11 +2044,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1911
2044
|
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1912
2045
|
}, z.core.$strict>, z.ZodObject<{
|
|
1913
2046
|
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
|
-
*/
|
|
2047
|
+
/** Reference to registry publishing credentials. */
|
|
1918
2048
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2049
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
2050
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2051
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2052
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2053
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2054
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2055
|
+
}, z.core.$strict>>;
|
|
1919
2056
|
/**
|
|
1920
2057
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1921
2058
|
* fall back to target.sdkVersion.
|
|
@@ -1929,11 +2066,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1929
2066
|
tokenEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1930
2067
|
}, z.core.$strict>, z.ZodObject<{
|
|
1931
2068
|
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
|
-
*/
|
|
2069
|
+
/** Reference to registry publishing credentials. */
|
|
1936
2070
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2071
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
2072
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2073
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2074
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2075
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2076
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2077
|
+
}, z.core.$strict>>;
|
|
1937
2078
|
/**
|
|
1938
2079
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1939
2080
|
* fall back to target.sdkVersion.
|
|
@@ -1946,11 +2087,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1946
2087
|
registry: z.ZodLiteral<"go">;
|
|
1947
2088
|
}, z.core.$strict>, z.ZodObject<{
|
|
1948
2089
|
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
|
-
*/
|
|
2090
|
+
/** Reference to registry publishing credentials. */
|
|
1953
2091
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2092
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
2093
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2094
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2095
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2096
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2097
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2098
|
+
}, z.core.$strict>>;
|
|
1954
2099
|
/**
|
|
1955
2100
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1956
2101
|
* fall back to target.sdkVersion.
|
|
@@ -1963,11 +2108,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1963
2108
|
registry: z.ZodLiteral<"composer">;
|
|
1964
2109
|
}, z.core.$strict>, z.ZodObject<{
|
|
1965
2110
|
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
|
-
*/
|
|
2111
|
+
/** Reference to registry publishing credentials. */
|
|
1970
2112
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2113
|
+
/** Raw registry credentials. These values can be sensitive and must be handled as secrets. */
|
|
2114
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2115
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2116
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2117
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2118
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2119
|
+
}, z.core.$strict>>;
|
|
1971
2120
|
/**
|
|
1972
2121
|
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1973
2122
|
* fall back to target.sdkVersion.
|
|
@@ -1988,11 +2137,14 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1988
2137
|
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1989
2138
|
secretKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1990
2139
|
}, 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
|
-
*/
|
|
2140
|
+
/** Reference to Maven signing credentials. */
|
|
1995
2141
|
signingCredentialsRef: z.ZodOptional<z.ZodString>;
|
|
2142
|
+
/** Raw Maven signing material. These values can be sensitive and must be handled as secrets. */
|
|
2143
|
+
signature: z.ZodOptional<z.ZodObject<{
|
|
2144
|
+
keyId: z.ZodString;
|
|
2145
|
+
password: z.ZodString;
|
|
2146
|
+
secretKey: z.ZodString;
|
|
2147
|
+
}, z.core.$strict>>;
|
|
1996
2148
|
}, z.core.$strict>], "registry">>;
|
|
1997
2149
|
}, z.core.$strict>], "delivery">;
|
|
1998
2150
|
type CredentialResolution = z.infer<typeof credentialResolutionSchema>;
|
|
@@ -2290,6 +2442,7 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2290
2442
|
authors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2291
2443
|
name: z.ZodString;
|
|
2292
2444
|
email: z.ZodOptional<z.ZodEmail>;
|
|
2445
|
+
url: z.ZodOptional<z.ZodString>;
|
|
2293
2446
|
}, z.core.$strict>>>;
|
|
2294
2447
|
developers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2295
2448
|
name: z.ZodString;
|
|
@@ -2387,6 +2540,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2387
2540
|
publish: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2388
2541
|
url: z.ZodOptional<z.ZodString>;
|
|
2389
2542
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2543
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2544
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2545
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2546
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2547
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2548
|
+
}, z.core.$strict>>;
|
|
2390
2549
|
version: z.ZodOptional<z.ZodString>;
|
|
2391
2550
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2392
2551
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2399,6 +2558,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2399
2558
|
}, z.core.$strict>, z.ZodObject<{
|
|
2400
2559
|
url: z.ZodOptional<z.ZodString>;
|
|
2401
2560
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2561
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2562
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2563
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2564
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2565
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2566
|
+
}, z.core.$strict>>;
|
|
2402
2567
|
version: z.ZodOptional<z.ZodString>;
|
|
2403
2568
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2404
2569
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2410,6 +2575,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2410
2575
|
}, z.core.$strict>, z.ZodObject<{
|
|
2411
2576
|
url: z.ZodOptional<z.ZodString>;
|
|
2412
2577
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2578
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2579
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2580
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2581
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2582
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2583
|
+
}, z.core.$strict>>;
|
|
2413
2584
|
version: z.ZodOptional<z.ZodString>;
|
|
2414
2585
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2415
2586
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2420,6 +2591,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2420
2591
|
}, z.core.$strict>, z.ZodObject<{
|
|
2421
2592
|
url: z.ZodOptional<z.ZodString>;
|
|
2422
2593
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2594
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2595
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2596
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2597
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2598
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2599
|
+
}, z.core.$strict>>;
|
|
2423
2600
|
version: z.ZodOptional<z.ZodString>;
|
|
2424
2601
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2425
2602
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2429,6 +2606,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2429
2606
|
}, z.core.$strict>, z.ZodObject<{
|
|
2430
2607
|
url: z.ZodOptional<z.ZodString>;
|
|
2431
2608
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2609
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2610
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2611
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2612
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2613
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2614
|
+
}, z.core.$strict>>;
|
|
2432
2615
|
version: z.ZodOptional<z.ZodString>;
|
|
2433
2616
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2434
2617
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2438,6 +2621,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2438
2621
|
}, z.core.$strict>, z.ZodObject<{
|
|
2439
2622
|
url: z.ZodOptional<z.ZodString>;
|
|
2440
2623
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2624
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2625
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2626
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2627
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2628
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2629
|
+
}, z.core.$strict>>;
|
|
2441
2630
|
version: z.ZodOptional<z.ZodString>;
|
|
2442
2631
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2443
2632
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2446,6 +2635,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2446
2635
|
}, z.core.$strict>, z.ZodObject<{
|
|
2447
2636
|
url: z.ZodOptional<z.ZodString>;
|
|
2448
2637
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2638
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2639
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2640
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2641
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2642
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2643
|
+
}, z.core.$strict>>;
|
|
2449
2644
|
version: z.ZodOptional<z.ZodString>;
|
|
2450
2645
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2451
2646
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2454,6 +2649,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2454
2649
|
}, z.core.$strict>, z.ZodObject<{
|
|
2455
2650
|
url: z.ZodOptional<z.ZodString>;
|
|
2456
2651
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2652
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2653
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2654
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2655
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2656
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2657
|
+
}, z.core.$strict>>;
|
|
2457
2658
|
version: z.ZodOptional<z.ZodString>;
|
|
2458
2659
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2459
2660
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2469,6 +2670,11 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2469
2670
|
secretKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2470
2671
|
}, z.core.$strict>>;
|
|
2471
2672
|
signingCredentialsRef: z.ZodOptional<z.ZodString>;
|
|
2673
|
+
signature: z.ZodOptional<z.ZodObject<{
|
|
2674
|
+
keyId: z.ZodString;
|
|
2675
|
+
password: z.ZodString;
|
|
2676
|
+
secretKey: z.ZodString;
|
|
2677
|
+
}, z.core.$strict>>;
|
|
2472
2678
|
}, z.core.$strict>], "registry">>;
|
|
2473
2679
|
}, z.core.$strict>, z.ZodObject<{
|
|
2474
2680
|
credentialResolution: z.ZodDefault<z.ZodEnum<{
|
|
@@ -2481,6 +2687,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2481
2687
|
publish: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2482
2688
|
url: z.ZodOptional<z.ZodString>;
|
|
2483
2689
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2690
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2691
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2692
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2693
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2694
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2695
|
+
}, z.core.$strict>>;
|
|
2484
2696
|
version: z.ZodOptional<z.ZodString>;
|
|
2485
2697
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2486
2698
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2493,6 +2705,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2493
2705
|
}, z.core.$strict>, z.ZodObject<{
|
|
2494
2706
|
url: z.ZodOptional<z.ZodString>;
|
|
2495
2707
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2708
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2709
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2710
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2711
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2712
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2713
|
+
}, z.core.$strict>>;
|
|
2496
2714
|
version: z.ZodOptional<z.ZodString>;
|
|
2497
2715
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2498
2716
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2504,6 +2722,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2504
2722
|
}, z.core.$strict>, z.ZodObject<{
|
|
2505
2723
|
url: z.ZodOptional<z.ZodString>;
|
|
2506
2724
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2725
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2726
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2727
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2728
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2729
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2730
|
+
}, z.core.$strict>>;
|
|
2507
2731
|
version: z.ZodOptional<z.ZodString>;
|
|
2508
2732
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2509
2733
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2514,6 +2738,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2514
2738
|
}, z.core.$strict>, z.ZodObject<{
|
|
2515
2739
|
url: z.ZodOptional<z.ZodString>;
|
|
2516
2740
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2741
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2742
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2743
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2744
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2745
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2746
|
+
}, z.core.$strict>>;
|
|
2517
2747
|
version: z.ZodOptional<z.ZodString>;
|
|
2518
2748
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2519
2749
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2523,6 +2753,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2523
2753
|
}, z.core.$strict>, z.ZodObject<{
|
|
2524
2754
|
url: z.ZodOptional<z.ZodString>;
|
|
2525
2755
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2756
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2757
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2758
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2759
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2760
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2761
|
+
}, z.core.$strict>>;
|
|
2526
2762
|
version: z.ZodOptional<z.ZodString>;
|
|
2527
2763
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2528
2764
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2532,6 +2768,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2532
2768
|
}, z.core.$strict>, z.ZodObject<{
|
|
2533
2769
|
url: z.ZodOptional<z.ZodString>;
|
|
2534
2770
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2771
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2772
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2773
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2774
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2775
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2776
|
+
}, z.core.$strict>>;
|
|
2535
2777
|
version: z.ZodOptional<z.ZodString>;
|
|
2536
2778
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2537
2779
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2540,6 +2782,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2540
2782
|
}, z.core.$strict>, z.ZodObject<{
|
|
2541
2783
|
url: z.ZodOptional<z.ZodString>;
|
|
2542
2784
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2785
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2786
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2787
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2788
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2789
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2790
|
+
}, z.core.$strict>>;
|
|
2543
2791
|
version: z.ZodOptional<z.ZodString>;
|
|
2544
2792
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2545
2793
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2548,6 +2796,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2548
2796
|
}, z.core.$strict>, z.ZodObject<{
|
|
2549
2797
|
url: z.ZodOptional<z.ZodString>;
|
|
2550
2798
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2799
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2800
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2801
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2802
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2803
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2804
|
+
}, z.core.$strict>>;
|
|
2551
2805
|
version: z.ZodOptional<z.ZodString>;
|
|
2552
2806
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2553
2807
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2563,6 +2817,11 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2563
2817
|
secretKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2564
2818
|
}, z.core.$strict>>;
|
|
2565
2819
|
signingCredentialsRef: z.ZodOptional<z.ZodString>;
|
|
2820
|
+
signature: z.ZodOptional<z.ZodObject<{
|
|
2821
|
+
keyId: z.ZodString;
|
|
2822
|
+
password: z.ZodString;
|
|
2823
|
+
secretKey: z.ZodString;
|
|
2824
|
+
}, z.core.$strict>>;
|
|
2566
2825
|
}, z.core.$strict>], "registry">>;
|
|
2567
2826
|
}, z.core.$strict>, z.ZodObject<{
|
|
2568
2827
|
credentialResolution: z.ZodDefault<z.ZodEnum<{
|
|
@@ -2579,13 +2838,25 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2579
2838
|
push: "push";
|
|
2580
2839
|
release: "release";
|
|
2581
2840
|
"pull-request": "pull-request";
|
|
2841
|
+
commit: "commit";
|
|
2842
|
+
"commit-and-release": "commit-and-release";
|
|
2582
2843
|
}>>;
|
|
2583
2844
|
reviewers: z.ZodOptional<z.ZodObject<{
|
|
2584
2845
|
teams: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2585
2846
|
users: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2586
2847
|
}, z.core.$strict>>;
|
|
2587
2848
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2849
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2850
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2851
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2852
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2853
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2854
|
+
}, z.core.$strict>>;
|
|
2588
2855
|
privateRepository: z.ZodOptional<z.ZodBoolean>;
|
|
2856
|
+
license: z.ZodOptional<z.ZodObject<{
|
|
2857
|
+
type: z.ZodOptional<z.ZodString>;
|
|
2858
|
+
customPath: z.ZodOptional<z.ZodString>;
|
|
2859
|
+
}, z.core.$strict>>;
|
|
2589
2860
|
replay: z.ZodOptional<z.ZodObject<{
|
|
2590
2861
|
enabled: z.ZodBoolean;
|
|
2591
2862
|
}, z.core.$strict>>;
|
|
@@ -2596,6 +2867,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2596
2867
|
publish: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2597
2868
|
url: z.ZodOptional<z.ZodString>;
|
|
2598
2869
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2870
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2871
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2872
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2873
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2874
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2875
|
+
}, z.core.$strict>>;
|
|
2599
2876
|
version: z.ZodOptional<z.ZodString>;
|
|
2600
2877
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2601
2878
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2608,6 +2885,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2608
2885
|
}, z.core.$strict>, z.ZodObject<{
|
|
2609
2886
|
url: z.ZodOptional<z.ZodString>;
|
|
2610
2887
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2888
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2889
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2890
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2891
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2892
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2893
|
+
}, z.core.$strict>>;
|
|
2611
2894
|
version: z.ZodOptional<z.ZodString>;
|
|
2612
2895
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2613
2896
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2619,6 +2902,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2619
2902
|
}, z.core.$strict>, z.ZodObject<{
|
|
2620
2903
|
url: z.ZodOptional<z.ZodString>;
|
|
2621
2904
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2905
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2906
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2907
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2908
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2909
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2910
|
+
}, z.core.$strict>>;
|
|
2622
2911
|
version: z.ZodOptional<z.ZodString>;
|
|
2623
2912
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2624
2913
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2629,6 +2918,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2629
2918
|
}, z.core.$strict>, z.ZodObject<{
|
|
2630
2919
|
url: z.ZodOptional<z.ZodString>;
|
|
2631
2920
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2921
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2922
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2923
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2924
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2925
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2926
|
+
}, z.core.$strict>>;
|
|
2632
2927
|
version: z.ZodOptional<z.ZodString>;
|
|
2633
2928
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2634
2929
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2638,6 +2933,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2638
2933
|
}, z.core.$strict>, z.ZodObject<{
|
|
2639
2934
|
url: z.ZodOptional<z.ZodString>;
|
|
2640
2935
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2936
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2937
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2938
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2939
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2940
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2941
|
+
}, z.core.$strict>>;
|
|
2641
2942
|
version: z.ZodOptional<z.ZodString>;
|
|
2642
2943
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2643
2944
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2647,6 +2948,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2647
2948
|
}, z.core.$strict>, z.ZodObject<{
|
|
2648
2949
|
url: z.ZodOptional<z.ZodString>;
|
|
2649
2950
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2951
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2952
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2953
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2954
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2955
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2956
|
+
}, z.core.$strict>>;
|
|
2650
2957
|
version: z.ZodOptional<z.ZodString>;
|
|
2651
2958
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2652
2959
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2655,6 +2962,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2655
2962
|
}, z.core.$strict>, z.ZodObject<{
|
|
2656
2963
|
url: z.ZodOptional<z.ZodString>;
|
|
2657
2964
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2965
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2966
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2967
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2968
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2969
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2970
|
+
}, z.core.$strict>>;
|
|
2658
2971
|
version: z.ZodOptional<z.ZodString>;
|
|
2659
2972
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2660
2973
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2663,6 +2976,12 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2663
2976
|
}, z.core.$strict>, z.ZodObject<{
|
|
2664
2977
|
url: z.ZodOptional<z.ZodString>;
|
|
2665
2978
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2979
|
+
credentials: z.ZodOptional<z.ZodObject<{
|
|
2980
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2981
|
+
password: z.ZodOptional<z.ZodString>;
|
|
2982
|
+
token: z.ZodOptional<z.ZodString>;
|
|
2983
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2984
|
+
}, z.core.$strict>>;
|
|
2666
2985
|
version: z.ZodOptional<z.ZodString>;
|
|
2667
2986
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2668
2987
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2678,6 +2997,11 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2678
2997
|
secretKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2679
2998
|
}, z.core.$strict>>;
|
|
2680
2999
|
signingCredentialsRef: z.ZodOptional<z.ZodString>;
|
|
3000
|
+
signature: z.ZodOptional<z.ZodObject<{
|
|
3001
|
+
keyId: z.ZodString;
|
|
3002
|
+
password: z.ZodString;
|
|
3003
|
+
secretKey: z.ZodString;
|
|
3004
|
+
}, z.core.$strict>>;
|
|
2681
3005
|
}, z.core.$strict>], "registry">>;
|
|
2682
3006
|
}, z.core.$strict>], "delivery">;
|
|
2683
3007
|
docs: z.ZodObject<{
|
|
@@ -2944,6 +3268,10 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2944
3268
|
}, z.core.$strict>>;
|
|
2945
3269
|
alwaysInitializeOptionals: z.ZodOptional<z.ZodBoolean>;
|
|
2946
3270
|
useTypedDictRequests: z.ZodOptional<z.ZodBoolean>;
|
|
3271
|
+
additionalInitExports: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3272
|
+
from: z.ZodString;
|
|
3273
|
+
imports: z.ZodArray<z.ZodString>;
|
|
3274
|
+
}, z.core.$strict>>>;
|
|
2947
3275
|
}, z.core.$strict>>;
|
|
2948
3276
|
java: z.ZodOptional<z.ZodObject<{
|
|
2949
3277
|
packageLayout: z.ZodOptional<z.ZodEnum<{
|