tornapi-typescript 6.13.0 → 6.13.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -2109,6 +2109,7 @@ export interface FactionInventoryItem {
2109
2109
  name: string;
2110
2110
  type: MarketSpecializedBazaarCategoryEnum;
2111
2111
  amount: number;
2112
+ /** Returns up to 250 uids. */
2112
2113
  uids: ItemUid[];
2113
2114
  loaned: {
2114
2115
  id: UserId;
package/dist/index.ts CHANGED
@@ -7717,6 +7717,7 @@ export interface FactionInventoryItem {
7717
7717
  name: string;
7718
7718
  type: MarketSpecializedBazaarCategoryEnum;
7719
7719
  amount: number;
7720
+ /** Returns up to 250 uids. */
7720
7721
  uids: ItemUid[];
7721
7722
  loaned: {
7722
7723
  id: UserId;
package/dist/openapi.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "info": {
4
4
  "title": "Torn API",
5
5
  "description": "\n * The development of Torn's API v2 is still ongoing.\n * If selections remain unaltered, they will default to the API v1 version.\n * Unlike API v1, API v2 accepts both selections and IDs as path and query parameters.\n * If any discrepancies or errors are found, please submit a [bug report](https://www.torn.com/forums.php#/p=forums&f=19&b=0&a=0) on the Torn Forums.\n * In case you're using bots to check for changes on openapi.json file, make sure to specificy a custom user-agent header - CloudFlare sometimes prevents requests from default user-agents.",
6
- "version": "6.13.0"
6
+ "version": "6.13.1"
7
7
  },
8
8
  "servers": [
9
9
  {
@@ -27609,6 +27609,7 @@
27609
27609
  "format": "int32"
27610
27610
  },
27611
27611
  "uids": {
27612
+ "description": "Returns up to 250 uids.",
27612
27613
  "type": "array",
27613
27614
  "items": {
27614
27615
  "$ref": "#/components/schemas/ItemUid"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tornapi-typescript",
3
3
  "type": "module",
4
- "version": "6.13.0",
4
+ "version": "6.13.1",
5
5
  "repository": {
6
6
  "url": "git+https://github.com/Torn-Playground/tornapi-typescript.git"
7
7
  },