@escapenavigator/types 2.0.38 → 2.0.40
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/client/query-client.dto.d.ts +6 -0
- package/dist/openapi/shared/openapi-questroom.ro.d.ts +2 -0
- package/dist/openapi/shared/openapi-questroom.ro.js +14 -5
- package/dist/profile/profile.ro.d.ts +4 -0
- package/dist/profile/profile.ro.js +10 -0
- package/dist/profile/update-current.dto.d.ts +7 -0
- package/dist/profile/update-current.dto.js +14 -0
- package/dist/promocode/promocode.ro.d.ts +18 -0
- package/dist/promocode/promocode.ro.js +51 -1
- package/dist/questroom/questroom-ai-context.d.ts +9 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/user/crud/user.ro.d.ts +2 -0
- package/dist/user/crud/user.ro.js +4 -0
- package/dist/user/device/device-roster.dto.d.ts +9 -0
- package/dist/user/device/device-roster.dto.js +30 -0
- package/dist/user/device/device-roster.ro.d.ts +18 -0
- package/dist/user/device/device-roster.ro.js +51 -0
- package/dist/user/device/enroll-device.dto.d.ts +6 -0
- package/dist/user/device/enroll-device.dto.js +30 -0
- package/dist/user/device/enroll-device.ro.d.ts +8 -0
- package/dist/user/device/enroll-device.ro.js +20 -0
- package/dist/user/device/forget-device.dto.d.ts +9 -0
- package/dist/user/device/forget-device.dto.js +29 -0
- package/dist/user/device/set-pin.dto.d.ts +10 -0
- package/dist/user/device/set-pin.dto.js +35 -0
- package/dist/user/device/unlock-device.dto.d.ts +6 -0
- package/dist/user/device/unlock-device.dto.js +40 -0
- package/dist/widget-chat/widget-chat-message.ro.d.ts +21 -0
- package/package.json +2 -2
|
@@ -48,3 +48,7 @@ __decorate([
|
|
|
48
48
|
(0, class_transformer_1.Transform)(({ value }) => value !== null && value !== void 0 ? value : true),
|
|
49
49
|
__metadata("design:type", Boolean)
|
|
50
50
|
], UserRO.prototype, "pushShiftEvents", void 0);
|
|
51
|
+
__decorate([
|
|
52
|
+
(0, class_transformer_1.Expose)(),
|
|
53
|
+
__metadata("design:type", Date)
|
|
54
|
+
], UserRO.prototype, "pinSetAt", void 0);
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare class DeviceRosterDto {
|
|
2
|
+
deviceId: string;
|
|
3
|
+
/**
|
|
4
|
+
* Секреты устройства по всем сотрудникам, которые на нём логинились.
|
|
5
|
+
* Ростер отдаётся ТОЛЬКО по валидным токенам — иначе по чужому deviceId
|
|
6
|
+
* можно было бы вытащить имена и фото сотрудников.
|
|
7
|
+
*/
|
|
8
|
+
tokens: string[];
|
|
9
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
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.DeviceRosterDto = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
class DeviceRosterDto {
|
|
16
|
+
}
|
|
17
|
+
exports.DeviceRosterDto = DeviceRosterDto;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, class_validator_1.IsString)(),
|
|
20
|
+
(0, class_validator_1.Length)(16, 64),
|
|
21
|
+
(0, class_transformer_1.Expose)(),
|
|
22
|
+
__metadata("design:type", String)
|
|
23
|
+
], DeviceRosterDto.prototype, "deviceId", void 0);
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, class_validator_1.IsArray)(),
|
|
26
|
+
(0, class_validator_1.IsString)({ each: true }),
|
|
27
|
+
(0, class_validator_1.ArrayMaxSize)(20),
|
|
28
|
+
(0, class_transformer_1.Expose)(),
|
|
29
|
+
__metadata("design:type", Array)
|
|
30
|
+
], DeviceRosterDto.prototype, "tokens", void 0);
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export declare class DeviceRosterItemRO {
|
|
2
|
+
userId: number;
|
|
3
|
+
name: string;
|
|
4
|
+
surname: string;
|
|
5
|
+
photo?: string;
|
|
6
|
+
/** Без PIN быстрый вход невозможен — только полный вход по паролю. */
|
|
7
|
+
hasPin: boolean;
|
|
8
|
+
/** Разлок заблокирован до этого момента после серии неверных PIN. */
|
|
9
|
+
lockedUntil: Date | null;
|
|
10
|
+
}
|
|
11
|
+
export declare class DeviceRosterRO {
|
|
12
|
+
users: DeviceRosterItemRO[];
|
|
13
|
+
/**
|
|
14
|
+
* Токены, которых больше нет на сервере (отозваны, сотрудник удалён или
|
|
15
|
+
* потерял доступ). Клиент чистит их из localStorage.
|
|
16
|
+
*/
|
|
17
|
+
staleTokens: string[];
|
|
18
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
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.DeviceRosterRO = exports.DeviceRosterItemRO = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
class DeviceRosterItemRO {
|
|
15
|
+
}
|
|
16
|
+
exports.DeviceRosterItemRO = DeviceRosterItemRO;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_transformer_1.Expose)(),
|
|
19
|
+
__metadata("design:type", Number)
|
|
20
|
+
], DeviceRosterItemRO.prototype, "userId", void 0);
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, class_transformer_1.Expose)(),
|
|
23
|
+
__metadata("design:type", String)
|
|
24
|
+
], DeviceRosterItemRO.prototype, "name", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, class_transformer_1.Expose)(),
|
|
27
|
+
__metadata("design:type", String)
|
|
28
|
+
], DeviceRosterItemRO.prototype, "surname", void 0);
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, class_transformer_1.Expose)(),
|
|
31
|
+
__metadata("design:type", String)
|
|
32
|
+
], DeviceRosterItemRO.prototype, "photo", void 0);
|
|
33
|
+
__decorate([
|
|
34
|
+
(0, class_transformer_1.Expose)(),
|
|
35
|
+
__metadata("design:type", Boolean)
|
|
36
|
+
], DeviceRosterItemRO.prototype, "hasPin", void 0);
|
|
37
|
+
__decorate([
|
|
38
|
+
(0, class_transformer_1.Expose)(),
|
|
39
|
+
__metadata("design:type", Date)
|
|
40
|
+
], DeviceRosterItemRO.prototype, "lockedUntil", void 0);
|
|
41
|
+
class DeviceRosterRO {
|
|
42
|
+
}
|
|
43
|
+
exports.DeviceRosterRO = DeviceRosterRO;
|
|
44
|
+
__decorate([
|
|
45
|
+
(0, class_transformer_1.Expose)(),
|
|
46
|
+
__metadata("design:type", Array)
|
|
47
|
+
], DeviceRosterRO.prototype, "users", void 0);
|
|
48
|
+
__decorate([
|
|
49
|
+
(0, class_transformer_1.Expose)(),
|
|
50
|
+
__metadata("design:type", Array)
|
|
51
|
+
], DeviceRosterRO.prototype, "staleTokens", void 0);
|
|
@@ -0,0 +1,30 @@
|
|
|
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.EnrollDeviceDto = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
class EnrollDeviceDto {
|
|
16
|
+
}
|
|
17
|
+
exports.EnrollDeviceDto = EnrollDeviceDto;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, class_validator_1.IsString)(),
|
|
20
|
+
(0, class_validator_1.Length)(16, 64),
|
|
21
|
+
(0, class_transformer_1.Expose)(),
|
|
22
|
+
__metadata("design:type", String)
|
|
23
|
+
], EnrollDeviceDto.prototype, "deviceId", void 0);
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, class_validator_1.IsOptional)(),
|
|
26
|
+
(0, class_validator_1.IsString)(),
|
|
27
|
+
(0, class_validator_1.MaxLength)(120),
|
|
28
|
+
(0, class_transformer_1.Expose)(),
|
|
29
|
+
__metadata("design:type", String)
|
|
30
|
+
], EnrollDeviceDto.prototype, "deviceName", void 0);
|
|
@@ -0,0 +1,20 @@
|
|
|
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.EnrollDeviceRO = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
class EnrollDeviceRO {
|
|
15
|
+
}
|
|
16
|
+
exports.EnrollDeviceRO = EnrollDeviceRO;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_transformer_1.Expose)(),
|
|
19
|
+
__metadata("design:type", String)
|
|
20
|
+
], EnrollDeviceRO.prototype, "deviceToken", void 0);
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare class ForgetDeviceDto {
|
|
2
|
+
deviceId: string;
|
|
3
|
+
/**
|
|
4
|
+
* Какие записи снимать с устройства. Отзываем строго по предъявленным
|
|
5
|
+
* токенам: так «Выйти на этом устройстве» работает без авторизации, но
|
|
6
|
+
* снять чужого сотрудника с чужого устройства нельзя.
|
|
7
|
+
*/
|
|
8
|
+
tokens: string[];
|
|
9
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
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.ForgetDeviceDto = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
class ForgetDeviceDto {
|
|
16
|
+
}
|
|
17
|
+
exports.ForgetDeviceDto = ForgetDeviceDto;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, class_validator_1.IsString)(),
|
|
20
|
+
(0, class_validator_1.Length)(16, 64),
|
|
21
|
+
(0, class_transformer_1.Expose)(),
|
|
22
|
+
__metadata("design:type", String)
|
|
23
|
+
], ForgetDeviceDto.prototype, "deviceId", void 0);
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, class_validator_1.IsArray)(),
|
|
26
|
+
(0, class_validator_1.IsString)({ each: true }),
|
|
27
|
+
(0, class_transformer_1.Expose)(),
|
|
28
|
+
__metadata("design:type", Array)
|
|
29
|
+
], ForgetDeviceDto.prototype, "tokens", void 0);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare class SetPinDto {
|
|
2
|
+
pin: string;
|
|
3
|
+
/**
|
|
4
|
+
* Подтверждение личности при СМЕНЕ уже заданного PIN: текущий пароль или
|
|
5
|
+
* текущий PIN. Для первой установки не требуется — сессия уже создана
|
|
6
|
+
* входом по паролю.
|
|
7
|
+
*/
|
|
8
|
+
password?: string;
|
|
9
|
+
currentPin?: string;
|
|
10
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
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.SetPinDto = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
class SetPinDto {
|
|
16
|
+
}
|
|
17
|
+
exports.SetPinDto = SetPinDto;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, class_validator_1.IsString)(),
|
|
20
|
+
(0, class_validator_1.Matches)(/^\d{4}$/),
|
|
21
|
+
(0, class_transformer_1.Expose)(),
|
|
22
|
+
__metadata("design:type", String)
|
|
23
|
+
], SetPinDto.prototype, "pin", void 0);
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, class_validator_1.IsOptional)(),
|
|
26
|
+
(0, class_validator_1.IsString)(),
|
|
27
|
+
(0, class_transformer_1.Expose)(),
|
|
28
|
+
__metadata("design:type", String)
|
|
29
|
+
], SetPinDto.prototype, "password", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, class_validator_1.IsOptional)(),
|
|
32
|
+
(0, class_validator_1.IsString)(),
|
|
33
|
+
(0, class_transformer_1.Expose)(),
|
|
34
|
+
__metadata("design:type", String)
|
|
35
|
+
], SetPinDto.prototype, "currentPin", void 0);
|
|
@@ -0,0 +1,40 @@
|
|
|
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.UnlockDeviceDto = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
class UnlockDeviceDto {
|
|
16
|
+
}
|
|
17
|
+
exports.UnlockDeviceDto = UnlockDeviceDto;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, class_validator_1.IsString)(),
|
|
20
|
+
(0, class_validator_1.Length)(16, 64),
|
|
21
|
+
(0, class_transformer_1.Expose)(),
|
|
22
|
+
__metadata("design:type", String)
|
|
23
|
+
], UnlockDeviceDto.prototype, "deviceId", void 0);
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, class_validator_1.IsString)(),
|
|
26
|
+
(0, class_validator_1.Length)(32, 128),
|
|
27
|
+
(0, class_transformer_1.Expose)(),
|
|
28
|
+
__metadata("design:type", String)
|
|
29
|
+
], UnlockDeviceDto.prototype, "deviceToken", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, class_validator_1.IsInt)(),
|
|
32
|
+
(0, class_transformer_1.Expose)(),
|
|
33
|
+
__metadata("design:type", Number)
|
|
34
|
+
], UnlockDeviceDto.prototype, "userId", void 0);
|
|
35
|
+
__decorate([
|
|
36
|
+
(0, class_validator_1.IsString)(),
|
|
37
|
+
(0, class_validator_1.Matches)(/^\d{4}$/),
|
|
38
|
+
(0, class_transformer_1.Expose)(),
|
|
39
|
+
__metadata("design:type", String)
|
|
40
|
+
], UnlockDeviceDto.prototype, "pin", void 0);
|
|
@@ -17,6 +17,23 @@ export type WidgetChatCertificateAction = {
|
|
|
17
17
|
customNominal?: number;
|
|
18
18
|
deliveryType?: string;
|
|
19
19
|
};
|
|
20
|
+
export type WidgetChatQuestCard = {
|
|
21
|
+
questroomId: number;
|
|
22
|
+
title: string;
|
|
23
|
+
photo?: string;
|
|
24
|
+
teaser?: string;
|
|
25
|
+
playersMin: number;
|
|
26
|
+
playersMax: number;
|
|
27
|
+
minAge?: number;
|
|
28
|
+
durationMinutes?: number;
|
|
29
|
+
fear?: number;
|
|
30
|
+
fearMax?: number;
|
|
31
|
+
difficulty?: number;
|
|
32
|
+
difficultyMax?: number;
|
|
33
|
+
priceLabel?: string;
|
|
34
|
+
locationLabel?: string;
|
|
35
|
+
bookableOnline?: boolean;
|
|
36
|
+
};
|
|
20
37
|
export type WidgetChatReplyChip = {
|
|
21
38
|
label: string;
|
|
22
39
|
locationId?: number;
|
|
@@ -41,6 +58,10 @@ export type WidgetChatMessageMeta = {
|
|
|
41
58
|
} | {
|
|
42
59
|
kind: 'reply_suggestions';
|
|
43
60
|
items: Array<string | WidgetChatReplyChip>;
|
|
61
|
+
} | {
|
|
62
|
+
kind: 'quest_cards';
|
|
63
|
+
items: WidgetChatQuestCard[];
|
|
64
|
+
ctaLabel?: string;
|
|
44
65
|
} | ({
|
|
45
66
|
kind: 'reply_chip';
|
|
46
67
|
} & WidgetChatReplyChip) | {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@escapenavigator/types",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.40",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"reflect-metadata": "^0.1.13",
|
|
24
24
|
"rxjs": "^7.5.5"
|
|
25
25
|
},
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "34b66fa31af4dab80d055a8a6a046aae3839bf90",
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/validator": "13.0.0",
|
|
29
29
|
"typescript": "^5.6"
|