@fiado/type-kit 3.203.0 → 3.205.0
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/index.d.ts +1 -0
- package/bin/index.js +6 -2
- package/bin/loanCredit/dtos/LoanCredit.d.ts +2 -0
- package/bin/loanCredit/dtos/LoanCredit.js +6 -0
- package/bin/loanCredit/dtos/requests/OriginateLoanCreditRequest.d.ts +7 -1
- package/bin/loanCredit/dtos/requests/OriginateLoanCreditRequest.js +6 -0
- package/bin/loanCredit/dtos/responses/LoanCreditResponse.d.ts +1 -0
- package/bin/shortlink/dtos/requests/CreateShortLinkRequest.d.ts +20 -0
- package/bin/shortlink/dtos/requests/CreateShortLinkRequest.js +62 -0
- package/bin/shortlink/dtos/responses/CreateShortLinkResponse.d.ts +10 -0
- package/bin/shortlink/dtos/responses/CreateShortLinkResponse.js +31 -0
- package/bin/shortlink/index.d.ts +2 -0
- package/bin/shortlink/index.js +20 -0
- package/package.json +1 -1
- package/src/index.ts +4 -0
- package/src/loanCredit/dtos/LoanCredit.ts +6 -0
- package/src/loanCredit/dtos/requests/OriginateLoanCreditRequest.ts +11 -1
- package/src/loanCredit/dtos/responses/LoanCreditResponse.ts +1 -0
- package/src/shortlink/dtos/requests/CreateShortLinkRequest.ts +47 -0
- package/src/shortlink/dtos/responses/CreateShortLinkResponse.ts +18 -0
- package/src/shortlink/index.ts +5 -0
package/bin/index.d.ts
CHANGED
|
@@ -94,6 +94,7 @@ export * as RetailCards from './retailCards';
|
|
|
94
94
|
export * as RetailCustomer from './retailCustomer';
|
|
95
95
|
export * as RetailWizard from './retailWizard';
|
|
96
96
|
export * as LoanConfig from './loanConfig';
|
|
97
|
+
export * as Shortlink from './shortlink';
|
|
97
98
|
export * as LoanOfferings from './loanOfferings';
|
|
98
99
|
export * as LoanCollectorAssignment from './loanCollectorAssignment';
|
|
99
100
|
export * as LoanCredit from './loanCredit';
|
package/bin/index.js
CHANGED
|
@@ -37,8 +37,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
37
37
|
};
|
|
38
38
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
39
|
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.BenefitCenter = exports.BankAccount = exports.P2pContact = exports.CreditContract = exports.Contract = exports.ProductCatalog = exports.ContactInfo = exports.TransactionAnalytics = exports.Transaction = exports.TransactionProcessor = exports.GenericMessage = exports.EventBridgeMessage = exports.SessionActivity = exports.NotificationMessages = exports.ServicePayment = exports.Header = exports.Identity = exports.UserTags = exports.Group = exports.File = exports.ExchangeRate = exports.Directory = exports.Currency = exports.Country = exports.Card = exports.Authentication = exports.AppContent = exports.App = exports.Offices = exports.Places = exports.Address = exports.Beneficiary = exports.Activity = exports.Account = exports.Crypto = void 0;
|
|
40
|
-
exports.
|
|
41
|
-
exports.Kyc = void 0;
|
|
40
|
+
exports.LoanCredit = exports.LoanCollectorAssignment = exports.LoanOfferings = exports.Shortlink = exports.LoanConfig = exports.RetailWizard = exports.RetailCustomer = exports.RetailCards = exports.RetailCatalog = exports.RetailOrg = exports.EmailVerification = exports.NetworkConnector = exports.Modelias = exports.TotpSecurity = exports.Passport = exports.WalletFunding = exports.Remittance = exports.PlatformRbac = exports.CognitoBackofficeConnector = exports.TwilioConnector = exports.MessagesConnector = exports.Mdm = exports.MilestoneBusiness = exports.CirculoCredito = exports.CreditStatements = exports.Sentry = exports.AiEngine = exports.Funnel = exports.TeamsConnector = exports.PlatformErrorEvents = exports.CustomerFile = exports.CreditBackoffice = exports.CreditDashboard = exports.CreditEngine = exports.Credit = exports.ComissionBusiness = exports.ReferralBusiness = exports.ZendeskMessaging = exports.NotificationWS = exports.Event = exports.PayrollBusiness = exports.Cnbv = exports.DirectorySetting = exports.InvoiceCollector = exports.Collector = exports.Pricelist = exports.Company = exports.Services = exports.AccountIssuanceBusiness = exports.AppSelectionData = void 0;
|
|
41
|
+
exports.Kyc = exports.LoanScoring = void 0;
|
|
42
42
|
exports.Crypto = __importStar(require("./crypto"));
|
|
43
43
|
exports.Account = __importStar(require("./account"));
|
|
44
44
|
exports.Activity = __importStar(require("./activity"));
|
|
@@ -158,6 +158,10 @@ exports.RetailCustomer = __importStar(require("./retailCustomer"));
|
|
|
158
158
|
exports.RetailWizard = __importStar(require("./retailWizard"));
|
|
159
159
|
// LoanConfig: DTOs/enums del lambda loan-config-business (comp 09 — parámetros operativos del SOFOM).
|
|
160
160
|
exports.LoanConfig = __importStar(require("./loanConfig"));
|
|
161
|
+
// Shortlink: DTOs del lambda shortlink-business (acortador de URLs). Se consume M2M por su endpoint
|
|
162
|
+
// privado POST /private/links. En SureKeep Fase 2 lo usan el QR de instalación de la app (paso 09, D9)
|
|
163
|
+
// y el link de KYC CUSTOMER_LINK (paso 02, QR en tablet o SMS).
|
|
164
|
+
exports.Shortlink = __importStar(require("./shortlink"));
|
|
161
165
|
// LoanOfferings: DTOs/enums del lambda loan-offerings-business (comp 07 — planes de crédito,
|
|
162
166
|
// financieras, M:N retailer↔plan y simulador de cuota; SureKeep Fase 1 — pista Loan).
|
|
163
167
|
exports.LoanOfferings = __importStar(require("./loanOfferings"));
|
|
@@ -32,6 +32,8 @@ export declare class LoanCredit {
|
|
|
32
32
|
totalToPayCents: number;
|
|
33
33
|
/** CAT decimal (`3.85` = 385%) — lo calcula el simulador de loan-offerings (C3/AS-01). */
|
|
34
34
|
catAnnual?: number;
|
|
35
|
+
/** Id de la evaluación SCI referenciada al originar (snapshot en LoanSciEvaluation_GT). */
|
|
36
|
+
sciEvaluationId?: string;
|
|
35
37
|
/** Sesión del wizard que originó — clave de idempotencia del originate (AS-07). */
|
|
36
38
|
wizardSessionId?: string;
|
|
37
39
|
/** IMEI del equipo financiado (se fija en el enrolamiento MDM). */
|
|
@@ -109,6 +109,12 @@ __decorate([
|
|
|
109
109
|
(0, class_validator_1.Min)(0),
|
|
110
110
|
__metadata("design:type", Number)
|
|
111
111
|
], LoanCredit.prototype, "catAnnual", void 0);
|
|
112
|
+
__decorate([
|
|
113
|
+
(0, class_transformer_1.Expose)(),
|
|
114
|
+
(0, class_validator_1.IsOptional)(),
|
|
115
|
+
(0, class_validator_1.IsString)(),
|
|
116
|
+
__metadata("design:type", String)
|
|
117
|
+
], LoanCredit.prototype, "sciEvaluationId", void 0);
|
|
112
118
|
__decorate([
|
|
113
119
|
(0, class_transformer_1.Expose)(),
|
|
114
120
|
(0, class_validator_1.IsOptional)(),
|
|
@@ -17,7 +17,13 @@ export declare class OriginateLoanCreditRequest {
|
|
|
17
17
|
termWeeks: number;
|
|
18
18
|
equipmentPriceCents: number;
|
|
19
19
|
downPaymentCents: number;
|
|
20
|
-
/**
|
|
20
|
+
/**
|
|
21
|
+
* Id de la evaluación SCI del paso 05 (snapshot inmutable en loan-scoring). Si viene, el
|
|
22
|
+
* motor LEE el snapshot (getSciEvaluation), valida la decisión (REJECTED → 422
|
|
23
|
+
* SCORE_ADVERSE) y persiste score/nivel DESDE el snapshot — ignora los campos sueltos.
|
|
24
|
+
*/
|
|
25
|
+
sciEvaluationId?: string;
|
|
26
|
+
/** SCI del cliente al originar (fallback informativo si NO viene sciEvaluationId). */
|
|
21
27
|
sciAtOrigination?: number;
|
|
22
28
|
clientLevelAtOrigination?: ClientLevelEnum;
|
|
23
29
|
/** IMEI del equipo si ya se conoce (también puede fijarse en el paso 09 vía activate-check). */
|
|
@@ -63,6 +63,12 @@ __decorate([
|
|
|
63
63
|
(0, class_validator_1.Min)(0),
|
|
64
64
|
__metadata("design:type", Number)
|
|
65
65
|
], OriginateLoanCreditRequest.prototype, "downPaymentCents", void 0);
|
|
66
|
+
__decorate([
|
|
67
|
+
(0, class_transformer_1.Expose)(),
|
|
68
|
+
(0, class_validator_1.IsOptional)(),
|
|
69
|
+
(0, class_validator_1.IsString)(),
|
|
70
|
+
__metadata("design:type", String)
|
|
71
|
+
], OriginateLoanCreditRequest.prototype, "sciEvaluationId", void 0);
|
|
66
72
|
__decorate([
|
|
67
73
|
(0, class_transformer_1.Expose)(),
|
|
68
74
|
(0, class_validator_1.IsOptional)(),
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Creación de un short link vía el endpoint privado M2M de `shortlink-business`
|
|
3
|
+
* (`POST /private/links`). SureKeep Fase 2 — pista Retail.
|
|
4
|
+
*
|
|
5
|
+
* Ojo con `expireAt`: es opcional en el tipo pero **obligatorio de facto**. El manager del
|
|
6
|
+
* lambda destino rechaza con `INVALID_EXPIRE_AT` si falta o si ya venció. Se deja opcional
|
|
7
|
+
* para no romper a un caller que use un default propio, pero mándalo siempre.
|
|
8
|
+
*/
|
|
9
|
+
export declare class CreateShortLinkRequest {
|
|
10
|
+
/** URL destino. Debe ser HTTPS: el destino rechaza `http://` con `INVALID_DESTINATION_URL`. */
|
|
11
|
+
destination: string;
|
|
12
|
+
/** Epoch en **segundos** (no milisegundos). Debe ser futuro. */
|
|
13
|
+
expireAt?: number;
|
|
14
|
+
/** Quién pidió el link. En M2M conviene el nombre del lambda caller. */
|
|
15
|
+
createdBy?: string;
|
|
16
|
+
notes?: string;
|
|
17
|
+
directoryId?: string;
|
|
18
|
+
/** Código vanity. Si se omite, el destino genera uno Base62 único. */
|
|
19
|
+
code?: string;
|
|
20
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
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.CreateShortLinkRequest = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
/**
|
|
16
|
+
* Creación de un short link vía el endpoint privado M2M de `shortlink-business`
|
|
17
|
+
* (`POST /private/links`). SureKeep Fase 2 — pista Retail.
|
|
18
|
+
*
|
|
19
|
+
* Ojo con `expireAt`: es opcional en el tipo pero **obligatorio de facto**. El manager del
|
|
20
|
+
* lambda destino rechaza con `INVALID_EXPIRE_AT` si falta o si ya venció. Se deja opcional
|
|
21
|
+
* para no romper a un caller que use un default propio, pero mándalo siempre.
|
|
22
|
+
*/
|
|
23
|
+
class CreateShortLinkRequest {
|
|
24
|
+
}
|
|
25
|
+
exports.CreateShortLinkRequest = CreateShortLinkRequest;
|
|
26
|
+
__decorate([
|
|
27
|
+
(0, class_transformer_1.Expose)(),
|
|
28
|
+
(0, class_validator_1.IsString)(),
|
|
29
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
30
|
+
(0, class_validator_1.IsUrl)({ require_protocol: true, protocols: ['https'] }),
|
|
31
|
+
__metadata("design:type", String)
|
|
32
|
+
], CreateShortLinkRequest.prototype, "destination", void 0);
|
|
33
|
+
__decorate([
|
|
34
|
+
(0, class_transformer_1.Expose)(),
|
|
35
|
+
(0, class_validator_1.IsOptional)(),
|
|
36
|
+
(0, class_validator_1.IsNumber)(),
|
|
37
|
+
__metadata("design:type", Number)
|
|
38
|
+
], CreateShortLinkRequest.prototype, "expireAt", void 0);
|
|
39
|
+
__decorate([
|
|
40
|
+
(0, class_transformer_1.Expose)(),
|
|
41
|
+
(0, class_validator_1.IsOptional)(),
|
|
42
|
+
(0, class_validator_1.IsString)(),
|
|
43
|
+
__metadata("design:type", String)
|
|
44
|
+
], CreateShortLinkRequest.prototype, "createdBy", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, class_transformer_1.Expose)(),
|
|
47
|
+
(0, class_validator_1.IsOptional)(),
|
|
48
|
+
(0, class_validator_1.IsString)(),
|
|
49
|
+
__metadata("design:type", String)
|
|
50
|
+
], CreateShortLinkRequest.prototype, "notes", void 0);
|
|
51
|
+
__decorate([
|
|
52
|
+
(0, class_transformer_1.Expose)(),
|
|
53
|
+
(0, class_validator_1.IsOptional)(),
|
|
54
|
+
(0, class_validator_1.IsString)(),
|
|
55
|
+
__metadata("design:type", String)
|
|
56
|
+
], CreateShortLinkRequest.prototype, "directoryId", void 0);
|
|
57
|
+
__decorate([
|
|
58
|
+
(0, class_transformer_1.Expose)(),
|
|
59
|
+
(0, class_validator_1.IsOptional)(),
|
|
60
|
+
(0, class_validator_1.IsString)(),
|
|
61
|
+
__metadata("design:type", String)
|
|
62
|
+
], CreateShortLinkRequest.prototype, "code", void 0);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Respuesta de `POST /private/links` de `shortlink-business`.
|
|
3
|
+
* Verificado contra Dev (2026-07-21): `{"id":"zJCeg7O","shortUrl":"https://.../go/zJCeg7O"}`.
|
|
4
|
+
*/
|
|
5
|
+
export declare class CreateShortLinkResponse {
|
|
6
|
+
/** Código corto generado. Es la última parte del `shortUrl`. */
|
|
7
|
+
id: string;
|
|
8
|
+
/** URL corta completa, lista para mandar por SMS o pintar como QR. */
|
|
9
|
+
shortUrl: string;
|
|
10
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
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.CreateShortLinkResponse = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
/**
|
|
16
|
+
* Respuesta de `POST /private/links` de `shortlink-business`.
|
|
17
|
+
* Verificado contra Dev (2026-07-21): `{"id":"zJCeg7O","shortUrl":"https://.../go/zJCeg7O"}`.
|
|
18
|
+
*/
|
|
19
|
+
class CreateShortLinkResponse {
|
|
20
|
+
}
|
|
21
|
+
exports.CreateShortLinkResponse = CreateShortLinkResponse;
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, class_transformer_1.Expose)(),
|
|
24
|
+
(0, class_validator_1.IsString)(),
|
|
25
|
+
__metadata("design:type", String)
|
|
26
|
+
], CreateShortLinkResponse.prototype, "id", void 0);
|
|
27
|
+
__decorate([
|
|
28
|
+
(0, class_transformer_1.Expose)(),
|
|
29
|
+
(0, class_validator_1.IsString)(),
|
|
30
|
+
__metadata("design:type", String)
|
|
31
|
+
], CreateShortLinkResponse.prototype, "shortUrl", void 0);
|
|
@@ -0,0 +1,20 @@
|
|
|
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
|
+
// Request DTOs (input validado por endpoint)
|
|
18
|
+
__exportStar(require("./dtos/requests/CreateShortLinkRequest"), exports);
|
|
19
|
+
// Response DTOs
|
|
20
|
+
__exportStar(require("./dtos/responses/CreateShortLinkResponse"), exports);
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -117,6 +117,10 @@ export * as RetailCustomer from './retailCustomer';
|
|
|
117
117
|
export * as RetailWizard from './retailWizard';
|
|
118
118
|
// LoanConfig: DTOs/enums del lambda loan-config-business (comp 09 — parámetros operativos del SOFOM).
|
|
119
119
|
export * as LoanConfig from './loanConfig';
|
|
120
|
+
// Shortlink: DTOs del lambda shortlink-business (acortador de URLs). Se consume M2M por su endpoint
|
|
121
|
+
// privado POST /private/links. En SureKeep Fase 2 lo usan el QR de instalación de la app (paso 09, D9)
|
|
122
|
+
// y el link de KYC CUSTOMER_LINK (paso 02, QR en tablet o SMS).
|
|
123
|
+
export * as Shortlink from './shortlink';
|
|
120
124
|
// LoanOfferings: DTOs/enums del lambda loan-offerings-business (comp 07 — planes de crédito,
|
|
121
125
|
// financieras, M:N retailer↔plan y simulador de cuota; SureKeep Fase 1 — pista Loan).
|
|
122
126
|
export * as LoanOfferings from './loanOfferings';
|
|
@@ -98,6 +98,12 @@ export class LoanCredit {
|
|
|
98
98
|
@Min(0)
|
|
99
99
|
catAnnual?: number;
|
|
100
100
|
|
|
101
|
+
/** Id de la evaluación SCI referenciada al originar (snapshot en LoanSciEvaluation_GT). */
|
|
102
|
+
@Expose()
|
|
103
|
+
@IsOptional()
|
|
104
|
+
@IsString()
|
|
105
|
+
sciEvaluationId?: string;
|
|
106
|
+
|
|
101
107
|
/** Sesión del wizard que originó — clave de idempotencia del originate (AS-07). */
|
|
102
108
|
@Expose()
|
|
103
109
|
@IsOptional()
|
|
@@ -53,7 +53,17 @@ export class OriginateLoanCreditRequest {
|
|
|
53
53
|
@Min(0)
|
|
54
54
|
downPaymentCents!: number;
|
|
55
55
|
|
|
56
|
-
/**
|
|
56
|
+
/**
|
|
57
|
+
* Id de la evaluación SCI del paso 05 (snapshot inmutable en loan-scoring). Si viene, el
|
|
58
|
+
* motor LEE el snapshot (getSciEvaluation), valida la decisión (REJECTED → 422
|
|
59
|
+
* SCORE_ADVERSE) y persiste score/nivel DESDE el snapshot — ignora los campos sueltos.
|
|
60
|
+
*/
|
|
61
|
+
@Expose()
|
|
62
|
+
@IsOptional()
|
|
63
|
+
@IsString()
|
|
64
|
+
sciEvaluationId?: string;
|
|
65
|
+
|
|
66
|
+
/** SCI del cliente al originar (fallback informativo si NO viene sciEvaluationId). */
|
|
57
67
|
@Expose()
|
|
58
68
|
@IsOptional()
|
|
59
69
|
@IsInt()
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Expose } from 'class-transformer';
|
|
2
|
+
import { IsNotEmpty, IsNumber, IsOptional, IsString, IsUrl } from 'class-validator';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Creación de un short link vía el endpoint privado M2M de `shortlink-business`
|
|
6
|
+
* (`POST /private/links`). SureKeep Fase 2 — pista Retail.
|
|
7
|
+
*
|
|
8
|
+
* Ojo con `expireAt`: es opcional en el tipo pero **obligatorio de facto**. El manager del
|
|
9
|
+
* lambda destino rechaza con `INVALID_EXPIRE_AT` si falta o si ya venció. Se deja opcional
|
|
10
|
+
* para no romper a un caller que use un default propio, pero mándalo siempre.
|
|
11
|
+
*/
|
|
12
|
+
export class CreateShortLinkRequest {
|
|
13
|
+
/** URL destino. Debe ser HTTPS: el destino rechaza `http://` con `INVALID_DESTINATION_URL`. */
|
|
14
|
+
@Expose()
|
|
15
|
+
@IsString()
|
|
16
|
+
@IsNotEmpty()
|
|
17
|
+
@IsUrl({ require_protocol: true, protocols: ['https'] })
|
|
18
|
+
destination!: string;
|
|
19
|
+
|
|
20
|
+
/** Epoch en **segundos** (no milisegundos). Debe ser futuro. */
|
|
21
|
+
@Expose()
|
|
22
|
+
@IsOptional()
|
|
23
|
+
@IsNumber()
|
|
24
|
+
expireAt?: number;
|
|
25
|
+
|
|
26
|
+
/** Quién pidió el link. En M2M conviene el nombre del lambda caller. */
|
|
27
|
+
@Expose()
|
|
28
|
+
@IsOptional()
|
|
29
|
+
@IsString()
|
|
30
|
+
createdBy?: string;
|
|
31
|
+
|
|
32
|
+
@Expose()
|
|
33
|
+
@IsOptional()
|
|
34
|
+
@IsString()
|
|
35
|
+
notes?: string;
|
|
36
|
+
|
|
37
|
+
@Expose()
|
|
38
|
+
@IsOptional()
|
|
39
|
+
@IsString()
|
|
40
|
+
directoryId?: string;
|
|
41
|
+
|
|
42
|
+
/** Código vanity. Si se omite, el destino genera uno Base62 único. */
|
|
43
|
+
@Expose()
|
|
44
|
+
@IsOptional()
|
|
45
|
+
@IsString()
|
|
46
|
+
code?: string;
|
|
47
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Expose } from 'class-transformer';
|
|
2
|
+
import { IsString } from 'class-validator';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Respuesta de `POST /private/links` de `shortlink-business`.
|
|
6
|
+
* Verificado contra Dev (2026-07-21): `{"id":"zJCeg7O","shortUrl":"https://.../go/zJCeg7O"}`.
|
|
7
|
+
*/
|
|
8
|
+
export class CreateShortLinkResponse {
|
|
9
|
+
/** Código corto generado. Es la última parte del `shortUrl`. */
|
|
10
|
+
@Expose()
|
|
11
|
+
@IsString()
|
|
12
|
+
id!: string;
|
|
13
|
+
|
|
14
|
+
/** URL corta completa, lista para mandar por SMS o pintar como QR. */
|
|
15
|
+
@Expose()
|
|
16
|
+
@IsString()
|
|
17
|
+
shortUrl!: string;
|
|
18
|
+
}
|