@mivis/petmart-api 1.2.206 → 1.2.207

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 (2) hide show
  1. package/package.json +1 -1
  2. package/type.d.ts +6 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mivis/petmart-api",
3
- "version": "1.2.206",
3
+ "version": "1.2.207",
4
4
  "main": "index.js",
5
5
  "types": "type.d.ts",
6
6
  "license": "ISC",
package/type.d.ts CHANGED
@@ -1721,7 +1721,7 @@ declare namespace Components {
1721
1721
  reg_number: string | null;
1722
1722
  genealogy: string | null;
1723
1723
  birthplace: string | null;
1724
- documents: string[];
1724
+ documents: IDocument[];
1725
1725
  competition_history: ICompetitionHistory[] | null;
1726
1726
  communication: ICommunication;
1727
1727
  telegram_message_id: string | null;
@@ -1731,6 +1731,11 @@ declare namespace Components {
1731
1731
  updatedAt: Date;
1732
1732
  }
1733
1733
 
1734
+ export interface IDocument {
1735
+ name: string;
1736
+ fileName: string;
1737
+ }
1738
+
1734
1739
  export interface IPopulatedHorse
1735
1740
  extends Omit<IHorse, 'user_id' | 'breed' | 'suit' | 'category'> {
1736
1741
  user_id: IPopulatedOrderUserApp;