@siteed/expo-audio-stream 2.2.1-beta.0 → 2.2.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/build/index.d.ts CHANGED
@@ -1,11 +1,11 @@
1
1
  /**
2
2
  * @siteed/expo-audio-stream
3
3
  *
4
- * DEPRECATED: This package has been renamed to @siteed/expo-audio-studio
4
+ * DEPRECATED: This package has been renamed to @siteed/audio-studio
5
5
  * This file serves as a compatibility wrapper that re-exports everything from the new package.
6
6
  *
7
- * Please update your imports to use @siteed/expo-audio-studio directly.
7
+ * Please update your imports to use @siteed/audio-studio directly.
8
8
  */
9
- import * as ExpoAudioStudio from '@siteed/expo-audio-studio';
10
- export * from '@siteed/expo-audio-studio';
11
- export default ExpoAudioStudio;
9
+ import * as AudioStudio from '@siteed/audio-studio';
10
+ export * from '@siteed/audio-studio';
11
+ export default AudioStudio;
package/build/index.js CHANGED
@@ -2,10 +2,10 @@
2
2
  /**
3
3
  * @siteed/expo-audio-stream
4
4
  *
5
- * DEPRECATED: This package has been renamed to @siteed/expo-audio-studio
5
+ * DEPRECATED: This package has been renamed to @siteed/audio-studio
6
6
  * This file serves as a compatibility wrapper that re-exports everything from the new package.
7
7
  *
8
- * Please update your imports to use @siteed/expo-audio-studio directly.
8
+ * Please update your imports to use @siteed/audio-studio directly.
9
9
  */
10
10
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
11
11
  if (k2 === undefined) k2 = k;
@@ -44,11 +44,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
44
44
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
45
45
  };
46
46
  Object.defineProperty(exports, "__esModule", { value: true });
47
- const ExpoAudioStudio = __importStar(require("@siteed/expo-audio-studio"));
47
+ const AudioStudio = __importStar(require("@siteed/audio-studio"));
48
48
  // Display deprecation warning
49
49
  console.warn('@siteed/expo-audio-stream is deprecated and will be removed in a future version. ' +
50
- 'Please migrate to @siteed/expo-audio-studio, which provides the same functionality with additional features.');
50
+ 'Please migrate to @siteed/audio-studio, which provides the same functionality with additional features.');
51
51
  // Re-export everything from the new package
52
- __exportStar(require("@siteed/expo-audio-studio"), exports);
52
+ __exportStar(require("@siteed/audio-studio"), exports);
53
53
  // For backward compatibility with default imports
54
- exports.default = ExpoAudioStudio;
54
+ exports.default = AudioStudio;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@siteed/expo-audio-stream",
3
- "version": "2.2.1-beta.0",
4
- "description": "DEPRECATED: Use @siteed/expo-audio-studio instead. This package now serves as a compatibility wrapper.",
3
+ "version": "2.2.1",
4
+ "description": "DEPRECATED: Use @siteed/audio-studio instead. This package now serves as a compatibility wrapper.",
5
5
  "license": "MIT",
6
6
  "main": "build/index.js",
7
7
  "types": "build/index.d.ts",
@@ -42,7 +42,7 @@
42
42
  "registry": "https://registry.npmjs.org"
43
43
  },
44
44
  "dependencies": {
45
- "@siteed/expo-audio-studio": "3.2.2-beta.0"
45
+ "@siteed/audio-studio": "3.2.1"
46
46
  },
47
47
  "devDependencies": {
48
48
  "typescript": "~6.0.3"
package/src/index.ts CHANGED
@@ -1,22 +1,22 @@
1
1
  /**
2
2
  * @siteed/expo-audio-stream
3
3
  *
4
- * DEPRECATED: This package has been renamed to @siteed/expo-audio-studio
4
+ * DEPRECATED: This package has been renamed to @siteed/audio-studio
5
5
  * This file serves as a compatibility wrapper that re-exports everything from the new package.
6
6
  *
7
- * Please update your imports to use @siteed/expo-audio-studio directly.
7
+ * Please update your imports to use @siteed/audio-studio directly.
8
8
  */
9
9
 
10
- import * as ExpoAudioStudio from '@siteed/expo-audio-studio';
10
+ import * as AudioStudio from '@siteed/audio-studio';
11
11
 
12
12
  // Display deprecation warning
13
13
  console.warn(
14
14
  '@siteed/expo-audio-stream is deprecated and will be removed in a future version. ' +
15
- 'Please migrate to @siteed/expo-audio-studio, which provides the same functionality with additional features.'
15
+ 'Please migrate to @siteed/audio-studio, which provides the same functionality with additional features.'
16
16
  );
17
17
 
18
18
  // Re-export everything from the new package
19
- export * from '@siteed/expo-audio-studio';
19
+ export * from '@siteed/audio-studio';
20
20
 
21
21
  // For backward compatibility with default imports
22
- export default ExpoAudioStudio;
22
+ export default AudioStudio;