@siteed/expo-audio-stream 2.2.1-beta.0 → 2.2.1-beta.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 +5 -5
- package/build/index.js +6 -6
- package/package.json +3 -3
- package/src/index.ts +6 -6
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/
|
|
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/
|
|
7
|
+
* Please update your imports to use @siteed/audio-studio directly.
|
|
8
8
|
*/
|
|
9
|
-
import * as
|
|
10
|
-
export * from '@siteed/
|
|
11
|
-
export default
|
|
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/
|
|
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/
|
|
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
|
|
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/
|
|
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/
|
|
52
|
+
__exportStar(require("@siteed/audio-studio"), exports);
|
|
53
53
|
// For backward compatibility with default imports
|
|
54
|
-
exports.default =
|
|
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.
|
|
4
|
-
"description": "DEPRECATED: Use @siteed/
|
|
3
|
+
"version": "2.2.1-beta.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/
|
|
45
|
+
"@siteed/audio-studio": "3.2.1-beta.0"
|
|
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/
|
|
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/
|
|
7
|
+
* Please update your imports to use @siteed/audio-studio directly.
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
|
-
import * as
|
|
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/
|
|
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/
|
|
19
|
+
export * from '@siteed/audio-studio';
|
|
20
20
|
|
|
21
21
|
// For backward compatibility with default imports
|
|
22
|
-
export default
|
|
22
|
+
export default AudioStudio;
|