@fiado/type-kit 1.8.53 → 1.8.55
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/bin/collector/dtos/CollectionOrderItem.d.ts +23 -0
- package/bin/collector/dtos/CollectionOrderItem.js +89 -0
- package/bin/collector/dtos/CreateCollectionOrderRequest.d.ts +6 -0
- package/bin/collector/dtos/CreateCollectionOrderRequest.js +34 -0
- package/bin/collector/enums/CollectorOrderStatus.d.ts +19 -0
- package/bin/collector/enums/CollectorOrderStatus.js +23 -0
- package/bin/collector/index.d.ts +3 -0
- package/bin/collector/index.js +19 -0
- package/bin/index.d.ts +1 -0
- package/bin/index.js +2 -1
- package/bin/pricelist/dtos/GetPriceListDirectoriesResponse.d.ts +1 -1
- package/package.json +1 -1
- package/src/collector/dtos/CollectionOrderItem.ts +71 -0
- package/src/collector/dtos/CreateCollectionOrderRequest.ts +17 -0
- package/src/collector/enums/CollectorOrderStatus.ts +20 -0
- package/src/collector/index.ts +5 -0
- package/src/index.ts +2 -1
- package/src/pricelist/dtos/GetPriceListDirectoriesResponse.ts +1 -1
- package/src/aa.json +0 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { CollectorOrderStatus } from '../enums/CollectorOrderStatus';
|
|
2
|
+
import { CountryId } from '../../country';
|
|
3
|
+
import { Company } from '../../company';
|
|
4
|
+
import { Provider } from '../../provider/enums/Provider';
|
|
5
|
+
export declare class CollectionOrderItem {
|
|
6
|
+
id: string;
|
|
7
|
+
directoryId: string;
|
|
8
|
+
peopleId: string;
|
|
9
|
+
status: CollectorOrderStatus;
|
|
10
|
+
servicePriceListId: string;
|
|
11
|
+
currencyId: CountryId;
|
|
12
|
+
notional: number;
|
|
13
|
+
originalAmount: number;
|
|
14
|
+
discountAmount: number;
|
|
15
|
+
amountAfterDiscount: number;
|
|
16
|
+
taxAmount: number;
|
|
17
|
+
totalToCollect: number;
|
|
18
|
+
scheduleCollectionDate: number;
|
|
19
|
+
company: Company;
|
|
20
|
+
type: string;
|
|
21
|
+
notes?: string;
|
|
22
|
+
provider: Provider;
|
|
23
|
+
}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.CollectionOrderItem = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
const CollectorOrderStatus_1 = require("../enums/CollectorOrderStatus");
|
|
15
|
+
const country_1 = require("../../country");
|
|
16
|
+
const company_1 = require("../../company");
|
|
17
|
+
const Provider_1 = require("../../provider/enums/Provider");
|
|
18
|
+
class CollectionOrderItem {
|
|
19
|
+
}
|
|
20
|
+
exports.CollectionOrderItem = CollectionOrderItem;
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, class_validator_1.IsUUID)(),
|
|
23
|
+
__metadata("design:type", String)
|
|
24
|
+
], CollectionOrderItem.prototype, "id", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, class_validator_1.IsString)(),
|
|
27
|
+
__metadata("design:type", String)
|
|
28
|
+
], CollectionOrderItem.prototype, "directoryId", void 0);
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, class_validator_1.IsString)(),
|
|
31
|
+
__metadata("design:type", String)
|
|
32
|
+
], CollectionOrderItem.prototype, "peopleId", void 0);
|
|
33
|
+
__decorate([
|
|
34
|
+
(0, class_validator_1.IsEnum)(CollectorOrderStatus_1.CollectorOrderStatus),
|
|
35
|
+
__metadata("design:type", String)
|
|
36
|
+
], CollectionOrderItem.prototype, "status", void 0);
|
|
37
|
+
__decorate([
|
|
38
|
+
(0, class_validator_1.IsString)(),
|
|
39
|
+
__metadata("design:type", String)
|
|
40
|
+
], CollectionOrderItem.prototype, "servicePriceListId", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, class_validator_1.IsEnum)(country_1.CountryId),
|
|
43
|
+
__metadata("design:type", String)
|
|
44
|
+
], CollectionOrderItem.prototype, "currencyId", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, class_validator_1.IsNumber)(),
|
|
47
|
+
__metadata("design:type", Number)
|
|
48
|
+
], CollectionOrderItem.prototype, "notional", void 0);
|
|
49
|
+
__decorate([
|
|
50
|
+
(0, class_validator_1.IsNumber)(),
|
|
51
|
+
__metadata("design:type", Number)
|
|
52
|
+
], CollectionOrderItem.prototype, "originalAmount", void 0);
|
|
53
|
+
__decorate([
|
|
54
|
+
(0, class_validator_1.IsNumber)(),
|
|
55
|
+
__metadata("design:type", Number)
|
|
56
|
+
], CollectionOrderItem.prototype, "discountAmount", void 0);
|
|
57
|
+
__decorate([
|
|
58
|
+
(0, class_validator_1.IsNumber)(),
|
|
59
|
+
__metadata("design:type", Number)
|
|
60
|
+
], CollectionOrderItem.prototype, "amountAfterDiscount", void 0);
|
|
61
|
+
__decorate([
|
|
62
|
+
(0, class_validator_1.IsNumber)(),
|
|
63
|
+
__metadata("design:type", Number)
|
|
64
|
+
], CollectionOrderItem.prototype, "taxAmount", void 0);
|
|
65
|
+
__decorate([
|
|
66
|
+
(0, class_validator_1.IsNumber)(),
|
|
67
|
+
__metadata("design:type", Number)
|
|
68
|
+
], CollectionOrderItem.prototype, "totalToCollect", void 0);
|
|
69
|
+
__decorate([
|
|
70
|
+
(0, class_validator_1.IsNumber)(),
|
|
71
|
+
__metadata("design:type", Number)
|
|
72
|
+
], CollectionOrderItem.prototype, "scheduleCollectionDate", void 0);
|
|
73
|
+
__decorate([
|
|
74
|
+
(0, class_validator_1.IsEnum)(company_1.Company),
|
|
75
|
+
__metadata("design:type", String)
|
|
76
|
+
], CollectionOrderItem.prototype, "company", void 0);
|
|
77
|
+
__decorate([
|
|
78
|
+
(0, class_validator_1.IsString)(),
|
|
79
|
+
__metadata("design:type", String)
|
|
80
|
+
], CollectionOrderItem.prototype, "type", void 0);
|
|
81
|
+
__decorate([
|
|
82
|
+
(0, class_validator_1.IsOptional)(),
|
|
83
|
+
(0, class_validator_1.IsString)(),
|
|
84
|
+
__metadata("design:type", String)
|
|
85
|
+
], CollectionOrderItem.prototype, "notes", void 0);
|
|
86
|
+
__decorate([
|
|
87
|
+
(0, class_validator_1.IsEnum)(Provider_1.Provider),
|
|
88
|
+
__metadata("design:type", String)
|
|
89
|
+
], CollectionOrderItem.prototype, "provider", void 0);
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.CollectionOrderBatchRequest = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
const CollectionOrderItem_1 = require("./CollectionOrderItem");
|
|
16
|
+
class CollectionOrderBatchRequest {
|
|
17
|
+
}
|
|
18
|
+
exports.CollectionOrderBatchRequest = CollectionOrderBatchRequest;
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, class_validator_1.IsString)(),
|
|
21
|
+
__metadata("design:type", String)
|
|
22
|
+
], CollectionOrderBatchRequest.prototype, "batchId", void 0);
|
|
23
|
+
__decorate([
|
|
24
|
+
(0, class_validator_1.IsNumber)(),
|
|
25
|
+
__metadata("design:type", Number)
|
|
26
|
+
], CollectionOrderBatchRequest.prototype, "batchSize", void 0);
|
|
27
|
+
__decorate([
|
|
28
|
+
(0, class_validator_1.IsArray)(),
|
|
29
|
+
(0, class_validator_1.ValidateNested)({ each: true }) // 👈 Valida cada uno de los elementos del array
|
|
30
|
+
,
|
|
31
|
+
(0, class_transformer_1.Type)(() => CollectionOrderItem_1.CollectionOrderItem) // 👈 Convierte cada item del array en una instancia de
|
|
32
|
+
,
|
|
33
|
+
__metadata("design:type", Array)
|
|
34
|
+
], CollectionOrderBatchRequest.prototype, "orders", void 0);
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Enum representing the execution status of a collection order.
|
|
3
|
+
* @enum {string}
|
|
4
|
+
*
|
|
5
|
+
* @property {string} PENDING - The order is pending execution.
|
|
6
|
+
* @property {string} COMPLETED - The order was successfully executed and fully collected.
|
|
7
|
+
* @property {string} DUE - A collection attempt was made but no amount could be collected.
|
|
8
|
+
* @property {string} PARTIAL - The order was executed, but only a portion of the amount was collected.
|
|
9
|
+
* @property {string} FORFEIT - The order was marked as uncollectible (backoffice only).
|
|
10
|
+
* @property {string} CANCELLED - The order was manually cancelled (backoffice only).
|
|
11
|
+
*/
|
|
12
|
+
export declare enum CollectorOrderStatus {
|
|
13
|
+
PENDING = "PENDING",
|
|
14
|
+
COMPLETED = "COMPLETED",
|
|
15
|
+
DUE = "DUE",
|
|
16
|
+
PARTIAL = "PARTIAL",
|
|
17
|
+
FORFEIT = "FORFEIT",
|
|
18
|
+
CANCELLED = "CANCELLED"
|
|
19
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CollectorOrderStatus = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* Enum representing the execution status of a collection order.
|
|
6
|
+
* @enum {string}
|
|
7
|
+
*
|
|
8
|
+
* @property {string} PENDING - The order is pending execution.
|
|
9
|
+
* @property {string} COMPLETED - The order was successfully executed and fully collected.
|
|
10
|
+
* @property {string} DUE - A collection attempt was made but no amount could be collected.
|
|
11
|
+
* @property {string} PARTIAL - The order was executed, but only a portion of the amount was collected.
|
|
12
|
+
* @property {string} FORFEIT - The order was marked as uncollectible (backoffice only).
|
|
13
|
+
* @property {string} CANCELLED - The order was manually cancelled (backoffice only).
|
|
14
|
+
*/
|
|
15
|
+
var CollectorOrderStatus;
|
|
16
|
+
(function (CollectorOrderStatus) {
|
|
17
|
+
CollectorOrderStatus["PENDING"] = "PENDING";
|
|
18
|
+
CollectorOrderStatus["COMPLETED"] = "COMPLETED";
|
|
19
|
+
CollectorOrderStatus["DUE"] = "DUE";
|
|
20
|
+
CollectorOrderStatus["PARTIAL"] = "PARTIAL";
|
|
21
|
+
CollectorOrderStatus["FORFEIT"] = "FORFEIT";
|
|
22
|
+
CollectorOrderStatus["CANCELLED"] = "CANCELLED";
|
|
23
|
+
})(CollectorOrderStatus || (exports.CollectorOrderStatus = CollectorOrderStatus = {}));
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./enums/CollectorOrderStatus"), exports);
|
|
18
|
+
__exportStar(require("./dtos/CollectionOrderItem"), exports);
|
|
19
|
+
__exportStar(require("./dtos/CreateCollectionOrderRequest"), exports);
|
package/bin/index.d.ts
CHANGED
package/bin/index.js
CHANGED
|
@@ -23,7 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.Pricelist = exports.Company = exports.Services = exports.AccountIssuanceBusiness = exports.AppSelectionData = exports.Device = exports.Observations = exports.IssuanceBusiness = exports.Blacklist = exports.CentralPayments = exports.Helpdesk = exports.FiadoApiResponse = exports.Auth = exports.LegalDocumentsBusiness = exports.Role = exports.STPAccount = exports.RiskProfile = exports.FraudPreventionEngine = exports.BBVARst = exports.Stp = exports.BankAccount = exports.P2pContact = exports.CreditContract = exports.Contract = exports.ProductCatalog = exports.ContactInfo = exports.Transaction = exports.TransactionProcessor = exports.GenericMessage = exports.EventBridgeMessage = exports.SessionActivity = exports.NotificationMessages = exports.ServicePayment = exports.Header = exports.Identity = exports.Group = exports.File = exports.ExchangeRate = exports.Directory = exports.Currency = exports.Country = exports.Card = exports.Authentication = exports.App = exports.Address = exports.Beneficiary = exports.Activity = exports.Account = void 0;
|
|
26
|
+
exports.Collector = exports.Pricelist = exports.Company = exports.Services = exports.AccountIssuanceBusiness = exports.AppSelectionData = exports.Device = exports.Observations = exports.IssuanceBusiness = exports.Blacklist = exports.CentralPayments = exports.Helpdesk = exports.FiadoApiResponse = exports.Auth = exports.LegalDocumentsBusiness = exports.Role = exports.STPAccount = exports.RiskProfile = exports.FraudPreventionEngine = exports.BBVARst = exports.Stp = exports.BankAccount = exports.P2pContact = exports.CreditContract = exports.Contract = exports.ProductCatalog = exports.ContactInfo = exports.Transaction = exports.TransactionProcessor = exports.GenericMessage = exports.EventBridgeMessage = exports.SessionActivity = exports.NotificationMessages = exports.ServicePayment = exports.Header = exports.Identity = exports.Group = exports.File = exports.ExchangeRate = exports.Directory = exports.Currency = exports.Country = exports.Card = exports.Authentication = exports.App = exports.Address = exports.Beneficiary = exports.Activity = exports.Account = void 0;
|
|
27
27
|
exports.Account = __importStar(require("./account"));
|
|
28
28
|
exports.Activity = __importStar(require("./activity"));
|
|
29
29
|
exports.Beneficiary = __importStar(require("./beneficiary"));
|
|
@@ -72,3 +72,4 @@ exports.AccountIssuanceBusiness = __importStar(require("./accountIssuanceBusines
|
|
|
72
72
|
exports.Services = __importStar(require("./services"));
|
|
73
73
|
exports.Company = __importStar(require("./company"));
|
|
74
74
|
exports.Pricelist = __importStar(require("./pricelist"));
|
|
75
|
+
exports.Collector = __importStar(require("./collector"));
|
package/package.json
CHANGED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
|
|
2
|
+
import {
|
|
3
|
+
IsEnum,
|
|
4
|
+
IsNumber,
|
|
5
|
+
IsOptional,
|
|
6
|
+
IsString,
|
|
7
|
+
IsUUID,
|
|
8
|
+
} from 'class-validator';
|
|
9
|
+
import { CollectorOrderStatus } from '../enums/CollectorOrderStatus';
|
|
10
|
+
import { CountryId } from '../../country';
|
|
11
|
+
import { Company } from '../../company';
|
|
12
|
+
import { Provider } from '../../provider/enums/Provider';
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
export class CollectionOrderItem {
|
|
17
|
+
|
|
18
|
+
@IsUUID()
|
|
19
|
+
id!: string;
|
|
20
|
+
|
|
21
|
+
@IsString()
|
|
22
|
+
directoryId!: string;
|
|
23
|
+
|
|
24
|
+
@IsString()
|
|
25
|
+
peopleId!: string;
|
|
26
|
+
|
|
27
|
+
@IsEnum(CollectorOrderStatus)
|
|
28
|
+
status!: CollectorOrderStatus;
|
|
29
|
+
|
|
30
|
+
@IsString()
|
|
31
|
+
servicePriceListId!: string;
|
|
32
|
+
|
|
33
|
+
@IsEnum(CountryId)
|
|
34
|
+
currencyId!: CountryId;
|
|
35
|
+
|
|
36
|
+
@IsNumber()
|
|
37
|
+
notional!: number;
|
|
38
|
+
|
|
39
|
+
@IsNumber()
|
|
40
|
+
originalAmount!: number;
|
|
41
|
+
|
|
42
|
+
@IsNumber()
|
|
43
|
+
discountAmount!: number;
|
|
44
|
+
|
|
45
|
+
@IsNumber()
|
|
46
|
+
amountAfterDiscount!: number;
|
|
47
|
+
|
|
48
|
+
@IsNumber()
|
|
49
|
+
taxAmount!: number;
|
|
50
|
+
|
|
51
|
+
@IsNumber()
|
|
52
|
+
totalToCollect!: number;
|
|
53
|
+
|
|
54
|
+
@IsNumber()
|
|
55
|
+
scheduleCollectionDate!: number;
|
|
56
|
+
|
|
57
|
+
@IsEnum(Company)
|
|
58
|
+
company!: Company;
|
|
59
|
+
|
|
60
|
+
@IsString()
|
|
61
|
+
type!: string;
|
|
62
|
+
|
|
63
|
+
@IsOptional()
|
|
64
|
+
@IsString()
|
|
65
|
+
notes?: string;
|
|
66
|
+
|
|
67
|
+
@IsEnum(Provider)
|
|
68
|
+
provider!: Provider;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Type } from "class-transformer";
|
|
2
|
+
import { IsArray, IsNumber, IsString, ValidateNested } from "class-validator";
|
|
3
|
+
import { CollectionOrderItem } from "./CollectionOrderItem";
|
|
4
|
+
|
|
5
|
+
export class CollectionOrderBatchRequest {
|
|
6
|
+
|
|
7
|
+
@IsString()
|
|
8
|
+
batchId!: string;
|
|
9
|
+
|
|
10
|
+
@IsNumber()
|
|
11
|
+
batchSize!: number;
|
|
12
|
+
|
|
13
|
+
@IsArray()
|
|
14
|
+
@ValidateNested({ each: true }) // 👈 Valida cada uno de los elementos del array
|
|
15
|
+
@Type(() => CollectionOrderItem) // 👈 Convierte cada item del array en una instancia de
|
|
16
|
+
orders!: CollectionOrderItem[];
|
|
17
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
/**
|
|
3
|
+
* Enum representing the execution status of a collection order.
|
|
4
|
+
* @enum {string}
|
|
5
|
+
*
|
|
6
|
+
* @property {string} PENDING - The order is pending execution.
|
|
7
|
+
* @property {string} COMPLETED - The order was successfully executed and fully collected.
|
|
8
|
+
* @property {string} DUE - A collection attempt was made but no amount could be collected.
|
|
9
|
+
* @property {string} PARTIAL - The order was executed, but only a portion of the amount was collected.
|
|
10
|
+
* @property {string} FORFEIT - The order was marked as uncollectible (backoffice only).
|
|
11
|
+
* @property {string} CANCELLED - The order was manually cancelled (backoffice only).
|
|
12
|
+
*/
|
|
13
|
+
export enum CollectorOrderStatus {
|
|
14
|
+
PENDING = 'PENDING',
|
|
15
|
+
COMPLETED = 'COMPLETED',
|
|
16
|
+
DUE = 'DUE',
|
|
17
|
+
PARTIAL = 'PARTIAL',
|
|
18
|
+
FORFEIT = 'FORFEIT',
|
|
19
|
+
CANCELLED = 'CANCELLED',
|
|
20
|
+
}
|
package/src/index.ts
CHANGED
|
@@ -47,4 +47,5 @@ export * as AppSelectionData from './appSelectionData';
|
|
|
47
47
|
export * as AccountIssuanceBusiness from './accountIssuanceBusiness';
|
|
48
48
|
export * as Services from './services';
|
|
49
49
|
export * as Company from './company';
|
|
50
|
-
export * as Pricelist from './pricelist';
|
|
50
|
+
export * as Pricelist from './pricelist';
|
|
51
|
+
export * as Collector from './collector';
|
package/src/aa.json
DELETED
|
File without changes
|