@wise/dynamic-flow-types 2.6.5 → 2.6.7

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.
@@ -43,6 +43,7 @@ export type { SearchResult } from './responses/search/SearchResult';
43
43
  export type { SearchResponseBody } from './responses/search/SearchResponseBody';
44
44
  export type { Schema } from './schema/Schema';
45
45
  export type { BooleanSchema } from './schema/BooleanSchema';
46
+ export type { BlobSchema } from './schema/BlobSchema';
46
47
  export type { ConstSchema } from './schema/ConstSchema';
47
48
  export type { ObjectSchema } from './schema/ObjectSchema';
48
49
  export type { AllOfSchema } from './schema/AllOfSchema';
@@ -54,6 +55,8 @@ export type { ArraySchema } from './schema/ArraySchema';
54
55
  export type { ArraySchemaList } from './schema/ArraySchemaList';
55
56
  export type { ArraySchemaTuple } from './schema/ArraySchemaTuple';
56
57
  export type { StringSchemaFormat } from './schema/StringSchemaFormat';
58
+ export type { ActionResponseBody } from './responses/action/ActionResponseBody';
59
+ export type { ErrorResponseBody } from './responses/error/ErrorResponseBody';
57
60
  export type { Step } from './step/Step';
58
61
  export type { JsonElement, JsonPrimitive, JsonArray, JsonObject } from './JsonElement';
59
62
  export type Model = JsonElement;
@@ -29,6 +29,10 @@ export type Step = {
29
29
  */
30
30
  type?: string;
31
31
  /**
32
+ * @deprecated Please replace step description with a paragraph in your layout.
33
+ */
34
+ description?: string;
35
+ /**
32
36
  * @deprecated Please define actions inside Button components.
33
37
  */
34
38
  actions?: Action[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wise/dynamic-flow-types",
3
- "version": "2.6.5",
3
+ "version": "2.6.7",
4
4
  "description": "Dynamic Flow TypeScript Types",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -15,9 +15,9 @@
15
15
  ],
16
16
  "devDependencies": {
17
17
  "@formatjs/cli": "^6.2.7",
18
- "esbuild": "0.20.0",
19
- "npm-run-all": "4.1.5",
20
- "ts-to-zod": "3.2.0",
18
+ "esbuild": "0.20.1",
19
+ "npm-run-all2": "5.0.2",
20
+ "ts-to-zod": "3.7.1",
21
21
  "typescript": "4.9.5"
22
22
  },
23
23
  "peerDependencies": {},