carbon-js-sdk 0.11.59-beta.2 → 0.11.59
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.
|
@@ -45,34 +45,34 @@ export interface UserVaultWithdrawalRecord {
|
|
|
45
45
|
}
|
|
46
46
|
export declare const UserVault: {
|
|
47
47
|
encode(message: UserVault, writer?: _m0.Writer): _m0.Writer;
|
|
48
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): UserVault;
|
|
48
|
+
decode(input: _m0.Reader | Uint8Array, length?: number | undefined): UserVault;
|
|
49
49
|
fromJSON(object: any): UserVault;
|
|
50
50
|
toJSON(message: UserVault): unknown;
|
|
51
51
|
fromPartial(object: DeepPartial<UserVault>): UserVault;
|
|
52
52
|
};
|
|
53
53
|
export declare const UpdateUserVaultParams: {
|
|
54
54
|
encode(message: UpdateUserVaultParams, writer?: _m0.Writer): _m0.Writer;
|
|
55
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): UpdateUserVaultParams;
|
|
55
|
+
decode(input: _m0.Reader | Uint8Array, length?: number | undefined): UpdateUserVaultParams;
|
|
56
56
|
fromJSON(object: any): UpdateUserVaultParams;
|
|
57
57
|
toJSON(message: UpdateUserVaultParams): unknown;
|
|
58
58
|
fromPartial(object: DeepPartial<UpdateUserVaultParams>): UpdateUserVaultParams;
|
|
59
59
|
};
|
|
60
60
|
export declare const AddressToUserVaultsMapping: {
|
|
61
61
|
encode(message: AddressToUserVaultsMapping, writer?: _m0.Writer): _m0.Writer;
|
|
62
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AddressToUserVaultsMapping;
|
|
62
|
+
decode(input: _m0.Reader | Uint8Array, length?: number | undefined): AddressToUserVaultsMapping;
|
|
63
63
|
fromJSON(object: any): AddressToUserVaultsMapping;
|
|
64
64
|
toJSON(message: AddressToUserVaultsMapping): unknown;
|
|
65
65
|
fromPartial(object: DeepPartial<AddressToUserVaultsMapping>): AddressToUserVaultsMapping;
|
|
66
66
|
};
|
|
67
67
|
export declare const UserVaultWithdrawalRecord: {
|
|
68
68
|
encode(message: UserVaultWithdrawalRecord, writer?: _m0.Writer): _m0.Writer;
|
|
69
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): UserVaultWithdrawalRecord;
|
|
69
|
+
decode(input: _m0.Reader | Uint8Array, length?: number | undefined): UserVaultWithdrawalRecord;
|
|
70
70
|
fromJSON(object: any): UserVaultWithdrawalRecord;
|
|
71
71
|
toJSON(message: UserVaultWithdrawalRecord): unknown;
|
|
72
72
|
fromPartial(object: DeepPartial<UserVaultWithdrawalRecord>): UserVaultWithdrawalRecord;
|
|
73
73
|
};
|
|
74
|
-
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
75
|
-
export type DeepPartial<T> = T extends Builtin ? T : T extends Long ? string | number | Long : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
74
|
+
declare type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
75
|
+
export declare type DeepPartial<T> = T extends Builtin ? T : T extends Long ? string | number | Long : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
76
76
|
[K in keyof T]?: DeepPartial<T[K]>;
|
|
77
77
|
} : Partial<T>;
|
|
78
78
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type OmitCreator<T> = Omit<T, 'creator'>;
|
|
1
|
+
export declare type OmitCreator<T> = Omit<T, 'creator'>;
|