@lepsto/sdk-app 89.1.0 → 89.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/CHANGELOG.md +6 -15
- package/dist/_types/gen/types.gen.d.ts +8 -0
- package/package.json +2 -2
- package/src/gen/types.gen.ts +8 -0
package/CHANGELOG.md
CHANGED
|
@@ -115,19 +115,10 @@ 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.
|
|
119
|
-
|
|
120
|
-
###
|
|
121
|
-
- `
|
|
122
|
-
- `
|
|
123
|
-
- `
|
|
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)`
|
|
118
|
+
## 89.3.0 (minor)
|
|
119
|
+
|
|
120
|
+
### workflow
|
|
121
|
+
- `workflow_config_list`: new optional field `items.deprecated (output)`
|
|
122
|
+
- `workflow_config_set`: new optional field `deprecated (output)`
|
|
123
|
+
- `workflow_config_set`: description updated
|
|
133
124
|
|
|
@@ -125827,6 +125827,10 @@ export interface WorkflowConfigListOutput {
|
|
|
125827
125827
|
items: {
|
|
125828
125828
|
key: string;
|
|
125829
125829
|
is_secret: boolean;
|
|
125830
|
+
/**
|
|
125831
|
+
* Present when the key still resolves but no longer does anything. Its value is kept; nothing reads it.
|
|
125832
|
+
*/
|
|
125833
|
+
deprecated?: true;
|
|
125830
125834
|
updated_at: string;
|
|
125831
125835
|
}[];
|
|
125832
125836
|
next_cursor: (string | null);
|
|
@@ -125848,6 +125852,10 @@ export interface WorkflowConfigSetInput {
|
|
|
125848
125852
|
export interface WorkflowConfigSetOutput {
|
|
125849
125853
|
key: string;
|
|
125850
125854
|
is_secret: boolean;
|
|
125855
|
+
/**
|
|
125856
|
+
* Present when the key still resolves but no longer does anything. Its value is kept; nothing reads it.
|
|
125857
|
+
*/
|
|
125858
|
+
deprecated?: true;
|
|
125851
125859
|
updated_at: string;
|
|
125852
125860
|
}
|
|
125853
125861
|
export interface WorkflowDefinitionCreateInput {
|
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.
|
|
4
|
+
"version": "89.3.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/lepsto/lepsto-sdk-app.git"
|
|
@@ -220,5 +220,5 @@
|
|
|
220
220
|
}
|
|
221
221
|
}
|
|
222
222
|
},
|
|
223
|
-
"sdkContentHash": "sha256:
|
|
223
|
+
"sdkContentHash": "sha256:c7b71b8f51d16695a7bc0705a1056dacd18118d499ecffd54be902b250fd76d4"
|
|
224
224
|
}
|
package/src/gen/types.gen.ts
CHANGED
|
@@ -119280,6 +119280,10 @@ export interface WorkflowConfigListOutput {
|
|
|
119280
119280
|
items: {
|
|
119281
119281
|
key: string
|
|
119282
119282
|
is_secret: boolean
|
|
119283
|
+
/**
|
|
119284
|
+
* Present when the key still resolves but no longer does anything. Its value is kept; nothing reads it.
|
|
119285
|
+
*/
|
|
119286
|
+
deprecated?: true
|
|
119283
119287
|
updated_at: string
|
|
119284
119288
|
}[]
|
|
119285
119289
|
next_cursor: (string | null)
|
|
@@ -119303,6 +119307,10 @@ secret: boolean
|
|
|
119303
119307
|
export interface WorkflowConfigSetOutput {
|
|
119304
119308
|
key: string
|
|
119305
119309
|
is_secret: boolean
|
|
119310
|
+
/**
|
|
119311
|
+
* Present when the key still resolves but no longer does anything. Its value is kept; nothing reads it.
|
|
119312
|
+
*/
|
|
119313
|
+
deprecated?: true
|
|
119306
119314
|
updated_at: string
|
|
119307
119315
|
}
|
|
119308
119316
|
|