expo-eas-client 0.6.0 → 0.7.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.
package/CHANGELOG.md CHANGED
@@ -10,6 +10,10 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 0.7.0 — 2023-07-28
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
13
17
  ## 0.6.0 — 2023-06-21
14
18
 
15
19
  ### 🐛 Bug fixes
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
3
3
  apply plugin: 'maven-publish'
4
4
 
5
5
  group = 'host.exp.exponent'
6
- version = '0.6.0'
6
+ version = '0.7.0'
7
7
 
8
8
  buildscript {
9
9
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
@@ -67,7 +67,7 @@ android {
67
67
  minSdkVersion safeExtGet("minSdkVersion", 21)
68
68
  targetSdkVersion safeExtGet("targetSdkVersion", 33)
69
69
  versionCode 1
70
- versionName "0.6.0"
70
+ versionName "0.7.0"
71
71
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
72
72
  }
73
73
  testOptions {
@@ -1,3 +1,3 @@
1
- declare const _default: import("expo-modules-core").ProxyNativeModule;
1
+ declare const _default: any;
2
2
  export default _default;
3
3
  //# sourceMappingURL=EASClient.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"EASClient.d.ts","sourceRoot":"","sources":["../src/EASClient.ts"],"names":[],"mappings":";AACA,wBAAkD"}
1
+ {"version":3,"file":"EASClient.d.ts","sourceRoot":"","sources":["../src/EASClient.ts"],"names":[],"mappings":";AACA,wBAAgD"}
@@ -1,3 +1,3 @@
1
- import { NativeModulesProxy } from 'expo-modules-core';
2
- export default NativeModulesProxy.EASClient || {};
1
+ import { requireNativeModule } from 'expo-modules-core';
2
+ export default requireNativeModule('EASClient');
3
3
  //# sourceMappingURL=EASClient.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"EASClient.js","sourceRoot":"","sources":["../src/EASClient.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AACvD,eAAe,kBAAkB,CAAC,SAAS,IAAI,EAAE,CAAC","sourcesContent":["import { NativeModulesProxy } from 'expo-modules-core';\nexport default NativeModulesProxy.EASClient || {};\n"]}
1
+ {"version":3,"file":"EASClient.js","sourceRoot":"","sources":["../src/EASClient.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AACxD,eAAe,mBAAmB,CAAC,WAAW,CAAC,CAAC","sourcesContent":["import { requireNativeModule } from 'expo-modules-core';\nexport default requireNativeModule('EASClient');\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-eas-client",
3
- "version": "0.6.0",
3
+ "version": "0.7.0",
4
4
  "description": "Stable client identifier for EAS services",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -37,5 +37,5 @@
37
37
  "devDependencies": {
38
38
  "expo-module-scripts": "^3.0.0"
39
39
  },
40
- "gitHead": "fa5ecca8251986b9f197cc14074eec0ab6dfb6db"
40
+ "gitHead": "663654577a7068c641b5e9474efbc502e3f334ea"
41
41
  }
package/src/EASClient.ts CHANGED
@@ -1,2 +1,2 @@
1
- import { NativeModulesProxy } from 'expo-modules-core';
2
- export default NativeModulesProxy.EASClient || {};
1
+ import { requireNativeModule } from 'expo-modules-core';
2
+ export default requireNativeModule('EASClient');