@openfort/openfort-js 0.2.0 → 0.2.2

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.
@@ -19,12 +19,6 @@ import { BaseAPI } from './base';
19
19
  * @interface AccountPlayerRequest
20
20
  */
21
21
  export interface AccountPlayerRequest {
22
- /**
23
- * The project ID
24
- * @type {string}
25
- * @memberof AccountPlayerRequest
26
- */
27
- 'project'?: string;
28
22
  /**
29
23
  * The chain_id
30
24
  * @type {number}
@@ -44,12 +38,6 @@ export interface AccountPlayerRequest {
44
38
  * @interface AccountRequest
45
39
  */
46
40
  export interface AccountRequest {
47
- /**
48
- * The project ID
49
- * @type {string}
50
- * @memberof AccountRequest
51
- */
52
- 'project'?: string;
53
41
  /**
54
42
  * The chain_id
55
43
  * @type {number}
@@ -206,10 +194,10 @@ export interface AssetInventory {
206
194
  'token_id'?: number;
207
195
  /**
208
196
  * amount in Wei
209
- * @type {number}
197
+ * @type {string}
210
198
  * @memberof AssetInventory
211
199
  */
212
- 'amount'?: number;
200
+ 'amount'?: string;
213
201
  }
214
202
  /**
215
203
  *
@@ -271,7 +259,7 @@ export interface ContractRequest {
271
259
  * @type {string}
272
260
  * @memberof ContractRequest
273
261
  */
274
- 'address'?: string;
262
+ 'address': string;
275
263
  /**
276
264
  *
277
265
  * @type {PrismaJsonValue}
@@ -284,12 +272,6 @@ export interface ContractRequest {
284
272
  * @memberof ContractRequest
285
273
  */
286
274
  'public_verification'?: boolean;
287
- /**
288
- *
289
- * @type {string}
290
- * @memberof ContractRequest
291
- */
292
- 'project'?: string;
293
275
  }
294
276
  /**
295
277
  *
@@ -371,6 +353,25 @@ export interface ContractsResponse {
371
353
  */
372
354
  'data': Array<ContractResponse>;
373
355
  }
356
+ /**
357
+ *
358
+ * @export
359
+ * @interface CreatePlayerRequest
360
+ */
361
+ export interface CreatePlayerRequest {
362
+ /**
363
+ *
364
+ * @type {string}
365
+ * @memberof CreatePlayerRequest
366
+ */
367
+ 'name': string;
368
+ /**
369
+ *
370
+ * @type {string}
371
+ * @memberof CreatePlayerRequest
372
+ */
373
+ 'description'?: string;
374
+ }
374
375
  /**
375
376
  *
376
377
  * @export
@@ -389,6 +390,12 @@ export interface CreateSessionPlayerRequest {
389
390
  * @memberof CreateSessionPlayerRequest
390
391
  */
391
392
  'policy'?: string;
393
+ /**
394
+ *
395
+ * @type {boolean}
396
+ * @memberof CreateSessionPlayerRequest
397
+ */
398
+ 'optimistic'?: boolean;
392
399
  /**
393
400
  *
394
401
  * @type {string}
@@ -444,6 +451,12 @@ export interface CreateSessionRequest {
444
451
  * @memberof CreateSessionRequest
445
452
  */
446
453
  'policy'?: string;
454
+ /**
455
+ *
456
+ * @type {boolean}
457
+ * @memberof CreateSessionRequest
458
+ */
459
+ 'optimistic'?: boolean;
447
460
  /**
448
461
  *
449
462
  * @type {string}
@@ -517,50 +530,62 @@ export interface Gas {
517
530
  /**
518
531
  *
519
532
  * @export
520
- * @interface GetProjectResponse
533
+ * @interface Interaction
521
534
  */
522
- export interface GetProjectResponse {
535
+ export interface Interaction {
523
536
  /**
524
537
  *
525
538
  * @type {string}
526
- * @memberof GetProjectResponse
539
+ * @memberof Interaction
527
540
  */
528
- 'id': string | null;
541
+ 'contract': string | null;
529
542
  /**
530
543
  *
531
544
  * @type {string}
532
- * @memberof GetProjectResponse
545
+ * @memberof Interaction
533
546
  */
534
- 'name'?: string;
547
+ 'value'?: string | null;
535
548
  /**
536
549
  *
537
550
  * @type {string}
538
- * @memberof GetProjectResponse
551
+ * @memberof Interaction
539
552
  */
540
- 'logo_url'?: string | null;
553
+ 'function_name': string;
554
+ /**
555
+ *
556
+ * @type {Array<any>}
557
+ * @memberof Interaction
558
+ */
559
+ 'function_args': Array<any>;
541
560
  }
542
561
  /**
543
562
  *
544
563
  * @export
545
- * @interface Interaction
564
+ * @interface InteractionResponse
546
565
  */
547
- export interface Interaction {
566
+ export interface InteractionResponse {
548
567
  /**
549
568
  *
550
569
  * @type {string}
551
- * @memberof Interaction
570
+ * @memberof InteractionResponse
552
571
  */
553
572
  'contract': string | null;
554
573
  /**
555
574
  *
556
575
  * @type {string}
557
- * @memberof Interaction
576
+ * @memberof InteractionResponse
577
+ */
578
+ 'value'?: string | null;
579
+ /**
580
+ *
581
+ * @type {string}
582
+ * @memberof InteractionResponse
558
583
  */
559
584
  'function_name': string;
560
585
  /**
561
586
  *
562
587
  * @type {Array<any>}
563
- * @memberof Interaction
588
+ * @memberof InteractionResponse
564
589
  */
565
590
  'function_args': Array<any>;
566
591
  }
@@ -595,6 +620,13 @@ export interface InventoryResponse {
595
620
  */
596
621
  'token_assets'?: Array<AssetInventory>;
597
622
  }
623
+ /**
624
+ * From https://github.com/sindresorhus/type-fest/ Matches any valid JSON value.
625
+ * @export
626
+ * @interface JsonValue
627
+ */
628
+ export interface JsonValue {
629
+ }
598
630
  /**
599
631
  *
600
632
  * @export
@@ -644,6 +676,17 @@ export interface Log {
644
676
  */
645
677
  'response_data': any;
646
678
  }
679
+ /**
680
+ * Enums
681
+ * @export
682
+ * @enum {string}
683
+ */
684
+ export declare const PKLocation: {
685
+ readonly Db: "DB";
686
+ readonly GcpKms: "GCP_KMS";
687
+ readonly User: "USER";
688
+ };
689
+ export type PKLocation = typeof PKLocation[keyof typeof PKLocation];
647
690
  /**
648
691
  *
649
692
  * @export
@@ -672,12 +715,6 @@ export interface PlayerRequest {
672
715
  * @memberof PlayerRequest
673
716
  */
674
717
  'description'?: string;
675
- /**
676
- *
677
- * @type {string}
678
- * @memberof PlayerRequest
679
- */
680
- 'project'?: string;
681
718
  }
682
719
  /**
683
720
  *
@@ -709,12 +746,6 @@ export interface PlayerResponse {
709
746
  * @memberof PlayerResponse
710
747
  */
711
748
  'name': string | null;
712
- /**
713
- *
714
- * @type {boolean}
715
- * @memberof PlayerResponse
716
- */
717
- 'livemode': boolean;
718
749
  /**
719
750
  *
720
751
  * @type {string}
@@ -759,12 +790,6 @@ export interface PlayerResponseAccounts {
759
790
  * @interface PlayerTransferOwnershipRequest
760
791
  */
761
792
  export interface PlayerTransferOwnershipRequest {
762
- /**
763
- * The project ID
764
- * @type {string}
765
- * @memberof PlayerTransferOwnershipRequest
766
- */
767
- 'project'?: string;
768
793
  /**
769
794
  * The policy ID
770
795
  * @type {string}
@@ -858,12 +883,6 @@ export interface PolicyAllowFunctionRequest {
858
883
  * @memberof PolicyAllowFunctionRequest
859
884
  */
860
885
  'function_name': string | null;
861
- /**
862
- *
863
- * @type {string}
864
- * @memberof PolicyAllowFunctionRequest
865
- */
866
- 'project'?: string;
867
886
  /**
868
887
  *
869
888
  * @type {string}
@@ -920,12 +939,6 @@ export interface PolicyRequest {
920
939
  * @memberof PolicyRequest
921
940
  */
922
941
  'strategy'?: Strategy;
923
- /**
924
- *
925
- * @type {string}
926
- * @memberof PolicyRequest
927
- */
928
- 'project'?: string;
929
942
  }
930
943
  /**
931
944
  *
@@ -1045,12 +1058,6 @@ export interface PolicyRuleRequest {
1045
1058
  * @memberof PolicyRuleRequest
1046
1059
  */
1047
1060
  'policy': string;
1048
- /**
1049
- *
1050
- * @type {string}
1051
- * @memberof PolicyRuleRequest
1052
- */
1053
- 'project'?: string;
1054
1061
  /**
1055
1062
  *
1056
1063
  * @type {string}
@@ -1180,12 +1187,6 @@ export interface PolicyRuleUpdateRequest {
1180
1187
  * @memberof PolicyRuleUpdateRequest
1181
1188
  */
1182
1189
  'policy'?: string;
1183
- /**
1184
- *
1185
- * @type {string}
1186
- * @memberof PolicyRuleUpdateRequest
1187
- */
1188
- 'project'?: string;
1189
1190
  /**
1190
1191
  *
1191
1192
  * @type {string}
@@ -1252,12 +1253,6 @@ export interface PolicyUpdateRequest {
1252
1253
  * @memberof PolicyUpdateRequest
1253
1254
  */
1254
1255
  'strategy'?: Strategy;
1255
- /**
1256
- *
1257
- * @type {string}
1258
- * @memberof PolicyUpdateRequest
1259
- */
1260
- 'project'?: string;
1261
1256
  }
1262
1257
  /**
1263
1258
  * From https://github.com/sindresorhus/type-fest/ Matches any valid JSON value.
@@ -1305,28 +1300,16 @@ export interface ProjectRequest {
1305
1300
  'name': string;
1306
1301
  /**
1307
1302
  *
1308
- * @type {boolean}
1309
- * @memberof ProjectRequest
1310
- */
1311
- 'livemode'?: boolean;
1312
- /**
1313
- *
1314
- * @type {string}
1315
- * @memberof ProjectRequest
1316
- */
1317
- 'project'?: string;
1318
- /**
1319
- *
1320
- * @type {string}
1303
+ * @type {PKPolicy}
1321
1304
  * @memberof ProjectRequest
1322
1305
  */
1323
- 'pk_policy'?: string;
1306
+ 'pk_policy'?: PKPolicy;
1324
1307
  /**
1325
1308
  *
1326
- * @type {string}
1309
+ * @type {PKLocation}
1327
1310
  * @memberof ProjectRequest
1328
1311
  */
1329
- 'pk_location'?: string;
1312
+ 'pk_location'?: PKLocation;
1330
1313
  }
1331
1314
  /**
1332
1315
  *
@@ -1363,7 +1346,7 @@ export interface ProjectResponse {
1363
1346
  * @type {string}
1364
1347
  * @memberof ProjectResponse
1365
1348
  */
1366
- 'name': string | null;
1349
+ 'name': string;
1367
1350
  /**
1368
1351
  *
1369
1352
  * @type {PKPolicy}
@@ -1372,29 +1355,10 @@ export interface ProjectResponse {
1372
1355
  'pk_policy': PKPolicy;
1373
1356
  /**
1374
1357
  *
1375
- * @type {boolean}
1376
- * @memberof ProjectResponse
1377
- */
1378
- 'livemode': boolean;
1379
- /**
1380
- *
1381
- * @type {string}
1382
- * @memberof ProjectResponse
1383
- */
1384
- 'logo_url'?: string | null;
1385
- /**
1386
- *
1387
- * @type {ProjectResponseApikeys}
1358
+ * @type {Array<ApiKeyResponse>}
1388
1359
  * @memberof ProjectResponse
1389
1360
  */
1390
- 'apikeys': ProjectResponseApikeys | null;
1391
- }
1392
- /**
1393
- *
1394
- * @export
1395
- * @interface ProjectResponseApikeys
1396
- */
1397
- export interface ProjectResponseApikeys {
1361
+ 'apikeys'?: Array<ApiKeyResponse>;
1398
1362
  }
1399
1363
  /**
1400
1364
  *
@@ -1459,10 +1423,10 @@ export interface ResponseResponse {
1459
1423
  'status'?: number | null;
1460
1424
  /**
1461
1425
  *
1462
- * @type {PrismaJsonValue}
1426
+ * @type {JsonValue}
1463
1427
  * @memberof ResponseResponse
1464
1428
  */
1465
- 'logs'?: PrismaJsonValue | null;
1429
+ 'logs'?: JsonValue | null;
1466
1430
  /**
1467
1431
  *
1468
1432
  * @type {string}
@@ -1471,10 +1435,10 @@ export interface ResponseResponse {
1471
1435
  'to'?: string | null;
1472
1436
  /**
1473
1437
  *
1474
- * @type {PrismaJsonValue}
1438
+ * @type {JsonValue}
1475
1439
  * @memberof ResponseResponse
1476
1440
  */
1477
- 'error'?: PrismaJsonValue | null;
1441
+ 'error'?: JsonValue | null;
1478
1442
  }
1479
1443
  /**
1480
1444
  *
@@ -1494,6 +1458,12 @@ export interface RevokeSessionPlayerRequest {
1494
1458
  * @memberof RevokeSessionPlayerRequest
1495
1459
  */
1496
1460
  'policy'?: string;
1461
+ /**
1462
+ *
1463
+ * @type {boolean}
1464
+ * @memberof RevokeSessionPlayerRequest
1465
+ */
1466
+ 'optimistic'?: boolean;
1497
1467
  /**
1498
1468
  *
1499
1469
  * @type {number}
@@ -1519,6 +1489,12 @@ export interface RevokeSessionRequest {
1519
1489
  * @memberof RevokeSessionRequest
1520
1490
  */
1521
1491
  'chain_id': number;
1492
+ /**
1493
+ *
1494
+ * @type {boolean}
1495
+ * @memberof RevokeSessionRequest
1496
+ */
1497
+ 'optimistic'?: boolean;
1522
1498
  /**
1523
1499
  *
1524
1500
  * @type {string}
@@ -1643,6 +1619,56 @@ export interface SessionsResponse {
1643
1619
  */
1644
1620
  'data': Array<SessionResponse>;
1645
1621
  }
1622
+ /**
1623
+ *
1624
+ * @export
1625
+ * @interface SignPayloadRequest
1626
+ */
1627
+ export interface SignPayloadRequest {
1628
+ /**
1629
+ * Payload to sign
1630
+ * @type {string}
1631
+ * @memberof SignPayloadRequest
1632
+ */
1633
+ 'payload': string;
1634
+ }
1635
+ /**
1636
+ *
1637
+ * @export
1638
+ * @interface SignPayloadResponse
1639
+ */
1640
+ export interface SignPayloadResponse {
1641
+ /**
1642
+ *
1643
+ * @type {string}
1644
+ * @memberof SignPayloadResponse
1645
+ */
1646
+ 'object': string;
1647
+ /**
1648
+ *
1649
+ * @type {string}
1650
+ * @memberof SignPayloadResponse
1651
+ */
1652
+ 'account': string;
1653
+ /**
1654
+ *
1655
+ * @type {string}
1656
+ * @memberof SignPayloadResponse
1657
+ */
1658
+ 'address': string;
1659
+ /**
1660
+ *
1661
+ * @type {string}
1662
+ * @memberof SignPayloadResponse
1663
+ */
1664
+ 'payload': string;
1665
+ /**
1666
+ *
1667
+ * @type {string}
1668
+ * @memberof SignPayloadResponse
1669
+ */
1670
+ 'signature': string;
1671
+ }
1646
1672
  /**
1647
1673
  *
1648
1674
  * @export
@@ -1655,6 +1681,12 @@ export interface SignatureRequest {
1655
1681
  * @memberof SignatureRequest
1656
1682
  */
1657
1683
  'signature': string;
1684
+ /**
1685
+ *
1686
+ * @type {boolean}
1687
+ * @memberof SignatureRequest
1688
+ */
1689
+ 'optimistic'?: boolean;
1658
1690
  }
1659
1691
  /**
1660
1692
  *
@@ -1746,12 +1778,6 @@ export interface TransactionIntentRequest {
1746
1778
  * @memberof TransactionIntentRequest
1747
1779
  */
1748
1780
  'external_owner_address'?: string;
1749
- /**
1750
- *
1751
- * @type {string}
1752
- * @memberof TransactionIntentRequest
1753
- */
1754
- 'project'?: string;
1755
1781
  /**
1756
1782
  *
1757
1783
  * @type {boolean}
@@ -1809,10 +1835,10 @@ export interface TransactionIntentResponse {
1809
1835
  'user_operation_hash': string | null;
1810
1836
  /**
1811
1837
  *
1812
- * @type {PrismaJsonValue}
1838
+ * @type {JsonValue}
1813
1839
  * @memberof TransactionIntentResponse
1814
1840
  */
1815
- 'user_operation'?: PrismaJsonValue | null;
1841
+ 'user_operation'?: JsonValue | null;
1816
1842
  /**
1817
1843
  *
1818
1844
  * @type {TransactionIntentResponsePolicy}
@@ -1839,10 +1865,10 @@ export interface TransactionIntentResponse {
1839
1865
  'account'?: TransactionIntentResponseAccount;
1840
1866
  /**
1841
1867
  *
1842
- * @type {Array<Interaction>}
1868
+ * @type {Array<InteractionResponse>}
1843
1869
  * @memberof TransactionIntentResponse
1844
1870
  */
1845
- 'interactions': Array<Interaction> | null;
1871
+ 'interactions': Array<InteractionResponse> | null;
1846
1872
  /**
1847
1873
  *
1848
1874
  * @type {ResponseResponse}
@@ -1935,12 +1961,6 @@ export interface TransactionIntentResponsePlayer {
1935
1961
  * @memberof TransactionIntentResponsePlayer
1936
1962
  */
1937
1963
  'name': string | null;
1938
- /**
1939
- *
1940
- * @type {boolean}
1941
- * @memberof TransactionIntentResponsePlayer
1942
- */
1943
- 'livemode': boolean;
1944
1964
  /**
1945
1965
  *
1946
1966
  * @type {string}
@@ -2058,12 +2078,6 @@ export interface TransactionIntentsResponse {
2058
2078
  * @interface TransferOwnershipRequest
2059
2079
  */
2060
2080
  export interface TransferOwnershipRequest {
2061
- /**
2062
- * The project ID
2063
- * @type {string}
2064
- * @memberof TransferOwnershipRequest
2065
- */
2066
- 'project'?: string;
2067
2081
  /**
2068
2082
  * The address of the new owner
2069
2083
  * @type {string}
@@ -2093,29 +2107,34 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
2093
2107
  * Retrieves the details of an existing account. Supply the unique account ID from either a account creation request or the account list, and Openfort will return the corresponding account information.
2094
2108
  * @param {string} id Specifies the unique account ID.
2095
2109
  * @param {Array<string>} [expand] whether to expand the response or not
2096
- * @param {string} [project] Specifies the unique project ID.
2097
2110
  * @param {*} [options] Override http request option.
2098
2111
  * @throws {RequiredError}
2099
2112
  */
2100
- getAccount: (id: string, expand?: Array<string>, project?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2113
+ getAccount: (id: string, expand?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2101
2114
  /**
2102
2115
  * Retrieves the inventory of an existing account. Supply the unique account ID from either a account creation request or the account list, and Openfort will return the corresponding account information.
2103
2116
  * @param {string} id Specifies the unique account ID.
2104
- * @param {string} [project] Specifies the unique project ID.
2105
2117
  * @param {*} [options] Override http request option.
2106
2118
  * @throws {RequiredError}
2107
2119
  */
2108
- getAccountInventory: (id: string, project?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2120
+ getAccountInventory: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2109
2121
  /**
2110
2122
  * Returns a list of accounts for the given player. The accounts are returned sorted by creation date, with the most recently created accounts appearing first.
2111
2123
  * @param {string} player Specifies the unique player ID.
2112
2124
  * @param {Array<string>} [expand] whether to expand the response or not
2113
2125
  * @param {number} [limit] amount of results per query
2114
- * @param {string} [project] Specifies the unique project ID.
2115
2126
  * @param {*} [options] Override http request option.
2116
2127
  * @throws {RequiredError}
2117
2128
  */
2118
- getAccounts: (player: string, expand?: Array<string>, limit?: number, project?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2129
+ getAccounts: (player: string, expand?: Array<string>, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2130
+ /**
2131
+ * Sign a given payload
2132
+ * @param {string} id Specifies the unique account ID.
2133
+ * @param {SignPayloadRequest} signPayloadRequest
2134
+ * @param {*} [options] Override http request option.
2135
+ * @throws {RequiredError}
2136
+ */
2137
+ signPayload: (id: string, signPayloadRequest: SignPayloadRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2119
2138
  /**
2120
2139
  * Request the ownership transfer of an account to a given address.
2121
2140
  * @param {string} id Specifies the unique account ID.
@@ -2141,29 +2160,34 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
2141
2160
  * Retrieves the details of an existing account. Supply the unique account ID from either a account creation request or the account list, and Openfort will return the corresponding account information.
2142
2161
  * @param {string} id Specifies the unique account ID.
2143
2162
  * @param {Array<string>} [expand] whether to expand the response or not
2144
- * @param {string} [project] Specifies the unique project ID.
2145
2163
  * @param {*} [options] Override http request option.
2146
2164
  * @throws {RequiredError}
2147
2165
  */
2148
- getAccount(id: string, expand?: Array<string>, project?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountResponse>>;
2166
+ getAccount(id: string, expand?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountResponse>>;
2149
2167
  /**
2150
2168
  * Retrieves the inventory of an existing account. Supply the unique account ID from either a account creation request or the account list, and Openfort will return the corresponding account information.
2151
2169
  * @param {string} id Specifies the unique account ID.
2152
- * @param {string} [project] Specifies the unique project ID.
2153
2170
  * @param {*} [options] Override http request option.
2154
2171
  * @throws {RequiredError}
2155
2172
  */
2156
- getAccountInventory(id: string, project?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InventoryResponse>>;
2173
+ getAccountInventory(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InventoryResponse>>;
2157
2174
  /**
2158
2175
  * Returns a list of accounts for the given player. The accounts are returned sorted by creation date, with the most recently created accounts appearing first.
2159
2176
  * @param {string} player Specifies the unique player ID.
2160
2177
  * @param {Array<string>} [expand] whether to expand the response or not
2161
2178
  * @param {number} [limit] amount of results per query
2162
- * @param {string} [project] Specifies the unique project ID.
2163
2179
  * @param {*} [options] Override http request option.
2164
2180
  * @throws {RequiredError}
2165
2181
  */
2166
- getAccounts(player: string, expand?: Array<string>, limit?: number, project?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountsResponse>>;
2182
+ getAccounts(player: string, expand?: Array<string>, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountsResponse>>;
2183
+ /**
2184
+ * Sign a given payload
2185
+ * @param {string} id Specifies the unique account ID.
2186
+ * @param {SignPayloadRequest} signPayloadRequest
2187
+ * @param {*} [options] Override http request option.
2188
+ * @throws {RequiredError}
2189
+ */
2190
+ signPayload(id: string, signPayloadRequest: SignPayloadRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SignPayloadResponse>>;
2167
2191
  /**
2168
2192
  * Request the ownership transfer of an account to a given address.
2169
2193
  * @param {string} id Specifies the unique account ID.
@@ -2189,29 +2213,34 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
2189
2213
  * Retrieves the details of an existing account. Supply the unique account ID from either a account creation request or the account list, and Openfort will return the corresponding account information.
2190
2214
  * @param {string} id Specifies the unique account ID.
2191
2215
  * @param {Array<string>} [expand] whether to expand the response or not
2192
- * @param {string} [project] Specifies the unique project ID.
2193
2216
  * @param {*} [options] Override http request option.
2194
2217
  * @throws {RequiredError}
2195
2218
  */
2196
- getAccount(id: string, expand?: Array<string>, project?: string, options?: any): AxiosPromise<AccountResponse>;
2219
+ getAccount(id: string, expand?: Array<string>, options?: any): AxiosPromise<AccountResponse>;
2197
2220
  /**
2198
2221
  * Retrieves the inventory of an existing account. Supply the unique account ID from either a account creation request or the account list, and Openfort will return the corresponding account information.
2199
2222
  * @param {string} id Specifies the unique account ID.
2200
- * @param {string} [project] Specifies the unique project ID.
2201
2223
  * @param {*} [options] Override http request option.
2202
2224
  * @throws {RequiredError}
2203
2225
  */
2204
- getAccountInventory(id: string, project?: string, options?: any): AxiosPromise<InventoryResponse>;
2226
+ getAccountInventory(id: string, options?: any): AxiosPromise<InventoryResponse>;
2205
2227
  /**
2206
2228
  * Returns a list of accounts for the given player. The accounts are returned sorted by creation date, with the most recently created accounts appearing first.
2207
2229
  * @param {string} player Specifies the unique player ID.
2208
2230
  * @param {Array<string>} [expand] whether to expand the response or not
2209
2231
  * @param {number} [limit] amount of results per query
2210
- * @param {string} [project] Specifies the unique project ID.
2211
2232
  * @param {*} [options] Override http request option.
2212
2233
  * @throws {RequiredError}
2213
2234
  */
2214
- getAccounts(player: string, expand?: Array<string>, limit?: number, project?: string, options?: any): AxiosPromise<AccountsResponse>;
2235
+ getAccounts(player: string, expand?: Array<string>, limit?: number, options?: any): AxiosPromise<AccountsResponse>;
2236
+ /**
2237
+ * Sign a given payload
2238
+ * @param {string} id Specifies the unique account ID.
2239
+ * @param {SignPayloadRequest} signPayloadRequest
2240
+ * @param {*} [options] Override http request option.
2241
+ * @throws {RequiredError}
2242
+ */
2243
+ signPayload(id: string, signPayloadRequest: SignPayloadRequest, options?: any): AxiosPromise<SignPayloadResponse>;
2215
2244
  /**
2216
2245
  * Request the ownership transfer of an account to a given address.
2217
2246
  * @param {string} id Specifies the unique account ID.
@@ -2240,32 +2269,38 @@ export declare class AccountsApi extends BaseAPI {
2240
2269
  * Retrieves the details of an existing account. Supply the unique account ID from either a account creation request or the account list, and Openfort will return the corresponding account information.
2241
2270
  * @param {string} id Specifies the unique account ID.
2242
2271
  * @param {Array<string>} [expand] whether to expand the response or not
2243
- * @param {string} [project] Specifies the unique project ID.
2244
2272
  * @param {*} [options] Override http request option.
2245
2273
  * @throws {RequiredError}
2246
2274
  * @memberof AccountsApi
2247
2275
  */
2248
- getAccount(id: string, expand?: Array<string>, project?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountResponse, any>>;
2276
+ getAccount(id: string, expand?: Array<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountResponse, any>>;
2249
2277
  /**
2250
2278
  * Retrieves the inventory of an existing account. Supply the unique account ID from either a account creation request or the account list, and Openfort will return the corresponding account information.
2251
2279
  * @param {string} id Specifies the unique account ID.
2252
- * @param {string} [project] Specifies the unique project ID.
2253
2280
  * @param {*} [options] Override http request option.
2254
2281
  * @throws {RequiredError}
2255
2282
  * @memberof AccountsApi
2256
2283
  */
2257
- getAccountInventory(id: string, project?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InventoryResponse, any>>;
2284
+ getAccountInventory(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InventoryResponse, any>>;
2258
2285
  /**
2259
2286
  * Returns a list of accounts for the given player. The accounts are returned sorted by creation date, with the most recently created accounts appearing first.
2260
2287
  * @param {string} player Specifies the unique player ID.
2261
2288
  * @param {Array<string>} [expand] whether to expand the response or not
2262
2289
  * @param {number} [limit] amount of results per query
2263
- * @param {string} [project] Specifies the unique project ID.
2264
2290
  * @param {*} [options] Override http request option.
2265
2291
  * @throws {RequiredError}
2266
2292
  * @memberof AccountsApi
2267
2293
  */
2268
- getAccounts(player: string, expand?: Array<string>, limit?: number, project?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountsResponse, any>>;
2294
+ getAccounts(player: string, expand?: Array<string>, limit?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountsResponse, any>>;
2295
+ /**
2296
+ * Sign a given payload
2297
+ * @param {string} id Specifies the unique account ID.
2298
+ * @param {SignPayloadRequest} signPayloadRequest
2299
+ * @param {*} [options] Override http request option.
2300
+ * @throws {RequiredError}
2301
+ * @memberof AccountsApi
2302
+ */
2303
+ signPayload(id: string, signPayloadRequest: SignPayloadRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SignPayloadResponse, any>>;
2269
2304
  /**
2270
2305
  * Request the ownership transfer of an account to a given address.
2271
2306
  * @param {string} id Specifies the unique account ID.
@@ -2298,19 +2333,19 @@ export declare const ContractsApiAxiosParamCreator: (configuration?: Configurati
2298
2333
  /**
2299
2334
  * Retrieves the details of an existing contract. Supply the unique contract ID from either a contract creation request or the contract list, and Openfort will return the corresponding contract information.
2300
2335
  * @param {string} id Specifies the unique contract ID.
2301
- * @param {string} [project] Specifies the unique project ID.
2302
2336
  * @param {*} [options] Override http request option.
2303
2337
  * @throws {RequiredError}
2304
2338
  */
2305
- getContract: (id: string, project?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2339
+ getContract: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2306
2340
  /**
2307
2341
  * Returns a list of your contracts. The contracts are returned sorted by creation date, with the most recently created contracts appearing first.
2308
- * @param {string} [project] Specifies the unique project ID.
2309
2342
  * @param {number} [limit] amount of results per query
2343
+ * @param {SortOrder} [order]
2344
+ * @param {number} [skip]
2310
2345
  * @param {*} [options] Override http request option.
2311
2346
  * @throws {RequiredError}
2312
2347
  */
2313
- getContracts: (project?: string, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2348
+ getContracts: (limit?: number, order?: SortOrder, skip?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2314
2349
  };
2315
2350
  /**
2316
2351
  * ContractsApi - functional programming interface
@@ -2334,19 +2369,19 @@ export declare const ContractsApiFp: (configuration?: Configuration) => {
2334
2369
  /**
2335
2370
  * Retrieves the details of an existing contract. Supply the unique contract ID from either a contract creation request or the contract list, and Openfort will return the corresponding contract information.
2336
2371
  * @param {string} id Specifies the unique contract ID.
2337
- * @param {string} [project] Specifies the unique project ID.
2338
2372
  * @param {*} [options] Override http request option.
2339
2373
  * @throws {RequiredError}
2340
2374
  */
2341
- getContract(id: string, project?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContractResponse>>;
2375
+ getContract(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContractResponse>>;
2342
2376
  /**
2343
2377
  * Returns a list of your contracts. The contracts are returned sorted by creation date, with the most recently created contracts appearing first.
2344
- * @param {string} [project] Specifies the unique project ID.
2345
2378
  * @param {number} [limit] amount of results per query
2379
+ * @param {SortOrder} [order]
2380
+ * @param {number} [skip]
2346
2381
  * @param {*} [options] Override http request option.
2347
2382
  * @throws {RequiredError}
2348
2383
  */
2349
- getContracts(project?: string, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContractsResponse>>;
2384
+ getContracts(limit?: number, order?: SortOrder, skip?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContractsResponse>>;
2350
2385
  };
2351
2386
  /**
2352
2387
  * ContractsApi - factory interface
@@ -2370,19 +2405,19 @@ export declare const ContractsApiFactory: (configuration?: Configuration, basePa
2370
2405
  /**
2371
2406
  * Retrieves the details of an existing contract. Supply the unique contract ID from either a contract creation request or the contract list, and Openfort will return the corresponding contract information.
2372
2407
  * @param {string} id Specifies the unique contract ID.
2373
- * @param {string} [project] Specifies the unique project ID.
2374
2408
  * @param {*} [options] Override http request option.
2375
2409
  * @throws {RequiredError}
2376
2410
  */
2377
- getContract(id: string, project?: string, options?: any): AxiosPromise<ContractResponse>;
2411
+ getContract(id: string, options?: any): AxiosPromise<ContractResponse>;
2378
2412
  /**
2379
2413
  * Returns a list of your contracts. The contracts are returned sorted by creation date, with the most recently created contracts appearing first.
2380
- * @param {string} [project] Specifies the unique project ID.
2381
2414
  * @param {number} [limit] amount of results per query
2415
+ * @param {SortOrder} [order]
2416
+ * @param {number} [skip]
2382
2417
  * @param {*} [options] Override http request option.
2383
2418
  * @throws {RequiredError}
2384
2419
  */
2385
- getContracts(project?: string, limit?: number, options?: any): AxiosPromise<ContractsResponse>;
2420
+ getContracts(limit?: number, order?: SortOrder, skip?: number, options?: any): AxiosPromise<ContractsResponse>;
2386
2421
  };
2387
2422
  /**
2388
2423
  * ContractsApi - object-oriented interface
@@ -2410,21 +2445,21 @@ export declare class ContractsApi extends BaseAPI {
2410
2445
  /**
2411
2446
  * Retrieves the details of an existing contract. Supply the unique contract ID from either a contract creation request or the contract list, and Openfort will return the corresponding contract information.
2412
2447
  * @param {string} id Specifies the unique contract ID.
2413
- * @param {string} [project] Specifies the unique project ID.
2414
2448
  * @param {*} [options] Override http request option.
2415
2449
  * @throws {RequiredError}
2416
2450
  * @memberof ContractsApi
2417
2451
  */
2418
- getContract(id: string, project?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContractResponse, any>>;
2452
+ getContract(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContractResponse, any>>;
2419
2453
  /**
2420
2454
  * Returns a list of your contracts. The contracts are returned sorted by creation date, with the most recently created contracts appearing first.
2421
- * @param {string} [project] Specifies the unique project ID.
2422
2455
  * @param {number} [limit] amount of results per query
2456
+ * @param {SortOrder} [order]
2457
+ * @param {number} [skip]
2423
2458
  * @param {*} [options] Override http request option.
2424
2459
  * @throws {RequiredError}
2425
2460
  * @memberof ContractsApi
2426
2461
  */
2427
- getContracts(project?: string, limit?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContractsResponse, any>>;
2462
+ getContracts(limit?: number, order?: SortOrder, skip?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContractsResponse, any>>;
2428
2463
  }
2429
2464
  /**
2430
2465
  * PlayersApi - axios parameter creator
@@ -2433,11 +2468,11 @@ export declare class ContractsApi extends BaseAPI {
2433
2468
  export declare const PlayersApiAxiosParamCreator: (configuration?: Configuration) => {
2434
2469
  /**
2435
2470
  * Creates a player object.
2436
- * @param {PlayerRequest} playerRequest
2471
+ * @param {CreatePlayerRequest} createPlayerRequest
2437
2472
  * @param {*} [options] Override http request option.
2438
2473
  * @throws {RequiredError}
2439
2474
  */
2440
- createPlayer: (playerRequest: PlayerRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2475
+ createPlayer: (createPlayerRequest: CreatePlayerRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2441
2476
  /**
2442
2477
  * Creates an account object for an existing player.
2443
2478
  * @param {string} id Specifies the unique player ID.
@@ -2455,44 +2490,40 @@ export declare const PlayersApiAxiosParamCreator: (configuration?: Configuration
2455
2490
  */
2456
2491
  createPlayerSession: (id: string, createSessionPlayerRequest: CreateSessionPlayerRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2457
2492
  /**
2458
- * Retrieves the details of an existing player. Supply the unique player ID from either a player creation request or the player list, and Openfort will return the corresponding player information.
2493
+ * Returns a list of your players for the query. The players are returned sorted by creation date, with the most recently created players appearing first.
2459
2494
  * @param {string} id Specifies the unique player ID.
2460
- * @param {string} [project] Specifies the unique project ID.
2461
2495
  * @param {Array<string>} [expand]
2462
2496
  * @param {*} [options] Override http request option.
2463
2497
  * @throws {RequiredError}
2464
2498
  */
2465
- getPlayer: (id: string, project?: string, expand?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2499
+ getPlayer: (id: string, expand?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2466
2500
  /**
2467
2501
  * Returns a list of your accounts for the given player. The accounts are returned sorted by creation date, with the most recently created accounts appearing first.
2468
2502
  * @param {string} id Specifies the unique player ID.
2469
2503
  * @param {Array<string>} [expand]
2470
- * @param {string} [project] Specifies the unique project ID.
2471
2504
  * @param {*} [options] Override http request option.
2472
2505
  * @throws {RequiredError}
2473
2506
  */
2474
- getPlayerAccounts: (id: string, expand?: Array<string>, project?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2507
+ getPlayerAccounts: (id: string, expand?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2475
2508
  /**
2476
2509
  * Retrieves the inventory of an existing player. Supply the unique player ID from either a player creation request or the player list, and Openfort will return the corresponding player information.
2477
2510
  * @param {string} id Specifies the unique player ID.
2478
2511
  * @param {number} chainId
2479
- * @param {string} [project] Specifies the unique project ID.
2480
2512
  * @param {*} [options] Override http request option.
2481
2513
  * @throws {RequiredError}
2482
2514
  */
2483
- getPlayerInventory: (id: string, chainId: number, project?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2515
+ getPlayerInventory: (id: string, chainId: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2484
2516
  /**
2485
2517
  * Returns a list of your players. The players are returned sorted by creation date, with the most recently created players appearing first.
2486
2518
  * @param {Array<string>} [expand]
2487
2519
  * @param {number} [limit]
2488
- * @param {string} [project] Specifies the unique project ID.
2489
2520
  * @param {string} [filter]
2490
- * @param {string} [order]
2521
+ * @param {SortOrder} [order]
2491
2522
  * @param {number} [skip]
2492
2523
  * @param {*} [options] Override http request option.
2493
2524
  * @throws {RequiredError}
2494
2525
  */
2495
- getPlayers: (expand?: Array<string>, limit?: number, project?: string, filter?: string, order?: string, skip?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2526
+ getPlayers: (expand?: Array<string>, limit?: number, filter?: string, order?: SortOrder, skip?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2496
2527
  /**
2497
2528
  * Creates a session object for the given player.
2498
2529
  * @param {string} id Specifies the unique player ID.
@@ -2525,11 +2556,11 @@ export declare const PlayersApiAxiosParamCreator: (configuration?: Configuration
2525
2556
  export declare const PlayersApiFp: (configuration?: Configuration) => {
2526
2557
  /**
2527
2558
  * Creates a player object.
2528
- * @param {PlayerRequest} playerRequest
2559
+ * @param {CreatePlayerRequest} createPlayerRequest
2529
2560
  * @param {*} [options] Override http request option.
2530
2561
  * @throws {RequiredError}
2531
2562
  */
2532
- createPlayer(playerRequest: PlayerRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerResponse>>;
2563
+ createPlayer(createPlayerRequest: CreatePlayerRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerResponse>>;
2533
2564
  /**
2534
2565
  * Creates an account object for an existing player.
2535
2566
  * @param {string} id Specifies the unique player ID.
@@ -2547,44 +2578,40 @@ export declare const PlayersApiFp: (configuration?: Configuration) => {
2547
2578
  */
2548
2579
  createPlayerSession(id: string, createSessionPlayerRequest: CreateSessionPlayerRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SessionResponse>>;
2549
2580
  /**
2550
- * Retrieves the details of an existing player. Supply the unique player ID from either a player creation request or the player list, and Openfort will return the corresponding player information.
2581
+ * Returns a list of your players for the query. The players are returned sorted by creation date, with the most recently created players appearing first.
2551
2582
  * @param {string} id Specifies the unique player ID.
2552
- * @param {string} [project] Specifies the unique project ID.
2553
2583
  * @param {Array<string>} [expand]
2554
2584
  * @param {*} [options] Override http request option.
2555
2585
  * @throws {RequiredError}
2556
2586
  */
2557
- getPlayer(id: string, project?: string, expand?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerResponse>>;
2587
+ getPlayer(id: string, expand?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerResponse>>;
2558
2588
  /**
2559
2589
  * Returns a list of your accounts for the given player. The accounts are returned sorted by creation date, with the most recently created accounts appearing first.
2560
2590
  * @param {string} id Specifies the unique player ID.
2561
2591
  * @param {Array<string>} [expand]
2562
- * @param {string} [project] Specifies the unique project ID.
2563
2592
  * @param {*} [options] Override http request option.
2564
2593
  * @throws {RequiredError}
2565
2594
  */
2566
- getPlayerAccounts(id: string, expand?: Array<string>, project?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountsResponse>>;
2595
+ getPlayerAccounts(id: string, expand?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountsResponse>>;
2567
2596
  /**
2568
2597
  * Retrieves the inventory of an existing player. Supply the unique player ID from either a player creation request or the player list, and Openfort will return the corresponding player information.
2569
2598
  * @param {string} id Specifies the unique player ID.
2570
2599
  * @param {number} chainId
2571
- * @param {string} [project] Specifies the unique project ID.
2572
2600
  * @param {*} [options] Override http request option.
2573
2601
  * @throws {RequiredError}
2574
2602
  */
2575
- getPlayerInventory(id: string, chainId: number, project?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InventoryResponse>>;
2603
+ getPlayerInventory(id: string, chainId: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InventoryResponse>>;
2576
2604
  /**
2577
2605
  * Returns a list of your players. The players are returned sorted by creation date, with the most recently created players appearing first.
2578
2606
  * @param {Array<string>} [expand]
2579
2607
  * @param {number} [limit]
2580
- * @param {string} [project] Specifies the unique project ID.
2581
2608
  * @param {string} [filter]
2582
- * @param {string} [order]
2609
+ * @param {SortOrder} [order]
2583
2610
  * @param {number} [skip]
2584
2611
  * @param {*} [options] Override http request option.
2585
2612
  * @throws {RequiredError}
2586
2613
  */
2587
- getPlayers(expand?: Array<string>, limit?: number, project?: string, filter?: string, order?: string, skip?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayersResponse>>;
2614
+ getPlayers(expand?: Array<string>, limit?: number, filter?: string, order?: SortOrder, skip?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayersResponse>>;
2588
2615
  /**
2589
2616
  * Creates a session object for the given player.
2590
2617
  * @param {string} id Specifies the unique player ID.
@@ -2617,11 +2644,11 @@ export declare const PlayersApiFp: (configuration?: Configuration) => {
2617
2644
  export declare const PlayersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2618
2645
  /**
2619
2646
  * Creates a player object.
2620
- * @param {PlayerRequest} playerRequest
2647
+ * @param {CreatePlayerRequest} createPlayerRequest
2621
2648
  * @param {*} [options] Override http request option.
2622
2649
  * @throws {RequiredError}
2623
2650
  */
2624
- createPlayer(playerRequest: PlayerRequest, options?: any): AxiosPromise<PlayerResponse>;
2651
+ createPlayer(createPlayerRequest: CreatePlayerRequest, options?: any): AxiosPromise<PlayerResponse>;
2625
2652
  /**
2626
2653
  * Creates an account object for an existing player.
2627
2654
  * @param {string} id Specifies the unique player ID.
@@ -2639,44 +2666,40 @@ export declare const PlayersApiFactory: (configuration?: Configuration, basePath
2639
2666
  */
2640
2667
  createPlayerSession(id: string, createSessionPlayerRequest: CreateSessionPlayerRequest, options?: any): AxiosPromise<SessionResponse>;
2641
2668
  /**
2642
- * Retrieves the details of an existing player. Supply the unique player ID from either a player creation request or the player list, and Openfort will return the corresponding player information.
2669
+ * Returns a list of your players for the query. The players are returned sorted by creation date, with the most recently created players appearing first.
2643
2670
  * @param {string} id Specifies the unique player ID.
2644
- * @param {string} [project] Specifies the unique project ID.
2645
2671
  * @param {Array<string>} [expand]
2646
2672
  * @param {*} [options] Override http request option.
2647
2673
  * @throws {RequiredError}
2648
2674
  */
2649
- getPlayer(id: string, project?: string, expand?: Array<string>, options?: any): AxiosPromise<PlayerResponse>;
2675
+ getPlayer(id: string, expand?: Array<string>, options?: any): AxiosPromise<PlayerResponse>;
2650
2676
  /**
2651
2677
  * Returns a list of your accounts for the given player. The accounts are returned sorted by creation date, with the most recently created accounts appearing first.
2652
2678
  * @param {string} id Specifies the unique player ID.
2653
2679
  * @param {Array<string>} [expand]
2654
- * @param {string} [project] Specifies the unique project ID.
2655
2680
  * @param {*} [options] Override http request option.
2656
2681
  * @throws {RequiredError}
2657
2682
  */
2658
- getPlayerAccounts(id: string, expand?: Array<string>, project?: string, options?: any): AxiosPromise<AccountsResponse>;
2683
+ getPlayerAccounts(id: string, expand?: Array<string>, options?: any): AxiosPromise<AccountsResponse>;
2659
2684
  /**
2660
2685
  * Retrieves the inventory of an existing player. Supply the unique player ID from either a player creation request or the player list, and Openfort will return the corresponding player information.
2661
2686
  * @param {string} id Specifies the unique player ID.
2662
2687
  * @param {number} chainId
2663
- * @param {string} [project] Specifies the unique project ID.
2664
2688
  * @param {*} [options] Override http request option.
2665
2689
  * @throws {RequiredError}
2666
2690
  */
2667
- getPlayerInventory(id: string, chainId: number, project?: string, options?: any): AxiosPromise<InventoryResponse>;
2691
+ getPlayerInventory(id: string, chainId: number, options?: any): AxiosPromise<InventoryResponse>;
2668
2692
  /**
2669
2693
  * Returns a list of your players. The players are returned sorted by creation date, with the most recently created players appearing first.
2670
2694
  * @param {Array<string>} [expand]
2671
2695
  * @param {number} [limit]
2672
- * @param {string} [project] Specifies the unique project ID.
2673
2696
  * @param {string} [filter]
2674
- * @param {string} [order]
2697
+ * @param {SortOrder} [order]
2675
2698
  * @param {number} [skip]
2676
2699
  * @param {*} [options] Override http request option.
2677
2700
  * @throws {RequiredError}
2678
2701
  */
2679
- getPlayers(expand?: Array<string>, limit?: number, project?: string, filter?: string, order?: string, skip?: number, options?: any): AxiosPromise<PlayersResponse>;
2702
+ getPlayers(expand?: Array<string>, limit?: number, filter?: string, order?: SortOrder, skip?: number, options?: any): AxiosPromise<PlayersResponse>;
2680
2703
  /**
2681
2704
  * Creates a session object for the given player.
2682
2705
  * @param {string} id Specifies the unique player ID.
@@ -2711,12 +2734,12 @@ export declare const PlayersApiFactory: (configuration?: Configuration, basePath
2711
2734
  export declare class PlayersApi extends BaseAPI {
2712
2735
  /**
2713
2736
  * Creates a player object.
2714
- * @param {PlayerRequest} playerRequest
2737
+ * @param {CreatePlayerRequest} createPlayerRequest
2715
2738
  * @param {*} [options] Override http request option.
2716
2739
  * @throws {RequiredError}
2717
2740
  * @memberof PlayersApi
2718
2741
  */
2719
- createPlayer(playerRequest: PlayerRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerResponse, any>>;
2742
+ createPlayer(createPlayerRequest: CreatePlayerRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerResponse, any>>;
2720
2743
  /**
2721
2744
  * Creates an account object for an existing player.
2722
2745
  * @param {string} id Specifies the unique player ID.
@@ -2736,48 +2759,44 @@ export declare class PlayersApi extends BaseAPI {
2736
2759
  */
2737
2760
  createPlayerSession(id: string, createSessionPlayerRequest: CreateSessionPlayerRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SessionResponse, any>>;
2738
2761
  /**
2739
- * Retrieves the details of an existing player. Supply the unique player ID from either a player creation request or the player list, and Openfort will return the corresponding player information.
2762
+ * Returns a list of your players for the query. The players are returned sorted by creation date, with the most recently created players appearing first.
2740
2763
  * @param {string} id Specifies the unique player ID.
2741
- * @param {string} [project] Specifies the unique project ID.
2742
2764
  * @param {Array<string>} [expand]
2743
2765
  * @param {*} [options] Override http request option.
2744
2766
  * @throws {RequiredError}
2745
2767
  * @memberof PlayersApi
2746
2768
  */
2747
- getPlayer(id: string, project?: string, expand?: Array<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerResponse, any>>;
2769
+ getPlayer(id: string, expand?: Array<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerResponse, any>>;
2748
2770
  /**
2749
2771
  * Returns a list of your accounts for the given player. The accounts are returned sorted by creation date, with the most recently created accounts appearing first.
2750
2772
  * @param {string} id Specifies the unique player ID.
2751
2773
  * @param {Array<string>} [expand]
2752
- * @param {string} [project] Specifies the unique project ID.
2753
2774
  * @param {*} [options] Override http request option.
2754
2775
  * @throws {RequiredError}
2755
2776
  * @memberof PlayersApi
2756
2777
  */
2757
- getPlayerAccounts(id: string, expand?: Array<string>, project?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountsResponse, any>>;
2778
+ getPlayerAccounts(id: string, expand?: Array<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountsResponse, any>>;
2758
2779
  /**
2759
2780
  * Retrieves the inventory of an existing player. Supply the unique player ID from either a player creation request or the player list, and Openfort will return the corresponding player information.
2760
2781
  * @param {string} id Specifies the unique player ID.
2761
2782
  * @param {number} chainId
2762
- * @param {string} [project] Specifies the unique project ID.
2763
2783
  * @param {*} [options] Override http request option.
2764
2784
  * @throws {RequiredError}
2765
2785
  * @memberof PlayersApi
2766
2786
  */
2767
- getPlayerInventory(id: string, chainId: number, project?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InventoryResponse, any>>;
2787
+ getPlayerInventory(id: string, chainId: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InventoryResponse, any>>;
2768
2788
  /**
2769
2789
  * Returns a list of your players. The players are returned sorted by creation date, with the most recently created players appearing first.
2770
2790
  * @param {Array<string>} [expand]
2771
2791
  * @param {number} [limit]
2772
- * @param {string} [project] Specifies the unique project ID.
2773
2792
  * @param {string} [filter]
2774
- * @param {string} [order]
2793
+ * @param {SortOrder} [order]
2775
2794
  * @param {number} [skip]
2776
2795
  * @param {*} [options] Override http request option.
2777
2796
  * @throws {RequiredError}
2778
2797
  * @memberof PlayersApi
2779
2798
  */
2780
- getPlayers(expand?: Array<string>, limit?: number, project?: string, filter?: string, order?: string, skip?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayersResponse, any>>;
2799
+ getPlayers(expand?: Array<string>, limit?: number, filter?: string, order?: SortOrder, skip?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayersResponse, any>>;
2781
2800
  /**
2782
2801
  * Creates a session object for the given player.
2783
2802
  * @param {string} id Specifies the unique player ID.
@@ -2835,31 +2854,29 @@ export declare const PoliciesApiAxiosParamCreator: (configuration?: Configuratio
2835
2854
  deletePolicy: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2836
2855
  /**
2837
2856
  * Gets all policy objects for a given project.
2838
- * @param {string} [project]
2839
2857
  * @param {number} [limit]
2840
2858
  * @param {Array<string>} [expand]
2859
+ * @param {number} [skip]
2841
2860
  * @param {*} [options] Override http request option.
2842
2861
  * @throws {RequiredError}
2843
2862
  */
2844
- getPolicies: (project?: string, limit?: number, expand?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2863
+ getPolicies: (limit?: number, expand?: Array<string>, skip?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2845
2864
  /**
2846
2865
  * Gets a policy object for a given project.
2847
2866
  * @param {string} id
2848
- * @param {string} [project]
2849
2867
  * @param {Array<string>} [expand]
2850
2868
  * @param {*} [options] Override http request option.
2851
2869
  * @throws {RequiredError}
2852
2870
  */
2853
- getPolicy: (id: string, project?: string, expand?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2871
+ getPolicy: (id: string, expand?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2854
2872
  /**
2855
2873
  *
2856
2874
  * @param {string} id
2857
2875
  * @param {Array<string>} [expand]
2858
- * @param {string} [project]
2859
2876
  * @param {*} [options] Override http request option.
2860
2877
  * @throws {RequiredError}
2861
2878
  */
2862
- getPolicyAllowFunctions: (id: string, expand?: Array<string>, project?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2879
+ getPolicyAllowFunctions: (id: string, expand?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
2863
2880
  /**
2864
2881
  *
2865
2882
  * @param {string} id
@@ -2925,31 +2942,29 @@ export declare const PoliciesApiFp: (configuration?: Configuration) => {
2925
2942
  deletePolicy(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PolicyDeleteResponse>>;
2926
2943
  /**
2927
2944
  * Gets all policy objects for a given project.
2928
- * @param {string} [project]
2929
2945
  * @param {number} [limit]
2930
2946
  * @param {Array<string>} [expand]
2947
+ * @param {number} [skip]
2931
2948
  * @param {*} [options] Override http request option.
2932
2949
  * @throws {RequiredError}
2933
2950
  */
2934
- getPolicies(project?: string, limit?: number, expand?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PoliciesResponse>>;
2951
+ getPolicies(limit?: number, expand?: Array<string>, skip?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PoliciesResponse>>;
2935
2952
  /**
2936
2953
  * Gets a policy object for a given project.
2937
2954
  * @param {string} id
2938
- * @param {string} [project]
2939
2955
  * @param {Array<string>} [expand]
2940
2956
  * @param {*} [options] Override http request option.
2941
2957
  * @throws {RequiredError}
2942
2958
  */
2943
- getPolicy(id: string, project?: string, expand?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PolicyResponse>>;
2959
+ getPolicy(id: string, expand?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PolicyResponse>>;
2944
2960
  /**
2945
2961
  *
2946
2962
  * @param {string} id
2947
2963
  * @param {Array<string>} [expand]
2948
- * @param {string} [project]
2949
2964
  * @param {*} [options] Override http request option.
2950
2965
  * @throws {RequiredError}
2951
2966
  */
2952
- getPolicyAllowFunctions(id: string, expand?: Array<string>, project?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PolicyRulesResponse>>;
2967
+ getPolicyAllowFunctions(id: string, expand?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PolicyRulesResponse>>;
2953
2968
  /**
2954
2969
  *
2955
2970
  * @param {string} id
@@ -3015,31 +3030,29 @@ export declare const PoliciesApiFactory: (configuration?: Configuration, basePat
3015
3030
  deletePolicy(id: string, options?: any): AxiosPromise<PolicyDeleteResponse>;
3016
3031
  /**
3017
3032
  * Gets all policy objects for a given project.
3018
- * @param {string} [project]
3019
3033
  * @param {number} [limit]
3020
3034
  * @param {Array<string>} [expand]
3035
+ * @param {number} [skip]
3021
3036
  * @param {*} [options] Override http request option.
3022
3037
  * @throws {RequiredError}
3023
3038
  */
3024
- getPolicies(project?: string, limit?: number, expand?: Array<string>, options?: any): AxiosPromise<PoliciesResponse>;
3039
+ getPolicies(limit?: number, expand?: Array<string>, skip?: number, options?: any): AxiosPromise<PoliciesResponse>;
3025
3040
  /**
3026
3041
  * Gets a policy object for a given project.
3027
3042
  * @param {string} id
3028
- * @param {string} [project]
3029
3043
  * @param {Array<string>} [expand]
3030
3044
  * @param {*} [options] Override http request option.
3031
3045
  * @throws {RequiredError}
3032
3046
  */
3033
- getPolicy(id: string, project?: string, expand?: Array<string>, options?: any): AxiosPromise<PolicyResponse>;
3047
+ getPolicy(id: string, expand?: Array<string>, options?: any): AxiosPromise<PolicyResponse>;
3034
3048
  /**
3035
3049
  *
3036
3050
  * @param {string} id
3037
3051
  * @param {Array<string>} [expand]
3038
- * @param {string} [project]
3039
3052
  * @param {*} [options] Override http request option.
3040
3053
  * @throws {RequiredError}
3041
3054
  */
3042
- getPolicyAllowFunctions(id: string, expand?: Array<string>, project?: string, options?: any): AxiosPromise<PolicyRulesResponse>;
3055
+ getPolicyAllowFunctions(id: string, expand?: Array<string>, options?: any): AxiosPromise<PolicyRulesResponse>;
3043
3056
  /**
3044
3057
  *
3045
3058
  * @param {string} id
@@ -3110,34 +3123,32 @@ export declare class PoliciesApi extends BaseAPI {
3110
3123
  deletePolicy(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PolicyDeleteResponse, any>>;
3111
3124
  /**
3112
3125
  * Gets all policy objects for a given project.
3113
- * @param {string} [project]
3114
3126
  * @param {number} [limit]
3115
3127
  * @param {Array<string>} [expand]
3128
+ * @param {number} [skip]
3116
3129
  * @param {*} [options] Override http request option.
3117
3130
  * @throws {RequiredError}
3118
3131
  * @memberof PoliciesApi
3119
3132
  */
3120
- getPolicies(project?: string, limit?: number, expand?: Array<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PoliciesResponse, any>>;
3133
+ getPolicies(limit?: number, expand?: Array<string>, skip?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PoliciesResponse, any>>;
3121
3134
  /**
3122
3135
  * Gets a policy object for a given project.
3123
3136
  * @param {string} id
3124
- * @param {string} [project]
3125
3137
  * @param {Array<string>} [expand]
3126
3138
  * @param {*} [options] Override http request option.
3127
3139
  * @throws {RequiredError}
3128
3140
  * @memberof PoliciesApi
3129
3141
  */
3130
- getPolicy(id: string, project?: string, expand?: Array<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PolicyResponse, any>>;
3142
+ getPolicy(id: string, expand?: Array<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PolicyResponse, any>>;
3131
3143
  /**
3132
3144
  *
3133
3145
  * @param {string} id
3134
3146
  * @param {Array<string>} [expand]
3135
- * @param {string} [project]
3136
3147
  * @param {*} [options] Override http request option.
3137
3148
  * @throws {RequiredError}
3138
3149
  * @memberof PoliciesApi
3139
3150
  */
3140
- getPolicyAllowFunctions(id: string, expand?: Array<string>, project?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PolicyRulesResponse, any>>;
3151
+ getPolicyAllowFunctions(id: string, expand?: Array<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PolicyRulesResponse, any>>;
3141
3152
  /**
3142
3153
  *
3143
3154
  * @param {string} id
@@ -3199,13 +3210,12 @@ export declare const PolicyRulesApiAxiosParamCreator: (configuration?: Configura
3199
3210
  deletePolicyRules: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3200
3211
  /**
3201
3212
  * Returns a list of your allow functions for the given policy. The allow functions are returned sorted by creation date, with the most recently created allow functions appearing first.
3202
- * @param {string} [project] Specifies the unique project ID.
3203
3213
  * @param {Array<string>} [expand]
3204
3214
  * @param {string} [policy] Specifies the unique policy ID.
3205
3215
  * @param {*} [options] Override http request option.
3206
3216
  * @throws {RequiredError}
3207
3217
  */
3208
- getPolicyRules: (project?: string, expand?: Array<string>, policy?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3218
+ getPolicyRules: (expand?: Array<string>, policy?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3209
3219
  /**
3210
3220
  * Updates an allow functions object.
3211
3221
  * @param {string} id Specifies the unique allow function ID.
@@ -3236,13 +3246,12 @@ export declare const PolicyRulesApiFp: (configuration?: Configuration) => {
3236
3246
  deletePolicyRules(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PolicyRuleDeleteResponse>>;
3237
3247
  /**
3238
3248
  * Returns a list of your allow functions for the given policy. The allow functions are returned sorted by creation date, with the most recently created allow functions appearing first.
3239
- * @param {string} [project] Specifies the unique project ID.
3240
3249
  * @param {Array<string>} [expand]
3241
3250
  * @param {string} [policy] Specifies the unique policy ID.
3242
3251
  * @param {*} [options] Override http request option.
3243
3252
  * @throws {RequiredError}
3244
3253
  */
3245
- getPolicyRules(project?: string, expand?: Array<string>, policy?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PolicyRulesResponse>>;
3254
+ getPolicyRules(expand?: Array<string>, policy?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PolicyRulesResponse>>;
3246
3255
  /**
3247
3256
  * Updates an allow functions object.
3248
3257
  * @param {string} id Specifies the unique allow function ID.
@@ -3273,13 +3282,12 @@ export declare const PolicyRulesApiFactory: (configuration?: Configuration, base
3273
3282
  deletePolicyRules(id: string, options?: any): AxiosPromise<PolicyRuleDeleteResponse>;
3274
3283
  /**
3275
3284
  * Returns a list of your allow functions for the given policy. The allow functions are returned sorted by creation date, with the most recently created allow functions appearing first.
3276
- * @param {string} [project] Specifies the unique project ID.
3277
3285
  * @param {Array<string>} [expand]
3278
3286
  * @param {string} [policy] Specifies the unique policy ID.
3279
3287
  * @param {*} [options] Override http request option.
3280
3288
  * @throws {RequiredError}
3281
3289
  */
3282
- getPolicyRules(project?: string, expand?: Array<string>, policy?: string, options?: any): AxiosPromise<PolicyRulesResponse>;
3290
+ getPolicyRules(expand?: Array<string>, policy?: string, options?: any): AxiosPromise<PolicyRulesResponse>;
3283
3291
  /**
3284
3292
  * Updates an allow functions object.
3285
3293
  * @param {string} id Specifies the unique allow function ID.
@@ -3314,14 +3322,13 @@ export declare class PolicyRulesApi extends BaseAPI {
3314
3322
  deletePolicyRules(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PolicyRuleDeleteResponse, any>>;
3315
3323
  /**
3316
3324
  * Returns a list of your allow functions for the given policy. The allow functions are returned sorted by creation date, with the most recently created allow functions appearing first.
3317
- * @param {string} [project] Specifies the unique project ID.
3318
3325
  * @param {Array<string>} [expand]
3319
3326
  * @param {string} [policy] Specifies the unique policy ID.
3320
3327
  * @param {*} [options] Override http request option.
3321
3328
  * @throws {RequiredError}
3322
3329
  * @memberof PolicyRulesApi
3323
3330
  */
3324
- getPolicyRules(project?: string, expand?: Array<string>, policy?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PolicyRulesResponse, any>>;
3331
+ getPolicyRules(expand?: Array<string>, policy?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PolicyRulesResponse, any>>;
3325
3332
  /**
3326
3333
  * Updates an allow functions object.
3327
3334
  * @param {string} id Specifies the unique allow function ID.
@@ -3344,12 +3351,6 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
3344
3351
  * @throws {RequiredError}
3345
3352
  */
3346
3353
  createProject: (projectRequest: ProjectRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3347
- /**
3348
- *
3349
- * @param {*} [options] Override http request option.
3350
- * @throws {RequiredError}
3351
- */
3352
- get: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
3353
3354
  /**
3354
3355
  *
3355
3356
  * @param {string} id
@@ -3359,11 +3360,10 @@ export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuratio
3359
3360
  getProject: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3360
3361
  /**
3361
3362
  *
3362
- * @param {string} [project]
3363
3363
  * @param {*} [options] Override http request option.
3364
3364
  * @throws {RequiredError}
3365
3365
  */
3366
- getProjects: (project?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3366
+ getProjects: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
3367
3367
  /**
3368
3368
  * Updates a project object.
3369
3369
  * @param {string} id
@@ -3385,12 +3385,6 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
3385
3385
  * @throws {RequiredError}
3386
3386
  */
3387
3387
  createProject(projectRequest: ProjectRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectResponse>>;
3388
- /**
3389
- *
3390
- * @param {*} [options] Override http request option.
3391
- * @throws {RequiredError}
3392
- */
3393
- get(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetProjectResponse>>;
3394
3388
  /**
3395
3389
  *
3396
3390
  * @param {string} id
@@ -3400,11 +3394,10 @@ export declare const ProjectsApiFp: (configuration?: Configuration) => {
3400
3394
  getProject(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectResponse>>;
3401
3395
  /**
3402
3396
  *
3403
- * @param {string} [project]
3404
3397
  * @param {*} [options] Override http request option.
3405
3398
  * @throws {RequiredError}
3406
3399
  */
3407
- getProjects(project?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectsResponse>>;
3400
+ getProjects(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectsResponse>>;
3408
3401
  /**
3409
3402
  * Updates a project object.
3410
3403
  * @param {string} id
@@ -3426,12 +3419,6 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
3426
3419
  * @throws {RequiredError}
3427
3420
  */
3428
3421
  createProject(projectRequest: ProjectRequest, options?: any): AxiosPromise<ProjectResponse>;
3429
- /**
3430
- *
3431
- * @param {*} [options] Override http request option.
3432
- * @throws {RequiredError}
3433
- */
3434
- get(options?: any): AxiosPromise<GetProjectResponse>;
3435
3422
  /**
3436
3423
  *
3437
3424
  * @param {string} id
@@ -3441,11 +3428,10 @@ export declare const ProjectsApiFactory: (configuration?: Configuration, basePat
3441
3428
  getProject(id: string, options?: any): AxiosPromise<ProjectResponse>;
3442
3429
  /**
3443
3430
  *
3444
- * @param {string} [project]
3445
3431
  * @param {*} [options] Override http request option.
3446
3432
  * @throws {RequiredError}
3447
3433
  */
3448
- getProjects(project?: string, options?: any): AxiosPromise<ProjectsResponse>;
3434
+ getProjects(options?: any): AxiosPromise<ProjectsResponse>;
3449
3435
  /**
3450
3436
  * Updates a project object.
3451
3437
  * @param {string} id
@@ -3470,13 +3456,6 @@ export declare class ProjectsApi extends BaseAPI {
3470
3456
  * @memberof ProjectsApi
3471
3457
  */
3472
3458
  createProject(projectRequest: ProjectRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectResponse, any>>;
3473
- /**
3474
- *
3475
- * @param {*} [options] Override http request option.
3476
- * @throws {RequiredError}
3477
- * @memberof ProjectsApi
3478
- */
3479
- get(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetProjectResponse, any>>;
3480
3459
  /**
3481
3460
  *
3482
3461
  * @param {string} id
@@ -3487,12 +3466,11 @@ export declare class ProjectsApi extends BaseAPI {
3487
3466
  getProject(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectResponse, any>>;
3488
3467
  /**
3489
3468
  *
3490
- * @param {string} [project]
3491
3469
  * @param {*} [options] Override http request option.
3492
3470
  * @throws {RequiredError}
3493
3471
  * @memberof ProjectsApi
3494
3472
  */
3495
- getProjects(project?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectsResponse, any>>;
3473
+ getProjects(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectsResponse, any>>;
3496
3474
  /**
3497
3475
  * Updates a project object.
3498
3476
  * @param {string} id
@@ -3520,14 +3498,13 @@ export declare const SessionsApiAxiosParamCreator: (configuration?: Configuratio
3520
3498
  * @param {string} player
3521
3499
  * @param {Array<string>} [expand]
3522
3500
  * @param {number} [limit]
3523
- * @param {string} [project] Specifies the unique project ID.
3524
3501
  * @param {string} [filter]
3525
3502
  * @param {string} [order]
3526
3503
  * @param {number} [skip]
3527
3504
  * @param {*} [options] Override http request option.
3528
3505
  * @throws {RequiredError}
3529
3506
  */
3530
- getPlayerSessions: (player: string, expand?: Array<string>, limit?: number, project?: string, filter?: string, order?: string, skip?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3507
+ getPlayerSessions: (player: string, expand?: Array<string>, limit?: number, filter?: string, order?: string, skip?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3531
3508
  /**
3532
3509
  * Revokes the session for the account.
3533
3510
  * @param {RevokeSessionRequest} revokeSessionRequest
@@ -3561,14 +3538,13 @@ export declare const SessionsApiFp: (configuration?: Configuration) => {
3561
3538
  * @param {string} player
3562
3539
  * @param {Array<string>} [expand]
3563
3540
  * @param {number} [limit]
3564
- * @param {string} [project] Specifies the unique project ID.
3565
3541
  * @param {string} [filter]
3566
3542
  * @param {string} [order]
3567
3543
  * @param {number} [skip]
3568
3544
  * @param {*} [options] Override http request option.
3569
3545
  * @throws {RequiredError}
3570
3546
  */
3571
- getPlayerSessions(player: string, expand?: Array<string>, limit?: number, project?: string, filter?: string, order?: string, skip?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SessionsResponse>>;
3547
+ getPlayerSessions(player: string, expand?: Array<string>, limit?: number, filter?: string, order?: string, skip?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SessionsResponse>>;
3572
3548
  /**
3573
3549
  * Revokes the session for the account.
3574
3550
  * @param {RevokeSessionRequest} revokeSessionRequest
@@ -3602,14 +3578,13 @@ export declare const SessionsApiFactory: (configuration?: Configuration, basePat
3602
3578
  * @param {string} player
3603
3579
  * @param {Array<string>} [expand]
3604
3580
  * @param {number} [limit]
3605
- * @param {string} [project] Specifies the unique project ID.
3606
3581
  * @param {string} [filter]
3607
3582
  * @param {string} [order]
3608
3583
  * @param {number} [skip]
3609
3584
  * @param {*} [options] Override http request option.
3610
3585
  * @throws {RequiredError}
3611
3586
  */
3612
- getPlayerSessions(player: string, expand?: Array<string>, limit?: number, project?: string, filter?: string, order?: string, skip?: number, options?: any): AxiosPromise<SessionsResponse>;
3587
+ getPlayerSessions(player: string, expand?: Array<string>, limit?: number, filter?: string, order?: string, skip?: number, options?: any): AxiosPromise<SessionsResponse>;
3613
3588
  /**
3614
3589
  * Revokes the session for the account.
3615
3590
  * @param {RevokeSessionRequest} revokeSessionRequest
@@ -3646,7 +3621,6 @@ export declare class SessionsApi extends BaseAPI {
3646
3621
  * @param {string} player
3647
3622
  * @param {Array<string>} [expand]
3648
3623
  * @param {number} [limit]
3649
- * @param {string} [project] Specifies the unique project ID.
3650
3624
  * @param {string} [filter]
3651
3625
  * @param {string} [order]
3652
3626
  * @param {number} [skip]
@@ -3654,7 +3628,7 @@ export declare class SessionsApi extends BaseAPI {
3654
3628
  * @throws {RequiredError}
3655
3629
  * @memberof SessionsApi
3656
3630
  */
3657
- getPlayerSessions(player: string, expand?: Array<string>, limit?: number, project?: string, filter?: string, order?: string, skip?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SessionsResponse, any>>;
3631
+ getPlayerSessions(player: string, expand?: Array<string>, limit?: number, filter?: string, order?: string, skip?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SessionsResponse, any>>;
3658
3632
  /**
3659
3633
  * Revokes the session for the account.
3660
3634
  * @param {RevokeSessionRequest} revokeSessionRequest
@@ -3688,23 +3662,21 @@ export declare const TransactionIntentsApiAxiosParamCreator: (configuration?: Co
3688
3662
  /**
3689
3663
  * Retrieves a transaction intent object.
3690
3664
  * @param {string} id
3691
- * @param {string} [project]
3692
3665
  * @param {*} [options] Override http request option.
3693
3666
  * @throws {RequiredError}
3694
3667
  */
3695
- getTransactionIntent: (id: string, project?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3668
+ getTransactionIntent: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3696
3669
  /**
3697
3670
  * Returns a list of transaction intents for the given project. The accounts are returned sorted by creation date, with the most recently created accounts appearing first.
3698
3671
  * @param {Array<string>} [expand]
3699
3672
  * @param {number} [limit]
3700
- * @param {string} [project] Specifies the unique project ID.
3701
3673
  * @param {string} [filter]
3702
3674
  * @param {SortOrder} [order]
3703
3675
  * @param {number} [skip]
3704
3676
  * @param {*} [options] Override http request option.
3705
3677
  * @throws {RequiredError}
3706
3678
  */
3707
- getTransactionIntents: (expand?: Array<string>, limit?: number, project?: string, filter?: string, order?: SortOrder, skip?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3679
+ getTransactionIntents: (expand?: Array<string>, limit?: number, filter?: string, order?: SortOrder, skip?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3708
3680
  /**
3709
3681
  * Confirms the creation of a transaction intent with an external owner.
3710
3682
  * @param {string} id
@@ -3716,18 +3688,16 @@ export declare const TransactionIntentsApiAxiosParamCreator: (configuration?: Co
3716
3688
  /**
3717
3689
  *
3718
3690
  * @param {string} id
3719
- * @param {string} [project]
3720
3691
  * @param {*} [options] Override http request option.
3721
3692
  * @throws {RequiredError}
3722
3693
  */
3723
- updateTransactionIntentResponse: (id: string, project?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3694
+ updateTransactionIntentResponse: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3724
3695
  /**
3725
3696
  *
3726
- * @param {string} [project]
3727
3697
  * @param {*} [options] Override http request option.
3728
3698
  * @throws {RequiredError}
3729
3699
  */
3730
- updateTransactionIntentsResponse: (project?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3700
+ updateTransactionIntentsResponse: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
3731
3701
  };
3732
3702
  /**
3733
3703
  * TransactionIntentsApi - functional programming interface
@@ -3744,23 +3714,21 @@ export declare const TransactionIntentsApiFp: (configuration?: Configuration) =>
3744
3714
  /**
3745
3715
  * Retrieves a transaction intent object.
3746
3716
  * @param {string} id
3747
- * @param {string} [project]
3748
3717
  * @param {*} [options] Override http request option.
3749
3718
  * @throws {RequiredError}
3750
3719
  */
3751
- getTransactionIntent(id: string, project?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TransactionIntentResponse>>;
3720
+ getTransactionIntent(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TransactionIntentResponse>>;
3752
3721
  /**
3753
3722
  * Returns a list of transaction intents for the given project. The accounts are returned sorted by creation date, with the most recently created accounts appearing first.
3754
3723
  * @param {Array<string>} [expand]
3755
3724
  * @param {number} [limit]
3756
- * @param {string} [project] Specifies the unique project ID.
3757
3725
  * @param {string} [filter]
3758
3726
  * @param {SortOrder} [order]
3759
3727
  * @param {number} [skip]
3760
3728
  * @param {*} [options] Override http request option.
3761
3729
  * @throws {RequiredError}
3762
3730
  */
3763
- getTransactionIntents(expand?: Array<string>, limit?: number, project?: string, filter?: string, order?: SortOrder, skip?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TransactionIntentsResponse>>;
3731
+ getTransactionIntents(expand?: Array<string>, limit?: number, filter?: string, order?: SortOrder, skip?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TransactionIntentsResponse>>;
3764
3732
  /**
3765
3733
  * Confirms the creation of a transaction intent with an external owner.
3766
3734
  * @param {string} id
@@ -3772,18 +3740,16 @@ export declare const TransactionIntentsApiFp: (configuration?: Configuration) =>
3772
3740
  /**
3773
3741
  *
3774
3742
  * @param {string} id
3775
- * @param {string} [project]
3776
3743
  * @param {*} [options] Override http request option.
3777
3744
  * @throws {RequiredError}
3778
3745
  */
3779
- updateTransactionIntentResponse(id: string, project?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TransactionIntentResponse>>;
3746
+ updateTransactionIntentResponse(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TransactionIntentResponse>>;
3780
3747
  /**
3781
3748
  *
3782
- * @param {string} [project]
3783
3749
  * @param {*} [options] Override http request option.
3784
3750
  * @throws {RequiredError}
3785
3751
  */
3786
- updateTransactionIntentsResponse(project?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TransactionIntentsResponse>>;
3752
+ updateTransactionIntentsResponse(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TransactionIntentsResponse>>;
3787
3753
  };
3788
3754
  /**
3789
3755
  * TransactionIntentsApi - factory interface
@@ -3800,23 +3766,21 @@ export declare const TransactionIntentsApiFactory: (configuration?: Configuratio
3800
3766
  /**
3801
3767
  * Retrieves a transaction intent object.
3802
3768
  * @param {string} id
3803
- * @param {string} [project]
3804
3769
  * @param {*} [options] Override http request option.
3805
3770
  * @throws {RequiredError}
3806
3771
  */
3807
- getTransactionIntent(id: string, project?: string, options?: any): AxiosPromise<TransactionIntentResponse>;
3772
+ getTransactionIntent(id: string, options?: any): AxiosPromise<TransactionIntentResponse>;
3808
3773
  /**
3809
3774
  * Returns a list of transaction intents for the given project. The accounts are returned sorted by creation date, with the most recently created accounts appearing first.
3810
3775
  * @param {Array<string>} [expand]
3811
3776
  * @param {number} [limit]
3812
- * @param {string} [project] Specifies the unique project ID.
3813
3777
  * @param {string} [filter]
3814
3778
  * @param {SortOrder} [order]
3815
3779
  * @param {number} [skip]
3816
3780
  * @param {*} [options] Override http request option.
3817
3781
  * @throws {RequiredError}
3818
3782
  */
3819
- getTransactionIntents(expand?: Array<string>, limit?: number, project?: string, filter?: string, order?: SortOrder, skip?: number, options?: any): AxiosPromise<TransactionIntentsResponse>;
3783
+ getTransactionIntents(expand?: Array<string>, limit?: number, filter?: string, order?: SortOrder, skip?: number, options?: any): AxiosPromise<TransactionIntentsResponse>;
3820
3784
  /**
3821
3785
  * Confirms the creation of a transaction intent with an external owner.
3822
3786
  * @param {string} id
@@ -3828,18 +3792,16 @@ export declare const TransactionIntentsApiFactory: (configuration?: Configuratio
3828
3792
  /**
3829
3793
  *
3830
3794
  * @param {string} id
3831
- * @param {string} [project]
3832
3795
  * @param {*} [options] Override http request option.
3833
3796
  * @throws {RequiredError}
3834
3797
  */
3835
- updateTransactionIntentResponse(id: string, project?: string, options?: any): AxiosPromise<TransactionIntentResponse>;
3798
+ updateTransactionIntentResponse(id: string, options?: any): AxiosPromise<TransactionIntentResponse>;
3836
3799
  /**
3837
3800
  *
3838
- * @param {string} [project]
3839
3801
  * @param {*} [options] Override http request option.
3840
3802
  * @throws {RequiredError}
3841
3803
  */
3842
- updateTransactionIntentsResponse(project?: string, options?: any): AxiosPromise<TransactionIntentsResponse>;
3804
+ updateTransactionIntentsResponse(options?: any): AxiosPromise<TransactionIntentsResponse>;
3843
3805
  };
3844
3806
  /**
3845
3807
  * TransactionIntentsApi - object-oriented interface
@@ -3859,17 +3821,15 @@ export declare class TransactionIntentsApi extends BaseAPI {
3859
3821
  /**
3860
3822
  * Retrieves a transaction intent object.
3861
3823
  * @param {string} id
3862
- * @param {string} [project]
3863
3824
  * @param {*} [options] Override http request option.
3864
3825
  * @throws {RequiredError}
3865
3826
  * @memberof TransactionIntentsApi
3866
3827
  */
3867
- getTransactionIntent(id: string, project?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionIntentResponse, any>>;
3828
+ getTransactionIntent(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionIntentResponse, any>>;
3868
3829
  /**
3869
3830
  * Returns a list of transaction intents for the given project. The accounts are returned sorted by creation date, with the most recently created accounts appearing first.
3870
3831
  * @param {Array<string>} [expand]
3871
3832
  * @param {number} [limit]
3872
- * @param {string} [project] Specifies the unique project ID.
3873
3833
  * @param {string} [filter]
3874
3834
  * @param {SortOrder} [order]
3875
3835
  * @param {number} [skip]
@@ -3877,7 +3837,7 @@ export declare class TransactionIntentsApi extends BaseAPI {
3877
3837
  * @throws {RequiredError}
3878
3838
  * @memberof TransactionIntentsApi
3879
3839
  */
3880
- getTransactionIntents(expand?: Array<string>, limit?: number, project?: string, filter?: string, order?: SortOrder, skip?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionIntentsResponse, any>>;
3840
+ getTransactionIntents(expand?: Array<string>, limit?: number, filter?: string, order?: SortOrder, skip?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionIntentsResponse, any>>;
3881
3841
  /**
3882
3842
  * Confirms the creation of a transaction intent with an external owner.
3883
3843
  * @param {string} id
@@ -3890,18 +3850,16 @@ export declare class TransactionIntentsApi extends BaseAPI {
3890
3850
  /**
3891
3851
  *
3892
3852
  * @param {string} id
3893
- * @param {string} [project]
3894
3853
  * @param {*} [options] Override http request option.
3895
3854
  * @throws {RequiredError}
3896
3855
  * @memberof TransactionIntentsApi
3897
3856
  */
3898
- updateTransactionIntentResponse(id: string, project?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionIntentResponse, any>>;
3857
+ updateTransactionIntentResponse(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionIntentResponse, any>>;
3899
3858
  /**
3900
3859
  *
3901
- * @param {string} [project]
3902
3860
  * @param {*} [options] Override http request option.
3903
3861
  * @throws {RequiredError}
3904
3862
  * @memberof TransactionIntentsApi
3905
3863
  */
3906
- updateTransactionIntentsResponse(project?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionIntentsResponse, any>>;
3864
+ updateTransactionIntentsResponse(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TransactionIntentsResponse, any>>;
3907
3865
  }