@avalabs/glacier-sdk 3.1.0-canary.a3e15f5.0 → 3.1.0-canary.a7cd635.0

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.
Files changed (54) hide show
  1. package/dist/index.d.ts +459 -214
  2. package/dist/index.js +1 -1
  3. package/esm/generated/models/CreateWebhookRequest.d.ts +1 -1
  4. package/esm/generated/models/Erc20TokenBalance.d.ts +11 -0
  5. package/esm/generated/models/Erc20TokenBalance.js +1 -1
  6. package/esm/generated/models/EvmBlock.d.ts +4 -0
  7. package/esm/generated/models/FullNativeTransactionDetails.d.ts +4 -0
  8. package/esm/generated/models/GetEvmBlockResponse.d.ts +4 -0
  9. package/esm/generated/models/GetPrimaryNetworkBlockResponse.d.ts +2 -2
  10. package/esm/generated/models/L1ValidatorDetailsFull.d.ts +33 -0
  11. package/esm/generated/models/L1ValidatorDetailsTransaction.d.ts +23 -0
  12. package/esm/generated/models/ListErc1155BalancesResponse.d.ts +5 -0
  13. package/esm/generated/models/ListErc20BalancesResponse.d.ts +5 -0
  14. package/esm/generated/models/ListErc721BalancesResponse.d.ts +5 -0
  15. package/esm/generated/models/{ListSubnetOnlyValidatorsResponse.d.ts → ListL1ValidatorsResponse.d.ts} +4 -4
  16. package/esm/generated/models/NativeTransaction.d.ts +4 -0
  17. package/esm/generated/models/PChainTransaction.d.ts +5 -5
  18. package/esm/generated/models/PChainTransactionType.d.ts +5 -5
  19. package/esm/generated/models/PChainTransactionType.js +1 -1
  20. package/esm/generated/models/PrimaryNetworkBlock.d.ts +2 -2
  21. package/esm/generated/models/PrimaryNetworkRpcMetricsGroupByEnum.d.ts +9 -0
  22. package/esm/generated/models/PrimaryNetworkRpcMetricsGroupByEnum.js +1 -0
  23. package/esm/generated/models/PrimaryNetworkTxType.d.ts +5 -5
  24. package/esm/generated/models/PrimaryNetworkTxType.js +1 -1
  25. package/esm/generated/models/RpcUsageMetricsGroupByEnum.d.ts +7 -0
  26. package/esm/generated/models/RpcUsageMetricsGroupByEnum.js +1 -0
  27. package/esm/generated/models/RpcUsageMetricsValueAggregated.d.ts +4 -0
  28. package/esm/generated/models/SignatureAggregatorRequest.d.ts +1 -7
  29. package/esm/generated/models/Subnet.d.ts +4 -0
  30. package/esm/generated/models/SubnetRpcTimeIntervalGranularity.d.ts +8 -0
  31. package/esm/generated/models/SubnetRpcTimeIntervalGranularity.js +1 -0
  32. package/esm/generated/models/{RpcUsageMetricsResponseDTO.d.ts → SubnetRpcUsageMetricsResponseDTO.d.ts} +6 -6
  33. package/esm/generated/models/UpdateWebhookRequest.d.ts +3 -0
  34. package/esm/generated/services/DataApiUsageMetricsService.d.ts +72 -22
  35. package/esm/generated/services/DataApiUsageMetricsService.js +1 -1
  36. package/esm/generated/services/EvmBlocksService.d.ts +21 -0
  37. package/esm/generated/services/EvmBlocksService.js +1 -1
  38. package/esm/generated/services/EvmChainsService.d.ts +67 -2
  39. package/esm/generated/services/EvmChainsService.js +1 -1
  40. package/esm/generated/services/EvmTransactionsService.d.ts +34 -1
  41. package/esm/generated/services/EvmTransactionsService.js +1 -1
  42. package/esm/generated/services/PrimaryNetworkBlocksService.d.ts +18 -2
  43. package/esm/generated/services/PrimaryNetworkBlocksService.js +1 -1
  44. package/esm/generated/services/PrimaryNetworkService.d.ts +9 -9
  45. package/esm/generated/services/PrimaryNetworkService.js +1 -1
  46. package/esm/generated/services/PrimaryNetworkTransactionsService.d.ts +3 -3
  47. package/esm/generated/services/PrimaryNetworkTransactionsService.js +1 -1
  48. package/esm/generated/services/SignatureAggregatorService.d.ts +6 -1
  49. package/esm/generated/services/SignatureAggregatorService.js +1 -1
  50. package/esm/index.d.ts +7 -4
  51. package/esm/index.js +1 -1
  52. package/package.json +2 -2
  53. package/esm/generated/models/SoVDetailsTransaction.d.ts +0 -23
  54. package/esm/generated/models/SovDetailsFull.d.ts +0 -33
@@ -9,7 +9,7 @@ type CreateWebhookRequest = {
9
9
  name?: string;
10
10
  description?: string;
11
11
  /**
12
- * Whether to include traces in the webhook payload.
12
+ * Whether to include traces in the webhook payload. Traces are only available for C-Chain on chainId 43113 and 43114.
13
13
  */
14
14
  includeInternalTxs?: boolean;
15
15
  /**
@@ -38,11 +38,22 @@ type Erc20TokenBalance = {
38
38
  * The monetary value of the balance, if a price is available for the token.
39
39
  */
40
40
  balanceValue?: Money;
41
+ /**
42
+ * Indicates the reputation of the token based on a security analysis. 'Benign' suggests the token is likely safe, while 'Malicious' indicates potential security risks. This field is nullable and is only populated for tokens on the C-Chain. Possible values are 'Benign', 'Malicious', or null if the reputation is unknown.
43
+ */
44
+ tokenReputation: Erc20TokenBalance.tokenReputation | null;
41
45
  };
42
46
  declare namespace Erc20TokenBalance {
43
47
  enum ercType {
44
48
  ERC_20 = "ERC-20"
45
49
  }
50
+ /**
51
+ * Indicates the reputation of the token based on a security analysis. 'Benign' suggests the token is likely safe, while 'Malicious' indicates potential security risks. This field is nullable and is only populated for tokens on the C-Chain. Possible values are 'Benign', 'Malicious', or null if the reputation is unknown.
52
+ */
53
+ enum tokenReputation {
54
+ MALICIOUS = "Malicious",
55
+ BENIGN = "Benign"
56
+ }
46
57
  }
47
58
 
48
59
  export { Erc20TokenBalance };
@@ -1 +1 @@
1
- var e,r;((r=e||(e={})).ercType||(r.ercType={})).ERC_20="ERC-20";export{e as Erc20TokenBalance};
1
+ var e,t,n;((t=e||(e={})).ercType||(t.ercType={})).ERC_20="ERC-20",(n=t.tokenReputation||(t.tokenReputation={})).MALICIOUS="Malicious",n.BENIGN="Benign";export{e as Erc20TokenBalance};
@@ -1,4 +1,8 @@
1
1
  type EvmBlock = {
2
+ /**
3
+ * The EVM chain ID on which the block was created.
4
+ */
5
+ chainId: string;
2
6
  /**
3
7
  * The block number on the chain.
4
8
  */
@@ -14,6 +14,10 @@ type FullNativeTransactionDetails = {
14
14
  * The block hash identifier.
15
15
  */
16
16
  blockHash: string;
17
+ /**
18
+ * The EVM chain ID on which the transaction occured.
19
+ */
20
+ chainId: string;
17
21
  /**
18
22
  * The index at which the transaction occured in the block (0-indexed).
19
23
  */
@@ -1,4 +1,8 @@
1
1
  type GetEvmBlockResponse = {
2
+ /**
3
+ * The EVM chain ID on which the block was created.
4
+ */
5
+ chainId: string;
2
6
  /**
3
7
  * The block number on the chain.
4
8
  */
@@ -9,8 +9,8 @@ type GetPrimaryNetworkBlockResponse = {
9
9
  txCount: number;
10
10
  transactions: Array<string>;
11
11
  blockSizeBytes: number;
12
- subnetOnlyValidatorsAccruedFees?: number;
13
- activeSubnetOnlyValidators?: number;
12
+ l1ValidatorsAccruedFees?: number;
13
+ activeL1Validators?: number;
14
14
  currentSupply?: string;
15
15
  proposerDetails?: ProposerDetails;
16
16
  };
@@ -0,0 +1,33 @@
1
+ import { BalanceOwner } from './BalanceOwner.js';
2
+
3
+ type L1ValidatorDetailsFull = {
4
+ /**
5
+ * Unique L1 validation ID used network-wide to identify L1 validation until its weight is reduced to 0 i.e. removed.
6
+ */
7
+ validationId: string;
8
+ nodeId: string;
9
+ subnetId: string;
10
+ /**
11
+ * Weight of the L1 validator used while sampling validators within the L1. A zero-weight L1 validator means it has been removed from the L1, and the validationID is no longer valid
12
+ */
13
+ weight: number;
14
+ /**
15
+ * Remaining L1 validator balance in nAVAX until inactive. It can rejoin L1 sampling by increasing balance with IncreaseL1ValidatorBalanceTx
16
+ */
17
+ remainingBalance: number;
18
+ /**
19
+ * The timestamp of the transaction which created this L1 validator
20
+ */
21
+ creationTimestamp: number;
22
+ blsCredentials: Record<string, any>;
23
+ /**
24
+ * The L1 validator owner's balance, returned after it's disabled or removed
25
+ */
26
+ remainingBalanceOwner: BalanceOwner;
27
+ /**
28
+ * Owner ddresses details which can disable or remove the L1 validator
29
+ */
30
+ deactivationOwner: BalanceOwner;
31
+ };
32
+
33
+ export { L1ValidatorDetailsFull };
@@ -0,0 +1,23 @@
1
+ type L1ValidatorDetailsTransaction = {
2
+ /**
3
+ * Unique L1 validation ID used network-wide to identify L1 validation until its weight is reduced to 0 i.e. removed.
4
+ */
5
+ validationId: string;
6
+ nodeId: string;
7
+ subnetId: string;
8
+ /**
9
+ * Weight of the L1 validator used while sampling validators within the L1. A zero-weight L1 validator means it has been removed from the L1, and the validationID is no longer valid
10
+ */
11
+ weight: number;
12
+ /**
13
+ * Remaining L1 validator balance in nAVAX until inactive. It can rejoin L1 sampling by increasing balance with IncreaseL1ValidatorBalanceTx
14
+ */
15
+ remainingBalance: number;
16
+ /**
17
+ * The increase in L1 validator balance in the current transaction. When the balance is returned after the L1 validator is disabled or removed, this value is negative
18
+ */
19
+ balanceChange?: number;
20
+ blsCredentials?: Record<string, any>;
21
+ };
22
+
23
+ export { L1ValidatorDetailsTransaction };
@@ -1,10 +1,15 @@
1
1
  import { Erc1155TokenBalance } from './Erc1155TokenBalance.js';
2
+ import { NativeTokenBalance } from './NativeTokenBalance.js';
2
3
 
3
4
  type ListErc1155BalancesResponse = {
4
5
  /**
5
6
  * A token, which can be sent as `pageToken` to retrieve the next page. If this field is omitted or empty, there are no subsequent pages.
6
7
  */
7
8
  nextPageToken?: string;
9
+ /**
10
+ * The native token balance for the address.
11
+ */
12
+ nativeTokenBalance: NativeTokenBalance;
8
13
  /**
9
14
  * The list of ERC-1155 token balances for the address.
10
15
  */
@@ -1,10 +1,15 @@
1
1
  import { Erc20TokenBalance } from './Erc20TokenBalance.js';
2
+ import { NativeTokenBalance } from './NativeTokenBalance.js';
2
3
 
3
4
  type ListErc20BalancesResponse = {
4
5
  /**
5
6
  * A token, which can be sent as `pageToken` to retrieve the next page. If this field is omitted or empty, there are no subsequent pages.
6
7
  */
7
8
  nextPageToken?: string;
9
+ /**
10
+ * The native token balance for the address.
11
+ */
12
+ nativeTokenBalance: NativeTokenBalance;
8
13
  /**
9
14
  * The list of ERC-20 token balances for the address.
10
15
  */
@@ -1,10 +1,15 @@
1
1
  import { Erc721TokenBalance } from './Erc721TokenBalance.js';
2
+ import { NativeTokenBalance } from './NativeTokenBalance.js';
2
3
 
3
4
  type ListErc721BalancesResponse = {
4
5
  /**
5
6
  * A token, which can be sent as `pageToken` to retrieve the next page. If this field is omitted or empty, there are no subsequent pages.
6
7
  */
7
8
  nextPageToken?: string;
9
+ /**
10
+ * The native token balance for the address.
11
+ */
12
+ nativeTokenBalance: NativeTokenBalance;
8
13
  /**
9
14
  * The list of ERC-721 token balances for the address.
10
15
  */
@@ -1,6 +1,6 @@
1
- import { SovDetailsFull } from './SovDetailsFull.js';
1
+ import { L1ValidatorDetailsFull } from './L1ValidatorDetailsFull.js';
2
2
 
3
- type ListSubnetOnlyValidatorsResponse = {
3
+ type ListL1ValidatorsResponse = {
4
4
  /**
5
5
  * A token, which can be sent as `pageToken` to retrieve the next page. If this field is omitted or empty, there are no subsequent pages.
6
6
  */
@@ -8,7 +8,7 @@ type ListSubnetOnlyValidatorsResponse = {
8
8
  /**
9
9
  * The list of L1 validations for the given Subnet ID, NodeId or validationId
10
10
  */
11
- validators: Array<SovDetailsFull>;
11
+ validators: Array<L1ValidatorDetailsFull>;
12
12
  };
13
13
 
14
- export { ListSubnetOnlyValidatorsResponse };
14
+ export { ListL1ValidatorsResponse };
@@ -14,6 +14,10 @@ type NativeTransaction = {
14
14
  * The block hash identifier.
15
15
  */
16
16
  blockHash: string;
17
+ /**
18
+ * The EVM chain ID on which the transaction occured.
19
+ */
20
+ chainId: string;
17
21
  /**
18
22
  * The index at which the transaction occured in the block (0-indexed).
19
23
  */
@@ -1,9 +1,9 @@
1
1
  import { AssetAmount } from './AssetAmount.js';
2
2
  import { BlsCredentials } from './BlsCredentials.js';
3
+ import { L1ValidatorDetailsTransaction } from './L1ValidatorDetailsTransaction.js';
3
4
  import { L1ValidatorManagerDetails } from './L1ValidatorManagerDetails.js';
4
5
  import { PChainTransactionType } from './PChainTransactionType.js';
5
6
  import { PChainUtxo } from './PChainUtxo.js';
6
- import { SoVDetailsTransaction } from './SoVDetailsTransaction.js';
7
7
  import { SubnetOwnershipInfo } from './SubnetOwnershipInfo.js';
8
8
 
9
9
  type PChainTransaction = {
@@ -43,7 +43,7 @@ type PChainTransaction = {
43
43
  /**
44
44
  * A list of objects containing P-chain Asset basic info and the amount of that Asset ID.
45
45
  */
46
- amountSovBalanceBurned: Array<AssetAmount>;
46
+ amountL1ValidatorBalanceBurned: Array<AssetAmount>;
47
47
  /**
48
48
  * Present for AddValidatorTx, AddSubnetValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx
49
49
  */
@@ -65,13 +65,13 @@ type PChainTransaction = {
65
65
  */
66
66
  subnetId?: string;
67
67
  /**
68
- * Details of the L1's validator manager contract and blockchain. Present for the ConvertSubnetTx which transforms a subnet into L1
68
+ * Details of the L1's validator manager contract and blockchain. Present for the ConvertSubnetToL1Tx which transforms a subnet into L1
69
69
  */
70
70
  l1ValidatorManagerDetails?: L1ValidatorManagerDetails;
71
71
  /**
72
- * Details of Subnet-only-Validators registered or changed in the current transaction. The details reflect the state at the time of the transaction, not in real-time
72
+ * Details of L1 validators registered or changed in the current transaction. The details reflect the state at the time of the transaction, not in real-time
73
73
  */
74
- l1ValidatorDetails?: Array<SoVDetailsTransaction>;
74
+ l1ValidatorDetails?: Array<L1ValidatorDetailsTransaction>;
75
75
  /**
76
76
  * Present for AddValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx
77
77
  */
@@ -14,11 +14,11 @@ declare enum PChainTransactionType {
14
14
  ADD_PERMISSIONLESS_DELEGATOR_TX = "AddPermissionlessDelegatorTx",
15
15
  BASE_TX = "BaseTx",
16
16
  TRANSFER_SUBNET_OWNERSHIP_TX = "TransferSubnetOwnershipTx",
17
- CONVERT_SUBNET_TX = "ConvertSubnetTx",
18
- REGISTER_SUBNET_VALIDATOR_TX = "RegisterSubnetValidatorTx",
19
- SET_SUBNET_VALIDATOR_WEIGHT_TX = "SetSubnetValidatorWeightTx",
20
- DISABLE_SUBNET_VALIDATOR_TX = "DisableSubnetValidatorTx",
21
- INCREASE_BALANCE_TX = "IncreaseBalanceTx",
17
+ CONVERT_SUBNET_TO_L1TX = "ConvertSubnetToL1Tx",
18
+ REGISTER_L1VALIDATOR_TX = "RegisterL1ValidatorTx",
19
+ SET_L1VALIDATOR_WEIGHT_TX = "SetL1ValidatorWeightTx",
20
+ DISABLE_L1VALIDATOR_TX = "DisableL1ValidatorTx",
21
+ INCREASE_L1VALIDATOR_BALANCE_TX = "IncreaseL1ValidatorBalanceTx",
22
22
  UNKNOWN = "UNKNOWN"
23
23
  }
24
24
 
@@ -1 +1 @@
1
- var T=(T=>(T.ADD_VALIDATOR_TX="AddValidatorTx",T.ADD_SUBNET_VALIDATOR_TX="AddSubnetValidatorTx",T.ADD_DELEGATOR_TX="AddDelegatorTx",T.CREATE_CHAIN_TX="CreateChainTx",T.CREATE_SUBNET_TX="CreateSubnetTx",T.IMPORT_TX="ImportTx",T.EXPORT_TX="ExportTx",T.ADVANCE_TIME_TX="AdvanceTimeTx",T.REWARD_VALIDATOR_TX="RewardValidatorTx",T.REMOVE_SUBNET_VALIDATOR_TX="RemoveSubnetValidatorTx",T.TRANSFORM_SUBNET_TX="TransformSubnetTx",T.ADD_PERMISSIONLESS_VALIDATOR_TX="AddPermissionlessValidatorTx",T.ADD_PERMISSIONLESS_DELEGATOR_TX="AddPermissionlessDelegatorTx",T.BASE_TX="BaseTx",T.TRANSFER_SUBNET_OWNERSHIP_TX="TransferSubnetOwnershipTx",T.CONVERT_SUBNET_TX="ConvertSubnetTx",T.REGISTER_SUBNET_VALIDATOR_TX="RegisterSubnetValidatorTx",T.SET_SUBNET_VALIDATOR_WEIGHT_TX="SetSubnetValidatorWeightTx",T.DISABLE_SUBNET_VALIDATOR_TX="DisableSubnetValidatorTx",T.INCREASE_BALANCE_TX="IncreaseBalanceTx",T.UNKNOWN="UNKNOWN",T))(T||{});export{T as PChainTransactionType};
1
+ var T=(T=>(T.ADD_VALIDATOR_TX="AddValidatorTx",T.ADD_SUBNET_VALIDATOR_TX="AddSubnetValidatorTx",T.ADD_DELEGATOR_TX="AddDelegatorTx",T.CREATE_CHAIN_TX="CreateChainTx",T.CREATE_SUBNET_TX="CreateSubnetTx",T.IMPORT_TX="ImportTx",T.EXPORT_TX="ExportTx",T.ADVANCE_TIME_TX="AdvanceTimeTx",T.REWARD_VALIDATOR_TX="RewardValidatorTx",T.REMOVE_SUBNET_VALIDATOR_TX="RemoveSubnetValidatorTx",T.TRANSFORM_SUBNET_TX="TransformSubnetTx",T.ADD_PERMISSIONLESS_VALIDATOR_TX="AddPermissionlessValidatorTx",T.ADD_PERMISSIONLESS_DELEGATOR_TX="AddPermissionlessDelegatorTx",T.BASE_TX="BaseTx",T.TRANSFER_SUBNET_OWNERSHIP_TX="TransferSubnetOwnershipTx",T.CONVERT_SUBNET_TO_L1TX="ConvertSubnetToL1Tx",T.REGISTER_L1VALIDATOR_TX="RegisterL1ValidatorTx",T.SET_L1VALIDATOR_WEIGHT_TX="SetL1ValidatorWeightTx",T.DISABLE_L1VALIDATOR_TX="DisableL1ValidatorTx",T.INCREASE_L1VALIDATOR_BALANCE_TX="IncreaseL1ValidatorBalanceTx",T.UNKNOWN="UNKNOWN",T))(T||{});export{T as PChainTransactionType};
@@ -9,8 +9,8 @@ type PrimaryNetworkBlock = {
9
9
  txCount: number;
10
10
  transactions: Array<string>;
11
11
  blockSizeBytes: number;
12
- subnetOnlyValidatorsAccruedFees?: number;
13
- activeSubnetOnlyValidators?: number;
12
+ l1ValidatorsAccruedFees?: number;
13
+ activeL1Validators?: number;
14
14
  currentSupply?: string;
15
15
  proposerDetails?: ProposerDetails;
16
16
  };
@@ -0,0 +1,9 @@
1
+ declare enum PrimaryNetworkRpcMetricsGroupByEnum {
2
+ REQUEST_PATH = "requestPath",
3
+ RESPONSE_CODE = "responseCode",
4
+ COUNTRY = "country",
5
+ CONTINENT = "continent",
6
+ USER_AGENT = "userAgent"
7
+ }
8
+
9
+ export { PrimaryNetworkRpcMetricsGroupByEnum };
@@ -0,0 +1 @@
1
+ var e=(e=>(e.REQUEST_PATH="requestPath",e.RESPONSE_CODE="responseCode",e.COUNTRY="country",e.CONTINENT="continent",e.USER_AGENT="userAgent",e))(e||{});export{e as PrimaryNetworkRpcMetricsGroupByEnum};
@@ -14,11 +14,11 @@ declare enum PrimaryNetworkTxType {
14
14
  ADD_PERMISSIONLESS_DELEGATOR_TX = "AddPermissionlessDelegatorTx",
15
15
  BASE_TX = "BaseTx",
16
16
  TRANSFER_SUBNET_OWNERSHIP_TX = "TransferSubnetOwnershipTx",
17
- CONVERT_SUBNET_TX = "ConvertSubnetTx",
18
- REGISTER_SUBNET_VALIDATOR_TX = "RegisterSubnetValidatorTx",
19
- SET_SUBNET_VALIDATOR_WEIGHT_TX = "SetSubnetValidatorWeightTx",
20
- DISABLE_SUBNET_VALIDATOR_TX = "DisableSubnetValidatorTx",
21
- INCREASE_BALANCE_TX = "IncreaseBalanceTx",
17
+ CONVERT_SUBNET_TO_L1TX = "ConvertSubnetToL1Tx",
18
+ REGISTER_L1VALIDATOR_TX = "RegisterL1ValidatorTx",
19
+ SET_L1VALIDATOR_WEIGHT_TX = "SetL1ValidatorWeightTx",
20
+ DISABLE_L1VALIDATOR_TX = "DisableL1ValidatorTx",
21
+ INCREASE_L1VALIDATOR_BALANCE_TX = "IncreaseL1ValidatorBalanceTx",
22
22
  UNKNOWN = "UNKNOWN",
23
23
  CREATE_ASSET_TX = "CreateAssetTx",
24
24
  OPERATION_TX = "OperationTx"
@@ -1 +1 @@
1
- var T=(T=>(T.ADD_VALIDATOR_TX="AddValidatorTx",T.ADD_SUBNET_VALIDATOR_TX="AddSubnetValidatorTx",T.ADD_DELEGATOR_TX="AddDelegatorTx",T.CREATE_CHAIN_TX="CreateChainTx",T.CREATE_SUBNET_TX="CreateSubnetTx",T.IMPORT_TX="ImportTx",T.EXPORT_TX="ExportTx",T.ADVANCE_TIME_TX="AdvanceTimeTx",T.REWARD_VALIDATOR_TX="RewardValidatorTx",T.REMOVE_SUBNET_VALIDATOR_TX="RemoveSubnetValidatorTx",T.TRANSFORM_SUBNET_TX="TransformSubnetTx",T.ADD_PERMISSIONLESS_VALIDATOR_TX="AddPermissionlessValidatorTx",T.ADD_PERMISSIONLESS_DELEGATOR_TX="AddPermissionlessDelegatorTx",T.BASE_TX="BaseTx",T.TRANSFER_SUBNET_OWNERSHIP_TX="TransferSubnetOwnershipTx",T.CONVERT_SUBNET_TX="ConvertSubnetTx",T.REGISTER_SUBNET_VALIDATOR_TX="RegisterSubnetValidatorTx",T.SET_SUBNET_VALIDATOR_WEIGHT_TX="SetSubnetValidatorWeightTx",T.DISABLE_SUBNET_VALIDATOR_TX="DisableSubnetValidatorTx",T.INCREASE_BALANCE_TX="IncreaseBalanceTx",T.UNKNOWN="UNKNOWN",T.CREATE_ASSET_TX="CreateAssetTx",T.OPERATION_TX="OperationTx",T))(T||{});export{T as PrimaryNetworkTxType};
1
+ var T=(T=>(T.ADD_VALIDATOR_TX="AddValidatorTx",T.ADD_SUBNET_VALIDATOR_TX="AddSubnetValidatorTx",T.ADD_DELEGATOR_TX="AddDelegatorTx",T.CREATE_CHAIN_TX="CreateChainTx",T.CREATE_SUBNET_TX="CreateSubnetTx",T.IMPORT_TX="ImportTx",T.EXPORT_TX="ExportTx",T.ADVANCE_TIME_TX="AdvanceTimeTx",T.REWARD_VALIDATOR_TX="RewardValidatorTx",T.REMOVE_SUBNET_VALIDATOR_TX="RemoveSubnetValidatorTx",T.TRANSFORM_SUBNET_TX="TransformSubnetTx",T.ADD_PERMISSIONLESS_VALIDATOR_TX="AddPermissionlessValidatorTx",T.ADD_PERMISSIONLESS_DELEGATOR_TX="AddPermissionlessDelegatorTx",T.BASE_TX="BaseTx",T.TRANSFER_SUBNET_OWNERSHIP_TX="TransferSubnetOwnershipTx",T.CONVERT_SUBNET_TO_L1TX="ConvertSubnetToL1Tx",T.REGISTER_L1VALIDATOR_TX="RegisterL1ValidatorTx",T.SET_L1VALIDATOR_WEIGHT_TX="SetL1ValidatorWeightTx",T.DISABLE_L1VALIDATOR_TX="DisableL1ValidatorTx",T.INCREASE_L1VALIDATOR_BALANCE_TX="IncreaseL1ValidatorBalanceTx",T.UNKNOWN="UNKNOWN",T.CREATE_ASSET_TX="CreateAssetTx",T.OPERATION_TX="OperationTx",T))(T||{});export{T as PrimaryNetworkTxType};
@@ -0,0 +1,7 @@
1
+ declare enum RpcUsageMetricsGroupByEnum {
2
+ RPC_METHOD = "rpcMethod",
3
+ RESPONSE_CODE = "responseCode",
4
+ RL_BYPASS_TOKEN = "rlBypassToken"
5
+ }
6
+
7
+ export { RpcUsageMetricsGroupByEnum };
@@ -0,0 +1 @@
1
+ var e=(e=>(e.RPC_METHOD="rpcMethod",e.RESPONSE_CODE="responseCode",e.RL_BYPASS_TOKEN="rlBypassToken",e))(e||{});export{e as RpcUsageMetricsGroupByEnum};
@@ -23,6 +23,10 @@ type RpcUsageMetricsValueAggregated = {
23
23
  * The number of invalid requests
24
24
  */
25
25
  invalidRequests: number;
26
+ /**
27
+ * The number of API credits wasted on invalid requests
28
+ */
29
+ apiCreditsWasted: number;
26
30
  /**
27
31
  * Column name used for data aggregation
28
32
  */
@@ -1,11 +1,5 @@
1
1
  type SignatureAggregatorRequest = {
2
- /**
3
- * Must be defined if justification is not defined
4
- */
5
- message?: string;
6
- /**
7
- * Must be defined if message is not defined
8
- */
2
+ message: string;
9
3
  justification?: string;
10
4
  signingSubnetId?: string;
11
5
  quorumPercentage?: number;
@@ -29,6 +29,10 @@ type Subnet = {
29
29
  * Whether the subnet is an L1 or not.
30
30
  */
31
31
  isL1: boolean;
32
+ /**
33
+ * Transaction hash of ConvertSubnetToL1Tx which converted this Subnet to L1.
34
+ */
35
+ l1ConversionTransactionHash?: string;
32
36
  /**
33
37
  * L1 validator manager details.
34
38
  */
@@ -0,0 +1,8 @@
1
+ declare enum SubnetRpcTimeIntervalGranularity {
2
+ HOURLY = "hourly",
3
+ DAILY = "daily",
4
+ WEEKLY = "weekly",
5
+ MONTHLY = "monthly"
6
+ }
7
+
8
+ export { SubnetRpcTimeIntervalGranularity };
@@ -0,0 +1 @@
1
+ var l=(l=>(l.HOURLY="hourly",l.DAILY="daily",l.WEEKLY="weekly",l.MONTHLY="monthly",l))(l||{});export{l as SubnetRpcTimeIntervalGranularity};
@@ -1,18 +1,18 @@
1
1
  import { RpcMetrics } from './RpcMetrics.js';
2
2
 
3
- type RpcUsageMetricsResponseDTO = {
3
+ type SubnetRpcUsageMetricsResponseDTO = {
4
4
  /**
5
5
  * Duration in which the metrics value is aggregated
6
6
  */
7
7
  aggregateDuration: string;
8
- /**
9
- * ChainId for which the metrics are aggregated
10
- */
11
- chainId: string;
12
8
  /**
13
9
  * Metrics values
14
10
  */
15
11
  metrics: Array<RpcMetrics>;
12
+ /**
13
+ * ChainId for which the metrics are aggregated
14
+ */
15
+ chainId: string;
16
16
  };
17
17
 
18
- export { RpcUsageMetricsResponseDTO };
18
+ export { SubnetRpcUsageMetricsResponseDTO };
@@ -5,6 +5,9 @@ type UpdateWebhookRequest = {
5
5
  description?: string;
6
6
  url?: string;
7
7
  status?: WebhookStatusType;
8
+ /**
9
+ * Whether to include traces in the webhook payload. Traces are only available for C-Chain on chainId 43113 and 43114.
10
+ */
8
11
  includeInternalTxs?: boolean;
9
12
  includeLogs?: boolean;
10
13
  };
@@ -1,5 +1,9 @@
1
1
  import { LogsResponseDTO } from '../models/LogsResponseDTO.js';
2
- import { RpcUsageMetricsResponseDTO } from '../models/RpcUsageMetricsResponseDTO.js';
2
+ import { Network } from '../models/Network.js';
3
+ import { PrimaryNetworkRpcMetricsGroupByEnum } from '../models/PrimaryNetworkRpcMetricsGroupByEnum.js';
4
+ import { RpcUsageMetricsGroupByEnum } from '../models/RpcUsageMetricsGroupByEnum.js';
5
+ import { SubnetRpcTimeIntervalGranularity } from '../models/SubnetRpcTimeIntervalGranularity.js';
6
+ import { SubnetRpcUsageMetricsResponseDTO } from '../models/SubnetRpcUsageMetricsResponseDTO.js';
3
7
  import { TimeIntervalGranularityExtended } from '../models/TimeIntervalGranularityExtended.js';
4
8
  import { UsageMetricsGroupByEnum } from '../models/UsageMetricsGroupByEnum.js';
5
9
  import { UsageMetricsResponseDTO } from '../models/UsageMetricsResponseDTO.js';
@@ -15,7 +19,7 @@ declare class DataApiUsageMetricsService {
15
19
  * @returns UsageMetricsResponseDTO Successful response
16
20
  * @throws ApiError
17
21
  */
18
- getApiUsageMetrics({ orgId, startTimestamp, endTimestamp, timeInterval, groupBy, chainId, requestPath, responseCode, requestType, apiKeyId, }: {
22
+ getApiUsageMetrics({ orgId, startTimestamp, endTimestamp, timeInterval, groupBy, chainId, responseCode, requestType, apiKeyId, requestPath, }: {
19
23
  /**
20
24
  * Organization ID to fetch usage metrics for
21
25
  */
@@ -40,10 +44,6 @@ declare class DataApiUsageMetricsService {
40
44
  * Filter data by chain ID.
41
45
  */
42
46
  chainId?: string;
43
- /**
44
- * Filter data by request path.
45
- */
46
- requestPath?: string;
47
47
  /**
48
48
  * Filter data by response status code.
49
49
  */
@@ -56,6 +56,10 @@ declare class DataApiUsageMetricsService {
56
56
  * Filter data by API key ID.
57
57
  */
58
58
  apiKeyId?: string;
59
+ /**
60
+ * Filter data by request path.
61
+ */
62
+ requestPath?: string;
59
63
  }): CancelablePromise<UsageMetricsResponseDTO>;
60
64
  /**
61
65
  * Get logs for requests made by client
@@ -63,7 +67,7 @@ declare class DataApiUsageMetricsService {
63
67
  * @returns LogsResponseDTO Successful response
64
68
  * @throws ApiError
65
69
  */
66
- getApiLogs({ orgId, startTimestamp, endTimestamp, chainId, requestPath, responseCode, requestType, apiKeyId, pageToken, pageSize, }: {
70
+ getApiLogs({ orgId, startTimestamp, endTimestamp, chainId, responseCode, requestType, apiKeyId, requestPath, pageToken, pageSize, }: {
67
71
  /**
68
72
  * Organization ID to fetch usage metrics for
69
73
  */
@@ -80,10 +84,6 @@ declare class DataApiUsageMetricsService {
80
84
  * Filter data by chain ID.
81
85
  */
82
86
  chainId?: string;
83
- /**
84
- * Filter data by request path.
85
- */
86
- requestPath?: string;
87
87
  /**
88
88
  * Filter data by response status code.
89
89
  */
@@ -96,6 +96,10 @@ declare class DataApiUsageMetricsService {
96
96
  * Filter data by API key ID.
97
97
  */
98
98
  apiKeyId?: string;
99
+ /**
100
+ * Filter data by request path.
101
+ */
102
+ requestPath?: string;
99
103
  /**
100
104
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
101
105
  */
@@ -107,15 +111,16 @@ declare class DataApiUsageMetricsService {
107
111
  }): CancelablePromise<LogsResponseDTO>;
108
112
  /**
109
113
  * Get usage metrics for the Subnet RPC
110
- * Gets metrics for Subnet RPC usage over a specified time interval aggregated at the specified time-duration granularity.
111
- * @returns RpcUsageMetricsResponseDTO Successful response
114
+ * Gets metrics for public Subnet RPC usage over a specified time interval aggregated at the specified time-duration granularity.
115
+ * @returns SubnetRpcUsageMetricsResponseDTO Successful response
112
116
  * @throws ApiError
113
117
  */
114
- getRpcUsageMetrics({ timeInterval, startTimestamp, endTimestamp, groupBy, chainId, requestPath, responseCode, rpcMethod, rlBypassApiToken, }: {
118
+ getRpcUsageMetrics({ timeInterval, startTimestamp, endTimestamp, groupBy, chainId, responseCode, rpcMethod, rlBypassApiToken, }: {
115
119
  /**
116
- * Query param for setting time interval of data aggregation.
120
+ * Time interval granularity for data aggregation for subnet
121
+ * rpc metrics
117
122
  */
118
- timeInterval?: string;
123
+ timeInterval?: SubnetRpcTimeIntervalGranularity;
119
124
  /**
120
125
  * The start time of the range as a UNIX timestamp. The requested start time will be rounded down to 0:00 UTC of the day.
121
126
  */
@@ -127,15 +132,11 @@ declare class DataApiUsageMetricsService {
127
132
  /**
128
133
  * Query param for the criterion used for grouping metrics
129
134
  */
130
- groupBy?: UsageMetricsGroupByEnum;
135
+ groupBy?: RpcUsageMetricsGroupByEnum;
131
136
  /**
132
137
  * Filter data by chain ID.
133
138
  */
134
139
  chainId?: string;
135
- /**
136
- * Filter data by request path.
137
- */
138
- requestPath?: string;
139
140
  /**
140
141
  * Filter data by response status code.
141
142
  */
@@ -148,7 +149,56 @@ declare class DataApiUsageMetricsService {
148
149
  * Filter data by Rl Bypass API Token.
149
150
  */
150
151
  rlBypassApiToken?: string;
151
- }): CancelablePromise<RpcUsageMetricsResponseDTO>;
152
+ }): CancelablePromise<SubnetRpcUsageMetricsResponseDTO>;
153
+ /**
154
+ * Get usage metrics for the Primary Network RPC
155
+ * Gets metrics for public Primary Network RPC usage over a specified time interval aggregated at the specified time-duration granularity.
156
+ * @returns SubnetRpcUsageMetricsResponseDTO Successful response
157
+ * @throws ApiError
158
+ */
159
+ getPrimaryNetworkRpcUsageMetrics({ network, timeInterval, startTimestamp, endTimestamp, groupBy, responseCode, requestPath, country, continent, userAgent, }: {
160
+ /**
161
+ * Either mainnet or testnet/fuji.
162
+ */
163
+ network: Network;
164
+ /**
165
+ * Time interval granularity for data aggregation for subnet
166
+ * rpc metrics
167
+ */
168
+ timeInterval?: SubnetRpcTimeIntervalGranularity;
169
+ /**
170
+ * The start time of the range as a UNIX timestamp. The requested start time will be rounded down to 0:00 UTC of the day.
171
+ */
172
+ startTimestamp?: number;
173
+ /**
174
+ * The end time of the range as a UNIX timestamp. The requested end time will be rounded down to 0:00 UTC of the day.
175
+ */
176
+ endTimestamp?: number;
177
+ /**
178
+ * Query param for the criterion used for grouping metrics
179
+ */
180
+ groupBy?: PrimaryNetworkRpcMetricsGroupByEnum;
181
+ /**
182
+ * Filter data by response status code.
183
+ */
184
+ responseCode?: string;
185
+ /**
186
+ * Filter data by request path.
187
+ */
188
+ requestPath?: string;
189
+ /**
190
+ * Filter data by Country.
191
+ */
192
+ country?: string;
193
+ /**
194
+ * Filter data by Continent.
195
+ */
196
+ continent?: string;
197
+ /**
198
+ * Filter data by User Agent.
199
+ */
200
+ userAgent?: string;
201
+ }): CancelablePromise<SubnetRpcUsageMetricsResponseDTO>;
152
202
  }
153
203
 
154
204
  export { DataApiUsageMetricsService };
@@ -1 +1 @@
1
- class e{constructor(e){this.httpRequest=e}getApiUsageMetrics({orgId:e,startTimestamp:r,endTimestamp:t,timeInterval:s,groupBy:n,chainId:a,requestPath:i,responseCode:o,requestType:h,apiKeyId:d}){return this.httpRequest.request({method:"GET",url:"/v1/apiUsageMetrics",query:{orgId:e,startTimestamp:r,endTimestamp:t,timeInterval:s,groupBy:n,chainId:a,requestPath:i,responseCode:o,requestType:h,apiKeyId:d},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}getApiLogs({orgId:e,startTimestamp:r,endTimestamp:t,chainId:s,requestPath:n,responseCode:a,requestType:i,apiKeyId:o,pageToken:h,pageSize:d=10}){return this.httpRequest.request({method:"GET",url:"/v1/apiLogs",query:{orgId:e,startTimestamp:r,endTimestamp:t,chainId:s,requestPath:n,responseCode:a,requestType:i,apiKeyId:o,pageToken:h,pageSize:d},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}getRpcUsageMetrics({timeInterval:e="day",startTimestamp:r,endTimestamp:t,groupBy:s,chainId:n,requestPath:a,responseCode:i,rpcMethod:o,rlBypassApiToken:h}){return this.httpRequest.request({method:"GET",url:"/v1/rpcUsageMetrics",query:{timeInterval:e,startTimestamp:r,endTimestamp:t,groupBy:s,chainId:n,requestPath:a,responseCode:i,rpcMethod:o,rlBypassApiToken:h},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}}export{e as DataApiUsageMetricsService};
1
+ class e{constructor(e){this.httpRequest=e}getApiUsageMetrics({orgId:e,startTimestamp:r,endTimestamp:t,timeInterval:s,groupBy:n,chainId:a,responseCode:i,requestType:o,apiKeyId:h,requestPath:d}){return this.httpRequest.request({method:"GET",url:"/v1/apiUsageMetrics",query:{orgId:e,startTimestamp:r,endTimestamp:t,timeInterval:s,groupBy:n,chainId:a,responseCode:i,requestType:o,apiKeyId:h,requestPath:d},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}getApiLogs({orgId:e,startTimestamp:r,endTimestamp:t,chainId:s,responseCode:n,requestType:a,apiKeyId:i,requestPath:o,pageToken:h,pageSize:d=10}){return this.httpRequest.request({method:"GET",url:"/v1/apiLogs",query:{orgId:e,startTimestamp:r,endTimestamp:t,chainId:s,responseCode:n,requestType:a,apiKeyId:i,requestPath:o,pageToken:h,pageSize:d},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}getRpcUsageMetrics({timeInterval:e,startTimestamp:r,endTimestamp:t,groupBy:s,chainId:n,responseCode:a,rpcMethod:i,rlBypassApiToken:o}){return this.httpRequest.request({method:"GET",url:"/v1/rpcUsageMetrics",query:{timeInterval:e,startTimestamp:r,endTimestamp:t,groupBy:s,chainId:n,responseCode:a,rpcMethod:i,rlBypassApiToken:o},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}getPrimaryNetworkRpcUsageMetrics({network:e,timeInterval:r,startTimestamp:t,endTimestamp:s,groupBy:n,responseCode:a,requestPath:i,country:o,continent:h,userAgent:d}){return this.httpRequest.request({method:"GET",url:"/v1/primaryNetworkRpcUsageMetrics",query:{timeInterval:r,startTimestamp:t,endTimestamp:s,groupBy:n,responseCode:a,requestPath:i,country:o,continent:h,userAgent:d,network:e},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}}export{e as DataApiUsageMetricsService};