@stripe/extensibility-tool-utils 0.6.2
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/LICENSE.md +19 -0
- package/dist/cli/cli-ux.d.ts +30 -0
- package/dist/cli/cli-ux.d.ts.map +1 -0
- package/dist/cli/context.d.ts +24 -0
- package/dist/cli/context.d.ts.map +1 -0
- package/dist/cli/guards.d.ts +24 -0
- package/dist/cli/guards.d.ts.map +1 -0
- package/dist/cli/index.d.ts +6 -0
- package/dist/cli/index.d.ts.map +1 -0
- package/dist/cli/output-path.d.ts +11 -0
- package/dist/cli/output-path.d.ts.map +1 -0
- package/dist/extensibility-tool-utils-alpha.d.ts +383 -0
- package/dist/extensibility-tool-utils-beta.d.ts +383 -0
- package/dist/extensibility-tool-utils-internal.d.ts +1866 -0
- package/dist/extensibility-tool-utils-public.d.ts +383 -0
- package/dist/file-editor/assertions/index.d.ts +68 -0
- package/dist/file-editor/assertions/index.d.ts.map +1 -0
- package/dist/file-editor/document.d.ts +107 -0
- package/dist/file-editor/document.d.ts.map +1 -0
- package/dist/file-editor/errors.d.ts +66 -0
- package/dist/file-editor/errors.d.ts.map +1 -0
- package/dist/file-editor/facades/api-extractor.d.ts +34 -0
- package/dist/file-editor/facades/api-extractor.d.ts.map +1 -0
- package/dist/file-editor/facades/brands.d.ts +45 -0
- package/dist/file-editor/facades/brands.d.ts.map +1 -0
- package/dist/file-editor/facades/package-json.d.ts +55 -0
- package/dist/file-editor/facades/package-json.d.ts.map +1 -0
- package/dist/file-editor/facades/stripe-app-manifest.d.ts +62 -0
- package/dist/file-editor/facades/stripe-app-manifest.d.ts.map +1 -0
- package/dist/file-editor/facades/tsconfig-options.d.ts +76 -0
- package/dist/file-editor/facades/tsconfig-options.d.ts.map +1 -0
- package/dist/file-editor/facades/tsconfig.d.ts +43 -0
- package/dist/file-editor/facades/tsconfig.d.ts.map +1 -0
- package/dist/file-editor/fingerprint.d.ts +39 -0
- package/dist/file-editor/fingerprint.d.ts.map +1 -0
- package/dist/file-editor/formats/adapter.d.ts +29 -0
- package/dist/file-editor/formats/adapter.d.ts.map +1 -0
- package/dist/file-editor/formats/detect.d.ts +9 -0
- package/dist/file-editor/formats/detect.d.ts.map +1 -0
- package/dist/file-editor/formats/index.d.ts +13 -0
- package/dist/file-editor/formats/index.d.ts.map +1 -0
- package/dist/file-editor/formats/jsonc.d.ts +14 -0
- package/dist/file-editor/formats/jsonc.d.ts.map +1 -0
- package/dist/file-editor/formats/yaml.d.ts +11 -0
- package/dist/file-editor/formats/yaml.d.ts.map +1 -0
- package/dist/file-editor/index.d.ts +42 -0
- package/dist/file-editor/index.d.ts.map +1 -0
- package/dist/file-editor/pointer.d.ts +74 -0
- package/dist/file-editor/pointer.d.ts.map +1 -0
- package/dist/file-editor/schema.d.ts +72 -0
- package/dist/file-editor/schema.d.ts.map +1 -0
- package/dist/file-editor/state/fs-manifest.d.ts +30 -0
- package/dist/file-editor/state/fs-manifest.d.ts.map +1 -0
- package/dist/file-editor/state/in-memory.d.ts +5 -0
- package/dist/file-editor/state/in-memory.d.ts.map +1 -0
- package/dist/file-editor/state/store.d.ts +19 -0
- package/dist/file-editor/state/store.d.ts.map +1 -0
- package/dist/file-editor/transaction.d.ts +60 -0
- package/dist/file-editor/transaction.d.ts.map +1 -0
- package/dist/file-editor/types.d.ts +131 -0
- package/dist/file-editor/types.d.ts.map +1 -0
- package/dist/file-editor/util/atomic-write.d.ts +7 -0
- package/dist/file-editor/util/atomic-write.d.ts.map +1 -0
- package/dist/file-editor/util/diff.d.ts +20 -0
- package/dist/file-editor/util/diff.d.ts.map +1 -0
- package/dist/file-editor/value-at-pointer.d.ts +46 -0
- package/dist/file-editor/value-at-pointer.d.ts.map +1 -0
- package/dist/index.cjs +2967 -0
- package/dist/index.d.ts +26 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +2847 -0
- package/dist/logging/create-logger.d.ts +29 -0
- package/dist/logging/create-logger.d.ts.map +1 -0
- package/dist/logging/index.d.ts +10 -0
- package/dist/logging/index.d.ts.map +1 -0
- package/dist/logging/levels.d.ts +21 -0
- package/dist/logging/levels.d.ts.map +1 -0
- package/dist/naming/inflection.d.ts +15 -0
- package/dist/naming/inflection.d.ts.map +1 -0
- package/dist/naming/metadata-policy.d.ts +35 -0
- package/dist/naming/metadata-policy.d.ts.map +1 -0
- package/dist/naming/stripe-api-case.d.ts +9 -0
- package/dist/naming/stripe-api-case.d.ts.map +1 -0
- package/dist/naming/types.d.ts +11 -0
- package/dist/naming/types.d.ts.map +1 -0
- package/dist/naming/validate.d.ts +6 -0
- package/dist/naming/validate.d.ts.map +1 -0
- package/dist/templates/filesystem-fs.d.ts +20 -0
- package/dist/templates/filesystem-fs.d.ts.map +1 -0
- package/dist/templates/generator.d.ts +305 -0
- package/dist/templates/generator.d.ts.map +1 -0
- package/dist/templates/in-memory-fs.d.ts +44 -0
- package/dist/templates/in-memory-fs.d.ts.map +1 -0
- package/dist/templates/index.d.ts +28 -0
- package/dist/templates/index.d.ts.map +1 -0
- package/dist/templates/simple-templates.d.ts +75 -0
- package/dist/templates/simple-templates.d.ts.map +1 -0
- package/dist/templates/template-manager.d.ts +54 -0
- package/dist/templates/template-manager.d.ts.map +1 -0
- package/dist/templates/types.d.ts +87 -0
- package/dist/templates/types.d.ts.map +1 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -0
- package/dist/workspace-versions.d.ts +30 -0
- package/dist/workspace-versions.d.ts.map +1 -0
- package/package.json +60 -0
|
@@ -0,0 +1,383 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `@stripe/extensibility-tool-utils`
|
|
3
|
+
*
|
|
4
|
+
* Internal standalone utilities shared across Stripe extensibility tooling.
|
|
5
|
+
*
|
|
6
|
+
* @packageDocumentation
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
import type { MetadataInferenceContext } from '@formspec/core';
|
|
11
|
+
import type { MetadataPolicyInput } from '@formspec/core';
|
|
12
|
+
import pino from 'pino';
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Branded string types with validating smart constructors.
|
|
16
|
+
*
|
|
17
|
+
* Brands use symbol keys so they do not appear in IDE autocomplete
|
|
18
|
+
* (per project convention).
|
|
19
|
+
*/
|
|
20
|
+
declare const __semverRangeBrand: unique symbol;
|
|
21
|
+
|
|
22
|
+
/** A well-formed semver version string (e.g. `"1.2.3"`, `"4.0.0-rc.1"`). */
|
|
23
|
+
declare const __semverVersionBrand: unique symbol;
|
|
24
|
+
|
|
25
|
+
/* Excluded from this release type: _AfterExecuteResult */
|
|
26
|
+
|
|
27
|
+
/* Excluded from this release type: _ApiExtractorConfig */
|
|
28
|
+
|
|
29
|
+
/* Excluded from this release type: _ApiExtractorDoc */
|
|
30
|
+
|
|
31
|
+
/* Excluded from this release type: _ApiNameValidationResult */
|
|
32
|
+
|
|
33
|
+
/* Excluded from this release type: _Assertion */
|
|
34
|
+
|
|
35
|
+
/* Excluded from this release type: _AssertionContext */
|
|
36
|
+
|
|
37
|
+
/* Excluded from this release type: _AssertionError */
|
|
38
|
+
|
|
39
|
+
/* Excluded from this release type: _AssertOpts */
|
|
40
|
+
|
|
41
|
+
/* Excluded from this release type: _AsyncAssertion */
|
|
42
|
+
|
|
43
|
+
/* Excluded from this release type: _BeforeExecuteResult */
|
|
44
|
+
|
|
45
|
+
/* Excluded from this release type: _beginTransaction */
|
|
46
|
+
|
|
47
|
+
/* Excluded from this release type: _canonicalNormalize */
|
|
48
|
+
|
|
49
|
+
/* Excluded from this release type: _canonicalStringify */
|
|
50
|
+
|
|
51
|
+
/* Excluded from this release type: _check */
|
|
52
|
+
|
|
53
|
+
/* Excluded from this release type: _CliContext */
|
|
54
|
+
|
|
55
|
+
/* Excluded from this release type: _CliUx */
|
|
56
|
+
|
|
57
|
+
/* Excluded from this release type: _CommitOptions */
|
|
58
|
+
|
|
59
|
+
/* Excluded from this release type: _CommitReport */
|
|
60
|
+
|
|
61
|
+
/* Excluded from this release type: _compilePointer */
|
|
62
|
+
|
|
63
|
+
/* Excluded from this release type: _CompilerOptionKey */
|
|
64
|
+
|
|
65
|
+
/* Excluded from this release type: _CompilerOptions */
|
|
66
|
+
|
|
67
|
+
/* Excluded from this release type: _CompilerOptionValue */
|
|
68
|
+
|
|
69
|
+
/* Excluded from this release type: _compositeGenerator */
|
|
70
|
+
|
|
71
|
+
/* Excluded from this release type: _ConfirmationPolicy */
|
|
72
|
+
|
|
73
|
+
/* Excluded from this release type: _Conflict */
|
|
74
|
+
|
|
75
|
+
/* Excluded from this release type: _ConflictAbortedError */
|
|
76
|
+
|
|
77
|
+
/* Excluded from this release type: _ConflictError */
|
|
78
|
+
|
|
79
|
+
/* Excluded from this release type: _ConflictPolicy */
|
|
80
|
+
|
|
81
|
+
/* Excluded from this release type: _ConflictResolution */
|
|
82
|
+
|
|
83
|
+
/* Excluded from this release type: _ConflictResolver */
|
|
84
|
+
|
|
85
|
+
/* Excluded from this release type: _createCliContext */
|
|
86
|
+
|
|
87
|
+
/* Excluded from this release type: _createFilesystemTemplateFS */
|
|
88
|
+
|
|
89
|
+
/* Excluded from this release type: _createInMemoryTemplateFS */
|
|
90
|
+
|
|
91
|
+
/* Excluded from this release type: _createLogger */
|
|
92
|
+
|
|
93
|
+
/* Excluded from this release type: _createSimpleSingleFileTemplate */
|
|
94
|
+
|
|
95
|
+
/* Excluded from this release type: _createSimpleTemplate */
|
|
96
|
+
|
|
97
|
+
/* Excluded from this release type: _defaultMeta */
|
|
98
|
+
|
|
99
|
+
/* Excluded from this release type: _DepKind */
|
|
100
|
+
|
|
101
|
+
/* Excluded from this release type: _detectFormat */
|
|
102
|
+
|
|
103
|
+
/* Excluded from this release type: _detectMeta */
|
|
104
|
+
|
|
105
|
+
/* Excluded from this release type: _Diagnostic */
|
|
106
|
+
|
|
107
|
+
/* Excluded from this release type: _DiffHunk */
|
|
108
|
+
|
|
109
|
+
/* Excluded from this release type: _diffHunks */
|
|
110
|
+
|
|
111
|
+
/* Excluded from this release type: _DiffLine */
|
|
112
|
+
|
|
113
|
+
/* Excluded from this release type: _DiffOptions */
|
|
114
|
+
|
|
115
|
+
/* Excluded from this release type: _diffUnified */
|
|
116
|
+
|
|
117
|
+
/* Excluded from this release type: _Document */
|
|
118
|
+
|
|
119
|
+
/* Excluded from this release type: _escapeToken */
|
|
120
|
+
|
|
121
|
+
/* Excluded from this release type: _FileEditorError */
|
|
122
|
+
|
|
123
|
+
/* Excluded from this release type: _FileWriteOutcome */
|
|
124
|
+
|
|
125
|
+
/* Excluded from this release type: _fingerprint */
|
|
126
|
+
|
|
127
|
+
/* Excluded from this release type: _Format */
|
|
128
|
+
|
|
129
|
+
/* Excluded from this release type: _FormatAdapter */
|
|
130
|
+
|
|
131
|
+
/* Excluded from this release type: _FormatMeta */
|
|
132
|
+
|
|
133
|
+
/* Excluded from this release type: _FormatNotSupportedError */
|
|
134
|
+
|
|
135
|
+
/* Excluded from this release type: _FsCentralManifestStore */
|
|
136
|
+
|
|
137
|
+
/* Excluded from this release type: _FsCentralManifestStoreOptions */
|
|
138
|
+
|
|
139
|
+
/* Excluded from this release type: _GeneratedFile */
|
|
140
|
+
|
|
141
|
+
/* Excluded from this release type: _Generator */
|
|
142
|
+
|
|
143
|
+
/* Excluded from this release type: _GeneratorContext */
|
|
144
|
+
|
|
145
|
+
/* Excluded from this release type: _GeneratorDefectError */
|
|
146
|
+
|
|
147
|
+
/* Excluded from this release type: _GeneratorExecuteContext */
|
|
148
|
+
|
|
149
|
+
/* Excluded from this release type: _GeneratorExecuteResult */
|
|
150
|
+
|
|
151
|
+
/* Excluded from this release type: _GeneratorInputError */
|
|
152
|
+
|
|
153
|
+
/* Excluded from this release type: _GeneratorPlanResult */
|
|
154
|
+
|
|
155
|
+
/* Excluded from this release type: _GeneratorRunner */
|
|
156
|
+
|
|
157
|
+
/* Excluded from this release type: _GeneratorWriteResult */
|
|
158
|
+
|
|
159
|
+
/* Excluded from this release type: _getAdapter */
|
|
160
|
+
|
|
161
|
+
/* Excluded from this release type: _hasPointer */
|
|
162
|
+
|
|
163
|
+
/* Excluded from this release type: _inferStripeApiName */
|
|
164
|
+
|
|
165
|
+
/* Excluded from this release type: _InMemoryStateStore */
|
|
166
|
+
|
|
167
|
+
/* Excluded from this release type: _InMemoryTemplateFS */
|
|
168
|
+
|
|
169
|
+
/* Excluded from this release type: _isRecord */
|
|
170
|
+
|
|
171
|
+
/* Excluded from this release type: _isRecordWithValueType */
|
|
172
|
+
|
|
173
|
+
/* Excluded from this release type: _isSemverRange */
|
|
174
|
+
|
|
175
|
+
/* Excluded from this release type: _isSemverVersion */
|
|
176
|
+
|
|
177
|
+
/* Excluded from this release type: _IsUnknown */
|
|
178
|
+
|
|
179
|
+
/* Excluded from this release type: _jsonAdapter */
|
|
180
|
+
|
|
181
|
+
/* Excluded from this release type: _jsoncAdapter */
|
|
182
|
+
|
|
183
|
+
/* Excluded from this release type: _JsonPointer */
|
|
184
|
+
|
|
185
|
+
/* Excluded from this release type: _LoggerOptions */
|
|
186
|
+
|
|
187
|
+
/* Excluded from this release type: _LogLevel */
|
|
188
|
+
|
|
189
|
+
/* Excluded from this release type: _looksPlural */
|
|
190
|
+
|
|
191
|
+
/* Excluded from this release type: _looksSingular */
|
|
192
|
+
|
|
193
|
+
/* Excluded from this release type: _MergeOptions */
|
|
194
|
+
|
|
195
|
+
/* Excluded from this release type: _MutationOptions */
|
|
196
|
+
|
|
197
|
+
/* Excluded from this release type: _NarrowedElement */
|
|
198
|
+
|
|
199
|
+
/* Excluded from this release type: _NarrowedPartial */
|
|
200
|
+
|
|
201
|
+
/* Excluded from this release type: _NarrowedValue */
|
|
202
|
+
|
|
203
|
+
/* Excluded from this release type: _openApiExtractor */
|
|
204
|
+
|
|
205
|
+
/* Excluded from this release type: _openDocument */
|
|
206
|
+
|
|
207
|
+
/* Excluded from this release type: _openDocumentFromDisk */
|
|
208
|
+
|
|
209
|
+
/* Excluded from this release type: _OpenDocumentOptions */
|
|
210
|
+
|
|
211
|
+
/* Excluded from this release type: _openPackageJson */
|
|
212
|
+
|
|
213
|
+
/* Excluded from this release type: _openStripeAppManifest */
|
|
214
|
+
|
|
215
|
+
/* Excluded from this release type: _openTsConfig */
|
|
216
|
+
|
|
217
|
+
/* Excluded from this release type: _PackageJson */
|
|
218
|
+
|
|
219
|
+
/* Excluded from this release type: _PackageJsonDoc */
|
|
220
|
+
|
|
221
|
+
/* Excluded from this release type: _parseArrayIndex */
|
|
222
|
+
|
|
223
|
+
/* Excluded from this release type: _ParseError */
|
|
224
|
+
|
|
225
|
+
/* Excluded from this release type: _parseLogLevel */
|
|
226
|
+
|
|
227
|
+
/* Excluded from this release type: _parsePointer */
|
|
228
|
+
|
|
229
|
+
/* Excluded from this release type: _PathError */
|
|
230
|
+
|
|
231
|
+
/* Excluded from this release type: _PendingEdit */
|
|
232
|
+
|
|
233
|
+
/* Excluded from this release type: _PlannedFile */
|
|
234
|
+
|
|
235
|
+
/* Excluded from this release type: _pointer */
|
|
236
|
+
|
|
237
|
+
/* Excluded from this release type: _POINTER_STRING */
|
|
238
|
+
|
|
239
|
+
/* Excluded from this release type: _PointerBuilder */
|
|
240
|
+
|
|
241
|
+
/* Excluded from this release type: _PointerSegments */
|
|
242
|
+
|
|
243
|
+
/* Excluded from this release type: _ProjectExecuteContext */
|
|
244
|
+
|
|
245
|
+
/* Excluded from this release type: _ProjectGeneratorContext */
|
|
246
|
+
|
|
247
|
+
/* Excluded from this release type: _registerFormatAdapter */
|
|
248
|
+
|
|
249
|
+
/* Excluded from this release type: _resolvePointer */
|
|
250
|
+
|
|
251
|
+
/* Excluded from this release type: _runAssertions */
|
|
252
|
+
|
|
253
|
+
/* Excluded from this release type: _runAsyncAssertions */
|
|
254
|
+
|
|
255
|
+
/* Excluded from this release type: _SchemaValidationError */
|
|
256
|
+
|
|
257
|
+
/* Excluded from this release type: _SemverRange */
|
|
258
|
+
|
|
259
|
+
/* Excluded from this release type: _semverRange */
|
|
260
|
+
|
|
261
|
+
/* Excluded from this release type: _SemverVersion */
|
|
262
|
+
|
|
263
|
+
/* Excluded from this release type: _semverVersion */
|
|
264
|
+
|
|
265
|
+
/* Excluded from this release type: _Severity */
|
|
266
|
+
|
|
267
|
+
/* Excluded from this release type: _sha256Hex */
|
|
268
|
+
|
|
269
|
+
/* Excluded from this release type: _SingleTemplateManager */
|
|
270
|
+
|
|
271
|
+
/* Excluded from this release type: _SplitPointer */
|
|
272
|
+
|
|
273
|
+
/* Excluded from this release type: _SplitRest */
|
|
274
|
+
|
|
275
|
+
/* Excluded from this release type: _StandaloneExecuteContext */
|
|
276
|
+
|
|
277
|
+
/* Excluded from this release type: _StandaloneGeneratorContext */
|
|
278
|
+
|
|
279
|
+
/* Excluded from this release type: _StandardSchemaV1 */
|
|
280
|
+
|
|
281
|
+
/* Excluded from this release type: _StateRecord */
|
|
282
|
+
|
|
283
|
+
/* Excluded from this release type: _StateStore */
|
|
284
|
+
|
|
285
|
+
/* Excluded from this release type: _StepInto */
|
|
286
|
+
|
|
287
|
+
/* Excluded from this release type: _StripeAppManifest */
|
|
288
|
+
|
|
289
|
+
/* Excluded from this release type: _StripeAppManifestDoc */
|
|
290
|
+
|
|
291
|
+
/* Excluded from this release type: _stripeMetadataPolicy */
|
|
292
|
+
|
|
293
|
+
/* Excluded from this release type: _StripePermission */
|
|
294
|
+
|
|
295
|
+
/* Excluded from this release type: _Template */
|
|
296
|
+
|
|
297
|
+
/* Excluded from this release type: _TemplateContext */
|
|
298
|
+
|
|
299
|
+
/* Excluded from this release type: _TemplateFS */
|
|
300
|
+
|
|
301
|
+
/* Excluded from this release type: _TemplateFSImageEntry */
|
|
302
|
+
|
|
303
|
+
/* Excluded from this release type: _TemplateManager */
|
|
304
|
+
|
|
305
|
+
/* Excluded from this release type: _TemplateOutput */
|
|
306
|
+
|
|
307
|
+
/* Excluded from this release type: _toCapitalized */
|
|
308
|
+
|
|
309
|
+
/* Excluded from this release type: _tokenizeIdentifier */
|
|
310
|
+
|
|
311
|
+
/* Excluded from this release type: _toPascalCase */
|
|
312
|
+
|
|
313
|
+
/* Excluded from this release type: _toPlural */
|
|
314
|
+
|
|
315
|
+
/* Excluded from this release type: _toSentenceDisplayName */
|
|
316
|
+
|
|
317
|
+
/* Excluded from this release type: _toSingular */
|
|
318
|
+
|
|
319
|
+
/* Excluded from this release type: _toSnakeCase */
|
|
320
|
+
|
|
321
|
+
/* Excluded from this release type: _toStripeApiCase */
|
|
322
|
+
|
|
323
|
+
/* Excluded from this release type: _Transaction */
|
|
324
|
+
|
|
325
|
+
/* Excluded from this release type: _TransactionOptions */
|
|
326
|
+
|
|
327
|
+
/* Excluded from this release type: _truncateName */
|
|
328
|
+
|
|
329
|
+
/* Excluded from this release type: _tryParseSemverRange */
|
|
330
|
+
|
|
331
|
+
/* Excluded from this release type: _tryParseSemverVersion */
|
|
332
|
+
|
|
333
|
+
/* Excluded from this release type: _tryValidateWithSchema */
|
|
334
|
+
|
|
335
|
+
/* Excluded from this release type: _TsConfig */
|
|
336
|
+
|
|
337
|
+
/* Excluded from this release type: _TsConfigDoc */
|
|
338
|
+
|
|
339
|
+
/* Excluded from this release type: _TsJsx */
|
|
340
|
+
|
|
341
|
+
/* Excluded from this release type: _TsModule */
|
|
342
|
+
|
|
343
|
+
/* Excluded from this release type: _TsModuleResolution */
|
|
344
|
+
|
|
345
|
+
/* Excluded from this release type: _TsTarget */
|
|
346
|
+
|
|
347
|
+
/* Excluded from this release type: _TypeMismatchError */
|
|
348
|
+
|
|
349
|
+
/* Excluded from this release type: _UnescapeToken */
|
|
350
|
+
|
|
351
|
+
/* Excluded from this release type: _unescapeToken */
|
|
352
|
+
|
|
353
|
+
/* Excluded from this release type: _validateApiName */
|
|
354
|
+
|
|
355
|
+
/* Excluded from this release type: _validateDisplayName */
|
|
356
|
+
|
|
357
|
+
/* Excluded from this release type: _validateWithSchema */
|
|
358
|
+
|
|
359
|
+
/* Excluded from this release type: _ValueAtPointer */
|
|
360
|
+
|
|
361
|
+
/* Excluded from this release type: _ValueAtSegments */
|
|
362
|
+
|
|
363
|
+
/* Excluded from this release type: _workspaceVersion */
|
|
364
|
+
|
|
365
|
+
/* Excluded from this release type: _WriteAbortedError */
|
|
366
|
+
|
|
367
|
+
/* Excluded from this release type: _WriteCapability */
|
|
368
|
+
|
|
369
|
+
/* Excluded from this release type: _WriteConfirm */
|
|
370
|
+
|
|
371
|
+
/* Excluded from this release type: _WriteDecision */
|
|
372
|
+
|
|
373
|
+
/* Excluded from this release type: _WriteError */
|
|
374
|
+
|
|
375
|
+
/* Excluded from this release type: _writeJsonOutput */
|
|
376
|
+
|
|
377
|
+
/* Excluded from this release type: _WriteReason */
|
|
378
|
+
|
|
379
|
+
/* Excluded from this release type: _WriteRequest */
|
|
380
|
+
|
|
381
|
+
/* Excluded from this release type: _yamlAdapter */
|
|
382
|
+
|
|
383
|
+
export { }
|