colibris-types 1.0.32 → 1.0.33

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/lib/index.d.ts +7 -0
  2. package/package.json +1 -1
package/lib/index.d.ts CHANGED
@@ -1373,3 +1373,10 @@ export type ComputerUpload = z.infer<typeof ComputerUpload>;
1373
1373
  export type ComputerUploadType = typeof ComputerUpload;
1374
1374
  export type LicenseTraceUpload = z.infer<typeof LicenseTraceUpload>;
1375
1375
  export type LicenseTraceUploadType = typeof LicenseTraceUpload;
1376
+ export type ImportsHistory = {
1377
+ companyName: string;
1378
+ status: "success" | "error" | "pending";
1379
+ srcUrl: string;
1380
+ date: string;
1381
+ error?: string;
1382
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "colibris-types",
3
- "version": "1.0.32",
3
+ "version": "1.0.33",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "type": "module",