@retailcrm/embed-ui 0.4.1-alpha.11 → 0.4.1-alpha.13
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/CHANGELOG.md +2 -0
- package/package.json +1 -1
- package/types/context/index.d.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## [0.4.1-alpha.13](https://github.com/retailcrm/embed-ui/compare/v0.4.1-alpha.12...v0.4.1-alpha.13) (2024-11-26)
|
|
5
|
+
## [0.4.1-alpha.12](https://github.com/retailcrm/embed-ui/compare/v0.4.1-alpha.11...v0.4.1-alpha.12) (2024-11-26)
|
|
4
6
|
## [0.4.1-alpha.11](https://github.com/retailcrm/embed-ui/compare/v0.4.1-alpha.10...v0.4.1-alpha.11) (2024-11-26)
|
|
5
7
|
|
|
6
8
|
### Features
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@retailcrm/embed-ui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.4.1-alpha.
|
|
4
|
+
"version": "0.4.1-alpha.13",
|
|
5
5
|
"description": "API and components for creating RetailCRM UI extensions",
|
|
6
6
|
"repository": "git@github.com:retailcrm/embed-ui.git",
|
|
7
7
|
"author": "RetailDriverLLC <integration@retailcrm.ru>",
|
package/types/context/index.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import type { Schema as CurrentUserSchema } from './user/current'
|
|
2
1
|
import type { Schema as CustomerCardSchema } from './customer/card'
|
|
3
2
|
import type { Schema as CustomerCardPhoneSchema } from './customer/card-phone'
|
|
4
3
|
import type { Schema as OrderCardSchema } from './order/card'
|
|
4
|
+
import type { Schema as CurrentUserSchema } from './user/current'
|
|
5
5
|
import type { Schema as SettingsSchema } from './settings'
|
|
6
6
|
|
|
7
7
|
export type SchemaList = {
|
|
8
|
-
'user/current': CurrentUserSchema;
|
|
9
8
|
'customer/card': CustomerCardSchema;
|
|
10
9
|
'customer/card:phone': CustomerCardPhoneSchema;
|
|
11
10
|
'order/card': OrderCardSchema;
|
|
11
|
+
'user/current': CurrentUserSchema;
|
|
12
12
|
'settings': SettingsSchema;
|
|
13
13
|
}
|