bmc-common-resource 1.1.152 → 1.1.154
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/constants/dictionary-customer-classification-options.constant.d.ts +5 -0
- package/dist/constants/index.d.ts +1 -0
- package/dist/enums/dictionary-identify.enum.d.ts +5 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/interfaces/dictionary.interface.d.ts +7 -1
- package/package.json +1 -1
|
@@ -4,6 +4,7 @@ import { PROCESS_STAGE_ENUM } from '../enums/process-stage.enum';
|
|
|
4
4
|
import { CUSTOMER_LABEL_ENUM } from '../enums/customer-label.enum';
|
|
5
5
|
import { BUSINESS_SCOPE_ENUM } from '../enums/business-scope.enum';
|
|
6
6
|
import { BUSINESS_WORK_PHASE_ENUM } from '../enums/business-work-phase.enum';
|
|
7
|
+
import { CUSTOMER_CLASSIFICATION_ENUM } from '../enums/customer-classification.enum';
|
|
7
8
|
/**
|
|
8
9
|
* 字典选项接口
|
|
9
10
|
* @template T - 选项值的类型,默认为 string
|
|
@@ -49,7 +50,12 @@ export interface BusinessScopeOption extends DictionaryOption<BUSINESS_SCOPE_ENU
|
|
|
49
50
|
*/
|
|
50
51
|
export interface BusinessWorkPhaseOption extends DictionaryOption<BUSINESS_WORK_PHASE_ENUM> {
|
|
51
52
|
}
|
|
53
|
+
/**
|
|
54
|
+
* 客户分类选项接口
|
|
55
|
+
*/
|
|
56
|
+
export interface CustomerClassificationOption extends DictionaryOption<CUSTOMER_CLASSIFICATION_ENUM> {
|
|
57
|
+
}
|
|
52
58
|
/**
|
|
53
59
|
* 字典选项值类型
|
|
54
60
|
*/
|
|
55
|
-
export type DictionaryOptionValue = CUSTOMER_SOURCE_ENUM | PROCESS_STAGE_ENUM | CUSTOMER_LABEL_ENUM | BUSINESS_SCOPE_ENUM | BUSINESS_WORK_PHASE_ENUM;
|
|
61
|
+
export type DictionaryOptionValue = CUSTOMER_SOURCE_ENUM | PROCESS_STAGE_ENUM | CUSTOMER_LABEL_ENUM | BUSINESS_SCOPE_ENUM | BUSINESS_WORK_PHASE_ENUM | CUSTOMER_CLASSIFICATION_ENUM;
|