@fugood/bricks-project 2.25.0-beta.30 → 2.25.0-beta.33

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fugood/bricks-project",
3
- "version": "2.25.0-beta.30",
3
+ "version": "2.25.0-beta.33",
4
4
  "main": "index.ts",
5
5
  "scripts": {
6
6
  "typecheck": "tsc --noEmit",
package/package.json.bak CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fugood/bricks-ctor",
3
- "version": "2.25.0-beta.30",
3
+ "version": "2.25.0-beta.33",
4
4
  "main": "index.ts",
5
5
  "scripts": {
6
6
  "typecheck": "tsc --noEmit",
@@ -1,13 +1,13 @@
1
1
  /* Auto generated by build script
2
2
  *
3
- * Speech recognition on iOS 26+ (Not supported on tvOS)
3
+ * Speech recognition on iOS 26+ and Desktop (macOS 26+). Not supported on tvOS
4
4
  *
5
5
  * ## Features
6
6
  * - Native Apple speech recognition
7
7
  * - High accuracy transcription
8
8
  * - Privacy-focused on-device processing
9
9
  * - Supports file and data transcription
10
- * - Requires iOS 26+ (Not supported on tvOS)
10
+ * - Requires iOS 26+ or Desktop on macOS 26+. Not supported on tvOS
11
11
  */
12
12
  import type { SwitchCondInnerStateCurrentCanvas, SwitchCondData, SwitchDef } from '../switch'
13
13
  import type { Data, DataLink } from '../data'
@@ -61,6 +61,11 @@ export type GeneratorAppleSTTActionTranscribeData = ActionWithParams & {
61
61
  >
62
62
  }
63
63
 
64
+ /* Release context */
65
+ export type GeneratorAppleSTTActionReleaseContext = Action & {
66
+ __actionName: 'GENERATOR_APPLE_STT_RELEASE_CONTEXT'
67
+ }
68
+
64
69
  interface GeneratorAppleSTTDef {
65
70
  /*
66
71
  Default property:
@@ -100,14 +105,14 @@ Default property:
100
105
  }
101
106
  }
102
107
 
103
- /* Speech recognition on iOS 26+ (Not supported on tvOS)
108
+ /* Speech recognition on iOS 26+ and Desktop (macOS 26+). Not supported on tvOS
104
109
 
105
110
  ## Features
106
111
  - Native Apple speech recognition
107
112
  - High accuracy transcription
108
113
  - Privacy-focused on-device processing
109
114
  - Supports file and data transcription
110
- - Requires iOS 26+ (Not supported on tvOS) */
115
+ - Requires iOS 26+ or Desktop on macOS 26+. Not supported on tvOS */
111
116
  export type GeneratorAppleSTT = Generator &
112
117
  GeneratorAppleSTTDef & {
113
118
  templateKey: 'GENERATOR_APPLE_STT'