@imtbl/generated-clients 2.12.7 → 2.12.8-alpha.1
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.
|
@@ -88,22 +88,20 @@ export declare const GuardianApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
88
88
|
* Get an evm message by id
|
|
89
89
|
* @summary Info for a specific evm message
|
|
90
90
|
* @param {string} messageID The id of the evm message
|
|
91
|
-
* @param {boolean} [includeSimulation] Include simulation results
|
|
92
91
|
* @param {*} [options] Override http request option.
|
|
93
92
|
* @throws {RequiredError}
|
|
94
93
|
*/
|
|
95
|
-
getMessageByID: (messageID: string,
|
|
94
|
+
getMessageByID: (messageID: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
96
95
|
/**
|
|
97
96
|
* Get a transaction by payload hash
|
|
98
97
|
* @summary Info for a specific transaction
|
|
99
98
|
* @param {string} transactionID The id of the starkex transaction to retrieve
|
|
100
99
|
* @param {GetTransactionByIDChainTypeEnum} chainType roll up type
|
|
101
100
|
* @param {string} [chainID] ID of evm chain
|
|
102
|
-
* @param {boolean} [includeSimulation] Include simulation results
|
|
103
101
|
* @param {*} [options] Override http request option.
|
|
104
102
|
* @throws {RequiredError}
|
|
105
103
|
*/
|
|
106
|
-
getTransactionByID: (transactionID: string, chainType: GetTransactionByIDChainTypeEnum, chainID?: string,
|
|
104
|
+
getTransactionByID: (transactionID: string, chainType: GetTransactionByIDChainTypeEnum, chainID?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
107
105
|
};
|
|
108
106
|
/**
|
|
109
107
|
* GuardianApi - functional programming interface
|
|
@@ -172,22 +170,20 @@ export declare const GuardianApiFp: (configuration?: Configuration) => {
|
|
|
172
170
|
* Get an evm message by id
|
|
173
171
|
* @summary Info for a specific evm message
|
|
174
172
|
* @param {string} messageID The id of the evm message
|
|
175
|
-
* @param {boolean} [includeSimulation] Include simulation results
|
|
176
173
|
* @param {*} [options] Override http request option.
|
|
177
174
|
* @throws {RequiredError}
|
|
178
175
|
*/
|
|
179
|
-
getMessageByID(messageID: string,
|
|
176
|
+
getMessageByID(messageID: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EVMMessage>>;
|
|
180
177
|
/**
|
|
181
178
|
* Get a transaction by payload hash
|
|
182
179
|
* @summary Info for a specific transaction
|
|
183
180
|
* @param {string} transactionID The id of the starkex transaction to retrieve
|
|
184
181
|
* @param {GetTransactionByIDChainTypeEnum} chainType roll up type
|
|
185
182
|
* @param {string} [chainID] ID of evm chain
|
|
186
|
-
* @param {boolean} [includeSimulation] Include simulation results
|
|
187
183
|
* @param {*} [options] Override http request option.
|
|
188
184
|
* @throws {RequiredError}
|
|
189
185
|
*/
|
|
190
|
-
getTransactionByID(transactionID: string, chainType: GetTransactionByIDChainTypeEnum, chainID?: string,
|
|
186
|
+
getTransactionByID(transactionID: string, chainType: GetTransactionByIDChainTypeEnum, chainID?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Transaction>>;
|
|
191
187
|
};
|
|
192
188
|
/**
|
|
193
189
|
* GuardianApi - factory interface
|
|
@@ -382,12 +378,6 @@ export interface GuardianApiGetMessageByIDRequest {
|
|
|
382
378
|
* @memberof GuardianApiGetMessageByID
|
|
383
379
|
*/
|
|
384
380
|
readonly messageID: string;
|
|
385
|
-
/**
|
|
386
|
-
* Include simulation results
|
|
387
|
-
* @type {boolean}
|
|
388
|
-
* @memberof GuardianApiGetMessageByID
|
|
389
|
-
*/
|
|
390
|
-
readonly includeSimulation?: boolean;
|
|
391
381
|
}
|
|
392
382
|
/**
|
|
393
383
|
* Request parameters for getTransactionByID operation in GuardianApi.
|
|
@@ -413,12 +403,6 @@ export interface GuardianApiGetTransactionByIDRequest {
|
|
|
413
403
|
* @memberof GuardianApiGetTransactionByID
|
|
414
404
|
*/
|
|
415
405
|
readonly chainID?: string;
|
|
416
|
-
/**
|
|
417
|
-
* Include simulation results
|
|
418
|
-
* @type {boolean}
|
|
419
|
-
* @memberof GuardianApiGetTransactionByID
|
|
420
|
-
*/
|
|
421
|
-
readonly includeSimulation?: boolean;
|
|
422
406
|
}
|
|
423
407
|
/**
|
|
424
408
|
* GuardianApi - object-oriented interface
|
package/package.json
CHANGED