@openfort/openfort-js 0.0.2 → 0.1.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.
package/dist/api.d.ts CHANGED
@@ -9,10 +9,10 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import type { Configuration } from './configuration';
13
- import type { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
14
- import type { RequestArgs } from './base';
15
- import { BaseAPI } from './base';
12
+ import type { Configuration } from "./configuration";
13
+ import type { AxiosPromise, AxiosInstance, AxiosRequestConfig } from "axios";
14
+ import type { RequestArgs } from "./base";
15
+ import { BaseAPI } from "./base";
16
16
  /**
17
17
  *
18
18
  * @export
@@ -24,49 +24,49 @@ export interface AccountResponse {
24
24
  * @type {string}
25
25
  * @memberof AccountResponse
26
26
  */
27
- 'id': string;
27
+ id: string;
28
28
  /**
29
29
  *
30
30
  * @type {string}
31
31
  * @memberof AccountResponse
32
32
  */
33
- 'created_at': string;
33
+ created_at: string;
34
34
  /**
35
35
  *
36
36
  * @type {string}
37
37
  * @memberof AccountResponse
38
38
  */
39
- 'address': string;
39
+ address: string;
40
40
  /**
41
41
  *
42
42
  * @type {boolean}
43
43
  * @memberof AccountResponse
44
44
  */
45
- 'deployed': boolean;
45
+ deployed: boolean;
46
46
  /**
47
47
  *
48
48
  * @type {string}
49
49
  * @memberof AccountResponse
50
50
  */
51
- 'object': string;
51
+ object: string;
52
52
  /**
53
53
  *
54
54
  * @type {boolean}
55
55
  * @memberof AccountResponse
56
56
  */
57
- 'custodial': boolean;
57
+ custodial: boolean;
58
58
  /**
59
59
  *
60
60
  * @type {number}
61
61
  * @memberof AccountResponse
62
62
  */
63
- 'chain_id': number;
63
+ chain_id: number;
64
64
  /**
65
65
  *
66
66
  * @type {Array<TransactionIntentResponse>}
67
67
  * @memberof AccountResponse
68
68
  */
69
- 'transaction_intents': Array<TransactionIntentResponse>;
69
+ transaction_intents: Array<TransactionIntentResponse>;
70
70
  }
71
71
  /**
72
72
  *
@@ -79,19 +79,19 @@ export interface AccountsResponse {
79
79
  * @type {string}
80
80
  * @memberof AccountsResponse
81
81
  */
82
- 'object': string;
82
+ object: string;
83
83
  /**
84
84
  *
85
85
  * @type {string}
86
86
  * @memberof AccountsResponse
87
87
  */
88
- 'url': string;
88
+ url: string;
89
89
  /**
90
90
  *
91
91
  * @type {Array<AccountResponse>}
92
92
  * @memberof AccountsResponse
93
93
  */
94
- 'data': Array<AccountResponse>;
94
+ data: Array<AccountResponse>;
95
95
  }
96
96
  /**
97
97
  *
@@ -104,37 +104,37 @@ export interface AllowFunctionResponse {
104
104
  * @type {string}
105
105
  * @memberof AllowFunctionResponse
106
106
  */
107
- 'id': string;
107
+ id: string;
108
108
  /**
109
109
  *
110
110
  * @type {string}
111
111
  * @memberof AllowFunctionResponse
112
112
  */
113
- 'created_at': string;
113
+ created_at: string;
114
114
  /**
115
115
  *
116
116
  * @type {string}
117
117
  * @memberof AllowFunctionResponse
118
118
  */
119
- 'type': string;
119
+ type: string;
120
120
  /**
121
121
  *
122
122
  * @type {string}
123
123
  * @memberof AllowFunctionResponse
124
124
  */
125
- 'function_name'?: string;
125
+ function_name?: string;
126
126
  /**
127
127
  *
128
128
  * @type {ContractResponse}
129
129
  * @memberof AllowFunctionResponse
130
130
  */
131
- 'contract'?: ContractResponse;
131
+ contract?: ContractResponse;
132
132
  /**
133
133
  *
134
134
  * @type {string}
135
135
  * @memberof AllowFunctionResponse
136
136
  */
137
- 'object': string;
137
+ object: string;
138
138
  }
139
139
  /**
140
140
  *
@@ -147,19 +147,19 @@ export interface AllowFunctionsResponse {
147
147
  * @type {string}
148
148
  * @memberof AllowFunctionsResponse
149
149
  */
150
- 'object': string;
150
+ object: string;
151
151
  /**
152
152
  *
153
153
  * @type {string}
154
154
  * @memberof AllowFunctionsResponse
155
155
  */
156
- 'url': string;
156
+ url: string;
157
157
  /**
158
158
  *
159
159
  * @type {Array<AllowFunctionResponse>}
160
160
  * @memberof AllowFunctionsResponse
161
161
  */
162
- 'data': Array<AllowFunctionResponse>;
162
+ data: Array<AllowFunctionResponse>;
163
163
  }
164
164
  /**
165
165
  *
@@ -172,25 +172,25 @@ export interface ApiKeyResponse {
172
172
  * @type {string}
173
173
  * @memberof ApiKeyResponse
174
174
  */
175
- 'created_at': string;
175
+ created_at: string;
176
176
  /**
177
177
  *
178
178
  * @type {string}
179
179
  * @memberof ApiKeyResponse
180
180
  */
181
- 'token': string;
181
+ token: string;
182
182
  /**
183
183
  *
184
184
  * @type {string}
185
185
  * @memberof ApiKeyResponse
186
186
  */
187
- 'name': string;
187
+ name: string;
188
188
  /**
189
189
  *
190
190
  * @type {boolean}
191
191
  * @memberof ApiKeyResponse
192
192
  */
193
- 'livemode': boolean;
193
+ livemode: boolean;
194
194
  }
195
195
  /**
196
196
  *
@@ -203,25 +203,25 @@ export interface AssetInventory {
203
203
  * @type {AssetType}
204
204
  * @memberof AssetInventory
205
205
  */
206
- 'asset_type': AssetType;
206
+ asset_type: AssetType;
207
207
  /**
208
208
  *
209
209
  * @type {string}
210
210
  * @memberof AssetInventory
211
211
  */
212
- 'address'?: string;
212
+ address?: string;
213
213
  /**
214
214
  *
215
215
  * @type {number}
216
216
  * @memberof AssetInventory
217
217
  */
218
- 'token_id'?: number;
218
+ token_id?: number;
219
219
  /**
220
220
  * amount in Wei
221
221
  * @type {number}
222
222
  * @memberof AssetInventory
223
223
  */
224
- 'amount'?: number;
224
+ amount?: number;
225
225
  }
226
226
  /**
227
227
  *
@@ -234,7 +234,7 @@ export declare const AssetType: {
234
234
  readonly NUMBER_3: 3;
235
235
  readonly NUMBER_4: 4;
236
236
  };
237
- export type AssetType = typeof AssetType[keyof typeof AssetType];
237
+ export type AssetType = (typeof AssetType)[keyof typeof AssetType];
238
238
  /**
239
239
  *
240
240
  * @export
@@ -246,49 +246,49 @@ export interface ContractResponse {
246
246
  * @type {string}
247
247
  * @memberof ContractResponse
248
248
  */
249
- 'id': string;
249
+ id: string;
250
250
  /**
251
251
  *
252
252
  * @type {string}
253
253
  * @memberof ContractResponse
254
254
  */
255
- 'created_at': string;
255
+ created_at: string;
256
256
  /**
257
257
  *
258
258
  * @type {string}
259
259
  * @memberof ContractResponse
260
260
  */
261
- 'name': string | null;
261
+ name: string | null;
262
262
  /**
263
263
  *
264
264
  * @type {number}
265
265
  * @memberof ContractResponse
266
266
  */
267
- 'chain_id': number;
267
+ chain_id: number;
268
268
  /**
269
269
  *
270
270
  * @type {string}
271
271
  * @memberof ContractResponse
272
272
  */
273
- 'address': string;
273
+ address: string;
274
274
  /**
275
275
  *
276
276
  * @type {ContractResponseAbi}
277
277
  * @memberof ContractResponse
278
278
  */
279
- 'abi': ContractResponseAbi;
279
+ abi: ContractResponseAbi;
280
280
  /**
281
281
  *
282
282
  * @type {boolean}
283
283
  * @memberof ContractResponse
284
284
  */
285
- 'public_verification': boolean;
285
+ public_verification: boolean;
286
286
  /**
287
287
  *
288
288
  * @type {string}
289
289
  * @memberof ContractResponse
290
290
  */
291
- 'object': string;
291
+ object: string;
292
292
  }
293
293
  /**
294
294
  *
@@ -308,61 +308,61 @@ export interface ContractResponseAbiAnyOfInner {
308
308
  * @type {string}
309
309
  * @memberof ContractResponseAbiAnyOfInner
310
310
  */
311
- 'type': string;
311
+ type: string;
312
312
  /**
313
313
  *
314
314
  * @type {string}
315
315
  * @memberof ContractResponseAbiAnyOfInner
316
316
  */
317
- 'name': string;
317
+ name: string;
318
318
  /**
319
319
  *
320
320
  * @type {object}
321
321
  * @memberof ContractResponseAbiAnyOfInner
322
322
  */
323
- 'inputs': object;
323
+ inputs: object;
324
324
  /**
325
325
  *
326
326
  * @type {boolean}
327
327
  * @memberof ContractResponseAbiAnyOfInner
328
328
  */
329
- '_isFragment': boolean;
329
+ _isFragment: boolean;
330
330
  /**
331
331
  *
332
332
  * @type {boolean}
333
333
  * @memberof ContractResponseAbiAnyOfInner
334
334
  */
335
- 'anonymous'?: boolean;
335
+ anonymous?: boolean;
336
336
  /**
337
337
  *
338
338
  * @type {boolean}
339
339
  * @memberof ContractResponseAbiAnyOfInner
340
340
  */
341
- 'payable'?: boolean;
341
+ payable?: boolean;
342
342
  /**
343
343
  *
344
344
  * @type {boolean}
345
345
  * @memberof ContractResponseAbiAnyOfInner
346
346
  */
347
- 'constant'?: boolean;
347
+ constant?: boolean;
348
348
  /**
349
349
  *
350
350
  * @type {string}
351
351
  * @memberof ContractResponseAbiAnyOfInner
352
352
  */
353
- 'stateMutability'?: string;
353
+ stateMutability?: string;
354
354
  /**
355
355
  *
356
356
  * @type {object}
357
357
  * @memberof ContractResponseAbiAnyOfInner
358
358
  */
359
- 'outputs'?: object;
359
+ outputs?: object;
360
360
  /**
361
361
  *
362
362
  * @type {string}
363
363
  * @memberof ContractResponseAbiAnyOfInner
364
364
  */
365
- 'gas'?: string;
365
+ gas?: string;
366
366
  }
367
367
  /**
368
368
  *
@@ -375,19 +375,19 @@ export interface ContractsResponse {
375
375
  * @type {string}
376
376
  * @memberof ContractsResponse
377
377
  */
378
- 'object': string;
378
+ object: string;
379
379
  /**
380
380
  *
381
381
  * @type {string}
382
382
  * @memberof ContractsResponse
383
383
  */
384
- 'url': string;
384
+ url: string;
385
385
  /**
386
386
  *
387
387
  * @type {Array<ContractResponse>}
388
388
  * @memberof ContractsResponse
389
389
  */
390
- 'data': Array<ContractResponse>;
390
+ data: Array<ContractResponse>;
391
391
  }
392
392
  /**
393
393
  *
@@ -400,25 +400,25 @@ export interface Fragment {
400
400
  * @type {string}
401
401
  * @memberof Fragment
402
402
  */
403
- 'type': string;
403
+ type: string;
404
404
  /**
405
405
  *
406
406
  * @type {string}
407
407
  * @memberof Fragment
408
408
  */
409
- 'name': string;
409
+ name: string;
410
410
  /**
411
411
  *
412
412
  * @type {Array<ParamType>}
413
413
  * @memberof Fragment
414
414
  */
415
- 'inputs': Array<ParamType>;
415
+ inputs: Array<ParamType>;
416
416
  /**
417
417
  *
418
418
  * @type {boolean}
419
419
  * @memberof Fragment
420
420
  */
421
- '_isFragment': boolean;
421
+ _isFragment: boolean;
422
422
  }
423
423
  /**
424
424
  *
@@ -431,19 +431,19 @@ export interface Gas {
431
431
  * @type {string}
432
432
  * @memberof Gas
433
433
  */
434
- 'object': string;
434
+ object: string;
435
435
  /**
436
436
  *
437
437
  * @type {string}
438
438
  * @memberof Gas
439
439
  */
440
- 'url': string;
440
+ url: string;
441
441
  /**
442
442
  *
443
443
  * @type {{ [key: string]: number; }}
444
444
  * @memberof Gas
445
445
  */
446
- 'dailyGasUsage': {
446
+ dailyGasUsage: {
447
447
  [key: string]: number;
448
448
  };
449
449
  }
@@ -458,19 +458,19 @@ export interface GetProjectResponse {
458
458
  * @type {string}
459
459
  * @memberof GetProjectResponse
460
460
  */
461
- 'id': string | null;
461
+ id: string | null;
462
462
  /**
463
463
  *
464
464
  * @type {string}
465
465
  * @memberof GetProjectResponse
466
466
  */
467
- 'name'?: string;
467
+ name?: string;
468
468
  /**
469
469
  *
470
470
  * @type {string}
471
471
  * @memberof GetProjectResponse
472
472
  */
473
- 'logo_url'?: string | null;
473
+ logo_url?: string | null;
474
474
  }
475
475
  /**
476
476
  *
@@ -483,19 +483,19 @@ export interface Interaction {
483
483
  * @type {string}
484
484
  * @memberof Interaction
485
485
  */
486
- 'contract': string | null;
486
+ contract: string | null;
487
487
  /**
488
488
  *
489
489
  * @type {string}
490
490
  * @memberof Interaction
491
491
  */
492
- 'function_name': string;
492
+ function_name: string;
493
493
  /**
494
494
  *
495
495
  * @type {Array<any>}
496
496
  * @memberof Interaction
497
497
  */
498
- 'function_args': Array<any>;
498
+ function_args: Array<any>;
499
499
  }
500
500
  /**
501
501
  *
@@ -508,25 +508,25 @@ export interface InventoryResponse {
508
508
  * @type {string}
509
509
  * @memberof InventoryResponse
510
510
  */
511
- 'object': string;
511
+ object: string;
512
512
  /**
513
513
  *
514
514
  * @type {Array<AssetInventory>}
515
515
  * @memberof InventoryResponse
516
516
  */
517
- 'nft_assets'?: Array<AssetInventory>;
517
+ nft_assets?: Array<AssetInventory>;
518
518
  /**
519
519
  *
520
520
  * @type {AssetInventory}
521
521
  * @memberof InventoryResponse
522
522
  */
523
- 'native_asset'?: AssetInventory;
523
+ native_asset?: AssetInventory;
524
524
  /**
525
525
  *
526
526
  * @type {Array<AssetInventory>}
527
527
  * @memberof InventoryResponse
528
528
  */
529
- 'token_assets'?: Array<AssetInventory>;
529
+ token_assets?: Array<AssetInventory>;
530
530
  }
531
531
  /**
532
532
  *
@@ -539,55 +539,55 @@ export interface JsonFragment {
539
539
  * @type {string}
540
540
  * @memberof JsonFragment
541
541
  */
542
- 'name'?: string;
542
+ name?: string;
543
543
  /**
544
544
  *
545
545
  * @type {string}
546
546
  * @memberof JsonFragment
547
547
  */
548
- 'type'?: string;
548
+ type?: string;
549
549
  /**
550
550
  *
551
551
  * @type {boolean}
552
552
  * @memberof JsonFragment
553
553
  */
554
- 'anonymous'?: boolean;
554
+ anonymous?: boolean;
555
555
  /**
556
556
  *
557
557
  * @type {boolean}
558
558
  * @memberof JsonFragment
559
559
  */
560
- 'payable'?: boolean;
560
+ payable?: boolean;
561
561
  /**
562
562
  *
563
563
  * @type {boolean}
564
564
  * @memberof JsonFragment
565
565
  */
566
- 'constant'?: boolean;
566
+ constant?: boolean;
567
567
  /**
568
568
  *
569
569
  * @type {string}
570
570
  * @memberof JsonFragment
571
571
  */
572
- 'stateMutability'?: string;
572
+ stateMutability?: string;
573
573
  /**
574
574
  *
575
575
  * @type {object}
576
576
  * @memberof JsonFragment
577
577
  */
578
- 'inputs'?: object;
578
+ inputs?: object;
579
579
  /**
580
580
  *
581
581
  * @type {object}
582
582
  * @memberof JsonFragment
583
583
  */
584
- 'outputs'?: object;
584
+ outputs?: object;
585
585
  /**
586
586
  *
587
587
  * @type {string}
588
588
  * @memberof JsonFragment
589
589
  */
590
- 'gas'?: string;
590
+ gas?: string;
591
591
  }
592
592
  /**
593
593
  *
@@ -600,43 +600,43 @@ export interface Log {
600
600
  * @type {string}
601
601
  * @memberof Log
602
602
  */
603
- 'id': string;
603
+ id: string;
604
604
  /**
605
605
  *
606
606
  * @type {string}
607
607
  * @memberof Log
608
608
  */
609
- 'timestamp': string;
609
+ timestamp: string;
610
610
  /**
611
611
  *
612
612
  * @type {string}
613
613
  * @memberof Log
614
614
  */
615
- 'event': string;
615
+ event: string;
616
616
  /**
617
617
  *
618
618
  * @type {any}
619
619
  * @memberof Log
620
620
  */
621
- 'request_body': any;
621
+ request_body: any;
622
622
  /**
623
623
  *
624
624
  * @type {number}
625
625
  * @memberof Log
626
626
  */
627
- 'status': number;
627
+ status: number;
628
628
  /**
629
629
  *
630
630
  * @type {number}
631
631
  * @memberof Log
632
632
  */
633
- 'response_time': number;
633
+ response_time: number;
634
634
  /**
635
635
  *
636
636
  * @type {any}
637
637
  * @memberof Log
638
638
  */
639
- 'response_data': any;
639
+ response_data: any;
640
640
  }
641
641
  /**
642
642
  *
@@ -649,49 +649,49 @@ export interface ParamType {
649
649
  * @type {string}
650
650
  * @memberof ParamType
651
651
  */
652
- 'name': string;
652
+ name: string;
653
653
  /**
654
654
  *
655
655
  * @type {string}
656
656
  * @memberof ParamType
657
657
  */
658
- 'type': string;
658
+ type: string;
659
659
  /**
660
660
  *
661
661
  * @type {string}
662
662
  * @memberof ParamType
663
663
  */
664
- 'baseType': string;
664
+ baseType: string;
665
665
  /**
666
666
  *
667
667
  * @type {boolean}
668
668
  * @memberof ParamType
669
669
  */
670
- 'indexed': boolean;
670
+ indexed: boolean;
671
671
  /**
672
672
  *
673
673
  * @type {Array<ParamType>}
674
674
  * @memberof ParamType
675
675
  */
676
- 'components': Array<ParamType>;
676
+ components: Array<ParamType>;
677
677
  /**
678
678
  *
679
679
  * @type {number}
680
680
  * @memberof ParamType
681
681
  */
682
- 'arrayLength': number;
682
+ arrayLength: number;
683
683
  /**
684
684
  *
685
685
  * @type {ParamType}
686
686
  * @memberof ParamType
687
687
  */
688
- 'arrayChildren': ParamType;
688
+ arrayChildren: ParamType;
689
689
  /**
690
690
  *
691
691
  * @type {boolean}
692
692
  * @memberof ParamType
693
693
  */
694
- '_isParamType': boolean;
694
+ _isParamType: boolean;
695
695
  }
696
696
  /**
697
697
  *
@@ -704,61 +704,61 @@ export interface PlayerResponse {
704
704
  * @type {string}
705
705
  * @memberof PlayerResponse
706
706
  */
707
- 'id': string;
707
+ id: string;
708
708
  /**
709
709
  *
710
710
  * @type {string}
711
711
  * @memberof PlayerResponse
712
712
  */
713
- 'created_at': string;
713
+ created_at: string;
714
714
  /**
715
715
  *
716
716
  * @type {string}
717
717
  * @memberof PlayerResponse
718
718
  */
719
- 'name': string | null;
719
+ name: string | null;
720
720
  /**
721
721
  *
722
722
  * @type {boolean}
723
723
  * @memberof PlayerResponse
724
724
  */
725
- 'livemode': boolean;
725
+ livemode: boolean;
726
726
  /**
727
727
  *
728
728
  * @type {string}
729
729
  * @memberof PlayerResponse
730
730
  */
731
- 'email': string | null;
731
+ email: string | null;
732
732
  /**
733
733
  *
734
734
  * @type {string}
735
735
  * @memberof PlayerResponse
736
736
  */
737
- 'description': string | null;
737
+ description: string | null;
738
738
  /**
739
739
  *
740
740
  * @type {string}
741
741
  * @memberof PlayerResponse
742
742
  */
743
- 'metadata': string;
743
+ metadata: string;
744
744
  /**
745
745
  *
746
746
  * @type {Array<TransactionIntentResponse>}
747
747
  * @memberof PlayerResponse
748
748
  */
749
- 'transaction_intents'?: Array<TransactionIntentResponse>;
749
+ transaction_intents?: Array<TransactionIntentResponse>;
750
750
  /**
751
751
  *
752
752
  * @type {Array<AccountResponse>}
753
753
  * @memberof PlayerResponse
754
754
  */
755
- 'accounts': Array<AccountResponse>;
755
+ accounts: Array<AccountResponse>;
756
756
  /**
757
757
  *
758
758
  * @type {string}
759
759
  * @memberof PlayerResponse
760
760
  */
761
- 'object': string;
761
+ object: string;
762
762
  }
763
763
  /**
764
764
  *
@@ -771,19 +771,19 @@ export interface PlayersResponse {
771
771
  * @type {string}
772
772
  * @memberof PlayersResponse
773
773
  */
774
- 'object': string;
774
+ object: string;
775
775
  /**
776
776
  *
777
777
  * @type {string}
778
778
  * @memberof PlayersResponse
779
779
  */
780
- 'url': string;
780
+ url: string;
781
781
  /**
782
782
  *
783
783
  * @type {Array<PlayerResponse>}
784
784
  * @memberof PlayersResponse
785
785
  */
786
- 'data': Array<PlayerResponse>;
786
+ data: Array<PlayerResponse>;
787
787
  }
788
788
  /**
789
789
  *
@@ -796,19 +796,19 @@ export interface PoliciesResponse {
796
796
  * @type {string}
797
797
  * @memberof PoliciesResponse
798
798
  */
799
- 'object': string;
799
+ object: string;
800
800
  /**
801
801
  *
802
802
  * @type {string}
803
803
  * @memberof PoliciesResponse
804
804
  */
805
- 'url': string;
805
+ url: string;
806
806
  /**
807
807
  *
808
808
  * @type {Array<PolicyResponse>}
809
809
  * @memberof PoliciesResponse
810
810
  */
811
- 'data': Array<PolicyResponse>;
811
+ data: Array<PolicyResponse>;
812
812
  }
813
813
  /**
814
814
  *
@@ -821,49 +821,49 @@ export interface PolicyResponse {
821
821
  * @type {string}
822
822
  * @memberof PolicyResponse
823
823
  */
824
- 'id': string;
824
+ id: string;
825
825
  /**
826
826
  *
827
827
  * @type {string}
828
828
  * @memberof PolicyResponse
829
829
  */
830
- 'created_at': string;
830
+ created_at: string;
831
831
  /**
832
832
  *
833
833
  * @type {string}
834
834
  * @memberof PolicyResponse
835
835
  */
836
- 'name': string | null;
836
+ name: string | null;
837
837
  /**
838
838
  *
839
839
  * @type {number}
840
840
  * @memberof PolicyResponse
841
841
  */
842
- 'chain_id': number;
842
+ chain_id: number;
843
843
  /**
844
844
  *
845
845
  * @type {Strategy}
846
846
  * @memberof PolicyResponse
847
847
  */
848
- 'strategy': Strategy;
848
+ strategy: Strategy;
849
849
  /**
850
850
  *
851
851
  * @type {Array<any>}
852
852
  * @memberof PolicyResponse
853
853
  */
854
- 'transaction_intents': Array<any>;
854
+ transaction_intents: Array<any>;
855
855
  /**
856
856
  *
857
857
  * @type {Array<AllowFunctionResponse>}
858
858
  * @memberof PolicyResponse
859
859
  */
860
- 'allow_functions': Array<AllowFunctionResponse>;
860
+ allow_functions: Array<AllowFunctionResponse>;
861
861
  /**
862
862
  *
863
863
  * @type {string}
864
864
  * @memberof PolicyResponse
865
865
  */
866
- 'object': string;
866
+ object: string;
867
867
  }
868
868
  /**
869
869
  *
@@ -876,19 +876,19 @@ export interface ProjectLogs {
876
876
  * @type {string}
877
877
  * @memberof ProjectLogs
878
878
  */
879
- 'object': string;
879
+ object: string;
880
880
  /**
881
881
  *
882
882
  * @type {string}
883
883
  * @memberof ProjectLogs
884
884
  */
885
- 'url': string;
885
+ url: string;
886
886
  /**
887
887
  *
888
888
  * @type {Array<Log>}
889
889
  * @memberof ProjectLogs
890
890
  */
891
- 'data': Array<Log>;
891
+ data: Array<Log>;
892
892
  }
893
893
  /**
894
894
  *
@@ -901,43 +901,43 @@ export interface ProjectResponse {
901
901
  * @type {string}
902
902
  * @memberof ProjectResponse
903
903
  */
904
- 'id': string;
904
+ id: string;
905
905
  /**
906
906
  *
907
907
  * @type {string}
908
908
  * @memberof ProjectResponse
909
909
  */
910
- 'created_at': string;
910
+ created_at: string;
911
911
  /**
912
912
  *
913
913
  * @type {string}
914
914
  * @memberof ProjectResponse
915
915
  */
916
- 'name': string | null;
916
+ name: string | null;
917
917
  /**
918
918
  *
919
919
  * @type {boolean}
920
920
  * @memberof ProjectResponse
921
921
  */
922
- 'livemode': boolean;
922
+ livemode: boolean;
923
923
  /**
924
924
  *
925
925
  * @type {string}
926
926
  * @memberof ProjectResponse
927
927
  */
928
- 'logo_url'?: string | null;
928
+ logo_url?: string | null;
929
929
  /**
930
930
  *
931
931
  * @type {Array<ApiKeyResponse>}
932
932
  * @memberof ProjectResponse
933
933
  */
934
- 'apikeys': Array<ApiKeyResponse>;
934
+ apikeys: Array<ApiKeyResponse>;
935
935
  /**
936
936
  *
937
937
  * @type {string}
938
938
  * @memberof ProjectResponse
939
939
  */
940
- 'object': string;
940
+ object: string;
941
941
  }
942
942
  /**
943
943
  *
@@ -950,19 +950,19 @@ export interface ProjectsResponse {
950
950
  * @type {string}
951
951
  * @memberof ProjectsResponse
952
952
  */
953
- 'object': string;
953
+ object: string;
954
954
  /**
955
955
  *
956
956
  * @type {string}
957
957
  * @memberof ProjectsResponse
958
958
  */
959
- 'url': string;
959
+ url: string;
960
960
  /**
961
961
  *
962
962
  * @type {Array<ProjectResponse>}
963
963
  * @memberof ProjectsResponse
964
964
  */
965
- 'data': Array<ProjectResponse>;
965
+ data: Array<ProjectResponse>;
966
966
  }
967
967
  /**
968
968
  *
@@ -975,49 +975,49 @@ export interface ResponseResponse {
975
975
  * @type {string}
976
976
  * @memberof ResponseResponse
977
977
  */
978
- 'created_at': string;
978
+ created_at: string;
979
979
  /**
980
980
  *
981
981
  * @type {number}
982
982
  * @memberof ResponseResponse
983
983
  */
984
- 'block_number': number | null;
984
+ block_number: number | null;
985
985
  /**
986
986
  *
987
987
  * @type {string}
988
988
  * @memberof ResponseResponse
989
989
  */
990
- 'transaction_hash': string | null;
990
+ transaction_hash: string | null;
991
991
  /**
992
992
  *
993
993
  * @type {number}
994
994
  * @memberof ResponseResponse
995
995
  */
996
- 'gas_used': number;
996
+ gas_used: number;
997
997
  /**
998
998
  *
999
999
  * @type {number}
1000
1000
  * @memberof ResponseResponse
1001
1001
  */
1002
- 'status': number;
1002
+ status: number;
1003
1003
  /**
1004
1004
  *
1005
1005
  * @type {Array<string>}
1006
1006
  * @memberof ResponseResponse
1007
1007
  */
1008
- 'logs': Array<string>;
1008
+ logs: Array<string>;
1009
1009
  /**
1010
1010
  *
1011
1011
  * @type {string}
1012
1012
  * @memberof ResponseResponse
1013
1013
  */
1014
- 'to': string;
1014
+ to: string;
1015
1015
  /**
1016
1016
  *
1017
1017
  * @type {string}
1018
1018
  * @memberof ResponseResponse
1019
1019
  */
1020
- 'error': string;
1020
+ error: string;
1021
1021
  }
1022
1022
  /**
1023
1023
  *
@@ -1030,49 +1030,49 @@ export interface SessionResponse {
1030
1030
  * @type {string}
1031
1031
  * @memberof SessionResponse
1032
1032
  */
1033
- 'id': string;
1033
+ id: string;
1034
1034
  /**
1035
1035
  *
1036
1036
  * @type {string}
1037
1037
  * @memberof SessionResponse
1038
1038
  */
1039
- 'created_at': string;
1039
+ created_at: string;
1040
1040
  /**
1041
1041
  *
1042
1042
  * @type {string}
1043
1043
  * @memberof SessionResponse
1044
1044
  */
1045
- 'object': string;
1045
+ object: string;
1046
1046
  /**
1047
1047
  *
1048
1048
  * @type {string}
1049
1049
  * @memberof SessionResponse
1050
1050
  */
1051
- 'valid_after'?: string;
1051
+ valid_after?: string;
1052
1052
  /**
1053
1053
  *
1054
1054
  * @type {string}
1055
1055
  * @memberof SessionResponse
1056
1056
  */
1057
- 'valid_until'?: string;
1057
+ valid_until?: string;
1058
1058
  /**
1059
1059
  *
1060
1060
  * @type {Array<string>}
1061
1061
  * @memberof SessionResponse
1062
1062
  */
1063
- 'whitelist'?: Array<string>;
1063
+ whitelist?: Array<string>;
1064
1064
  /**
1065
1065
  *
1066
1066
  * @type {number}
1067
1067
  * @memberof SessionResponse
1068
1068
  */
1069
- 'limit'?: number;
1069
+ limit?: number;
1070
1070
  /**
1071
1071
  *
1072
1072
  * @type {object}
1073
1073
  * @memberof SessionResponse
1074
1074
  */
1075
- 'next_action': object | null;
1075
+ next_action: object | null;
1076
1076
  }
1077
1077
  /**
1078
1078
  *
@@ -1085,19 +1085,19 @@ export interface Strategy {
1085
1085
  * @type {string}
1086
1086
  * @memberof Strategy
1087
1087
  */
1088
- 'sponsor_schema': string;
1088
+ sponsor_schema: string;
1089
1089
  /**
1090
1090
  *
1091
1091
  * @type {string}
1092
1092
  * @memberof Strategy
1093
1093
  */
1094
- 'token_contract': string;
1094
+ token_contract: string;
1095
1095
  /**
1096
1096
  *
1097
1097
  * @type {string}
1098
1098
  * @memberof Strategy
1099
1099
  */
1100
- 'token_contract_amount': string;
1100
+ token_contract_amount: string;
1101
1101
  }
1102
1102
  /**
1103
1103
  *
@@ -1110,19 +1110,19 @@ export interface SumGas {
1110
1110
  * @type {string}
1111
1111
  * @memberof SumGas
1112
1112
  */
1113
- 'object': string;
1113
+ object: string;
1114
1114
  /**
1115
1115
  *
1116
1116
  * @type {string}
1117
1117
  * @memberof SumGas
1118
1118
  */
1119
- 'url': string;
1119
+ url: string;
1120
1120
  /**
1121
1121
  *
1122
1122
  * @type {number}
1123
1123
  * @memberof SumGas
1124
1124
  */
1125
- 'sumGas': number;
1125
+ sumGas: number;
1126
1126
  }
1127
1127
  /**
1128
1128
  *
@@ -1135,79 +1135,79 @@ export interface TransactionIntentResponse {
1135
1135
  * @type {string}
1136
1136
  * @memberof TransactionIntentResponse
1137
1137
  */
1138
- 'id': string;
1138
+ id: string;
1139
1139
  /**
1140
1140
  *
1141
1141
  * @type {string}
1142
1142
  * @memberof TransactionIntentResponse
1143
1143
  */
1144
- 'created_at': string;
1144
+ created_at: string;
1145
1145
  /**
1146
1146
  *
1147
1147
  * @type {string}
1148
1148
  * @memberof TransactionIntentResponse
1149
1149
  */
1150
- 'updated_at': string;
1150
+ updated_at: string;
1151
1151
  /**
1152
1152
  *
1153
1153
  * @type {number}
1154
1154
  * @memberof TransactionIntentResponse
1155
1155
  */
1156
- 'chain_id': number;
1156
+ chain_id: number;
1157
1157
  /**
1158
1158
  *
1159
1159
  * @type {string}
1160
1160
  * @memberof TransactionIntentResponse
1161
1161
  */
1162
- 'user_operation_hash': string | null;
1162
+ user_operation_hash: string | null;
1163
1163
  /**
1164
1164
  *
1165
1165
  * @type {UserOpResult}
1166
1166
  * @memberof TransactionIntentResponse
1167
1167
  */
1168
- 'user_operation'?: UserOpResult;
1168
+ user_operation?: UserOpResult;
1169
1169
  /**
1170
1170
  *
1171
1171
  * @type {string}
1172
1172
  * @memberof TransactionIntentResponse
1173
1173
  */
1174
- 'policy': string | null;
1174
+ policy: string | null;
1175
1175
  /**
1176
1176
  *
1177
1177
  * @type {string}
1178
1178
  * @memberof TransactionIntentResponse
1179
1179
  */
1180
- 'player': string;
1180
+ player: string;
1181
1181
  /**
1182
1182
  *
1183
1183
  * @type {object}
1184
1184
  * @memberof TransactionIntentResponse
1185
1185
  */
1186
- 'next_action': object | null;
1186
+ next_action: object | null;
1187
1187
  /**
1188
1188
  *
1189
1189
  * @type {string}
1190
1190
  * @memberof TransactionIntentResponse
1191
1191
  */
1192
- 'account'?: string;
1192
+ account?: string;
1193
1193
  /**
1194
1194
  *
1195
1195
  * @type {Array<Interaction>}
1196
1196
  * @memberof TransactionIntentResponse
1197
1197
  */
1198
- 'transactions': Array<Interaction>;
1198
+ transactions: Array<Interaction>;
1199
1199
  /**
1200
1200
  *
1201
1201
  * @type {ResponseResponse}
1202
1202
  * @memberof TransactionIntentResponse
1203
1203
  */
1204
- 'response': ResponseResponse | null;
1204
+ response: ResponseResponse | null;
1205
1205
  /**
1206
1206
  *
1207
1207
  * @type {string}
1208
1208
  * @memberof TransactionIntentResponse
1209
1209
  */
1210
- 'object': string;
1210
+ object: string;
1211
1211
  }
1212
1212
  /**
1213
1213
  *
@@ -1220,19 +1220,19 @@ export interface TransactionIntentsResponse {
1220
1220
  * @type {string}
1221
1221
  * @memberof TransactionIntentsResponse
1222
1222
  */
1223
- 'object': string;
1223
+ object: string;
1224
1224
  /**
1225
1225
  *
1226
1226
  * @type {string}
1227
1227
  * @memberof TransactionIntentsResponse
1228
1228
  */
1229
- 'url': string;
1229
+ url: string;
1230
1230
  /**
1231
1231
  *
1232
1232
  * @type {Array<TransactionIntentResponse>}
1233
1233
  * @memberof TransactionIntentsResponse
1234
1234
  */
1235
- 'data': Array<TransactionIntentResponse>;
1235
+ data: Array<TransactionIntentResponse>;
1236
1236
  }
1237
1237
  /**
1238
1238
  *
@@ -1245,13 +1245,13 @@ export interface UserOpResult {
1245
1245
  * @type {string}
1246
1246
  * @memberof UserOpResult
1247
1247
  */
1248
- 'transactionHash': string;
1248
+ transactionHash: string;
1249
1249
  /**
1250
1250
  *
1251
1251
  * @type {boolean}
1252
1252
  * @memberof UserOpResult
1253
1253
  */
1254
- 'success': boolean;
1254
+ success: boolean;
1255
1255
  }
1256
1256
  /**
1257
1257
  * ContractsApi - axios parameter creator