zklighter-perps 1.0.279 → 1.0.280

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.
@@ -49,6 +49,12 @@ export interface StockFinancialProfile {
49
49
  * @memberof StockFinancialProfile
50
50
  */
51
51
  country: string;
52
+ /**
53
+ *
54
+ * @type {number}
55
+ * @memberof StockFinancialProfile
56
+ */
57
+ market_cap: number;
52
58
  }
53
59
 
54
60
  /**
@@ -60,6 +66,7 @@ export function instanceOfStockFinancialProfile(value: object): value is StockFi
60
66
  if (!('industry' in value) || value['industry'] === undefined) return false;
61
67
  if (!('sector' in value) || value['sector'] === undefined) return false;
62
68
  if (!('country' in value) || value['country'] === undefined) return false;
69
+ if (!('market_cap' in value) || value['market_cap'] === undefined) return false;
63
70
  return true;
64
71
  }
65
72
 
@@ -78,6 +85,7 @@ export function StockFinancialProfileFromJSONTyped(json: any, ignoreDiscriminato
78
85
  'industry': json['industry'],
79
86
  'sector': json['sector'],
80
87
  'country': json['country'],
88
+ 'market_cap': json['market_cap'],
81
89
  };
82
90
  }
83
91
 
@@ -92,6 +100,7 @@ export function StockFinancialProfileToJSON(value?: StockFinancialProfile | null
92
100
  'industry': value['industry'],
93
101
  'sector': value['sector'],
94
102
  'country': value['country'],
103
+ 'market_cap': value['market_cap'],
95
104
  };
96
105
  }
97
106
 
package/openapi.json CHANGED
@@ -14862,6 +14862,10 @@
14862
14862
  },
14863
14863
  "country": {
14864
14864
  "type": "string"
14865
+ },
14866
+ "market_cap": {
14867
+ "type": "number",
14868
+ "format": "double"
14865
14869
  }
14866
14870
  },
14867
14871
  "title": "StockFinancialProfile",
@@ -14870,7 +14874,8 @@
14870
14874
  "exchange",
14871
14875
  "industry",
14872
14876
  "sector",
14873
- "country"
14877
+ "country",
14878
+ "market_cap"
14874
14879
  ]
14875
14880
  },
14876
14881
  "StockFinancialStatements": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zklighter-perps",
3
- "version": "1.0.279",
3
+ "version": "1.0.280",
4
4
  "description": "Lighter Perps SDK",
5
5
  "main": "index.ts",
6
6
  "directories": {