@capgo/capacitor-mute 1.1.21 → 1.1.25

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.
@@ -11,7 +11,11 @@ Pod::Spec.new do |s|
11
11
  s.author = package['author']
12
12
  s.source = { :git => package['repository']['url'], :tag => s.version.to_s }
13
13
  s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
14
+ s.resource_bundles = {
15
+ 'Mute' => ['ios/Plugin/Assets/*.aiff']
16
+ }
14
17
  s.ios.deployment_target = '13.0'
15
18
  s.dependency 'Capacitor'
19
+ s.frameworks = 'Foundation', 'AudioToolbox'
16
20
  s.swift_version = '5.1'
17
21
  end
package/README.md CHANGED
@@ -60,12 +60,12 @@ If no answer I will add the code directly to capacitor-mute
60
60
  ### isMuted()
61
61
 
62
62
  ```typescript
63
- isMuted() => Promise<MuteResponse>
63
+ isMuted() => any
64
64
  ```
65
65
 
66
66
  check if the device is muted
67
67
 
68
- **Returns:** <code>Promise&lt;<a href="#muteresponse">MuteResponse</a>&gt;</code>
68
+ **Returns:** <code>any</code>
69
69
 
70
70
  --------------------
71
71
 
package/dist/docs.json CHANGED
@@ -7,9 +7,9 @@
7
7
  "methods": [
8
8
  {
9
9
  "name": "isMuted",
10
- "signature": "() => Promise<MuteResponse>",
10
+ "signature": "() => any",
11
11
  "parameters": [],
12
- "returns": "Promise<MuteResponse>",
12
+ "returns": "any",
13
13
  "tags": [],
14
14
  "docs": "check if the device is muted",
15
15
  "complexTypes": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-mute",
3
- "version": "1.1.21",
3
+ "version": "1.1.25",
4
4
  "description": "Detect if the mute switch is enabled/disabled on a device",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",