@prismatic-io/spectral 9.0.0-rc.8 → 9.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.
Files changed (38) hide show
  1. package/dist/generators/componentManifest/cli.js +2 -1
  2. package/dist/generators/componentManifest/createActions.js +0 -15
  3. package/dist/generators/componentManifest/createConnections.js +0 -25
  4. package/dist/generators/componentManifest/createDataSources.js +1 -15
  5. package/dist/generators/componentManifest/createTriggers.js +0 -15
  6. package/dist/generators/componentManifest/docBlock.d.ts +10 -0
  7. package/dist/generators/componentManifest/docBlock.js +40 -0
  8. package/dist/generators/componentManifest/getImports.js +6 -6
  9. package/dist/generators/componentManifest/getInputs.d.ts +9 -10
  10. package/dist/generators/componentManifest/getInputs.js +25 -46
  11. package/dist/generators/componentManifest/removeComponentManifest.js +4 -2
  12. package/dist/generators/componentManifest/templates/actions/action.ts.ejs +2 -2
  13. package/dist/generators/componentManifest/templates/connections/connection.ts.ejs +2 -2
  14. package/dist/generators/componentManifest/templates/dataSources/dataSource.ts.ejs +3 -2
  15. package/dist/generators/componentManifest/templates/index.ts.ejs +1 -1
  16. package/dist/generators/componentManifest/templates/partials/inputs.ejs +3 -3
  17. package/dist/generators/componentManifest/templates/partials/performArgs.ejs +2 -8
  18. package/dist/generators/componentManifest/templates/triggers/trigger.ts.ejs +2 -2
  19. package/dist/generators/utils/createTemplate.js +9 -3
  20. package/dist/index.d.ts +3 -3
  21. package/dist/index.js +2 -2
  22. package/dist/serverTypes/convertIntegration.js +39 -28
  23. package/dist/serverTypes/integration.d.ts +2 -0
  24. package/dist/types/ComponentManifest.d.ts +15 -15
  25. package/dist/types/ComponentRegistry.d.ts +89 -0
  26. package/dist/types/ComponentRegistry.js +5 -0
  27. package/dist/types/ConfigPages.d.ts +46 -0
  28. package/dist/types/ConfigPages.js +2 -0
  29. package/dist/types/ConfigVars.d.ts +241 -0
  30. package/dist/types/ConfigVars.js +30 -0
  31. package/dist/types/Inputs.d.ts +13 -13
  32. package/dist/types/IntegrationDefinition.d.ts +1 -220
  33. package/dist/types/IntegrationDefinition.js +0 -17
  34. package/dist/types/index.d.ts +3 -0
  35. package/dist/types/index.js +3 -0
  36. package/package.json +3 -2
  37. /package/dist/serverTypes/{convert.d.ts → convertComponent.d.ts} +0 -0
  38. /package/dist/serverTypes/{convert.js → convertComponent.js} +0 -0
@@ -106,48 +106,48 @@ interface KeyValueListCollection<T> {
106
106
  /** Default value for this field. */
107
107
  default?: KeyValuePair<T>[];
108
108
  }
109
- export declare type StringInputField = BaseInputField & CollectionOptions<string> & {
109
+ export declare type StringInputField = BaseInputField & {
110
110
  /** Data type the InputField will collect. */
111
111
  type: "string";
112
112
  /** Dictates possible choices for the input. */
113
113
  model?: InputFieldChoice[];
114
114
  /** Clean function */
115
115
  clean?: InputCleanFunction<unknown>;
116
- };
117
- export declare type DataInputField = BaseInputField & CollectionOptions<string> & {
116
+ } & CollectionOptions<string>;
117
+ export declare type DataInputField = BaseInputField & {
118
118
  /** Data type the InputField will collect. */
119
119
  type: "data";
120
120
  /** Dictates possible choices for the input. */
121
121
  model?: InputFieldChoice[];
122
122
  /** Clean function */
123
123
  clean?: InputCleanFunction<unknown>;
124
- };
125
- export declare type TextInputField = BaseInputField & CollectionOptions<string> & {
124
+ } & CollectionOptions<string>;
125
+ export declare type TextInputField = BaseInputField & {
126
126
  /** Data type the InputField will collect. */
127
127
  type: "text";
128
128
  /** Dictates possible choices for the input. */
129
129
  model?: InputFieldChoice[];
130
130
  /** Clean function */
131
131
  clean?: InputCleanFunction<unknown>;
132
- };
133
- export declare type PasswordInputField = BaseInputField & CollectionOptions<string> & {
132
+ } & CollectionOptions<string>;
133
+ export declare type PasswordInputField = BaseInputField & {
134
134
  /** Data type the InputField will collect. */
135
135
  type: "password";
136
136
  /** Dictates possible choices for the input. */
137
137
  model?: InputFieldChoice[];
138
138
  /** Clean function */
139
139
  clean?: InputCleanFunction<unknown>;
140
- };
141
- export declare type BooleanInputField = BaseInputField & CollectionOptions<string> & {
140
+ } & CollectionOptions<string>;
141
+ export declare type BooleanInputField = BaseInputField & {
142
142
  /** Data type the InputField will collect. */
143
143
  type: "boolean";
144
144
  /** Dictates possible choices for the input. */
145
145
  model?: InputFieldChoice[];
146
146
  /** Clean function */
147
147
  clean?: InputCleanFunction<unknown>;
148
- };
148
+ } & CollectionOptions<string>;
149
149
  /** Defines attributes of a CodeInputField. */
150
- export declare type CodeInputField = BaseInputField & CollectionOptions<string> & {
150
+ export declare type CodeInputField = BaseInputField & {
151
151
  /** Data type the InputField will collect. */
152
152
  type: "code";
153
153
  /** Code language for syntax highlighting. For no syntax highlighting, choose "plaintext" */
@@ -156,7 +156,7 @@ export declare type CodeInputField = BaseInputField & CollectionOptions<string>
156
156
  model?: InputFieldChoice[];
157
157
  /** Clean function */
158
158
  clean?: InputCleanFunction<unknown>;
159
- };
159
+ } & CollectionOptions<string>;
160
160
  /** Defines attributes of a ConditionalInputField. */
161
161
  export interface ConditionalInputField extends BaseInputField {
162
162
  /** Data type the InputField will collect. */
@@ -256,5 +256,5 @@ export interface InputFieldChoice {
256
256
  /** InputField collection enumeration */
257
257
  export declare type InputFieldCollection = "valuelist" | "keyvaluelist";
258
258
  /** Config variable result collection */
259
- export declare type ConfigVarResultCollection = Record<string, string | Schedule | Connection | JSONForm | ObjectSelection | ObjectFieldMap>;
259
+ export declare type ConfigVarResultCollection = Record<string, string | Schedule | Connection | unknown | ObjectSelection | ObjectFieldMap>;
260
260
  export {};
@@ -1,47 +1,4 @@
1
- import { DataSourceDefinition, ConnectionDefinition, ActionPerformFunction, ActionPerformReturn, TriggerEventFunction, TriggerPerformFunction, Inputs, TriggerResult, DataSourceType, TriggerPayload, Connection, JSONForm, ObjectFieldMap, ObjectSelection, ConfigVarResultCollection, Schedule, CollectionDataSourceType, ComponentManifest } from ".";
2
- import { Prettify, UnionToIntersection } from "./utils";
3
- /**
4
- * Root ComponentRegistry type exposed for augmentation.
5
- *
6
- * The expected interface when augmenting is:
7
- *
8
- * ```ts
9
- * interface IntegrationDefinitionComponentRegistry {
10
- * [key: string]: ComponentManifest
11
- * }
12
- * ```
13
- *
14
- */
15
- export interface IntegrationDefinitionComponentRegistry {
16
- }
17
- /**
18
- * Root ConfigPages type exposed for augmentation.
19
- *
20
- * The expected interface when augmenting is:
21
- *
22
- * ```ts
23
- * interface IntegrationDefinitionConfigPages {
24
- * [key: string]: ConfigPage
25
- * }
26
- * ```
27
- *
28
- */
29
- export interface IntegrationDefinitionConfigPages {
30
- }
31
- /**
32
- * Root UserLevelConfigPages type exposed for augmentation.
33
- *
34
- * The expected interface when augmenting is:
35
- *
36
- * ```ts
37
- * interface IntegrationDefinitionUserLevelConfigPages {
38
- * [key: string]: ConfigPage
39
- * }
40
- * ```
41
- *
42
- */
43
- export interface IntegrationDefinitionUserLevelConfigPages {
44
- }
1
+ import { ActionPerformFunction, ActionPerformReturn, TriggerEventFunction, TriggerPerformFunction, Inputs, TriggerResult, TriggerPayload, ComponentRegistry, TriggerReference, ConfigVars, ConfigPages, UserLevelConfigPages, ValueExpression, ConfigVarExpression } from ".";
45
2
  /** Defines attributes of a Code-Native Integration. */
46
3
  export declare type IntegrationDefinition = {
47
4
  /** The unique name for this Integration. */
@@ -116,167 +73,6 @@ export interface Flow<TTriggerPayload extends TriggerPayload = TriggerPayload> {
116
73
  [Key in keyof ComponentRegistry]: ComponentRegistry[Key]["actions"];
117
74
  }, false, ActionPerformReturn<false, unknown>>;
118
75
  }
119
- export declare type PermissionAndVisibilityType = "customer" | "embedded" | "organization";
120
- /** Common attribute shared by all types of Config Vars. */
121
- declare type BaseConfigVar = {
122
- /** A unique, unchanging value that is used to maintain identity for the Config Var even if the key changes. */
123
- stableKey: string;
124
- /** Optional description for this Config Var. */
125
- description?: string;
126
- /**
127
- * Optional value that sets the permission and visibility of the Config Var. @default "customer"
128
- *
129
- * "customer" - Customers can view and edit the Config Var.
130
- * "embedded" - Customers cannot view or update the Config Var as the value will be set programmatically.
131
- * "organization" - Customers cannot view or update the Config Var as it will always have a default value or be set by the organization.
132
- */
133
- permissionAndVisibilityType?: PermissionAndVisibilityType;
134
- /** Optional value that specifies whether this Config Var is visible to an Organization deployer. @default true */
135
- visibleToOrgDeployer?: boolean;
136
- /** Optional default value for the Config Var. */
137
- defaultValue?: string;
138
- /** Optional list of picklist values if the Config Var is a multi-choice selection value. */
139
- pickList?: string[];
140
- /** Optional value to specify the type of collection if the Config Var is multi-value. */
141
- collectionType?: CollectionType;
142
- };
143
- /** Defines attributes of a standard Config Var. */
144
- export declare type StandardConfigVar = BaseConfigVar & {
145
- /** The data type of the Config Var. */
146
- dataType: Exclude<ConfigVarDataType, "schedule" | "code">;
147
- };
148
- export declare type CodeConfigVar = BaseConfigVar & {
149
- /** The data type of the Config Var. */
150
- dataType: "code";
151
- /** Optional default value for the Config Var. */
152
- defaultValue?: string;
153
- /** Optional value to specify the type of language if the Config Var is a code value. */
154
- codeLanguage?: CodeLanguageType;
155
- };
156
- export declare type ScheduleConfigVar = Omit<BaseConfigVar, "collectionType"> & {
157
- /** The data type of the Config Var. */
158
- dataType: "schedule";
159
- /** Optional default value for the Config Var. */
160
- defaultValue?: string;
161
- /** Optional timezone for the schedule. */
162
- timeZone?: string;
163
- };
164
- export declare type ComponentRegistry = keyof IntegrationDefinitionComponentRegistry extends never ? {
165
- [key: string]: ComponentManifest;
166
- } : UnionToIntersection<keyof IntegrationDefinitionComponentRegistry extends infer TComponentKey ? TComponentKey extends keyof IntegrationDefinitionComponentRegistry ? {
167
- [Key in TComponentKey]: IntegrationDefinitionComponentRegistry[TComponentKey];
168
- } : never : never>;
169
- interface ConnectionInputPermissionAndVisibility {
170
- /**
171
- * Optional value that sets the permission and visibility of the Config Var. @default "customer"
172
- *
173
- * "customer" - Customers can view and edit the Config Var.
174
- * "embedded" - Customers cannot view or update the Config Var as the value will be set programmatically.
175
- * "organization" - Customers cannot view or update the Config Var as it will always have a default value or be set by the organization.
176
- */
177
- permissionAndVisibilityType?: PermissionAndVisibilityType;
178
- /** Optional value that specifies whether this Config Var is visible to an Organization deployer. @default true */
179
- visibleToOrgDeployer?: boolean;
180
- }
181
- declare type ComponentReferenceType = Extract<keyof ComponentManifest, "actions" | "triggers" | "dataSources" | "connections">;
182
- declare type ComponentReferenceTypeValueMap<TValue, TMap extends Record<ComponentReferenceType, unknown> = {
183
- actions: ValueExpression<TValue>;
184
- triggers: ValueExpression<TValue> | ConfigVarExpression;
185
- dataSources: ValueExpression<TValue> | ConfigVarExpression;
186
- connections: (ValueExpression<TValue> | ConfigVarExpression) & ConnectionInputPermissionAndVisibility;
187
- }> = TMap;
188
- export declare type ComponentReference<TComponentReference extends {
189
- component: string;
190
- isPublic: boolean;
191
- key: string;
192
- values?: {
193
- [key: string]: ValueExpression | ConfigVarExpression;
194
- };
195
- template?: string;
196
- } = {
197
- component: string;
198
- isPublic: boolean;
199
- key: string;
200
- values?: {
201
- [key: string]: ValueExpression | ConfigVarExpression;
202
- };
203
- template?: string;
204
- }> = TComponentReference;
205
- export declare const isComponentReference: (ref: unknown) => ref is {
206
- component: string;
207
- isPublic: boolean;
208
- key: string;
209
- values?: {
210
- [key: string]: ConfigVarExpression | ValueExpression<unknown>;
211
- } | undefined;
212
- template?: string | undefined;
213
- };
214
- declare type ComponentReferencesByType = UnionToIntersection<ComponentReferenceType extends infer TComponentReferenceType ? TComponentReferenceType extends Extract<keyof ComponentManifest, "actions" | "triggers" | "dataSources" | "connections"> ? {
215
- [Key in TComponentReferenceType]: keyof ComponentRegistry extends infer TComponentKey ? TComponentKey extends keyof ComponentRegistry ? TComponentKey extends string ? TComponentReferenceType extends keyof ComponentRegistry[TComponentKey] ? keyof ComponentRegistry[TComponentKey][TComponentReferenceType] extends infer TComponentPropertyKey ? TComponentPropertyKey extends keyof ComponentRegistry[TComponentKey][TComponentReferenceType] ? TComponentPropertyKey extends string ? "perform" extends keyof ComponentRegistry[TComponentKey][TComponentReferenceType][TComponentPropertyKey] ? ComponentRegistry[TComponentKey][TComponentReferenceType][TComponentPropertyKey]["perform"] extends (...args: any[]) => any ? Parameters<ComponentRegistry[TComponentKey][TComponentReferenceType][TComponentPropertyKey]["perform"]>[0] extends infer TInputs ? ComponentReference<{
216
- component: TComponentKey;
217
- isPublic: ComponentRegistry[TComponentKey]["public"];
218
- key: TComponentPropertyKey;
219
- values: {
220
- [Key in keyof TInputs]: ComponentReferenceTypeValueMap<TInputs[Key]>[TComponentReferenceType];
221
- };
222
- }> : never : never : never : never : never : never : never : never : never : never;
223
- } : never : never>;
224
- export declare type TriggerReference = ComponentReferencesByType["triggers"];
225
- export declare type ActionReference = ComponentReferencesByType["actions"];
226
- export declare type DataSourceReference = ComponentReferencesByType["dataSources"];
227
- export declare type ConnectionReference = ComponentReferencesByType["connections"];
228
- declare type BaseDataSourceConfigVar = ({
229
- dataSourceType: CollectionDataSourceType;
230
- } & BaseConfigVar) | ({
231
- dataSourceType: Exclude<DataSourceType, CollectionDataSourceType>;
232
- } & Omit<BaseConfigVar, "collectionType">);
233
- declare type DataSourceDefinitionConfigVar = BaseDataSourceConfigVar & Omit<DataSourceDefinition<Inputs, ConfigVarResultCollection, DataSourceType>, "display" | "inputs" | "examplePayload" | "dataSourceType" | "detailDataSource">;
234
- export declare type DataSourceReferenceConfigVar = BaseDataSourceConfigVar & {
235
- dataSource: DataSourceReference;
236
- };
237
- /** Defines attributes of a data source Config Var. */
238
- export declare type DataSourceConfigVar = DataSourceDefinitionConfigVar | DataSourceReferenceConfigVar;
239
- declare type BaseConnectionConfigVar = Omit<BaseConfigVar, "collectionType"> & {
240
- dataType: "connection";
241
- };
242
- declare type ConnectionDefinitionConfigVar = BaseConnectionConfigVar & Omit<ConnectionDefinition, "label" | "comments" | "key">;
243
- declare type ConnectionReferenceConfigVar = BaseConnectionConfigVar & {
244
- connection: ConnectionReference & {
245
- template?: string;
246
- };
247
- };
248
- /** Defines attributes of a Config Var that represents a Connection. */
249
- export declare type ConnectionConfigVar = ConnectionDefinitionConfigVar | ConnectionReferenceConfigVar;
250
- export declare type ConfigVar = StandardConfigVar | CodeConfigVar | ScheduleConfigVar | DataSourceConfigVar | ConnectionConfigVar;
251
- export declare const isCodeConfigVar: (cv: ConfigVar) => cv is CodeConfigVar;
252
- export declare const isScheduleConfigVar: (cv: ConfigVar) => cv is ScheduleConfigVar;
253
- export declare const isDataSourceDefinitionConfigVar: (cv: ConfigVar) => cv is DataSourceDefinitionConfigVar;
254
- export declare const isDataSourceReferenceConfigVar: (cv: ConfigVar) => cv is DataSourceReferenceConfigVar;
255
- export declare const isConnectionDefinitionConfigVar: (cv: ConfigVar) => cv is ConnectionDefinitionConfigVar;
256
- export declare const isConnectionReferenceConfigVar: (cv: ConfigVar) => cv is ConnectionReferenceConfigVar;
257
- export declare type ConfigPageElement = string | ConfigVar;
258
- declare type CreateConfigPages<TIntegrationDefinitionConfigPages> = keyof TIntegrationDefinitionConfigPages extends never ? {
259
- [key: string]: ConfigPage;
260
- } : UnionToIntersection<keyof TIntegrationDefinitionConfigPages extends infer TPageName ? TPageName extends keyof TIntegrationDefinitionConfigPages ? TIntegrationDefinitionConfigPages[TPageName] extends ConfigPage ? {
261
- [Key in TPageName]: TIntegrationDefinitionConfigPages[TPageName];
262
- } : never : never : never>;
263
- export declare type ConfigPages = CreateConfigPages<IntegrationDefinitionConfigPages>;
264
- export declare type UserLevelConfigPages = CreateConfigPages<IntegrationDefinitionUserLevelConfigPages>;
265
- declare type ExtractConfigVars<TConfigPages extends {
266
- [key: string]: ConfigPage;
267
- }> = keyof TConfigPages extends infer TPageName ? TPageName extends keyof TConfigPages ? TConfigPages[TPageName] extends infer TConfigPage ? TConfigPage extends ConfigPage ? {
268
- [Key in keyof TConfigPage["elements"] as Key extends string ? TConfigPage["elements"][Key] extends ConfigVar ? Key : never : never]: ElementToRuntimeType<TConfigPage["elements"][Key]>;
269
- } : never : never : never : never;
270
- export declare type ConfigVars = Prettify<UnionToIntersection<ExtractConfigVars<ConfigPages> | ExtractConfigVars<UserLevelConfigPages>>>;
271
- export declare type ToDataSourceRuntimeType<TType extends DataSourceType> = TType extends "jsonForm" ? JSONForm : TType extends "objectSelection" ? ObjectSelection : TType extends "objectFieldMap" ? ObjectFieldMap : string;
272
- export declare type ElementToRuntimeType<TElement extends ConfigPageElement> = TElement extends ConnectionConfigVar ? Connection : TElement extends DataSourceConfigVar ? ToDataSourceRuntimeType<TElement["dataSourceType"]> : TElement extends ScheduleConfigVar ? Schedule : TElement extends StandardConfigVar ? string : never;
273
- /** Defines attributes of a Config Wizard Page used when deploying an Instance of an Integration. */
274
- export interface ConfigPage {
275
- /** Elements included on this Config Page. */
276
- elements: Record<string, ConfigPageElement>;
277
- /** Specifies an optional tagline for this Config Page. */
278
- tagline?: string;
279
- }
280
76
  /** Defines attributes of a Preprocess Flow Configuration used by a Flow of an Integration. */
281
77
  export declare type PreprocessFlowConfig = {
282
78
  /** Name of the field in the data payload returned by the Preprocess Flow to use for a Flow Name. */
@@ -316,18 +112,3 @@ export declare type EndpointType = "flow_specific" | "instance_specific" | "shar
316
112
  export declare type EndpointSecurityType = "unsecured" | "customer_optional" | "customer_required" | "organization";
317
113
  /** Choices of Step Error Handlers that define the behavior when a step error occurs. */
318
114
  export declare type StepErrorHandlerType = "fail" | "ignore" | "retry";
319
- /** Supported data types for Config Vars. */
320
- export declare type ConfigVarDataType = "string" | "date" | "timestamp" | "picklist" | "schedule" | "code" | "boolean" | "number";
321
- /** Choices of programming languages that may be used for Config Var code values. */
322
- export declare type CodeLanguageType = "json" | "xml" | "html";
323
- /** Choices of collection types for multi-value Config Vars. */
324
- export declare type CollectionType = "valuelist" | "keyvaluelist";
325
- /** Choices of component reference types. */
326
- export declare type ComponentSelectorType = "trigger" | "connection" | "dataSource";
327
- export declare type ConfigVarExpression = {
328
- configVar: string;
329
- };
330
- export declare type ValueExpression<TValueType = unknown> = {
331
- value: TValueType;
332
- };
333
- export {};
@@ -1,19 +1,2 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.isConnectionReferenceConfigVar = exports.isConnectionDefinitionConfigVar = exports.isDataSourceReferenceConfigVar = exports.isDataSourceDefinitionConfigVar = exports.isScheduleConfigVar = exports.isCodeConfigVar = exports.isComponentReference = void 0;
4
- const isComponentReference = (ref) => typeof ref === "object" && ref !== null && "key" in ref && "component" in ref;
5
- exports.isComponentReference = isComponentReference;
6
- const isCodeConfigVar = (cv) => "dataType" in cv && cv.dataType === "code";
7
- exports.isCodeConfigVar = isCodeConfigVar;
8
- const isScheduleConfigVar = (cv) => "dataType" in cv && cv.dataType === "schedule";
9
- exports.isScheduleConfigVar = isScheduleConfigVar;
10
- const isDataSourceDefinitionConfigVar = (cv) => "dataSourceType" in cv && "perform" in cv && typeof cv.perform === "function";
11
- exports.isDataSourceDefinitionConfigVar = isDataSourceDefinitionConfigVar;
12
- const isDataSourceReferenceConfigVar = (cv) => "dataSourceType" in cv &&
13
- "dataSource" in cv &&
14
- (0, exports.isComponentReference)(cv.dataSource);
15
- exports.isDataSourceReferenceConfigVar = isDataSourceReferenceConfigVar;
16
- const isConnectionDefinitionConfigVar = (cv) => "dataType" in cv && cv.dataType === "connection" && "inputs" in cv;
17
- exports.isConnectionDefinitionConfigVar = isConnectionDefinitionConfigVar;
18
- const isConnectionReferenceConfigVar = (cv) => "connection" in cv && (0, exports.isComponentReference)(cv.connection);
19
- exports.isConnectionReferenceConfigVar = isConnectionReferenceConfigVar;
@@ -4,6 +4,9 @@
4
4
  */
5
5
  export * from "./ActionDefinition";
6
6
  export * from "./ComponentDefinition";
7
+ export * from "./ComponentRegistry";
8
+ export * from "./ConfigPages";
9
+ export * from "./ConfigVars";
7
10
  export * from "./ConnectionDefinition";
8
11
  export * from "./Inputs";
9
12
  export * from "./ActionPerformReturn";
@@ -33,6 +33,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
33
33
  exports.serverTypes = void 0;
34
34
  __exportStar(require("./ActionDefinition"), exports);
35
35
  __exportStar(require("./ComponentDefinition"), exports);
36
+ __exportStar(require("./ComponentRegistry"), exports);
37
+ __exportStar(require("./ConfigPages"), exports);
38
+ __exportStar(require("./ConfigVars"), exports);
36
39
  __exportStar(require("./ConnectionDefinition"), exports);
37
40
  __exportStar(require("./Inputs"), exports);
38
41
  __exportStar(require("./ActionPerformReturn"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prismatic-io/spectral",
3
- "version": "9.0.0-rc.8",
3
+ "version": "9.0.0",
4
4
  "description": "Utility library for building Prismatic components",
5
5
  "keywords": [
6
6
  "prismatic"
@@ -52,6 +52,7 @@
52
52
  "jest-mock": "29.7.0",
53
53
  "lodash": "4.17.21",
54
54
  "object-sizeof": "^2.6.4",
55
+ "prettier": "2.6.2",
55
56
  "safe-stable-stringify": "2.3.1",
56
57
  "serialize-error": "8.1.0",
57
58
  "url-join": "5.0.0",
@@ -65,6 +66,7 @@
65
66
  "@types/jest": "29.5.12",
66
67
  "@types/lodash": "4.17.0",
67
68
  "@types/node": "14.14.35",
69
+ "@types/prettier": "2.6.2",
68
70
  "@types/sax": "1.2.4",
69
71
  "@types/url-join": "4.0.1",
70
72
  "@types/uuid": "8.3.4",
@@ -78,7 +80,6 @@
78
80
  "eslint-plugin-prettier": "4.0.0",
79
81
  "fast-check": "2.16.0",
80
82
  "jest": "29.7.0",
81
- "prettier": "2.6.2",
82
83
  "ts-jest": "29.1.2",
83
84
  "typedoc": "0.17.7",
84
85
  "typedoc-plugin-markdown": "2.4.2",