@azure-tools/typespec-ts 0.13.0 → 0.13.1-alpha.20230609.1
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/CHANGELOG.md +8 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +37 -1
- package/dist/src/index.js.map +1 -1
- package/dist/src/modelUtils.d.ts +2 -0
- package/dist/src/modelUtils.d.ts.map +1 -1
- package/dist/src/modelUtils.js +82 -13
- package/dist/src/modelUtils.js.map +1 -1
- package/dist/src/modular/buildApiIndex.d.ts.map +1 -1
- package/dist/src/modular/buildApiIndex.js +1 -1
- package/dist/src/modular/buildApiIndex.js.map +1 -1
- package/dist/src/modular/buildClassicalClient.d.ts.map +1 -1
- package/dist/src/modular/buildClassicalClient.js +6 -6
- package/dist/src/modular/buildClassicalClient.js.map +1 -1
- package/dist/src/modular/buildClientContext.d.ts.map +1 -1
- package/dist/src/modular/buildClientContext.js +9 -3
- package/dist/src/modular/buildClientContext.js.map +1 -1
- package/dist/src/modular/buildCodeModel.d.ts.map +1 -1
- package/dist/src/modular/buildCodeModel.js +190 -169
- package/dist/src/modular/buildCodeModel.js.map +1 -1
- package/dist/src/modular/buildOperations.d.ts.map +1 -1
- package/dist/src/modular/buildOperations.js +20 -2
- package/dist/src/modular/buildOperations.js.map +1 -1
- package/dist/src/modular/buildRootIndex.js +2 -2
- package/dist/src/modular/buildRootIndex.js.map +1 -1
- package/dist/src/modular/buildSharedTypes.d.ts.map +1 -1
- package/dist/src/modular/buildSharedTypes.js +8 -10
- package/dist/src/modular/buildSharedTypes.js.map +1 -1
- package/dist/src/modular/emitModels.d.ts.map +1 -1
- package/dist/src/modular/emitModels.js +19 -6
- package/dist/src/modular/emitModels.js.map +1 -1
- package/dist/src/modular/helpers/clientHelpers.d.ts.map +1 -1
- package/dist/src/modular/helpers/clientHelpers.js +2 -11
- package/dist/src/modular/helpers/clientHelpers.js.map +1 -1
- package/dist/src/modular/helpers/credentialHelpers.js +1 -1
- package/dist/src/modular/helpers/credentialHelpers.js.map +1 -1
- package/dist/src/modular/helpers/fixmeHelpers.d.ts +2 -0
- package/dist/src/modular/helpers/fixmeHelpers.d.ts.map +1 -0
- package/dist/src/modular/helpers/fixmeHelpers.js +4 -0
- package/dist/src/modular/helpers/fixmeHelpers.js.map +1 -0
- package/dist/src/modular/helpers/namingHelpers.d.ts +10 -1
- package/dist/src/modular/helpers/namingHelpers.d.ts.map +1 -1
- package/dist/src/modular/helpers/namingHelpers.js +20 -0
- package/dist/src/modular/helpers/namingHelpers.js.map +1 -1
- package/dist/src/modular/helpers/operationHelpers.d.ts +2 -0
- package/dist/src/modular/helpers/operationHelpers.d.ts.map +1 -1
- package/dist/src/modular/helpers/operationHelpers.js +117 -35
- package/dist/src/modular/helpers/operationHelpers.js.map +1 -1
- package/dist/src/modular/helpers/parameterHelpers.js +1 -1
- package/dist/src/modular/helpers/parameterHelpers.js.map +1 -1
- package/dist/src/modular/helpers/typeHelpers.d.ts.map +1 -1
- package/dist/src/modular/helpers/typeHelpers.js +31 -12
- package/dist/src/modular/helpers/typeHelpers.js.map +1 -1
- package/dist/src/modular/modularCodeModel.d.ts +2 -1
- package/dist/src/modular/modularCodeModel.d.ts.map +1 -1
- package/dist/src/operationUtil.d.ts +1 -1
- package/dist/src/operationUtil.d.ts.map +1 -1
- package/dist/src/operationUtil.js +21 -3
- package/dist/src/operationUtil.js.map +1 -1
- package/dist/src/transform/transform.d.ts.map +1 -1
- package/dist/src/transform/transform.js +2 -2
- package/dist/src/transform/transform.js.map +1 -1
- package/dist/src/transform/transformApiVersionInfo.js +9 -0
- package/dist/src/transform/transformApiVersionInfo.js.map +1 -1
- package/dist/src/transform/transformHelperFunctionDetails.d.ts.map +1 -1
- package/dist/src/transform/transformHelperFunctionDetails.js +27 -1
- package/dist/src/transform/transformHelperFunctionDetails.js.map +1 -1
- package/dist/src/transform/transformParameters.d.ts +1 -0
- package/dist/src/transform/transformParameters.d.ts.map +1 -1
- package/dist/src/transform/transformParameters.js +36 -35
- package/dist/src/transform/transformParameters.js.map +1 -1
- package/dist/src/transform/transformPaths.d.ts.map +1 -1
- package/dist/src/transform/transformPaths.js +9 -0
- package/dist/src/transform/transformPaths.js.map +1 -1
- package/dist/src/transform/transformResponses.d.ts.map +1 -1
- package/dist/src/transform/transformResponses.js +10 -1
- package/dist/src/transform/transformResponses.js.map +1 -1
- package/dist/src/transform/transformSchemas.d.ts.map +1 -1
- package/dist/src/transform/transformSchemas.js +9 -0
- package/dist/src/transform/transformSchemas.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +20 -15
- package/src/index.ts +47 -2
- package/src/modelUtils.ts +90 -15
- package/src/modular/buildApiIndex.ts +3 -1
- package/src/modular/buildClassicalClient.ts +8 -6
- package/src/modular/buildClientContext.ts +11 -3
- package/src/modular/buildCodeModel.ts +221 -196
- package/src/modular/buildOperations.ts +23 -1
- package/src/modular/buildRootIndex.ts +2 -2
- package/src/modular/buildSharedTypes.ts +8 -10
- package/src/modular/emitModels.ts +14 -0
- package/src/modular/helpers/clientHelpers.ts +3 -13
- package/src/modular/helpers/credentialHelpers.ts +1 -1
- package/src/modular/helpers/fixmeHelpers.ts +3 -0
- package/src/modular/helpers/namingHelpers.ts +35 -1
- package/src/modular/helpers/operationHelpers.ts +173 -66
- package/src/modular/helpers/parameterHelpers.ts +1 -1
- package/src/modular/helpers/typeHelpers.ts +33 -12
- package/src/modular/modularCodeModel.ts +3 -1
- package/src/operationUtil.ts +24 -3
- package/src/transform/transform.ts +4 -1
- package/src/transform/transformApiVersionInfo.ts +8 -0
- package/src/transform/transformHelperFunctionDetails.ts +25 -1
- package/src/transform/transformParameters.ts +52 -41
- package/src/transform/transformPaths.ts +8 -0
- package/src/transform/transformResponses.ts +9 -1
- package/src/transform/transformSchemas.ts +8 -0
- package/.eslintrc.json +0 -23
- package/.prettierignore +0 -1
- package/.prettierrc +0 -7
- package/.rush/temp/operation/build/all.log +0 -1
- package/.rush/temp/operation/build/state.json +0 -3
- package/.rush/temp/package-deps_build.json +0 -442
- package/.rush/temp/shrinkwrap-deps.json +0 -490
- package/CONTRIBUTING.md +0 -137
- package/test/commands/cadl-ranch-list.ts +0 -116
- package/test/commands/check-clean-tree.ts +0 -55
- package/test/commands/childProcessOnExit.ts +0 -16
- package/test/commands/gen-cadl-ranch.ts +0 -25
- package/test/commands/run.ts +0 -31
- package/test/integration/arrayItemTypes.spec.ts +0 -96
- package/test/integration/authApiKey.spec.ts +0 -38
- package/test/integration/authOauth2.spec.ts +0 -65
- package/test/integration/authUnion.spec.ts +0 -72
- package/test/integration/azurecore.spec.ts +0 -170
- package/test/integration/collectionFormat.spec.ts +0 -118
- package/test/integration/dictionary.spec.ts +0 -106
- package/test/integration/extensibleEnums.spec.ts +0 -61
- package/test/integration/fixedEnums.spec.ts +0 -52
- package/test/integration/generated/arrays/itemTypes/src/arrayItemTypesClient.ts +0 -35
- package/test/integration/generated/arrays/itemTypes/src/clientDefinitions.ts +0 -165
- package/test/integration/generated/arrays/itemTypes/src/index.ts +0 -13
- package/test/integration/generated/arrays/itemTypes/src/logger.ts +0 -5
- package/test/integration/generated/arrays/itemTypes/src/models.ts +0 -9
- package/test/integration/generated/arrays/itemTypes/src/outputModels.ts +0 -9
- package/test/integration/generated/arrays/itemTypes/src/parameters.ts +0 -86
- package/test/integration/generated/arrays/itemTypes/src/responses.ts +0 -115
- package/test/integration/generated/arrays/itemTypes/tspconfig.yaml +0 -15
- package/test/integration/generated/authentication/apiKey/.eslintrc.json +0 -11
- package/test/integration/generated/authentication/apiKey/README.md +0 -56
- package/test/integration/generated/authentication/apiKey/api-extractor.json +0 -18
- package/test/integration/generated/authentication/apiKey/karma.conf.js +0 -133
- package/test/integration/generated/authentication/apiKey/package.json +0 -103
- package/test/integration/generated/authentication/apiKey/rollup.config.js +0 -118
- package/test/integration/generated/authentication/apiKey/src/authApiKeyClient.ts +0 -45
- package/test/integration/generated/authentication/apiKey/src/clientDefinitions.ts +0 -33
- package/test/integration/generated/authentication/apiKey/src/index.ts +0 -12
- package/test/integration/generated/authentication/apiKey/src/logger.ts +0 -5
- package/test/integration/generated/authentication/apiKey/src/outputModels.ts +0 -6
- package/test/integration/generated/authentication/apiKey/src/parameters.ts +0 -7
- package/test/integration/generated/authentication/apiKey/src/responses.ts +0 -21
- package/test/integration/generated/authentication/apiKey/test/public/sampleTest.spec.ts +0 -23
- package/test/integration/generated/authentication/apiKey/test/public/utils/env.browser.ts +0 -2
- package/test/integration/generated/authentication/apiKey/test/public/utils/env.ts +0 -6
- package/test/integration/generated/authentication/apiKey/test/public/utils/recordedClient.ts +0 -29
- package/test/integration/generated/authentication/apiKey/tsconfig.json +0 -25
- package/test/integration/generated/authentication/apiKey/tspconfig.yaml +0 -13
- package/test/integration/generated/authentication/oauth2/karma.conf.js +0 -133
- package/test/integration/generated/authentication/oauth2/src/authOauth2Client.ts +0 -45
- package/test/integration/generated/authentication/oauth2/src/clientDefinitions.ts +0 -33
- package/test/integration/generated/authentication/oauth2/src/index.ts +0 -12
- package/test/integration/generated/authentication/oauth2/src/logger.ts +0 -5
- package/test/integration/generated/authentication/oauth2/src/outputModels.ts +0 -6
- package/test/integration/generated/authentication/oauth2/src/parameters.ts +0 -7
- package/test/integration/generated/authentication/oauth2/src/responses.ts +0 -21
- package/test/integration/generated/authentication/oauth2/test/public/sampleTest.spec.ts +0 -23
- package/test/integration/generated/authentication/oauth2/test/public/utils/env.browser.ts +0 -2
- package/test/integration/generated/authentication/oauth2/test/public/utils/env.ts +0 -6
- package/test/integration/generated/authentication/oauth2/test/public/utils/recordedClient.ts +0 -29
- package/test/integration/generated/authentication/oauth2/tspconfig.yaml +0 -15
- package/test/integration/generated/authentication/union/karma.conf.js +0 -133
- package/test/integration/generated/authentication/union/src/authUnionClient.ts +0 -46
- package/test/integration/generated/authentication/union/src/clientDefinitions.ts +0 -27
- package/test/integration/generated/authentication/union/src/index.ts +0 -11
- package/test/integration/generated/authentication/union/src/logger.ts +0 -5
- package/test/integration/generated/authentication/union/src/parameters.ts +0 -7
- package/test/integration/generated/authentication/union/src/responses.ts +0 -14
- package/test/integration/generated/authentication/union/test/public/sampleTest.spec.ts +0 -23
- package/test/integration/generated/authentication/union/test/public/utils/env.browser.ts +0 -2
- package/test/integration/generated/authentication/union/test/public/utils/env.ts +0 -6
- package/test/integration/generated/authentication/union/test/public/utils/recordedClient.ts +0 -29
- package/test/integration/generated/authentication/union/tspconfig.yaml +0 -15
- package/test/integration/generated/azure/core/.eslintrc.json +0 -11
- package/test/integration/generated/azure/core/README.md +0 -56
- package/test/integration/generated/azure/core/api-extractor.json +0 -18
- package/test/integration/generated/azure/core/package.json +0 -81
- package/test/integration/generated/azure/core/rollup.config.js +0 -118
- package/test/integration/generated/azure/core/src/azureCoreClient.ts +0 -35
- package/test/integration/generated/azure/core/src/clientDefinitions.ts +0 -108
- package/test/integration/generated/azure/core/src/index.ts +0 -16
- package/test/integration/generated/azure/core/src/isUnexpected.ts +0 -178
- package/test/integration/generated/azure/core/src/logger.ts +0 -5
- package/test/integration/generated/azure/core/src/models.ts +0 -18
- package/test/integration/generated/azure/core/src/outputModels.ts +0 -38
- package/test/integration/generated/azure/core/src/paginateHelper.ts +0 -204
- package/test/integration/generated/azure/core/src/parameters.ts +0 -68
- package/test/integration/generated/azure/core/src/responses.ts +0 -158
- package/test/integration/generated/azure/core/src/serializeHelper.ts +0 -16
- package/test/integration/generated/azure/core/tsconfig.json +0 -25
- package/test/integration/generated/azure/core/tspconfig.yaml +0 -15
- package/test/integration/generated/azure/core-traits/.eslintrc.json +0 -11
- package/test/integration/generated/azure/core-traits/README.md +0 -56
- package/test/integration/generated/azure/core-traits/api-extractor.json +0 -18
- package/test/integration/generated/azure/core-traits/package.json +0 -80
- package/test/integration/generated/azure/core-traits/rollup.config.js +0 -118
- package/test/integration/generated/azure/core-traits/src/azureCoreTraitsClient.ts +0 -35
- package/test/integration/generated/azure/core-traits/src/clientDefinitions.ts +0 -22
- package/test/integration/generated/azure/core-traits/src/index.ts +0 -13
- package/test/integration/generated/azure/core-traits/src/isUnexpected.ts +0 -97
- package/test/integration/generated/azure/core-traits/src/logger.ts +0 -5
- package/test/integration/generated/azure/core-traits/src/outputModels.ts +0 -25
- package/test/integration/generated/azure/core-traits/src/parameters.ts +0 -26
- package/test/integration/generated/azure/core-traits/src/responses.ts +0 -32
- package/test/integration/generated/azure/core-traits/tsconfig.json +0 -25
- package/test/integration/generated/azure/core-traits/tspconfig.yaml +0 -15
- package/test/integration/generated/dictionary/.eslintrc.json +0 -11
- package/test/integration/generated/dictionary/README.md +0 -56
- package/test/integration/generated/dictionary/api-extractor.json +0 -18
- package/test/integration/generated/dictionary/package.json +0 -80
- package/test/integration/generated/dictionary/rollup.config.js +0 -118
- package/test/integration/generated/dictionary/src/clientDefinitions.ts +0 -180
- package/test/integration/generated/dictionary/src/dictClient.ts +0 -33
- package/test/integration/generated/dictionary/src/index.ts +0 -13
- package/test/integration/generated/dictionary/src/logger.ts +0 -5
- package/test/integration/generated/dictionary/src/models.ts +0 -9
- package/test/integration/generated/dictionary/src/outputModels.ts +0 -9
- package/test/integration/generated/dictionary/src/parameters.ts +0 -94
- package/test/integration/generated/dictionary/src/responses.ts +0 -126
- package/test/integration/generated/dictionary/tsconfig.json +0 -25
- package/test/integration/generated/dictionary/tspconfig.yaml +0 -15
- package/test/integration/generated/enums/extensible/.eslintrc.json +0 -11
- package/test/integration/generated/enums/extensible/README.md +0 -56
- package/test/integration/generated/enums/extensible/api-extractor.json +0 -18
- package/test/integration/generated/enums/extensible/package.json +0 -80
- package/test/integration/generated/enums/extensible/rollup.config.js +0 -118
- package/test/integration/generated/enums/extensible/src/clientDefinitions.ts +0 -45
- package/test/integration/generated/enums/extensible/src/index.ts +0 -11
- package/test/integration/generated/enums/extensible/src/logger.ts +0 -5
- package/test/integration/generated/enums/extensible/src/parameters.ts +0 -23
- package/test/integration/generated/enums/extensible/src/responses.ts +0 -26
- package/test/integration/generated/enums/extensible/src/typeEnumExtensible.ts +0 -35
- package/test/integration/generated/enums/extensible/tsconfig.json +0 -25
- package/test/integration/generated/enums/extensible/tspconfig.yaml +0 -14
- package/test/integration/generated/enums/fixed/.eslintrc.json +0 -11
- package/test/integration/generated/enums/fixed/README.md +0 -56
- package/test/integration/generated/enums/fixed/api-extractor.json +0 -18
- package/test/integration/generated/enums/fixed/package.json +0 -80
- package/test/integration/generated/enums/fixed/rollup.config.js +0 -118
- package/test/integration/generated/enums/fixed/src/clientDefinitions.ts +0 -43
- package/test/integration/generated/enums/fixed/src/index.ts +0 -11
- package/test/integration/generated/enums/fixed/src/logger.ts +0 -5
- package/test/integration/generated/enums/fixed/src/parameters.ts +0 -36
- package/test/integration/generated/enums/fixed/src/responses.ts +0 -27
- package/test/integration/generated/enums/fixed/src/typeEnumFixed.ts +0 -35
- package/test/integration/generated/enums/fixed/tsconfig.json +0 -25
- package/test/integration/generated/enums/fixed/tspconfig.yaml +0 -14
- package/test/integration/generated/hello/.eslintrc.json +0 -11
- package/test/integration/generated/hello/README.md +0 -56
- package/test/integration/generated/hello/api-extractor.json +0 -18
- package/test/integration/generated/hello/package.json +0 -80
- package/test/integration/generated/hello/rollup.config.js +0 -118
- package/test/integration/generated/hello/src/clientDefinitions.ts +0 -19
- package/test/integration/generated/hello/src/hello.ts +0 -29
- package/test/integration/generated/hello/src/index.ts +0 -11
- package/test/integration/generated/hello/src/parameters.ts +0 -6
- package/test/integration/generated/hello/src/responses.ts +0 -10
- package/test/integration/generated/hello/tsconfig.json +0 -25
- package/test/integration/generated/hello/tspconfig.yaml +0 -14
- package/test/integration/generated/internal/src/clientDefinitions.ts +0 -53
- package/test/integration/generated/internal/src/index.ts +0 -12
- package/test/integration/generated/internal/src/internalClient.ts +0 -35
- package/test/integration/generated/internal/src/logger.ts +0 -5
- package/test/integration/generated/internal/src/outputModels.ts +0 -17
- package/test/integration/generated/internal/src/parameters.ts +0 -45
- package/test/integration/generated/internal/src/responses.ts +0 -33
- package/test/integration/generated/internal/tspconfig.yaml +0 -14
- package/test/integration/generated/lro/lroCore/.eslintrc.json +0 -11
- package/test/integration/generated/lro/lroCore/README.md +0 -56
- package/test/integration/generated/lro/lroCore/api-extractor.json +0 -18
- package/test/integration/generated/lro/lroCore/package.json +0 -82
- package/test/integration/generated/lro/lroCore/rollup.config.js +0 -118
- package/test/integration/generated/lro/lroCore/src/clientDefinitions.ts +0 -54
- package/test/integration/generated/lro/lroCore/src/index.ts +0 -15
- package/test/integration/generated/lro/lroCore/src/isUnexpected.ts +0 -135
- package/test/integration/generated/lro/lroCore/src/logger.ts +0 -5
- package/test/integration/generated/lro/lroCore/src/models.ts +0 -8
- package/test/integration/generated/lro/lroCore/src/outputModels.ts +0 -50
- package/test/integration/generated/lro/lroCore/src/parameters.ts +0 -25
- package/test/integration/generated/lro/lroCore/src/pollingHelper.ts +0 -113
- package/test/integration/generated/lro/lroCore/src/responses.ts +0 -109
- package/test/integration/generated/lro/lroCore/src/specsAzureCoreLroStandard.ts +0 -35
- package/test/integration/generated/lro/lroCore/tsconfig.json +0 -25
- package/test/integration/generated/lro/lroCore/tspconfig.yaml +0 -14
- package/test/integration/generated/lro/lroRPC/.eslintrc.json +0 -11
- package/test/integration/generated/lro/lroRPC/README.md +0 -56
- package/test/integration/generated/lro/lroRPC/api-extractor.json +0 -18
- package/test/integration/generated/lro/lroRPC/package.json +0 -82
- package/test/integration/generated/lro/lroRPC/rollup.config.js +0 -118
- package/test/integration/generated/lro/lroRPC/src/clientDefinitions.ts +0 -79
- package/test/integration/generated/lro/lroRPC/src/index.ts +0 -15
- package/test/integration/generated/lro/lroRPC/src/isUnexpected.ts +0 -153
- package/test/integration/generated/lro/lroRPC/src/logger.ts +0 -5
- package/test/integration/generated/lro/lroRPC/src/models.ts +0 -8
- package/test/integration/generated/lro/lroRPC/src/outputModels.ts +0 -40
- package/test/integration/generated/lro/lroRPC/src/parameters.ts +0 -20
- package/test/integration/generated/lro/lroRPC/src/pollingHelper.ts +0 -127
- package/test/integration/generated/lro/lroRPC/src/responses.ts +0 -124
- package/test/integration/generated/lro/lroRPC/src/specsAzureCoreLroRpc.ts +0 -35
- package/test/integration/generated/lro/lroRPC/tsconfig.json +0 -25
- package/test/integration/generated/lro/lroRPC/tspconfig.yaml +0 -14
- package/test/integration/generated/models/inheritance/.eslintrc.json +0 -11
- package/test/integration/generated/models/inheritance/README.md +0 -56
- package/test/integration/generated/models/inheritance/api-extractor.json +0 -18
- package/test/integration/generated/models/inheritance/package.json +0 -80
- package/test/integration/generated/models/inheritance/rollup.config.js +0 -118
- package/test/integration/generated/models/inheritance/src/clientDefinitions.ts +0 -81
- package/test/integration/generated/models/inheritance/src/index.ts +0 -13
- package/test/integration/generated/models/inheritance/src/logger.ts +0 -5
- package/test/integration/generated/models/inheritance/src/models.ts +0 -52
- package/test/integration/generated/models/inheritance/src/outputModels.ts +0 -52
- package/test/integration/generated/models/inheritance/src/parameters.ts +0 -35
- package/test/integration/generated/models/inheritance/src/responses.ts +0 -56
- package/test/integration/generated/models/inheritance/src/typeModelInheritance.ts +0 -35
- package/test/integration/generated/models/inheritance/tsconfig.json +0 -25
- package/test/integration/generated/models/inheritance/tspconfig.yaml +0 -14
- package/test/integration/generated/models/propertyNullable/.eslintrc.json +0 -11
- package/test/integration/generated/models/propertyNullable/README.md +0 -56
- package/test/integration/generated/models/propertyNullable/api-extractor.json +0 -18
- package/test/integration/generated/models/propertyNullable/package.json +0 -80
- package/test/integration/generated/models/propertyNullable/rollup.config.js +0 -118
- package/test/integration/generated/models/propertyNullable/src/clientDefinitions.ts +0 -227
- package/test/integration/generated/models/propertyNullable/src/index.ts +0 -13
- package/test/integration/generated/models/propertyNullable/src/logger.ts +0 -5
- package/test/integration/generated/models/propertyNullable/src/models.ts +0 -56
- package/test/integration/generated/models/propertyNullable/src/outputModels.ts +0 -56
- package/test/integration/generated/models/propertyNullable/src/parameters.ts +0 -197
- package/test/integration/generated/models/propertyNullable/src/responses.ts +0 -144
- package/test/integration/generated/models/propertyNullable/src/typePropertyNullable.ts +0 -35
- package/test/integration/generated/models/propertyNullable/tsconfig.json +0 -25
- package/test/integration/generated/models/propertyNullable/tspconfig.yaml +0 -14
- package/test/integration/generated/models/propertyOptional/.eslintrc.json +0 -11
- package/test/integration/generated/models/propertyOptional/README.md +0 -56
- package/test/integration/generated/models/propertyOptional/api-extractor.json +0 -18
- package/test/integration/generated/models/propertyOptional/package.json +0 -80
- package/test/integration/generated/models/propertyOptional/rollup.config.js +0 -118
- package/test/integration/generated/models/propertyOptional/src/clientDefinitions.ts +0 -263
- package/test/integration/generated/models/propertyOptional/src/index.ts +0 -13
- package/test/integration/generated/models/propertyOptional/src/logger.ts +0 -5
- package/test/integration/generated/models/propertyOptional/src/models.ts +0 -46
- package/test/integration/generated/models/propertyOptional/src/outputModels.ts +0 -46
- package/test/integration/generated/models/propertyOptional/src/parameters.ts +0 -125
- package/test/integration/generated/models/propertyOptional/src/responses.ts +0 -169
- package/test/integration/generated/models/propertyOptional/src/typePropertyOptional.ts +0 -35
- package/test/integration/generated/models/propertyOptional/tsconfig.json +0 -25
- package/test/integration/generated/models/propertyOptional/tspconfig.yaml +0 -14
- package/test/integration/generated/models/propertyTypes/.eslintrc.json +0 -11
- package/test/integration/generated/models/propertyTypes/README.md +0 -56
- package/test/integration/generated/models/propertyTypes/api-extractor.json +0 -18
- package/test/integration/generated/models/propertyTypes/package.json +0 -80
- package/test/integration/generated/models/propertyTypes/rollup.config.js +0 -118
- package/test/integration/generated/models/propertyTypes/src/clientDefinitions.ts +0 -310
- package/test/integration/generated/models/propertyTypes/src/index.ts +0 -13
- package/test/integration/generated/models/propertyTypes/src/logger.ts +0 -5
- package/test/integration/generated/models/propertyTypes/src/models.ts +0 -123
- package/test/integration/generated/models/propertyTypes/src/outputModels.ts +0 -123
- package/test/integration/generated/models/propertyTypes/src/parameters.ts +0 -189
- package/test/integration/generated/models/propertyTypes/src/responses.ts +0 -234
- package/test/integration/generated/models/propertyTypes/src/typePropertyValueTypes.ts +0 -35
- package/test/integration/generated/models/propertyTypes/tsconfig.json +0 -25
- package/test/integration/generated/models/propertyTypes/tspconfig.yaml +0 -14
- package/test/integration/generated/models/usage/.eslintrc.json +0 -11
- package/test/integration/generated/models/usage/README.md +0 -56
- package/test/integration/generated/models/usage/api-extractor.json +0 -18
- package/test/integration/generated/models/usage/package.json +0 -80
- package/test/integration/generated/models/usage/rollup.config.js +0 -118
- package/test/integration/generated/models/usage/src/clientDefinitions.ts +0 -41
- package/test/integration/generated/models/usage/src/index.ts +0 -13
- package/test/integration/generated/models/usage/src/logger.ts +0 -5
- package/test/integration/generated/models/usage/src/models.ts +0 -12
- package/test/integration/generated/models/usage/src/outputModels.ts +0 -12
- package/test/integration/generated/models/usage/src/parameters.ts +0 -19
- package/test/integration/generated/models/usage/src/responses.ts +0 -22
- package/test/integration/generated/models/usage/src/typeModelUsage.ts +0 -35
- package/test/integration/generated/models/usage/tsconfig.json +0 -25
- package/test/integration/generated/models/usage/tspconfig.yaml +0 -14
- package/test/integration/generated/models/visibility/.eslintrc.json +0 -11
- package/test/integration/generated/models/visibility/README.md +0 -56
- package/test/integration/generated/models/visibility/api-extractor.json +0 -18
- package/test/integration/generated/models/visibility/package.json +0 -80
- package/test/integration/generated/models/visibility/rollup.config.js +0 -118
- package/test/integration/generated/models/visibility/src/clientDefinitions.ts +0 -40
- package/test/integration/generated/models/visibility/src/index.ts +0 -13
- package/test/integration/generated/models/visibility/src/logger.ts +0 -5
- package/test/integration/generated/models/visibility/src/models.ts +0 -14
- package/test/integration/generated/models/visibility/src/outputModels.ts +0 -16
- package/test/integration/generated/models/visibility/src/parameters.ts +0 -41
- package/test/integration/generated/models/visibility/src/responses.ts +0 -36
- package/test/integration/generated/models/visibility/src/typeModelVisibility.ts +0 -35
- package/test/integration/generated/models/visibility/tsconfig.json +0 -25
- package/test/integration/generated/models/visibility/tspconfig.yaml +0 -14
- package/test/integration/generated/parameters/collection-format/src/clientDefinitions.ts +0 -63
- package/test/integration/generated/parameters/collection-format/src/collectionFormatClient.ts +0 -35
- package/test/integration/generated/parameters/collection-format/src/index.ts +0 -12
- package/test/integration/generated/parameters/collection-format/src/logger.ts +0 -5
- package/test/integration/generated/parameters/collection-format/src/parameters.ts +0 -71
- package/test/integration/generated/parameters/collection-format/src/responses.ts +0 -34
- package/test/integration/generated/parameters/collection-format/src/serializeHelper.ts +0 -28
- package/test/integration/generated/parameters/collection-format/tspconfig.yaml +0 -14
- package/test/integration/generated/parameters/spread/src/clientDefinitions.ts +0 -61
- package/test/integration/generated/parameters/spread/src/index.ts +0 -12
- package/test/integration/generated/parameters/spread/src/logger.ts +0 -5
- package/test/integration/generated/parameters/spread/src/models.ts +0 -7
- package/test/integration/generated/parameters/spread/src/parameters.ts +0 -61
- package/test/integration/generated/parameters/spread/src/parametersSpread.ts +0 -35
- package/test/integration/generated/parameters/spread/src/responses.ts +0 -25
- package/test/integration/generated/parameters/spread/tspconfig.yaml +0 -12
- package/test/integration/generated/projection/src/clientDefinitions.ts +0 -71
- package/test/integration/generated/projection/src/index.ts +0 -12
- package/test/integration/generated/projection/src/logger.ts +0 -5
- package/test/integration/generated/projection/src/models.ts +0 -22
- package/test/integration/generated/projection/src/parameters.ts +0 -48
- package/test/integration/generated/projection/src/projectionClient.ts +0 -35
- package/test/integration/generated/projection/src/responses.ts +0 -34
- package/test/integration/generated/projection/tspconfig.yaml +0 -14
- package/test/integration/generated/resiliency/srvDriven1/.eslintrc.json +0 -11
- package/test/integration/generated/resiliency/srvDriven1/README.md +0 -56
- package/test/integration/generated/resiliency/srvDriven1/api-extractor.json +0 -18
- package/test/integration/generated/resiliency/srvDriven1/package.json +0 -80
- package/test/integration/generated/resiliency/srvDriven1/rollup.config.js +0 -118
- package/test/integration/generated/resiliency/srvDriven1/src/clientDefinitions.ts +0 -46
- package/test/integration/generated/resiliency/srvDriven1/src/index.ts +0 -11
- package/test/integration/generated/resiliency/srvDriven1/src/logger.ts +0 -5
- package/test/integration/generated/resiliency/srvDriven1/src/parameters.ts +0 -30
- package/test/integration/generated/resiliency/srvDriven1/src/responses.ts +0 -19
- package/test/integration/generated/resiliency/srvDriven1/src/serviceDrivenOldClient.ts +0 -43
- package/test/integration/generated/resiliency/srvDriven1/tsconfig.json +0 -25
- package/test/integration/generated/resiliency/srvDriven1/tspconfig.yaml +0 -15
- package/test/integration/generated/resiliency/srvDriven2/.eslintrc.json +0 -11
- package/test/integration/generated/resiliency/srvDriven2/README.md +0 -65
- package/test/integration/generated/resiliency/srvDriven2/api-extractor.json +0 -18
- package/test/integration/generated/resiliency/srvDriven2/package.json +0 -80
- package/test/integration/generated/resiliency/srvDriven2/rollup.config.js +0 -118
- package/test/integration/generated/resiliency/srvDriven2/src/clientDefinitions.ts +0 -57
- package/test/integration/generated/resiliency/srvDriven2/src/index.ts +0 -11
- package/test/integration/generated/resiliency/srvDriven2/src/logger.ts +0 -5
- package/test/integration/generated/resiliency/srvDriven2/src/parameters.ts +0 -45
- package/test/integration/generated/resiliency/srvDriven2/src/responses.ts +0 -24
- package/test/integration/generated/resiliency/srvDriven2/src/serviceDrivenNewClient.ts +0 -43
- package/test/integration/generated/resiliency/srvDriven2/tsconfig.json +0 -25
- package/test/integration/generated/resiliency/srvDriven2/tspconfig.yaml +0 -15
- package/test/integration/generated/server/path/multiple/src/clientDefinitions.ts +0 -35
- package/test/integration/generated/server/path/multiple/src/index.ts +0 -11
- package/test/integration/generated/server/path/multiple/src/logger.ts +0 -5
- package/test/integration/generated/server/path/multiple/src/multipleParamInServerPathClient.ts +0 -43
- package/test/integration/generated/server/path/multiple/src/parameters.ts +0 -7
- package/test/integration/generated/server/path/multiple/src/responses.ts +0 -14
- package/test/integration/generated/server/path/multiple/tspconfig.yaml +0 -14
- package/test/integration/generated/server/path/single/src/clientDefinitions.ts +0 -19
- package/test/integration/generated/server/path/single/src/index.ts +0 -11
- package/test/integration/generated/server/path/single/src/logger.ts +0 -5
- package/test/integration/generated/server/path/single/src/parameters.ts +0 -6
- package/test/integration/generated/server/path/single/src/responses.ts +0 -9
- package/test/integration/generated/server/path/single/src/singleParamInServerPathClient.ts +0 -38
- package/test/integration/generated/server/path/single/tspconfig.yaml +0 -14
- package/test/integration/generated/specialWords/src/clientDefinitions.ts +0 -61
- package/test/integration/generated/specialWords/src/index.ts +0 -13
- package/test/integration/generated/specialWords/src/logger.ts +0 -5
- package/test/integration/generated/specialWords/src/models.ts +0 -17
- package/test/integration/generated/specialWords/src/outputModels.ts +0 -17
- package/test/integration/generated/specialWords/src/parameters.ts +0 -37
- package/test/integration/generated/specialWords/src/responses.ts +0 -31
- package/test/integration/generated/specialWords/src/specialWordsClient.ts +0 -35
- package/test/integration/generated/specialWords/tspconfig.yaml +0 -14
- package/test/integration/generated/unions/src/clientDefinitions.ts +0 -53
- package/test/integration/generated/unions/src/index.ts +0 -12
- package/test/integration/generated/unions/src/logger.ts +0 -5
- package/test/integration/generated/unions/src/models.ts +0 -27
- package/test/integration/generated/unions/src/parameters.ts +0 -34
- package/test/integration/generated/unions/src/responses.ts +0 -24
- package/test/integration/generated/unions/src/unionsClient.ts +0 -35
- package/test/integration/generated/unions/tspconfig.yaml +0 -14
- package/test/integration/internal.spec.ts +0 -76
- package/test/integration/lroCore.spec.ts +0 -89
- package/test/integration/modelInheritance.spec.ts +0 -192
- package/test/integration/modelPropertyNullable.spec.ts +0 -115
- package/test/integration/modelPropertyOptional.spec.ts +0 -362
- package/test/integration/modelPropertyType.spec.ts +0 -135
- package/test/integration/modelUsage.spec.ts +0 -47
- package/test/integration/projection.spec.ts +0 -102
- package/test/integration/resiliencyDpgCustomization.spec.ts +0 -147
- package/test/integration/server.spec.ts +0 -59
- package/test/integration/specialWords.spec.ts +0 -73
- package/test/integration/spreadParameters.spec.ts +0 -82
- package/test/integration/unions.spec.ts +0 -69
- package/test/tsconfig.json +0 -4
- package/test/unit/apiVersion.spec.ts +0 -400
- package/test/unit/azureCoreOperationsGenerator.spec.ts +0 -71
- package/test/unit/clientDefinitionGenerator.spec.ts +0 -73
- package/test/unit/clientFactoryGenerator.spec.ts +0 -404
- package/test/unit/docsGenerator.spec.ts +0 -201
- package/test/unit/modelsGenerator.spec.ts +0 -1529
- package/test/unit/parametersGenerator.spec.ts +0 -561
- package/test/unit/responsesGenerator.spec.ts +0 -462
- package/test/unit/spreadAndAlias.spec.ts +0 -200
- package/test/unit/util/emitUtil.ts +0 -166
- package/test/unit/util/testUtil.ts +0 -88
- package/test/util/customBearerTokenTestingPolicy.ts +0 -78
- package/test/util/matrix.ts +0 -48
- package/tsconfig.json +0 -36
- package/tsconfig.test.json +0 -7
- package/typespec-ts.build.log +0 -1
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@msinternal/auth-apikey",
|
|
3
|
-
"sdk-type": "client",
|
|
4
|
-
"author": "Microsoft Corporation",
|
|
5
|
-
"version": "1.0.0",
|
|
6
|
-
"description": "Auth api key Test Service",
|
|
7
|
-
"keywords": ["node", "azure", "cloud", "typescript", "browser", "isomorphic"],
|
|
8
|
-
"license": "MIT",
|
|
9
|
-
"main": "dist/index.js",
|
|
10
|
-
"module": "./dist-esm/src/index.js",
|
|
11
|
-
"types": "./types/auth-apikey.d.ts",
|
|
12
|
-
"repository": "github:Azure/azure-sdk-for-js",
|
|
13
|
-
"bugs": { "url": "https://github.com/Azure/azure-sdk-for-js/issues" },
|
|
14
|
-
"files": [
|
|
15
|
-
"dist/",
|
|
16
|
-
"dist-esm/src/",
|
|
17
|
-
"types/auth-apikey.d.ts",
|
|
18
|
-
"README.md",
|
|
19
|
-
"LICENSE",
|
|
20
|
-
"review/*"
|
|
21
|
-
],
|
|
22
|
-
"engines": { "node": ">=14.0.0" },
|
|
23
|
-
"scripts": {
|
|
24
|
-
"audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit",
|
|
25
|
-
"build:browser": "tsc -p . && cross-env ONLY_BROWSER=true rollup -c 2>&1",
|
|
26
|
-
"build:node": "tsc -p . && cross-env ONLY_NODE=true rollup -c 2>&1",
|
|
27
|
-
"build:samples": "echo skipped.",
|
|
28
|
-
"build:test": "tsc -p . && rollup -c 2>&1",
|
|
29
|
-
"build:debug": "echo skipped.",
|
|
30
|
-
"check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"",
|
|
31
|
-
"clean": "rimraf dist dist-browser dist-esm test-dist temp types *.tgz *.log",
|
|
32
|
-
"execute:samples": "echo skipped",
|
|
33
|
-
"extract-api": "rimraf review && mkdirp ./review && api-extractor run --local",
|
|
34
|
-
"format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"*.{js,json}\" \"test/**/*.ts\"",
|
|
35
|
-
"generate:client": "echo skipped",
|
|
36
|
-
"integration-test:browser": "karma start --single-run",
|
|
37
|
-
"integration-test:node": "nyc mocha -r esm --require source-map-support/register --reporter ../../../common/tools/mocha-multi-reporter.js --timeout 5000000 --full-trace \"dist-esm/test/{,!(browser)/**/}*.spec.js\"",
|
|
38
|
-
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
|
|
39
|
-
"lint:fix": "eslint package.json api-extractor.json src test --ext .ts --fix --fix-type [problem,suggestion]",
|
|
40
|
-
"lint": "eslint package.json api-extractor.json src test --ext .ts",
|
|
41
|
-
"pack": "npm pack 2>&1",
|
|
42
|
-
"test:browser": "npm run clean && npm run build:test && npm run unit-test:browser",
|
|
43
|
-
"test:node": "npm run clean && npm run build:test && npm run unit-test:node",
|
|
44
|
-
"test": "npm run clean && npm run build:test && npm run unit-test",
|
|
45
|
-
"unit-test": "npm run unit-test:node && npm run unit-test:browser",
|
|
46
|
-
"unit-test:node": "mocha -r esm --require ts-node/register --reporter ../../../common/tools/mocha-multi-reporter.js --timeout 1200000 --full-trace \"test/{,!(browser)/**/}*.spec.ts\"",
|
|
47
|
-
"unit-test:browser": "karma start --single-run",
|
|
48
|
-
"build": "npm run clean && tsc && rollup -c 2>&1 && npm run minify && mkdirp ./review && npm run extract-api",
|
|
49
|
-
"minify": "uglifyjs -c -m --comments --source-map \"content='./dist/index.js.map'\" -o ./dist/index.min.js ./dist/index.js"
|
|
50
|
-
},
|
|
51
|
-
"sideEffects": false,
|
|
52
|
-
"autoPublish": false,
|
|
53
|
-
"dependencies": {
|
|
54
|
-
"@azure/core-auth": "^1.3.0",
|
|
55
|
-
"@azure-rest/core-client": "^1.1.3",
|
|
56
|
-
"@azure/core-rest-pipeline": "^1.8.0",
|
|
57
|
-
"@azure/logger": "^1.0.0",
|
|
58
|
-
"tslib": "^2.2.0"
|
|
59
|
-
},
|
|
60
|
-
"devDependencies": {
|
|
61
|
-
"@microsoft/api-extractor": "^7.31.1",
|
|
62
|
-
"autorest": "latest",
|
|
63
|
-
"@types/node": "^14.0.0",
|
|
64
|
-
"dotenv": "^16.0.0",
|
|
65
|
-
"eslint": "^8.0.0",
|
|
66
|
-
"mkdirp": "^2.1.2",
|
|
67
|
-
"prettier": "^2.5.1",
|
|
68
|
-
"rimraf": "^3.0.0",
|
|
69
|
-
"source-map-support": "^0.5.9",
|
|
70
|
-
"typescript": "~5.0.0",
|
|
71
|
-
"@rollup/plugin-commonjs": "^24.0.0",
|
|
72
|
-
"@rollup/plugin-json": "^6.0.0",
|
|
73
|
-
"@rollup/plugin-multi-entry": "^6.0.0",
|
|
74
|
-
"@rollup/plugin-node-resolve": "^13.1.3",
|
|
75
|
-
"rollup": "^2.66.1",
|
|
76
|
-
"rollup-plugin-sourcemaps": "^0.6.3",
|
|
77
|
-
"uglify-js": "^3.4.9",
|
|
78
|
-
"@azure-tools/test-credential": "^1.0.0",
|
|
79
|
-
"@azure/identity": "^2.0.1",
|
|
80
|
-
"@azure-tools/test-recorder": "^3.0.0",
|
|
81
|
-
"mocha": "^7.1.1",
|
|
82
|
-
"@types/mocha": "^7.0.2",
|
|
83
|
-
"mocha-junit-reporter": "^1.18.0",
|
|
84
|
-
"cross-env": "^7.0.2",
|
|
85
|
-
"@types/chai": "^4.2.8",
|
|
86
|
-
"chai": "^4.2.0",
|
|
87
|
-
"karma-chrome-launcher": "^3.0.0",
|
|
88
|
-
"karma-coverage": "^2.0.0",
|
|
89
|
-
"karma-env-preprocessor": "^0.1.1",
|
|
90
|
-
"karma-firefox-launcher": "^1.1.0",
|
|
91
|
-
"karma-junit-reporter": "^2.0.1",
|
|
92
|
-
"karma-mocha-reporter": "^2.2.5",
|
|
93
|
-
"karma-mocha": "^2.0.1",
|
|
94
|
-
"karma-source-map-support": "~1.4.0",
|
|
95
|
-
"karma-sourcemap-loader": "^0.3.8",
|
|
96
|
-
"karma": "^6.2.0",
|
|
97
|
-
"nyc": "^15.0.0"
|
|
98
|
-
},
|
|
99
|
-
"type": "module",
|
|
100
|
-
"browser": {
|
|
101
|
-
"./dist-esm/test/public/utils/env.js": "./dist-esm/test/public/utils/env.browser.js"
|
|
102
|
-
}
|
|
103
|
-
}
|
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
// Copyright (c) Microsoft Corporation.
|
|
2
|
-
// Licensed under the MIT license.
|
|
3
|
-
|
|
4
|
-
import nodeResolve from "@rollup/plugin-node-resolve";
|
|
5
|
-
import cjs from "@rollup/plugin-commonjs";
|
|
6
|
-
import sourcemaps from "rollup-plugin-sourcemaps";
|
|
7
|
-
import multiEntry from "@rollup/plugin-multi-entry";
|
|
8
|
-
import json from "@rollup/plugin-json";
|
|
9
|
-
|
|
10
|
-
import nodeBuiltins from "builtin-modules";
|
|
11
|
-
|
|
12
|
-
// #region Warning Handler
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* A function that can determine whether a rollup warning should be ignored. If
|
|
16
|
-
* the function returns `true`, then the warning will not be displayed.
|
|
17
|
-
*/
|
|
18
|
-
|
|
19
|
-
function ignoreNiseSinonEval(warning) {
|
|
20
|
-
return (
|
|
21
|
-
warning.code === "EVAL" &&
|
|
22
|
-
warning.id &&
|
|
23
|
-
(warning.id.includes("node_modules/nise") ||
|
|
24
|
-
warning.id.includes("node_modules/sinon")) === true
|
|
25
|
-
);
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
function ignoreChaiCircularDependency(warning) {
|
|
29
|
-
return (
|
|
30
|
-
warning.code === "CIRCULAR_DEPENDENCY" &&
|
|
31
|
-
warning.importer &&
|
|
32
|
-
warning.importer.includes("node_modules/chai") === true
|
|
33
|
-
);
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
const warningInhibitors = [ignoreChaiCircularDependency, ignoreNiseSinonEval];
|
|
37
|
-
|
|
38
|
-
/**
|
|
39
|
-
* Construct a warning handler for the shared rollup configuration
|
|
40
|
-
* that ignores certain warnings that are not relevant to testing.
|
|
41
|
-
*/
|
|
42
|
-
function makeOnWarnForTesting() {
|
|
43
|
-
return (warning, warn) => {
|
|
44
|
-
// If every inhibitor returns false (i.e. no inhibitors), then show the warning
|
|
45
|
-
if (warningInhibitors.every((inhib) => !inhib(warning))) {
|
|
46
|
-
warn(warning);
|
|
47
|
-
}
|
|
48
|
-
};
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
// #endregion
|
|
52
|
-
|
|
53
|
-
function makeBrowserTestConfig() {
|
|
54
|
-
const config = {
|
|
55
|
-
input: {
|
|
56
|
-
include: ["dist-esm/test/**/*.spec.js"],
|
|
57
|
-
exclude: ["dist-esm/test/**/node/**"],
|
|
58
|
-
},
|
|
59
|
-
output: {
|
|
60
|
-
file: `dist-test/index.browser.js`,
|
|
61
|
-
format: "umd",
|
|
62
|
-
sourcemap: true,
|
|
63
|
-
},
|
|
64
|
-
preserveSymlinks: false,
|
|
65
|
-
plugins: [
|
|
66
|
-
multiEntry({ exports: false }),
|
|
67
|
-
nodeResolve({
|
|
68
|
-
mainFields: ["module", "browser"],
|
|
69
|
-
}),
|
|
70
|
-
cjs(),
|
|
71
|
-
json(),
|
|
72
|
-
sourcemaps(),
|
|
73
|
-
//viz({ filename: "dist-test/browser-stats.html", sourcemap: true })
|
|
74
|
-
],
|
|
75
|
-
onwarn: makeOnWarnForTesting(),
|
|
76
|
-
// Disable tree-shaking of test code. In rollup-plugin-node-resolve@5.0.0,
|
|
77
|
-
// rollup started respecting the "sideEffects" field in package.json. Since
|
|
78
|
-
// our package.json sets "sideEffects=false", this also applies to test
|
|
79
|
-
// code, which causes all tests to be removed by tree-shaking.
|
|
80
|
-
treeshake: false,
|
|
81
|
-
};
|
|
82
|
-
|
|
83
|
-
return config;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
const defaultConfigurationOptions = {
|
|
87
|
-
disableBrowserBundle: false,
|
|
88
|
-
};
|
|
89
|
-
|
|
90
|
-
export function makeConfig(pkg, options) {
|
|
91
|
-
options = {
|
|
92
|
-
...defaultConfigurationOptions,
|
|
93
|
-
...(options || {}),
|
|
94
|
-
};
|
|
95
|
-
|
|
96
|
-
const baseConfig = {
|
|
97
|
-
// Use the package's module field if it has one
|
|
98
|
-
input: pkg["module"] || "dist-esm/src/index.js",
|
|
99
|
-
external: [
|
|
100
|
-
...nodeBuiltins,
|
|
101
|
-
...Object.keys(pkg.dependencies),
|
|
102
|
-
...Object.keys(pkg.devDependencies),
|
|
103
|
-
],
|
|
104
|
-
output: { file: "dist/index.js", format: "cjs", sourcemap: true },
|
|
105
|
-
preserveSymlinks: false,
|
|
106
|
-
plugins: [sourcemaps(), nodeResolve()],
|
|
107
|
-
};
|
|
108
|
-
|
|
109
|
-
const config = [baseConfig];
|
|
110
|
-
|
|
111
|
-
if (!options.disableBrowserBundle) {
|
|
112
|
-
config.push(makeBrowserTestConfig());
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
return config;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
export default makeConfig(require("./package.json"));
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
// Copyright (c) Microsoft Corporation.
|
|
2
|
-
// Licensed under the MIT license.
|
|
3
|
-
|
|
4
|
-
import { getClient, ClientOptions } from "@azure-rest/core-client";
|
|
5
|
-
import { logger } from "./logger";
|
|
6
|
-
import { KeyCredential } from "@azure/core-auth";
|
|
7
|
-
import { AuthApiKeyClient } from "./clientDefinitions";
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* Initialize a new instance of `AuthApiKeyClient`
|
|
11
|
-
* @param credentials - uniquely identify client credential
|
|
12
|
-
* @param options - the parameter for all optional parameters
|
|
13
|
-
*/
|
|
14
|
-
export default function createClient(
|
|
15
|
-
credentials: KeyCredential,
|
|
16
|
-
options: ClientOptions = {}
|
|
17
|
-
): AuthApiKeyClient {
|
|
18
|
-
const baseUrl = options.baseUrl ?? `http://localhost:3000`;
|
|
19
|
-
options.apiVersion = options.apiVersion ?? "1.0.0";
|
|
20
|
-
options = {
|
|
21
|
-
...options,
|
|
22
|
-
credentials: {
|
|
23
|
-
apiKeyHeaderName: "x-ms-api-key",
|
|
24
|
-
},
|
|
25
|
-
};
|
|
26
|
-
|
|
27
|
-
const userAgentInfo = `azsdk-js-auth-apikey-rest/1.0.0`;
|
|
28
|
-
const userAgentPrefix =
|
|
29
|
-
options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
|
30
|
-
? `${options.userAgentOptions.userAgentPrefix} ${userAgentInfo}`
|
|
31
|
-
: `${userAgentInfo}`;
|
|
32
|
-
options = {
|
|
33
|
-
...options,
|
|
34
|
-
userAgentOptions: {
|
|
35
|
-
userAgentPrefix,
|
|
36
|
-
},
|
|
37
|
-
loggingOptions: {
|
|
38
|
-
logger: options.loggingOptions?.logger ?? logger.info,
|
|
39
|
-
},
|
|
40
|
-
};
|
|
41
|
-
|
|
42
|
-
const client = getClient(baseUrl, credentials, options) as AuthApiKeyClient;
|
|
43
|
-
|
|
44
|
-
return client;
|
|
45
|
-
}
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
// Copyright (c) Microsoft Corporation.
|
|
2
|
-
// Licensed under the MIT license.
|
|
3
|
-
|
|
4
|
-
import { ValidParameters, InvalidParameters } from "./parameters";
|
|
5
|
-
import {
|
|
6
|
-
Valid204Response,
|
|
7
|
-
Invalid204Response,
|
|
8
|
-
Invalid403Response,
|
|
9
|
-
} from "./responses";
|
|
10
|
-
import { Client, StreamableMethod } from "@azure-rest/core-client";
|
|
11
|
-
|
|
12
|
-
export interface Valid {
|
|
13
|
-
/** Check whether client is authenticated */
|
|
14
|
-
get(options?: ValidParameters): StreamableMethod<Valid204Response>;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
export interface Invalid {
|
|
18
|
-
/** Check whether client is authenticated. */
|
|
19
|
-
get(
|
|
20
|
-
options?: InvalidParameters
|
|
21
|
-
): StreamableMethod<Invalid204Response | Invalid403Response>;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
export interface Routes {
|
|
25
|
-
/** Resource for '/authentication/api-key/valid' has methods for the following verbs: get */
|
|
26
|
-
(path: "/authentication/api-key/valid"): Valid;
|
|
27
|
-
/** Resource for '/authentication/api-key/invalid' has methods for the following verbs: get */
|
|
28
|
-
(path: "/authentication/api-key/invalid"): Invalid;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
export type AuthApiKeyClient = Client & {
|
|
32
|
-
path: Routes;
|
|
33
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
// Copyright (c) Microsoft Corporation.
|
|
2
|
-
// Licensed under the MIT license.
|
|
3
|
-
|
|
4
|
-
import AuthApiKeyClient from "./authApiKeyClient";
|
|
5
|
-
|
|
6
|
-
export * from "./authApiKeyClient";
|
|
7
|
-
export * from "./parameters";
|
|
8
|
-
export * from "./responses";
|
|
9
|
-
export * from "./clientDefinitions";
|
|
10
|
-
export * from "./outputModels";
|
|
11
|
-
|
|
12
|
-
export default AuthApiKeyClient;
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
// Copyright (c) Microsoft Corporation.
|
|
2
|
-
// Licensed under the MIT license.
|
|
3
|
-
|
|
4
|
-
import { HttpResponse } from "@azure-rest/core-client";
|
|
5
|
-
import { InvalidAuthOutput } from "./outputModels";
|
|
6
|
-
|
|
7
|
-
/** There is no content to send for this request, but the headers may be useful. */
|
|
8
|
-
export interface Valid204Response extends HttpResponse {
|
|
9
|
-
status: "204";
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
/** There is no content to send for this request, but the headers may be useful. */
|
|
13
|
-
export interface Invalid204Response extends HttpResponse {
|
|
14
|
-
status: "204";
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
/** Access is forbidden */
|
|
18
|
-
export interface Invalid403Response extends HttpResponse {
|
|
19
|
-
status: "403";
|
|
20
|
-
body: InvalidAuthOutput;
|
|
21
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
// Copyright (c) Microsoft Corporation.
|
|
2
|
-
// Licensed under the MIT license.
|
|
3
|
-
|
|
4
|
-
import { Recorder } from "@azure-tools/test-recorder";
|
|
5
|
-
import { assert } from "chai";
|
|
6
|
-
import { createRecorder } from "./utils/recordedClient";
|
|
7
|
-
import { Context } from "mocha";
|
|
8
|
-
|
|
9
|
-
describe("My test", () => {
|
|
10
|
-
let recorder: Recorder;
|
|
11
|
-
|
|
12
|
-
beforeEach(async function (this: Context) {
|
|
13
|
-
recorder = await createRecorder(this);
|
|
14
|
-
});
|
|
15
|
-
|
|
16
|
-
afterEach(async function () {
|
|
17
|
-
await recorder.stop();
|
|
18
|
-
});
|
|
19
|
-
|
|
20
|
-
it("sample test", async function () {
|
|
21
|
-
assert.equal(1, 1);
|
|
22
|
-
});
|
|
23
|
-
});
|
package/test/integration/generated/authentication/apiKey/test/public/utils/recordedClient.ts
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
// Copyright (c) Microsoft Corporation.
|
|
2
|
-
// Licensed under the MIT license.
|
|
3
|
-
|
|
4
|
-
import { Context } from "mocha";
|
|
5
|
-
import { Recorder, RecorderStartOptions } from "@azure-tools/test-recorder";
|
|
6
|
-
import "./env";
|
|
7
|
-
|
|
8
|
-
const envSetupForPlayback: Record<string, string> = {
|
|
9
|
-
ENDPOINT: "https://endpoint",
|
|
10
|
-
AZURE_CLIENT_ID: "azure_client_id",
|
|
11
|
-
AZURE_CLIENT_SECRET: "azure_client_secret",
|
|
12
|
-
AZURE_TENANT_ID: "88888888-8888-8888-8888-888888888888",
|
|
13
|
-
SUBSCRIPTION_ID: "azure_subscription_id",
|
|
14
|
-
};
|
|
15
|
-
|
|
16
|
-
const recorderEnvSetup: RecorderStartOptions = {
|
|
17
|
-
envSetupForPlayback,
|
|
18
|
-
};
|
|
19
|
-
|
|
20
|
-
/**
|
|
21
|
-
* creates the recorder and reads the environment variables from the `.env` file.
|
|
22
|
-
* Should be called first in the test suite to make sure environment variables are
|
|
23
|
-
* read before they are being used.
|
|
24
|
-
*/
|
|
25
|
-
export async function createRecorder(context: Context): Promise<Recorder> {
|
|
26
|
-
const recorder = new Recorder(context.currentTest);
|
|
27
|
-
await recorder.start(recorderEnvSetup);
|
|
28
|
-
return recorder;
|
|
29
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "ES2017",
|
|
4
|
-
"module": "es6",
|
|
5
|
-
"lib": [],
|
|
6
|
-
"declaration": true,
|
|
7
|
-
"declarationMap": true,
|
|
8
|
-
"inlineSources": true,
|
|
9
|
-
"sourceMap": true,
|
|
10
|
-
"importHelpers": true,
|
|
11
|
-
"strict": true,
|
|
12
|
-
"alwaysStrict": true,
|
|
13
|
-
"noUnusedLocals": true,
|
|
14
|
-
"noUnusedParameters": true,
|
|
15
|
-
"noImplicitReturns": true,
|
|
16
|
-
"noFallthroughCasesInSwitch": true,
|
|
17
|
-
"forceConsistentCasingInFileNames": true,
|
|
18
|
-
"moduleResolution": "node",
|
|
19
|
-
"allowSyntheticDefaultImports": true,
|
|
20
|
-
"esModuleInterop": true,
|
|
21
|
-
"outDir": "./dist-esm",
|
|
22
|
-
"declarationDir": "./types"
|
|
23
|
-
},
|
|
24
|
-
"include": ["./src/**/*.ts", "./test/**/*.ts"]
|
|
25
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
emit:
|
|
2
|
-
- "@azure-tools/typespec-ts"
|
|
3
|
-
options:
|
|
4
|
-
"@azure-tools/typespec-ts":
|
|
5
|
-
"emitter-output-dir": "{project-root}"
|
|
6
|
-
azureSdkForJs: false
|
|
7
|
-
addCredentials: false
|
|
8
|
-
isCadlTest: true
|
|
9
|
-
title: AuthApiKeyClient
|
|
10
|
-
packageDetails:
|
|
11
|
-
name: "@msinternal/auth-apikey"
|
|
12
|
-
description: "Auth api key Test Service"
|
|
13
|
-
version: "1.0.0"
|
|
@@ -1,133 +0,0 @@
|
|
|
1
|
-
// Copyright (c) Microsoft Corporation.
|
|
2
|
-
// Licensed under the MIT license.
|
|
3
|
-
|
|
4
|
-
// https://github.com/karma-runner/karma-chrome-launcher
|
|
5
|
-
process.env.CHROME_BIN = require("puppeteer").executablePath();
|
|
6
|
-
require("dotenv").config();
|
|
7
|
-
const { relativeRecordingsPath } = require("@azure-tools/test-recorder");
|
|
8
|
-
process.env.RECORDINGS_RELATIVE_PATH = relativeRecordingsPath();
|
|
9
|
-
|
|
10
|
-
module.exports = function (config) {
|
|
11
|
-
config.set({
|
|
12
|
-
// base path that will be used to resolve all patterns (eg. files, exclude)
|
|
13
|
-
basePath: "./",
|
|
14
|
-
|
|
15
|
-
// frameworks to use
|
|
16
|
-
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
|
|
17
|
-
frameworks: ["source-map-support", "mocha"],
|
|
18
|
-
|
|
19
|
-
plugins: [
|
|
20
|
-
"karma-mocha",
|
|
21
|
-
"karma-mocha-reporter",
|
|
22
|
-
"karma-chrome-launcher",
|
|
23
|
-
"karma-firefox-launcher",
|
|
24
|
-
"karma-env-preprocessor",
|
|
25
|
-
"karma-coverage",
|
|
26
|
-
"karma-sourcemap-loader",
|
|
27
|
-
"karma-junit-reporter",
|
|
28
|
-
"karma-source-map-support",
|
|
29
|
-
],
|
|
30
|
-
|
|
31
|
-
// list of files / patterns to load in the browser
|
|
32
|
-
files: [
|
|
33
|
-
"dist-test/index.browser.js",
|
|
34
|
-
{
|
|
35
|
-
pattern: "dist-test/index.browser.js.map",
|
|
36
|
-
type: "html",
|
|
37
|
-
included: false,
|
|
38
|
-
served: true,
|
|
39
|
-
},
|
|
40
|
-
],
|
|
41
|
-
|
|
42
|
-
// list of files / patterns to exclude
|
|
43
|
-
exclude: [],
|
|
44
|
-
|
|
45
|
-
// preprocess matching files before serving them to the browser
|
|
46
|
-
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
|
|
47
|
-
preprocessors: {
|
|
48
|
-
"**/*.js": ["sourcemap", "env"],
|
|
49
|
-
// IMPORTANT: COMMENT following line if you want to debug in your browsers!!
|
|
50
|
-
// Preprocess source file to calculate code coverage, however this will make source file unreadable
|
|
51
|
-
// "dist-test/index.js": ["coverage"]
|
|
52
|
-
},
|
|
53
|
-
|
|
54
|
-
envPreprocessor: [
|
|
55
|
-
"TEST_MODE",
|
|
56
|
-
"ENDPOINT",
|
|
57
|
-
"AZURE_CLIENT_SECRET",
|
|
58
|
-
"AZURE_CLIENT_ID",
|
|
59
|
-
"AZURE_TENANT_ID",
|
|
60
|
-
"SUBSCRIPTION_ID",
|
|
61
|
-
"RECORDINGS_RELATIVE_PATH",
|
|
62
|
-
],
|
|
63
|
-
|
|
64
|
-
// test results reporter to use
|
|
65
|
-
// possible values: 'dots', 'progress'
|
|
66
|
-
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
|
|
67
|
-
reporters: ["mocha", "coverage", "junit"],
|
|
68
|
-
|
|
69
|
-
coverageReporter: {
|
|
70
|
-
// specify a common output directory
|
|
71
|
-
dir: "coverage-browser/",
|
|
72
|
-
reporters: [
|
|
73
|
-
{ type: "json", subdir: ".", file: "coverage.json" },
|
|
74
|
-
{ type: "lcovonly", subdir: ".", file: "lcov.info" },
|
|
75
|
-
{ type: "html", subdir: "html" },
|
|
76
|
-
{ type: "cobertura", subdir: ".", file: "cobertura-coverage.xml" },
|
|
77
|
-
],
|
|
78
|
-
},
|
|
79
|
-
|
|
80
|
-
junitReporter: {
|
|
81
|
-
outputDir: "", // results will be saved as $outputDir/$browserName.xml
|
|
82
|
-
outputFile: "test-results.browser.xml", // if included, results will be saved as $outputDir/$browserName/$outputFile
|
|
83
|
-
suite: "", // suite will become the package name attribute in xml testsuite element
|
|
84
|
-
useBrowserName: false, // add browser name to report and classes names
|
|
85
|
-
nameFormatter: undefined, // function (browser, result) to customize the name attribute in xml testcase element
|
|
86
|
-
classNameFormatter: undefined, // function (browser, result) to customize the classname attribute in xml testcase element
|
|
87
|
-
properties: {}, // key value pair of properties to add to the <properties> section of the report
|
|
88
|
-
},
|
|
89
|
-
|
|
90
|
-
// web server port
|
|
91
|
-
port: 9876,
|
|
92
|
-
|
|
93
|
-
// enable / disable colors in the output (reporters and logs)
|
|
94
|
-
colors: true,
|
|
95
|
-
|
|
96
|
-
// level of logging
|
|
97
|
-
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
|
|
98
|
-
logLevel: config.LOG_INFO,
|
|
99
|
-
|
|
100
|
-
// enable / disable watching file and executing tests whenever any file changes
|
|
101
|
-
autoWatch: false,
|
|
102
|
-
|
|
103
|
-
// --no-sandbox allows our tests to run in Linux without having to change the system.
|
|
104
|
-
// --disable-web-security allows us to authenticate from the browser without having to write tests using interactive auth, which would be far more complex.
|
|
105
|
-
browsers: ["ChromeHeadlessNoSandbox"],
|
|
106
|
-
customLaunchers: {
|
|
107
|
-
ChromeHeadlessNoSandbox: {
|
|
108
|
-
base: "ChromeHeadless",
|
|
109
|
-
flags: ["--no-sandbox", "--disable-web-security"],
|
|
110
|
-
},
|
|
111
|
-
},
|
|
112
|
-
|
|
113
|
-
// Continuous Integration mode
|
|
114
|
-
// if true, Karma captures browsers, runs the tests and exits
|
|
115
|
-
singleRun: false,
|
|
116
|
-
|
|
117
|
-
// Concurrency level
|
|
118
|
-
// how many browser should be started simultaneous
|
|
119
|
-
concurrency: 1,
|
|
120
|
-
|
|
121
|
-
browserNoActivityTimeout: 60000000,
|
|
122
|
-
browserDisconnectTimeout: 10000,
|
|
123
|
-
browserDisconnectTolerance: 3,
|
|
124
|
-
|
|
125
|
-
client: {
|
|
126
|
-
mocha: {
|
|
127
|
-
// change Karma's debug.html to the mocha web reporter
|
|
128
|
-
reporter: "html",
|
|
129
|
-
timeout: "600000",
|
|
130
|
-
},
|
|
131
|
-
},
|
|
132
|
-
});
|
|
133
|
-
};
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
// Copyright (c) Microsoft Corporation.
|
|
2
|
-
// Licensed under the MIT license.
|
|
3
|
-
|
|
4
|
-
import { getClient, ClientOptions } from "@azure-rest/core-client";
|
|
5
|
-
import { logger } from "./logger";
|
|
6
|
-
import { TokenCredential } from "@azure/core-auth";
|
|
7
|
-
import { AuthOauth2Client } from "./clientDefinitions";
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* Initialize a new instance of `AuthOauth2Client`
|
|
11
|
-
* @param credentials - uniquely identify client credential
|
|
12
|
-
* @param options - the parameter for all optional parameters
|
|
13
|
-
*/
|
|
14
|
-
export default function createClient(
|
|
15
|
-
credentials: TokenCredential,
|
|
16
|
-
options: ClientOptions = {}
|
|
17
|
-
): AuthOauth2Client {
|
|
18
|
-
const baseUrl = options.baseUrl ?? `http://localhost:3000`;
|
|
19
|
-
options.apiVersion = options.apiVersion ?? "1.0.0";
|
|
20
|
-
options = {
|
|
21
|
-
...options,
|
|
22
|
-
credentials: {
|
|
23
|
-
scopes: ["https://security.microsoft.com/.default"],
|
|
24
|
-
},
|
|
25
|
-
};
|
|
26
|
-
|
|
27
|
-
const userAgentInfo = `azsdk-js-auth-oauth2-rest/1.0.0`;
|
|
28
|
-
const userAgentPrefix =
|
|
29
|
-
options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
|
30
|
-
? `${options.userAgentOptions.userAgentPrefix} ${userAgentInfo}`
|
|
31
|
-
: `${userAgentInfo}`;
|
|
32
|
-
options = {
|
|
33
|
-
...options,
|
|
34
|
-
userAgentOptions: {
|
|
35
|
-
userAgentPrefix,
|
|
36
|
-
},
|
|
37
|
-
loggingOptions: {
|
|
38
|
-
logger: options.loggingOptions?.logger ?? logger.info,
|
|
39
|
-
},
|
|
40
|
-
};
|
|
41
|
-
|
|
42
|
-
const client = getClient(baseUrl, credentials, options) as AuthOauth2Client;
|
|
43
|
-
|
|
44
|
-
return client;
|
|
45
|
-
}
|