@alienplatform/core 1.4.1 → 1.5.1
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/.turbo/turbo-build.log +10 -9
- package/dist/index.d.ts +9 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/stack.js +8 -1
- package/dist/stack.js.map +1 -1
- package/package.json +1 -1
- package/src/generated/schemas/azureCustomCertificateConfig.json +1 -1
- package/src/generated/schemas/azureNetworkImportData.json +1 -1
- package/src/generated/schemas/azureVnetNetworkHeartbeatData.json +1 -1
- package/src/generated/schemas/customCertificateConfig.json +1 -1
- package/src/generated/schemas/customDomainConfig.json +1 -1
- package/src/generated/schemas/domainSettings.json +1 -1
- package/src/generated/schemas/networkHeartbeatData.json +1 -1
- package/src/generated/schemas/networkSettings.json +1 -1
- package/src/generated/schemas/resourceHeartbeat.json +1 -1
- package/src/generated/schemas/resourceHeartbeatData.json +1 -1
- package/src/generated/schemas/stackImportRequest.json +1 -1
- package/src/generated/schemas/stackImportResponse.json +1 -1
- package/src/generated/schemas/stackSettings.json +1 -1
- package/src/generated/zod/azure-custom-certificate-config-schema.ts +2 -1
- package/src/generated/zod/azure-network-import-data-schema.ts +3 -1
- package/src/generated/zod/azure-vnet-network-heartbeat-data-schema.ts +2 -1
- package/src/generated/zod/network-settings-schema.ts +2 -1
package/dist/stack.js
CHANGED
|
@@ -1850,7 +1850,10 @@ const AzureContainerAppsWorkerHeartbeatDataSchema = z.object({
|
|
|
1850
1850
|
* Generated by Kubb (https://kubb.dev/).
|
|
1851
1851
|
* Do not edit manually.
|
|
1852
1852
|
*/
|
|
1853
|
-
const AzureCustomCertificateConfigSchema = z.object({
|
|
1853
|
+
const AzureCustomCertificateConfigSchema = z.object({
|
|
1854
|
+
"keyVaultCertificateId": z.string(),
|
|
1855
|
+
"keyVaultResourceId": z.string().nullish()
|
|
1856
|
+
});
|
|
1854
1857
|
//#endregion
|
|
1855
1858
|
//#region src/generated/zod/azure-daemon-heartbeat-data-schema.ts
|
|
1856
1859
|
/**
|
|
@@ -1973,6 +1976,8 @@ const AzureManagementConfigSchema = z.object({
|
|
|
1973
1976
|
* @description Azure Network ImportData — VNet + subnets + NAT topology.
|
|
1974
1977
|
*/
|
|
1975
1978
|
const AzureNetworkImportDataSchema = z.object({
|
|
1979
|
+
"applicationGatewaySubnetId": z.string().describe("Dedicated subnet for classic Azure Application Gateway ingress.").nullish(),
|
|
1980
|
+
"applicationGatewaySubnetName": z.string().describe("Dedicated subnet name for classic Azure Application Gateway ingress.").nullish(),
|
|
1976
1981
|
"isByoVnet": z.boolean().describe("True when the VNet is owned outside this stack."),
|
|
1977
1982
|
"natGatewayId": z.string().describe("NAT gateway resource id when one was created.").nullish(),
|
|
1978
1983
|
"networkSecurityGroupId": z.string().describe("Network Security Group resource id attached to workload subnets.").nullish(),
|
|
@@ -2399,6 +2404,7 @@ const AzureVaultImportDataSchema = z.object({
|
|
|
2399
2404
|
* Do not edit manually.
|
|
2400
2405
|
*/
|
|
2401
2406
|
const AzureVnetNetworkHeartbeatDataSchema = z.object({
|
|
2407
|
+
"applicationGatewaySubnetName": z.string().nullish(),
|
|
2402
2408
|
"cidrBlock": z.string().nullish(),
|
|
2403
2409
|
"isByoVnet": z.boolean(),
|
|
2404
2410
|
"lastByoVnetVerificationErrorCode": z.string().nullish(),
|
|
@@ -5052,6 +5058,7 @@ const NetworkSettingsSchema = z.union([
|
|
|
5052
5058
|
"type": z.enum(["byo-vpc-gcp"])
|
|
5053
5059
|
}),
|
|
5054
5060
|
z.object({
|
|
5061
|
+
"application_gateway_subnet_name": z.string().describe("Name of the dedicated classic Application Gateway subnet within the VNet.").nullish(),
|
|
5055
5062
|
"private_subnet_name": z.string().describe("Name of the private subnet within the VNet"),
|
|
5056
5063
|
"public_subnet_name": z.string().describe("Name of the public subnet within the VNet"),
|
|
5057
5064
|
"type": z.enum(["byo-vnet-azure"]),
|