@nicefer/types 1.0.178 → 1.0.180

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/api.d.ts CHANGED
@@ -9,4 +9,3 @@ export interface ApiResponse<Data, ErrorCodes = string> {
9
9
  error?: ErrorCodes;
10
10
  data?: Data;
11
11
  }
12
- //# sourceMappingURL=api.d.ts.map
package/dist/bag.d.ts CHANGED
@@ -33,4 +33,3 @@ export interface ProductWithVariantInBag {
33
33
  createdAt: string;
34
34
  updatedAt?: string;
35
35
  }
36
- //# sourceMappingURL=bag.d.ts.map
package/dist/branch.d.ts CHANGED
@@ -18,4 +18,3 @@ export interface BranchFK {
18
18
  id: string;
19
19
  name: string;
20
20
  }
21
- //# sourceMappingURL=branch.d.ts.map
package/dist/company.d.ts CHANGED
@@ -8,4 +8,3 @@ export interface CompanyFK {
8
8
  id: string;
9
9
  displayName: string;
10
10
  }
11
- //# sourceMappingURL=company.d.ts.map
@@ -29,4 +29,3 @@ export declare function getRegionsByCountryId(id: 'HN' | 'US' | 'SV'): Region[]
29
29
  */
30
30
  export declare const compareCountries: (c1: Country, c2: Country) => boolean;
31
31
  export declare const compareRegions: (r1: Region, r2: Region) => boolean;
32
- //# sourceMappingURL=countries.d.ts.map
package/dist/index.d.ts CHANGED
@@ -13,4 +13,3 @@ export * from './users';
13
13
  export * from './warehouses';
14
14
  export * from './translations';
15
15
  export * from './company';
16
- //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1,2 @@
1
+ export * from './org/radar';
2
+ export * from './org/event';
@@ -0,0 +1,2 @@
1
+ export * from './org/radar';
2
+ export * from './org/event';
package/dist/orders.d.ts CHANGED
@@ -101,4 +101,3 @@ export interface OrderReady {
101
101
  export interface OrdersReady {
102
102
  [warehouseId: string]: OrderReady;
103
103
  }
104
- //# sourceMappingURL=orders.d.ts.map
@@ -15,4 +15,3 @@ export interface NiceEvent {
15
15
  createdAt: string;
16
16
  updatedAt?: string;
17
17
  }
18
- //# sourceMappingURL=event.d.ts.map
@@ -1,3 +1,2 @@
1
- export * from './radar';
2
- export * from './event';
3
- //# sourceMappingURL=index.d.mts.map
1
+ export * from './radar.js';
2
+ export * from './event.js';
@@ -0,0 +1,2 @@
1
+ export * from './radar.js';
2
+ export * from './event.js';
@@ -77,4 +77,3 @@ export interface Donation {
77
77
  };
78
78
  createdAt?: string;
79
79
  }
80
- //# sourceMappingURL=radar.d.ts.map
@@ -68,4 +68,3 @@ export interface StripePaymentIntentResponse {
68
68
  currency: string;
69
69
  }
70
70
  export type PaymentErrorCodes = 'ERR_PAYMENT' | 'ERR_REINTENT_PAYMENT' | 'authentication_required' | 'requires_action';
71
- //# sourceMappingURL=payments.d.ts.map
@@ -27,4 +27,3 @@ export interface ProductCategoryInDB {
27
27
  id: string;
28
28
  subcategory: string;
29
29
  }
30
- //# sourceMappingURL=product-category.d.ts.map
@@ -139,4 +139,3 @@ export interface ProductGroupVariant {
139
139
  dataFromServer: boolean;
140
140
  }
141
141
  export {};
142
- //# sourceMappingURL=products.d.ts.map
@@ -97,4 +97,3 @@ export interface RPackage {
97
97
  */
98
98
  createdAt: string;
99
99
  }
100
- //# sourceMappingURL=replenishment.d.ts.map
package/dist/stats.d.ts CHANGED
@@ -11,4 +11,3 @@ export interface UserStats {
11
11
  };
12
12
  qtyReferrals?: number;
13
13
  }
14
- //# sourceMappingURL=stats.d.ts.map
@@ -1,4 +1,3 @@
1
1
  export interface Translations<T = any> {
2
2
  [key: string]: T;
3
3
  }
4
- //# sourceMappingURL=translations.d.ts.map
package/dist/users.d.ts CHANGED
@@ -82,4 +82,3 @@ export interface UserSearch {
82
82
  tags: string[];
83
83
  createdAt: string;
84
84
  }
85
- //# sourceMappingURL=users.d.ts.map
@@ -45,4 +45,3 @@ export interface DeliveryMethod {
45
45
  */
46
46
  maxLbPerFee: number;
47
47
  }
48
- //# sourceMappingURL=warehouses.d.ts.map
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@nicefer/types",
3
- "version": "1.0.178",
3
+ "version": "1.0.180",
4
4
  "description": "Tipos compartidos para Nicefer",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
7
+ "typings": "./dist/index.d.ts",
7
8
  "files": [
8
9
  "dist"
9
10
  ],