steelseries-sonar-sdk 0.2.4 → 0.2.6

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 (2) hide show
  1. package/dist/index.d.ts +29 -29
  2. package/package.json +1 -2
package/dist/index.d.ts CHANGED
@@ -1,29 +1,29 @@
1
- export * from '@/enums';
2
- export * from '@/exceptions';
3
- export * from '@/functions/audio/get-audio-data-classic';
4
- export * from '@/functions/audio/get-audio-data-stream';
5
- export * from '@/functions/audio/get-audio-mode';
6
- export * from '@/functions/audio/set-audio-mode';
7
- export * from '@/functions/audio/set-channel-mute-classic';
8
- export * from '@/functions/audio/set-channel-mute-streamer';
9
- export * from '@/functions/audio/set-channel-volume-classic';
10
- export * from '@/functions/audio/set-channel-volume-streamer';
11
- export * from '@/functions/chatmix/get-chat-mix-state';
12
- export * from '@/functions/chatmix/set-chat-mix-balance';
13
- export * from '@/functions/devices/get-audio-devices';
14
- export * from '@/functions/devices/set-audio-device';
15
- export * from '@/functions/endpoint/get-app-endpoint';
16
- export * from '@/functions/endpoint/get-sonar-endpoint';
17
- export * from '@/functions/endpoint/get-sonar-endpoint-cached';
18
- export * from '@/functions/profile/get-channel-profiles';
19
- export * from '@/functions/profile/get-selected-profiles';
20
- export * from '@/functions/profile/set-selected-profile';
21
- export * from '@/types/audio-device';
22
- export * from '@/types/changed-device';
23
- export * from '@/types/channel-volume-classic';
24
- export * from '@/types/channel-volume-streamer';
25
- export * from '@/types/channel-volume-streamer-path';
26
- export * from '@/types/channel-volumes-classic';
27
- export * from '@/types/channel-volumes-streamer';
28
- export * from '@/types/chat-mix-data';
29
- export * from '@/types/profile-option';
1
+ export * from './enums';
2
+ export * from './exceptions';
3
+ export * from './functions/audio/get-audio-data-classic';
4
+ export * from './functions/audio/get-audio-data-stream';
5
+ export * from './functions/audio/get-audio-mode';
6
+ export * from './functions/audio/set-audio-mode';
7
+ export * from './functions/audio/set-channel-mute-classic';
8
+ export * from './functions/audio/set-channel-mute-streamer';
9
+ export * from './functions/audio/set-channel-volume-classic';
10
+ export * from './functions/audio/set-channel-volume-streamer';
11
+ export * from './functions/chatmix/get-chat-mix-state';
12
+ export * from './functions/chatmix/set-chat-mix-balance';
13
+ export * from './functions/devices/get-audio-devices';
14
+ export * from './functions/devices/set-audio-device';
15
+ export * from './functions/endpoint/get-app-endpoint';
16
+ export * from './functions/endpoint/get-sonar-endpoint';
17
+ export * from './functions/endpoint/get-sonar-endpoint-cached';
18
+ export * from './functions/profile/get-channel-profiles';
19
+ export * from './functions/profile/get-selected-profiles';
20
+ export * from './functions/profile/set-selected-profile';
21
+ export * from './types/audio-device';
22
+ export * from './types/changed-device';
23
+ export * from './types/channel-volume-classic';
24
+ export * from './types/channel-volume-streamer';
25
+ export * from './types/channel-volume-streamer-path';
26
+ export * from './types/channel-volumes-classic';
27
+ export * from './types/channel-volumes-streamer';
28
+ export * from './types/chat-mix-data';
29
+ export * from './types/profile-option';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "steelseries-sonar-sdk",
3
- "version": "0.2.4",
3
+ "version": "0.2.6",
4
4
  "description": "An SDK for interacting with the SteelSeries Sonar software.",
5
5
  "author": "Harley Torrisi <mail@harleycodes.com>",
6
6
  "license": "MIT",
@@ -10,7 +10,6 @@
10
10
  "url": "https://github.com/harley-codes/steelseries-sonar-sdk-js"
11
11
  },
12
12
  "main": "dist/index.js",
13
- "types": "dist/index.d.ts",
14
13
  "files": [
15
14
  "dist",
16
15
  "README.md",