@oinone/kunlun-meta 6.2.1 → 6.2.3
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.
|
@@ -334,6 +334,9 @@ export declare enum ActionContextType {
|
|
|
334
334
|
SingleAndBatch = "SINGLE_AND_BATCH",
|
|
335
335
|
ContextFree = "CONTEXT_FREE"
|
|
336
336
|
}
|
|
337
|
+
/**
|
|
338
|
+
* @deprecated please using string
|
|
339
|
+
*/
|
|
337
340
|
export declare type ActionId = EntityId;
|
|
338
341
|
export interface IBaseAbstractAction {
|
|
339
342
|
title?: string;
|
|
@@ -347,7 +350,7 @@ export interface IBaseAbstractAction {
|
|
|
347
350
|
invisible?: string;
|
|
348
351
|
}
|
|
349
352
|
export interface IBaseAction extends IBaseAbstractAction {
|
|
350
|
-
id:
|
|
353
|
+
id: string;
|
|
351
354
|
name: string;
|
|
352
355
|
model: string;
|
|
353
356
|
modelDefinition?: IModel;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oinone/kunlun-meta",
|
|
3
|
-
"version": "6.2.
|
|
3
|
+
"version": "6.2.3",
|
|
4
4
|
"main": "index.ts",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"prebuild": "rimraf dist",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"x-postpublish": "node ../../scripts/postpublish.js"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"@oinone/kunlun-request": "6.2.
|
|
14
|
+
"@oinone/kunlun-request": "6.2.3"
|
|
15
15
|
},
|
|
16
16
|
"gitHead": "2b4c0c7911626c105ca71c2d41e54af470e2e079"
|
|
17
17
|
}
|
|
@@ -488,6 +488,9 @@ export enum ActionContextType {
|
|
|
488
488
|
ContextFree = 'CONTEXT_FREE'
|
|
489
489
|
}
|
|
490
490
|
|
|
491
|
+
/**
|
|
492
|
+
* @deprecated please using string
|
|
493
|
+
*/
|
|
491
494
|
export type ActionId = EntityId;
|
|
492
495
|
|
|
493
496
|
export interface IBaseAbstractAction {
|
|
@@ -503,7 +506,7 @@ export interface IBaseAbstractAction {
|
|
|
503
506
|
}
|
|
504
507
|
|
|
505
508
|
export interface IBaseAction extends IBaseAbstractAction {
|
|
506
|
-
id:
|
|
509
|
+
id: string;
|
|
507
510
|
name: string;
|
|
508
511
|
model: string;
|
|
509
512
|
modelDefinition?: IModel;
|