@retailcrm/embed-ui-v1-contexts 0.9.10 → 0.9.11-alpha.1
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/common/order/card.d.ts +1 -1
- package/dist/host.cjs +1 -1
- package/dist/host.js +1 -1
- package/dist/remote/custom.d.ts +1 -1
- package/dist/remote.d.ts +1 -1
- package/package.json +3 -5
- package/types/index.d.ts +2 -2
- package/types/order/card.d.ts +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ActionSchema } from '@retailcrm/embed-ui-v1-types/context';
|
|
2
|
-
import {
|
|
2
|
+
import { ContextSchemaDescription, ContextSchemaUsage, ObjectDescription } from '@retailcrm/embed-ui-v1-types/context-doc';
|
|
3
3
|
import { KnownTypes } from '../../../generated/order/card.d.ts';
|
|
4
4
|
import { MethodList, Schema } from '../../../types/order/card';
|
|
5
5
|
export declare const id = "order/card";
|
package/dist/host.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const utilities = require("./utilities.cjs.js");
|
|
4
3
|
const rpc = require("@remote-ui/rpc");
|
|
4
|
+
const utilities = require("./utilities.cjs.js");
|
|
5
5
|
class HostError extends Error {
|
|
6
6
|
constructor(message, previous = void 0) {
|
|
7
7
|
super(`[crm:embed:host] ${message}`);
|
package/dist/host.js
CHANGED
package/dist/remote/custom.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CustomContext, CustomContextAccessor, CustomContextSchema, CustomDictionary, CustomField, CustomFieldKind, CustomFieldType, RejectionHandler } from '@retailcrm/embed-ui-v1-types/context';
|
|
2
2
|
import { Endpoint } from '@remote-ui/rpc';
|
|
3
3
|
import { Maybe } from '@retailcrm/embed-ui-v1-types/scaffolding';
|
|
4
4
|
import { PiniaPluginContext, StoreDefinition, Store } from 'pinia';
|
package/dist/remote.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Context, ContextAccessor, ContextSchema, ContextSchemaList, RejectionHandler,
|
|
1
|
+
import { ActionList, ActionSchema, Context, ContextAccessor, ContextSchema, ContextSchemaList, RejectionHandler, TypeOf, Writable } from '@retailcrm/embed-ui-v1-types/context';
|
|
2
2
|
import { Endpoint } from '@remote-ui/rpc';
|
|
3
3
|
import { Maybe } from '@retailcrm/embed-ui-v1-types/scaffolding';
|
|
4
4
|
import { PiniaPluginContext, StoreDefinition } from 'pinia';
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@retailcrm/embed-ui-v1-contexts",
|
|
3
3
|
"description": "Reactive contexts for RetailCRM JS API",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "0.9.
|
|
5
|
+
"version": "0.9.11-alpha.1",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "RetailDriverLLC <integration@retailcrm.ru>",
|
|
8
8
|
"repository": "git@github.com:retailcrm/embed-ui.git",
|
|
@@ -101,14 +101,12 @@
|
|
|
101
101
|
"pinia": "^2.2"
|
|
102
102
|
},
|
|
103
103
|
"dependencies": {
|
|
104
|
-
"@floating-ui/core": "^1.7.3",
|
|
105
|
-
"@floating-ui/dom": "^1.7.4",
|
|
106
104
|
"@omnicajs/symfony-router": "^1.0.0",
|
|
107
|
-
"@retailcrm/embed-ui-v1-types": "^0.9.
|
|
105
|
+
"@retailcrm/embed-ui-v1-types": "^0.9.11-alpha.1"
|
|
108
106
|
},
|
|
109
107
|
"devDependencies": {
|
|
110
108
|
"@remote-ui/rpc": "^1.4.7",
|
|
111
|
-
"@retailcrm/embed-ui-v1-testing": "^0.9.
|
|
109
|
+
"@retailcrm/embed-ui-v1-testing": "^0.9.11-alpha.1",
|
|
112
110
|
"tsx": "^4.21.0",
|
|
113
111
|
"typescript": "^5.9.3",
|
|
114
112
|
"vite": "^7.2.7",
|
package/types/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import type { Schema as
|
|
1
|
+
import type { Schema as CurrentUserSchema } from './user/current'
|
|
2
2
|
import type { Schema as CustomerCardPhoneSchema } from './customer/card-phone'
|
|
3
|
+
import type { Schema as CustomerCardSchema } from './customer/card'
|
|
3
4
|
import type { Schema as OrderCardSchema } from './order/card'
|
|
4
5
|
import type { Schema as OrderCardSettingsSchema } from './order/card-settings'
|
|
5
|
-
import type { Schema as CurrentUserSchema } from './user/current'
|
|
6
6
|
import type { Schema as SettingsSchema } from './settings'
|
|
7
7
|
|
|
8
8
|
import type { ActionSchema } from '@retailcrm/embed-ui-v1-types/context'
|
package/types/order/card.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { Money } from '@retailcrm/embed-ui-v1-types/domain'
|
|
2
1
|
import type { Dimensions } from '@retailcrm/embed-ui-v1-types/domain'
|
|
2
|
+
import type { Money } from '@retailcrm/embed-ui-v1-types/domain'
|
|
3
3
|
import type { Weight } from '@retailcrm/embed-ui-v1-types/domain'
|
|
4
4
|
|
|
5
5
|
import type { Field, ReadonlyField } from '@retailcrm/embed-ui-v1-types/context'
|