@lepsto/sdk-app 89.0.0 → 89.2.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/CHANGELOG.md CHANGED
@@ -115,14 +115,19 @@ before this point lives in that package.
115
115
  The publish pipeline appends its machine-rendered block for the release being
116
116
  built below this line. It is not committed back to the repo, so in a git
117
117
  checkout this section is empty — see the note at the top.
118
- ## 89.0.0 (major)
118
+ ## 89.2.0 (minor)
119
119
 
120
120
  ### deployment
121
- - `deployment_domain_add`: type change on `dnsInstructions (output)`
122
- - `deployment_domain_get`: type change on `dnsInstructions (output)`
123
- - `deployment_domain_list`: type change on `dnsInstructions (output)`
124
- - `deployment_domain_list_by_service`: type change on `dnsInstructions (output)`
125
- - `deployment_domain_redirect_www`: type change on `dnsInstructions (output)`
126
- - `deployment_domain_verify`: type change on `dnsInstructions (output)`
127
- - added `deployment_ssh_bastion_get`
121
+ - `deployment_domain_add`: new optional field `aliases (output)`
122
+ - `deployment_domain_add`: new optional field `advertisedHostname (output)`
123
+ - `deployment_domain_get`: new optional field `aliases (output)`
124
+ - `deployment_domain_get`: new optional field `advertisedHostname (output)`
125
+ - `deployment_domain_list`: new optional field `aliases (output)`
126
+ - `deployment_domain_list`: new optional field `advertisedHostname (output)`
127
+ - `deployment_domain_list_by_service`: new optional field `aliases (output)`
128
+ - `deployment_domain_list_by_service`: new optional field `advertisedHostname (output)`
129
+ - `deployment_domain_redirect_www`: new optional field `aliases (output)`
130
+ - `deployment_domain_redirect_www`: new optional field `advertisedHostname (output)`
131
+ - `deployment_domain_verify`: new optional field `aliases (output)`
132
+ - `deployment_domain_verify`: new optional field `advertisedHostname (output)`
128
133
 
@@ -78221,6 +78221,7 @@ export interface DeploymentDomainAddOutput {
78221
78221
  updatedAt: string;
78222
78222
  pathPrefix: string;
78223
78223
  }[];
78224
+ aliases: string[];
78224
78225
  hostname: string;
78225
78226
  createdAt: string;
78226
78227
  tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
@@ -78246,6 +78247,7 @@ export interface DeploymentDomainAddOutput {
78246
78247
  } | null);
78247
78248
  routingRecordType: ("A" | "CNAME");
78248
78249
  verificationToken: (string | null);
78250
+ advertisedHostname: string;
78249
78251
  verificationStatus: ("pending_dns" | "verified" | "dns_failed");
78250
78252
  lastVerificationError: (({
78251
78253
  code: (string | null);
@@ -78286,6 +78288,7 @@ export interface DeploymentDomainGetInput {
78286
78288
  export interface DeploymentDomainGetOutput {
78287
78289
  id: string;
78288
78290
  kind: ("auto" | "custom");
78291
+ aliases: string[];
78289
78292
  hostname: string;
78290
78293
  createdAt: string;
78291
78294
  tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
@@ -78311,6 +78314,7 @@ export interface DeploymentDomainGetOutput {
78311
78314
  } | null);
78312
78315
  routingRecordType: ("A" | "CNAME");
78313
78316
  verificationToken: (string | null);
78317
+ advertisedHostname: string;
78314
78318
  verificationStatus: ("pending_dns" | "verified" | "dns_failed");
78315
78319
  lastVerificationError: (({
78316
78320
  code: (string | null);
@@ -78342,6 +78346,7 @@ export interface DeploymentDomainListInput {
78342
78346
  export type DeploymentDomainListOutput = {
78343
78347
  id: string;
78344
78348
  kind: ("auto" | "custom");
78349
+ aliases: string[];
78345
78350
  hostname: string;
78346
78351
  createdAt: string;
78347
78352
  tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
@@ -78367,6 +78372,7 @@ export type DeploymentDomainListOutput = {
78367
78372
  } | null);
78368
78373
  routingRecordType: ("A" | "CNAME");
78369
78374
  verificationToken: (string | null);
78375
+ advertisedHostname: string;
78370
78376
  verificationStatus: ("pending_dns" | "verified" | "dns_failed");
78371
78377
  lastVerificationError: (({
78372
78378
  code: (string | null);
@@ -78398,6 +78404,7 @@ export interface DeploymentDomainListByServiceInput {
78398
78404
  export type DeploymentDomainListByServiceOutput = {
78399
78405
  id: string;
78400
78406
  kind: ("auto" | "custom");
78407
+ aliases: string[];
78401
78408
  hostname: string;
78402
78409
  createdAt: string;
78403
78410
  tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
@@ -78423,6 +78430,7 @@ export type DeploymentDomainListByServiceOutput = {
78423
78430
  } | null);
78424
78431
  routingRecordType: ("A" | "CNAME");
78425
78432
  verificationToken: (string | null);
78433
+ advertisedHostname: string;
78426
78434
  verificationStatus: ("pending_dns" | "verified" | "dns_failed");
78427
78435
  lastVerificationError: (({
78428
78436
  code: (string | null);
@@ -78455,6 +78463,7 @@ export interface DeploymentDomainRedirectWwwInput {
78455
78463
  export interface DeploymentDomainRedirectWwwOutput {
78456
78464
  id: string;
78457
78465
  kind: ("auto" | "custom");
78466
+ aliases: string[];
78458
78467
  hostname: string;
78459
78468
  createdAt: string;
78460
78469
  tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
@@ -78480,6 +78489,7 @@ export interface DeploymentDomainRedirectWwwOutput {
78480
78489
  } | null);
78481
78490
  routingRecordType: ("A" | "CNAME");
78482
78491
  verificationToken: (string | null);
78492
+ advertisedHostname: string;
78483
78493
  verificationStatus: ("pending_dns" | "verified" | "dns_failed");
78484
78494
  lastVerificationError: (({
78485
78495
  code: (string | null);
@@ -78571,6 +78581,7 @@ export interface DeploymentDomainVerifyInput {
78571
78581
  export interface DeploymentDomainVerifyOutput {
78572
78582
  id: string;
78573
78583
  kind: ("auto" | "custom");
78584
+ aliases: string[];
78574
78585
  hostname: string;
78575
78586
  createdAt: string;
78576
78587
  tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
@@ -78596,6 +78607,7 @@ export interface DeploymentDomainVerifyOutput {
78596
78607
  } | null);
78597
78608
  routingRecordType: ("A" | "CNAME");
78598
78609
  verificationToken: (string | null);
78610
+ advertisedHostname: string;
78599
78611
  verificationStatus: ("pending_dns" | "verified" | "dns_failed");
78600
78612
  lastVerificationError: (({
78601
78613
  code: (string | null);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lepsto/sdk-app",
3
3
  "description": "The Lepsto SDK for App is a TypeScript SDK that provides runtime bindings and type-safe generated code for interacting with Lepsto Platform APIs and services. This package generates type definitions and client bindings from API catalogs, enabling developers to build applications that consume Lepsto platform services with full type safety and autocompletion.",
4
- "version": "89.0.0",
4
+ "version": "89.2.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/lepsto/lepsto-sdk-app.git"
@@ -210,5 +210,5 @@
210
210
  }
211
211
  }
212
212
  },
213
- "sdkContentHash": "sha256:0a9b823b7f6bf0bc045a086521b3f6a1969ad1d803c012a91570014ed16074f0"
213
+ "sdkContentHash": "sha256:29b6fbbfeb8b3c553826219ddc26b2e8e02df2d35be4a347e9136861752803dd"
214
214
  }
@@ -72726,6 +72726,7 @@ serviceId: string
72726
72726
  updatedAt: string
72727
72727
  pathPrefix: string
72728
72728
  }[]
72729
+ aliases: string[]
72729
72730
  hostname: string
72730
72731
  createdAt: string
72731
72732
  tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed")
@@ -72751,6 +72752,7 @@ routingUnavailable?: boolean
72751
72752
  } | null)
72752
72753
  routingRecordType: ("A" | "CNAME")
72753
72754
  verificationToken: (string | null)
72755
+ advertisedHostname: string
72754
72756
  verificationStatus: ("pending_dns" | "verified" | "dns_failed")
72755
72757
  lastVerificationError: (({
72756
72758
  code: (string | null)
@@ -72796,6 +72798,7 @@ id: string
72796
72798
  export interface DeploymentDomainGetOutput {
72797
72799
  id: string
72798
72800
  kind: ("auto" | "custom")
72801
+ aliases: string[]
72799
72802
  hostname: string
72800
72803
  createdAt: string
72801
72804
  tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed")
@@ -72821,6 +72824,7 @@ routingUnavailable?: boolean
72821
72824
  } | null)
72822
72825
  routingRecordType: ("A" | "CNAME")
72823
72826
  verificationToken: (string | null)
72827
+ advertisedHostname: string
72824
72828
  verificationStatus: ("pending_dns" | "verified" | "dns_failed")
72825
72829
  lastVerificationError: (({
72826
72830
  code: (string | null)
@@ -72854,6 +72858,7 @@ environmentId: string
72854
72858
  export type DeploymentDomainListOutput = {
72855
72859
  id: string
72856
72860
  kind: ("auto" | "custom")
72861
+ aliases: string[]
72857
72862
  hostname: string
72858
72863
  createdAt: string
72859
72864
  tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed")
@@ -72879,6 +72884,7 @@ routingUnavailable?: boolean
72879
72884
  } | null)
72880
72885
  routingRecordType: ("A" | "CNAME")
72881
72886
  verificationToken: (string | null)
72887
+ advertisedHostname: string
72882
72888
  verificationStatus: ("pending_dns" | "verified" | "dns_failed")
72883
72889
  lastVerificationError: (({
72884
72890
  code: (string | null)
@@ -72913,6 +72919,7 @@ serviceId: string
72913
72919
  export type DeploymentDomainListByServiceOutput = {
72914
72920
  id: string
72915
72921
  kind: ("auto" | "custom")
72922
+ aliases: string[]
72916
72923
  hostname: string
72917
72924
  createdAt: string
72918
72925
  tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed")
@@ -72938,6 +72945,7 @@ routingUnavailable?: boolean
72938
72945
  } | null)
72939
72946
  routingRecordType: ("A" | "CNAME")
72940
72947
  verificationToken: (string | null)
72948
+ advertisedHostname: string
72941
72949
  verificationStatus: ("pending_dns" | "verified" | "dns_failed")
72942
72950
  lastVerificationError: (({
72943
72951
  code: (string | null)
@@ -72973,6 +72981,7 @@ enabled: boolean
72973
72981
  export interface DeploymentDomainRedirectWwwOutput {
72974
72982
  id: string
72975
72983
  kind: ("auto" | "custom")
72984
+ aliases: string[]
72976
72985
  hostname: string
72977
72986
  createdAt: string
72978
72987
  tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed")
@@ -72998,6 +73007,7 @@ routingUnavailable?: boolean
72998
73007
  } | null)
72999
73008
  routingRecordType: ("A" | "CNAME")
73000
73009
  verificationToken: (string | null)
73010
+ advertisedHostname: string
73001
73011
  verificationStatus: ("pending_dns" | "verified" | "dns_failed")
73002
73012
  lastVerificationError: (({
73003
73013
  code: (string | null)
@@ -73101,6 +73111,7 @@ id: string
73101
73111
  export interface DeploymentDomainVerifyOutput {
73102
73112
  id: string
73103
73113
  kind: ("auto" | "custom")
73114
+ aliases: string[]
73104
73115
  hostname: string
73105
73116
  createdAt: string
73106
73117
  tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed")
@@ -73126,6 +73137,7 @@ routingUnavailable?: boolean
73126
73137
  } | null)
73127
73138
  routingRecordType: ("A" | "CNAME")
73128
73139
  verificationToken: (string | null)
73140
+ advertisedHostname: string
73129
73141
  verificationStatus: ("pending_dns" | "verified" | "dns_failed")
73130
73142
  lastVerificationError: (({
73131
73143
  code: (string | null)