@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
package/LICENSE.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Copyright (C) 2026 Stripe, Inc. (https://stripe.com)
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
5
|
+
in the Software without restriction, including without limitation the rights
|
|
6
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
8
|
+
furnished to do so, subject to the following conditions:
|
|
9
|
+
|
|
10
|
+
The above copyright notice and this permission notice shall be included in
|
|
11
|
+
all copies or substantial portions of the Software.
|
|
12
|
+
|
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
19
|
+
THE SOFTWARE.
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Thin output abstraction used by CLI entry points and the functions they call.
|
|
3
|
+
*
|
|
4
|
+
* Inject a `_CliUx` constructed with `PassThrough` streams in tests to capture
|
|
5
|
+
* output without spying on `process.stdout`/`process.stderr`.
|
|
6
|
+
*
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
export declare class _CliUx {
|
|
10
|
+
#private;
|
|
11
|
+
constructor(options?: {
|
|
12
|
+
/** Stream for product output (defaults to process.stdout). */
|
|
13
|
+
readonly stdout?: NodeJS.WritableStream;
|
|
14
|
+
/** Stream for status/error output (defaults to process.stderr). */
|
|
15
|
+
readonly stderr?: NodeJS.WritableStream;
|
|
16
|
+
});
|
|
17
|
+
/** Write a product output line to stdout (or the configured stream). */
|
|
18
|
+
print(message: string): void;
|
|
19
|
+
/** Write a status/progress line to stderr (or the configured stream). */
|
|
20
|
+
log(message: string): void;
|
|
21
|
+
/**
|
|
22
|
+
* Error message to **stderr** (or the configured stderr stream).
|
|
23
|
+
*
|
|
24
|
+
* Behaviorally identical to {@link _CliUx.log} today. Use `error()` for failures
|
|
25
|
+
* and `log()` for progress/status — the distinction supports future
|
|
26
|
+
* formatting differentiation (color, prefixes, severity filtering).
|
|
27
|
+
*/
|
|
28
|
+
error(message: string): void;
|
|
29
|
+
}
|
|
30
|
+
//# sourceMappingURL=cli-ux.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cli-ux.d.ts","sourceRoot":"","sources":["../../src/cli/cli-ux.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AACH,qBAAa,MAAM;;gBAIL,OAAO,CAAC,EAAE;QACpB,8DAA8D;QAC9D,QAAQ,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC;QACxC,mEAAmE;QACnE,QAAQ,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC;KACzC;IAKD,wEAAwE;IACxE,KAAK,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI;IAI5B,yEAAyE;IACzE,GAAG,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI;IAI1B;;;;;;OAMG;IACH,KAAK,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI;CAG7B"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { _CliUx } from './cli-ux.js';
|
|
2
|
+
/**
|
|
3
|
+
* Shared context threaded through CLI operations.
|
|
4
|
+
*
|
|
5
|
+
* Carry this through call chains so that output can be redirected in tests
|
|
6
|
+
* without patching global `process.stdout`/`process.stderr`.
|
|
7
|
+
*
|
|
8
|
+
* @internal
|
|
9
|
+
*/
|
|
10
|
+
export interface _CliContext {
|
|
11
|
+
/** Output abstraction for writing to stdout/stderr. */
|
|
12
|
+
readonly ux: _CliUx;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* Create a `_CliContext` with default or injected collaborators.
|
|
16
|
+
*
|
|
17
|
+
* @param options - Optional options. Pass a pre-constructed `_CliUx` to redirect output
|
|
18
|
+
* streams (e.g., for testing or RPC transports that must not write to stdout).
|
|
19
|
+
* @internal
|
|
20
|
+
*/
|
|
21
|
+
export declare function _createCliContext(options?: {
|
|
22
|
+
ux?: _CliUx;
|
|
23
|
+
}): _CliContext;
|
|
24
|
+
//# sourceMappingURL=context.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../../src/cli/context.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAErC;;;;;;;GAOG;AACH,MAAM,WAAW,WAAW;IAC1B,uDAAuD;IACvD,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;CACrB;AAED;;;;;;GAMG;AACH,wBAAgB,iBAAiB,CAAC,OAAO,CAAC,EAAE;IAAE,EAAE,CAAC,EAAE,MAAM,CAAA;CAAE,GAAG,WAAW,CAExE"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Reusable type guards for CLI argument validation.
|
|
3
|
+
*
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
/**
|
|
7
|
+
* Returns `true` if `value` is a non-null, non-array object.
|
|
8
|
+
* @internal
|
|
9
|
+
*/
|
|
10
|
+
export declare function _isRecord(value: unknown): value is Record<string, unknown>;
|
|
11
|
+
/**
|
|
12
|
+
* Higher-order type guard that checks every value in a record satisfies a
|
|
13
|
+
* predicate.
|
|
14
|
+
*
|
|
15
|
+
* @example
|
|
16
|
+
* ```ts
|
|
17
|
+
* const isStringRecord = _isRecordWithValueType(
|
|
18
|
+
* (v): v is string => typeof v === 'string'
|
|
19
|
+
* );
|
|
20
|
+
* ```
|
|
21
|
+
* @internal
|
|
22
|
+
*/
|
|
23
|
+
export declare function _isRecordWithValueType<T>(guard: (v: unknown) => v is T): (value: unknown) => value is Record<string, T>;
|
|
24
|
+
//# sourceMappingURL=guards.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"guards.d.ts","sourceRoot":"","sources":["../../src/cli/guards.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH;;;GAGG;AACH,wBAAgB,SAAS,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,IAAI,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAE1E;AAED;;;;;;;;;;;GAWG;AACH,wBAAgB,sBAAsB,CAAC,CAAC,EACtC,KAAK,EAAE,CAAC,CAAC,EAAE,OAAO,KAAK,CAAC,IAAI,CAAC,GAC5B,CAAC,KAAK,EAAE,OAAO,KAAK,KAAK,IAAI,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC,CAKhD"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { _CliUx } from './cli-ux.js';
|
|
2
|
+
export type { _CliContext } from './context.js';
|
|
3
|
+
export { _createCliContext } from './context.js';
|
|
4
|
+
export { _writeJsonOutput } from './output-path.js';
|
|
5
|
+
export { _isRecord, _isRecordWithValueType } from './guards.js';
|
|
6
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/cli/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AACrC,YAAY,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AACjD,OAAO,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AACpD,OAAO,EAAE,SAAS,EAAE,sBAAsB,EAAE,MAAM,aAAa,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Write a JSON result to the given file path, or no-op if no path is provided.
|
|
3
|
+
*
|
|
4
|
+
* Used by CLI binaries that support `--output-path <file>` for structured
|
|
5
|
+
* output. When the flag is omitted the caller handles human-readable output
|
|
6
|
+
* to stdout instead.
|
|
7
|
+
*
|
|
8
|
+
* @internal
|
|
9
|
+
*/
|
|
10
|
+
export declare function _writeJsonOutput(outputPath: string | undefined, data: unknown): void;
|
|
11
|
+
//# sourceMappingURL=output-path.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"output-path.d.ts","sourceRoot":"","sources":["../../src/cli/output-path.ts"],"names":[],"mappings":"AAEA;;;;;;;;GAQG;AACH,wBAAgB,gBAAgB,CAAC,UAAU,EAAE,MAAM,GAAG,SAAS,EAAE,IAAI,EAAE,OAAO,GAAG,IAAI,CAGpF"}
|
|
@@ -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 { }
|