@fiado/type-kit 3.368.0 → 3.369.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.
@@ -0,0 +1,15 @@
1
+ import { LoanDeviceOperationResult } from '../LoanDeviceOperationResult';
2
+ import { LoanDeviceMdmStatusEnum } from '../../enums/LoanDeviceMdmStatusEnum';
3
+ /**
4
+ * Resultado por crédito del passcode de desbloqueo. El `pin` es una credencial de un solo uso que
5
+ * el operador le dicta al cliente sin señal: NO se persiste en el expediente ni en la bitácora.
6
+ */
7
+ export declare class LoanDevicePinUnlockResult extends LoanDeviceOperationResult {
8
+ /** Estado del expediente; pedir el passcode no lo cambia. */
9
+ mdmStatus: LoanDeviceMdmStatusEnum;
10
+ /** Solo viaja cuando el proveedor lo entregó. */
11
+ pin?: string;
12
+ /** Vigencia del passcode en segundos, tal como la reporta el proveedor. */
13
+ validitySeconds?: number;
14
+ generatedAt?: string;
15
+ }
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LoanDevicePinUnlockResult = void 0;
4
+ const LoanDeviceOperationResult_1 = require("../LoanDeviceOperationResult");
5
+ /**
6
+ * Resultado por crédito del passcode de desbloqueo. El `pin` es una credencial de un solo uso que
7
+ * el operador le dicta al cliente sin señal: NO se persiste en el expediente ni en la bitácora.
8
+ */
9
+ class LoanDevicePinUnlockResult extends LoanDeviceOperationResult_1.LoanDeviceOperationResult {
10
+ }
11
+ exports.LoanDevicePinUnlockResult = LoanDevicePinUnlockResult;
@@ -54,5 +54,6 @@ export * from './dtos/responses/LoanDeviceLastSeenResult';
54
54
  export * from './dtos/responses/LoanDeviceLastSeenResponse';
55
55
  export * from './dtos/responses/LoanDeviceLockResult';
56
56
  export * from './dtos/responses/LoanDeviceManualLockResponse';
57
+ export * from './dtos/responses/LoanDevicePinUnlockResult';
57
58
  export * from './dtos/responses/LoanDeviceUnlockResult';
58
59
  export * from './dtos/responses/LoanDeviceManualUnlockResponse';
@@ -87,5 +87,6 @@ __exportStar(require("./dtos/responses/LoanDeviceLastSeenResult"), exports);
87
87
  __exportStar(require("./dtos/responses/LoanDeviceLastSeenResponse"), exports);
88
88
  __exportStar(require("./dtos/responses/LoanDeviceLockResult"), exports);
89
89
  __exportStar(require("./dtos/responses/LoanDeviceManualLockResponse"), exports);
90
+ __exportStar(require("./dtos/responses/LoanDevicePinUnlockResult"), exports);
90
91
  __exportStar(require("./dtos/responses/LoanDeviceUnlockResult"), exports);
91
92
  __exportStar(require("./dtos/responses/LoanDeviceManualUnlockResponse"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "3.368.0",
3
+ "version": "3.369.0",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -0,0 +1,19 @@
1
+ import { LoanDeviceOperationResult } from '../LoanDeviceOperationResult';
2
+ import { LoanDeviceMdmStatusEnum } from '../../enums/LoanDeviceMdmStatusEnum';
3
+
4
+ /**
5
+ * Resultado por crédito del passcode de desbloqueo. El `pin` es una credencial de un solo uso que
6
+ * el operador le dicta al cliente sin señal: NO se persiste en el expediente ni en la bitácora.
7
+ */
8
+ export class LoanDevicePinUnlockResult extends LoanDeviceOperationResult {
9
+ /** Estado del expediente; pedir el passcode no lo cambia. */
10
+ mdmStatus: LoanDeviceMdmStatusEnum;
11
+
12
+ /** Solo viaja cuando el proveedor lo entregó. */
13
+ pin?: string;
14
+
15
+ /** Vigencia del passcode en segundos, tal como la reporta el proveedor. */
16
+ validitySeconds?: number;
17
+
18
+ generatedAt?: string;
19
+ }
@@ -69,5 +69,6 @@ export * from './dtos/responses/LoanDeviceLastSeenResult';
69
69
  export * from './dtos/responses/LoanDeviceLastSeenResponse';
70
70
  export * from './dtos/responses/LoanDeviceLockResult';
71
71
  export * from './dtos/responses/LoanDeviceManualLockResponse';
72
+ export * from './dtos/responses/LoanDevicePinUnlockResult';
72
73
  export * from './dtos/responses/LoanDeviceUnlockResult';
73
74
  export * from './dtos/responses/LoanDeviceManualUnlockResponse';