@c-rex/types 0.1.11 → 0.1.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/dist/index.d.mts CHANGED
@@ -32,5 +32,14 @@ type metaTags = {
32
32
  content: string;
33
33
  }[];
34
34
  type DeviceType = typeof DEVICE_OPTIONS[keyof typeof DEVICE_OPTIONS];
35
+ type Favorite = {
36
+ id: string;
37
+ label: string;
38
+ color: string;
39
+ };
40
+ type WarningVars = {
41
+ key: string;
42
+ default: any;
43
+ };
35
44
 
36
- export type { DeviceType, DocumentsType, FileRenditionType, FilesExtensions, LogCategoriesType, LogLevelType, OperatorType, QueryParams, ResultTypes, ResultViewStyles, WildCardType, articleInfoItemType, articlePageLayoutType, metaTags };
45
+ export type { DeviceType, DocumentsType, Favorite, FileRenditionType, FilesExtensions, LogCategoriesType, LogLevelType, OperatorType, QueryParams, ResultTypes, ResultViewStyles, WarningVars, WildCardType, articleInfoItemType, articlePageLayoutType, metaTags };
package/dist/index.d.ts CHANGED
@@ -32,5 +32,14 @@ type metaTags = {
32
32
  content: string;
33
33
  }[];
34
34
  type DeviceType = typeof DEVICE_OPTIONS[keyof typeof DEVICE_OPTIONS];
35
+ type Favorite = {
36
+ id: string;
37
+ label: string;
38
+ color: string;
39
+ };
40
+ type WarningVars = {
41
+ key: string;
42
+ default: any;
43
+ };
35
44
 
36
- export type { DeviceType, DocumentsType, FileRenditionType, FilesExtensions, LogCategoriesType, LogLevelType, OperatorType, QueryParams, ResultTypes, ResultViewStyles, WildCardType, articleInfoItemType, articlePageLayoutType, metaTags };
45
+ export type { DeviceType, DocumentsType, Favorite, FileRenditionType, FilesExtensions, LogCategoriesType, LogLevelType, OperatorType, QueryParams, ResultTypes, ResultViewStyles, WarningVars, WildCardType, articleInfoItemType, articlePageLayoutType, metaTags };
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"sourcesContent":["import {\n LOG_CATEGORIES,\n LOG_LEVELS,\n ALL,\n RESULT_VIEW_STYLES,\n FILES_EXTENSIONS,\n RESULT_TYPES,\n WILD_CARD_OPTIONS,\n ARTICLE_PAGE_LAYOUT,\n DEVICE_OPTIONS,\n OPERATOR_OPTIONS\n} from \"@c-rex/constants\";\n\nexport type QueryParams = { key: string; value: string };\nexport type LogLevelType = keyof typeof LOG_LEVELS | typeof ALL\nexport type LogCategoriesType = typeof LOG_CATEGORIES[number] | typeof ALL;\nexport type ResultViewStyles = typeof RESULT_VIEW_STYLES[number];\nexport type FilesExtensions = keyof typeof FILES_EXTENSIONS;\nexport type ResultTypes = keyof typeof RESULT_TYPES\n\nexport type WildCardType = keyof typeof WILD_CARD_OPTIONS;\nexport type OperatorType = keyof typeof OPERATOR_OPTIONS;\n\nexport type FileRenditionType = {\n format: string;\n link: string;\n}\n\nexport type articlePageLayoutType = keyof typeof ARTICLE_PAGE_LAYOUT\n\nexport type DocumentsType = {\n [key: string]: {\n view: string;\n download: string;\n }\n}\n\nexport type articleInfoItemType = {\n label: string;\n value: string;\n link?: string;\n}\n\nexport type metaTags = { name: string; content: string }[];\n\nexport type DeviceType = typeof DEVICE_OPTIONS[keyof typeof DEVICE_OPTIONS];"],"mappings":";;;;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["import {\n LOG_CATEGORIES,\n LOG_LEVELS,\n ALL,\n RESULT_VIEW_STYLES,\n FILES_EXTENSIONS,\n RESULT_TYPES,\n WILD_CARD_OPTIONS,\n ARTICLE_PAGE_LAYOUT,\n DEVICE_OPTIONS,\n OPERATOR_OPTIONS\n} from \"@c-rex/constants\";\n\nexport type QueryParams = { key: string; value: string };\nexport type LogLevelType = keyof typeof LOG_LEVELS | typeof ALL\nexport type LogCategoriesType = typeof LOG_CATEGORIES[number] | typeof ALL;\nexport type ResultViewStyles = typeof RESULT_VIEW_STYLES[number];\nexport type FilesExtensions = keyof typeof FILES_EXTENSIONS;\nexport type ResultTypes = keyof typeof RESULT_TYPES\n\nexport type WildCardType = keyof typeof WILD_CARD_OPTIONS;\nexport type OperatorType = keyof typeof OPERATOR_OPTIONS;\n\nexport type FileRenditionType = {\n format: string;\n link: string;\n}\n\nexport type articlePageLayoutType = keyof typeof ARTICLE_PAGE_LAYOUT\n\nexport type DocumentsType = {\n [key: string]: {\n view: string;\n download: string;\n }\n}\n\nexport type articleInfoItemType = {\n label: string;\n value: string;\n link?: string;\n}\n\nexport type metaTags = { name: string; content: string }[];\n\nexport type DeviceType = typeof DEVICE_OPTIONS[keyof typeof DEVICE_OPTIONS];\n\n\nexport type Favorite = {\n id: string;\n label: string;\n color: string;\n}\n\nexport type WarningVars = {\n key: string;\n default: any;\n}\n\n"],"mappings":";;;;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@c-rex/types",
3
- "version": "0.1.11",
3
+ "version": "0.1.13",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "module": "./dist/index.mjs",