@skedulo/mex-types 0.0.5 → 1.0.0

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.
@@ -2,6 +2,7 @@ import { BaseFlatPageViewComponentModel, SkedButtonTheme } from '../view/FlatPag
2
2
  export type DataExpressionType = string;
3
3
  export type ValueExpressionType = string | ValueExpressionLogic[];
4
4
  export type LocalizedKey = string;
5
+ export type OneLevelBindingObject = any;
5
6
  export type ValueExpressionLogic = {
6
7
  condition?: DataExpressionType;
7
8
  value: ValueExpressionType;
@@ -1,4 +1,4 @@
1
- import { ButtonGroupItemComponentModel, DataExpressionType, ListPageAddNewDefaultDataType, LocalizedKey, RoutingType } from '../common/CommonTypes';
1
+ import { ButtonGroupItemComponentModel, DataExpressionType, ListPageAddNewDefaultDataType, LocalizedKey, OneLevelBindingObject, RoutingType } from '../common/CommonTypes';
2
2
  import { BaseListPageViewComponentModel } from '../view/ListPageViewComponentModel';
3
3
  import { BaseComponentModel } from '../common/BaseComponentModel';
4
4
  import { BaseFlatPageViewComponentModel } from '../view/FlatPageViewComponentModel';
@@ -16,7 +16,7 @@ export interface BasePageComponentModel extends BaseComponentModel {
16
16
  }
17
17
  export type DefaultPageData = {
18
18
  objectName: string | undefined;
19
- data: any;
19
+ data: OneLevelBindingObject;
20
20
  };
21
21
  export type AddNewButtonData = {
22
22
  text: string;
@@ -78,7 +78,7 @@ export interface FlatPageComponentModel extends BasePageComponentModel {
78
78
  insertTitle: LocalizedKey;
79
79
  updateTitle: LocalizedKey;
80
80
  insertButtonText: LocalizedKey;
81
- defaultDataForNewObject: any;
81
+ defaultDataForNewObject: OneLevelBindingObject;
82
82
  validator: ValidatorDefinitionModel | undefined;
83
83
  readonly: DataExpressionType | boolean;
84
84
  };
@@ -1,5 +1,5 @@
1
1
  import { BaseComponentModel } from '../common/BaseComponentModel';
2
- import { ButtonGroupItemComponentModel, DataExpressionType, ListPageAddNewDefaultDataType, LocalizedKey, RoutingType } from '../common/CommonTypes';
2
+ import { ButtonGroupItemComponentModel, DataExpressionType, ListPageAddNewDefaultDataType, LocalizedKey, OneLevelBindingObject, RoutingType } from '../common/CommonTypes';
3
3
  import { SelectPageSearchBarConfig } from './SearchPage';
4
4
  import { ValidatorDefinitionModel } from '../validator/ValidatorModel';
5
5
  export interface BaseFlatPageViewComponentModel extends BaseComponentModel {
@@ -112,7 +112,7 @@ export interface MultiSelectEditorViewComponentModel extends CommonEditorViewCom
112
112
  validator: ValidatorDefinitionModel;
113
113
  }
114
114
  export interface ConstructResultObject {
115
- data: any;
115
+ data: OneLevelBindingObject;
116
116
  objectName: string;
117
117
  compareProperty: string;
118
118
  }
@@ -1,4 +1,4 @@
1
- import { DataExpressionType, LocalizedKey } from '../common/CommonTypes';
1
+ import { DataExpressionType, LocalizedKey, OneLevelBindingObject } from '../common/CommonTypes';
2
2
  export type SelectPageConfig = {
3
3
  searchBar: {
4
4
  filterOnProperties: string[] | undefined;
@@ -17,6 +17,11 @@ export type SelectPageConfig = {
17
17
  title: LocalizedKey;
18
18
  hasClearBtn: boolean;
19
19
  };
20
+ onlineSource?: SelectPageOnlineSource;
21
+ };
22
+ export type SelectPageOnlineSource = {
23
+ key: DataExpressionType;
24
+ variables: OneLevelBindingObject;
20
25
  };
21
26
  export type SelectPageSearchBarConfig = {
22
27
  filterOnProperties: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skedulo/mex-types",
3
- "version": "0.0.5",
3
+ "version": "1.0.0",
4
4
  "description": "A central repository store for all the interfaces, type definitions of MEX engine",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -9,7 +9,9 @@
9
9
  "lint": "tslint 'src/**/*.ts'",
10
10
  "compile": "tsc",
11
11
  "build": "npm run compile",
12
- "clean": "rm -rf tsconfig.tsbuildinfo dist coverage"
12
+ "clean": "rm -rf tsconfig.tsbuildinfo dist coverage",
13
+ "commit": "npx cz",
14
+ "semantic-release": "semantic-release"
13
15
  },
14
16
  "files": [
15
17
  "dist/",
@@ -19,7 +21,7 @@
19
21
  "prepublish": "tsc",
20
22
  "repository": {
21
23
  "type": "git",
22
- "url": "git+https://github.com/Skedulo/mex-types.git"
24
+ "url": "https://github.com/Skedulo/mex-types.git"
23
25
  },
24
26
  "author": "Skedulo",
25
27
  "license": "MIT",
@@ -27,8 +29,21 @@
27
29
  "url": "https://github.com/Skedulo/mex-types/issues"
28
30
  },
29
31
  "devDependencies": {
32
+ "@semantic-release/changelog": "^6.0.3",
33
+ "@semantic-release/git": "^10.0.1",
34
+ "commitizen": "^4.3.0",
35
+ "cz-conventional-changelog": "^3.3.0",
30
36
  "tslint": "^6.1.3",
31
37
  "tslint-microsoft-contrib": "^6.2.0",
32
- "typescript": "^5.1.6"
38
+ "typescript": "^5.1.6",
39
+ "semantic-release": "^21.1.1"
40
+ },
41
+ "config": {
42
+ "commitizen": {
43
+ "path": "./node_modules/cz-conventional-changelog"
44
+ }
45
+ },
46
+ "publishConfig": {
47
+ "access": "public"
33
48
  }
34
49
  }
package/yarn.lock DELETED
@@ -1,292 +0,0 @@
1
- # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2
- # yarn lockfile v1
3
-
4
-
5
- "@babel/code-frame@^7.0.0":
6
- version "7.22.10"
7
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.10.tgz#1c20e612b768fefa75f6e90d6ecb86329247f0a3"
8
- integrity sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA==
9
- dependencies:
10
- "@babel/highlight" "^7.22.10"
11
- chalk "^2.4.2"
12
-
13
- "@babel/helper-validator-identifier@^7.22.5":
14
- version "7.22.5"
15
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193"
16
- integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==
17
-
18
- "@babel/highlight@^7.22.10":
19
- version "7.22.10"
20
- resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.10.tgz#02a3f6d8c1cb4521b2fd0ab0da8f4739936137d7"
21
- integrity sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ==
22
- dependencies:
23
- "@babel/helper-validator-identifier" "^7.22.5"
24
- chalk "^2.4.2"
25
- js-tokens "^4.0.0"
26
-
27
- ansi-styles@^3.2.1:
28
- version "3.2.1"
29
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
30
- integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
31
- dependencies:
32
- color-convert "^1.9.0"
33
-
34
- argparse@^1.0.7:
35
- version "1.0.10"
36
- resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
37
- integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
38
- dependencies:
39
- sprintf-js "~1.0.2"
40
-
41
- balanced-match@^1.0.0:
42
- version "1.0.2"
43
- resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
44
- integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
45
-
46
- brace-expansion@^1.1.7:
47
- version "1.1.11"
48
- resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
49
- integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
50
- dependencies:
51
- balanced-match "^1.0.0"
52
- concat-map "0.0.1"
53
-
54
- builtin-modules@^1.1.1:
55
- version "1.1.1"
56
- resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
57
- integrity sha512-wxXCdllwGhI2kCC0MnvTGYTMvnVZTvqgypkiTI8Pa5tcz2i6VqsqwYGgqwXji+4RgCzms6EajE4IxiUH6HH8nQ==
58
-
59
- chalk@^2.3.0, chalk@^2.4.2:
60
- version "2.4.2"
61
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
62
- integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
63
- dependencies:
64
- ansi-styles "^3.2.1"
65
- escape-string-regexp "^1.0.5"
66
- supports-color "^5.3.0"
67
-
68
- color-convert@^1.9.0:
69
- version "1.9.3"
70
- resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
71
- integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
72
- dependencies:
73
- color-name "1.1.3"
74
-
75
- color-name@1.1.3:
76
- version "1.1.3"
77
- resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
78
- integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
79
-
80
- commander@^2.12.1:
81
- version "2.20.3"
82
- resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
83
- integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
84
-
85
- concat-map@0.0.1:
86
- version "0.0.1"
87
- resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
88
- integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
89
-
90
- diff@^4.0.1:
91
- version "4.0.2"
92
- resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d"
93
- integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==
94
-
95
- escape-string-regexp@^1.0.5:
96
- version "1.0.5"
97
- resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
98
- integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
99
-
100
- esprima@^4.0.0:
101
- version "4.0.1"
102
- resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
103
- integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
104
-
105
- fs.realpath@^1.0.0:
106
- version "1.0.0"
107
- resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
108
- integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
109
-
110
- function-bind@^1.1.1:
111
- version "1.1.1"
112
- resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
113
- integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
114
-
115
- glob@^7.1.1:
116
- version "7.2.3"
117
- resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
118
- integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
119
- dependencies:
120
- fs.realpath "^1.0.0"
121
- inflight "^1.0.4"
122
- inherits "2"
123
- minimatch "^3.1.1"
124
- once "^1.3.0"
125
- path-is-absolute "^1.0.0"
126
-
127
- has-flag@^3.0.0:
128
- version "3.0.0"
129
- resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
130
- integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
131
-
132
- has@^1.0.3:
133
- version "1.0.3"
134
- resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
135
- integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
136
- dependencies:
137
- function-bind "^1.1.1"
138
-
139
- inflight@^1.0.4:
140
- version "1.0.6"
141
- resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
142
- integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
143
- dependencies:
144
- once "^1.3.0"
145
- wrappy "1"
146
-
147
- inherits@2:
148
- version "2.0.4"
149
- resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
150
- integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
151
-
152
- is-core-module@^2.13.0:
153
- version "2.13.0"
154
- resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.0.tgz#bb52aa6e2cbd49a30c2ba68c42bf3435ba6072db"
155
- integrity sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==
156
- dependencies:
157
- has "^1.0.3"
158
-
159
- js-tokens@^4.0.0:
160
- version "4.0.0"
161
- resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
162
- integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
163
-
164
- js-yaml@^3.13.1:
165
- version "3.14.1"
166
- resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537"
167
- integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==
168
- dependencies:
169
- argparse "^1.0.7"
170
- esprima "^4.0.0"
171
-
172
- minimatch@^3.0.4, minimatch@^3.1.1:
173
- version "3.1.2"
174
- resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
175
- integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
176
- dependencies:
177
- brace-expansion "^1.1.7"
178
-
179
- minimist@^1.2.6:
180
- version "1.2.8"
181
- resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
182
- integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
183
-
184
- mkdirp@^0.5.3:
185
- version "0.5.6"
186
- resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6"
187
- integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==
188
- dependencies:
189
- minimist "^1.2.6"
190
-
191
- once@^1.3.0:
192
- version "1.4.0"
193
- resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
194
- integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
195
- dependencies:
196
- wrappy "1"
197
-
198
- path-is-absolute@^1.0.0:
199
- version "1.0.1"
200
- resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
201
- integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
202
-
203
- path-parse@^1.0.7:
204
- version "1.0.7"
205
- resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
206
- integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
207
-
208
- resolve@^1.3.2:
209
- version "1.22.4"
210
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.4.tgz#1dc40df46554cdaf8948a486a10f6ba1e2026c34"
211
- integrity sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==
212
- dependencies:
213
- is-core-module "^2.13.0"
214
- path-parse "^1.0.7"
215
- supports-preserve-symlinks-flag "^1.0.0"
216
-
217
- semver@^5.3.0:
218
- version "5.7.2"
219
- resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8"
220
- integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==
221
-
222
- sprintf-js@~1.0.2:
223
- version "1.0.3"
224
- resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
225
- integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==
226
-
227
- supports-color@^5.3.0:
228
- version "5.5.0"
229
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
230
- integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
231
- dependencies:
232
- has-flag "^3.0.0"
233
-
234
- supports-preserve-symlinks-flag@^1.0.0:
235
- version "1.0.0"
236
- resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
237
- integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
238
-
239
- tslib@^1.13.0, tslib@^1.8.1:
240
- version "1.14.1"
241
- resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
242
- integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
243
-
244
- tslint-microsoft-contrib@^6.2.0:
245
- version "6.2.0"
246
- resolved "https://registry.yarnpkg.com/tslint-microsoft-contrib/-/tslint-microsoft-contrib-6.2.0.tgz#8aa0f40584d066d05e6a5e7988da5163b85f2ad4"
247
- integrity sha512-6tfi/2tHqV/3CL77pULBcK+foty11Rr0idRDxKnteTaKm6gWF9qmaCNU17HVssOuwlYNyOmd9Jsmjd+1t3a3qw==
248
- dependencies:
249
- tsutils "^2.27.2 <2.29.0"
250
-
251
- tslint@^6.1.3:
252
- version "6.1.3"
253
- resolved "https://registry.yarnpkg.com/tslint/-/tslint-6.1.3.tgz#5c23b2eccc32487d5523bd3a470e9aa31789d904"
254
- integrity sha512-IbR4nkT96EQOvKE2PW/djGz8iGNeJ4rF2mBfiYaR/nvUWYKJhLwimoJKgjIFEIDibBtOevj7BqCRL4oHeWWUCg==
255
- dependencies:
256
- "@babel/code-frame" "^7.0.0"
257
- builtin-modules "^1.1.1"
258
- chalk "^2.3.0"
259
- commander "^2.12.1"
260
- diff "^4.0.1"
261
- glob "^7.1.1"
262
- js-yaml "^3.13.1"
263
- minimatch "^3.0.4"
264
- mkdirp "^0.5.3"
265
- resolve "^1.3.2"
266
- semver "^5.3.0"
267
- tslib "^1.13.0"
268
- tsutils "^2.29.0"
269
-
270
- "tsutils@^2.27.2 <2.29.0":
271
- version "2.28.0"
272
- resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.28.0.tgz#6bd71e160828f9d019b6f4e844742228f85169a1"
273
- integrity sha512-bh5nAtW0tuhvOJnx1GLRn5ScraRLICGyJV5wJhtRWOLsxW70Kk5tZtpK3O/hW6LDnqKS9mlUMPZj9fEMJ0gxqA==
274
- dependencies:
275
- tslib "^1.8.1"
276
-
277
- tsutils@^2.29.0:
278
- version "2.29.0"
279
- resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.29.0.tgz#32b488501467acbedd4b85498673a0812aca0b99"
280
- integrity sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==
281
- dependencies:
282
- tslib "^1.8.1"
283
-
284
- typescript@^5.1.6:
285
- version "5.1.6"
286
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.1.6.tgz#02f8ac202b6dad2c0dd5e0913745b47a37998274"
287
- integrity sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==
288
-
289
- wrappy@1:
290
- version "1.0.2"
291
- resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
292
- integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==