@microsoft/m365-spec-parser 0.1.1-alpha.ebe783822.0 → 0.1.1-alpha.fccd8293a.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.
@@ -23,6 +23,7 @@ var ErrorType;
23
23
  ErrorType["GenerateAdaptiveCardFailed"] = "generate-adaptive-card-failed";
24
24
  ErrorType["GenerateFailed"] = "generate-failed";
25
25
  ErrorType["ValidateFailed"] = "validate-failed";
26
+ ErrorType["GetSpecFailed"] = "get-spec-failed";
26
27
  ErrorType["Cancelled"] = "cancelled";
27
28
  ErrorType["Unknown"] = "unknown";
28
29
  })(ErrorType || (ErrorType = {}));
@@ -818,15 +819,24 @@ class SpecParser {
818
819
  async list() {
819
820
  throw new Error("Method not implemented.");
820
821
  }
822
+ /**
823
+ * Generate specs according to the filters.
824
+ * @param filter An array of strings that represent the filters to apply when generating the artifacts. If filter is empty, it would process nothing.
825
+ */
826
+ // eslint-disable-next-line @typescript-eslint/require-await
827
+ async getFilteredSpecs(filter, signal) {
828
+ throw new Error("Method not implemented.");
829
+ }
821
830
  /**
822
831
  * Generates and update artifacts from the OpenAPI specification file. Generate Adaptive Cards, update Teams app manifest, and generate a new OpenAPI specification file.
823
832
  * @param manifestPath A file path of the Teams app manifest file to update.
824
833
  * @param filter An array of strings that represent the filters to apply when generating the artifacts. If filter is empty, it would process nothing.
825
834
  * @param outputSpecPath File path of the new OpenAPI specification file to generate. If not specified or empty, no spec file will be generated.
826
835
  * @param adaptiveCardFolder Folder path where the Adaptive Card files will be generated. If not specified or empty, Adaptive Card files will not be generated.
836
+ * @param isMe Boolean that indicates whether the project is an Messaging Extension. For Messaging Extension, composeExtensions will be added in Teams app manifest.
827
837
  */
828
838
  // eslint-disable-next-line @typescript-eslint/require-await
829
- async generate(manifestPath, filter, outputSpecPath, adaptiveCardFolder, signal) {
839
+ async generate(manifestPath, filter, outputSpecPath, adaptiveCardFolder, signal, isMe) {
830
840
  throw new Error("Method not implemented.");
831
841
  }
832
842
  async loadSpec() {
@@ -849,5 +859,163 @@ class SpecParser {
849
859
  }
850
860
  }
851
861
 
852
- export { ConstantString, ErrorType, SpecParser, SpecParserError, Utils, ValidationStatus, WarningType };
862
+ // Copyright (c) Microsoft Corporation.
863
+ class AdaptiveCardGenerator {
864
+ static generateAdaptiveCard(operationItem) {
865
+ try {
866
+ const json = Utils.getResponseJson(operationItem);
867
+ let cardBody = [];
868
+ let schema = json.schema;
869
+ let jsonPath = "$";
870
+ if (schema && Object.keys(schema).length > 0) {
871
+ jsonPath = AdaptiveCardGenerator.getResponseJsonPathFromSchema(schema);
872
+ if (jsonPath !== "$") {
873
+ schema = schema.properties[jsonPath];
874
+ }
875
+ cardBody = AdaptiveCardGenerator.generateCardFromResponse(schema, "");
876
+ }
877
+ // if no schema, try to use example value
878
+ if (cardBody.length === 0 && (json.examples || json.example)) {
879
+ cardBody = [
880
+ {
881
+ type: ConstantString.TextBlockType,
882
+ text: "${jsonStringify($root)}",
883
+ wrap: true,
884
+ },
885
+ ];
886
+ }
887
+ // if no example value, use default success response
888
+ if (cardBody.length === 0) {
889
+ cardBody = [
890
+ {
891
+ type: ConstantString.TextBlockType,
892
+ text: "success",
893
+ wrap: true,
894
+ },
895
+ ];
896
+ }
897
+ const fullCard = {
898
+ type: ConstantString.AdaptiveCardType,
899
+ $schema: ConstantString.AdaptiveCardSchema,
900
+ version: ConstantString.AdaptiveCardVersion,
901
+ body: cardBody,
902
+ };
903
+ return [fullCard, jsonPath];
904
+ }
905
+ catch (err) {
906
+ throw new SpecParserError(err.toString(), ErrorType.GenerateAdaptiveCardFailed);
907
+ }
908
+ }
909
+ static generateCardFromResponse(schema, name, parentArrayName = "") {
910
+ if (schema.type === "array") {
911
+ // schema.items can be arbitrary object: schema { type: array, items: {} }
912
+ if (Object.keys(schema.items).length === 0) {
913
+ return [
914
+ {
915
+ type: ConstantString.TextBlockType,
916
+ text: name ? `${name}: \${jsonStringify(${name})}` : "result: ${jsonStringify($root)}",
917
+ wrap: true,
918
+ },
919
+ ];
920
+ }
921
+ const obj = AdaptiveCardGenerator.generateCardFromResponse(schema.items, "", name);
922
+ const template = {
923
+ type: ConstantString.ContainerType,
924
+ $data: name ? `\${${name}}` : "${$root}",
925
+ items: Array(),
926
+ };
927
+ template.items.push(...obj);
928
+ return [template];
929
+ }
930
+ // some schema may not contain type but contain properties
931
+ if (schema.type === "object" || (!schema.type && schema.properties)) {
932
+ const { properties } = schema;
933
+ const result = [];
934
+ for (const property in properties) {
935
+ const obj = AdaptiveCardGenerator.generateCardFromResponse(properties[property], name ? `${name}.${property}` : property, parentArrayName);
936
+ result.push(...obj);
937
+ }
938
+ if (schema.additionalProperties) {
939
+ // TODO: better ways to handler warnings.
940
+ console.warn(ConstantString.AdditionalPropertiesNotSupported);
941
+ }
942
+ return result;
943
+ }
944
+ if (schema.type === "string" ||
945
+ schema.type === "integer" ||
946
+ schema.type === "boolean" ||
947
+ schema.type === "number") {
948
+ if (!AdaptiveCardGenerator.isImageUrlProperty(schema, name, parentArrayName)) {
949
+ // string in root: "ddd"
950
+ let text = "result: ${$root}";
951
+ if (name) {
952
+ // object { id: "1" }
953
+ text = `${name}: \${if(${name}, ${name}, 'N/A')}`;
954
+ if (parentArrayName) {
955
+ // object types inside array: { tags: ["id": 1, "name": "name"] }
956
+ text = `${parentArrayName}.${text}`;
957
+ }
958
+ }
959
+ else if (parentArrayName) {
960
+ // string array: photoUrls: ["1", "2"]
961
+ text = `${parentArrayName}: ` + "${$data}";
962
+ }
963
+ return [
964
+ {
965
+ type: ConstantString.TextBlockType,
966
+ text,
967
+ wrap: true,
968
+ },
969
+ ];
970
+ }
971
+ else {
972
+ if (name) {
973
+ return [
974
+ {
975
+ type: "Image",
976
+ url: `\${${name}}`,
977
+ $when: `\${${name} != null}`,
978
+ },
979
+ ];
980
+ }
981
+ else {
982
+ return [
983
+ {
984
+ type: "Image",
985
+ url: "${$data}",
986
+ $when: "${$data != null}",
987
+ },
988
+ ];
989
+ }
990
+ }
991
+ }
992
+ if (schema.oneOf || schema.anyOf || schema.not || schema.allOf) {
993
+ throw new Error(Utils.format(ConstantString.SchemaNotSupported, JSON.stringify(schema)));
994
+ }
995
+ throw new Error(Utils.format(ConstantString.UnknownSchema, JSON.stringify(schema)));
996
+ }
997
+ // Find the first array property in the response schema object with the well-known name
998
+ static getResponseJsonPathFromSchema(schema) {
999
+ if (schema.type === "object" || (!schema.type && schema.properties)) {
1000
+ const { properties } = schema;
1001
+ for (const property in properties) {
1002
+ const schema = properties[property];
1003
+ if (schema.type === "array" &&
1004
+ Utils.isWellKnownName(property, ConstantString.WellknownResultNames)) {
1005
+ return property;
1006
+ }
1007
+ }
1008
+ }
1009
+ return "$";
1010
+ }
1011
+ static isImageUrlProperty(schema, name, parentArrayName) {
1012
+ const propertyName = name ? name : parentArrayName;
1013
+ return (!!propertyName &&
1014
+ schema.type === "string" &&
1015
+ Utils.isWellKnownName(propertyName, ConstantString.WellknownImageName) &&
1016
+ (propertyName.toLocaleLowerCase().indexOf("url") >= 0 || schema.format === "uri"));
1017
+ }
1018
+ }
1019
+
1020
+ export { AdaptiveCardGenerator, ConstantString, ErrorType, SpecParser, SpecParserError, Utils, ValidationStatus, WarningType };
853
1021
  //# sourceMappingURL=index.esm2017.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.esm2017.js","sources":["../src/interfaces.ts","../src/specParserError.ts","../src/constants.ts","../src/utils.ts","../src/specParser.browser.ts"],"sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n\"use strict\";\n\nimport { OpenAPIV3 } from \"openapi-types\";\n\n/**\n * An interface that represents the result of validating an OpenAPI specification file.\n */\nexport interface ValidateResult {\n /**\n * The validation status of the OpenAPI specification file.\n */\n status: ValidationStatus;\n\n /**\n * An array of warning results generated during validation.\n */\n warnings: WarningResult[];\n\n /**\n * An array of error results generated during validation.\n */\n errors: ErrorResult[];\n}\n\n/**\n * An interface that represents a warning result generated during validation.\n */\nexport interface WarningResult {\n /**\n * The type of warning.\n */\n type: WarningType;\n\n /**\n * The content of the warning.\n */\n content: string;\n\n /**\n * data of the warning.\n */\n data?: any;\n}\n\n/**\n * An interface that represents an error result generated during validation.\n */\nexport interface ErrorResult {\n /**\n * The type of error.\n */\n type: ErrorType;\n\n /**\n * The content of the error.\n */\n content: string;\n\n /**\n * data of the error.\n */\n data?: any;\n}\n\nexport interface GenerateResult {\n allSuccess: boolean;\n warnings: WarningResult[];\n}\n\n/**\n * An enum that represents the types of errors that can occur during validation.\n */\nexport enum ErrorType {\n SpecNotValid = \"spec-not-valid\",\n RemoteRefNotSupported = \"remote-ref-not-supported\",\n NoServerInformation = \"no-server-information\",\n UrlProtocolNotSupported = \"url-protocol-not-supported\",\n RelativeServerUrlNotSupported = \"relative-server-url-not-supported\",\n NoSupportedApi = \"no-supported-api\",\n NoExtraAPICanBeAdded = \"no-extra-api-can-be-added\",\n ResolveServerUrlFailed = \"resolve-server-url-failed\",\n SwaggerNotSupported = \"swagger-not-supported\",\n MultipleAPIKeyNotSupported = \"multiple-api-key-not-supported\",\n\n ListFailed = \"list-failed\",\n listSupportedAPIInfoFailed = \"list-supported-api-info-failed\",\n FilterSpecFailed = \"filter-spec-failed\",\n UpdateManifestFailed = \"update-manifest-failed\",\n GenerateAdaptiveCardFailed = \"generate-adaptive-card-failed\",\n GenerateFailed = \"generate-failed\",\n ValidateFailed = \"validate-failed\",\n\n Cancelled = \"cancelled\",\n Unknown = \"unknown\",\n}\n\n/**\n * An enum that represents the types of warnings that can occur during validation.\n */\nexport enum WarningType {\n OperationIdMissing = \"operationid-missing\",\n GenerateCardFailed = \"generate-card-failed\",\n OperationOnlyContainsOptionalParam = \"operation-only-contains-optional-param\",\n ConvertSwaggerToOpenAPI = \"convert-swagger-to-openapi\",\n Unknown = \"unknown\",\n}\n\n/**\n * An enum that represents the validation status of an OpenAPI specification file.\n */\nexport enum ValidationStatus {\n Valid,\n Warning, // If there are any warnings, the file is still valid\n Error, // If there are any errors, the file is not valid\n}\n\nexport interface TextBlockElement {\n type: string;\n text: string;\n wrap: boolean;\n}\n\nexport interface ImageElement {\n type: string;\n url: string;\n $when: string;\n}\n\nexport interface ArrayElement {\n type: string;\n $data: string;\n items: Array<TextBlockElement | ImageElement | ArrayElement>;\n}\n\nexport interface AdaptiveCard {\n type: string;\n $schema: string;\n version: string;\n body: Array<TextBlockElement | ImageElement | ArrayElement>;\n}\n\nexport interface PreviewCardTemplate {\n title: string;\n subtitle?: string;\n image?: {\n url: string;\n alt?: string;\n $when?: string;\n };\n}\n\nexport interface WrappedAdaptiveCard {\n version: string;\n $schema?: string;\n jsonPath?: string;\n responseLayout: string;\n responseCardTemplate: AdaptiveCard;\n previewCardTemplate: PreviewCardTemplate;\n}\n\nexport interface ChoicesItem {\n title: string;\n value: string;\n}\n\nexport interface Parameter {\n name: string;\n title: string;\n description: string;\n inputType?: \"text\" | \"textarea\" | \"number\" | \"date\" | \"time\" | \"toggle\" | \"choiceset\";\n value?: string;\n choices?: ChoicesItem[];\n}\n\nexport interface CheckParamResult {\n requiredNum: number;\n optionalNum: number;\n isValid: boolean;\n}\n\nexport interface ParseOptions {\n allowMissingId?: boolean;\n allowSwagger?: boolean;\n allowAPIKeyAuth?: boolean;\n allowMultipleParameters?: boolean;\n allowOauth2?: boolean;\n}\n\nexport interface APIInfo {\n method: string;\n path: string;\n title: string;\n id: string;\n parameters: Parameter[];\n description: string;\n warning?: WarningResult;\n}\n\nexport interface ListAPIResult {\n api: string;\n server: string;\n operationId: string;\n auth?: OpenAPIV3.SecuritySchemeObject;\n}\n\nexport interface AuthSchema {\n authSchema: OpenAPIV3.SecuritySchemeObject;\n name: string;\n}\n","// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n\"use strict\";\n\nimport { ErrorType } from \"./interfaces\";\n\nexport class SpecParserError extends Error {\n public readonly errorType: ErrorType;\n\n constructor(message: string, errorType: ErrorType) {\n super(message);\n this.errorType = errorType;\n }\n}\n","// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n\"use strict\";\n\nexport class ConstantString {\n static readonly CancelledMessage = \"Operation is cancelled.\";\n static readonly NoServerInformation =\n \"No server information is found in the OpenAPI description document.\";\n static readonly RemoteRefNotSupported = \"Remote reference is not supported: %s.\";\n static readonly MissingOperationId = \"Missing operationIds: %s.\";\n static readonly NoSupportedApi =\n \"No supported API is found in the OpenAPI description document: only GET and POST methods are supported, additionally, there can be at most one required parameter, and no auth is allowed.\";\n\n static readonly AdditionalPropertiesNotSupported =\n \"'additionalProperties' is not supported, and will be ignored.\";\n static readonly SchemaNotSupported = \"'oneOf', 'anyOf', and 'not' schema are not supported: %s.\";\n static readonly UnknownSchema = \"Unknown schema: %s.\";\n\n static readonly UrlProtocolNotSupported =\n \"Server url is not correct: protocol %s is not supported, you should use https protocol instead.\";\n static readonly RelativeServerUrlNotSupported =\n \"Server url is not correct: relative server url is not supported.\";\n static readonly ResolveServerUrlFailed =\n \"Unable to resolve the server URL: please make sure that the environment variable %s is defined.\";\n static readonly OperationOnlyContainsOptionalParam =\n \"Operation %s contains multiple optional parameters. The first optional parameter is used for this command.\";\n static readonly ConvertSwaggerToOpenAPI =\n \"The Swagger 2.0 file has been converted to OpenAPI 3.0.\";\n\n static readonly SwaggerNotSupported =\n \"Swagger 2.0 is not supported. Please convert to OpenAPI 3.0 manually before proceeding.\";\n\n static readonly MultipleAPIKeyNotSupported =\n \"Multiple API keys are not supported. Please make sure that all selected APIs use the same API key.\";\n\n static readonly WrappedCardVersion = \"devPreview\";\n static readonly WrappedCardSchema =\n \"https://developer.microsoft.com/json-schemas/teams/vDevPreview/MicrosoftTeams.ResponseRenderingTemplate.schema.json\";\n static readonly WrappedCardResponseLayout = \"list\";\n\n static readonly GetMethod = \"get\";\n static readonly PostMethod = \"post\";\n static readonly AdaptiveCardVersion = \"1.5\";\n static readonly AdaptiveCardSchema = \"http://adaptivecards.io/schemas/adaptive-card.json\";\n static readonly AdaptiveCardType = \"AdaptiveCard\";\n static readonly TextBlockType = \"TextBlock\";\n static readonly ContainerType = \"Container\";\n static readonly RegistrationIdPostfix = \"REGISTRATION_ID\";\n static readonly ResponseCodeFor20X = [\n \"200\",\n \"201\",\n \"202\",\n \"203\",\n \"204\",\n \"205\",\n \"206\",\n \"207\",\n \"208\",\n \"226\",\n \"default\",\n ];\n static readonly AllOperationMethods = [\n \"get\",\n \"post\",\n \"put\",\n \"delete\",\n \"patch\",\n \"head\",\n \"options\",\n \"trace\",\n ];\n\n // TODO: update after investigating the usage of these constants.\n static readonly WellknownResultNames = [\n \"result\",\n \"data\",\n \"items\",\n \"root\",\n \"matches\",\n \"queries\",\n \"list\",\n \"output\",\n ];\n static readonly WellknownTitleName = [\"title\", \"name\", \"summary\", \"caption\", \"subject\", \"label\"];\n static readonly WellknownSubtitleName = [\n \"subtitle\",\n \"id\",\n \"uid\",\n \"description\",\n \"desc\",\n \"detail\",\n ];\n static readonly WellknownImageName = [\n \"image\",\n \"icon\",\n \"avatar\",\n \"picture\",\n \"photo\",\n \"logo\",\n \"pic\",\n \"thumbnail\",\n \"img\",\n ];\n\n static readonly ShortDescriptionMaxLens = 80;\n static readonly FullDescriptionMaxLens = 4000;\n static readonly CommandDescriptionMaxLens = 128;\n static readonly ParameterDescriptionMaxLens = 128;\n static readonly CommandTitleMaxLens = 32;\n static readonly ParameterTitleMaxLens = 32;\n}\n","// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n\"use strict\";\n\nimport { OpenAPIV3 } from \"openapi-types\";\nimport SwaggerParser from \"@apidevtools/swagger-parser\";\nimport { ConstantString } from \"./constants\";\nimport {\n AuthSchema,\n CheckParamResult,\n ErrorResult,\n ErrorType,\n Parameter,\n ValidateResult,\n ValidationStatus,\n WarningResult,\n WarningType,\n} from \"./interfaces\";\nimport { IMessagingExtensionCommand } from \"@microsoft/teams-manifest\";\n\nexport class Utils {\n static checkParameters(paramObject: OpenAPIV3.ParameterObject[]): CheckParamResult {\n const paramResult = {\n requiredNum: 0,\n optionalNum: 0,\n isValid: true,\n };\n\n if (!paramObject) {\n return paramResult;\n }\n\n for (let i = 0; i < paramObject.length; i++) {\n const param = paramObject[i];\n const schema = param.schema as OpenAPIV3.SchemaObject;\n const isRequiredWithoutDefault = param.required && schema.default === undefined;\n\n if (param.in === \"header\" || param.in === \"cookie\") {\n if (isRequiredWithoutDefault) {\n paramResult.isValid = false;\n }\n continue;\n }\n\n if (\n schema.type !== \"boolean\" &&\n schema.type !== \"string\" &&\n schema.type !== \"number\" &&\n schema.type !== \"integer\"\n ) {\n if (isRequiredWithoutDefault) {\n paramResult.isValid = false;\n }\n continue;\n }\n\n if (param.in === \"query\" || param.in === \"path\") {\n if (isRequiredWithoutDefault) {\n paramResult.requiredNum = paramResult.requiredNum + 1;\n } else {\n paramResult.optionalNum = paramResult.optionalNum + 1;\n }\n }\n }\n\n return paramResult;\n }\n\n static checkPostBody(schema: OpenAPIV3.SchemaObject, isRequired = false): CheckParamResult {\n const paramResult = {\n requiredNum: 0,\n optionalNum: 0,\n isValid: true,\n };\n\n if (Object.keys(schema).length === 0) {\n return paramResult;\n }\n\n const isRequiredWithoutDefault = isRequired && schema.default === undefined;\n\n if (\n schema.type === \"string\" ||\n schema.type === \"integer\" ||\n schema.type === \"boolean\" ||\n schema.type === \"number\"\n ) {\n if (isRequiredWithoutDefault) {\n paramResult.requiredNum = paramResult.requiredNum + 1;\n } else {\n paramResult.optionalNum = paramResult.optionalNum + 1;\n }\n } else if (schema.type === \"object\") {\n const { properties } = schema;\n for (const property in properties) {\n let isRequired = false;\n if (schema.required && schema.required?.indexOf(property) >= 0) {\n isRequired = true;\n }\n const result = Utils.checkPostBody(\n properties[property] as OpenAPIV3.SchemaObject,\n isRequired\n );\n paramResult.requiredNum += result.requiredNum;\n paramResult.optionalNum += result.optionalNum;\n paramResult.isValid = paramResult.isValid && result.isValid;\n }\n } else {\n if (isRequiredWithoutDefault) {\n paramResult.isValid = false;\n }\n }\n return paramResult;\n }\n\n /**\n * Checks if the given API is supported.\n * @param {string} method - The HTTP method of the API.\n * @param {string} path - The path of the API.\n * @param {OpenAPIV3.Document} spec - The OpenAPI specification document.\n * @returns {boolean} - Returns true if the API is supported, false otherwise.\n * @description The following APIs are supported:\n * 1. only support Get/Post operation without auth property\n * 2. parameter inside query or path only support string, number, boolean and integer\n * 3. parameter inside post body only support string, number, boolean, integer and object\n * 4. request body + required parameters <= 1\n * 5. response body should be “application/json” and not empty, and response code should be 20X\n * 6. only support request body with “application/json” content type\n */\n static isSupportedApi(\n method: string,\n path: string,\n spec: OpenAPIV3.Document,\n allowMissingId: boolean,\n allowAPIKeyAuth: boolean,\n allowMultipleParameters: boolean,\n allowOauth2: boolean\n ): boolean {\n const pathObj = spec.paths[path];\n method = method.toLocaleLowerCase();\n if (pathObj) {\n if (\n (method === ConstantString.PostMethod || method === ConstantString.GetMethod) &&\n pathObj[method]\n ) {\n const securities = pathObj[method]!.security;\n const authArray = Utils.getAuthArray(securities, spec);\n if (!Utils.isSupportedAuth(authArray, allowAPIKeyAuth, allowOauth2)) {\n return false;\n }\n\n const operationObject = pathObj[method] as OpenAPIV3.OperationObject;\n if (!allowMissingId && !operationObject.operationId) {\n return false;\n }\n const paramObject = operationObject.parameters as OpenAPIV3.ParameterObject[];\n\n const requestBody = operationObject.requestBody as OpenAPIV3.RequestBodyObject;\n const requestJsonBody = requestBody?.content[\"application/json\"];\n\n const mediaTypesCount = Object.keys(requestBody?.content || {}).length;\n if (mediaTypesCount > 1) {\n return false;\n }\n\n const responseJson = Utils.getResponseJson(operationObject);\n if (Object.keys(responseJson).length === 0) {\n return false;\n }\n\n let requestBodyParamResult = {\n requiredNum: 0,\n optionalNum: 0,\n isValid: true,\n };\n\n if (requestJsonBody) {\n const requestBodySchema = requestJsonBody.schema as OpenAPIV3.SchemaObject;\n requestBodyParamResult = Utils.checkPostBody(requestBodySchema, requestBody.required);\n }\n\n if (!requestBodyParamResult.isValid) {\n return false;\n }\n\n const paramResult = Utils.checkParameters(paramObject);\n\n if (!paramResult.isValid) {\n return false;\n }\n\n if (requestBodyParamResult.requiredNum + paramResult.requiredNum > 1) {\n if (\n allowMultipleParameters &&\n requestBodyParamResult.requiredNum + paramResult.requiredNum <= 5\n ) {\n return true;\n }\n return false;\n } else if (\n requestBodyParamResult.requiredNum +\n requestBodyParamResult.optionalNum +\n paramResult.requiredNum +\n paramResult.optionalNum ===\n 0\n ) {\n return false;\n } else {\n return true;\n }\n }\n }\n\n return false;\n }\n\n static isSupportedAuth(\n authSchemaArray: AuthSchema[][],\n allowAPIKeyAuth: boolean,\n allowOauth2: boolean\n ): boolean {\n if (authSchemaArray.length === 0) {\n return true;\n }\n\n if (allowAPIKeyAuth || allowOauth2) {\n // Currently we don't support multiple auth in one operation\n if (authSchemaArray.length > 0 && authSchemaArray.every((auths) => auths.length > 1)) {\n return false;\n }\n\n for (const auths of authSchemaArray) {\n if (auths.length === 1) {\n if (!allowOauth2 && allowAPIKeyAuth && Utils.isAPIKeyAuth(auths[0].authSchema)) {\n return true;\n } else if (\n !allowAPIKeyAuth &&\n allowOauth2 &&\n Utils.isBearerTokenAuth(auths[0].authSchema)\n ) {\n return true;\n } else if (\n allowAPIKeyAuth &&\n allowOauth2 &&\n (Utils.isAPIKeyAuth(auths[0].authSchema) ||\n Utils.isBearerTokenAuth(auths[0].authSchema))\n ) {\n return true;\n }\n }\n }\n }\n\n return false;\n }\n\n static isAPIKeyAuth(authSchema: OpenAPIV3.SecuritySchemeObject): boolean {\n return authSchema.type === \"apiKey\";\n }\n\n static isBearerTokenAuth(authSchema: OpenAPIV3.SecuritySchemeObject): boolean {\n return (\n authSchema.type === \"oauth2\" ||\n authSchema.type === \"openIdConnect\" ||\n (authSchema.type === \"http\" && authSchema.scheme === \"bearer\")\n );\n }\n\n static getAuthArray(\n securities: OpenAPIV3.SecurityRequirementObject[] | undefined,\n spec: OpenAPIV3.Document\n ): AuthSchema[][] {\n const result: AuthSchema[][] = [];\n const securitySchemas = spec.components?.securitySchemes;\n if (securities && securitySchemas) {\n for (let i = 0; i < securities.length; i++) {\n const security = securities[i];\n\n const authArray: AuthSchema[] = [];\n for (const name in security) {\n const auth = securitySchemas[name] as OpenAPIV3.SecuritySchemeObject;\n authArray.push({\n authSchema: auth,\n name: name,\n });\n }\n\n if (authArray.length > 0) {\n result.push(authArray);\n }\n }\n }\n\n result.sort((a, b) => a[0].name.localeCompare(b[0].name));\n\n return result;\n }\n\n static updateFirstLetter(str: string): string {\n return str.charAt(0).toUpperCase() + str.slice(1);\n }\n\n static getResponseJson(\n operationObject: OpenAPIV3.OperationObject | undefined\n ): OpenAPIV3.MediaTypeObject {\n let json: OpenAPIV3.MediaTypeObject = {};\n\n for (const code of ConstantString.ResponseCodeFor20X) {\n const responseObject = operationObject?.responses?.[code] as OpenAPIV3.ResponseObject;\n\n const mediaTypesCount = Object.keys(responseObject?.content || {}).length;\n if (mediaTypesCount > 1) {\n return {};\n }\n\n if (responseObject?.content?.[\"application/json\"]) {\n json = responseObject.content[\"application/json\"];\n break;\n }\n }\n\n return json;\n }\n\n static convertPathToCamelCase(path: string): string {\n const pathSegments = path.split(/[./{]/);\n const camelCaseSegments = pathSegments.map((segment) => {\n segment = segment.replace(/}/g, \"\");\n return segment.charAt(0).toUpperCase() + segment.slice(1);\n });\n const camelCasePath = camelCaseSegments.join(\"\");\n return camelCasePath;\n }\n\n static getUrlProtocol(urlString: string): string | undefined {\n try {\n const url = new URL(urlString);\n return url.protocol;\n } catch (err) {\n return undefined;\n }\n }\n\n static resolveServerUrl(url: string): string {\n const placeHolderReg = /\\${{\\s*([a-zA-Z_][a-zA-Z0-9_]*)\\s*}}/g;\n let matches = placeHolderReg.exec(url);\n let newUrl = url;\n while (matches != null) {\n const envVar = matches[1];\n const envVal = process.env[envVar];\n if (!envVal) {\n throw new Error(Utils.format(ConstantString.ResolveServerUrlFailed, envVar));\n } else {\n newUrl = newUrl.replace(matches[0], envVal);\n }\n matches = placeHolderReg.exec(url);\n }\n return newUrl;\n }\n\n static checkServerUrl(servers: OpenAPIV3.ServerObject[]): ErrorResult[] {\n const errors: ErrorResult[] = [];\n\n let serverUrl;\n try {\n serverUrl = Utils.resolveServerUrl(servers[0].url);\n } catch (err) {\n errors.push({\n type: ErrorType.ResolveServerUrlFailed,\n content: (err as Error).message,\n data: servers,\n });\n return errors;\n }\n\n const protocol = Utils.getUrlProtocol(serverUrl);\n if (!protocol) {\n // Relative server url is not supported\n errors.push({\n type: ErrorType.RelativeServerUrlNotSupported,\n content: ConstantString.RelativeServerUrlNotSupported,\n data: servers,\n });\n } else if (protocol !== \"https:\") {\n // Http server url is not supported\n const protocolString = protocol.slice(0, -1);\n errors.push({\n type: ErrorType.UrlProtocolNotSupported,\n content: Utils.format(ConstantString.UrlProtocolNotSupported, protocol.slice(0, -1)),\n data: protocolString,\n });\n }\n\n return errors;\n }\n\n static validateServer(\n spec: OpenAPIV3.Document,\n allowMissingId: boolean,\n allowAPIKeyAuth: boolean,\n allowMultipleParameters: boolean,\n allowOauth2: boolean\n ): ErrorResult[] {\n const errors: ErrorResult[] = [];\n\n let hasTopLevelServers = false;\n let hasPathLevelServers = false;\n let hasOperationLevelServers = false;\n\n if (spec.servers && spec.servers.length >= 1) {\n hasTopLevelServers = true;\n\n // for multiple server, we only use the first url\n const serverErrors = Utils.checkServerUrl(spec.servers);\n errors.push(...serverErrors);\n }\n\n const paths = spec.paths;\n for (const path in paths) {\n const methods = paths[path];\n\n if (methods?.servers && methods.servers.length >= 1) {\n hasPathLevelServers = true;\n const serverErrors = Utils.checkServerUrl(methods.servers);\n errors.push(...serverErrors);\n }\n\n for (const method in methods) {\n const operationObject = (methods as any)[method] as OpenAPIV3.OperationObject;\n if (\n Utils.isSupportedApi(\n method,\n path,\n spec,\n allowMissingId,\n allowAPIKeyAuth,\n allowMultipleParameters,\n allowOauth2\n )\n ) {\n if (operationObject?.servers && operationObject.servers.length >= 1) {\n hasOperationLevelServers = true;\n const serverErrors = Utils.checkServerUrl(operationObject.servers);\n errors.push(...serverErrors);\n }\n }\n }\n }\n if (!hasTopLevelServers && !hasPathLevelServers && !hasOperationLevelServers) {\n errors.push({\n type: ErrorType.NoServerInformation,\n content: ConstantString.NoServerInformation,\n });\n }\n return errors;\n }\n\n static isWellKnownName(name: string, wellknownNameList: string[]): boolean {\n for (let i = 0; i < wellknownNameList.length; i++) {\n name = name.replace(/_/g, \"\").replace(/-/g, \"\");\n if (name.toLowerCase().includes(wellknownNameList[i])) {\n return true;\n }\n }\n return false;\n }\n\n static generateParametersFromSchema(\n schema: OpenAPIV3.SchemaObject,\n name: string,\n allowMultipleParameters: boolean,\n isRequired = false\n ): [Parameter[], Parameter[]] {\n const requiredParams: Parameter[] = [];\n const optionalParams: Parameter[] = [];\n\n if (\n schema.type === \"string\" ||\n schema.type === \"integer\" ||\n schema.type === \"boolean\" ||\n schema.type === \"number\"\n ) {\n const parameter = {\n name: name,\n title: Utils.updateFirstLetter(name).slice(0, ConstantString.ParameterTitleMaxLens),\n description: (schema.description ?? \"\").slice(\n 0,\n ConstantString.ParameterDescriptionMaxLens\n ),\n };\n\n if (allowMultipleParameters) {\n Utils.updateParameterWithInputType(schema, parameter);\n }\n\n if (isRequired && schema.default === undefined) {\n requiredParams.push(parameter);\n } else {\n optionalParams.push(parameter);\n }\n } else if (schema.type === \"object\") {\n const { properties } = schema;\n for (const property in properties) {\n let isRequired = false;\n if (schema.required && schema.required?.indexOf(property) >= 0) {\n isRequired = true;\n }\n const [requiredP, optionalP] = Utils.generateParametersFromSchema(\n properties[property] as OpenAPIV3.SchemaObject,\n property,\n allowMultipleParameters,\n isRequired\n );\n\n requiredParams.push(...requiredP);\n optionalParams.push(...optionalP);\n }\n }\n\n return [requiredParams, optionalParams];\n }\n\n static updateParameterWithInputType(schema: OpenAPIV3.SchemaObject, param: Parameter): void {\n if (schema.enum) {\n param.inputType = \"choiceset\";\n param.choices = [];\n for (let i = 0; i < schema.enum.length; i++) {\n param.choices.push({\n title: schema.enum[i],\n value: schema.enum[i],\n });\n }\n } else if (schema.type === \"string\") {\n param.inputType = \"text\";\n } else if (schema.type === \"integer\" || schema.type === \"number\") {\n param.inputType = \"number\";\n } else if (schema.type === \"boolean\") {\n param.inputType = \"toggle\";\n }\n\n if (schema.default) {\n param.value = schema.default;\n }\n }\n\n static parseApiInfo(\n operationItem: OpenAPIV3.OperationObject,\n allowMultipleParameters: boolean\n ): [IMessagingExtensionCommand, WarningResult | undefined] {\n const requiredParams: Parameter[] = [];\n const optionalParams: Parameter[] = [];\n const paramObject = operationItem.parameters as OpenAPIV3.ParameterObject[];\n\n if (paramObject) {\n paramObject.forEach((param: OpenAPIV3.ParameterObject) => {\n const parameter: Parameter = {\n name: param.name,\n title: Utils.updateFirstLetter(param.name).slice(0, ConstantString.ParameterTitleMaxLens),\n description: (param.description ?? \"\").slice(\n 0,\n ConstantString.ParameterDescriptionMaxLens\n ),\n };\n\n const schema = param.schema as OpenAPIV3.SchemaObject;\n if (allowMultipleParameters && schema) {\n Utils.updateParameterWithInputType(schema, parameter);\n }\n\n if (param.in !== \"header\" && param.in !== \"cookie\") {\n if (param.required && schema?.default === undefined) {\n requiredParams.push(parameter);\n } else {\n optionalParams.push(parameter);\n }\n }\n });\n }\n\n if (operationItem.requestBody) {\n const requestBody = operationItem.requestBody as OpenAPIV3.RequestBodyObject;\n const requestJson = requestBody.content[\"application/json\"];\n if (Object.keys(requestJson).length !== 0) {\n const schema = requestJson.schema as OpenAPIV3.SchemaObject;\n const [requiredP, optionalP] = Utils.generateParametersFromSchema(\n schema,\n \"requestBody\",\n allowMultipleParameters,\n requestBody.required\n );\n requiredParams.push(...requiredP);\n optionalParams.push(...optionalP);\n }\n }\n\n const operationId = operationItem.operationId!;\n\n const parameters = [];\n\n if (requiredParams.length !== 0) {\n parameters.push(...requiredParams);\n } else {\n parameters.push(optionalParams[0]);\n }\n\n const command: IMessagingExtensionCommand = {\n context: [\"compose\"],\n type: \"query\",\n title: (operationItem.summary ?? \"\").slice(0, ConstantString.CommandTitleMaxLens),\n id: operationId,\n parameters: parameters,\n description: (operationItem.description ?? \"\").slice(\n 0,\n ConstantString.CommandDescriptionMaxLens\n ),\n };\n let warning: WarningResult | undefined = undefined;\n\n if (requiredParams.length === 0 && optionalParams.length > 1) {\n warning = {\n type: WarningType.OperationOnlyContainsOptionalParam,\n content: Utils.format(ConstantString.OperationOnlyContainsOptionalParam, operationId),\n data: operationId,\n };\n }\n return [command, warning];\n }\n\n static listSupportedAPIs(\n spec: OpenAPIV3.Document,\n allowMissingId: boolean,\n allowAPIKeyAuth: boolean,\n allowMultipleParameters: boolean,\n allowOauth2: boolean\n ): {\n [key: string]: OpenAPIV3.OperationObject;\n } {\n const paths = spec.paths;\n const result: { [key: string]: OpenAPIV3.OperationObject } = {};\n for (const path in paths) {\n const methods = paths[path];\n for (const method in methods) {\n // For developer preview, only support GET operation with only 1 parameter without auth\n if (\n Utils.isSupportedApi(\n method,\n path,\n spec,\n allowMissingId,\n allowAPIKeyAuth,\n allowMultipleParameters,\n allowOauth2\n )\n ) {\n const operationObject = (methods as any)[method] as OpenAPIV3.OperationObject;\n result[`${method.toUpperCase()} ${path}`] = operationObject;\n }\n }\n }\n return result;\n }\n\n static validateSpec(\n spec: OpenAPIV3.Document,\n parser: SwaggerParser,\n isSwaggerFile: boolean,\n allowMissingId: boolean,\n allowAPIKeyAuth: boolean,\n allowMultipleParameters: boolean,\n allowOauth2: boolean\n ): ValidateResult {\n const errors: ErrorResult[] = [];\n const warnings: WarningResult[] = [];\n\n if (isSwaggerFile) {\n warnings.push({\n type: WarningType.ConvertSwaggerToOpenAPI,\n content: ConstantString.ConvertSwaggerToOpenAPI,\n });\n }\n\n // Server validation\n const serverErrors = Utils.validateServer(\n spec,\n allowMissingId,\n allowAPIKeyAuth,\n allowMultipleParameters,\n allowOauth2\n );\n errors.push(...serverErrors);\n\n // Remote reference not supported\n const refPaths = parser.$refs.paths();\n\n // refPaths [0] is the current spec file path\n if (refPaths.length > 1) {\n errors.push({\n type: ErrorType.RemoteRefNotSupported,\n content: Utils.format(ConstantString.RemoteRefNotSupported, refPaths.join(\", \")),\n data: refPaths,\n });\n }\n\n // No supported API\n const apiMap = Utils.listSupportedAPIs(\n spec,\n allowMissingId,\n allowAPIKeyAuth,\n allowMultipleParameters,\n allowOauth2\n );\n if (Object.keys(apiMap).length === 0) {\n errors.push({\n type: ErrorType.NoSupportedApi,\n content: ConstantString.NoSupportedApi,\n });\n }\n\n // OperationId missing\n const apisMissingOperationId: string[] = [];\n for (const key in apiMap) {\n const pathObjectItem = apiMap[key];\n if (!pathObjectItem.operationId) {\n apisMissingOperationId.push(key);\n }\n }\n\n if (apisMissingOperationId.length > 0) {\n warnings.push({\n type: WarningType.OperationIdMissing,\n content: Utils.format(ConstantString.MissingOperationId, apisMissingOperationId.join(\", \")),\n data: apisMissingOperationId,\n });\n }\n\n let status = ValidationStatus.Valid;\n if (warnings.length > 0 && errors.length === 0) {\n status = ValidationStatus.Warning;\n } else if (errors.length > 0) {\n status = ValidationStatus.Error;\n }\n\n return {\n status,\n warnings,\n errors,\n };\n }\n\n static format(str: string, ...args: string[]): string {\n let index = 0;\n return str.replace(/%s/g, () => {\n const arg = args[index++];\n return arg !== undefined ? arg : \"\";\n });\n }\n\n static getSafeRegistrationIdEnvName(authName: string): string {\n if (!authName) {\n return \"\";\n }\n\n let safeRegistrationIdEnvName = authName.toUpperCase().replace(/[^A-Z0-9_]/g, \"_\");\n\n if (!safeRegistrationIdEnvName.match(/^[A-Z]/)) {\n safeRegistrationIdEnvName = \"PREFIX_\" + safeRegistrationIdEnvName;\n }\n\n return safeRegistrationIdEnvName;\n }\n}\n","// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n\"use strict\";\n\nimport SwaggerParser from \"@apidevtools/swagger-parser\";\nimport { OpenAPIV3 } from \"openapi-types\";\nimport {\n APIInfo,\n ErrorType,\n GenerateResult,\n ParseOptions,\n ValidateResult,\n ValidationStatus,\n Parameter,\n ListAPIResult,\n} from \"./interfaces\";\nimport { SpecParserError } from \"./specParserError\";\nimport { Utils } from \"./utils\";\nimport { ConstantString } from \"./constants\";\n\n/**\n * A class that parses an OpenAPI specification file and provides methods to validate, list, and generate artifacts.\n */\nexport class SpecParser {\n public readonly pathOrSpec: string | OpenAPIV3.Document;\n public readonly parser: SwaggerParser;\n public readonly options: Required<ParseOptions>;\n\n private apiMap: { [key: string]: OpenAPIV3.PathItemObject } | undefined;\n private spec: OpenAPIV3.Document | undefined;\n private unResolveSpec: OpenAPIV3.Document | undefined;\n private isSwaggerFile: boolean | undefined;\n\n private defaultOptions: ParseOptions = {\n allowMissingId: false,\n allowSwagger: false,\n allowAPIKeyAuth: false,\n allowMultipleParameters: false,\n allowOauth2: false,\n };\n\n /**\n * Creates a new instance of the SpecParser class.\n * @param pathOrDoc The path to the OpenAPI specification file or the OpenAPI specification object.\n * @param options The options for parsing the OpenAPI specification file.\n */\n constructor(pathOrDoc: string | OpenAPIV3.Document, options?: ParseOptions) {\n this.pathOrSpec = pathOrDoc;\n this.parser = new SwaggerParser();\n this.options = {\n ...this.defaultOptions,\n ...(options ?? {}),\n } as Required<ParseOptions>;\n }\n\n /**\n * Validates the OpenAPI specification file and returns a validation result.\n *\n * @returns A validation result object that contains information about any errors or warnings in the specification file.\n */\n async validate(): Promise<ValidateResult> {\n try {\n try {\n await this.loadSpec();\n await this.parser.validate(this.spec!, {\n validate: {\n schema: false,\n },\n });\n } catch (e) {\n return {\n status: ValidationStatus.Error,\n warnings: [],\n errors: [{ type: ErrorType.SpecNotValid, content: (e as Error).toString() }],\n };\n }\n\n if (!this.options.allowSwagger && this.isSwaggerFile) {\n return {\n status: ValidationStatus.Error,\n warnings: [],\n errors: [\n { type: ErrorType.SwaggerNotSupported, content: ConstantString.SwaggerNotSupported },\n ],\n };\n }\n\n return Utils.validateSpec(\n this.spec!,\n this.parser,\n !!this.isSwaggerFile,\n this.options.allowMissingId,\n this.options.allowAPIKeyAuth,\n this.options.allowMultipleParameters,\n this.options.allowOauth2\n );\n } catch (err) {\n throw new SpecParserError((err as Error).toString(), ErrorType.ValidateFailed);\n }\n }\n\n async listSupportedAPIInfo(): Promise<APIInfo[]> {\n try {\n await this.loadSpec();\n const apiMap = this.getAllSupportedAPIs(this.spec!);\n const apiInfos: APIInfo[] = [];\n for (const key in apiMap) {\n const pathObjectItem = apiMap[key];\n const [method, path] = key.split(\" \");\n const operationId = pathObjectItem.operationId;\n\n // In Browser environment, this api is by default not support api without operationId\n if (!operationId) {\n continue;\n }\n\n const [command, warning] = Utils.parseApiInfo(\n pathObjectItem,\n this.options.allowMultipleParameters\n );\n\n const apiInfo: APIInfo = {\n method: method,\n path: path,\n title: command.title,\n id: operationId,\n parameters: command.parameters! as Parameter[],\n description: command.description!,\n };\n\n if (warning) {\n apiInfo.warning = warning;\n }\n\n apiInfos.push(apiInfo);\n }\n\n return apiInfos;\n } catch (err) {\n throw new SpecParserError((err as Error).toString(), ErrorType.listSupportedAPIInfoFailed);\n }\n }\n\n /**\n * Lists all the OpenAPI operations in the specification file.\n * @returns A string array that represents the HTTP method and path of each operation, such as ['GET /pets/{petId}', 'GET /user/{userId}']\n * according to copilot plugin spec, only list get and post method without auth\n */\n // eslint-disable-next-line @typescript-eslint/require-await\n async list(): Promise<ListAPIResult[]> {\n throw new Error(\"Method not implemented.\");\n }\n\n /**\n * Generates and update artifacts from the OpenAPI specification file. Generate Adaptive Cards, update Teams app manifest, and generate a new OpenAPI specification file.\n * @param manifestPath A file path of the Teams app manifest file to update.\n * @param filter An array of strings that represent the filters to apply when generating the artifacts. If filter is empty, it would process nothing.\n * @param outputSpecPath File path of the new OpenAPI specification file to generate. If not specified or empty, no spec file will be generated.\n * @param adaptiveCardFolder Folder path where the Adaptive Card files will be generated. If not specified or empty, Adaptive Card files will not be generated.\n */\n // eslint-disable-next-line @typescript-eslint/require-await\n async generate(\n manifestPath: string,\n filter: string[],\n outputSpecPath: string,\n adaptiveCardFolder: string,\n signal?: AbortSignal\n ): Promise<GenerateResult> {\n throw new Error(\"Method not implemented.\");\n }\n\n private async loadSpec(): Promise<void> {\n if (!this.spec) {\n this.unResolveSpec = (await this.parser.parse(this.pathOrSpec)) as OpenAPIV3.Document;\n if (!this.unResolveSpec.openapi && (this.unResolveSpec as any).swagger === \"2.0\") {\n this.isSwaggerFile = true;\n }\n\n const clonedUnResolveSpec = JSON.parse(JSON.stringify(this.unResolveSpec));\n this.spec = (await this.parser.dereference(clonedUnResolveSpec)) as OpenAPIV3.Document;\n }\n }\n\n private getAllSupportedAPIs(spec: OpenAPIV3.Document): {\n [key: string]: OpenAPIV3.OperationObject;\n } {\n if (this.apiMap !== undefined) {\n return this.apiMap;\n }\n const result = Utils.listSupportedAPIs(\n spec,\n this.options.allowMissingId,\n this.options.allowAPIKeyAuth,\n this.options.allowMultipleParameters,\n this.options.allowOauth2\n );\n this.apiMap = result;\n return result;\n }\n}\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.esm2017.js","sources":["../src/interfaces.ts","../src/specParserError.ts","../src/constants.ts","../src/utils.ts","../src/specParser.browser.ts","../src/adaptiveCardGenerator.ts"],"sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n\"use strict\";\n\nimport { OpenAPIV3 } from \"openapi-types\";\n\n/**\n * An interface that represents the result of validating an OpenAPI specification file.\n */\nexport interface ValidateResult {\n /**\n * The validation status of the OpenAPI specification file.\n */\n status: ValidationStatus;\n\n /**\n * An array of warning results generated during validation.\n */\n warnings: WarningResult[];\n\n /**\n * An array of error results generated during validation.\n */\n errors: ErrorResult[];\n}\n\n/**\n * An interface that represents a warning result generated during validation.\n */\nexport interface WarningResult {\n /**\n * The type of warning.\n */\n type: WarningType;\n\n /**\n * The content of the warning.\n */\n content: string;\n\n /**\n * data of the warning.\n */\n data?: any;\n}\n\n/**\n * An interface that represents an error result generated during validation.\n */\nexport interface ErrorResult {\n /**\n * The type of error.\n */\n type: ErrorType;\n\n /**\n * The content of the error.\n */\n content: string;\n\n /**\n * data of the error.\n */\n data?: any;\n}\n\nexport interface GenerateResult {\n allSuccess: boolean;\n warnings: WarningResult[];\n}\n\n/**\n * An enum that represents the types of errors that can occur during validation.\n */\nexport enum ErrorType {\n SpecNotValid = \"spec-not-valid\",\n RemoteRefNotSupported = \"remote-ref-not-supported\",\n NoServerInformation = \"no-server-information\",\n UrlProtocolNotSupported = \"url-protocol-not-supported\",\n RelativeServerUrlNotSupported = \"relative-server-url-not-supported\",\n NoSupportedApi = \"no-supported-api\",\n NoExtraAPICanBeAdded = \"no-extra-api-can-be-added\",\n ResolveServerUrlFailed = \"resolve-server-url-failed\",\n SwaggerNotSupported = \"swagger-not-supported\",\n MultipleAPIKeyNotSupported = \"multiple-api-key-not-supported\",\n\n ListFailed = \"list-failed\",\n listSupportedAPIInfoFailed = \"list-supported-api-info-failed\",\n FilterSpecFailed = \"filter-spec-failed\",\n UpdateManifestFailed = \"update-manifest-failed\",\n GenerateAdaptiveCardFailed = \"generate-adaptive-card-failed\",\n GenerateFailed = \"generate-failed\",\n ValidateFailed = \"validate-failed\",\n GetSpecFailed = \"get-spec-failed\",\n\n Cancelled = \"cancelled\",\n Unknown = \"unknown\",\n}\n\n/**\n * An enum that represents the types of warnings that can occur during validation.\n */\nexport enum WarningType {\n OperationIdMissing = \"operationid-missing\",\n GenerateCardFailed = \"generate-card-failed\",\n OperationOnlyContainsOptionalParam = \"operation-only-contains-optional-param\",\n ConvertSwaggerToOpenAPI = \"convert-swagger-to-openapi\",\n Unknown = \"unknown\",\n}\n\n/**\n * An enum that represents the validation status of an OpenAPI specification file.\n */\nexport enum ValidationStatus {\n Valid,\n Warning, // If there are any warnings, the file is still valid\n Error, // If there are any errors, the file is not valid\n}\n\nexport interface TextBlockElement {\n type: string;\n text: string;\n wrap: boolean;\n}\n\nexport interface ImageElement {\n type: string;\n url: string;\n $when: string;\n}\n\nexport interface ArrayElement {\n type: string;\n $data: string;\n items: Array<TextBlockElement | ImageElement | ArrayElement>;\n}\n\nexport interface AdaptiveCard {\n type: string;\n $schema: string;\n version: string;\n body: Array<TextBlockElement | ImageElement | ArrayElement>;\n}\n\nexport interface PreviewCardTemplate {\n title: string;\n subtitle?: string;\n image?: {\n url: string;\n alt?: string;\n $when?: string;\n };\n}\n\nexport interface WrappedAdaptiveCard {\n version: string;\n $schema?: string;\n jsonPath?: string;\n responseLayout: string;\n responseCardTemplate: AdaptiveCard;\n previewCardTemplate: PreviewCardTemplate;\n}\n\nexport interface ChoicesItem {\n title: string;\n value: string;\n}\n\nexport interface Parameter {\n name: string;\n title: string;\n description: string;\n inputType?: \"text\" | \"textarea\" | \"number\" | \"date\" | \"time\" | \"toggle\" | \"choiceset\";\n value?: string;\n choices?: ChoicesItem[];\n}\n\nexport interface CheckParamResult {\n requiredNum: number;\n optionalNum: number;\n isValid: boolean;\n}\n\nexport interface ParseOptions {\n allowMissingId?: boolean;\n allowSwagger?: boolean;\n allowAPIKeyAuth?: boolean;\n allowMultipleParameters?: boolean;\n allowOauth2?: boolean;\n}\n\nexport interface APIInfo {\n method: string;\n path: string;\n title: string;\n id: string;\n parameters: Parameter[];\n description: string;\n warning?: WarningResult;\n}\n\nexport interface ListAPIResult {\n api: string;\n server: string;\n operationId: string;\n auth?: OpenAPIV3.SecuritySchemeObject;\n}\n\nexport interface AuthSchema {\n authSchema: OpenAPIV3.SecuritySchemeObject;\n name: string;\n}\n","// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n\"use strict\";\n\nimport { ErrorType } from \"./interfaces\";\n\nexport class SpecParserError extends Error {\n public readonly errorType: ErrorType;\n\n constructor(message: string, errorType: ErrorType) {\n super(message);\n this.errorType = errorType;\n }\n}\n","// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n\"use strict\";\n\nexport class ConstantString {\n static readonly CancelledMessage = \"Operation is cancelled.\";\n static readonly NoServerInformation =\n \"No server information is found in the OpenAPI description document.\";\n static readonly RemoteRefNotSupported = \"Remote reference is not supported: %s.\";\n static readonly MissingOperationId = \"Missing operationIds: %s.\";\n static readonly NoSupportedApi =\n \"No supported API is found in the OpenAPI description document: only GET and POST methods are supported, additionally, there can be at most one required parameter, and no auth is allowed.\";\n\n static readonly AdditionalPropertiesNotSupported =\n \"'additionalProperties' is not supported, and will be ignored.\";\n static readonly SchemaNotSupported = \"'oneOf', 'anyOf', and 'not' schema are not supported: %s.\";\n static readonly UnknownSchema = \"Unknown schema: %s.\";\n\n static readonly UrlProtocolNotSupported =\n \"Server url is not correct: protocol %s is not supported, you should use https protocol instead.\";\n static readonly RelativeServerUrlNotSupported =\n \"Server url is not correct: relative server url is not supported.\";\n static readonly ResolveServerUrlFailed =\n \"Unable to resolve the server URL: please make sure that the environment variable %s is defined.\";\n static readonly OperationOnlyContainsOptionalParam =\n \"Operation %s contains multiple optional parameters. The first optional parameter is used for this command.\";\n static readonly ConvertSwaggerToOpenAPI =\n \"The Swagger 2.0 file has been converted to OpenAPI 3.0.\";\n\n static readonly SwaggerNotSupported =\n \"Swagger 2.0 is not supported. Please convert to OpenAPI 3.0 manually before proceeding.\";\n\n static readonly MultipleAPIKeyNotSupported =\n \"Multiple API keys are not supported. Please make sure that all selected APIs use the same API key.\";\n\n static readonly WrappedCardVersion = \"devPreview\";\n static readonly WrappedCardSchema =\n \"https://developer.microsoft.com/json-schemas/teams/vDevPreview/MicrosoftTeams.ResponseRenderingTemplate.schema.json\";\n static readonly WrappedCardResponseLayout = \"list\";\n\n static readonly GetMethod = \"get\";\n static readonly PostMethod = \"post\";\n static readonly AdaptiveCardVersion = \"1.5\";\n static readonly AdaptiveCardSchema = \"http://adaptivecards.io/schemas/adaptive-card.json\";\n static readonly AdaptiveCardType = \"AdaptiveCard\";\n static readonly TextBlockType = \"TextBlock\";\n static readonly ContainerType = \"Container\";\n static readonly RegistrationIdPostfix = \"REGISTRATION_ID\";\n static readonly ResponseCodeFor20X = [\n \"200\",\n \"201\",\n \"202\",\n \"203\",\n \"204\",\n \"205\",\n \"206\",\n \"207\",\n \"208\",\n \"226\",\n \"default\",\n ];\n static readonly AllOperationMethods = [\n \"get\",\n \"post\",\n \"put\",\n \"delete\",\n \"patch\",\n \"head\",\n \"options\",\n \"trace\",\n ];\n\n // TODO: update after investigating the usage of these constants.\n static readonly WellknownResultNames = [\n \"result\",\n \"data\",\n \"items\",\n \"root\",\n \"matches\",\n \"queries\",\n \"list\",\n \"output\",\n ];\n static readonly WellknownTitleName = [\"title\", \"name\", \"summary\", \"caption\", \"subject\", \"label\"];\n static readonly WellknownSubtitleName = [\n \"subtitle\",\n \"id\",\n \"uid\",\n \"description\",\n \"desc\",\n \"detail\",\n ];\n static readonly WellknownImageName = [\n \"image\",\n \"icon\",\n \"avatar\",\n \"picture\",\n \"photo\",\n \"logo\",\n \"pic\",\n \"thumbnail\",\n \"img\",\n ];\n\n static readonly ShortDescriptionMaxLens = 80;\n static readonly FullDescriptionMaxLens = 4000;\n static readonly CommandDescriptionMaxLens = 128;\n static readonly ParameterDescriptionMaxLens = 128;\n static readonly CommandTitleMaxLens = 32;\n static readonly ParameterTitleMaxLens = 32;\n}\n","// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n\"use strict\";\n\nimport { OpenAPIV3 } from \"openapi-types\";\nimport SwaggerParser from \"@apidevtools/swagger-parser\";\nimport { ConstantString } from \"./constants\";\nimport {\n AuthSchema,\n CheckParamResult,\n ErrorResult,\n ErrorType,\n Parameter,\n ValidateResult,\n ValidationStatus,\n WarningResult,\n WarningType,\n} from \"./interfaces\";\nimport { IMessagingExtensionCommand } from \"@microsoft/teams-manifest\";\n\nexport class Utils {\n static checkParameters(paramObject: OpenAPIV3.ParameterObject[]): CheckParamResult {\n const paramResult = {\n requiredNum: 0,\n optionalNum: 0,\n isValid: true,\n };\n\n if (!paramObject) {\n return paramResult;\n }\n\n for (let i = 0; i < paramObject.length; i++) {\n const param = paramObject[i];\n const schema = param.schema as OpenAPIV3.SchemaObject;\n const isRequiredWithoutDefault = param.required && schema.default === undefined;\n\n if (param.in === \"header\" || param.in === \"cookie\") {\n if (isRequiredWithoutDefault) {\n paramResult.isValid = false;\n }\n continue;\n }\n\n if (\n schema.type !== \"boolean\" &&\n schema.type !== \"string\" &&\n schema.type !== \"number\" &&\n schema.type !== \"integer\"\n ) {\n if (isRequiredWithoutDefault) {\n paramResult.isValid = false;\n }\n continue;\n }\n\n if (param.in === \"query\" || param.in === \"path\") {\n if (isRequiredWithoutDefault) {\n paramResult.requiredNum = paramResult.requiredNum + 1;\n } else {\n paramResult.optionalNum = paramResult.optionalNum + 1;\n }\n }\n }\n\n return paramResult;\n }\n\n static checkPostBody(schema: OpenAPIV3.SchemaObject, isRequired = false): CheckParamResult {\n const paramResult = {\n requiredNum: 0,\n optionalNum: 0,\n isValid: true,\n };\n\n if (Object.keys(schema).length === 0) {\n return paramResult;\n }\n\n const isRequiredWithoutDefault = isRequired && schema.default === undefined;\n\n if (\n schema.type === \"string\" ||\n schema.type === \"integer\" ||\n schema.type === \"boolean\" ||\n schema.type === \"number\"\n ) {\n if (isRequiredWithoutDefault) {\n paramResult.requiredNum = paramResult.requiredNum + 1;\n } else {\n paramResult.optionalNum = paramResult.optionalNum + 1;\n }\n } else if (schema.type === \"object\") {\n const { properties } = schema;\n for (const property in properties) {\n let isRequired = false;\n if (schema.required && schema.required?.indexOf(property) >= 0) {\n isRequired = true;\n }\n const result = Utils.checkPostBody(\n properties[property] as OpenAPIV3.SchemaObject,\n isRequired\n );\n paramResult.requiredNum += result.requiredNum;\n paramResult.optionalNum += result.optionalNum;\n paramResult.isValid = paramResult.isValid && result.isValid;\n }\n } else {\n if (isRequiredWithoutDefault) {\n paramResult.isValid = false;\n }\n }\n return paramResult;\n }\n\n /**\n * Checks if the given API is supported.\n * @param {string} method - The HTTP method of the API.\n * @param {string} path - The path of the API.\n * @param {OpenAPIV3.Document} spec - The OpenAPI specification document.\n * @returns {boolean} - Returns true if the API is supported, false otherwise.\n * @description The following APIs are supported:\n * 1. only support Get/Post operation without auth property\n * 2. parameter inside query or path only support string, number, boolean and integer\n * 3. parameter inside post body only support string, number, boolean, integer and object\n * 4. request body + required parameters <= 1\n * 5. response body should be “application/json” and not empty, and response code should be 20X\n * 6. only support request body with “application/json” content type\n */\n static isSupportedApi(\n method: string,\n path: string,\n spec: OpenAPIV3.Document,\n allowMissingId: boolean,\n allowAPIKeyAuth: boolean,\n allowMultipleParameters: boolean,\n allowOauth2: boolean\n ): boolean {\n const pathObj = spec.paths[path];\n method = method.toLocaleLowerCase();\n if (pathObj) {\n if (\n (method === ConstantString.PostMethod || method === ConstantString.GetMethod) &&\n pathObj[method]\n ) {\n const securities = pathObj[method]!.security;\n const authArray = Utils.getAuthArray(securities, spec);\n if (!Utils.isSupportedAuth(authArray, allowAPIKeyAuth, allowOauth2)) {\n return false;\n }\n\n const operationObject = pathObj[method] as OpenAPIV3.OperationObject;\n if (!allowMissingId && !operationObject.operationId) {\n return false;\n }\n const paramObject = operationObject.parameters as OpenAPIV3.ParameterObject[];\n\n const requestBody = operationObject.requestBody as OpenAPIV3.RequestBodyObject;\n const requestJsonBody = requestBody?.content[\"application/json\"];\n\n const mediaTypesCount = Object.keys(requestBody?.content || {}).length;\n if (mediaTypesCount > 1) {\n return false;\n }\n\n const responseJson = Utils.getResponseJson(operationObject);\n if (Object.keys(responseJson).length === 0) {\n return false;\n }\n\n let requestBodyParamResult = {\n requiredNum: 0,\n optionalNum: 0,\n isValid: true,\n };\n\n if (requestJsonBody) {\n const requestBodySchema = requestJsonBody.schema as OpenAPIV3.SchemaObject;\n requestBodyParamResult = Utils.checkPostBody(requestBodySchema, requestBody.required);\n }\n\n if (!requestBodyParamResult.isValid) {\n return false;\n }\n\n const paramResult = Utils.checkParameters(paramObject);\n\n if (!paramResult.isValid) {\n return false;\n }\n\n if (requestBodyParamResult.requiredNum + paramResult.requiredNum > 1) {\n if (\n allowMultipleParameters &&\n requestBodyParamResult.requiredNum + paramResult.requiredNum <= 5\n ) {\n return true;\n }\n return false;\n } else if (\n requestBodyParamResult.requiredNum +\n requestBodyParamResult.optionalNum +\n paramResult.requiredNum +\n paramResult.optionalNum ===\n 0\n ) {\n return false;\n } else {\n return true;\n }\n }\n }\n\n return false;\n }\n\n static isSupportedAuth(\n authSchemaArray: AuthSchema[][],\n allowAPIKeyAuth: boolean,\n allowOauth2: boolean\n ): boolean {\n if (authSchemaArray.length === 0) {\n return true;\n }\n\n if (allowAPIKeyAuth || allowOauth2) {\n // Currently we don't support multiple auth in one operation\n if (authSchemaArray.length > 0 && authSchemaArray.every((auths) => auths.length > 1)) {\n return false;\n }\n\n for (const auths of authSchemaArray) {\n if (auths.length === 1) {\n if (!allowOauth2 && allowAPIKeyAuth && Utils.isAPIKeyAuth(auths[0].authSchema)) {\n return true;\n } else if (\n !allowAPIKeyAuth &&\n allowOauth2 &&\n Utils.isBearerTokenAuth(auths[0].authSchema)\n ) {\n return true;\n } else if (\n allowAPIKeyAuth &&\n allowOauth2 &&\n (Utils.isAPIKeyAuth(auths[0].authSchema) ||\n Utils.isBearerTokenAuth(auths[0].authSchema))\n ) {\n return true;\n }\n }\n }\n }\n\n return false;\n }\n\n static isAPIKeyAuth(authSchema: OpenAPIV3.SecuritySchemeObject): boolean {\n return authSchema.type === \"apiKey\";\n }\n\n static isBearerTokenAuth(authSchema: OpenAPIV3.SecuritySchemeObject): boolean {\n return (\n authSchema.type === \"oauth2\" ||\n authSchema.type === \"openIdConnect\" ||\n (authSchema.type === \"http\" && authSchema.scheme === \"bearer\")\n );\n }\n\n static getAuthArray(\n securities: OpenAPIV3.SecurityRequirementObject[] | undefined,\n spec: OpenAPIV3.Document\n ): AuthSchema[][] {\n const result: AuthSchema[][] = [];\n const securitySchemas = spec.components?.securitySchemes;\n if (securities && securitySchemas) {\n for (let i = 0; i < securities.length; i++) {\n const security = securities[i];\n\n const authArray: AuthSchema[] = [];\n for (const name in security) {\n const auth = securitySchemas[name] as OpenAPIV3.SecuritySchemeObject;\n authArray.push({\n authSchema: auth,\n name: name,\n });\n }\n\n if (authArray.length > 0) {\n result.push(authArray);\n }\n }\n }\n\n result.sort((a, b) => a[0].name.localeCompare(b[0].name));\n\n return result;\n }\n\n static updateFirstLetter(str: string): string {\n return str.charAt(0).toUpperCase() + str.slice(1);\n }\n\n static getResponseJson(\n operationObject: OpenAPIV3.OperationObject | undefined\n ): OpenAPIV3.MediaTypeObject {\n let json: OpenAPIV3.MediaTypeObject = {};\n\n for (const code of ConstantString.ResponseCodeFor20X) {\n const responseObject = operationObject?.responses?.[code] as OpenAPIV3.ResponseObject;\n\n const mediaTypesCount = Object.keys(responseObject?.content || {}).length;\n if (mediaTypesCount > 1) {\n return {};\n }\n\n if (responseObject?.content?.[\"application/json\"]) {\n json = responseObject.content[\"application/json\"];\n break;\n }\n }\n\n return json;\n }\n\n static convertPathToCamelCase(path: string): string {\n const pathSegments = path.split(/[./{]/);\n const camelCaseSegments = pathSegments.map((segment) => {\n segment = segment.replace(/}/g, \"\");\n return segment.charAt(0).toUpperCase() + segment.slice(1);\n });\n const camelCasePath = camelCaseSegments.join(\"\");\n return camelCasePath;\n }\n\n static getUrlProtocol(urlString: string): string | undefined {\n try {\n const url = new URL(urlString);\n return url.protocol;\n } catch (err) {\n return undefined;\n }\n }\n\n static resolveServerUrl(url: string): string {\n const placeHolderReg = /\\${{\\s*([a-zA-Z_][a-zA-Z0-9_]*)\\s*}}/g;\n let matches = placeHolderReg.exec(url);\n let newUrl = url;\n while (matches != null) {\n const envVar = matches[1];\n const envVal = process.env[envVar];\n if (!envVal) {\n throw new Error(Utils.format(ConstantString.ResolveServerUrlFailed, envVar));\n } else {\n newUrl = newUrl.replace(matches[0], envVal);\n }\n matches = placeHolderReg.exec(url);\n }\n return newUrl;\n }\n\n static checkServerUrl(servers: OpenAPIV3.ServerObject[]): ErrorResult[] {\n const errors: ErrorResult[] = [];\n\n let serverUrl;\n try {\n serverUrl = Utils.resolveServerUrl(servers[0].url);\n } catch (err) {\n errors.push({\n type: ErrorType.ResolveServerUrlFailed,\n content: (err as Error).message,\n data: servers,\n });\n return errors;\n }\n\n const protocol = Utils.getUrlProtocol(serverUrl);\n if (!protocol) {\n // Relative server url is not supported\n errors.push({\n type: ErrorType.RelativeServerUrlNotSupported,\n content: ConstantString.RelativeServerUrlNotSupported,\n data: servers,\n });\n } else if (protocol !== \"https:\") {\n // Http server url is not supported\n const protocolString = protocol.slice(0, -1);\n errors.push({\n type: ErrorType.UrlProtocolNotSupported,\n content: Utils.format(ConstantString.UrlProtocolNotSupported, protocol.slice(0, -1)),\n data: protocolString,\n });\n }\n\n return errors;\n }\n\n static validateServer(\n spec: OpenAPIV3.Document,\n allowMissingId: boolean,\n allowAPIKeyAuth: boolean,\n allowMultipleParameters: boolean,\n allowOauth2: boolean\n ): ErrorResult[] {\n const errors: ErrorResult[] = [];\n\n let hasTopLevelServers = false;\n let hasPathLevelServers = false;\n let hasOperationLevelServers = false;\n\n if (spec.servers && spec.servers.length >= 1) {\n hasTopLevelServers = true;\n\n // for multiple server, we only use the first url\n const serverErrors = Utils.checkServerUrl(spec.servers);\n errors.push(...serverErrors);\n }\n\n const paths = spec.paths;\n for (const path in paths) {\n const methods = paths[path];\n\n if (methods?.servers && methods.servers.length >= 1) {\n hasPathLevelServers = true;\n const serverErrors = Utils.checkServerUrl(methods.servers);\n errors.push(...serverErrors);\n }\n\n for (const method in methods) {\n const operationObject = (methods as any)[method] as OpenAPIV3.OperationObject;\n if (\n Utils.isSupportedApi(\n method,\n path,\n spec,\n allowMissingId,\n allowAPIKeyAuth,\n allowMultipleParameters,\n allowOauth2\n )\n ) {\n if (operationObject?.servers && operationObject.servers.length >= 1) {\n hasOperationLevelServers = true;\n const serverErrors = Utils.checkServerUrl(operationObject.servers);\n errors.push(...serverErrors);\n }\n }\n }\n }\n if (!hasTopLevelServers && !hasPathLevelServers && !hasOperationLevelServers) {\n errors.push({\n type: ErrorType.NoServerInformation,\n content: ConstantString.NoServerInformation,\n });\n }\n return errors;\n }\n\n static isWellKnownName(name: string, wellknownNameList: string[]): boolean {\n for (let i = 0; i < wellknownNameList.length; i++) {\n name = name.replace(/_/g, \"\").replace(/-/g, \"\");\n if (name.toLowerCase().includes(wellknownNameList[i])) {\n return true;\n }\n }\n return false;\n }\n\n static generateParametersFromSchema(\n schema: OpenAPIV3.SchemaObject,\n name: string,\n allowMultipleParameters: boolean,\n isRequired = false\n ): [Parameter[], Parameter[]] {\n const requiredParams: Parameter[] = [];\n const optionalParams: Parameter[] = [];\n\n if (\n schema.type === \"string\" ||\n schema.type === \"integer\" ||\n schema.type === \"boolean\" ||\n schema.type === \"number\"\n ) {\n const parameter = {\n name: name,\n title: Utils.updateFirstLetter(name).slice(0, ConstantString.ParameterTitleMaxLens),\n description: (schema.description ?? \"\").slice(\n 0,\n ConstantString.ParameterDescriptionMaxLens\n ),\n };\n\n if (allowMultipleParameters) {\n Utils.updateParameterWithInputType(schema, parameter);\n }\n\n if (isRequired && schema.default === undefined) {\n requiredParams.push(parameter);\n } else {\n optionalParams.push(parameter);\n }\n } else if (schema.type === \"object\") {\n const { properties } = schema;\n for (const property in properties) {\n let isRequired = false;\n if (schema.required && schema.required?.indexOf(property) >= 0) {\n isRequired = true;\n }\n const [requiredP, optionalP] = Utils.generateParametersFromSchema(\n properties[property] as OpenAPIV3.SchemaObject,\n property,\n allowMultipleParameters,\n isRequired\n );\n\n requiredParams.push(...requiredP);\n optionalParams.push(...optionalP);\n }\n }\n\n return [requiredParams, optionalParams];\n }\n\n static updateParameterWithInputType(schema: OpenAPIV3.SchemaObject, param: Parameter): void {\n if (schema.enum) {\n param.inputType = \"choiceset\";\n param.choices = [];\n for (let i = 0; i < schema.enum.length; i++) {\n param.choices.push({\n title: schema.enum[i],\n value: schema.enum[i],\n });\n }\n } else if (schema.type === \"string\") {\n param.inputType = \"text\";\n } else if (schema.type === \"integer\" || schema.type === \"number\") {\n param.inputType = \"number\";\n } else if (schema.type === \"boolean\") {\n param.inputType = \"toggle\";\n }\n\n if (schema.default) {\n param.value = schema.default;\n }\n }\n\n static parseApiInfo(\n operationItem: OpenAPIV3.OperationObject,\n allowMultipleParameters: boolean\n ): [IMessagingExtensionCommand, WarningResult | undefined] {\n const requiredParams: Parameter[] = [];\n const optionalParams: Parameter[] = [];\n const paramObject = operationItem.parameters as OpenAPIV3.ParameterObject[];\n\n if (paramObject) {\n paramObject.forEach((param: OpenAPIV3.ParameterObject) => {\n const parameter: Parameter = {\n name: param.name,\n title: Utils.updateFirstLetter(param.name).slice(0, ConstantString.ParameterTitleMaxLens),\n description: (param.description ?? \"\").slice(\n 0,\n ConstantString.ParameterDescriptionMaxLens\n ),\n };\n\n const schema = param.schema as OpenAPIV3.SchemaObject;\n if (allowMultipleParameters && schema) {\n Utils.updateParameterWithInputType(schema, parameter);\n }\n\n if (param.in !== \"header\" && param.in !== \"cookie\") {\n if (param.required && schema?.default === undefined) {\n requiredParams.push(parameter);\n } else {\n optionalParams.push(parameter);\n }\n }\n });\n }\n\n if (operationItem.requestBody) {\n const requestBody = operationItem.requestBody as OpenAPIV3.RequestBodyObject;\n const requestJson = requestBody.content[\"application/json\"];\n if (Object.keys(requestJson).length !== 0) {\n const schema = requestJson.schema as OpenAPIV3.SchemaObject;\n const [requiredP, optionalP] = Utils.generateParametersFromSchema(\n schema,\n \"requestBody\",\n allowMultipleParameters,\n requestBody.required\n );\n requiredParams.push(...requiredP);\n optionalParams.push(...optionalP);\n }\n }\n\n const operationId = operationItem.operationId!;\n\n const parameters = [];\n\n if (requiredParams.length !== 0) {\n parameters.push(...requiredParams);\n } else {\n parameters.push(optionalParams[0]);\n }\n\n const command: IMessagingExtensionCommand = {\n context: [\"compose\"],\n type: \"query\",\n title: (operationItem.summary ?? \"\").slice(0, ConstantString.CommandTitleMaxLens),\n id: operationId,\n parameters: parameters,\n description: (operationItem.description ?? \"\").slice(\n 0,\n ConstantString.CommandDescriptionMaxLens\n ),\n };\n let warning: WarningResult | undefined = undefined;\n\n if (requiredParams.length === 0 && optionalParams.length > 1) {\n warning = {\n type: WarningType.OperationOnlyContainsOptionalParam,\n content: Utils.format(ConstantString.OperationOnlyContainsOptionalParam, operationId),\n data: operationId,\n };\n }\n return [command, warning];\n }\n\n static listSupportedAPIs(\n spec: OpenAPIV3.Document,\n allowMissingId: boolean,\n allowAPIKeyAuth: boolean,\n allowMultipleParameters: boolean,\n allowOauth2: boolean\n ): {\n [key: string]: OpenAPIV3.OperationObject;\n } {\n const paths = spec.paths;\n const result: { [key: string]: OpenAPIV3.OperationObject } = {};\n for (const path in paths) {\n const methods = paths[path];\n for (const method in methods) {\n // For developer preview, only support GET operation with only 1 parameter without auth\n if (\n Utils.isSupportedApi(\n method,\n path,\n spec,\n allowMissingId,\n allowAPIKeyAuth,\n allowMultipleParameters,\n allowOauth2\n )\n ) {\n const operationObject = (methods as any)[method] as OpenAPIV3.OperationObject;\n result[`${method.toUpperCase()} ${path}`] = operationObject;\n }\n }\n }\n return result;\n }\n\n static validateSpec(\n spec: OpenAPIV3.Document,\n parser: SwaggerParser,\n isSwaggerFile: boolean,\n allowMissingId: boolean,\n allowAPIKeyAuth: boolean,\n allowMultipleParameters: boolean,\n allowOauth2: boolean\n ): ValidateResult {\n const errors: ErrorResult[] = [];\n const warnings: WarningResult[] = [];\n\n if (isSwaggerFile) {\n warnings.push({\n type: WarningType.ConvertSwaggerToOpenAPI,\n content: ConstantString.ConvertSwaggerToOpenAPI,\n });\n }\n\n // Server validation\n const serverErrors = Utils.validateServer(\n spec,\n allowMissingId,\n allowAPIKeyAuth,\n allowMultipleParameters,\n allowOauth2\n );\n errors.push(...serverErrors);\n\n // Remote reference not supported\n const refPaths = parser.$refs.paths();\n\n // refPaths [0] is the current spec file path\n if (refPaths.length > 1) {\n errors.push({\n type: ErrorType.RemoteRefNotSupported,\n content: Utils.format(ConstantString.RemoteRefNotSupported, refPaths.join(\", \")),\n data: refPaths,\n });\n }\n\n // No supported API\n const apiMap = Utils.listSupportedAPIs(\n spec,\n allowMissingId,\n allowAPIKeyAuth,\n allowMultipleParameters,\n allowOauth2\n );\n if (Object.keys(apiMap).length === 0) {\n errors.push({\n type: ErrorType.NoSupportedApi,\n content: ConstantString.NoSupportedApi,\n });\n }\n\n // OperationId missing\n const apisMissingOperationId: string[] = [];\n for (const key in apiMap) {\n const pathObjectItem = apiMap[key];\n if (!pathObjectItem.operationId) {\n apisMissingOperationId.push(key);\n }\n }\n\n if (apisMissingOperationId.length > 0) {\n warnings.push({\n type: WarningType.OperationIdMissing,\n content: Utils.format(ConstantString.MissingOperationId, apisMissingOperationId.join(\", \")),\n data: apisMissingOperationId,\n });\n }\n\n let status = ValidationStatus.Valid;\n if (warnings.length > 0 && errors.length === 0) {\n status = ValidationStatus.Warning;\n } else if (errors.length > 0) {\n status = ValidationStatus.Error;\n }\n\n return {\n status,\n warnings,\n errors,\n };\n }\n\n static format(str: string, ...args: string[]): string {\n let index = 0;\n return str.replace(/%s/g, () => {\n const arg = args[index++];\n return arg !== undefined ? arg : \"\";\n });\n }\n\n static getSafeRegistrationIdEnvName(authName: string): string {\n if (!authName) {\n return \"\";\n }\n\n let safeRegistrationIdEnvName = authName.toUpperCase().replace(/[^A-Z0-9_]/g, \"_\");\n\n if (!safeRegistrationIdEnvName.match(/^[A-Z]/)) {\n safeRegistrationIdEnvName = \"PREFIX_\" + safeRegistrationIdEnvName;\n }\n\n return safeRegistrationIdEnvName;\n }\n}\n","// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n\"use strict\";\n\nimport SwaggerParser from \"@apidevtools/swagger-parser\";\nimport { OpenAPIV3 } from \"openapi-types\";\nimport {\n APIInfo,\n ErrorType,\n GenerateResult,\n ParseOptions,\n ValidateResult,\n ValidationStatus,\n Parameter,\n ListAPIResult,\n} from \"./interfaces\";\nimport { SpecParserError } from \"./specParserError\";\nimport { Utils } from \"./utils\";\nimport { ConstantString } from \"./constants\";\n\n/**\n * A class that parses an OpenAPI specification file and provides methods to validate, list, and generate artifacts.\n */\nexport class SpecParser {\n public readonly pathOrSpec: string | OpenAPIV3.Document;\n public readonly parser: SwaggerParser;\n public readonly options: Required<ParseOptions>;\n\n private apiMap: { [key: string]: OpenAPIV3.PathItemObject } | undefined;\n private spec: OpenAPIV3.Document | undefined;\n private unResolveSpec: OpenAPIV3.Document | undefined;\n private isSwaggerFile: boolean | undefined;\n\n private defaultOptions: ParseOptions = {\n allowMissingId: false,\n allowSwagger: false,\n allowAPIKeyAuth: false,\n allowMultipleParameters: false,\n allowOauth2: false,\n };\n\n /**\n * Creates a new instance of the SpecParser class.\n * @param pathOrDoc The path to the OpenAPI specification file or the OpenAPI specification object.\n * @param options The options for parsing the OpenAPI specification file.\n */\n constructor(pathOrDoc: string | OpenAPIV3.Document, options?: ParseOptions) {\n this.pathOrSpec = pathOrDoc;\n this.parser = new SwaggerParser();\n this.options = {\n ...this.defaultOptions,\n ...(options ?? {}),\n } as Required<ParseOptions>;\n }\n\n /**\n * Validates the OpenAPI specification file and returns a validation result.\n *\n * @returns A validation result object that contains information about any errors or warnings in the specification file.\n */\n async validate(): Promise<ValidateResult> {\n try {\n try {\n await this.loadSpec();\n await this.parser.validate(this.spec!, {\n validate: {\n schema: false,\n },\n });\n } catch (e) {\n return {\n status: ValidationStatus.Error,\n warnings: [],\n errors: [{ type: ErrorType.SpecNotValid, content: (e as Error).toString() }],\n };\n }\n\n if (!this.options.allowSwagger && this.isSwaggerFile) {\n return {\n status: ValidationStatus.Error,\n warnings: [],\n errors: [\n { type: ErrorType.SwaggerNotSupported, content: ConstantString.SwaggerNotSupported },\n ],\n };\n }\n\n return Utils.validateSpec(\n this.spec!,\n this.parser,\n !!this.isSwaggerFile,\n this.options.allowMissingId,\n this.options.allowAPIKeyAuth,\n this.options.allowMultipleParameters,\n this.options.allowOauth2\n );\n } catch (err) {\n throw new SpecParserError((err as Error).toString(), ErrorType.ValidateFailed);\n }\n }\n\n async listSupportedAPIInfo(): Promise<APIInfo[]> {\n try {\n await this.loadSpec();\n const apiMap = this.getAllSupportedAPIs(this.spec!);\n const apiInfos: APIInfo[] = [];\n for (const key in apiMap) {\n const pathObjectItem = apiMap[key];\n const [method, path] = key.split(\" \");\n const operationId = pathObjectItem.operationId;\n\n // In Browser environment, this api is by default not support api without operationId\n if (!operationId) {\n continue;\n }\n\n const [command, warning] = Utils.parseApiInfo(\n pathObjectItem,\n this.options.allowMultipleParameters\n );\n\n const apiInfo: APIInfo = {\n method: method,\n path: path,\n title: command.title,\n id: operationId,\n parameters: command.parameters! as Parameter[],\n description: command.description!,\n };\n\n if (warning) {\n apiInfo.warning = warning;\n }\n\n apiInfos.push(apiInfo);\n }\n\n return apiInfos;\n } catch (err) {\n throw new SpecParserError((err as Error).toString(), ErrorType.listSupportedAPIInfoFailed);\n }\n }\n\n /**\n * Lists all the OpenAPI operations in the specification file.\n * @returns A string array that represents the HTTP method and path of each operation, such as ['GET /pets/{petId}', 'GET /user/{userId}']\n * according to copilot plugin spec, only list get and post method without auth\n */\n // eslint-disable-next-line @typescript-eslint/require-await\n async list(): Promise<ListAPIResult[]> {\n throw new Error(\"Method not implemented.\");\n }\n\n /**\n * Generate specs according to the filters.\n * @param filter An array of strings that represent the filters to apply when generating the artifacts. If filter is empty, it would process nothing.\n */\n // eslint-disable-next-line @typescript-eslint/require-await\n async getFilteredSpecs(\n filter: string[],\n signal?: AbortSignal\n ): Promise<[OpenAPIV3.Document, OpenAPIV3.Document]> {\n throw new Error(\"Method not implemented.\");\n }\n\n /**\n * Generates and update artifacts from the OpenAPI specification file. Generate Adaptive Cards, update Teams app manifest, and generate a new OpenAPI specification file.\n * @param manifestPath A file path of the Teams app manifest file to update.\n * @param filter An array of strings that represent the filters to apply when generating the artifacts. If filter is empty, it would process nothing.\n * @param outputSpecPath File path of the new OpenAPI specification file to generate. If not specified or empty, no spec file will be generated.\n * @param adaptiveCardFolder Folder path where the Adaptive Card files will be generated. If not specified or empty, Adaptive Card files will not be generated.\n * @param isMe Boolean that indicates whether the project is an Messaging Extension. For Messaging Extension, composeExtensions will be added in Teams app manifest.\n */\n // eslint-disable-next-line @typescript-eslint/require-await\n async generate(\n manifestPath: string,\n filter: string[],\n outputSpecPath: string,\n adaptiveCardFolder: string,\n signal?: AbortSignal,\n isMe?: boolean\n ): Promise<GenerateResult> {\n throw new Error(\"Method not implemented.\");\n }\n\n private async loadSpec(): Promise<void> {\n if (!this.spec) {\n this.unResolveSpec = (await this.parser.parse(this.pathOrSpec)) as OpenAPIV3.Document;\n if (!this.unResolveSpec.openapi && (this.unResolveSpec as any).swagger === \"2.0\") {\n this.isSwaggerFile = true;\n }\n\n const clonedUnResolveSpec = JSON.parse(JSON.stringify(this.unResolveSpec));\n this.spec = (await this.parser.dereference(clonedUnResolveSpec)) as OpenAPIV3.Document;\n }\n }\n\n private getAllSupportedAPIs(spec: OpenAPIV3.Document): {\n [key: string]: OpenAPIV3.OperationObject;\n } {\n if (this.apiMap !== undefined) {\n return this.apiMap;\n }\n const result = Utils.listSupportedAPIs(\n spec,\n this.options.allowMissingId,\n this.options.allowAPIKeyAuth,\n this.options.allowMultipleParameters,\n this.options.allowOauth2\n );\n this.apiMap = result;\n return result;\n }\n}\n","// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT license.\n\"use strict\";\n\nimport { OpenAPIV3 } from \"openapi-types\";\nimport { Utils } from \"./utils\";\nimport {\n AdaptiveCard,\n ArrayElement,\n ErrorType,\n ImageElement,\n TextBlockElement,\n} from \"./interfaces\";\nimport { ConstantString } from \"./constants\";\nimport { SpecParserError } from \"./specParserError\";\n\nexport class AdaptiveCardGenerator {\n static generateAdaptiveCard(operationItem: OpenAPIV3.OperationObject): [AdaptiveCard, string] {\n try {\n const json = Utils.getResponseJson(operationItem);\n\n let cardBody: Array<TextBlockElement | ImageElement | ArrayElement> = [];\n\n let schema = json.schema as OpenAPIV3.SchemaObject;\n let jsonPath = \"$\";\n if (schema && Object.keys(schema).length > 0) {\n jsonPath = AdaptiveCardGenerator.getResponseJsonPathFromSchema(schema);\n if (jsonPath !== \"$\") {\n schema = schema.properties![jsonPath] as OpenAPIV3.SchemaObject;\n }\n\n cardBody = AdaptiveCardGenerator.generateCardFromResponse(schema, \"\");\n }\n\n // if no schema, try to use example value\n if (cardBody.length === 0 && (json.examples || json.example)) {\n cardBody = [\n {\n type: ConstantString.TextBlockType,\n text: \"${jsonStringify($root)}\",\n wrap: true,\n },\n ];\n }\n\n // if no example value, use default success response\n if (cardBody.length === 0) {\n cardBody = [\n {\n type: ConstantString.TextBlockType,\n text: \"success\",\n wrap: true,\n },\n ];\n }\n\n const fullCard: AdaptiveCard = {\n type: ConstantString.AdaptiveCardType,\n $schema: ConstantString.AdaptiveCardSchema,\n version: ConstantString.AdaptiveCardVersion,\n body: cardBody,\n };\n\n return [fullCard, jsonPath];\n } catch (err) {\n throw new SpecParserError((err as Error).toString(), ErrorType.GenerateAdaptiveCardFailed);\n }\n }\n\n static generateCardFromResponse(\n schema: OpenAPIV3.SchemaObject,\n name: string,\n parentArrayName = \"\"\n ): Array<TextBlockElement | ImageElement | ArrayElement> {\n if (schema.type === \"array\") {\n // schema.items can be arbitrary object: schema { type: array, items: {} }\n if (Object.keys(schema.items).length === 0) {\n return [\n {\n type: ConstantString.TextBlockType,\n text: name ? `${name}: \\${jsonStringify(${name})}` : \"result: ${jsonStringify($root)}\",\n wrap: true,\n },\n ];\n }\n\n const obj = AdaptiveCardGenerator.generateCardFromResponse(\n schema.items as OpenAPIV3.SchemaObject,\n \"\",\n name\n );\n const template = {\n type: ConstantString.ContainerType,\n $data: name ? `\\${${name}}` : \"${$root}\",\n items: Array<TextBlockElement | ImageElement | ArrayElement>(),\n };\n\n template.items.push(...obj);\n return [template];\n }\n // some schema may not contain type but contain properties\n if (schema.type === \"object\" || (!schema.type && schema.properties)) {\n const { properties } = schema;\n const result: Array<TextBlockElement | ImageElement | ArrayElement> = [];\n for (const property in properties) {\n const obj = AdaptiveCardGenerator.generateCardFromResponse(\n properties[property] as OpenAPIV3.SchemaObject,\n name ? `${name}.${property}` : property,\n parentArrayName\n );\n result.push(...obj);\n }\n\n if (schema.additionalProperties) {\n // TODO: better ways to handler warnings.\n console.warn(ConstantString.AdditionalPropertiesNotSupported);\n }\n\n return result;\n }\n if (\n schema.type === \"string\" ||\n schema.type === \"integer\" ||\n schema.type === \"boolean\" ||\n schema.type === \"number\"\n ) {\n if (!AdaptiveCardGenerator.isImageUrlProperty(schema, name, parentArrayName)) {\n // string in root: \"ddd\"\n let text = \"result: ${$root}\";\n if (name) {\n // object { id: \"1\" }\n text = `${name}: \\${if(${name}, ${name}, 'N/A')}`;\n if (parentArrayName) {\n // object types inside array: { tags: [\"id\": 1, \"name\": \"name\"] }\n text = `${parentArrayName}.${text}`;\n }\n } else if (parentArrayName) {\n // string array: photoUrls: [\"1\", \"2\"]\n text = `${parentArrayName}: ` + \"${$data}\";\n }\n\n return [\n {\n type: ConstantString.TextBlockType,\n text,\n wrap: true,\n },\n ];\n } else {\n if (name) {\n return [\n {\n type: \"Image\",\n url: `\\${${name}}`,\n $when: `\\${${name} != null}`,\n },\n ];\n } else {\n return [\n {\n type: \"Image\",\n url: \"${$data}\",\n $when: \"${$data != null}\",\n },\n ];\n }\n }\n }\n\n if (schema.oneOf || schema.anyOf || schema.not || schema.allOf) {\n throw new Error(Utils.format(ConstantString.SchemaNotSupported, JSON.stringify(schema)));\n }\n\n throw new Error(Utils.format(ConstantString.UnknownSchema, JSON.stringify(schema)));\n }\n\n // Find the first array property in the response schema object with the well-known name\n static getResponseJsonPathFromSchema(schema: OpenAPIV3.SchemaObject): string {\n if (schema.type === \"object\" || (!schema.type && schema.properties)) {\n const { properties } = schema;\n for (const property in properties) {\n const schema = properties[property] as OpenAPIV3.SchemaObject;\n if (\n schema.type === \"array\" &&\n Utils.isWellKnownName(property, ConstantString.WellknownResultNames)\n ) {\n return property;\n }\n }\n }\n\n return \"$\";\n }\n\n static isImageUrlProperty(\n schema: OpenAPIV3.NonArraySchemaObject,\n name: string,\n parentArrayName: string\n ): boolean {\n const propertyName = name ? name : parentArrayName;\n return (\n !!propertyName &&\n schema.type === \"string\" &&\n Utils.isWellKnownName(propertyName, ConstantString.WellknownImageName) &&\n (propertyName.toLocaleLowerCase().indexOf(\"url\") >= 0 || schema.format === \"uri\")\n );\n }\n}\n"],"names":[],"mappings":"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"}
@@ -27,6 +27,7 @@ var ErrorType;
27
27
  ErrorType["GenerateAdaptiveCardFailed"] = "generate-adaptive-card-failed";
28
28
  ErrorType["GenerateFailed"] = "generate-failed";
29
29
  ErrorType["ValidateFailed"] = "validate-failed";
30
+ ErrorType["GetSpecFailed"] = "get-spec-failed";
30
31
  ErrorType["Cancelled"] = "cancelled";
31
32
  ErrorType["Unknown"] = "unknown";
32
33
  })(ErrorType || (ErrorType = {}));
@@ -756,7 +757,7 @@ class SpecFilter {
756
757
 
757
758
  // Copyright (c) Microsoft Corporation.
758
759
  class ManifestUpdater {
759
- static async updateManifest(manifestPath, outputSpecPath, adaptiveCardFolder, spec, allowMultipleParameters, auth) {
760
+ static async updateManifest(manifestPath, outputSpecPath, adaptiveCardFolder, spec, allowMultipleParameters, auth, isMe) {
760
761
  var _a, _b;
761
762
  try {
762
763
  const originalManifest = await fs.readJSON(manifestPath);
@@ -795,7 +796,7 @@ class ManifestUpdater {
795
796
  short: spec.info.title.slice(0, ConstantString.ShortDescriptionMaxLens),
796
797
  full: (_b = ((_a = spec.info.description) !== null && _a !== void 0 ? _a : originalManifest.description.full)) === null || _b === void 0 ? void 0 : _b.slice(0, ConstantString.FullDescriptionMaxLens),
797
798
  };
798
- updatedPart.composeExtensions = [composeExtension];
799
+ updatedPart.composeExtensions = isMe === undefined || isMe === true ? [composeExtension] : [];
799
800
  const updatedManifest = Object.assign(Object.assign({}, originalManifest), updatedPart);
800
801
  return [updatedManifest, warnings];
801
802
  }
@@ -1201,17 +1202,10 @@ class SpecParser {
1201
1202
  }
1202
1203
  }
1203
1204
  /**
1204
- * Generates and update artifacts from the OpenAPI specification file. Generate Adaptive Cards, update Teams app manifest, and generate a new OpenAPI specification file.
1205
- * @param manifestPath A file path of the Teams app manifest file to update.
1205
+ * Generate specs according to the filters.
1206
1206
  * @param filter An array of strings that represent the filters to apply when generating the artifacts. If filter is empty, it would process nothing.
1207
- * @param outputSpecPath File path of the new OpenAPI specification file to generate. If not specified or empty, no spec file will be generated.
1208
- * @param adaptiveCardFolder Folder path where the Adaptive Card files will be generated. If not specified or empty, Adaptive Card files will not be generated.
1209
1207
  */
1210
- async generate(manifestPath, filter, outputSpecPath, adaptiveCardFolder, signal) {
1211
- const result = {
1212
- allSuccess: true,
1213
- warnings: [],
1214
- };
1208
+ async getFilteredSpecs(filter, signal) {
1215
1209
  try {
1216
1210
  if (signal === null || signal === void 0 ? void 0 : signal.aborted) {
1217
1211
  throw new SpecParserError(ConstantString.CancelledMessage, ErrorType.Cancelled);
@@ -1225,6 +1219,32 @@ class SpecParser {
1225
1219
  throw new SpecParserError(ConstantString.CancelledMessage, ErrorType.Cancelled);
1226
1220
  }
1227
1221
  const newSpec = (await this.parser.dereference(newUnResolvedSpec));
1222
+ return [newUnResolvedSpec, newSpec];
1223
+ }
1224
+ catch (err) {
1225
+ if (err instanceof SpecParserError) {
1226
+ throw err;
1227
+ }
1228
+ throw new SpecParserError(err.toString(), ErrorType.GetSpecFailed);
1229
+ }
1230
+ }
1231
+ /**
1232
+ * Generates and update artifacts from the OpenAPI specification file. Generate Adaptive Cards, update Teams app manifest, and generate a new OpenAPI specification file.
1233
+ * @param manifestPath A file path of the Teams app manifest file to update.
1234
+ * @param filter An array of strings that represent the filters to apply when generating the artifacts. If filter is empty, it would process nothing.
1235
+ * @param outputSpecPath File path of the new OpenAPI specification file to generate. If not specified or empty, no spec file will be generated.
1236
+ * @param adaptiveCardFolder Folder path where the Adaptive Card files will be generated. If not specified or empty, Adaptive Card files will not be generated.
1237
+ * @param isMe Boolean that indicates whether the project is an Messaging Extension. For Messaging Extension, composeExtensions will be added in Teams app manifest.
1238
+ */
1239
+ async generate(manifestPath, filter, outputSpecPath, adaptiveCardFolder, signal, isMe) {
1240
+ const result = {
1241
+ allSuccess: true,
1242
+ warnings: [],
1243
+ };
1244
+ try {
1245
+ const newSpecs = await this.getFilteredSpecs(filter, signal);
1246
+ const newUnResolvedSpec = newSpecs[0];
1247
+ const newSpec = newSpecs[1];
1228
1248
  const AuthSet = new Set();
1229
1249
  let hasMultipleAPIKeyAuth = false;
1230
1250
  for (const url in newSpec.paths) {
@@ -1279,7 +1299,7 @@ class SpecParser {
1279
1299
  throw new SpecParserError(ConstantString.CancelledMessage, ErrorType.Cancelled);
1280
1300
  }
1281
1301
  const auth = Array.from(AuthSet)[0];
1282
- const [updatedManifest, warnings] = await ManifestUpdater.updateManifest(manifestPath, outputSpecPath, adaptiveCardFolder, newSpec, this.options.allowMultipleParameters, auth);
1302
+ const [updatedManifest, warnings] = await ManifestUpdater.updateManifest(manifestPath, outputSpecPath, adaptiveCardFolder, newSpec, this.options.allowMultipleParameters, auth, isMe);
1283
1303
  await fs.outputJSON(manifestPath, updatedManifest, { spaces: 2 });
1284
1304
  result.warnings.push(...warnings);
1285
1305
  }
@@ -1314,5 +1334,5 @@ class SpecParser {
1314
1334
  }
1315
1335
  }
1316
1336
 
1317
- export { ConstantString, ErrorType, SpecParser, SpecParserError, Utils, ValidationStatus, WarningType };
1337
+ export { AdaptiveCardGenerator, ConstantString, ErrorType, SpecParser, SpecParserError, Utils, ValidationStatus, WarningType };
1318
1338
  //# sourceMappingURL=index.esm2017.mjs.map