capacitor-native-agent 0.3.6 → 0.3.7
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/android/src/main/java/com/t6x/plugins/nativeagent/NativeAgentPlugin.kt +10 -0
- package/android/src/main/java/uniffi/native_agent_ffi/native_agent_ffi.kt +30 -0
- package/android/src/main/jniLibs/arm64-v8a/libnative_agent_ffi.so +0 -0
- package/dist/esm/definitions.d.ts +11 -0
- package/dist/esm/definitions.d.ts.map +1 -1
- package/dist/esm/plugin.d.ts.map +1 -1
- package/dist/esm/plugin.js +1 -0
- package/dist/esm/plugin.js.map +1 -1
- package/ios/Frameworks/NativeAgentFFI.xcframework/Info.plist +4 -4
- package/ios/Frameworks/NativeAgentFFI.xcframework/ios-arm64/Headers/native_agent_ffi/native_agent_ffi.swift +2594 -0
- package/ios/Frameworks/NativeAgentFFI.xcframework/ios-arm64/Headers/native_agent_ffi/native_agent_ffiFFI.h +11 -0
- package/ios/Frameworks/NativeAgentFFI.xcframework/ios-arm64/libnative_agent_ffi.a +0 -0
- package/ios/Frameworks/NativeAgentFFI.xcframework/ios-arm64-simulator/Headers/native_agent_ffi/native_agent_ffi.swift +2594 -0
- package/ios/Frameworks/NativeAgentFFI.xcframework/ios-arm64-simulator/Headers/native_agent_ffi/native_agent_ffiFFI.h +11 -0
- package/ios/Frameworks/NativeAgentFFI.xcframework/ios-arm64-simulator/libnative_agent_ffi.a +0 -0
- package/ios/Sources/NativeAgentPlugin/Generated/native_agent_ffi.swift +21 -0
- package/ios/Sources/NativeAgentPlugin/Generated/native_agent_ffiFFI.h +11 -0
- package/ios/Sources/NativeAgentPlugin/NativeAgentPlugin.swift +28 -0
- package/package.json +1 -1
|
@@ -373,6 +373,11 @@ void uniffi_native_agent_ffi_fn_method_nativeagenthandle_delete_auth(void*_Nonnu
|
|
|
373
373
|
void uniffi_native_agent_ffi_fn_method_nativeagenthandle_end_skill(void*_Nonnull ptr, RustBuffer skill_id, RustCallStatus *_Nonnull out_status
|
|
374
374
|
);
|
|
375
375
|
#endif
|
|
376
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_NATIVE_AGENT_FFI_FN_METHOD_NATIVEAGENTHANDLE_EXCHANGE_OAUTH_CODE
|
|
377
|
+
#define UNIFFI_FFIDEF_UNIFFI_NATIVE_AGENT_FFI_FN_METHOD_NATIVEAGENTHANDLE_EXCHANGE_OAUTH_CODE
|
|
378
|
+
RustBuffer uniffi_native_agent_ffi_fn_method_nativeagenthandle_exchange_oauth_code(void*_Nonnull ptr, RustBuffer token_url, RustBuffer body_json, RustBuffer content_type, RustCallStatus *_Nonnull out_status
|
|
379
|
+
);
|
|
380
|
+
#endif
|
|
376
381
|
#ifndef UNIFFI_FFIDEF_UNIFFI_NATIVE_AGENT_FFI_FN_METHOD_NATIVEAGENTHANDLE_FOLLOW_UP
|
|
377
382
|
#define UNIFFI_FFIDEF_UNIFFI_NATIVE_AGENT_FFI_FN_METHOD_NATIVEAGENTHANDLE_FOLLOW_UP
|
|
378
383
|
void uniffi_native_agent_ffi_fn_method_nativeagenthandle_follow_up(void*_Nonnull ptr, RustBuffer prompt, RustCallStatus *_Nonnull out_status
|
|
@@ -899,6 +904,12 @@ uint16_t uniffi_native_agent_ffi_checksum_method_nativeagenthandle_delete_auth(v
|
|
|
899
904
|
#define UNIFFI_FFIDEF_UNIFFI_NATIVE_AGENT_FFI_CHECKSUM_METHOD_NATIVEAGENTHANDLE_END_SKILL
|
|
900
905
|
uint16_t uniffi_native_agent_ffi_checksum_method_nativeagenthandle_end_skill(void
|
|
901
906
|
|
|
907
|
+
);
|
|
908
|
+
#endif
|
|
909
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_NATIVE_AGENT_FFI_CHECKSUM_METHOD_NATIVEAGENTHANDLE_EXCHANGE_OAUTH_CODE
|
|
910
|
+
#define UNIFFI_FFIDEF_UNIFFI_NATIVE_AGENT_FFI_CHECKSUM_METHOD_NATIVEAGENTHANDLE_EXCHANGE_OAUTH_CODE
|
|
911
|
+
uint16_t uniffi_native_agent_ffi_checksum_method_nativeagenthandle_exchange_oauth_code(void
|
|
912
|
+
|
|
902
913
|
);
|
|
903
914
|
#endif
|
|
904
915
|
#ifndef UNIFFI_FFIDEF_UNIFFI_NATIVE_AGENT_FFI_CHECKSUM_METHOD_NATIVEAGENTHANDLE_FOLLOW_UP
|