paynl-pos-sdk-react-native 0.0.20 → 0.0.21
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/generated/jni/react/renderer/components/RNPaynlSdkSpec/RNPaynlSdkSpecJSI.h +1 -1
- package/ios/generated/RNPaynlSdkSpecJSI.h +1 -1
- package/lib/typescript/commonjs/src/NativePayNlSdk.d.ts +1 -1
- package/lib/typescript/module/src/NativePayNlSdk.d.ts +1 -1
- package/package.json +1 -1
- package/src/NativePayNlSdk.ts +1 -1
|
@@ -46,7 +46,7 @@ struct NativePayNlSdkActivationResponseModelBridging {
|
|
|
46
46
|
return bridging::toJs(rt, value);
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
-
static
|
|
49
|
+
static jsi::String expiresAtToJs(jsi::Runtime &rt, decltype(types.expiresAt) value) {
|
|
50
50
|
return bridging::toJs(rt, value);
|
|
51
51
|
}
|
|
52
52
|
#endif
|
|
@@ -46,7 +46,7 @@ struct NativePayNlSdkActivationResponseModelBridging {
|
|
|
46
46
|
return bridging::toJs(rt, value);
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
-
static
|
|
49
|
+
static jsi::String expiresAtToJs(jsi::Runtime &rt, decltype(types.expiresAt) value) {
|
|
50
50
|
return bridging::toJs(rt, value);
|
|
51
51
|
}
|
|
52
52
|
#endif
|
|
@@ -84,7 +84,7 @@ export interface NativeInitModel {
|
|
|
84
84
|
export type NativeInitResult = 'needs_login' | 'ready_for_payment';
|
|
85
85
|
export interface ActivationResponseModel {
|
|
86
86
|
code: string;
|
|
87
|
-
expiresAt:
|
|
87
|
+
expiresAt: string;
|
|
88
88
|
}
|
|
89
89
|
export interface PaymentOverlayParams {
|
|
90
90
|
/**
|
|
@@ -84,7 +84,7 @@ export interface NativeInitModel {
|
|
|
84
84
|
export type NativeInitResult = 'needs_login' | 'ready_for_payment';
|
|
85
85
|
export interface ActivationResponseModel {
|
|
86
86
|
code: string;
|
|
87
|
-
expiresAt:
|
|
87
|
+
expiresAt: string;
|
|
88
88
|
}
|
|
89
89
|
export interface PaymentOverlayParams {
|
|
90
90
|
/**
|
package/package.json
CHANGED
package/src/NativePayNlSdk.ts
CHANGED