@postman/sdk-config 0.1.1 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +29 -12
- package/dist/index.cjs +352 -145
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +345 -146
- package/dist/index.js.map +1 -1
- package/dist/sdk-config/index.cjs +281 -109
- package/dist/sdk-config/index.cjs.map +1 -1
- package/dist/sdk-config/index.d.cts +2 -2
- package/dist/sdk-config/index.d.ts +2 -2
- package/dist/sdk-config/index.js +276 -110
- package/dist/sdk-config/index.js.map +1 -1
- package/dist/sdk-config/v1/index.cjs +281 -109
- package/dist/sdk-config/v1/index.cjs.map +1 -1
- package/dist/sdk-config/v1/index.d.cts +6903 -289
- package/dist/sdk-config/v1/index.d.ts +6903 -289
- package/dist/sdk-config/v1/index.js +276 -110
- package/dist/sdk-config/v1/index.js.map +1 -1
- package/dist/sdk-config-ir/index.cjs +126 -30
- package/dist/sdk-config-ir/index.cjs.map +1 -1
- package/dist/sdk-config-ir/index.d.cts +2 -2
- package/dist/sdk-config-ir/index.d.ts +2 -2
- package/dist/sdk-config-ir/index.js +125 -31
- package/dist/sdk-config-ir/index.js.map +1 -1
- package/dist/sdk-config-ir/v1/index.cjs +126 -30
- package/dist/sdk-config-ir/v1/index.cjs.map +1 -1
- package/dist/sdk-config-ir/v1/index.d.cts +534 -15
- package/dist/sdk-config-ir/v1/index.d.ts +534 -15
- package/dist/sdk-config-ir/v1/index.js +125 -31
- package/dist/sdk-config-ir/v1/index.js.map +1 -1
- package/dist/{typescript-DK97815_.d.cts → typescript-DNqK3T3v.d.cts} +3 -0
- package/dist/{typescript-DK97815_.d.ts → typescript-DNqK3T3v.d.ts} +3 -0
- package/docs/releasing.md +114 -0
- package/package.json +1 -1
- package/src/sdk-config/v1/README.md +91 -23
- package/src/sdk-config-ir/v1/README.md +91 -83
|
@@ -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-DNqK3T3v.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-DNqK3T3v.cjs';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
|
|
5
5
|
declare const authSchemeSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -359,6 +359,72 @@ type AuthConfig = z.infer<typeof authConfigSchema>;
|
|
|
359
359
|
type ApiConfigInput = z.input<typeof apiConfigSchema>;
|
|
360
360
|
type ApiConfig = z.output<typeof apiConfigSchema>;
|
|
361
361
|
|
|
362
|
+
declare const clientRetryOverrideSchema: z.ZodObject<{
|
|
363
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
364
|
+
maxAttempts: z.ZodOptional<z.ZodNumber>;
|
|
365
|
+
retryDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
366
|
+
maxDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
367
|
+
jitterMs: z.ZodOptional<z.ZodNumber>;
|
|
368
|
+
backoffFactor: z.ZodOptional<z.ZodNumber>;
|
|
369
|
+
statusCodes: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
370
|
+
methods: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
371
|
+
statusCodeProfile: z.ZodOptional<z.ZodEnum<{
|
|
372
|
+
legacy: "legacy";
|
|
373
|
+
recommended: "recommended";
|
|
374
|
+
}>>;
|
|
375
|
+
maxRetryAfterDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
376
|
+
}, z.core.$strict>;
|
|
377
|
+
/** Sparse client properties that can override an inherited client configuration. */
|
|
378
|
+
declare const clientConfigOverrideSchema: z.ZodObject<{
|
|
379
|
+
retry: z.ZodOptional<z.ZodObject<{
|
|
380
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
381
|
+
maxAttempts: z.ZodOptional<z.ZodNumber>;
|
|
382
|
+
retryDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
383
|
+
maxDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
384
|
+
jitterMs: z.ZodOptional<z.ZodNumber>;
|
|
385
|
+
backoffFactor: z.ZodOptional<z.ZodNumber>;
|
|
386
|
+
statusCodes: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
387
|
+
methods: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
388
|
+
statusCodeProfile: z.ZodOptional<z.ZodEnum<{
|
|
389
|
+
legacy: "legacy";
|
|
390
|
+
recommended: "recommended";
|
|
391
|
+
}>>;
|
|
392
|
+
maxRetryAfterDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
393
|
+
}, z.core.$strict>>;
|
|
394
|
+
responseHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
395
|
+
responseValidation: z.ZodOptional<z.ZodBoolean>;
|
|
396
|
+
multiTenant: z.ZodOptional<z.ZodBoolean>;
|
|
397
|
+
additionalConstructorParameters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
398
|
+
name: z.ZodString;
|
|
399
|
+
example: z.ZodOptional<z.ZodString>;
|
|
400
|
+
description: z.ZodOptional<z.ZodString>;
|
|
401
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
402
|
+
}, z.core.$strict>>>;
|
|
403
|
+
timeoutMs: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodLiteral<"infinity">]>>;
|
|
404
|
+
requestParameterStyle: z.ZodOptional<z.ZodEnum<{
|
|
405
|
+
wrapped: "wrapped";
|
|
406
|
+
inline: "inline";
|
|
407
|
+
"language-default": "language-default";
|
|
408
|
+
}>>;
|
|
409
|
+
pathParameterStyle: z.ZodOptional<z.ZodEnum<{
|
|
410
|
+
wrapped: "wrapped";
|
|
411
|
+
inline: "inline";
|
|
412
|
+
"language-default": "language-default";
|
|
413
|
+
}>>;
|
|
414
|
+
filePropertyStyle: z.ZodOptional<z.ZodEnum<{
|
|
415
|
+
wrapped: "wrapped";
|
|
416
|
+
inline: "inline";
|
|
417
|
+
"language-default": "language-default";
|
|
418
|
+
}>>;
|
|
419
|
+
useDefaultRequestParameterValues: z.ZodOptional<z.ZodBoolean>;
|
|
420
|
+
respectOptionalRequestBody: z.ZodOptional<z.ZodBoolean>;
|
|
421
|
+
tokenRefresh: z.ZodOptional<z.ZodObject<{
|
|
422
|
+
enabled: z.ZodBoolean;
|
|
423
|
+
endpoint: z.ZodOptional<z.ZodString>;
|
|
424
|
+
accessTokenField: z.ZodOptional<z.ZodString>;
|
|
425
|
+
refreshTokenField: z.ZodOptional<z.ZodString>;
|
|
426
|
+
}, z.core.$strict>>;
|
|
427
|
+
}, z.core.$strict>;
|
|
362
428
|
declare const clientConfigSchema: z.ZodObject<{
|
|
363
429
|
retry: z.ZodPrefault<z.ZodObject<{
|
|
364
430
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -367,16 +433,15 @@ declare const clientConfigSchema: z.ZodObject<{
|
|
|
367
433
|
maxDelayMs: z.ZodDefault<z.ZodNumber>;
|
|
368
434
|
jitterMs: z.ZodDefault<z.ZodNumber>;
|
|
369
435
|
backoffFactor: z.ZodDefault<z.ZodNumber>;
|
|
370
|
-
statusCodes: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
371
436
|
methods: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
437
|
+
maxRetryAfterDelayMs: z.ZodDefault<z.ZodNumber>;
|
|
438
|
+
statusCodes: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
372
439
|
statusCodeProfile: z.ZodOptional<z.ZodEnum<{
|
|
373
440
|
legacy: "legacy";
|
|
374
441
|
recommended: "recommended";
|
|
375
442
|
}>>;
|
|
376
|
-
maxRetryAfterDelayMs: z.ZodDefault<z.ZodNumber>;
|
|
377
443
|
}, z.core.$strict>>;
|
|
378
444
|
responseHeaders: z.ZodDefault<z.ZodBoolean>;
|
|
379
|
-
responseValidation: z.ZodOptional<z.ZodBoolean>;
|
|
380
445
|
multiTenant: z.ZodDefault<z.ZodBoolean>;
|
|
381
446
|
additionalConstructorParameters: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
382
447
|
name: z.ZodString;
|
|
@@ -384,6 +449,7 @@ declare const clientConfigSchema: z.ZodObject<{
|
|
|
384
449
|
description: z.ZodOptional<z.ZodString>;
|
|
385
450
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
386
451
|
}, z.core.$strict>>>;
|
|
452
|
+
responseValidation: z.ZodOptional<z.ZodBoolean>;
|
|
387
453
|
timeoutMs: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodLiteral<"infinity">]>>;
|
|
388
454
|
requestParameterStyle: z.ZodOptional<z.ZodEnum<{
|
|
389
455
|
wrapped: "wrapped";
|
|
@@ -409,6 +475,7 @@ declare const clientConfigSchema: z.ZodObject<{
|
|
|
409
475
|
refreshTokenField: z.ZodOptional<z.ZodString>;
|
|
410
476
|
}, z.core.$strict>>;
|
|
411
477
|
}, z.core.$strict>;
|
|
478
|
+
type ClientConfigOverride = z.infer<typeof clientConfigOverrideSchema>;
|
|
412
479
|
type ClientConfigInput = z.input<typeof clientConfigSchema>;
|
|
413
480
|
type ClientConfig = z.output<typeof clientConfigSchema>;
|
|
414
481
|
|
|
@@ -586,6 +653,7 @@ declare const languageGenerationConfigSchema: z.ZodObject<{
|
|
|
586
653
|
}>>;
|
|
587
654
|
bundle: z.ZodOptional<z.ZodBoolean>;
|
|
588
655
|
exportClassDefault: z.ZodOptional<z.ZodBoolean>;
|
|
656
|
+
namespaceExportName: z.ZodOptional<z.ZodString>;
|
|
589
657
|
allowCustomFetcher: z.ZodOptional<z.ZodBoolean>;
|
|
590
658
|
useBrandedStringAliases: z.ZodOptional<z.ZodBoolean>;
|
|
591
659
|
useLegacyExports: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -721,6 +789,7 @@ declare const languageGenerationConfigSchema: z.ZodObject<{
|
|
|
721
789
|
}>>;
|
|
722
790
|
bundle: z.ZodOptional<z.ZodBoolean>;
|
|
723
791
|
exportClassDefault: z.ZodOptional<z.ZodBoolean>;
|
|
792
|
+
namespaceExportName: z.ZodOptional<z.ZodString>;
|
|
724
793
|
allowCustomFetcher: z.ZodOptional<z.ZodBoolean>;
|
|
725
794
|
useBrandedStringAliases: z.ZodOptional<z.ZodBoolean>;
|
|
726
795
|
useLegacyExports: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -911,6 +980,8 @@ declare const generationConfigSchema: z.ZodObject<{
|
|
|
911
980
|
apiErrorName: z.ZodOptional<z.ZodString>;
|
|
912
981
|
baseErrorName: z.ZodOptional<z.ZodString>;
|
|
913
982
|
pagerName: z.ZodOptional<z.ZodString>;
|
|
983
|
+
smartCasing: z.ZodOptional<z.ZodBoolean>;
|
|
984
|
+
smartCasingDigitWordBoundary: z.ZodOptional<z.ZodBoolean>;
|
|
914
985
|
}, z.core.$strict>>;
|
|
915
986
|
layout: z.ZodOptional<z.ZodObject<{
|
|
916
987
|
outputDirectory: z.ZodOptional<z.ZodEnum<{
|
|
@@ -965,6 +1036,7 @@ declare const generationConfigSchema: z.ZodObject<{
|
|
|
965
1036
|
}>>;
|
|
966
1037
|
bundle: z.ZodOptional<z.ZodBoolean>;
|
|
967
1038
|
exportClassDefault: z.ZodOptional<z.ZodBoolean>;
|
|
1039
|
+
namespaceExportName: z.ZodOptional<z.ZodString>;
|
|
968
1040
|
allowCustomFetcher: z.ZodOptional<z.ZodBoolean>;
|
|
969
1041
|
useBrandedStringAliases: z.ZodOptional<z.ZodBoolean>;
|
|
970
1042
|
useLegacyExports: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1100,6 +1172,7 @@ declare const generationConfigSchema: z.ZodObject<{
|
|
|
1100
1172
|
}>>;
|
|
1101
1173
|
bundle: z.ZodOptional<z.ZodBoolean>;
|
|
1102
1174
|
exportClassDefault: z.ZodOptional<z.ZodBoolean>;
|
|
1175
|
+
namespaceExportName: z.ZodOptional<z.ZodString>;
|
|
1103
1176
|
allowCustomFetcher: z.ZodOptional<z.ZodBoolean>;
|
|
1104
1177
|
useBrandedStringAliases: z.ZodOptional<z.ZodBoolean>;
|
|
1105
1178
|
useLegacyExports: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1186,9 +1259,24 @@ declare const publishConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1186
1259
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1187
1260
|
*/
|
|
1188
1261
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1262
|
+
/**
|
|
1263
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1264
|
+
* fall back to target.sdkVersion.
|
|
1265
|
+
*/
|
|
1266
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1189
1267
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1190
1268
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1269
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1270
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1271
|
+
/** Use registry trusted publishing / OIDC instead of a static token secret. */
|
|
1272
|
+
trustedPublishing: z.ZodOptional<z.ZodBoolean>;
|
|
1191
1273
|
registry: z.ZodLiteral<"npm">;
|
|
1274
|
+
/** Environment variable name containing the npm registry token. */
|
|
1275
|
+
tokenEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1276
|
+
/** Write npm package metadata as private when the publisher creates/updates package.json. */
|
|
1277
|
+
isPackagePrivate: z.ZodOptional<z.ZodBoolean>;
|
|
1278
|
+
/** Also publish the TypeScript package to JSR from the npm publishing path. */
|
|
1279
|
+
publishToJsr: z.ZodOptional<z.ZodBoolean>;
|
|
1192
1280
|
}, z.core.$strict>, z.ZodObject<{
|
|
1193
1281
|
url: z.ZodOptional<z.ZodString>;
|
|
1194
1282
|
/**
|
|
@@ -1196,9 +1284,20 @@ declare const publishConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1196
1284
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1197
1285
|
*/
|
|
1198
1286
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1287
|
+
/**
|
|
1288
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1289
|
+
* fall back to target.sdkVersion.
|
|
1290
|
+
*/
|
|
1291
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1199
1292
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1200
1293
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1294
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1295
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1296
|
+
/** Use registry trusted publishing / OIDC instead of a static token secret. */
|
|
1297
|
+
trustedPublishing: z.ZodOptional<z.ZodBoolean>;
|
|
1201
1298
|
registry: z.ZodLiteral<"pypi">;
|
|
1299
|
+
usernameEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1300
|
+
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1202
1301
|
}, z.core.$strict>, z.ZodObject<{
|
|
1203
1302
|
url: z.ZodOptional<z.ZodString>;
|
|
1204
1303
|
/**
|
|
@@ -1206,9 +1305,19 @@ declare const publishConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1206
1305
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1207
1306
|
*/
|
|
1208
1307
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1308
|
+
/**
|
|
1309
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1310
|
+
* fall back to target.sdkVersion.
|
|
1311
|
+
*/
|
|
1312
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1209
1313
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1210
1314
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1315
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1316
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1317
|
+
/** Use registry trusted publishing / OIDC instead of a static token secret. */
|
|
1318
|
+
trustedPublishing: z.ZodOptional<z.ZodBoolean>;
|
|
1211
1319
|
registry: z.ZodLiteral<"nuget">;
|
|
1320
|
+
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1212
1321
|
}, z.core.$strict>, z.ZodObject<{
|
|
1213
1322
|
url: z.ZodOptional<z.ZodString>;
|
|
1214
1323
|
/**
|
|
@@ -1216,9 +1325,17 @@ declare const publishConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1216
1325
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1217
1326
|
*/
|
|
1218
1327
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1328
|
+
/**
|
|
1329
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1330
|
+
* fall back to target.sdkVersion.
|
|
1331
|
+
*/
|
|
1332
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1219
1333
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1220
1334
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1335
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1336
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1221
1337
|
registry: z.ZodLiteral<"rubygems">;
|
|
1338
|
+
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1222
1339
|
}, z.core.$strict>, z.ZodObject<{
|
|
1223
1340
|
url: z.ZodOptional<z.ZodString>;
|
|
1224
1341
|
/**
|
|
@@ -1226,9 +1343,17 @@ declare const publishConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1226
1343
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1227
1344
|
*/
|
|
1228
1345
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1346
|
+
/**
|
|
1347
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1348
|
+
* fall back to target.sdkVersion.
|
|
1349
|
+
*/
|
|
1350
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1229
1351
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1230
1352
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1353
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1354
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1231
1355
|
registry: z.ZodLiteral<"crates">;
|
|
1356
|
+
tokenEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1232
1357
|
}, z.core.$strict>, z.ZodObject<{
|
|
1233
1358
|
url: z.ZodOptional<z.ZodString>;
|
|
1234
1359
|
/**
|
|
@@ -1236,8 +1361,15 @@ declare const publishConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1236
1361
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1237
1362
|
*/
|
|
1238
1363
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1364
|
+
/**
|
|
1365
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1366
|
+
* fall back to target.sdkVersion.
|
|
1367
|
+
*/
|
|
1368
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1239
1369
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1240
1370
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1371
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1372
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1241
1373
|
registry: z.ZodLiteral<"go">;
|
|
1242
1374
|
}, z.core.$strict>, z.ZodObject<{
|
|
1243
1375
|
url: z.ZodOptional<z.ZodString>;
|
|
@@ -1246,8 +1378,15 @@ declare const publishConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1246
1378
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1247
1379
|
*/
|
|
1248
1380
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1381
|
+
/**
|
|
1382
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1383
|
+
* fall back to target.sdkVersion.
|
|
1384
|
+
*/
|
|
1385
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1249
1386
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1250
1387
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1388
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1389
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1251
1390
|
registry: z.ZodLiteral<"composer">;
|
|
1252
1391
|
}, z.core.$strict>, z.ZodObject<{
|
|
1253
1392
|
url: z.ZodOptional<z.ZodString>;
|
|
@@ -1256,9 +1395,26 @@ declare const publishConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1256
1395
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1257
1396
|
*/
|
|
1258
1397
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1398
|
+
/**
|
|
1399
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1400
|
+
* fall back to target.sdkVersion.
|
|
1401
|
+
*/
|
|
1402
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1259
1403
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1260
1404
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1405
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1406
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1261
1407
|
registry: z.ZodLiteral<"maven">;
|
|
1408
|
+
/** Maven coordinate in groupId:artifactId form when consumers need the combined value. */
|
|
1409
|
+
coordinate: z.ZodOptional<z.ZodString>;
|
|
1410
|
+
usernameEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1411
|
+
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1412
|
+
mavenUrlEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1413
|
+
signatureEnvironmentVariables: z.ZodOptional<z.ZodObject<{
|
|
1414
|
+
keyIdEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1415
|
+
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1416
|
+
secretKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1417
|
+
}, z.core.$strict>>;
|
|
1262
1418
|
/**
|
|
1263
1419
|
* Reference to Maven signing credentials. Raw signing keys are intentionally not part of SDK
|
|
1264
1420
|
* Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
@@ -1285,9 +1441,24 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1285
1441
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1286
1442
|
*/
|
|
1287
1443
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1444
|
+
/**
|
|
1445
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1446
|
+
* fall back to target.sdkVersion.
|
|
1447
|
+
*/
|
|
1448
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1288
1449
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1289
1450
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1451
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1452
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1453
|
+
/** Use registry trusted publishing / OIDC instead of a static token secret. */
|
|
1454
|
+
trustedPublishing: z.ZodOptional<z.ZodBoolean>;
|
|
1290
1455
|
registry: z.ZodLiteral<"npm">;
|
|
1456
|
+
/** Environment variable name containing the npm registry token. */
|
|
1457
|
+
tokenEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1458
|
+
/** Write npm package metadata as private when the publisher creates/updates package.json. */
|
|
1459
|
+
isPackagePrivate: z.ZodOptional<z.ZodBoolean>;
|
|
1460
|
+
/** Also publish the TypeScript package to JSR from the npm publishing path. */
|
|
1461
|
+
publishToJsr: z.ZodOptional<z.ZodBoolean>;
|
|
1291
1462
|
}, z.core.$strict>, z.ZodObject<{
|
|
1292
1463
|
url: z.ZodOptional<z.ZodString>;
|
|
1293
1464
|
/**
|
|
@@ -1295,9 +1466,20 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1295
1466
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1296
1467
|
*/
|
|
1297
1468
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1469
|
+
/**
|
|
1470
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1471
|
+
* fall back to target.sdkVersion.
|
|
1472
|
+
*/
|
|
1473
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1298
1474
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1299
1475
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1476
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1477
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1478
|
+
/** Use registry trusted publishing / OIDC instead of a static token secret. */
|
|
1479
|
+
trustedPublishing: z.ZodOptional<z.ZodBoolean>;
|
|
1300
1480
|
registry: z.ZodLiteral<"pypi">;
|
|
1481
|
+
usernameEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1482
|
+
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1301
1483
|
}, z.core.$strict>, z.ZodObject<{
|
|
1302
1484
|
url: z.ZodOptional<z.ZodString>;
|
|
1303
1485
|
/**
|
|
@@ -1305,9 +1487,19 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1305
1487
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1306
1488
|
*/
|
|
1307
1489
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1490
|
+
/**
|
|
1491
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1492
|
+
* fall back to target.sdkVersion.
|
|
1493
|
+
*/
|
|
1494
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1308
1495
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1309
1496
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1497
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1498
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1499
|
+
/** Use registry trusted publishing / OIDC instead of a static token secret. */
|
|
1500
|
+
trustedPublishing: z.ZodOptional<z.ZodBoolean>;
|
|
1310
1501
|
registry: z.ZodLiteral<"nuget">;
|
|
1502
|
+
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1311
1503
|
}, z.core.$strict>, z.ZodObject<{
|
|
1312
1504
|
url: z.ZodOptional<z.ZodString>;
|
|
1313
1505
|
/**
|
|
@@ -1315,9 +1507,17 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1315
1507
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1316
1508
|
*/
|
|
1317
1509
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1510
|
+
/**
|
|
1511
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1512
|
+
* fall back to target.sdkVersion.
|
|
1513
|
+
*/
|
|
1514
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1318
1515
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1319
1516
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1517
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1518
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1320
1519
|
registry: z.ZodLiteral<"rubygems">;
|
|
1520
|
+
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1321
1521
|
}, z.core.$strict>, z.ZodObject<{
|
|
1322
1522
|
url: z.ZodOptional<z.ZodString>;
|
|
1323
1523
|
/**
|
|
@@ -1325,9 +1525,17 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1325
1525
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1326
1526
|
*/
|
|
1327
1527
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1528
|
+
/**
|
|
1529
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1530
|
+
* fall back to target.sdkVersion.
|
|
1531
|
+
*/
|
|
1532
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1328
1533
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1329
1534
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1535
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1536
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1330
1537
|
registry: z.ZodLiteral<"crates">;
|
|
1538
|
+
tokenEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1331
1539
|
}, z.core.$strict>, z.ZodObject<{
|
|
1332
1540
|
url: z.ZodOptional<z.ZodString>;
|
|
1333
1541
|
/**
|
|
@@ -1335,8 +1543,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1335
1543
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1336
1544
|
*/
|
|
1337
1545
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1546
|
+
/**
|
|
1547
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1548
|
+
* fall back to target.sdkVersion.
|
|
1549
|
+
*/
|
|
1550
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1338
1551
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1339
1552
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1553
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1554
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1340
1555
|
registry: z.ZodLiteral<"go">;
|
|
1341
1556
|
}, z.core.$strict>, z.ZodObject<{
|
|
1342
1557
|
url: z.ZodOptional<z.ZodString>;
|
|
@@ -1345,8 +1560,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1345
1560
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1346
1561
|
*/
|
|
1347
1562
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1563
|
+
/**
|
|
1564
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1565
|
+
* fall back to target.sdkVersion.
|
|
1566
|
+
*/
|
|
1567
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1348
1568
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1349
1569
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1570
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1571
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1350
1572
|
registry: z.ZodLiteral<"composer">;
|
|
1351
1573
|
}, z.core.$strict>, z.ZodObject<{
|
|
1352
1574
|
url: z.ZodOptional<z.ZodString>;
|
|
@@ -1355,9 +1577,26 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1355
1577
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1356
1578
|
*/
|
|
1357
1579
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1580
|
+
/**
|
|
1581
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1582
|
+
* fall back to target.sdkVersion.
|
|
1583
|
+
*/
|
|
1584
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1358
1585
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1359
1586
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1587
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1588
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1360
1589
|
registry: z.ZodLiteral<"maven">;
|
|
1590
|
+
/** Maven coordinate in groupId:artifactId form when consumers need the combined value. */
|
|
1591
|
+
coordinate: z.ZodOptional<z.ZodString>;
|
|
1592
|
+
usernameEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1593
|
+
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1594
|
+
mavenUrlEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1595
|
+
signatureEnvironmentVariables: z.ZodOptional<z.ZodObject<{
|
|
1596
|
+
keyIdEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1597
|
+
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1598
|
+
secretKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1599
|
+
}, z.core.$strict>>;
|
|
1361
1600
|
/**
|
|
1362
1601
|
* Reference to Maven signing credentials. Raw signing keys are intentionally not part of SDK
|
|
1363
1602
|
* Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
@@ -1383,9 +1622,24 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1383
1622
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1384
1623
|
*/
|
|
1385
1624
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1625
|
+
/**
|
|
1626
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1627
|
+
* fall back to target.sdkVersion.
|
|
1628
|
+
*/
|
|
1629
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1386
1630
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1387
1631
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1632
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1633
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1634
|
+
/** Use registry trusted publishing / OIDC instead of a static token secret. */
|
|
1635
|
+
trustedPublishing: z.ZodOptional<z.ZodBoolean>;
|
|
1388
1636
|
registry: z.ZodLiteral<"npm">;
|
|
1637
|
+
/** Environment variable name containing the npm registry token. */
|
|
1638
|
+
tokenEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1639
|
+
/** Write npm package metadata as private when the publisher creates/updates package.json. */
|
|
1640
|
+
isPackagePrivate: z.ZodOptional<z.ZodBoolean>;
|
|
1641
|
+
/** Also publish the TypeScript package to JSR from the npm publishing path. */
|
|
1642
|
+
publishToJsr: z.ZodOptional<z.ZodBoolean>;
|
|
1389
1643
|
}, z.core.$strict>, z.ZodObject<{
|
|
1390
1644
|
url: z.ZodOptional<z.ZodString>;
|
|
1391
1645
|
/**
|
|
@@ -1393,9 +1647,20 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1393
1647
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1394
1648
|
*/
|
|
1395
1649
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1650
|
+
/**
|
|
1651
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1652
|
+
* fall back to target.sdkVersion.
|
|
1653
|
+
*/
|
|
1654
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1396
1655
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1397
1656
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1657
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1658
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1659
|
+
/** Use registry trusted publishing / OIDC instead of a static token secret. */
|
|
1660
|
+
trustedPublishing: z.ZodOptional<z.ZodBoolean>;
|
|
1398
1661
|
registry: z.ZodLiteral<"pypi">;
|
|
1662
|
+
usernameEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1663
|
+
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1399
1664
|
}, z.core.$strict>, z.ZodObject<{
|
|
1400
1665
|
url: z.ZodOptional<z.ZodString>;
|
|
1401
1666
|
/**
|
|
@@ -1403,9 +1668,19 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1403
1668
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1404
1669
|
*/
|
|
1405
1670
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1671
|
+
/**
|
|
1672
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1673
|
+
* fall back to target.sdkVersion.
|
|
1674
|
+
*/
|
|
1675
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1406
1676
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1407
1677
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1678
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1679
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1680
|
+
/** Use registry trusted publishing / OIDC instead of a static token secret. */
|
|
1681
|
+
trustedPublishing: z.ZodOptional<z.ZodBoolean>;
|
|
1408
1682
|
registry: z.ZodLiteral<"nuget">;
|
|
1683
|
+
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1409
1684
|
}, z.core.$strict>, z.ZodObject<{
|
|
1410
1685
|
url: z.ZodOptional<z.ZodString>;
|
|
1411
1686
|
/**
|
|
@@ -1413,9 +1688,17 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1413
1688
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1414
1689
|
*/
|
|
1415
1690
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1691
|
+
/**
|
|
1692
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1693
|
+
* fall back to target.sdkVersion.
|
|
1694
|
+
*/
|
|
1695
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1416
1696
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1417
1697
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1698
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1699
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1418
1700
|
registry: z.ZodLiteral<"rubygems">;
|
|
1701
|
+
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1419
1702
|
}, z.core.$strict>, z.ZodObject<{
|
|
1420
1703
|
url: z.ZodOptional<z.ZodString>;
|
|
1421
1704
|
/**
|
|
@@ -1423,9 +1706,17 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1423
1706
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1424
1707
|
*/
|
|
1425
1708
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1709
|
+
/**
|
|
1710
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1711
|
+
* fall back to target.sdkVersion.
|
|
1712
|
+
*/
|
|
1713
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1426
1714
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1427
1715
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1716
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1717
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1428
1718
|
registry: z.ZodLiteral<"crates">;
|
|
1719
|
+
tokenEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1429
1720
|
}, z.core.$strict>, z.ZodObject<{
|
|
1430
1721
|
url: z.ZodOptional<z.ZodString>;
|
|
1431
1722
|
/**
|
|
@@ -1433,8 +1724,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1433
1724
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1434
1725
|
*/
|
|
1435
1726
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1727
|
+
/**
|
|
1728
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1729
|
+
* fall back to target.sdkVersion.
|
|
1730
|
+
*/
|
|
1731
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1436
1732
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1437
1733
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1734
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1735
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1438
1736
|
registry: z.ZodLiteral<"go">;
|
|
1439
1737
|
}, z.core.$strict>, z.ZodObject<{
|
|
1440
1738
|
url: z.ZodOptional<z.ZodString>;
|
|
@@ -1443,8 +1741,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1443
1741
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1444
1742
|
*/
|
|
1445
1743
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1744
|
+
/**
|
|
1745
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1746
|
+
* fall back to target.sdkVersion.
|
|
1747
|
+
*/
|
|
1748
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1446
1749
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1447
1750
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1751
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1752
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1448
1753
|
registry: z.ZodLiteral<"composer">;
|
|
1449
1754
|
}, z.core.$strict>, z.ZodObject<{
|
|
1450
1755
|
url: z.ZodOptional<z.ZodString>;
|
|
@@ -1453,9 +1758,26 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1453
1758
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1454
1759
|
*/
|
|
1455
1760
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1761
|
+
/**
|
|
1762
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1763
|
+
* fall back to target.sdkVersion.
|
|
1764
|
+
*/
|
|
1765
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1456
1766
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1457
1767
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1768
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1769
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1458
1770
|
registry: z.ZodLiteral<"maven">;
|
|
1771
|
+
/** Maven coordinate in groupId:artifactId form when consumers need the combined value. */
|
|
1772
|
+
coordinate: z.ZodOptional<z.ZodString>;
|
|
1773
|
+
usernameEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1774
|
+
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1775
|
+
mavenUrlEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1776
|
+
signatureEnvironmentVariables: z.ZodOptional<z.ZodObject<{
|
|
1777
|
+
keyIdEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1778
|
+
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1779
|
+
secretKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1780
|
+
}, z.core.$strict>>;
|
|
1459
1781
|
/**
|
|
1460
1782
|
* Reference to Maven signing credentials. Raw signing keys are intentionally not part of SDK
|
|
1461
1783
|
* Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
@@ -1510,9 +1832,24 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1510
1832
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1511
1833
|
*/
|
|
1512
1834
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1835
|
+
/**
|
|
1836
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1837
|
+
* fall back to target.sdkVersion.
|
|
1838
|
+
*/
|
|
1839
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1513
1840
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1514
1841
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1842
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1843
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1844
|
+
/** Use registry trusted publishing / OIDC instead of a static token secret. */
|
|
1845
|
+
trustedPublishing: z.ZodOptional<z.ZodBoolean>;
|
|
1515
1846
|
registry: z.ZodLiteral<"npm">;
|
|
1847
|
+
/** Environment variable name containing the npm registry token. */
|
|
1848
|
+
tokenEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1849
|
+
/** Write npm package metadata as private when the publisher creates/updates package.json. */
|
|
1850
|
+
isPackagePrivate: z.ZodOptional<z.ZodBoolean>;
|
|
1851
|
+
/** Also publish the TypeScript package to JSR from the npm publishing path. */
|
|
1852
|
+
publishToJsr: z.ZodOptional<z.ZodBoolean>;
|
|
1516
1853
|
}, z.core.$strict>, z.ZodObject<{
|
|
1517
1854
|
url: z.ZodOptional<z.ZodString>;
|
|
1518
1855
|
/**
|
|
@@ -1520,9 +1857,20 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1520
1857
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1521
1858
|
*/
|
|
1522
1859
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1860
|
+
/**
|
|
1861
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1862
|
+
* fall back to target.sdkVersion.
|
|
1863
|
+
*/
|
|
1864
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1523
1865
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1524
1866
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1867
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1868
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1869
|
+
/** Use registry trusted publishing / OIDC instead of a static token secret. */
|
|
1870
|
+
trustedPublishing: z.ZodOptional<z.ZodBoolean>;
|
|
1525
1871
|
registry: z.ZodLiteral<"pypi">;
|
|
1872
|
+
usernameEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1873
|
+
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1526
1874
|
}, z.core.$strict>, z.ZodObject<{
|
|
1527
1875
|
url: z.ZodOptional<z.ZodString>;
|
|
1528
1876
|
/**
|
|
@@ -1530,9 +1878,19 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1530
1878
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1531
1879
|
*/
|
|
1532
1880
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1881
|
+
/**
|
|
1882
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1883
|
+
* fall back to target.sdkVersion.
|
|
1884
|
+
*/
|
|
1885
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1533
1886
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1534
1887
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1888
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1889
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1890
|
+
/** Use registry trusted publishing / OIDC instead of a static token secret. */
|
|
1891
|
+
trustedPublishing: z.ZodOptional<z.ZodBoolean>;
|
|
1535
1892
|
registry: z.ZodLiteral<"nuget">;
|
|
1893
|
+
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1536
1894
|
}, z.core.$strict>, z.ZodObject<{
|
|
1537
1895
|
url: z.ZodOptional<z.ZodString>;
|
|
1538
1896
|
/**
|
|
@@ -1540,9 +1898,17 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1540
1898
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1541
1899
|
*/
|
|
1542
1900
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1901
|
+
/**
|
|
1902
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1903
|
+
* fall back to target.sdkVersion.
|
|
1904
|
+
*/
|
|
1905
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1543
1906
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1544
1907
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1908
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1909
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1545
1910
|
registry: z.ZodLiteral<"rubygems">;
|
|
1911
|
+
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1546
1912
|
}, z.core.$strict>, z.ZodObject<{
|
|
1547
1913
|
url: z.ZodOptional<z.ZodString>;
|
|
1548
1914
|
/**
|
|
@@ -1550,9 +1916,17 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1550
1916
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1551
1917
|
*/
|
|
1552
1918
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1919
|
+
/**
|
|
1920
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1921
|
+
* fall back to target.sdkVersion.
|
|
1922
|
+
*/
|
|
1923
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1553
1924
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1554
1925
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1926
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1927
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1555
1928
|
registry: z.ZodLiteral<"crates">;
|
|
1929
|
+
tokenEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1556
1930
|
}, z.core.$strict>, z.ZodObject<{
|
|
1557
1931
|
url: z.ZodOptional<z.ZodString>;
|
|
1558
1932
|
/**
|
|
@@ -1560,8 +1934,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1560
1934
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1561
1935
|
*/
|
|
1562
1936
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1937
|
+
/**
|
|
1938
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1939
|
+
* fall back to target.sdkVersion.
|
|
1940
|
+
*/
|
|
1941
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1563
1942
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1564
1943
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1944
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1945
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1565
1946
|
registry: z.ZodLiteral<"go">;
|
|
1566
1947
|
}, z.core.$strict>, z.ZodObject<{
|
|
1567
1948
|
url: z.ZodOptional<z.ZodString>;
|
|
@@ -1570,8 +1951,15 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1570
1951
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1571
1952
|
*/
|
|
1572
1953
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1954
|
+
/**
|
|
1955
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1956
|
+
* fall back to target.sdkVersion.
|
|
1957
|
+
*/
|
|
1958
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1573
1959
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1574
1960
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1961
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1962
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1575
1963
|
registry: z.ZodLiteral<"composer">;
|
|
1576
1964
|
}, z.core.$strict>, z.ZodObject<{
|
|
1577
1965
|
url: z.ZodOptional<z.ZodString>;
|
|
@@ -1580,9 +1968,26 @@ declare const outputConfigSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1580
1968
|
* SDK Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
1581
1969
|
*/
|
|
1582
1970
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
1971
|
+
/**
|
|
1972
|
+
* Registry-specific package version override. If omitted, the external publisher/orchestrator may
|
|
1973
|
+
* fall back to target.sdkVersion.
|
|
1974
|
+
*/
|
|
1975
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1583
1976
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1584
1977
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
1978
|
+
/** Generate registry publishing workflow files when publishing through GitHub delivery. */
|
|
1979
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
1585
1980
|
registry: z.ZodLiteral<"maven">;
|
|
1981
|
+
/** Maven coordinate in groupId:artifactId form when consumers need the combined value. */
|
|
1982
|
+
coordinate: z.ZodOptional<z.ZodString>;
|
|
1983
|
+
usernameEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1984
|
+
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1985
|
+
mavenUrlEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1986
|
+
signatureEnvironmentVariables: z.ZodOptional<z.ZodObject<{
|
|
1987
|
+
keyIdEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1988
|
+
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1989
|
+
secretKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1990
|
+
}, z.core.$strict>>;
|
|
1586
1991
|
/**
|
|
1587
1992
|
* Reference to Maven signing credentials. Raw signing keys are intentionally not part of SDK
|
|
1588
1993
|
* Config IR; the external publisher or orchestrator resolves this reference before use.
|
|
@@ -1605,9 +2010,9 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
1605
2010
|
namespace: z.ZodOptional<z.ZodString>;
|
|
1606
2011
|
specUrl: z.ZodString;
|
|
1607
2012
|
specType: z.ZodEnum<{
|
|
1608
|
-
postman: "postman";
|
|
1609
2013
|
openapi: "openapi";
|
|
1610
2014
|
swagger: "swagger";
|
|
2015
|
+
postman: "postman";
|
|
1611
2016
|
asyncapi: "asyncapi";
|
|
1612
2017
|
graphql: "graphql";
|
|
1613
2018
|
}>;
|
|
@@ -1829,16 +2234,15 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
1829
2234
|
maxDelayMs: z.ZodDefault<z.ZodNumber>;
|
|
1830
2235
|
jitterMs: z.ZodDefault<z.ZodNumber>;
|
|
1831
2236
|
backoffFactor: z.ZodDefault<z.ZodNumber>;
|
|
1832
|
-
statusCodes: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
1833
2237
|
methods: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
2238
|
+
maxRetryAfterDelayMs: z.ZodDefault<z.ZodNumber>;
|
|
2239
|
+
statusCodes: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
1834
2240
|
statusCodeProfile: z.ZodOptional<z.ZodEnum<{
|
|
1835
2241
|
legacy: "legacy";
|
|
1836
2242
|
recommended: "recommended";
|
|
1837
2243
|
}>>;
|
|
1838
|
-
maxRetryAfterDelayMs: z.ZodDefault<z.ZodNumber>;
|
|
1839
2244
|
}, z.core.$strict>>;
|
|
1840
2245
|
responseHeaders: z.ZodDefault<z.ZodBoolean>;
|
|
1841
|
-
responseValidation: z.ZodOptional<z.ZodBoolean>;
|
|
1842
2246
|
multiTenant: z.ZodDefault<z.ZodBoolean>;
|
|
1843
2247
|
additionalConstructorParameters: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1844
2248
|
name: z.ZodString;
|
|
@@ -1846,6 +2250,7 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
1846
2250
|
description: z.ZodOptional<z.ZodString>;
|
|
1847
2251
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
1848
2252
|
}, z.core.$strict>>>;
|
|
2253
|
+
responseValidation: z.ZodOptional<z.ZodBoolean>;
|
|
1849
2254
|
timeoutMs: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodLiteral<"infinity">]>>;
|
|
1850
2255
|
requestParameterStyle: z.ZodOptional<z.ZodEnum<{
|
|
1851
2256
|
wrapped: "wrapped";
|
|
@@ -1982,51 +2387,87 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
1982
2387
|
publish: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1983
2388
|
url: z.ZodOptional<z.ZodString>;
|
|
1984
2389
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2390
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1985
2391
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1986
2392
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
2393
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
2394
|
+
trustedPublishing: z.ZodOptional<z.ZodBoolean>;
|
|
1987
2395
|
registry: z.ZodLiteral<"npm">;
|
|
2396
|
+
tokenEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2397
|
+
isPackagePrivate: z.ZodOptional<z.ZodBoolean>;
|
|
2398
|
+
publishToJsr: z.ZodOptional<z.ZodBoolean>;
|
|
1988
2399
|
}, z.core.$strict>, z.ZodObject<{
|
|
1989
2400
|
url: z.ZodOptional<z.ZodString>;
|
|
1990
2401
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2402
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1991
2403
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1992
2404
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
2405
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
2406
|
+
trustedPublishing: z.ZodOptional<z.ZodBoolean>;
|
|
1993
2407
|
registry: z.ZodLiteral<"pypi">;
|
|
2408
|
+
usernameEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2409
|
+
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
1994
2410
|
}, z.core.$strict>, z.ZodObject<{
|
|
1995
2411
|
url: z.ZodOptional<z.ZodString>;
|
|
1996
2412
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2413
|
+
version: z.ZodOptional<z.ZodString>;
|
|
1997
2414
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
1998
2415
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
2416
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
2417
|
+
trustedPublishing: z.ZodOptional<z.ZodBoolean>;
|
|
1999
2418
|
registry: z.ZodLiteral<"nuget">;
|
|
2419
|
+
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2000
2420
|
}, z.core.$strict>, z.ZodObject<{
|
|
2001
2421
|
url: z.ZodOptional<z.ZodString>;
|
|
2002
2422
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2423
|
+
version: z.ZodOptional<z.ZodString>;
|
|
2003
2424
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2004
2425
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
2426
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
2005
2427
|
registry: z.ZodLiteral<"rubygems">;
|
|
2428
|
+
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2006
2429
|
}, z.core.$strict>, z.ZodObject<{
|
|
2007
2430
|
url: z.ZodOptional<z.ZodString>;
|
|
2008
2431
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2432
|
+
version: z.ZodOptional<z.ZodString>;
|
|
2009
2433
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2010
2434
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
2435
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
2011
2436
|
registry: z.ZodLiteral<"crates">;
|
|
2437
|
+
tokenEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2012
2438
|
}, z.core.$strict>, z.ZodObject<{
|
|
2013
2439
|
url: z.ZodOptional<z.ZodString>;
|
|
2014
2440
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2441
|
+
version: z.ZodOptional<z.ZodString>;
|
|
2015
2442
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2016
2443
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
2444
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
2017
2445
|
registry: z.ZodLiteral<"go">;
|
|
2018
2446
|
}, z.core.$strict>, z.ZodObject<{
|
|
2019
2447
|
url: z.ZodOptional<z.ZodString>;
|
|
2020
2448
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2449
|
+
version: z.ZodOptional<z.ZodString>;
|
|
2021
2450
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2022
2451
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
2452
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
2023
2453
|
registry: z.ZodLiteral<"composer">;
|
|
2024
2454
|
}, z.core.$strict>, z.ZodObject<{
|
|
2025
2455
|
url: z.ZodOptional<z.ZodString>;
|
|
2026
2456
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2457
|
+
version: z.ZodOptional<z.ZodString>;
|
|
2027
2458
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2028
2459
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
2460
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
2029
2461
|
registry: z.ZodLiteral<"maven">;
|
|
2462
|
+
coordinate: z.ZodOptional<z.ZodString>;
|
|
2463
|
+
usernameEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2464
|
+
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2465
|
+
mavenUrlEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2466
|
+
signatureEnvironmentVariables: z.ZodOptional<z.ZodObject<{
|
|
2467
|
+
keyIdEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2468
|
+
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2469
|
+
secretKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2470
|
+
}, z.core.$strict>>;
|
|
2030
2471
|
signingCredentialsRef: z.ZodOptional<z.ZodString>;
|
|
2031
2472
|
}, z.core.$strict>], "registry">>;
|
|
2032
2473
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -2040,51 +2481,87 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2040
2481
|
publish: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2041
2482
|
url: z.ZodOptional<z.ZodString>;
|
|
2042
2483
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2484
|
+
version: z.ZodOptional<z.ZodString>;
|
|
2043
2485
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2044
2486
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
2487
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
2488
|
+
trustedPublishing: z.ZodOptional<z.ZodBoolean>;
|
|
2045
2489
|
registry: z.ZodLiteral<"npm">;
|
|
2490
|
+
tokenEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2491
|
+
isPackagePrivate: z.ZodOptional<z.ZodBoolean>;
|
|
2492
|
+
publishToJsr: z.ZodOptional<z.ZodBoolean>;
|
|
2046
2493
|
}, z.core.$strict>, z.ZodObject<{
|
|
2047
2494
|
url: z.ZodOptional<z.ZodString>;
|
|
2048
2495
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2496
|
+
version: z.ZodOptional<z.ZodString>;
|
|
2049
2497
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2050
2498
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
2499
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
2500
|
+
trustedPublishing: z.ZodOptional<z.ZodBoolean>;
|
|
2051
2501
|
registry: z.ZodLiteral<"pypi">;
|
|
2502
|
+
usernameEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2503
|
+
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2052
2504
|
}, z.core.$strict>, z.ZodObject<{
|
|
2053
2505
|
url: z.ZodOptional<z.ZodString>;
|
|
2054
2506
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2507
|
+
version: z.ZodOptional<z.ZodString>;
|
|
2055
2508
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2056
2509
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
2510
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
2511
|
+
trustedPublishing: z.ZodOptional<z.ZodBoolean>;
|
|
2057
2512
|
registry: z.ZodLiteral<"nuget">;
|
|
2513
|
+
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2058
2514
|
}, z.core.$strict>, z.ZodObject<{
|
|
2059
2515
|
url: z.ZodOptional<z.ZodString>;
|
|
2060
2516
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2517
|
+
version: z.ZodOptional<z.ZodString>;
|
|
2061
2518
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2062
2519
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
2520
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
2063
2521
|
registry: z.ZodLiteral<"rubygems">;
|
|
2522
|
+
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2064
2523
|
}, z.core.$strict>, z.ZodObject<{
|
|
2065
2524
|
url: z.ZodOptional<z.ZodString>;
|
|
2066
2525
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2526
|
+
version: z.ZodOptional<z.ZodString>;
|
|
2067
2527
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2068
2528
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
2529
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
2069
2530
|
registry: z.ZodLiteral<"crates">;
|
|
2531
|
+
tokenEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2070
2532
|
}, z.core.$strict>, z.ZodObject<{
|
|
2071
2533
|
url: z.ZodOptional<z.ZodString>;
|
|
2072
2534
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2535
|
+
version: z.ZodOptional<z.ZodString>;
|
|
2073
2536
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2074
2537
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
2538
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
2075
2539
|
registry: z.ZodLiteral<"go">;
|
|
2076
2540
|
}, z.core.$strict>, z.ZodObject<{
|
|
2077
2541
|
url: z.ZodOptional<z.ZodString>;
|
|
2078
2542
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2543
|
+
version: z.ZodOptional<z.ZodString>;
|
|
2079
2544
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2080
2545
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
2546
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
2081
2547
|
registry: z.ZodLiteral<"composer">;
|
|
2082
2548
|
}, z.core.$strict>, z.ZodObject<{
|
|
2083
2549
|
url: z.ZodOptional<z.ZodString>;
|
|
2084
2550
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2551
|
+
version: z.ZodOptional<z.ZodString>;
|
|
2085
2552
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2086
2553
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
2554
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
2087
2555
|
registry: z.ZodLiteral<"maven">;
|
|
2556
|
+
coordinate: z.ZodOptional<z.ZodString>;
|
|
2557
|
+
usernameEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2558
|
+
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2559
|
+
mavenUrlEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2560
|
+
signatureEnvironmentVariables: z.ZodOptional<z.ZodObject<{
|
|
2561
|
+
keyIdEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2562
|
+
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2563
|
+
secretKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2564
|
+
}, z.core.$strict>>;
|
|
2088
2565
|
signingCredentialsRef: z.ZodOptional<z.ZodString>;
|
|
2089
2566
|
}, z.core.$strict>], "registry">>;
|
|
2090
2567
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -2119,51 +2596,87 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2119
2596
|
publish: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2120
2597
|
url: z.ZodOptional<z.ZodString>;
|
|
2121
2598
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2599
|
+
version: z.ZodOptional<z.ZodString>;
|
|
2122
2600
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2123
2601
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
2602
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
2603
|
+
trustedPublishing: z.ZodOptional<z.ZodBoolean>;
|
|
2124
2604
|
registry: z.ZodLiteral<"npm">;
|
|
2605
|
+
tokenEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2606
|
+
isPackagePrivate: z.ZodOptional<z.ZodBoolean>;
|
|
2607
|
+
publishToJsr: z.ZodOptional<z.ZodBoolean>;
|
|
2125
2608
|
}, z.core.$strict>, z.ZodObject<{
|
|
2126
2609
|
url: z.ZodOptional<z.ZodString>;
|
|
2127
2610
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2611
|
+
version: z.ZodOptional<z.ZodString>;
|
|
2128
2612
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2129
2613
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
2614
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
2615
|
+
trustedPublishing: z.ZodOptional<z.ZodBoolean>;
|
|
2130
2616
|
registry: z.ZodLiteral<"pypi">;
|
|
2617
|
+
usernameEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2618
|
+
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2131
2619
|
}, z.core.$strict>, z.ZodObject<{
|
|
2132
2620
|
url: z.ZodOptional<z.ZodString>;
|
|
2133
2621
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2622
|
+
version: z.ZodOptional<z.ZodString>;
|
|
2134
2623
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2135
2624
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
2625
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
2626
|
+
trustedPublishing: z.ZodOptional<z.ZodBoolean>;
|
|
2136
2627
|
registry: z.ZodLiteral<"nuget">;
|
|
2628
|
+
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2137
2629
|
}, z.core.$strict>, z.ZodObject<{
|
|
2138
2630
|
url: z.ZodOptional<z.ZodString>;
|
|
2139
2631
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2632
|
+
version: z.ZodOptional<z.ZodString>;
|
|
2140
2633
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2141
2634
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
2635
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
2142
2636
|
registry: z.ZodLiteral<"rubygems">;
|
|
2637
|
+
apiKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2143
2638
|
}, z.core.$strict>, z.ZodObject<{
|
|
2144
2639
|
url: z.ZodOptional<z.ZodString>;
|
|
2145
2640
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2641
|
+
version: z.ZodOptional<z.ZodString>;
|
|
2146
2642
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2147
2643
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
2644
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
2148
2645
|
registry: z.ZodLiteral<"crates">;
|
|
2646
|
+
tokenEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2149
2647
|
}, z.core.$strict>, z.ZodObject<{
|
|
2150
2648
|
url: z.ZodOptional<z.ZodString>;
|
|
2151
2649
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2650
|
+
version: z.ZodOptional<z.ZodString>;
|
|
2152
2651
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2153
2652
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
2653
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
2154
2654
|
registry: z.ZodLiteral<"go">;
|
|
2155
2655
|
}, z.core.$strict>, z.ZodObject<{
|
|
2156
2656
|
url: z.ZodOptional<z.ZodString>;
|
|
2157
2657
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2658
|
+
version: z.ZodOptional<z.ZodString>;
|
|
2158
2659
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2159
2660
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
2661
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
2160
2662
|
registry: z.ZodLiteral<"composer">;
|
|
2161
2663
|
}, z.core.$strict>, z.ZodObject<{
|
|
2162
2664
|
url: z.ZodOptional<z.ZodString>;
|
|
2163
2665
|
credentialsRef: z.ZodOptional<z.ZodString>;
|
|
2666
|
+
version: z.ZodOptional<z.ZodString>;
|
|
2164
2667
|
releaseBranch: z.ZodOptional<z.ZodString>;
|
|
2165
2668
|
tolerateRepublish: z.ZodOptional<z.ZodBoolean>;
|
|
2669
|
+
shouldGeneratePublishWorkflow: z.ZodOptional<z.ZodBoolean>;
|
|
2166
2670
|
registry: z.ZodLiteral<"maven">;
|
|
2671
|
+
coordinate: z.ZodOptional<z.ZodString>;
|
|
2672
|
+
usernameEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2673
|
+
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2674
|
+
mavenUrlEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2675
|
+
signatureEnvironmentVariables: z.ZodOptional<z.ZodObject<{
|
|
2676
|
+
keyIdEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2677
|
+
passwordEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2678
|
+
secretKeyEnvironmentVariable: z.ZodOptional<z.ZodString>;
|
|
2679
|
+
}, z.core.$strict>>;
|
|
2167
2680
|
signingCredentialsRef: z.ZodOptional<z.ZodString>;
|
|
2168
2681
|
}, z.core.$strict>], "registry">>;
|
|
2169
2682
|
}, z.core.$strict>], "delivery">;
|
|
@@ -2340,6 +2853,8 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2340
2853
|
apiErrorName: z.ZodOptional<z.ZodString>;
|
|
2341
2854
|
baseErrorName: z.ZodOptional<z.ZodString>;
|
|
2342
2855
|
pagerName: z.ZodOptional<z.ZodString>;
|
|
2856
|
+
smartCasing: z.ZodOptional<z.ZodBoolean>;
|
|
2857
|
+
smartCasingDigitWordBoundary: z.ZodOptional<z.ZodBoolean>;
|
|
2343
2858
|
}, z.core.$strict>>;
|
|
2344
2859
|
layout: z.ZodOptional<z.ZodObject<{
|
|
2345
2860
|
outputDirectory: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2394,6 +2909,7 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2394
2909
|
}>>;
|
|
2395
2910
|
bundle: z.ZodOptional<z.ZodBoolean>;
|
|
2396
2911
|
exportClassDefault: z.ZodOptional<z.ZodBoolean>;
|
|
2912
|
+
namespaceExportName: z.ZodOptional<z.ZodString>;
|
|
2397
2913
|
allowCustomFetcher: z.ZodOptional<z.ZodBoolean>;
|
|
2398
2914
|
useBrandedStringAliases: z.ZodOptional<z.ZodBoolean>;
|
|
2399
2915
|
useLegacyExports: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2529,6 +3045,7 @@ declare const sdkConfigIrV1Schema: z.ZodObject<{
|
|
|
2529
3045
|
}>>;
|
|
2530
3046
|
bundle: z.ZodOptional<z.ZodBoolean>;
|
|
2531
3047
|
exportClassDefault: z.ZodOptional<z.ZodBoolean>;
|
|
3048
|
+
namespaceExportName: z.ZodOptional<z.ZodString>;
|
|
2532
3049
|
allowCustomFetcher: z.ZodOptional<z.ZodBoolean>;
|
|
2533
3050
|
useBrandedStringAliases: z.ZodOptional<z.ZodBoolean>;
|
|
2534
3051
|
useLegacyExports: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2654,21 +3171,24 @@ declare const apiImportSettingsSchema: z.ZodObject<{
|
|
|
2654
3171
|
}>>;
|
|
2655
3172
|
}, z.core.$strict>;
|
|
2656
3173
|
declare const sourceSpecTypeSchema: z.ZodEnum<{
|
|
2657
|
-
postman: "postman";
|
|
2658
3174
|
openapi: "openapi";
|
|
2659
3175
|
swagger: "swagger";
|
|
3176
|
+
postman: "postman";
|
|
2660
3177
|
asyncapi: "asyncapi";
|
|
2661
3178
|
graphql: "graphql";
|
|
2662
3179
|
}>;
|
|
3180
|
+
type ApiImportSettings = z.infer<typeof apiImportSettingsSchema>;
|
|
3181
|
+
type SourceSpecType = z.infer<typeof sourceSpecTypeSchema>;
|
|
3182
|
+
|
|
2663
3183
|
declare const sourceSpecConfigSchema: z.ZodObject<{
|
|
2664
3184
|
id: z.ZodOptional<z.ZodString>;
|
|
2665
3185
|
name: z.ZodOptional<z.ZodString>;
|
|
2666
3186
|
namespace: z.ZodOptional<z.ZodString>;
|
|
2667
3187
|
specUrl: z.ZodString;
|
|
2668
3188
|
specType: z.ZodEnum<{
|
|
2669
|
-
postman: "postman";
|
|
2670
3189
|
openapi: "openapi";
|
|
2671
3190
|
swagger: "swagger";
|
|
3191
|
+
postman: "postman";
|
|
2672
3192
|
asyncapi: "asyncapi";
|
|
2673
3193
|
graphql: "graphql";
|
|
2674
3194
|
}>;
|
|
@@ -2704,9 +3224,9 @@ declare const sourceConfigSchema: z.ZodObject<{
|
|
|
2704
3224
|
namespace: z.ZodOptional<z.ZodString>;
|
|
2705
3225
|
specUrl: z.ZodString;
|
|
2706
3226
|
specType: z.ZodEnum<{
|
|
2707
|
-
postman: "postman";
|
|
2708
3227
|
openapi: "openapi";
|
|
2709
3228
|
swagger: "swagger";
|
|
3229
|
+
postman: "postman";
|
|
2710
3230
|
asyncapi: "asyncapi";
|
|
2711
3231
|
graphql: "graphql";
|
|
2712
3232
|
}>;
|
|
@@ -2758,8 +3278,7 @@ declare const sourceConfigSchema: z.ZodObject<{
|
|
|
2758
3278
|
}>>;
|
|
2759
3279
|
}, z.core.$strict>>;
|
|
2760
3280
|
}, z.core.$strict>;
|
|
2761
|
-
|
|
2762
|
-
type SourceSpecType = z.infer<typeof sourceSpecTypeSchema>;
|
|
3281
|
+
|
|
2763
3282
|
type SourceSpecConfig = z.infer<typeof sourceSpecConfigSchema>;
|
|
2764
3283
|
type SourceConfig = z.infer<typeof sourceConfigSchema>;
|
|
2765
3284
|
|
|
@@ -2819,4 +3338,4 @@ declare const targetConfigSchema: z.ZodObject<{
|
|
|
2819
3338
|
type TargetLanguage = z.infer<typeof targetLanguageSchema>;
|
|
2820
3339
|
type TargetConfig = z.infer<typeof targetConfigSchema>;
|
|
2821
3340
|
|
|
2822
|
-
export { type ApiConfig, type ApiConfigInput, type ApiImportSettings, type AuthConfig, type AuthScheme, type ClientConfig, type ClientConfigInput, type CompatibilityConfig, type CredentialResolution, type DocsConfig, type GenerationConfig, JsonObject, type LanguageGenerationConfig, type LegacyInput, type OutputConfig, type PublishConfig, type PublishRegistry, type ReadmeCustomSection, type ReadmeEndpoint, SDK_CONFIG_IR_V1_SCHEMA_VERSION, type SdkConfigIrV1, type SdkConfigIrV1Input, type SourceConfig, type SourceSpecConfig, type SourceSpecType, type TargetConfig, type TargetLanguage, type UnsupportedField, apiConfigSchema, apiImportSettingsSchema, authConfigSchema, authSchemeSchema, clientConfigSchema, compatibilityConfigSchema, docsConfigSchema, generationConfigSchema, languageGenerationConfigSchema, legacyInputSchema, outputConfigSchema, parseSdkConfigIrV1, publishConfigSchema, publishRegistrySchema, readmeCustomSectionSchema, readmeEndpointSchema, sdkConfigIrV1Schema, sourceConfigSchema, sourceSpecConfigSchema, sourceSpecTypeSchema, targetConfigSchema, targetLanguageSchema, unsupportedFieldSchema };
|
|
3341
|
+
export { type ApiConfig, type ApiConfigInput, type ApiImportSettings, type AuthConfig, type AuthScheme, type ClientConfig, type ClientConfigInput, type ClientConfigOverride, type CompatibilityConfig, type CredentialResolution, type DocsConfig, type GenerationConfig, JsonObject, type LanguageGenerationConfig, type LegacyInput, type OutputConfig, type PublishConfig, type PublishRegistry, type ReadmeCustomSection, type ReadmeEndpoint, SDK_CONFIG_IR_V1_SCHEMA_VERSION, type SdkConfigIrV1, type SdkConfigIrV1Input, type SourceConfig, type SourceSpecConfig, type SourceSpecType, type TargetConfig, type TargetLanguage, type UnsupportedField, apiConfigSchema, apiImportSettingsSchema, authConfigSchema, authSchemeSchema, clientConfigOverrideSchema, clientConfigSchema, clientRetryOverrideSchema, compatibilityConfigSchema, docsConfigSchema, generationConfigSchema, languageGenerationConfigSchema, legacyInputSchema, outputConfigSchema, parseSdkConfigIrV1, publishConfigSchema, publishRegistrySchema, readmeCustomSectionSchema, readmeEndpointSchema, sdkConfigIrV1Schema, sourceConfigSchema, sourceSpecConfigSchema, sourceSpecTypeSchema, targetConfigSchema, targetLanguageSchema, unsupportedFieldSchema };
|