@apimatic/cli 1.1.0-alpha.9 → 1.1.0-beta.10
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/README.md +443 -374
- package/bin/run.js +5 -0
- package/lib/actions/action-result.d.ts +19 -0
- package/lib/actions/action-result.js +70 -0
- package/lib/actions/action-result.js.map +1 -0
- package/lib/actions/api/transform.d.ts +15 -0
- package/lib/actions/api/transform.js +48 -0
- package/lib/actions/api/transform.js.map +1 -0
- package/lib/actions/api/validate.d.ts +14 -0
- package/lib/actions/api/validate.js +52 -0
- package/lib/actions/api/validate.js.map +1 -0
- package/lib/actions/auth/login.d.ts +13 -0
- package/lib/actions/auth/login.js +55 -0
- package/lib/actions/auth/login.js.map +1 -0
- package/lib/actions/auth/logout.d.ts +8 -0
- package/lib/actions/auth/logout.js +15 -0
- package/lib/actions/auth/logout.js.map +1 -0
- package/lib/actions/auth/status.d.ts +11 -0
- package/lib/actions/auth/status.js +26 -0
- package/lib/actions/auth/status.js.map +1 -0
- package/lib/actions/portal/copilot.d.ts +16 -0
- package/lib/actions/portal/copilot.js +89 -0
- package/lib/actions/portal/copilot.js.map +1 -0
- package/lib/actions/portal/generate.d.ts +11 -5
- package/lib/actions/portal/generate.js +60 -55
- package/lib/actions/portal/generate.js.map +1 -0
- package/lib/actions/portal/quickstart.d.ts +17 -0
- package/lib/actions/portal/quickstart.js +169 -0
- package/lib/actions/portal/quickstart.js.map +1 -0
- package/lib/actions/portal/recipe/new-recipe.d.ts +15 -0
- package/lib/actions/portal/recipe/new-recipe.js +177 -0
- package/lib/actions/portal/recipe/new-recipe.js.map +1 -0
- package/lib/actions/portal/serve.d.ts +15 -0
- package/lib/actions/portal/serve.js +104 -0
- package/lib/actions/portal/serve.js.map +1 -0
- package/lib/actions/portal/toc/new-toc.d.ts +17 -13
- package/lib/actions/portal/toc/new-toc.js +85 -123
- package/lib/actions/portal/toc/new-toc.js.map +1 -0
- package/lib/actions/quickstart.d.ts +10 -0
- package/lib/actions/quickstart.js +30 -0
- package/lib/actions/quickstart.js.map +1 -0
- package/lib/actions/sdk/generate.d.ts +13 -0
- package/lib/actions/sdk/generate.js +77 -0
- package/lib/actions/sdk/generate.js.map +1 -0
- package/lib/actions/sdk/quickstart.d.ts +17 -0
- package/lib/actions/sdk/quickstart.js +171 -0
- package/lib/actions/sdk/quickstart.js.map +1 -0
- package/lib/application/portal/recipe/portal-recipe.d.ts +8 -0
- package/lib/application/portal/recipe/portal-recipe.js +33 -0
- package/lib/application/portal/recipe/portal-recipe.js.map +1 -0
- package/lib/application/portal/recipe/recipe-generator.d.ts +21 -0
- package/lib/application/portal/recipe/recipe-generator.js +145 -0
- package/lib/application/portal/recipe/recipe-generator.js.map +1 -0
- package/lib/application/portal/toc/toc-content-parser.d.ts +1 -1
- package/lib/application/portal/toc/toc-content-parser.js +9 -11
- package/lib/application/portal/toc/toc-content-parser.js.map +1 -0
- package/lib/application/portal/toc/toc-structure-generator.d.ts +23 -2
- package/lib/application/portal/toc/toc-structure-generator.js +133 -66
- package/lib/application/portal/toc/toc-structure-generator.js.map +1 -0
- package/lib/client-utils/auth-manager.d.ts +7 -2
- package/lib/client-utils/auth-manager.js +26 -14
- package/lib/client-utils/auth-manager.js.map +1 -0
- package/lib/commands/api/transform.d.ts +10 -7
- package/lib/commands/api/transform.js +51 -111
- package/lib/commands/api/transform.js.map +1 -0
- package/lib/commands/api/validate.d.ts +7 -4
- package/lib/commands/api/validate.js +31 -74
- package/lib/commands/api/validate.js.map +1 -0
- package/lib/commands/auth/login.d.ts +3 -1
- package/lib/commands/auth/login.js +26 -68
- package/lib/commands/auth/login.js.map +1 -0
- package/lib/commands/auth/logout.d.ts +3 -1
- package/lib/commands/auth/logout.js +14 -21
- package/lib/commands/auth/logout.js.map +1 -0
- package/lib/commands/auth/status.d.ts +1 -0
- package/lib/commands/auth/status.js +18 -21
- package/lib/commands/auth/status.js.map +1 -0
- package/lib/commands/portal/copilot.d.ts +13 -0
- package/lib/commands/portal/copilot.js +34 -0
- package/lib/commands/portal/copilot.js.map +1 -0
- package/lib/commands/portal/generate.d.ts +7 -11
- package/lib/commands/portal/generate.js +26 -89
- package/lib/commands/portal/generate.js.map +1 -0
- package/lib/commands/portal/recipe/new.d.ts +12 -0
- package/lib/commands/portal/recipe/new.js +45 -0
- package/lib/commands/portal/recipe/new.js.map +1 -0
- package/lib/commands/portal/serve.d.ts +8 -8
- package/lib/commands/portal/serve.js +41 -125
- package/lib/commands/portal/serve.js.map +1 -0
- package/lib/commands/portal/toc/new.d.ts +8 -7
- package/lib/commands/portal/toc/new.js +52 -49
- package/lib/commands/portal/toc/new.js.map +1 -0
- package/lib/commands/quickstart.d.ts +9 -0
- package/lib/commands/quickstart.js +37 -0
- package/lib/commands/quickstart.js.map +1 -0
- package/lib/commands/sdk/generate.d.ts +10 -8
- package/lib/commands/sdk/generate.js +46 -131
- package/lib/commands/sdk/generate.js.map +1 -0
- package/lib/config/axios-config.js +4 -6
- package/lib/config/axios-config.js.map +1 -0
- package/lib/hooks/not-found.d.ts +3 -0
- package/lib/hooks/not-found.js +52 -0
- package/lib/hooks/not-found.js.map +1 -0
- package/lib/hooks/utils.d.ts +5 -0
- package/lib/hooks/utils.js +51 -0
- package/lib/hooks/utils.js.map +1 -0
- package/lib/index.js +2 -5
- package/lib/index.js.map +1 -0
- package/lib/infrastructure/debounce-service.d.ts +10 -0
- package/lib/infrastructure/debounce-service.js +55 -0
- package/lib/infrastructure/debounce-service.js.map +1 -0
- package/lib/infrastructure/env-info.d.ts +12 -0
- package/lib/infrastructure/env-info.js +58 -0
- package/lib/infrastructure/env-info.js.map +1 -0
- package/lib/infrastructure/file-service.d.ts +25 -0
- package/lib/infrastructure/file-service.js +131 -0
- package/lib/infrastructure/file-service.js.map +1 -0
- package/lib/infrastructure/launcher-service.d.ts +9 -0
- package/lib/infrastructure/launcher-service.js +72 -0
- package/lib/infrastructure/launcher-service.js.map +1 -0
- package/lib/infrastructure/network-service.d.ts +3 -0
- package/lib/infrastructure/network-service.js +7 -0
- package/lib/infrastructure/network-service.js.map +1 -0
- package/lib/infrastructure/service-error.d.ts +16 -0
- package/lib/infrastructure/service-error.js +49 -0
- package/lib/infrastructure/service-error.js.map +1 -0
- package/lib/infrastructure/services/api-client-factory.d.ts +6 -0
- package/lib/infrastructure/services/api-client-factory.js +20 -0
- package/lib/infrastructure/services/api-client-factory.js.map +1 -0
- package/lib/infrastructure/services/api-service.d.ts +13 -0
- package/lib/infrastructure/services/api-service.js +103 -0
- package/lib/infrastructure/services/api-service.js.map +1 -0
- package/lib/infrastructure/services/auth-service.d.ts +11 -0
- package/lib/infrastructure/services/auth-service.js +37 -0
- package/lib/infrastructure/services/auth-service.js.map +1 -0
- package/lib/infrastructure/services/file-download-service.d.ts +15 -0
- package/lib/infrastructure/services/file-download-service.js +104 -0
- package/lib/infrastructure/services/file-download-service.js.map +1 -0
- package/lib/infrastructure/services/portal-service.d.ts +15 -12
- package/lib/infrastructure/services/portal-service.js +152 -99
- package/lib/infrastructure/services/portal-service.js.map +1 -0
- package/lib/infrastructure/services/telemetry-service.d.ts +9 -0
- package/lib/infrastructure/services/telemetry-service.js +38 -0
- package/lib/infrastructure/services/telemetry-service.js.map +1 -0
- package/lib/infrastructure/services/transformation-service.d.ts +23 -0
- package/lib/infrastructure/services/transformation-service.js +56 -0
- package/lib/infrastructure/services/transformation-service.js.map +1 -0
- package/lib/infrastructure/services/validation-service.d.ts +43 -0
- package/lib/infrastructure/services/validation-service.js +142 -0
- package/lib/infrastructure/services/validation-service.js.map +1 -0
- package/lib/infrastructure/tmp-extensions.d.ts +2 -0
- package/lib/infrastructure/tmp-extensions.js +6 -0
- package/lib/infrastructure/tmp-extensions.js.map +1 -0
- package/lib/infrastructure/zip-service.d.ts +6 -0
- package/lib/infrastructure/zip-service.js +39 -0
- package/lib/infrastructure/zip-service.js.map +1 -0
- package/lib/prompts/api/transform.d.ts +11 -0
- package/lib/prompts/api/transform.js +29 -0
- package/lib/prompts/api/transform.js.map +1 -0
- package/lib/prompts/api/validate.d.ts +15 -0
- package/lib/prompts/api/validate.js +76 -0
- package/lib/prompts/api/validate.js.map +1 -0
- package/lib/prompts/auth/login.d.ts +10 -0
- package/lib/prompts/auth/login.js +22 -0
- package/lib/prompts/auth/login.js.map +1 -0
- package/lib/prompts/auth/logout.d.ts +3 -0
- package/lib/prompts/auth/logout.js +7 -0
- package/lib/prompts/auth/logout.js.map +1 -0
- package/lib/prompts/auth/status.d.ts +8 -0
- package/lib/prompts/auth/status.js +22 -0
- package/lib/prompts/auth/status.js.map +1 -0
- package/lib/prompts/format.d.ts +31 -0
- package/lib/prompts/format.js +89 -0
- package/lib/prompts/format.js.map +1 -0
- package/lib/prompts/portal/copilot.d.ts +18 -0
- package/lib/prompts/portal/copilot.js +82 -0
- package/lib/prompts/portal/copilot.js.map +1 -0
- package/lib/prompts/portal/generate.d.ts +13 -8
- package/lib/prompts/portal/generate.js +36 -53
- package/lib/prompts/portal/generate.js.map +1 -0
- package/lib/prompts/portal/quickstart.d.ts +31 -29
- package/lib/prompts/portal/quickstart.js +139 -185
- package/lib/prompts/portal/quickstart.js.map +1 -0
- package/lib/prompts/portal/recipe/new-recipe.d.ts +29 -0
- package/lib/prompts/portal/recipe/new-recipe.js +165 -0
- package/lib/prompts/portal/recipe/new-recipe.js.map +1 -0
- package/lib/prompts/portal/serve.d.ts +9 -5
- package/lib/prompts/portal/serve.js +29 -19
- package/lib/prompts/portal/serve.js.map +1 -0
- package/lib/prompts/portal/toc/new-toc.d.ts +13 -8
- package/lib/prompts/portal/toc/new-toc.js +36 -36
- package/lib/prompts/portal/toc/new-toc.js.map +1 -0
- package/lib/prompts/prompt.d.ts +3 -0
- package/lib/prompts/prompt.js +37 -0
- package/lib/prompts/prompt.js.map +1 -0
- package/lib/prompts/quickstart.d.ts +6 -0
- package/lib/prompts/quickstart.js +25 -0
- package/lib/prompts/quickstart.js.map +1 -0
- package/lib/prompts/sdk/generate.d.ts +16 -0
- package/lib/prompts/sdk/generate.js +57 -0
- package/lib/prompts/sdk/generate.js.map +1 -0
- package/lib/prompts/sdk/quickstart.d.ts +35 -0
- package/lib/prompts/sdk/quickstart.js +177 -0
- package/lib/prompts/sdk/quickstart.js.map +1 -0
- package/lib/types/api/account.d.ts +10 -0
- package/lib/types/api/account.js +2 -0
- package/lib/types/api/account.js.map +1 -0
- package/lib/types/api/transform.d.ts +14 -25
- package/lib/types/api/transform.js +20 -23
- package/lib/types/api/transform.js.map +1 -0
- package/lib/types/build/build.d.ts +22 -0
- package/lib/types/build/build.js +7 -0
- package/lib/types/build/build.js.map +1 -0
- package/lib/types/build-context.d.ts +13 -0
- package/lib/types/build-context.js +33 -0
- package/lib/types/build-context.js.map +1 -0
- package/lib/types/common/command-metadata.d.ts +4 -0
- package/lib/types/common/command-metadata.js +2 -0
- package/lib/types/common/command-metadata.js.map +1 -0
- package/lib/types/events/domain-event.d.ts +8 -0
- package/lib/types/events/domain-event.js +11 -0
- package/lib/types/events/domain-event.js.map +1 -0
- package/lib/types/events/quickstart-completed.d.ts +7 -0
- package/lib/types/events/quickstart-completed.js +10 -0
- package/lib/types/events/quickstart-completed.js.map +1 -0
- package/lib/types/events/quickstart-initiated.d.ts +7 -0
- package/lib/types/events/quickstart-initiated.js +10 -0
- package/lib/types/events/quickstart-initiated.js.map +1 -0
- package/lib/types/events/recipe-creation-failed.d.ts +5 -0
- package/lib/types/events/recipe-creation-failed.js +8 -0
- package/lib/types/events/recipe-creation-failed.js.map +1 -0
- package/lib/types/events/toc-creation-failed.d.ts +5 -0
- package/lib/types/events/toc-creation-failed.js +8 -0
- package/lib/types/events/toc-creation-failed.js.map +1 -0
- package/lib/types/file/directory.d.ts +17 -0
- package/lib/types/file/directory.js +87 -0
- package/lib/types/file/directory.js.map +1 -0
- package/lib/types/file/directoryPath.d.ts +10 -0
- package/lib/types/file/directoryPath.js +26 -0
- package/lib/types/file/directoryPath.js.map +1 -0
- package/lib/types/file/fileName.d.ts +7 -0
- package/lib/types/file/fileName.js +21 -0
- package/lib/types/file/fileName.js.map +1 -0
- package/lib/types/file/filePath.d.ts +10 -0
- package/lib/types/file/filePath.js +32 -0
- package/lib/types/file/filePath.js.map +1 -0
- package/lib/types/file/resource-input.d.ts +5 -0
- package/lib/types/file/resource-input.js +42 -0
- package/lib/types/file/resource-input.js.map +1 -0
- package/lib/types/file/urlPath.d.ts +6 -0
- package/lib/types/file/urlPath.js +22 -0
- package/lib/types/file/urlPath.js.map +1 -0
- package/lib/types/flags-provider.d.ts +15 -0
- package/lib/types/flags-provider.js +34 -0
- package/lib/types/flags-provider.js.map +1 -0
- package/lib/types/portal-context.d.ts +13 -0
- package/lib/types/portal-context.js +38 -0
- package/lib/types/portal-context.js.map +1 -0
- package/lib/types/recipe/recipe.d.ts +22 -0
- package/lib/types/recipe/recipe.js +6 -0
- package/lib/types/recipe/recipe.js.map +1 -0
- package/lib/types/recipe-context.d.ts +9 -0
- package/lib/types/recipe-context.js +26 -0
- package/lib/types/recipe-context.js.map +1 -0
- package/lib/types/resource-context.d.ts +12 -0
- package/lib/types/resource-context.js +30 -0
- package/lib/types/resource-context.js.map +1 -0
- package/lib/types/sdk/generate.d.ts +9 -22
- package/lib/types/sdk/generate.js +25 -14
- package/lib/types/sdk/generate.js.map +1 -0
- package/lib/types/sdk-context.d.ts +14 -0
- package/lib/types/sdk-context.js +32 -0
- package/lib/types/sdk-context.js.map +1 -0
- package/lib/types/sdl/sdl.d.ts +27 -0
- package/lib/types/sdl/sdl.js +145 -3
- package/lib/types/sdl/sdl.js.map +1 -0
- package/lib/types/spec-context.d.ts +12 -0
- package/lib/types/spec-context.js +29 -0
- package/lib/types/spec-context.js.map +1 -0
- package/lib/types/temp-context.d.ts +11 -0
- package/lib/types/temp-context.js +27 -0
- package/lib/types/temp-context.js.map +1 -0
- package/lib/types/toc/toc.d.ts +31 -6
- package/lib/types/toc/toc.js +2 -10
- package/lib/types/toc/toc.js.map +1 -0
- package/lib/types/toc-context.d.ts +12 -0
- package/lib/types/toc-context.js +26 -0
- package/lib/types/toc-context.js.map +1 -0
- package/lib/types/transform-context.d.ts +13 -0
- package/lib/types/transform-context.js +30 -0
- package/lib/types/transform-context.js.map +1 -0
- package/lib/types/utils.d.ts +0 -9
- package/lib/types/utils.js +2 -3
- package/lib/types/utils.js.map +1 -0
- package/lib/types/versioned-build-context.d.ts +15 -0
- package/lib/types/versioned-build-context.js +28 -0
- package/lib/types/versioned-build-context.js.map +1 -0
- package/lib/utils/string-utils.d.ts +3 -0
- package/lib/utils/string-utils.js +79 -0
- package/lib/utils/string-utils.js.map +1 -0
- package/lib/utils/utils.d.ts +2 -44
- package/lib/utils/utils.js +14 -366
- package/lib/utils/utils.js.map +1 -0
- package/package.json +50 -31
- package/bin/run +0 -9
- package/lib/application/portal/toc/sdl-parser.d.ts +0 -13
- package/lib/application/portal/toc/sdl-parser.js +0 -53
- package/lib/client-utils/sdk-client.d.ts +0 -23
- package/lib/client-utils/sdk-client.js +0 -124
- package/lib/commands/portal/quickstart.d.ts +0 -10
- package/lib/commands/portal/quickstart.js +0 -79
- package/lib/config/env.d.ts +0 -27
- package/lib/config/env.js +0 -31
- package/lib/controllers/api/transform.d.ts +0 -5
- package/lib/controllers/api/transform.js +0 -56
- package/lib/controllers/api/validate.d.ts +0 -3
- package/lib/controllers/api/validate.js +0 -33
- package/lib/controllers/portal/generate.d.ts +0 -3
- package/lib/controllers/portal/generate.js +0 -110
- package/lib/controllers/portal/quickstart.d.ts +0 -14
- package/lib/controllers/portal/quickstart.js +0 -258
- package/lib/controllers/portal/serve.d.ts +0 -3
- package/lib/controllers/portal/serve.js +0 -138
- package/lib/controllers/sdk/generate.d.ts +0 -4
- package/lib/controllers/sdk/generate.js +0 -66
- package/lib/services/portal/server.d.ts +0 -14
- package/lib/services/portal/server.js +0 -101
- package/lib/types/api/validate.d.ts +0 -12
- package/lib/types/api/validate.js +0 -3
- package/lib/types/common/result.d.ts +0 -17
- package/lib/types/common/result.js +0 -36
- package/lib/types/portal/generate.d.ts +0 -26
- package/lib/types/portal/generate.js +0 -4
- package/lib/types/portal/quickstart.d.ts +0 -17
- package/lib/types/portal/quickstart.js +0 -3
- package/lib/validators/common/directoryValidator.d.ts +0 -9
- package/lib/validators/common/directoryValidator.js +0 -53
- package/lib/validators/common/portValidator.d.ts +0 -5
- package/lib/validators/common/portValidator.js +0 -20
- package/lib/validators/portal/serveValidator.d.ts +0 -6
- package/lib/validators/portal/serveValidator.js +0 -21
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { ValidateApiResult } from "@apimatic/sdk";
|
|
2
|
+
import { DirectoryPath } from "../../types/file/directoryPath.js";
|
|
3
|
+
import { Result } from "neverthrow";
|
|
4
|
+
import { FilePath } from "../../types/file/filePath.js";
|
|
5
|
+
import { CommandMetadata } from "../../types/common/command-metadata.js";
|
|
6
|
+
import { ServiceError } from "../service-error.js";
|
|
7
|
+
export declare enum RemovableFeature {
|
|
8
|
+
Merging = "Merging",
|
|
9
|
+
Pagination = "Pagination",
|
|
10
|
+
Webhooks = "Webhooks",
|
|
11
|
+
Callbacks = "Callbacks",
|
|
12
|
+
MultipleAuthSchemes = "MultipleAuthSchemes",
|
|
13
|
+
Oauth2 = "OAuth2"
|
|
14
|
+
}
|
|
15
|
+
export interface FeaturesToRemove {
|
|
16
|
+
features?: RemovableFeature[];
|
|
17
|
+
endpointsToKeep?: number;
|
|
18
|
+
}
|
|
19
|
+
export interface ValidateViaFileParams {
|
|
20
|
+
file: FilePath;
|
|
21
|
+
commandMetadata: CommandMetadata;
|
|
22
|
+
authKey?: string | null;
|
|
23
|
+
}
|
|
24
|
+
export interface UnallowedFeaturesResponse {
|
|
25
|
+
Features: RemovableFeature[];
|
|
26
|
+
EndpointLimit: number;
|
|
27
|
+
EndpointCount: number;
|
|
28
|
+
IsSplitSpec: boolean;
|
|
29
|
+
}
|
|
30
|
+
export interface ValidateApiResponse {
|
|
31
|
+
result: ValidateApiResult;
|
|
32
|
+
unallowedFeatures: UnallowedFeaturesResponse | null;
|
|
33
|
+
}
|
|
34
|
+
export declare class ValidationService {
|
|
35
|
+
private readonly configDir;
|
|
36
|
+
private readonly apiBaseUrl;
|
|
37
|
+
constructor(configDir: DirectoryPath);
|
|
38
|
+
validateViaFile({ file, commandMetadata, authKey }: ValidateViaFileParams): Promise<Result<ValidateApiResponse, string>>;
|
|
39
|
+
stripUnallowedFeatures(specPath: FilePath, featuresToRemove: FeaturesToRemove, authKey?: string | null): Promise<Result<NodeJS.ReadableStream, ServiceError>>;
|
|
40
|
+
private createAuthorizationHeader;
|
|
41
|
+
private handleValidationErrors;
|
|
42
|
+
private parseErrorResponse;
|
|
43
|
+
}
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
import { __asyncValues } from "tslib";
|
|
2
|
+
import { createReadStream } from "node:fs";
|
|
3
|
+
import fsExtra from "fs-extra";
|
|
4
|
+
import { ApiValidationV2ExternalApisController, ContentType, FileWrapper, ApiError } from "@apimatic/sdk";
|
|
5
|
+
import { getAuthInfo } from "../../client-utils/auth-manager.js";
|
|
6
|
+
import { apiClientFactory } from "./api-client-factory.js";
|
|
7
|
+
import { err, ok } from "neverthrow";
|
|
8
|
+
import FormData from "form-data";
|
|
9
|
+
import { handleServiceError } from "../service-error.js";
|
|
10
|
+
import axios from "axios";
|
|
11
|
+
import { envInfo } from "../env-info.js";
|
|
12
|
+
import { Buffer } from "node:buffer";
|
|
13
|
+
export var RemovableFeature;
|
|
14
|
+
(function (RemovableFeature) {
|
|
15
|
+
RemovableFeature["Merging"] = "Merging";
|
|
16
|
+
RemovableFeature["Pagination"] = "Pagination";
|
|
17
|
+
RemovableFeature["Webhooks"] = "Webhooks";
|
|
18
|
+
RemovableFeature["Callbacks"] = "Callbacks";
|
|
19
|
+
RemovableFeature["MultipleAuthSchemes"] = "MultipleAuthSchemes";
|
|
20
|
+
RemovableFeature["Oauth2"] = "OAuth2";
|
|
21
|
+
})(RemovableFeature || (RemovableFeature = {}));
|
|
22
|
+
export class ValidationService {
|
|
23
|
+
constructor(configDir) {
|
|
24
|
+
this.configDir = configDir;
|
|
25
|
+
this.apiBaseUrl = "https://api.apimatic.io";
|
|
26
|
+
}
|
|
27
|
+
async validateViaFile({ file, commandMetadata, authKey }) {
|
|
28
|
+
var _a;
|
|
29
|
+
const authInfo = await getAuthInfo(this.configDir.toString());
|
|
30
|
+
const authorizationHeader = this.createAuthorizationHeader(authInfo, authKey !== null && authKey !== void 0 ? authKey : null);
|
|
31
|
+
const client = apiClientFactory.createApiClient(authorizationHeader, commandMetadata.shell);
|
|
32
|
+
const controller = new ApiValidationV2ExternalApisController(client);
|
|
33
|
+
try {
|
|
34
|
+
const fileDescriptor = new FileWrapper(fsExtra.createReadStream(file.toString()));
|
|
35
|
+
const validation = await controller.validateApiViaFileV2(ContentType.EnumMultipartformdata, fileDescriptor);
|
|
36
|
+
const headerValue = (_a = validation.headers) === null || _a === void 0 ? void 0 : _a["x-unallowed-features"];
|
|
37
|
+
let unallowedFeatures = null;
|
|
38
|
+
if (headerValue) {
|
|
39
|
+
const decodedJson = globalThis.Buffer.from(headerValue, "base64").toString("utf8");
|
|
40
|
+
const parsed = JSON.parse(decodedJson);
|
|
41
|
+
unallowedFeatures = parsed;
|
|
42
|
+
}
|
|
43
|
+
return ok({
|
|
44
|
+
result: validation.result,
|
|
45
|
+
unallowedFeatures
|
|
46
|
+
});
|
|
47
|
+
}
|
|
48
|
+
catch (error) {
|
|
49
|
+
return err(await this.handleValidationErrors(error));
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
async stripUnallowedFeatures(specPath, featuresToRemove, authKey) {
|
|
53
|
+
var _a;
|
|
54
|
+
const authInfo = await getAuthInfo(this.configDir.toString());
|
|
55
|
+
const authorizationHeader = this.createAuthorizationHeader(authInfo, authKey !== null && authKey !== void 0 ? authKey : null);
|
|
56
|
+
const formData = new FormData();
|
|
57
|
+
formData.append("file", createReadStream(specPath.toString()));
|
|
58
|
+
formData.append("featuresToRemove", JSON.stringify(featuresToRemove));
|
|
59
|
+
const baseURL = (_a = envInfo.getBaseUrl()) !== null && _a !== void 0 ? _a : this.apiBaseUrl;
|
|
60
|
+
try {
|
|
61
|
+
const response = await axios({
|
|
62
|
+
method: "POST",
|
|
63
|
+
url: `${baseURL}/api-features/strip`,
|
|
64
|
+
data: formData,
|
|
65
|
+
headers: Object.assign(Object.assign({}, formData.getHeaders()), { Authorization: authorizationHeader }),
|
|
66
|
+
responseType: "stream",
|
|
67
|
+
validateStatus: () => true
|
|
68
|
+
});
|
|
69
|
+
if (response.status >= 400) {
|
|
70
|
+
return err(await this.parseErrorResponse(response));
|
|
71
|
+
}
|
|
72
|
+
return ok(response.data);
|
|
73
|
+
}
|
|
74
|
+
catch (error) {
|
|
75
|
+
return err(handleServiceError(error));
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
createAuthorizationHeader(authInfo, overrideAuthKey) {
|
|
79
|
+
const key = overrideAuthKey || (authInfo === null || authInfo === void 0 ? void 0 : authInfo.authKey);
|
|
80
|
+
return `X-Auth-Key ${key !== null && key !== void 0 ? key : ""}`;
|
|
81
|
+
}
|
|
82
|
+
async handleValidationErrors(error) {
|
|
83
|
+
if (error instanceof ApiError) {
|
|
84
|
+
const apiError = error;
|
|
85
|
+
switch (apiError.statusCode) {
|
|
86
|
+
case 400:
|
|
87
|
+
return "Your API Definition is invalid. Please fix the issues and try again.";
|
|
88
|
+
case 401:
|
|
89
|
+
return "You are not authorized to perform this action. Please run 'auth:login' or provide a valid auth key.";
|
|
90
|
+
case 403:
|
|
91
|
+
return "You do not have permission to perform this action.";
|
|
92
|
+
case 500:
|
|
93
|
+
return "An unexpected error occurred validating the API specification, please try again later. If the problem persists, please reach out to our team at support@apimatic.io";
|
|
94
|
+
default:
|
|
95
|
+
return `Error ${apiError.statusCode}: An error occurred during validation.`;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
return "Unexpected error occurred while validating API specification.";
|
|
99
|
+
}
|
|
100
|
+
async parseErrorResponse(response) {
|
|
101
|
+
var _a, e_1, _b, _c;
|
|
102
|
+
var _d, _e;
|
|
103
|
+
const chunks = [];
|
|
104
|
+
try {
|
|
105
|
+
for (var _f = true, _g = __asyncValues(response.data), _h; _h = await _g.next(), _a = _h.done, !_a; _f = true) {
|
|
106
|
+
_c = _h.value;
|
|
107
|
+
_f = false;
|
|
108
|
+
const chunk = _c;
|
|
109
|
+
chunks.push(Buffer.from(chunk));
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
113
|
+
finally {
|
|
114
|
+
try {
|
|
115
|
+
if (!_f && !_a && (_b = _g.return)) await _b.call(_g);
|
|
116
|
+
}
|
|
117
|
+
finally { if (e_1) throw e_1.error; }
|
|
118
|
+
}
|
|
119
|
+
const errorBody = Buffer.concat(chunks).toString('utf-8');
|
|
120
|
+
let errorMessage = `Error ${response.status}: Failed to strip unallowed features.`;
|
|
121
|
+
try {
|
|
122
|
+
const errorData = JSON.parse(errorBody);
|
|
123
|
+
if ((_e = (_d = errorData.errors) === null || _d === void 0 ? void 0 : _d.summary) === null || _e === void 0 ? void 0 : _e[0]) {
|
|
124
|
+
errorMessage = errorData.errors.summary[0];
|
|
125
|
+
}
|
|
126
|
+
else if (errorData.message) {
|
|
127
|
+
errorMessage = errorData.message;
|
|
128
|
+
}
|
|
129
|
+
else if (errorData.title) {
|
|
130
|
+
errorMessage = errorData.title;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
catch (_j) {
|
|
134
|
+
errorMessage = errorBody || errorMessage;
|
|
135
|
+
}
|
|
136
|
+
return {
|
|
137
|
+
message: errorMessage,
|
|
138
|
+
statusCode: response.status
|
|
139
|
+
};
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
//# sourceMappingURL=validation-service.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"validation-service.js","sourceRoot":"","sources":["../../../src/infrastructure/services/validation-service.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { DirectoryPath } from "../types/file/directoryPath.js";
|
|
2
|
+
import { withDir } from "tmp-promise";
|
|
3
|
+
export function withDirPath(fn) {
|
|
4
|
+
return withDir(results => fn(new DirectoryPath(results.path)), { unsafeCleanup: true });
|
|
5
|
+
}
|
|
6
|
+
//# sourceMappingURL=tmp-extensions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tmp-extensions.js","sourceRoot":"","sources":["../../src/infrastructure/tmp-extensions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AAC/D,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAEtC,MAAM,UAAU,WAAW,CACzB,EAA0C;IAE1C,OAAO,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC,EAAE,CAAC,IAAI,aAAa,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,EAAE,EAAE,aAAa,EAAE,IAAI,EAAE,CAAC,CAAC;AAC1F,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { DirectoryPath } from "../types/file/directoryPath.js";
|
|
2
|
+
import { FilePath } from "../types/file/filePath.js";
|
|
3
|
+
export declare class ZipService {
|
|
4
|
+
archive(sourceDir: DirectoryPath, outputZipPath: FilePath): Promise<void>;
|
|
5
|
+
unArchive(sourceFile: FilePath, destinationDirectory: DirectoryPath): Promise<void>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import fs from "fs";
|
|
2
|
+
import archiver from "archiver";
|
|
3
|
+
import extract from "extract-zip";
|
|
4
|
+
export class ZipService {
|
|
5
|
+
async archive(sourceDir, outputZipPath) {
|
|
6
|
+
return new Promise((resolve, reject) => {
|
|
7
|
+
const output = fs.createWriteStream(outputZipPath.toString());
|
|
8
|
+
const archive = archiver("zip");
|
|
9
|
+
output.on("close", () => resolve());
|
|
10
|
+
archive.on("error", (err) => reject(err));
|
|
11
|
+
archive.pipe(output);
|
|
12
|
+
archive.directory(sourceDir.toString(), false); // false: don't nest under folder
|
|
13
|
+
archive.finalize();
|
|
14
|
+
});
|
|
15
|
+
}
|
|
16
|
+
async unArchive(sourceFile, destinationDirectory) {
|
|
17
|
+
const MAX_FILES = 100000;
|
|
18
|
+
const MAX_SIZE = 1000000000; // 1 GB
|
|
19
|
+
let fileCount = 0;
|
|
20
|
+
let totalSize = 0;
|
|
21
|
+
await extract(sourceFile.toString(), {
|
|
22
|
+
dir: destinationDirectory.toString(),
|
|
23
|
+
onEntry: function (entry) {
|
|
24
|
+
fileCount++;
|
|
25
|
+
if (fileCount > MAX_FILES) {
|
|
26
|
+
throw new Error("Reached max. file count");
|
|
27
|
+
}
|
|
28
|
+
// The uncompressedSize comes from the zip headers, so it might not be trustworthy.
|
|
29
|
+
// Alternatively, calculate the size from the readStream.
|
|
30
|
+
let entrySize = entry.uncompressedSize;
|
|
31
|
+
totalSize += entrySize;
|
|
32
|
+
if (totalSize > MAX_SIZE) {
|
|
33
|
+
throw new Error("Reached max. size");
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
//# sourceMappingURL=zip-service.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"zip-service.js","sourceRoot":"","sources":["../../src/infrastructure/zip-service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,IAAI,CAAC;AACpB,OAAO,QAAQ,MAAM,UAAU,CAAC;AAChC,OAAO,OAAO,MAAM,aAAa,CAAC;AAIlC,MAAM,OAAO,UAAU;IACd,KAAK,CAAC,OAAO,CAAC,SAAwB,EAAE,aAAuB;QACpE,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;YACrC,MAAM,MAAM,GAAG,EAAE,CAAC,iBAAiB,CAAC,aAAa,CAAC,QAAQ,EAAE,CAAC,CAAC;YAC9D,MAAM,OAAO,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC;YAEhC,MAAM,CAAC,EAAE,CAAC,OAAO,EAAE,GAAG,EAAE,CAAC,OAAO,EAAE,CAAC,CAAC;YACpC,OAAO,CAAC,EAAE,CAAC,OAAO,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;YAE1C,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;YACrB,OAAO,CAAC,SAAS,CAAC,SAAS,CAAC,QAAQ,EAAE,EAAE,KAAK,CAAC,CAAC,CAAC,iCAAiC;YACjF,OAAO,CAAC,QAAQ,EAAE,CAAC;QACrB,CAAC,CAAC,CAAC;IACL,CAAC;IAEM,KAAK,CAAC,SAAS,CAAC,UAAoB,EAAE,oBAAmC;QAC9E,MAAM,SAAS,GAAG,MAAO,CAAC;QAC1B,MAAM,QAAQ,GAAG,UAAa,CAAC,CAAC,OAAO;QACvC,IAAI,SAAS,GAAG,CAAC,CAAC;QAClB,IAAI,SAAS,GAAG,CAAC,CAAC;QAElB,MAAM,OAAO,CAAC,UAAU,CAAC,QAAQ,EAAE,EAAE;YACnC,GAAG,EAAE,oBAAoB,CAAC,QAAQ,EAAE;YACpC,OAAO,EAAE,UAAU,KAAK;gBACtB,SAAS,EAAE,CAAC;gBACZ,IAAI,SAAS,GAAG,SAAS,EAAE,CAAC;oBAC1B,MAAM,IAAI,KAAK,CAAC,yBAAyB,CAAC,CAAC;gBAC7C,CAAC;gBACD,mFAAmF;gBACnF,yDAAyD;gBACzD,IAAI,SAAS,GAAG,KAAK,CAAC,gBAAgB,CAAC;gBACvC,SAAS,IAAI,SAAS,CAAC;gBACvB,IAAI,SAAS,GAAG,QAAQ,EAAE,CAAC;oBACzB,MAAM,IAAI,KAAK,CAAC,mBAAmB,CAAC,CAAC;gBACvC,CAAC;YACH,CAAC;SACF,CAAC,CAAC;IACL,CAAC;CACF"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { DirectoryPath } from "../../types/file/directoryPath.js";
|
|
2
|
+
import { Result } from "neverthrow";
|
|
3
|
+
import { TransformationResultData } from "../../infrastructure/services/transformation-service.js";
|
|
4
|
+
import { ServiceError } from "../../infrastructure/service-error.js";
|
|
5
|
+
export declare class ApiTransformPrompts {
|
|
6
|
+
overwriteApi(directory: DirectoryPath): Promise<boolean>;
|
|
7
|
+
transformedApiAlreadyExists(): void;
|
|
8
|
+
transformApi(fn: Promise<Result<TransformationResultData, string>>): Promise<Result<TransformationResultData, string>>;
|
|
9
|
+
logTransformationError(error: string): void;
|
|
10
|
+
networkError(serviceError: ServiceError): void;
|
|
11
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { log, isCancel, confirm } from "@clack/prompts";
|
|
2
|
+
import { format as f } from "../format.js";
|
|
3
|
+
import { withSpinner } from "../prompt.js";
|
|
4
|
+
export class ApiTransformPrompts {
|
|
5
|
+
async overwriteApi(directory) {
|
|
6
|
+
const overwrite = await confirm({
|
|
7
|
+
message: `A specification file already exists at ${f.path(directory)}. Do you want to overwrite the existing file?`,
|
|
8
|
+
initialValue: false
|
|
9
|
+
});
|
|
10
|
+
if (isCancel(overwrite)) {
|
|
11
|
+
return false;
|
|
12
|
+
}
|
|
13
|
+
return overwrite;
|
|
14
|
+
}
|
|
15
|
+
transformedApiAlreadyExists() {
|
|
16
|
+
const message = `Specification already exists.`;
|
|
17
|
+
log.error(message);
|
|
18
|
+
}
|
|
19
|
+
async transformApi(fn) {
|
|
20
|
+
return withSpinner("Transforming API", "API transformed successfully.", "API transformation failed.", fn);
|
|
21
|
+
}
|
|
22
|
+
logTransformationError(error) {
|
|
23
|
+
log.error(error);
|
|
24
|
+
}
|
|
25
|
+
networkError(serviceError) {
|
|
26
|
+
log.error(serviceError.errorMessage);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
//# sourceMappingURL=transform.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"transform.js","sourceRoot":"","sources":["../../../src/prompts/api/transform.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AAExD,OAAO,EAAE,MAAM,IAAI,CAAC,EAAE,MAAM,cAAc,CAAC;AAI3C,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAE3C,MAAM,OAAO,mBAAmB;IACvB,KAAK,CAAC,YAAY,CAAC,SAAwB;QAChD,MAAM,SAAS,GAAG,MAAM,OAAO,CAAC;YAC9B,OAAO,EAAE,0CAA0C,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,+CAA+C;YACnH,YAAY,EAAE,KAAK;SACpB,CAAC,CAAC;QAEH,IAAI,QAAQ,CAAC,SAAS,CAAC,EAAE,CAAC;YACxB,OAAO,KAAK,CAAC;QACf,CAAC;QAED,OAAO,SAAS,CAAC;IACnB,CAAC;IAEM,2BAA2B;QAChC,MAAM,OAAO,GAAG,+BAA+B,CAAC;QAChD,GAAG,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;IACrB,CAAC;IAEM,KAAK,CAAC,YAAY,CAAC,EAAqD;QAC7E,OAAO,WAAW,CAAC,kBAAkB,EAAE,+BAA+B,EAAE,4BAA4B,EAAE,EAAE,CAAC,CAAC;IAC5G,CAAC;IAED,sBAAsB,CAAC,KAAa;QAClC,GAAG,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;IACnB,CAAC;IAEM,YAAY,CAAC,YAA0B;QAC5C,GAAG,CAAC,KAAK,CAAC,YAAY,CAAC,YAAY,CAAC,CAAC;IACvC,CAAC;CACF"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ValidationMessages } from "../../types/utils.js";
|
|
2
|
+
import { Result } from "neverthrow";
|
|
3
|
+
import { ValidationEntry, ValidationSummary } from "@apimatic/sdk";
|
|
4
|
+
import { ServiceError } from "../../infrastructure/service-error.js";
|
|
5
|
+
import { FilePath } from "../../types/file/filePath.js";
|
|
6
|
+
import { ValidateApiResponse } from "../../infrastructure/services/validation-service.js";
|
|
7
|
+
export declare class ApiValidatePrompts {
|
|
8
|
+
validateApi(fn: Promise<Result<ValidateApiResponse, string>>): Promise<Result<ValidateApiResponse, string>>;
|
|
9
|
+
displayValidationMessages({ warnings, errors, messages }: ValidationMessages): void;
|
|
10
|
+
formatValidationEntry(entry: ValidationEntry): string;
|
|
11
|
+
displayValidationSummary(summary: ValidationSummary): void;
|
|
12
|
+
logValidationError(error: string): void;
|
|
13
|
+
networkError(serviceError: ServiceError): void;
|
|
14
|
+
transformedApiSaved(filePath: FilePath): void;
|
|
15
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { log } from "@clack/prompts";
|
|
2
|
+
import { replaceHTML } from "../../utils/utils.js";
|
|
3
|
+
import { format as f } from "../format.js";
|
|
4
|
+
import { withSpinner } from "../prompt.js";
|
|
5
|
+
export class ApiValidatePrompts {
|
|
6
|
+
async validateApi(fn) {
|
|
7
|
+
return withSpinner("Validating API", "API validation completed", "API validation failed", fn);
|
|
8
|
+
}
|
|
9
|
+
displayValidationMessages({ warnings, errors, messages }) {
|
|
10
|
+
if (messages.length > 0) {
|
|
11
|
+
log.info("Messages");
|
|
12
|
+
messages.forEach((msg) => {
|
|
13
|
+
log.message(`${replaceHTML(msg)}`);
|
|
14
|
+
});
|
|
15
|
+
}
|
|
16
|
+
if (warnings.length > 0) {
|
|
17
|
+
log.warning("Warnings");
|
|
18
|
+
warnings.forEach((war) => {
|
|
19
|
+
log.message(`${replaceHTML(war)}`);
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
if (errors.length > 0) {
|
|
23
|
+
log.error("Errors");
|
|
24
|
+
errors.forEach((err) => {
|
|
25
|
+
log.message(`${replaceHTML(err)}`);
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
formatValidationEntry(entry) {
|
|
30
|
+
let formatted = replaceHTML(entry.message);
|
|
31
|
+
if (entry.fileReference && entry.lineInfo) {
|
|
32
|
+
formatted += ` [${entry.fileReference}:${entry.lineInfo.startLineNumber}:${entry.lineInfo.startLinePosition}]`;
|
|
33
|
+
}
|
|
34
|
+
if (entry.jsonReferencePath) {
|
|
35
|
+
formatted += ` (${entry.jsonReferencePath})`;
|
|
36
|
+
}
|
|
37
|
+
return formatted;
|
|
38
|
+
}
|
|
39
|
+
displayValidationSummary(summary) {
|
|
40
|
+
if (summary.blocking.length > 0) {
|
|
41
|
+
log.error("Blocking");
|
|
42
|
+
for (const entry of summary.blocking) {
|
|
43
|
+
log.message(this.formatValidationEntry(entry));
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
if (summary.errors.length > 0) {
|
|
47
|
+
log.error("Errors");
|
|
48
|
+
for (const entry of summary.errors) {
|
|
49
|
+
log.message(this.formatValidationEntry(entry));
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
if (summary.warnings.length > 0) {
|
|
53
|
+
log.warning("Warnings");
|
|
54
|
+
for (const entry of summary.warnings) {
|
|
55
|
+
log.message(this.formatValidationEntry(entry));
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
if (summary.information.length > 0) {
|
|
59
|
+
log.info("Information");
|
|
60
|
+
for (const entry of summary.information) {
|
|
61
|
+
log.message(this.formatValidationEntry(entry));
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
logValidationError(error) {
|
|
66
|
+
log.error(error);
|
|
67
|
+
}
|
|
68
|
+
networkError(serviceError) {
|
|
69
|
+
const message = serviceError.errorMessage;
|
|
70
|
+
log.error(message);
|
|
71
|
+
}
|
|
72
|
+
transformedApiSaved(filePath) {
|
|
73
|
+
log.info(`Transformed API has been saved to ${f.path(filePath)}.`);
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
//# sourceMappingURL=validate.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"validate.js","sourceRoot":"","sources":["../../../src/prompts/api/validate.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceError } from "../../infrastructure/service-error.js";
|
|
2
|
+
import { SubscriptionInfo } from "../../types/api/account.js";
|
|
3
|
+
import { Result } from "neverthrow";
|
|
4
|
+
export declare class LoginPrompts {
|
|
5
|
+
loginSuccessful(email: string): void;
|
|
6
|
+
openBrowser(): void;
|
|
7
|
+
invalidKeyProvided(serviceError: ServiceError): void;
|
|
8
|
+
loginTimeout(): void;
|
|
9
|
+
accountInfoSpinner(fn: Promise<Result<SubscriptionInfo, ServiceError>>): Promise<Result<SubscriptionInfo, ServiceError>>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { log } from "@clack/prompts";
|
|
2
|
+
import { ServiceError } from "../../infrastructure/service-error.js";
|
|
3
|
+
import { withSpinner } from "../prompt.js";
|
|
4
|
+
export class LoginPrompts {
|
|
5
|
+
loginSuccessful(email) {
|
|
6
|
+
log.success(`Successfully logged in as ${email}`);
|
|
7
|
+
}
|
|
8
|
+
openBrowser() {
|
|
9
|
+
log.info("Please continue with authentication in the opened browser window.");
|
|
10
|
+
}
|
|
11
|
+
invalidKeyProvided(serviceError) {
|
|
12
|
+
const message = serviceError === ServiceError.NetworkError ? "Invalid API key provided." : serviceError.errorMessage;
|
|
13
|
+
log.error(message);
|
|
14
|
+
}
|
|
15
|
+
loginTimeout() {
|
|
16
|
+
log.error("Authentication timed out. Please try again.");
|
|
17
|
+
}
|
|
18
|
+
accountInfoSpinner(fn) {
|
|
19
|
+
return withSpinner("Retrieving your subscription info", "Retrieved subscription info", "Error retrieving subscription info", fn);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
//# sourceMappingURL=login.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"login.js","sourceRoot":"","sources":["../../../src/prompts/auth/login.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,gBAAgB,CAAC;AACrC,OAAO,EAAE,YAAY,EAAE,MAAM,uCAAuC,CAAC;AAGrE,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAE3C,MAAM,OAAO,YAAY;IAChB,eAAe,CAAC,KAAa;QAClC,GAAG,CAAC,OAAO,CAAC,6BAA6B,KAAK,EAAE,CAAC,CAAC;IACpD,CAAC;IAEM,WAAW;QAChB,GAAG,CAAC,IAAI,CAAC,mEAAmE,CAAC,CAAC;IAChF,CAAC;IAEM,kBAAkB,CAAC,YAA0B;QAClD,MAAM,OAAO,GACX,YAAY,KAAK,YAAY,CAAC,YAAY,CAAC,CAAC,CAAC,2BAA2B,CAAC,CAAC,CAAC,YAAY,CAAC,YAAY,CAAC;QACvG,GAAG,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;IACrB,CAAC;IAEM,YAAY;QACjB,GAAG,CAAC,KAAK,CAAC,6CAA6C,CAAC,CAAC;IAC3D,CAAC;IAEM,kBAAkB,CAAC,EAAmD;QAC3E,OAAO,WAAW,CAChB,mCAAmC,EACnC,6BAA6B,EAC7B,oCAAoC,EACpC,EAAE,CACH,CAAC;IACJ,CAAC;CACF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"logout.js","sourceRoot":"","sources":["../../../src/prompts/auth/logout.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,gBAAgB,CAAC;AAGrC,MAAM,OAAO,aAAa;IAEjB,cAAc;QACnB,GAAG,CAAC,IAAI,CAAC,0BAA0B,CAAC,CAAC;IACvC,CAAC;CACF"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Result } from "neverthrow";
|
|
2
|
+
import { SubscriptionInfo } from "../../types/api/account.js";
|
|
3
|
+
import { ServiceError } from "../../infrastructure/service-error.js";
|
|
4
|
+
export declare class StatusPrompts {
|
|
5
|
+
accountInfoSpinner(fn: Promise<Result<SubscriptionInfo, ServiceError>>): Promise<Result<SubscriptionInfo, ServiceError>>;
|
|
6
|
+
invalidKeyProvided(serviceError: ServiceError): void;
|
|
7
|
+
showAccountInfo(info: SubscriptionInfo): void;
|
|
8
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ServiceError } from "../../infrastructure/service-error.js";
|
|
2
|
+
import { format } from "../format.js";
|
|
3
|
+
import { log } from "@clack/prompts";
|
|
4
|
+
import { mapLanguages } from "../../types/sdk/generate.js";
|
|
5
|
+
import { withSpinner } from "../prompt.js";
|
|
6
|
+
export class StatusPrompts {
|
|
7
|
+
accountInfoSpinner(fn) {
|
|
8
|
+
return withSpinner("Retrieving your subscription info", "Retrieved subscription info", "Error retrieving subscription info", fn);
|
|
9
|
+
}
|
|
10
|
+
invalidKeyProvided(serviceError) {
|
|
11
|
+
const message = serviceError === ServiceError.UnAuthorized ? "Invalid API key provided." : serviceError.errorMessage;
|
|
12
|
+
log.error(message);
|
|
13
|
+
}
|
|
14
|
+
showAccountInfo(info) {
|
|
15
|
+
const languages = mapLanguages(info.allowedLanguages);
|
|
16
|
+
const message = `Account Information:
|
|
17
|
+
Email: ${format.var(info.Email)}
|
|
18
|
+
Allowed Languages: ${languages.map((language) => format.var(language)).join(", ")}`;
|
|
19
|
+
log.info(`${message}`);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
//# sourceMappingURL=status.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"status.js","sourceRoot":"","sources":["../../../src/prompts/auth/status.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,MAAM,uCAAuC,CAAC;AACrE,OAAO,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;AACtC,OAAO,EAAE,GAAG,EAAE,MAAM,gBAAgB,CAAC;AACrC,OAAO,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAC3D,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAE3C,MAAM,OAAO,aAAa;IACjB,kBAAkB,CAAC,EAAmD;QAC3E,OAAO,WAAW,CAChB,mCAAmC,EACnC,6BAA6B,EAC7B,oCAAoC,EACpC,EAAE,CACH,CAAC;IACJ,CAAC;IAEM,kBAAkB,CAAC,YAA0B;QAClD,MAAM,OAAO,GACX,YAAY,KAAK,YAAY,CAAC,YAAY,CAAC,CAAC,CAAC,2BAA2B,CAAC,CAAC,CAAC,YAAY,CAAC,YAAY,CAAC;QACvG,GAAG,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;IACrB,CAAC;IAEM,eAAe,CAAC,IAAsB;QAC3C,MAAM,SAAS,GAAG,YAAY,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;QACtD,MAAM,OAAO,GAAG;WACT,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC;uBACV,SAAS,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC;QAClF,GAAG,CAAC,IAAI,CAAC,GAAG,OAAO,EAAE,CAAC,CAAC;IACzB,CAAC;CACF"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { ActionResult } from "../actions/action-result.js";
|
|
2
|
+
import { Directory } from "../types/file/directory.js";
|
|
3
|
+
import { DirectoryPath } from "../types/file/directoryPath.js";
|
|
4
|
+
import { FilePath } from "../types/file/filePath.js";
|
|
5
|
+
export declare const format: {
|
|
6
|
+
var: (text: string) => string;
|
|
7
|
+
path: (text: DirectoryPath | FilePath) => string;
|
|
8
|
+
cmd: (cmd: string, ...args: string[]) => string;
|
|
9
|
+
cmdAlt: (cmd: string, ...args: string[]) => string;
|
|
10
|
+
link: (text: string) => string;
|
|
11
|
+
description: (text: string) => string;
|
|
12
|
+
flag: (name: string, value?: string | undefined) => string;
|
|
13
|
+
success: (text: string) => string;
|
|
14
|
+
error: (text: string) => string;
|
|
15
|
+
info: (text: string) => string;
|
|
16
|
+
intro: (text: string) => string;
|
|
17
|
+
outroSuccess: (text: string) => string;
|
|
18
|
+
outroFailure: (text: string) => string;
|
|
19
|
+
outroCancelled: (text: string) => string;
|
|
20
|
+
};
|
|
21
|
+
export declare function intro(text: string): void;
|
|
22
|
+
export declare function outro<T>(result: ActionResult<T>): void;
|
|
23
|
+
export declare function getDirectoryTree(dir: Directory, prefix?: string, isLast?: boolean): string;
|
|
24
|
+
export interface LeafNode {
|
|
25
|
+
name: string;
|
|
26
|
+
description?: string;
|
|
27
|
+
}
|
|
28
|
+
export interface TreeNode extends LeafNode {
|
|
29
|
+
items: Array<TreeNode | LeafNode>;
|
|
30
|
+
}
|
|
31
|
+
export declare function getTree(dir: TreeNode, prefix?: string, isLast?: boolean): string;
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import pc from "picocolors";
|
|
2
|
+
import { intro as i, outro as o } from '@clack/prompts';
|
|
3
|
+
import { Directory } from "../types/file/directory.js";
|
|
4
|
+
export const format = {
|
|
5
|
+
// Core element types
|
|
6
|
+
var: (text) => pc.magenta(`'${text}'`),
|
|
7
|
+
path: (text) => pc.cyan(`'${text}'`),
|
|
8
|
+
cmd: (cmd, ...args) => `${pc.blueBright(cmd)} ${args.map(arg => pc.dim(arg)).join(" ")}`,
|
|
9
|
+
cmdAlt: (cmd, ...args) => `${pc.dim(pc.blueBright(cmd))} ${args.map(arg => pc.blueBright(arg)).join(" ")}`,
|
|
10
|
+
link: (text) => pc.underline(pc.blueBright(text)),
|
|
11
|
+
description: (text) => pc.greenBright(`${text}`),
|
|
12
|
+
flag: (name, value = undefined) => {
|
|
13
|
+
if (value) {
|
|
14
|
+
const sanitizedValue = value.includes(" ") ? `'${value}'` : value;
|
|
15
|
+
return `${pc.green(`--${name}`)}=${pc.dim(sanitizedValue)}`;
|
|
16
|
+
}
|
|
17
|
+
return `${pc.green(`--${name}`)}`;
|
|
18
|
+
},
|
|
19
|
+
// Common message styles
|
|
20
|
+
success: (text) => pc.green(text),
|
|
21
|
+
error: (text) => pc.red(text),
|
|
22
|
+
info: (text) => pc.cyan(text),
|
|
23
|
+
intro: (text) => pc.bgCyan(text),
|
|
24
|
+
outroSuccess: (text) => pc.bgGreen(text),
|
|
25
|
+
outroFailure: (text) => pc.bgRed(text),
|
|
26
|
+
outroCancelled: (text) => pc.bgWhite(pc.blackBright(text)),
|
|
27
|
+
};
|
|
28
|
+
export function intro(text) {
|
|
29
|
+
i(format.intro(` ${text} `));
|
|
30
|
+
}
|
|
31
|
+
export function outro(result) {
|
|
32
|
+
const exitCode = result.getExitCode();
|
|
33
|
+
const message = result.getMessage();
|
|
34
|
+
const outroMessage = result.mapAll(() => format.outroSuccess(message), () => format.outroFailure(message), () => format.outroCancelled(message));
|
|
35
|
+
o(outroMessage);
|
|
36
|
+
process.exitCode = exitCode;
|
|
37
|
+
}
|
|
38
|
+
export function getDirectoryTree(dir, prefix = "", isLast = true) {
|
|
39
|
+
const folderDescription = {
|
|
40
|
+
spec: "# Contains all API definition files",
|
|
41
|
+
content: "# Includes custom documentation pages in Markdown",
|
|
42
|
+
static: "# Includes all static files, such as images, GIFs, and PDFs"
|
|
43
|
+
};
|
|
44
|
+
const fileDescriptions = {
|
|
45
|
+
"toc.yml": "# Controls the structure of the side navigation bar in the API portal",
|
|
46
|
+
"APIMATIC-BUILD.json": "# Defines all configurations for the API portal, including programming languages and themes"
|
|
47
|
+
};
|
|
48
|
+
const pointer = isLast ? "└─ " : "├─ ";
|
|
49
|
+
const folderName = dir.directoryPath.leafName();
|
|
50
|
+
const description = folderDescription[folderName] ? format.description(folderDescription[folderName]) : "";
|
|
51
|
+
let output = `${prefix}${pointer}${folderName}${description ? " " + description : ""}\n`;
|
|
52
|
+
const items = dir.items;
|
|
53
|
+
const newPrefix = prefix + (isLast ? " " : "| ");
|
|
54
|
+
items.forEach((item, index) => {
|
|
55
|
+
const last = index === items.length - 1;
|
|
56
|
+
if (item instanceof Directory) {
|
|
57
|
+
output += getDirectoryTree(item, newPrefix, last);
|
|
58
|
+
}
|
|
59
|
+
else {
|
|
60
|
+
const filePointer = last ? "└─ " : "├─ ";
|
|
61
|
+
const fileName = item.toString();
|
|
62
|
+
const fileDescription = fileDescriptions[fileName] ? format.description(fileDescriptions[fileName]) : "";
|
|
63
|
+
output += `${newPrefix}${filePointer}${fileName}${fileDescription ? " " + fileDescription : ""}\n`;
|
|
64
|
+
}
|
|
65
|
+
});
|
|
66
|
+
return output;
|
|
67
|
+
}
|
|
68
|
+
export function getTree(dir, prefix = "", isLast = true) {
|
|
69
|
+
const pointer = isLast ? "└─ " : "├─ ";
|
|
70
|
+
const folderName = dir.name;
|
|
71
|
+
const description = dir.description ? format.description(dir.description) : "";
|
|
72
|
+
let output = `${prefix}${pointer}${folderName}${description ? " " + description : ""}\n`;
|
|
73
|
+
const items = dir.items;
|
|
74
|
+
const newPrefix = prefix + (isLast ? " " : "| ");
|
|
75
|
+
items.forEach((item, index) => {
|
|
76
|
+
const last = index === items.length - 1;
|
|
77
|
+
if ('items' in item) {
|
|
78
|
+
output += getTree(item, newPrefix, last);
|
|
79
|
+
}
|
|
80
|
+
else {
|
|
81
|
+
const filePointer = last ? "└─ " : "├─ ";
|
|
82
|
+
const fileName = item.name;
|
|
83
|
+
const fileDescription = item.description ? format.description(item.description) : "";
|
|
84
|
+
output += `${newPrefix}${filePointer}${fileName}${fileDescription ? " " + fileDescription : ""}\n`;
|
|
85
|
+
}
|
|
86
|
+
});
|
|
87
|
+
return output;
|
|
88
|
+
}
|
|
89
|
+
//# sourceMappingURL=format.js.map
|