add serviceKey field to tariff cart data

This commit is contained in:
nflnkr 2023-08-12 19:32:22 +03:00
parent 2018fa85dd
commit e13590d055
2 changed files with 2 additions and 1 deletions

@ -1,6 +1,6 @@
{
"name": "@frontend/kitui",
"version": "1.0.21",
"version": "1.0.22",
"description": "test",
"main": "index.js",
"types": "index.d.ts",

@ -13,6 +13,7 @@ export type PrivilegeCartData = {
export type TariffCartData = {
tariffId: string;
serviceKey: string;
price: number;
isCustom: boolean;
privileges: PrivilegeCartData[];