@xoxno/types 1.0.415 → 1.0.417

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.
@@ -9,6 +9,7 @@ declare class TokenDataDocBase {
9
9
  chain: ActivityChain;
10
10
  network?: string;
11
11
  stellarNetwork?: 'mainnet' | 'testnet';
12
+ issuer?: string;
12
13
  constructor(props?: Partial<TokenDataDocBase>);
13
14
  }
14
15
  export declare class TokenDataDoc extends TokenDataDocBase {
@@ -93,6 +93,15 @@ __decorate([
93
93
  }),
94
94
  __metadata("design:type", String)
95
95
  ], TokenDataDocBase.prototype, "stellarNetwork", void 0);
96
+ __decorate([
97
+ (0, swagger_1.ApiProperty)({
98
+ type: String,
99
+ required: false,
100
+ description: 'Issuer account (G…) of a Stellar classic asset. Absent for native XLM and pure-Soroban tokens. Lets clients build a changeTrust trustline without an on-chain name() lookup.',
101
+ example: 'GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN',
102
+ }),
103
+ __metadata("design:type", String)
104
+ ], TokenDataDocBase.prototype, "issuer", void 0);
96
105
  class TokenDataDoc extends TokenDataDocBase {
97
106
  constructor(props) {
98
107
  super(props);
@@ -31,7 +31,6 @@ export declare class AssetConfigRawDto {
31
31
  liquidationFeesBps: number;
32
32
  isCollateralizable: boolean;
33
33
  isBorrowable: boolean;
34
- isSiloedBorrowing: boolean;
35
34
  isFlashloanable: boolean;
36
35
  flashloanFeeBps: number;
37
36
  borrowCap: string;
@@ -108,10 +108,6 @@ __decorate([
108
108
  (0, swagger_1.ApiProperty)({ description: 'Whether the asset can be borrowed' }),
109
109
  __metadata("design:type", Boolean)
110
110
  ], AssetConfigRawDto.prototype, "isBorrowable", void 0);
111
- __decorate([
112
- (0, swagger_1.ApiProperty)({ description: 'Whether the asset uses siloed borrowing' }),
113
- __metadata("design:type", Boolean)
114
- ], AssetConfigRawDto.prototype, "isSiloedBorrowing", void 0);
115
111
  __decorate([
116
112
  (0, swagger_1.ApiProperty)({ description: 'Whether the asset can be flash-loaned' }),
117
113
  __metadata("design:type", Boolean)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xoxno/types",
3
- "version": "1.0.415",
3
+ "version": "1.0.417",
4
4
  "description": "Shared types and utilities for XOXNO API.",
5
5
  "exports": {
6
6
  ".": {