@ic-pay/icpay-sdk 1.3.75 → 1.3.78
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.
|
@@ -175,12 +175,7 @@ export interface _SERVICE {
|
|
|
175
175
|
TransactionResult
|
|
176
176
|
>,
|
|
177
177
|
'get_canister_info' : ActorMethod<[], CanisterMetrics>,
|
|
178
|
-
'get_controller' : ActorMethod<[], Principal>,
|
|
179
178
|
'get_controllers' : ActorMethod<[], Array<Principal>>,
|
|
180
|
-
'get_ledger_transactions' : ActorMethod<
|
|
181
|
-
[string, [] | [number], [] | [number]],
|
|
182
|
-
TransactionResult
|
|
183
|
-
>,
|
|
184
179
|
'get_payout' : ActorMethod<[bigint], [] | [Payout]>,
|
|
185
180
|
'get_refund_by_original_tx_id' : ActorMethod<[bigint], [] | [Refund]>,
|
|
186
181
|
'get_transaction' : ActorMethod<[bigint], [] | [Transaction]>,
|
|
@@ -208,7 +203,6 @@ export interface _SERVICE {
|
|
|
208
203
|
'request_refund' : ActorMethod<[bigint], Result_3>,
|
|
209
204
|
'retry_payout' : ActorMethod<[bigint], Result_2>,
|
|
210
205
|
'set_platform_wallet' : ActorMethod<[string], Result>,
|
|
211
|
-
'test_compute_canister_icp_account_identifier_hex' : ActorMethod<[], string>,
|
|
212
206
|
'update_account' : ActorMethod<[bigint, Account], Result>,
|
|
213
207
|
'update_controllers' : ActorMethod<[], Result>,
|
|
214
208
|
}
|
|
@@ -176,13 +176,7 @@ export const idlFactory = ({ IDL }) => {
|
|
|
176
176
|
['query'],
|
|
177
177
|
),
|
|
178
178
|
'get_canister_info' : IDL.Func([], [CanisterMetrics], ['query']),
|
|
179
|
-
'get_controller' : IDL.Func([], [IDL.Principal], ['query']),
|
|
180
179
|
'get_controllers' : IDL.Func([], [IDL.Vec(IDL.Principal)], ['query']),
|
|
181
|
-
'get_ledger_transactions' : IDL.Func(
|
|
182
|
-
[IDL.Text, IDL.Opt(IDL.Nat32), IDL.Opt(IDL.Nat32)],
|
|
183
|
-
[TransactionResult],
|
|
184
|
-
['query'],
|
|
185
|
-
),
|
|
186
180
|
'get_payout' : IDL.Func([IDL.Nat], [IDL.Opt(Payout)], ['query']),
|
|
187
181
|
'get_refund_by_original_tx_id' : IDL.Func(
|
|
188
182
|
[IDL.Nat],
|
|
@@ -222,11 +216,6 @@ export const idlFactory = ({ IDL }) => {
|
|
|
222
216
|
'request_refund' : IDL.Func([IDL.Nat], [Result_3], []),
|
|
223
217
|
'retry_payout' : IDL.Func([IDL.Nat], [Result_2], []),
|
|
224
218
|
'set_platform_wallet' : IDL.Func([IDL.Text], [Result], []),
|
|
225
|
-
'test_compute_canister_icp_account_identifier_hex' : IDL.Func(
|
|
226
|
-
[],
|
|
227
|
-
[IDL.Text],
|
|
228
|
-
['query'],
|
|
229
|
-
),
|
|
230
219
|
'update_account' : IDL.Func([IDL.Nat64, Account], [Result], []),
|
|
231
220
|
'update_controllers' : IDL.Func([], [Result], []),
|
|
232
221
|
});
|