audio-channel-queue 1.13.1 → 1.13.2
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/README.md +12 -0
- package/dist/core.d.ts +1 -1
- package/dist/core.js +1 -1
- package/dist/errors.d.ts +1 -1
- package/dist/errors.js +1 -1
- package/dist/events.d.ts +1 -1
- package/dist/events.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/info.d.ts +1 -1
- package/dist/info.js +1 -1
- package/dist/pause.d.ts +1 -1
- package/dist/pause.js +1 -1
- package/dist/queue-manipulation.d.ts +1 -1
- package/dist/queue-manipulation.js +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/types.js +1 -1
- package/dist/utils.d.ts +1 -1
- package/dist/utils.js +1 -1
- package/dist/volume.d.ts +1 -1
- package/dist/volume.js +1 -1
- package/package.json +4 -4
- package/src/core.ts +1 -1
- package/src/errors.ts +1 -1
- package/src/events.ts +1 -1
- package/src/index.ts +1 -1
- package/src/info.ts +1 -1
- package/src/pause.ts +1 -1
- package/src/queue-manipulation.ts +1 -1
- package/src/types.ts +1 -1
- package/src/utils.ts +1 -1
- package/src/volume.ts +1 -1
package/README.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# ⚠️ DEPRECATED - This package has been renamed
|
|
2
|
+
|
|
3
|
+
This package is deprecated and will no longer receive updates.
|
|
4
|
+
|
|
5
|
+
**Please use [`AudioQ`](https://www.npmjs.com/package/audioq) instead:**
|
|
6
|
+
|
|
7
|
+
\`\`\`bash
|
|
8
|
+
npm install audioq
|
|
9
|
+
\`\`\`
|
|
10
|
+
|
|
11
|
+
All future development will happen in the new package.
|
|
12
|
+
|
|
1
13
|
# Audio Channel Queue
|
|
2
14
|
The purpose of this package is to help manage the playback of audio files.
|
|
3
15
|
|
package/dist/core.d.ts
CHANGED
package/dist/core.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* @fileoverview Core queue management functions for the
|
|
3
|
+
* @fileoverview Core queue management functions for the audioq package
|
|
4
4
|
*/
|
|
5
5
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
6
6
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
package/dist/errors.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @fileoverview Error handling, retry logic, and recovery mechanisms for the
|
|
2
|
+
* @fileoverview Error handling, retry logic, and recovery mechanisms for the audioq package
|
|
3
3
|
*/
|
|
4
4
|
import { AudioErrorInfo, AudioErrorCallback, AudioErrorType, RetryConfig, ErrorRecoveryOptions, ExtendedAudioQueueChannel } from './types';
|
|
5
5
|
/**
|
package/dist/errors.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* @fileoverview Error handling, retry logic, and recovery mechanisms for the
|
|
3
|
+
* @fileoverview Error handling, retry logic, and recovery mechanisms for the audioq package
|
|
4
4
|
*/
|
|
5
5
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
6
|
if (k2 === undefined) k2 = k;
|
package/dist/events.d.ts
CHANGED
package/dist/events.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* @fileoverview Event handling and emission for the
|
|
3
|
+
* @fileoverview Event handling and emission for the audioq package
|
|
4
4
|
*/
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.cleanupProgressTracking = exports.setupProgressTracking = exports.emitAudioResume = exports.emitAudioPause = exports.emitAudioComplete = exports.emitAudioStart = exports.emitQueueChange = void 0;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @fileoverview Main entry point for the
|
|
2
|
+
* @fileoverview Main entry point for the audioq package
|
|
3
3
|
* Exports all public functions and types for audio queue management, pause/resume controls,
|
|
4
4
|
* volume management with ducking, progress tracking, and comprehensive event system
|
|
5
5
|
*/
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* @fileoverview Main entry point for the
|
|
3
|
+
* @fileoverview Main entry point for the audioq package
|
|
4
4
|
* Exports all public functions and types for audio queue management, pause/resume controls,
|
|
5
5
|
* volume management with ducking, progress tracking, and comprehensive event system
|
|
6
6
|
*/
|
package/dist/info.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @fileoverview Audio information and progress tracking functions for the
|
|
2
|
+
* @fileoverview Audio information and progress tracking functions for the audioq package
|
|
3
3
|
*/
|
|
4
4
|
import { AudioInfo, QueueSnapshot, ProgressCallback, QueueChangeCallback, AudioStartCallback, AudioCompleteCallback, AudioPauseCallback, AudioResumeCallback, ExtendedAudioQueueChannel } from './types';
|
|
5
5
|
/**
|
package/dist/info.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* @fileoverview Audio information and progress tracking functions for the
|
|
3
|
+
* @fileoverview Audio information and progress tracking functions for the audioq package
|
|
4
4
|
*/
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.offAudioComplete = exports.offAudioStart = exports.offAudioResume = exports.offAudioPause = exports.onAudioResume = exports.onAudioPause = exports.onAudioComplete = exports.onAudioStart = exports.offQueueChange = exports.onQueueChange = exports.onAudioProgress = exports.getQueueSnapshot = exports.getAllChannelsInfo = exports.getCurrentAudioInfo = exports.audioChannels = exports.getNonWhitelistedChannelProperties = exports.getWhitelistedChannelProperties = void 0;
|
package/dist/pause.d.ts
CHANGED
package/dist/pause.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* @fileoverview Pause and resume management functions for the
|
|
3
|
+
* @fileoverview Pause and resume management functions for the audioq package
|
|
4
4
|
*/
|
|
5
5
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
6
6
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @fileoverview Queue manipulation functions for the
|
|
2
|
+
* @fileoverview Queue manipulation functions for the audioq package
|
|
3
3
|
* Provides advanced queue management including item removal, reordering, and clearing
|
|
4
4
|
*/
|
|
5
5
|
import { QueueManipulationResult, QueueItem } from './types';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* @fileoverview Queue manipulation functions for the
|
|
3
|
+
* @fileoverview Queue manipulation functions for the audioq package
|
|
4
4
|
* Provides advanced queue management including item removal, reordering, and clearing
|
|
5
5
|
*/
|
|
6
6
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
package/dist/types.d.ts
CHANGED
package/dist/types.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* @fileoverview Type definitions for the
|
|
3
|
+
* @fileoverview Type definitions for the audioq package
|
|
4
4
|
*/
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.TimerType = exports.FadeType = exports.EasingType = exports.AudioErrorType = exports.GLOBAL_PROGRESS_KEY = exports.MAX_CHANNELS = void 0;
|
package/dist/utils.d.ts
CHANGED
package/dist/utils.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* @fileoverview Utility functions for the
|
|
3
|
+
* @fileoverview Utility functions for the audioq package
|
|
4
4
|
*/
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.cleanWebpackFilename = exports.createQueueSnapshot = exports.getAudioInfoFromElement = exports.extractFileName = exports.sanitizeForDisplay = exports.validateAudioUrl = void 0;
|
package/dist/volume.d.ts
CHANGED
package/dist/volume.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* @fileoverview Volume management functions for the
|
|
3
|
+
* @fileoverview Volume management functions for the audioq package
|
|
4
4
|
*/
|
|
5
5
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
6
6
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "audio-channel-queue",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.2",
|
|
4
4
|
"description": "Allows you to queue audio files to different playback channels.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"repository": {
|
|
34
34
|
"type": "git",
|
|
35
|
-
"url": "git+https://github.com/tonycarpenter21/
|
|
35
|
+
"url": "git+https://github.com/tonycarpenter21/audioq.git"
|
|
36
36
|
},
|
|
37
37
|
"keywords": [
|
|
38
38
|
"audio",
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"author": "Tony Carpenter",
|
|
44
44
|
"license": "MIT",
|
|
45
45
|
"bugs": {
|
|
46
|
-
"url": "https://github.com/tonycarpenter21/
|
|
46
|
+
"url": "https://github.com/tonycarpenter21/audioq/issues"
|
|
47
47
|
},
|
|
48
|
-
"homepage": "https://github.com/tonycarpenter21/
|
|
48
|
+
"homepage": "https://github.com/tonycarpenter21/audioq#readme",
|
|
49
49
|
"engines": {
|
|
50
50
|
"node": ">=14.0.0"
|
|
51
51
|
},
|
package/src/core.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @fileoverview Core queue management functions for the
|
|
2
|
+
* @fileoverview Core queue management functions for the audioq package
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
5
|
import { ExtendedAudioQueueChannel, AudioQueueOptions, MAX_CHANNELS, QueueConfig } from './types';
|
package/src/errors.ts
CHANGED
package/src/events.ts
CHANGED
package/src/index.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @fileoverview Main entry point for the
|
|
2
|
+
* @fileoverview Main entry point for the audioq package
|
|
3
3
|
* Exports all public functions and types for audio queue management, pause/resume controls,
|
|
4
4
|
* volume management with ducking, progress tracking, and comprehensive event system
|
|
5
5
|
*/
|
package/src/info.ts
CHANGED
package/src/pause.ts
CHANGED
package/src/types.ts
CHANGED
package/src/utils.ts
CHANGED
package/src/volume.ts
CHANGED