@imtbl/generated-clients 2.20.0 → 2.20.1-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.
@@ -204,7 +204,6 @@ export * from './sign-crafting-result';
204
204
  export * from './stack';
205
205
  export * from './stack-bundle';
206
206
  export * from './stack-quote-result';
207
- export * from './stark-ex-transaction-evaluation-request';
208
207
  export * from './token';
209
208
  export * from './token-contract-type';
210
209
  export * from './trade';
@@ -9,10 +9,9 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import { StarkExTransactionEvaluationRequest } from './stark-ex-transaction-evaluation-request';
13
12
  import { ZkEvmTransactionEvaluationRequest } from './zk-evm-transaction-evaluation-request';
14
13
  /**
15
14
  * @type TransactionEvaluationRequest
16
15
  * @export
17
16
  */
18
- export type TransactionEvaluationRequest = StarkExTransactionEvaluationRequest | ZkEvmTransactionEvaluationRequest;
17
+ export type TransactionEvaluationRequest = ZkEvmTransactionEvaluationRequest;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@imtbl/generated-clients",
3
3
  "description": "Generated Immutable API clients",
4
- "version": "2.20.0",
4
+ "version": "2.20.1-alpha.1",
5
5
  "author": "Immutable",
6
6
  "bugs": "https://github.com/immutable/ts-immutable-sdk/issues",
7
7
  "dependencies": {
@@ -1,34 +0,0 @@
1
- /**
2
- * Immutable zkEVM API
3
- * Immutable Multi Rollup API
4
- *
5
- * The version of the OpenAPI document: 1.0.0
6
- * Contact: support@immutable.com
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- /**
13
- *
14
- * @export
15
- * @interface StarkExTransactionEvaluationRequest
16
- */
17
- export interface StarkExTransactionEvaluationRequest {
18
- /**
19
- * The ID of the chain
20
- * @type {string}
21
- * @memberof StarkExTransactionEvaluationRequest
22
- */
23
- 'chainId'?: string;
24
- /**
25
- * The type of the chain
26
- * @type {string}
27
- * @memberof StarkExTransactionEvaluationRequest
28
- */
29
- 'chainType': StarkExTransactionEvaluationRequestChainTypeEnum;
30
- }
31
- export declare const StarkExTransactionEvaluationRequestChainTypeEnum: {
32
- readonly Starkex: "starkex";
33
- };
34
- export type StarkExTransactionEvaluationRequestChainTypeEnum = typeof StarkExTransactionEvaluationRequestChainTypeEnum[keyof typeof StarkExTransactionEvaluationRequestChainTypeEnum];