Skip to content
This repository was archived by the owner on Jan 7, 2026. It is now read-only.

Commit cc83c49

Browse files
committed
fix: fix packages
1 parent fd3da5c commit cc83c49

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

native-modules/react-native-background-thread/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onekeyfe/react-native-background-thread",
3-
"version": "1.1.7",
3+
"version": "1.1.8",
44
"description": "react-native-background-thread",
55
"main": "./lib/module/index.js",
66
"types": "./lib/typescript/src/index.d.ts",

native-modules/react-native-check-biometric-auth-changed/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onekeyfe/react-native-check-biometric-auth-changed",
3-
"version": "1.1.7",
3+
"version": "1.1.8",
44
"description": "react-native-check-biometric-auth-changed",
55
"workspaces": [
66
"example"

native-modules/react-native-cloud-kit-module/android/src/main/java/com/margelo/nitro/cloudkitmodule/CloudKitModule.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ class CloudKitModule : HybridCloudKitModuleSpec() {
3333
return Promise.resolved(null)
3434
}
3535

36-
override fun deleteRecord(params: DeleteRecordParams): Promise<Boolean> {
37-
return Promise.resolved(false)
36+
override fun deleteRecord(params: DeleteRecordParams): Promise<Unit> {
37+
return Promise.resolved(Unit)
3838
}
3939

4040
override fun recordExists(params: RecordExistsParams): Promise<Boolean> {

native-modules/react-native-cloud-kit-module/example/ios/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PODS:
22
- boost (1.84.0)
3-
- CloudKitModule (1.1.5):
3+
- CloudKitModule (1.1.7):
44
- boost
55
- DoubleConversion
66
- fast_float
@@ -2761,7 +2761,7 @@ EXTERNAL SOURCES:
27612761

27622762
SPEC CHECKSUMS:
27632763
boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90
2764-
CloudKitModule: c0cd648d4ac860b842c6a200c44319a2edd7bd85
2764+
CloudKitModule: 1a5db8bd34d877b643a0ab02be7e89219f10fda2
27652765
DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb
27662766
fast_float: b32c788ed9c6a8c584d114d0047beda9664e7cc6
27672767
FBLazyVector: a293a88992c4c33f0aee184acab0b64a08ff9458

native-modules/react-native-cloud-kit-module/ios/CloudKitModule.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,16 +104,16 @@ class CloudKitModule: HybridCloudKitModuleSpec {
104104

105105
// MARK: - Delete Record
106106

107-
public func deleteRecord(params: DeleteRecordParams) throws -> Promise<Bool> {
107+
public func deleteRecord(params: DeleteRecordParams) throws -> Promise<Void> {
108108
return Promise.async {
109109
let ckRecordID = CKRecord.ID(recordName: params.recordID)
110110

111111
do {
112112
_ = try await self.database.deleteRecord(withID: ckRecordID)
113-
return true
113+
return Void()
114114
} catch let error as CKError where error.code == .unknownItem {
115115
// Item not found is considered success for delete
116-
return true
116+
return Void()
117117
}
118118
}
119119
}

native-modules/react-native-cloud-kit-module/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onekeyfe/react-native-cloud-kit-module",
3-
"version": "1.1.7",
3+
"version": "1.1.8",
44
"description": "react-native-cloud-kit-module",
55
"main": "./lib/module/index.js",
66
"types": "./lib/typescript/src/index.d.ts",

native-modules/react-native-cloud-kit-module/src/CloudKitModule.nitro.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export interface CloudKitModule
5858
getAccountInfo(): Promise<AccountInfoResult>;
5959
saveRecord(params: SaveRecordParams): Promise<SaveRecordResult>;
6060
fetchRecord(params: FetchRecordParams): Promise<RecordResult | null>;
61-
deleteRecord(params: DeleteRecordParams): Promise<boolean>;
61+
deleteRecord(params: DeleteRecordParams): Promise<void>;
6262
recordExists(params: RecordExistsParams): Promise<boolean>;
6363
queryRecords(params: QueryRecordsParams): Promise<QueryRecordsResult>;
6464
}

native-modules/react-native-keychain-module/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onekeyfe/react-native-keychain-module",
3-
"version": "1.1.7",
3+
"version": "1.1.8",
44
"description": "react-native-keychain-module",
55
"main": "./lib/module/index.js",
66
"types": "./lib/typescript/src/index.d.ts",

native-modules/react-native-lite-card/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onekeyfe/react-native-lite-card",
3-
"version": "1.1.7",
3+
"version": "1.1.8",
44
"description": "lite card",
55
"main": "./lib/module/index.js",
66
"types": "./lib/typescript/src/index.d.ts",

0 commit comments

Comments
 (0)