@stripe/extensibility-custom-objects-tools 0.40.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.
- package/LICENSE.md +19 -0
- package/README.md +32 -0
- package/dist/build/build.d.ts +46 -0
- package/dist/build/build.d.ts.map +1 -0
- package/dist/build/cli.cjs +992 -0
- package/dist/build/cli.d.ts +3 -0
- package/dist/build/cli.d.ts.map +1 -0
- package/dist/build/cli.js +991 -0
- package/dist/build/extract-schemas.cli.cjs +8747 -0
- package/dist/build/extract-schemas.cli.d.ts +9 -0
- package/dist/build/extract-schemas.cli.d.ts.map +1 -0
- package/dist/build/extract-schemas.cli.js +8738 -0
- package/dist/build/extract-schemas.d.ts +17 -0
- package/dist/build/extract-schemas.d.ts.map +1 -0
- package/dist/build/package-build.d.ts +115 -0
- package/dist/build/package-build.d.ts.map +1 -0
- package/dist/extensibility-custom-objects-tools-alpha.d.ts +153 -0
- package/dist/extensibility-custom-objects-tools-beta.d.ts +32 -0
- package/dist/extensibility-custom-objects-tools-internal-alpha.d.ts +77 -0
- package/dist/extensibility-custom-objects-tools-internal-beta.d.ts +77 -0
- package/dist/extensibility-custom-objects-tools-internal-internal.d.ts +475 -0
- package/dist/extensibility-custom-objects-tools-internal-public.d.ts +77 -0
- package/dist/extensibility-custom-objects-tools-internal.d.ts +153 -0
- package/dist/extensibility-custom-objects-tools-public.d.ts +32 -0
- package/dist/generators/index.d.ts +43 -0
- package/dist/generators/index.d.ts.map +1 -0
- package/dist/index.cjs +956 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +927 -0
- package/dist/internal.cjs +8820 -0
- package/dist/internal.d.ts +7 -0
- package/dist/internal.d.ts.map +1 -0
- package/dist/internal.js +8791 -0
- package/dist/transformer/classify-fields.d.ts +105 -0
- package/dist/transformer/classify-fields.d.ts.map +1 -0
- package/dist/transformer/generate-descriptors.d.ts +72 -0
- package/dist/transformer/generate-descriptors.d.ts.map +1 -0
- package/dist/transformer/metadata.d.ts +25 -0
- package/dist/transformer/metadata.d.ts.map +1 -0
- package/dist/transformer/transform.d.ts +35 -0
- package/dist/transformer/transform.d.ts.map +1 -0
- package/dist/transformer/types.d.ts +146 -0
- package/dist/transformer/types.d.ts.map +1 -0
- package/dist/transformer/visitors.d.ts +99 -0
- package/dist/transformer/visitors.d.ts.map +1 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -0
- package/generators/custom-object/files/___packagesSubfolder___/src/___apiName___.object.ts.mustache +95 -0
- package/generators/custom-object-test/files/___packagesSubfolder___/src/___apiName___.object.test.ts.mustache +35 -0
- package/generators/custom-objects-workspace/files/___packagesSubfolder___/package.json.mustache +20 -0
- package/generators/custom-objects-workspace/files/___packagesSubfolder___/tsconfig.json +9 -0
- package/package.json +77 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { type ActionSchemaResult, type BuildCustomObjectTarget, type BuildDiagnostic, type CustomObjectBuildResult, type CustomObjectPackageBuildResult } from './package-build.js';
|
|
2
|
+
/**
|
|
3
|
+
* Options for extracting schemas from a custom object class export.
|
|
4
|
+
*
|
|
5
|
+
* @internal
|
|
6
|
+
*/
|
|
7
|
+
export type ExtractSchemasOptions = BuildCustomObjectTarget;
|
|
8
|
+
export type { ActionSchemaResult, BuildDiagnostic, CustomObjectBuildResult, CustomObjectPackageBuildResult, };
|
|
9
|
+
/**
|
|
10
|
+
* Extracts schemas from one custom object export.
|
|
11
|
+
*
|
|
12
|
+
* This is a convenience wrapper over the package-scoped builder.
|
|
13
|
+
*
|
|
14
|
+
* @internal
|
|
15
|
+
*/
|
|
16
|
+
export declare function extractCustomObjectSchemas(options: ExtractSchemasOptions): CustomObjectBuildResult;
|
|
17
|
+
//# sourceMappingURL=extract-schemas.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"extract-schemas.d.ts","sourceRoot":"","sources":["../../src/build/extract-schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,KAAK,kBAAkB,EACvB,KAAK,uBAAuB,EAC5B,KAAK,eAAe,EACpB,KAAK,uBAAuB,EAC5B,KAAK,8BAA8B,EACpC,MAAM,oBAAoB,CAAC;AAE5B;;;;GAIG;AACH,MAAM,MAAM,qBAAqB,GAAG,uBAAuB,CAAC;AAE5D,YAAY,EACV,kBAAkB,EAClB,eAAe,EACf,uBAAuB,EACvB,8BAA8B,GAC/B,CAAC;AAEF;;;;;;GAMG;AACH,wBAAgB,0BAA0B,CACxC,OAAO,EAAE,qBAAqB,GAC7B,uBAAuB,CAgCzB"}
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import * as ts from 'typescript';
|
|
2
|
+
import { type JsonSchema2020, type UISchema } from '@formspec/build';
|
|
3
|
+
/**
|
|
4
|
+
* One custom object export to include in a package-scoped build.
|
|
5
|
+
*
|
|
6
|
+
* @internal
|
|
7
|
+
*/
|
|
8
|
+
export interface BuildCustomObjectTarget {
|
|
9
|
+
modulePath: string;
|
|
10
|
+
exportName: string;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Diagnostic emitted while building custom object package artifacts.
|
|
14
|
+
*
|
|
15
|
+
* @internal
|
|
16
|
+
*/
|
|
17
|
+
export interface BuildDiagnostic {
|
|
18
|
+
severity: 'error' | 'warning';
|
|
19
|
+
code: string;
|
|
20
|
+
message: string;
|
|
21
|
+
modulePath?: string;
|
|
22
|
+
exportName?: string;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Platform naming metadata for one built custom object.
|
|
26
|
+
*
|
|
27
|
+
* @internal
|
|
28
|
+
*/
|
|
29
|
+
export interface CustomObjectPlatformMetadata {
|
|
30
|
+
modulePath: string;
|
|
31
|
+
className: string;
|
|
32
|
+
apiName: string;
|
|
33
|
+
displayName: string;
|
|
34
|
+
displayNamePlural: string;
|
|
35
|
+
apiNamePlural: string;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* The JSON Schema and JSON Forms artifacts for one extracted surface.
|
|
39
|
+
*
|
|
40
|
+
* @internal
|
|
41
|
+
*/
|
|
42
|
+
export interface CustomObjectSchemaArtifacts {
|
|
43
|
+
jsonSchema: JsonSchema2020;
|
|
44
|
+
uiSchema: UISchema | null;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Schema artifacts extracted for one action method.
|
|
48
|
+
*
|
|
49
|
+
* @internal
|
|
50
|
+
*/
|
|
51
|
+
export interface ActionSchemaResult {
|
|
52
|
+
name: string;
|
|
53
|
+
methodName: string;
|
|
54
|
+
apiName: string;
|
|
55
|
+
input: CustomObjectSchemaArtifacts | null;
|
|
56
|
+
output: {
|
|
57
|
+
jsonSchema: JsonSchema2020;
|
|
58
|
+
};
|
|
59
|
+
paramsSchema: JsonSchema2020 | Record<string, never>;
|
|
60
|
+
returnSchema: JsonSchema2020;
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* Combined schema and metadata artifacts for one custom object export.
|
|
64
|
+
*
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
67
|
+
export interface CustomObjectBuildResult {
|
|
68
|
+
platformMetadata: CustomObjectPlatformMetadata;
|
|
69
|
+
fields: CustomObjectSchemaArtifacts;
|
|
70
|
+
fieldsSchema: JsonSchema2020;
|
|
71
|
+
fieldsUiSchema: UISchema | null;
|
|
72
|
+
actions: Record<string, ActionSchemaResult>;
|
|
73
|
+
primaryDisplayProperty?: string;
|
|
74
|
+
secondaryDisplayProperty?: string;
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* Backwards-compatible alias for the combined build artifact.
|
|
78
|
+
*
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
81
|
+
export type CustomObjectBuildArtifact = CustomObjectBuildResult;
|
|
82
|
+
/**
|
|
83
|
+
* Package-scoped custom object build output.
|
|
84
|
+
*
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
87
|
+
export interface CustomObjectPackageBuildResult {
|
|
88
|
+
objects: Record<string, CustomObjectBuildResult>;
|
|
89
|
+
transformedModules: Record<string, string>;
|
|
90
|
+
diagnostics: BuildDiagnostic[];
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* Options for building a package-scoped custom object artifact set.
|
|
94
|
+
*
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
97
|
+
export interface BuildCustomObjectPackageOptions {
|
|
98
|
+
targets: BuildCustomObjectTarget[];
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* Build schemas, UI specs, platform metadata, and transformed modules for a set of
|
|
102
|
+
* custom object exports using one shared TypeScript program.
|
|
103
|
+
*
|
|
104
|
+
* @internal
|
|
105
|
+
*/
|
|
106
|
+
export declare function buildCustomObjectPackage(options: BuildCustomObjectPackageOptions, dependencies?: {
|
|
107
|
+
createProgram?: (rootNames: readonly string[], options: ts.CompilerOptions) => ts.Program;
|
|
108
|
+
}): CustomObjectPackageBuildResult;
|
|
109
|
+
/**
|
|
110
|
+
* Build the canonical lookup key for one package-build target.
|
|
111
|
+
*
|
|
112
|
+
* @internal
|
|
113
|
+
*/
|
|
114
|
+
export declare function toObjectKey(target: BuildCustomObjectTarget): string;
|
|
115
|
+
//# sourceMappingURL=package-build.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"package-build.d.ts","sourceRoot":"","sources":["../../src/build/package-build.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,MAAM,YAAY,CAAC;AACjC,OAAO,EAOL,KAAK,cAAc,EAEnB,KAAK,QAAQ,EACd,MAAM,iBAAiB,CAAC;AAmBzB;;;;GAIG;AACH,MAAM,WAAW,uBAAuB;IACtC,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED;;;;GAIG;AACH,MAAM,WAAW,eAAe;IAC9B,QAAQ,EAAE,OAAO,GAAG,SAAS,CAAC;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;;;GAIG;AACH,MAAM,WAAW,4BAA4B;IAC3C,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,CAAC;IACpB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,aAAa,EAAE,MAAM,CAAC;CACvB;AAED;;;;GAIG;AACH,MAAM,WAAW,2BAA2B;IAC1C,UAAU,EAAE,cAAc,CAAC;IAC3B,QAAQ,EAAE,QAAQ,GAAG,IAAI,CAAC;CAC3B;AAED;;;;GAIG;AACH,MAAM,WAAW,kBAAkB;IACjC,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,2BAA2B,GAAG,IAAI,CAAC;IAC1C,MAAM,EAAE;QACN,UAAU,EAAE,cAAc,CAAC;KAC5B,CAAC;IACF,YAAY,EAAE,cAAc,GAAG,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;IACrD,YAAY,EAAE,cAAc,CAAC;CAC9B;AAED;;;;GAIG;AACH,MAAM,WAAW,uBAAuB;IACtC,gBAAgB,EAAE,4BAA4B,CAAC;IAC/C,MAAM,EAAE,2BAA2B,CAAC;IACpC,YAAY,EAAE,cAAc,CAAC;IAC7B,cAAc,EAAE,QAAQ,GAAG,IAAI,CAAC;IAChC,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,kBAAkB,CAAC,CAAC;IAC5C,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC,wBAAwB,CAAC,EAAE,MAAM,CAAC;CACnC;AAED;;;;GAIG;AACH,MAAM,MAAM,yBAAyB,GAAG,uBAAuB,CAAC;AAEhE;;;;GAIG;AACH,MAAM,WAAW,8BAA8B;IAC7C,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,uBAAuB,CAAC,CAAC;IACjD,kBAAkB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC3C,WAAW,EAAE,eAAe,EAAE,CAAC;CAChC;AAED;;;;GAIG;AACH,MAAM,WAAW,+BAA+B;IAC9C,OAAO,EAAE,uBAAuB,EAAE,CAAC;CACpC;AA2BD;;;;;GAKG;AACH,wBAAgB,wBAAwB,CACtC,OAAO,EAAE,+BAA+B,EACxC,YAAY,GAAE;IACZ,aAAa,CAAC,EAAE,CACd,SAAS,EAAE,SAAS,MAAM,EAAE,EAC5B,OAAO,EAAE,EAAE,CAAC,eAAe,KACxB,EAAE,CAAC,OAAO,CAAC;CACZ,GACL,8BAA8B,CAoGhC;AAED;;;;GAIG;AACH,wBAAgB,WAAW,CAAC,MAAM,EAAE,uBAAuB,GAAG,MAAM,CAEnE"}
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `@stripe/extensibility-custom-objects-tools`
|
|
3
|
+
*
|
|
4
|
+
* Build-time tooling for custom object extensions: schema transformation,
|
|
5
|
+
* metadata extraction, and code generation helpers.
|
|
6
|
+
*
|
|
7
|
+
* @packageDocumentation
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Metadata for a single action (method).
|
|
12
|
+
* @alpha
|
|
13
|
+
*/
|
|
14
|
+
export declare interface ActionMetadata {
|
|
15
|
+
/** The method name */
|
|
16
|
+
methodName: string;
|
|
17
|
+
/** String representation of argument types */
|
|
18
|
+
argType: string;
|
|
19
|
+
/** String representation of return type */
|
|
20
|
+
returnType: string;
|
|
21
|
+
/** API name for the action (defaults to snake_case of method name) */
|
|
22
|
+
apiName: string;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* Actions metadata for a custom object.
|
|
27
|
+
* Only instance methods are supported — static methods cannot be actions.
|
|
28
|
+
* @alpha
|
|
29
|
+
*/
|
|
30
|
+
export declare interface ActionsMetadata {
|
|
31
|
+
/** Instance-level actions */
|
|
32
|
+
instance: Record<string, ActionMetadata>;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Builds the custom objects by transforming TypeScript files.
|
|
37
|
+
*
|
|
38
|
+
* @param options - Build options
|
|
39
|
+
* @returns Build result
|
|
40
|
+
* @alpha
|
|
41
|
+
*/
|
|
42
|
+
export declare function build(options: BuildOptions): Promise<BuildResult>;
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* Options for the build process.
|
|
46
|
+
* @alpha
|
|
47
|
+
*/
|
|
48
|
+
export declare interface BuildOptions {
|
|
49
|
+
/** Input directory containing TypeScript source files */
|
|
50
|
+
inputDir: string;
|
|
51
|
+
/** Output directory for transformed files */
|
|
52
|
+
outputDir: string;
|
|
53
|
+
/** Whether to generate source maps (not yet implemented) */
|
|
54
|
+
sourceMap?: boolean;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Result of the entire build process.
|
|
59
|
+
* @alpha
|
|
60
|
+
*/
|
|
61
|
+
export declare interface BuildResult {
|
|
62
|
+
/** Results for each processed file */
|
|
63
|
+
files: FileResult[];
|
|
64
|
+
/** Any global errors */
|
|
65
|
+
errors: TransformError[];
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* Result of transforming a single file.
|
|
70
|
+
* @alpha
|
|
71
|
+
*/
|
|
72
|
+
export declare interface FileResult {
|
|
73
|
+
/** Input file path */
|
|
74
|
+
inputPath: string;
|
|
75
|
+
/** Output file path */
|
|
76
|
+
outputPath: string;
|
|
77
|
+
/** Whether the transformation succeeded */
|
|
78
|
+
success: boolean;
|
|
79
|
+
/** Any errors that occurred */
|
|
80
|
+
errors: TransformError[];
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* Platform metadata for a custom object class.
|
|
85
|
+
* @alpha
|
|
86
|
+
*/
|
|
87
|
+
export declare interface PlatformMetadata {
|
|
88
|
+
/** Module path that defined this custom object */
|
|
89
|
+
modulePath?: string;
|
|
90
|
+
/** Original TypeScript class name */
|
|
91
|
+
className?: string;
|
|
92
|
+
/** Canonical class api name */
|
|
93
|
+
classApiName?: string;
|
|
94
|
+
/** The api name of the custom object */
|
|
95
|
+
apiName: string;
|
|
96
|
+
/** All actions for this custom object */
|
|
97
|
+
actions: ActionsMetadata;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* Transforms TypeScript source code with custom object decorators.
|
|
102
|
+
* Injects runtime code and extracts platform metadata.
|
|
103
|
+
*
|
|
104
|
+
* @param sourceCode - The TypeScript source code to transform
|
|
105
|
+
* @param fileName - Optional file name for error reporting
|
|
106
|
+
* @returns Transform result with code, metadata, and errors
|
|
107
|
+
* @deprecated Use `buildCustomObjectPackage` + `transformWithPlan` instead. This
|
|
108
|
+
* function performs source-only discovery without build-time schema analysis, so it
|
|
109
|
+
* cannot generate wire conversion descriptors and falls back to the legacy passthrough
|
|
110
|
+
* wrapper (no Decimal/DateTime hydration).
|
|
111
|
+
* @alpha
|
|
112
|
+
*/
|
|
113
|
+
export declare function transform(sourceCode: string, fileName?: string): TransformResult;
|
|
114
|
+
|
|
115
|
+
/**
|
|
116
|
+
* An error that occurred during transformation.
|
|
117
|
+
* @alpha
|
|
118
|
+
*/
|
|
119
|
+
export declare interface TransformError {
|
|
120
|
+
/** Error message */
|
|
121
|
+
message: string;
|
|
122
|
+
/** File path (if available) */
|
|
123
|
+
file?: string;
|
|
124
|
+
/** Line number (if available) */
|
|
125
|
+
line?: number;
|
|
126
|
+
/** Column number (if available) */
|
|
127
|
+
column?: number;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* Transforms a TypeScript file from disk.
|
|
132
|
+
*
|
|
133
|
+
* @param filePath - Path to the TypeScript file
|
|
134
|
+
* @returns Transform result with code, metadata, and errors
|
|
135
|
+
* @deprecated Delegates to the deprecated `transform()`. Use `buildCustomObjectPackage` instead.
|
|
136
|
+
* @alpha
|
|
137
|
+
*/
|
|
138
|
+
export declare function transformFile(filePath: string): Promise<TransformResult>;
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* Result of transforming source code.
|
|
142
|
+
* @alpha
|
|
143
|
+
*/
|
|
144
|
+
export declare interface TransformResult {
|
|
145
|
+
/** Transformed source code */
|
|
146
|
+
code: string;
|
|
147
|
+
/** Platform metadata extracted from all custom objects */
|
|
148
|
+
metadata: PlatformMetadata[];
|
|
149
|
+
/** Any errors encountered during transformation */
|
|
150
|
+
errors: TransformError[];
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
export { }
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `@stripe/extensibility-custom-objects-tools`
|
|
3
|
+
*
|
|
4
|
+
* Build-time tooling for custom object extensions: schema transformation,
|
|
5
|
+
* metadata extraction, and code generation helpers.
|
|
6
|
+
*
|
|
7
|
+
* @packageDocumentation
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
/* Excluded from this release type: ActionMetadata */
|
|
11
|
+
|
|
12
|
+
/* Excluded from this release type: ActionsMetadata */
|
|
13
|
+
|
|
14
|
+
/* Excluded from this release type: build */
|
|
15
|
+
|
|
16
|
+
/* Excluded from this release type: BuildOptions */
|
|
17
|
+
|
|
18
|
+
/* Excluded from this release type: BuildResult */
|
|
19
|
+
|
|
20
|
+
/* Excluded from this release type: FileResult */
|
|
21
|
+
|
|
22
|
+
/* Excluded from this release type: PlatformMetadata */
|
|
23
|
+
|
|
24
|
+
/* Excluded from this release type: transform */
|
|
25
|
+
|
|
26
|
+
/* Excluded from this release type: TransformError */
|
|
27
|
+
|
|
28
|
+
/* Excluded from this release type: transformFile */
|
|
29
|
+
|
|
30
|
+
/* Excluded from this release type: TransformResult */
|
|
31
|
+
|
|
32
|
+
export { }
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { JsonSchema2020 } from '@formspec/build';
|
|
2
|
+
import * as ts from 'typescript';
|
|
3
|
+
import { UISchema } from '@formspec/build';
|
|
4
|
+
|
|
5
|
+
/* Excluded from this release type: ActionSchemaResult */
|
|
6
|
+
|
|
7
|
+
/* Excluded from this release type: _AfterExecuteResult */
|
|
8
|
+
|
|
9
|
+
/* Excluded from this release type: _BeforeExecuteResult */
|
|
10
|
+
|
|
11
|
+
/* Excluded from this release type: buildCustomObjectPackage */
|
|
12
|
+
|
|
13
|
+
/* Excluded from this release type: BuildCustomObjectPackageOptions */
|
|
14
|
+
|
|
15
|
+
/* Excluded from this release type: BuildCustomObjectTarget */
|
|
16
|
+
|
|
17
|
+
/* Excluded from this release type: BuildDiagnostic */
|
|
18
|
+
|
|
19
|
+
/* Excluded from this release type: CustomObjectBuildArtifact */
|
|
20
|
+
|
|
21
|
+
/* Excluded from this release type: CustomObjectBuildResult */
|
|
22
|
+
|
|
23
|
+
/* Excluded from this release type: _customObjectGenerator */
|
|
24
|
+
|
|
25
|
+
/* Excluded from this release type: _customObjectGenerators */
|
|
26
|
+
|
|
27
|
+
/* Excluded from this release type: CustomObjectPackageBuildResult */
|
|
28
|
+
|
|
29
|
+
/* Excluded from this release type: _CustomObjectParams */
|
|
30
|
+
|
|
31
|
+
/* Excluded from this release type: CustomObjectPlatformMetadata */
|
|
32
|
+
|
|
33
|
+
/* Excluded from this release type: CustomObjectSchemaArtifacts */
|
|
34
|
+
|
|
35
|
+
/* Excluded from this release type: _customObjectsWorkspaceGenerator */
|
|
36
|
+
|
|
37
|
+
/* Excluded from this release type: _CustomObjectsWorkspaceParams */
|
|
38
|
+
|
|
39
|
+
/* Excluded from this release type: _customObjectTestGenerator */
|
|
40
|
+
|
|
41
|
+
/* Excluded from this release type: extractCustomObjectSchemas */
|
|
42
|
+
|
|
43
|
+
/* Excluded from this release type: ExtractSchemasOptions */
|
|
44
|
+
|
|
45
|
+
/* Excluded from this release type: _FileWriteOutcome */
|
|
46
|
+
|
|
47
|
+
/* Excluded from this release type: _Generator */
|
|
48
|
+
|
|
49
|
+
/* Excluded from this release type: _GeneratorContext */
|
|
50
|
+
|
|
51
|
+
/* Excluded from this release type: _GeneratorExecuteContext */
|
|
52
|
+
|
|
53
|
+
/* Excluded from this release type: _GeneratorExecuteResult */
|
|
54
|
+
|
|
55
|
+
/* Excluded from this release type: _GeneratorPlanResult */
|
|
56
|
+
|
|
57
|
+
/* Excluded from this release type: _GeneratorRunner */
|
|
58
|
+
|
|
59
|
+
/* Excluded from this release type: _GeneratorWriteResult */
|
|
60
|
+
|
|
61
|
+
/* Excluded from this release type: _PlannedFile */
|
|
62
|
+
|
|
63
|
+
/* Excluded from this release type: _ProjectExecuteContext */
|
|
64
|
+
|
|
65
|
+
/* Excluded from this release type: _ProjectGeneratorContext */
|
|
66
|
+
|
|
67
|
+
/* Excluded from this release type: _StandaloneExecuteContext */
|
|
68
|
+
|
|
69
|
+
/* Excluded from this release type: _StandaloneGeneratorContext */
|
|
70
|
+
|
|
71
|
+
/* Excluded from this release type: toObjectKey */
|
|
72
|
+
|
|
73
|
+
/* Excluded from this release type: _WriteCapability */
|
|
74
|
+
|
|
75
|
+
/* Excluded from this release type: _WriteError */
|
|
76
|
+
|
|
77
|
+
export { }
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { JsonSchema2020 } from '@formspec/build';
|
|
2
|
+
import * as ts from 'typescript';
|
|
3
|
+
import { UISchema } from '@formspec/build';
|
|
4
|
+
|
|
5
|
+
/* Excluded from this release type: ActionSchemaResult */
|
|
6
|
+
|
|
7
|
+
/* Excluded from this release type: _AfterExecuteResult */
|
|
8
|
+
|
|
9
|
+
/* Excluded from this release type: _BeforeExecuteResult */
|
|
10
|
+
|
|
11
|
+
/* Excluded from this release type: buildCustomObjectPackage */
|
|
12
|
+
|
|
13
|
+
/* Excluded from this release type: BuildCustomObjectPackageOptions */
|
|
14
|
+
|
|
15
|
+
/* Excluded from this release type: BuildCustomObjectTarget */
|
|
16
|
+
|
|
17
|
+
/* Excluded from this release type: BuildDiagnostic */
|
|
18
|
+
|
|
19
|
+
/* Excluded from this release type: CustomObjectBuildArtifact */
|
|
20
|
+
|
|
21
|
+
/* Excluded from this release type: CustomObjectBuildResult */
|
|
22
|
+
|
|
23
|
+
/* Excluded from this release type: _customObjectGenerator */
|
|
24
|
+
|
|
25
|
+
/* Excluded from this release type: _customObjectGenerators */
|
|
26
|
+
|
|
27
|
+
/* Excluded from this release type: CustomObjectPackageBuildResult */
|
|
28
|
+
|
|
29
|
+
/* Excluded from this release type: _CustomObjectParams */
|
|
30
|
+
|
|
31
|
+
/* Excluded from this release type: CustomObjectPlatformMetadata */
|
|
32
|
+
|
|
33
|
+
/* Excluded from this release type: CustomObjectSchemaArtifacts */
|
|
34
|
+
|
|
35
|
+
/* Excluded from this release type: _customObjectsWorkspaceGenerator */
|
|
36
|
+
|
|
37
|
+
/* Excluded from this release type: _CustomObjectsWorkspaceParams */
|
|
38
|
+
|
|
39
|
+
/* Excluded from this release type: _customObjectTestGenerator */
|
|
40
|
+
|
|
41
|
+
/* Excluded from this release type: extractCustomObjectSchemas */
|
|
42
|
+
|
|
43
|
+
/* Excluded from this release type: ExtractSchemasOptions */
|
|
44
|
+
|
|
45
|
+
/* Excluded from this release type: _FileWriteOutcome */
|
|
46
|
+
|
|
47
|
+
/* Excluded from this release type: _Generator */
|
|
48
|
+
|
|
49
|
+
/* Excluded from this release type: _GeneratorContext */
|
|
50
|
+
|
|
51
|
+
/* Excluded from this release type: _GeneratorExecuteContext */
|
|
52
|
+
|
|
53
|
+
/* Excluded from this release type: _GeneratorExecuteResult */
|
|
54
|
+
|
|
55
|
+
/* Excluded from this release type: _GeneratorPlanResult */
|
|
56
|
+
|
|
57
|
+
/* Excluded from this release type: _GeneratorRunner */
|
|
58
|
+
|
|
59
|
+
/* Excluded from this release type: _GeneratorWriteResult */
|
|
60
|
+
|
|
61
|
+
/* Excluded from this release type: _PlannedFile */
|
|
62
|
+
|
|
63
|
+
/* Excluded from this release type: _ProjectExecuteContext */
|
|
64
|
+
|
|
65
|
+
/* Excluded from this release type: _ProjectGeneratorContext */
|
|
66
|
+
|
|
67
|
+
/* Excluded from this release type: _StandaloneExecuteContext */
|
|
68
|
+
|
|
69
|
+
/* Excluded from this release type: _StandaloneGeneratorContext */
|
|
70
|
+
|
|
71
|
+
/* Excluded from this release type: toObjectKey */
|
|
72
|
+
|
|
73
|
+
/* Excluded from this release type: _WriteCapability */
|
|
74
|
+
|
|
75
|
+
/* Excluded from this release type: _WriteError */
|
|
76
|
+
|
|
77
|
+
export { }
|