@revibase/core 0.0.27 → 0.0.29
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/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2965,11 +2965,15 @@ type AuthenticationContext = {
|
|
|
2965
2965
|
publicKey: string;
|
|
2966
2966
|
signature: string;
|
|
2967
2967
|
};
|
|
2968
|
+
authProviderSignature?: {
|
|
2969
|
+
publicKey: string;
|
|
2970
|
+
signature: string;
|
|
2971
|
+
};
|
|
2968
2972
|
};
|
|
2969
2973
|
type BaseResponse = {
|
|
2970
2974
|
signer: string;
|
|
2971
2975
|
userAddressTreeIndex?: number;
|
|
2972
|
-
additionalInfo?:
|
|
2976
|
+
additionalInfo?: any;
|
|
2973
2977
|
};
|
|
2974
2978
|
type TransactionPayloadWithBase64MessageBytes = {
|
|
2975
2979
|
transactionActionType: TransactionActionType;
|
package/dist/index.d.ts
CHANGED
|
@@ -2965,11 +2965,15 @@ type AuthenticationContext = {
|
|
|
2965
2965
|
publicKey: string;
|
|
2966
2966
|
signature: string;
|
|
2967
2967
|
};
|
|
2968
|
+
authProviderSignature?: {
|
|
2969
|
+
publicKey: string;
|
|
2970
|
+
signature: string;
|
|
2971
|
+
};
|
|
2968
2972
|
};
|
|
2969
2973
|
type BaseResponse = {
|
|
2970
2974
|
signer: string;
|
|
2971
2975
|
userAddressTreeIndex?: number;
|
|
2972
|
-
additionalInfo?:
|
|
2976
|
+
additionalInfo?: any;
|
|
2973
2977
|
};
|
|
2974
2978
|
type TransactionPayloadWithBase64MessageBytes = {
|
|
2975
2979
|
transactionActionType: TransactionActionType;
|