@bdky/aaas-pilot-kit 1.0.8 → 1.1.0

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.
Files changed (24) hide show
  1. package/dist/index.cjs.js +255 -23
  2. package/dist/index.cjs.js.LICENSE.txt +9 -0
  3. package/dist/index.esm.js +254 -22
  4. package/dist/index.esm.js.LICENSE.txt +9 -0
  5. package/dist/index.umd.js +254 -22
  6. package/dist/index.umd.js.LICENSE.txt +9 -0
  7. package/dist/ky-aaas-pilot-kit.umd.js +254 -22
  8. package/dist/ky-aaas-pilot-kit.umd.js.LICENSE.txt +9 -0
  9. package/dist/libs/aaas-pilot-kit/src/index.d.ts +2 -0
  10. package/dist/libs/aaas-pilot-kit/src/lib/DI/types.d.ts +1 -0
  11. package/dist/libs/aaas-pilot-kit/src/lib/constants/azure.d.ts +423 -0
  12. package/dist/libs/aaas-pilot-kit/src/lib/service/conversation/conversationService.d.ts +24 -0
  13. package/dist/libs/aaas-pilot-kit/src/lib/service/conversation/types.d.ts +37 -0
  14. package/dist/libs/aaas-pilot-kit/src/lib/service/rtc-asr/asr/azureAsrService.d.ts +108 -0
  15. package/dist/libs/aaas-pilot-kit/src/lib/service/rtc-asr/asr/baseAsrService.d.ts +38 -3
  16. package/dist/libs/aaas-pilot-kit/src/lib/service/rtc-asr/signal/noop.d.ts +54 -0
  17. package/dist/libs/aaas-pilot-kit/src/lib/utils/AudioDeviceDetector.d.ts +3 -1
  18. package/dist/libs/aaas-pilot-kit/src/lib/utils/EnergyBasedGate.d.ts +240 -0
  19. package/dist/libs/aaas-pilot-kit/src/lib/utils/MediaStreamManager.d.ts +209 -0
  20. package/dist/libs/aaas-pilot-kit/src/lib/utils/audio-processing/AudioContextLifecycle.d.ts +110 -0
  21. package/dist/libs/aaas-pilot-kit/src/lib/utils/audio-processing/AudioWorkletCapability.d.ts +95 -0
  22. package/dist/libs/aaas-pilot-kit/src/lib/utils/audio-processing/FloatAPICompat.d.ts +103 -0
  23. package/dist/libs/aaas-pilot-kit/src/types/config.d.ts +358 -4
  24. package/package.json +23 -1
@@ -1,3 +1,10 @@
1
+ /*!
2
+ * The buffer module from node.js, for the browser.
3
+ *
4
+ * @author Feross Aboukhadijeh <https://feross.org>
5
+ * @license MIT
6
+ */
7
+
1
8
  /*! *****************************************************************************
2
9
  Copyright (C) Microsoft. All rights reserved.
3
10
  Licensed under the Apache License, Version 2.0 (the "License"); you may not use
@@ -30,6 +37,8 @@ PERFORMANCE OF THIS SOFTWARE.
30
37
 
31
38
  /*! MIT License © Sindre Sorhus */
32
39
 
40
+ /*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
41
+
33
42
  /**
34
43
  * TraceKit - Cross brower stack traces
35
44
  *