├── .editorconfig ├── .github ├── CODEOWNERS ├── dependabot.yml ├── fabricbot.json ├── policies │ ├── kiota-typescript-branch-protection.yml │ └── resourceManagement.yml ├── release-please.yml └── workflows │ ├── auto-merge-dependabot.yml │ ├── build_test_validate.yml │ ├── conflicting-pr-label.yml │ └── release-please-gha.yml ├── .gitignore ├── .prettierignore ├── .release-please-manifest.json ├── .vscode ├── launch.json └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── eslint.config.mjs ├── lerna.json ├── package.json ├── packages ├── abstractions │ ├── .gitignore │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── apiClientBuilder.ts │ │ ├── apiClientProxifier.ts │ │ ├── apiError.ts │ │ ├── authentication │ │ │ ├── accessTokenProvider.ts │ │ │ ├── allowedHostsValidator.ts │ │ │ ├── anonymousAuthenticationProvider.ts │ │ │ ├── apiKeyAuthenticationProvider.ts │ │ │ ├── authenticationProvider.ts │ │ │ ├── baseBearerTokenAuthenticationProvider.ts │ │ │ ├── index.ts │ │ │ └── validateProtocol.ts │ │ ├── baseRequestBuilder.ts │ │ ├── dateOnly.ts │ │ ├── duration.ts │ │ ├── getPathParameters.ts │ │ ├── headers.ts │ │ ├── httpMethod.ts │ │ ├── index.ts │ │ ├── multipartBody.ts │ │ ├── nativeResponseHandler.ts │ │ ├── nativeResponseWrapper.ts │ │ ├── recordWithCaseInsensitiveKeys.ts │ │ ├── requestAdapter.ts │ │ ├── requestConfiguration.ts │ │ ├── requestInformation.ts │ │ ├── requestOption.ts │ │ ├── responseHandler.ts │ │ ├── responseHandlerOptions.ts │ │ ├── serialization │ │ │ ├── additionalDataHolder.ts │ │ │ ├── index.ts │ │ │ ├── parsable.ts │ │ │ ├── parsableFactory.ts │ │ │ ├── parseNode.ts │ │ │ ├── parseNodeFactory.ts │ │ │ ├── parseNodeFactoryRegistry.ts │ │ │ ├── parseNodeProxyFactory.ts │ │ │ ├── serializationFunctionTypes.ts │ │ │ ├── serializationWriter.ts │ │ │ ├── serializationWriterFactory.ts │ │ │ ├── serializationWriterFactoryRegistry.ts │ │ │ ├── serializationWriterProxyFactory.ts │ │ │ ├── untypedArray.ts │ │ │ ├── untypedBoolean.ts │ │ │ ├── untypedNode.ts │ │ │ ├── untypedNull.ts │ │ │ ├── untypedNumber.ts │ │ │ ├── untypedObject.ts │ │ │ └── untypedString.ts │ │ ├── store │ │ │ ├── backedModel.ts │ │ │ ├── backedModelProxy.ts │ │ │ ├── backingStore.ts │ │ │ ├── backingStoreFactory.ts │ │ │ ├── backingStoreParseNodeFactory.ts │ │ │ ├── backingStoreSerializationWriterProxyFactory.ts │ │ │ ├── backingStoreUtils.ts │ │ │ ├── inMemoryBackingStore.ts │ │ │ ├── inMemoryBackingStoreFactory.ts │ │ │ └── index.ts │ │ ├── timeOnly.ts │ │ └── utils │ │ │ ├── enumUtils.ts │ │ │ ├── guidUtils.ts │ │ │ ├── inNodeEnv.ts │ │ │ └── index.ts │ ├── test │ │ └── common │ │ │ ├── apiClientProxifier.ts │ │ │ ├── authentication │ │ │ ├── allowedHostsValidator.ts │ │ │ ├── apiKeyAuthenticationProvider.ts │ │ │ └── validateProtocolTest.ts │ │ │ ├── dateOnly.ts │ │ │ ├── guidUtils.ts │ │ │ ├── headersTest.ts │ │ │ ├── inNodeEnv.ts │ │ │ ├── multipartBody.ts │ │ │ ├── recordWithCaseInsensitiveKeysTest.ts │ │ │ ├── requestInformation.ts │ │ │ └── store │ │ │ ├── backedModelProxyTest.ts │ │ │ ├── backingStoreParseNodeFactoryTest.ts │ │ │ ├── backingStoreUtilsTest.ts │ │ │ ├── testEntity.ts │ │ │ └── testEnum.ts │ ├── tsconfig.json │ └── vite.config.mts ├── authentication │ ├── azure │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── azureIdentityAccessTokenProvider.ts │ │ │ ├── azureIdentityAuthenticationProvider.ts │ │ │ ├── index.ts │ │ │ └── observabilityOptions.ts │ │ ├── test │ │ │ └── azureIdentityAuthenticationTest.ts │ │ ├── tsconfig.json │ │ └── vitest.config.mts │ └── spfx │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ ├── azureAdSpfxAccessTokenProvider.ts │ │ ├── azureAdSpfxAuthenticationProvider.ts │ │ ├── index.ts │ │ └── observabilityOptions.ts │ │ ├── test │ │ ├── azureAdSpfxAuthenticationTest.ts │ │ └── mockAadTokenProvider.ts │ │ ├── tsconfig.json │ │ └── vitest.config.mts ├── bundle │ ├── .gitignore │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── defaultRequestAdapter.ts │ │ └── index.ts │ ├── test │ │ └── bundleTests.ts │ ├── tsconfig.json │ └── vite.config.mts ├── http │ └── fetch │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── .prettierignore │ │ ├── .prettierrc │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── docs │ │ └── design │ │ │ ├── chaos-tests.md │ │ │ ├── isomorphic.md │ │ │ └── testing.md │ │ ├── dom.shim.d.ts │ │ ├── package.json │ │ ├── src │ │ ├── browser │ │ │ └── index.ts │ │ ├── fetchRequestAdapter.ts │ │ ├── httpClient.ts │ │ ├── index.ts │ │ ├── kiotaClientFactory.ts │ │ ├── middlewares │ │ │ ├── authorizationHandler.ts │ │ │ ├── browser │ │ │ │ └── middlewareFactory.ts │ │ │ ├── chaosHandler.ts │ │ │ ├── compressionHandler.ts │ │ │ ├── customFetchHandler.ts │ │ │ ├── headersInspectionHandler.ts │ │ │ ├── middleware.ts │ │ │ ├── middlewareFactory.ts │ │ │ ├── options │ │ │ │ ├── ChaosHandlerData.ts │ │ │ │ ├── chaosHandlerOptions.ts │ │ │ │ ├── chaosStrategy.ts │ │ │ │ ├── compressionHandlerOptions.ts │ │ │ │ ├── headersInspectionOptions.ts │ │ │ │ ├── parametersNameDecodingOptions.ts │ │ │ │ ├── redirectHandlerOptions.ts │ │ │ │ ├── retryHandlerOptions.ts │ │ │ │ ├── telemetryHandlerOptions.ts │ │ │ │ ├── urlReplaceHandlerOptions.ts │ │ │ │ ├── userAgentHandlerOptions.ts │ │ │ │ └── version.ts │ │ │ ├── parametersNameDecodingHandler.ts │ │ │ ├── redirectHandler.ts │ │ │ ├── retryHandler.ts │ │ │ ├── telemetryHandler.ts │ │ │ ├── urlReplaceHandler.ts │ │ │ └── userAgentHandler.ts │ │ ├── observabilityOptions.ts │ │ └── utils │ │ │ ├── fetchDefinitions.ts │ │ │ ├── headersUtil.ts │ │ │ └── referDom.d.ts │ │ ├── test │ │ ├── browser │ │ │ ├── httpClient.ts │ │ │ ├── index.ts │ │ │ ├── kiotaClientFactory.ts │ │ │ └── middlewareFactory.ts │ │ ├── common │ │ │ ├── ChaosHandler.ts │ │ │ ├── fetchRequestAdapter.ts │ │ │ ├── middleware │ │ │ │ ├── authorizationHandler.ts │ │ │ │ ├── compressionHandler.ts │ │ │ │ ├── dummyFetchHandler.ts │ │ │ │ ├── headersInspectionHandler.ts │ │ │ │ ├── headersUtil.ts │ │ │ │ ├── parametersNameDecodingHandler.ts │ │ │ │ ├── retryHandler.ts │ │ │ │ ├── retryHandlerOptions.ts │ │ │ │ ├── testCallBackMiddleware.ts │ │ │ │ ├── urlReplaceHandler.ts │ │ │ │ └── userAgentHandler.ts │ │ │ ├── mockEntity.ts │ │ │ └── mockParseNodeFactory.ts │ │ ├── node │ │ │ ├── MiddlewareFactory.ts │ │ │ ├── RedirectHandler.ts │ │ │ ├── RedirectHandlerOptions.ts │ │ │ ├── httpClient.ts │ │ │ └── kiotaClientFactory.ts │ │ └── testUtils.ts │ │ ├── tsconfig.json │ │ └── vitest.config.mts ├── serialization │ ├── form │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── browser │ │ │ │ ├── formParseNodeFactory.ts │ │ │ │ └── index.ts │ │ │ ├── formParseNode.ts │ │ │ ├── formParseNodeFactory.ts │ │ │ ├── formSerializationWriter.ts │ │ │ ├── formSerializationWriterFactory.ts │ │ │ └── index.ts │ │ ├── test │ │ │ ├── browser │ │ │ │ └── index.ts │ │ │ ├── common │ │ │ │ ├── formParseNode.ts │ │ │ │ ├── formParseNodeFactory.ts │ │ │ │ ├── formSerializationWriter.ts │ │ │ │ └── formSerializationWriterFactory.ts │ │ │ └── testEntity.ts │ │ ├── tsconfig.json │ │ └── vitest.config.mts │ ├── json │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── browser │ │ │ │ ├── index.ts │ │ │ │ └── jsonParseNodeFactory.ts │ │ │ ├── index.ts │ │ │ ├── jsonParseNode.ts │ │ │ ├── jsonParseNodeFactory.ts │ │ │ ├── jsonSerializationWriter.ts │ │ │ └── jsonSerializationWriterFactory.ts │ │ ├── test │ │ │ ├── browser │ │ │ │ └── index.ts │ │ │ └── common │ │ │ │ ├── JsonParseNode.ts │ │ │ │ ├── jsonParseNodeFactory.ts │ │ │ │ ├── jsonSerializationWriter.ts │ │ │ │ ├── kiotaSerializer.ts │ │ │ │ ├── testEntity.ts │ │ │ │ ├── testUtils.ts │ │ │ │ ├── unionOfObjectsAndPrimitives.ts │ │ │ │ ├── unionOfObjectsAndPrimitivesTest.ts │ │ │ │ └── untypedTestEntity.ts │ │ ├── tsconfig.json │ │ └── vitest.config.mts │ ├── multipart │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── multipartSerializationWriter.ts │ │ │ └── multipartSerializationWriterFactory.ts │ │ ├── test │ │ │ ├── browser │ │ │ │ └── index.ts │ │ │ ├── common │ │ │ │ ├── multipartSerializationWriter.ts │ │ │ │ └── multipartSerializationWriterFactory.ts │ │ │ └── testEntity.ts │ │ ├── tsconfig.json │ │ └── vitest.config.mts │ └── text │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ ├── browser │ │ │ ├── index.ts │ │ │ └── textParseNodeFactory.ts │ │ ├── index.ts │ │ ├── textParseNode.ts │ │ ├── textParseNodeFactory.ts │ │ ├── textSerializationWriter.ts │ │ └── textSerializationWriterFactory.ts │ │ ├── test │ │ ├── browser │ │ │ └── index.ts │ │ └── common │ │ │ ├── textParseNode.ts │ │ │ ├── textParseNodeFactory.ts │ │ │ └── textSerializationWriter.ts │ │ ├── tsconfig.json │ │ └── vitest.config.mts └── test │ ├── .npmignore │ ├── generatedCode │ ├── apiClient.ts │ ├── kiota-lock.json │ ├── models │ │ ├── index.ts │ │ └── oDataErrors │ │ │ └── index.ts │ └── users │ │ ├── index.ts │ │ └── item │ │ ├── index.ts │ │ ├── inferenceClassification │ │ ├── index.ts │ │ └── overrides │ │ │ ├── count │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── item │ │ │ └── index.ts │ │ ├── mailFolders │ │ └── index.ts │ │ └── messages │ │ ├── count │ │ └── index.ts │ │ ├── index.ts │ │ ├── item │ │ ├── attachments │ │ │ ├── count │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── item │ │ │ │ └── index.ts │ │ │ └── microsoftGraphCreateUploadSession │ │ │ │ └── index.ts │ │ ├── extensions │ │ │ ├── count │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── item │ │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── microsoftGraphCopy │ │ │ └── index.ts │ │ ├── microsoftGraphCreateForward │ │ │ └── index.ts │ │ ├── microsoftGraphCreateReply │ │ │ └── index.ts │ │ ├── microsoftGraphCreateReplyAll │ │ │ └── index.ts │ │ ├── microsoftGraphForward │ │ │ └── index.ts │ │ ├── microsoftGraphMove │ │ │ └── index.ts │ │ ├── microsoftGraphPermanentDelete │ │ │ └── index.ts │ │ ├── microsoftGraphReply │ │ │ └── index.ts │ │ ├── microsoftGraphReplyAll │ │ │ └── index.ts │ │ ├── microsoftGraphSend │ │ │ └── index.ts │ │ └── value │ │ │ └── index.ts │ │ └── microsoftGraphDelta │ │ └── index.ts │ ├── package.json │ ├── tests │ ├── getTest.ts │ ├── postTest.ts │ ├── secrets.ts │ └── testClient.ts │ ├── tsconfig.json │ └── vitest.config.mts ├── prettier.config.cjs ├── release-please-config.json ├── tsconfig.base.json └── vitest.workspace.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @microsoft/kiota-write 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/fabricbot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/.github/fabricbot.json -------------------------------------------------------------------------------- /.github/policies/kiota-typescript-branch-protection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/.github/policies/kiota-typescript-branch-protection.yml -------------------------------------------------------------------------------- /.github/policies/resourceManagement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/.github/policies/resourceManagement.yml -------------------------------------------------------------------------------- /.github/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/.github/release-please.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge-dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/.github/workflows/auto-merge-dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build_test_validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/.github/workflows/build_test_validate.yml -------------------------------------------------------------------------------- /.github/workflows/conflicting-pr-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/.github/workflows/conflicting-pr-label.yml -------------------------------------------------------------------------------- /.github/workflows/release-please-gha.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/.github/workflows/release-please-gha.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/.prettierignore -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/.release-please-manifest.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/package.json -------------------------------------------------------------------------------- /packages/abstractions/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | *.tsbuildinfo -------------------------------------------------------------------------------- /packages/abstractions/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/.npmignore -------------------------------------------------------------------------------- /packages/abstractions/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/CHANGELOG.md -------------------------------------------------------------------------------- /packages/abstractions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/README.md -------------------------------------------------------------------------------- /packages/abstractions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/package.json -------------------------------------------------------------------------------- /packages/abstractions/src/apiClientBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/apiClientBuilder.ts -------------------------------------------------------------------------------- /packages/abstractions/src/apiClientProxifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/apiClientProxifier.ts -------------------------------------------------------------------------------- /packages/abstractions/src/apiError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/apiError.ts -------------------------------------------------------------------------------- /packages/abstractions/src/authentication/accessTokenProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/authentication/accessTokenProvider.ts -------------------------------------------------------------------------------- /packages/abstractions/src/authentication/allowedHostsValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/authentication/allowedHostsValidator.ts -------------------------------------------------------------------------------- /packages/abstractions/src/authentication/anonymousAuthenticationProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/authentication/anonymousAuthenticationProvider.ts -------------------------------------------------------------------------------- /packages/abstractions/src/authentication/apiKeyAuthenticationProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/authentication/apiKeyAuthenticationProvider.ts -------------------------------------------------------------------------------- /packages/abstractions/src/authentication/authenticationProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/authentication/authenticationProvider.ts -------------------------------------------------------------------------------- /packages/abstractions/src/authentication/baseBearerTokenAuthenticationProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/authentication/baseBearerTokenAuthenticationProvider.ts -------------------------------------------------------------------------------- /packages/abstractions/src/authentication/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/authentication/index.ts -------------------------------------------------------------------------------- /packages/abstractions/src/authentication/validateProtocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/authentication/validateProtocol.ts -------------------------------------------------------------------------------- /packages/abstractions/src/baseRequestBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/baseRequestBuilder.ts -------------------------------------------------------------------------------- /packages/abstractions/src/dateOnly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/dateOnly.ts -------------------------------------------------------------------------------- /packages/abstractions/src/duration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/duration.ts -------------------------------------------------------------------------------- /packages/abstractions/src/getPathParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/getPathParameters.ts -------------------------------------------------------------------------------- /packages/abstractions/src/headers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/headers.ts -------------------------------------------------------------------------------- /packages/abstractions/src/httpMethod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/httpMethod.ts -------------------------------------------------------------------------------- /packages/abstractions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/index.ts -------------------------------------------------------------------------------- /packages/abstractions/src/multipartBody.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/multipartBody.ts -------------------------------------------------------------------------------- /packages/abstractions/src/nativeResponseHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/nativeResponseHandler.ts -------------------------------------------------------------------------------- /packages/abstractions/src/nativeResponseWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/nativeResponseWrapper.ts -------------------------------------------------------------------------------- /packages/abstractions/src/recordWithCaseInsensitiveKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/recordWithCaseInsensitiveKeys.ts -------------------------------------------------------------------------------- /packages/abstractions/src/requestAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/requestAdapter.ts -------------------------------------------------------------------------------- /packages/abstractions/src/requestConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/requestConfiguration.ts -------------------------------------------------------------------------------- /packages/abstractions/src/requestInformation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/requestInformation.ts -------------------------------------------------------------------------------- /packages/abstractions/src/requestOption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/requestOption.ts -------------------------------------------------------------------------------- /packages/abstractions/src/responseHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/responseHandler.ts -------------------------------------------------------------------------------- /packages/abstractions/src/responseHandlerOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/responseHandlerOptions.ts -------------------------------------------------------------------------------- /packages/abstractions/src/serialization/additionalDataHolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/serialization/additionalDataHolder.ts -------------------------------------------------------------------------------- /packages/abstractions/src/serialization/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/serialization/index.ts -------------------------------------------------------------------------------- /packages/abstractions/src/serialization/parsable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/serialization/parsable.ts -------------------------------------------------------------------------------- /packages/abstractions/src/serialization/parsableFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/serialization/parsableFactory.ts -------------------------------------------------------------------------------- /packages/abstractions/src/serialization/parseNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/serialization/parseNode.ts -------------------------------------------------------------------------------- /packages/abstractions/src/serialization/parseNodeFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/serialization/parseNodeFactory.ts -------------------------------------------------------------------------------- /packages/abstractions/src/serialization/parseNodeFactoryRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/serialization/parseNodeFactoryRegistry.ts -------------------------------------------------------------------------------- /packages/abstractions/src/serialization/parseNodeProxyFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/serialization/parseNodeProxyFactory.ts -------------------------------------------------------------------------------- /packages/abstractions/src/serialization/serializationFunctionTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/serialization/serializationFunctionTypes.ts -------------------------------------------------------------------------------- /packages/abstractions/src/serialization/serializationWriter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/serialization/serializationWriter.ts -------------------------------------------------------------------------------- /packages/abstractions/src/serialization/serializationWriterFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/serialization/serializationWriterFactory.ts -------------------------------------------------------------------------------- /packages/abstractions/src/serialization/serializationWriterFactoryRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/serialization/serializationWriterFactoryRegistry.ts -------------------------------------------------------------------------------- /packages/abstractions/src/serialization/serializationWriterProxyFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/serialization/serializationWriterProxyFactory.ts -------------------------------------------------------------------------------- /packages/abstractions/src/serialization/untypedArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/serialization/untypedArray.ts -------------------------------------------------------------------------------- /packages/abstractions/src/serialization/untypedBoolean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/serialization/untypedBoolean.ts -------------------------------------------------------------------------------- /packages/abstractions/src/serialization/untypedNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/serialization/untypedNode.ts -------------------------------------------------------------------------------- /packages/abstractions/src/serialization/untypedNull.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/serialization/untypedNull.ts -------------------------------------------------------------------------------- /packages/abstractions/src/serialization/untypedNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/serialization/untypedNumber.ts -------------------------------------------------------------------------------- /packages/abstractions/src/serialization/untypedObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/serialization/untypedObject.ts -------------------------------------------------------------------------------- /packages/abstractions/src/serialization/untypedString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/serialization/untypedString.ts -------------------------------------------------------------------------------- /packages/abstractions/src/store/backedModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/store/backedModel.ts -------------------------------------------------------------------------------- /packages/abstractions/src/store/backedModelProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/store/backedModelProxy.ts -------------------------------------------------------------------------------- /packages/abstractions/src/store/backingStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/store/backingStore.ts -------------------------------------------------------------------------------- /packages/abstractions/src/store/backingStoreFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/store/backingStoreFactory.ts -------------------------------------------------------------------------------- /packages/abstractions/src/store/backingStoreParseNodeFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/store/backingStoreParseNodeFactory.ts -------------------------------------------------------------------------------- /packages/abstractions/src/store/backingStoreSerializationWriterProxyFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/store/backingStoreSerializationWriterProxyFactory.ts -------------------------------------------------------------------------------- /packages/abstractions/src/store/backingStoreUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/store/backingStoreUtils.ts -------------------------------------------------------------------------------- /packages/abstractions/src/store/inMemoryBackingStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/store/inMemoryBackingStore.ts -------------------------------------------------------------------------------- /packages/abstractions/src/store/inMemoryBackingStoreFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/store/inMemoryBackingStoreFactory.ts -------------------------------------------------------------------------------- /packages/abstractions/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/store/index.ts -------------------------------------------------------------------------------- /packages/abstractions/src/timeOnly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/timeOnly.ts -------------------------------------------------------------------------------- /packages/abstractions/src/utils/enumUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/utils/enumUtils.ts -------------------------------------------------------------------------------- /packages/abstractions/src/utils/guidUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/utils/guidUtils.ts -------------------------------------------------------------------------------- /packages/abstractions/src/utils/inNodeEnv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/utils/inNodeEnv.ts -------------------------------------------------------------------------------- /packages/abstractions/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/src/utils/index.ts -------------------------------------------------------------------------------- /packages/abstractions/test/common/apiClientProxifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/test/common/apiClientProxifier.ts -------------------------------------------------------------------------------- /packages/abstractions/test/common/authentication/allowedHostsValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/test/common/authentication/allowedHostsValidator.ts -------------------------------------------------------------------------------- /packages/abstractions/test/common/authentication/apiKeyAuthenticationProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/test/common/authentication/apiKeyAuthenticationProvider.ts -------------------------------------------------------------------------------- /packages/abstractions/test/common/authentication/validateProtocolTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/test/common/authentication/validateProtocolTest.ts -------------------------------------------------------------------------------- /packages/abstractions/test/common/dateOnly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/test/common/dateOnly.ts -------------------------------------------------------------------------------- /packages/abstractions/test/common/guidUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/test/common/guidUtils.ts -------------------------------------------------------------------------------- /packages/abstractions/test/common/headersTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/test/common/headersTest.ts -------------------------------------------------------------------------------- /packages/abstractions/test/common/inNodeEnv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/test/common/inNodeEnv.ts -------------------------------------------------------------------------------- /packages/abstractions/test/common/multipartBody.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/test/common/multipartBody.ts -------------------------------------------------------------------------------- /packages/abstractions/test/common/recordWithCaseInsensitiveKeysTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/test/common/recordWithCaseInsensitiveKeysTest.ts -------------------------------------------------------------------------------- /packages/abstractions/test/common/requestInformation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/test/common/requestInformation.ts -------------------------------------------------------------------------------- /packages/abstractions/test/common/store/backedModelProxyTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/test/common/store/backedModelProxyTest.ts -------------------------------------------------------------------------------- /packages/abstractions/test/common/store/backingStoreParseNodeFactoryTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/test/common/store/backingStoreParseNodeFactoryTest.ts -------------------------------------------------------------------------------- /packages/abstractions/test/common/store/backingStoreUtilsTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/test/common/store/backingStoreUtilsTest.ts -------------------------------------------------------------------------------- /packages/abstractions/test/common/store/testEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/test/common/store/testEntity.ts -------------------------------------------------------------------------------- /packages/abstractions/test/common/store/testEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/test/common/store/testEnum.ts -------------------------------------------------------------------------------- /packages/abstractions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/tsconfig.json -------------------------------------------------------------------------------- /packages/abstractions/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/abstractions/vite.config.mts -------------------------------------------------------------------------------- /packages/authentication/azure/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | *.tsbuildinfo -------------------------------------------------------------------------------- /packages/authentication/azure/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/authentication/azure/.npmignore -------------------------------------------------------------------------------- /packages/authentication/azure/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/authentication/azure/CHANGELOG.md -------------------------------------------------------------------------------- /packages/authentication/azure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/authentication/azure/README.md -------------------------------------------------------------------------------- /packages/authentication/azure/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/authentication/azure/package.json -------------------------------------------------------------------------------- /packages/authentication/azure/src/azureIdentityAccessTokenProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/authentication/azure/src/azureIdentityAccessTokenProvider.ts -------------------------------------------------------------------------------- /packages/authentication/azure/src/azureIdentityAuthenticationProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/authentication/azure/src/azureIdentityAuthenticationProvider.ts -------------------------------------------------------------------------------- /packages/authentication/azure/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/authentication/azure/src/index.ts -------------------------------------------------------------------------------- /packages/authentication/azure/src/observabilityOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/authentication/azure/src/observabilityOptions.ts -------------------------------------------------------------------------------- /packages/authentication/azure/test/azureIdentityAuthenticationTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/authentication/azure/test/azureIdentityAuthenticationTest.ts -------------------------------------------------------------------------------- /packages/authentication/azure/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/authentication/azure/tsconfig.json -------------------------------------------------------------------------------- /packages/authentication/azure/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/authentication/azure/vitest.config.mts -------------------------------------------------------------------------------- /packages/authentication/spfx/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | *.tsbuildinfo -------------------------------------------------------------------------------- /packages/authentication/spfx/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/authentication/spfx/.npmignore -------------------------------------------------------------------------------- /packages/authentication/spfx/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/authentication/spfx/CHANGELOG.md -------------------------------------------------------------------------------- /packages/authentication/spfx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/authentication/spfx/README.md -------------------------------------------------------------------------------- /packages/authentication/spfx/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/authentication/spfx/package.json -------------------------------------------------------------------------------- /packages/authentication/spfx/src/azureAdSpfxAccessTokenProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/authentication/spfx/src/azureAdSpfxAccessTokenProvider.ts -------------------------------------------------------------------------------- /packages/authentication/spfx/src/azureAdSpfxAuthenticationProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/authentication/spfx/src/azureAdSpfxAuthenticationProvider.ts -------------------------------------------------------------------------------- /packages/authentication/spfx/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/authentication/spfx/src/index.ts -------------------------------------------------------------------------------- /packages/authentication/spfx/src/observabilityOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/authentication/spfx/src/observabilityOptions.ts -------------------------------------------------------------------------------- /packages/authentication/spfx/test/azureAdSpfxAuthenticationTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/authentication/spfx/test/azureAdSpfxAuthenticationTest.ts -------------------------------------------------------------------------------- /packages/authentication/spfx/test/mockAadTokenProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/authentication/spfx/test/mockAadTokenProvider.ts -------------------------------------------------------------------------------- /packages/authentication/spfx/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/authentication/spfx/tsconfig.json -------------------------------------------------------------------------------- /packages/authentication/spfx/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/authentication/spfx/vitest.config.mts -------------------------------------------------------------------------------- /packages/bundle/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | *.tsbuildinfo -------------------------------------------------------------------------------- /packages/bundle/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/bundle/.npmignore -------------------------------------------------------------------------------- /packages/bundle/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/bundle/CHANGELOG.md -------------------------------------------------------------------------------- /packages/bundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/bundle/README.md -------------------------------------------------------------------------------- /packages/bundle/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/bundle/package.json -------------------------------------------------------------------------------- /packages/bundle/src/defaultRequestAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/bundle/src/defaultRequestAdapter.ts -------------------------------------------------------------------------------- /packages/bundle/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/bundle/src/index.ts -------------------------------------------------------------------------------- /packages/bundle/test/bundleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/bundle/test/bundleTests.ts -------------------------------------------------------------------------------- /packages/bundle/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/bundle/tsconfig.json -------------------------------------------------------------------------------- /packages/bundle/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/bundle/vite.config.mts -------------------------------------------------------------------------------- /packages/http/fetch/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | *.tsbuildinfo -------------------------------------------------------------------------------- /packages/http/fetch/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/.npmignore -------------------------------------------------------------------------------- /packages/http/fetch/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/.prettierignore -------------------------------------------------------------------------------- /packages/http/fetch/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/.prettierrc -------------------------------------------------------------------------------- /packages/http/fetch/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/CHANGELOG.md -------------------------------------------------------------------------------- /packages/http/fetch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/README.md -------------------------------------------------------------------------------- /packages/http/fetch/docs/design/chaos-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/docs/design/chaos-tests.md -------------------------------------------------------------------------------- /packages/http/fetch/docs/design/isomorphic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/docs/design/isomorphic.md -------------------------------------------------------------------------------- /packages/http/fetch/docs/design/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/docs/design/testing.md -------------------------------------------------------------------------------- /packages/http/fetch/dom.shim.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/dom.shim.d.ts -------------------------------------------------------------------------------- /packages/http/fetch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/package.json -------------------------------------------------------------------------------- /packages/http/fetch/src/browser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/browser/index.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/fetchRequestAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/fetchRequestAdapter.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/httpClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/httpClient.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/index.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/kiotaClientFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/kiotaClientFactory.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/middlewares/authorizationHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/middlewares/authorizationHandler.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/middlewares/browser/middlewareFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/middlewares/browser/middlewareFactory.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/middlewares/chaosHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/middlewares/chaosHandler.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/middlewares/compressionHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/middlewares/compressionHandler.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/middlewares/customFetchHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/middlewares/customFetchHandler.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/middlewares/headersInspectionHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/middlewares/headersInspectionHandler.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/middlewares/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/middlewares/middleware.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/middlewares/middlewareFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/middlewares/middlewareFactory.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/middlewares/options/ChaosHandlerData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/middlewares/options/ChaosHandlerData.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/middlewares/options/chaosHandlerOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/middlewares/options/chaosHandlerOptions.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/middlewares/options/chaosStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/middlewares/options/chaosStrategy.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/middlewares/options/compressionHandlerOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/middlewares/options/compressionHandlerOptions.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/middlewares/options/headersInspectionOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/middlewares/options/headersInspectionOptions.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/middlewares/options/parametersNameDecodingOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/middlewares/options/parametersNameDecodingOptions.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/middlewares/options/redirectHandlerOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/middlewares/options/redirectHandlerOptions.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/middlewares/options/retryHandlerOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/middlewares/options/retryHandlerOptions.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/middlewares/options/telemetryHandlerOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/middlewares/options/telemetryHandlerOptions.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/middlewares/options/urlReplaceHandlerOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/middlewares/options/urlReplaceHandlerOptions.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/middlewares/options/userAgentHandlerOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/middlewares/options/userAgentHandlerOptions.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/middlewares/options/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/middlewares/options/version.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/middlewares/parametersNameDecodingHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/middlewares/parametersNameDecodingHandler.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/middlewares/redirectHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/middlewares/redirectHandler.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/middlewares/retryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/middlewares/retryHandler.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/middlewares/telemetryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/middlewares/telemetryHandler.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/middlewares/urlReplaceHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/middlewares/urlReplaceHandler.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/middlewares/userAgentHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/middlewares/userAgentHandler.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/observabilityOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/observabilityOptions.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/utils/fetchDefinitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/utils/fetchDefinitions.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/utils/headersUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/utils/headersUtil.ts -------------------------------------------------------------------------------- /packages/http/fetch/src/utils/referDom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/src/utils/referDom.d.ts -------------------------------------------------------------------------------- /packages/http/fetch/test/browser/httpClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/test/browser/httpClient.ts -------------------------------------------------------------------------------- /packages/http/fetch/test/browser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/test/browser/index.ts -------------------------------------------------------------------------------- /packages/http/fetch/test/browser/kiotaClientFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/test/browser/kiotaClientFactory.ts -------------------------------------------------------------------------------- /packages/http/fetch/test/browser/middlewareFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/test/browser/middlewareFactory.ts -------------------------------------------------------------------------------- /packages/http/fetch/test/common/ChaosHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/test/common/ChaosHandler.ts -------------------------------------------------------------------------------- /packages/http/fetch/test/common/fetchRequestAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/test/common/fetchRequestAdapter.ts -------------------------------------------------------------------------------- /packages/http/fetch/test/common/middleware/authorizationHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/test/common/middleware/authorizationHandler.ts -------------------------------------------------------------------------------- /packages/http/fetch/test/common/middleware/compressionHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/test/common/middleware/compressionHandler.ts -------------------------------------------------------------------------------- /packages/http/fetch/test/common/middleware/dummyFetchHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/test/common/middleware/dummyFetchHandler.ts -------------------------------------------------------------------------------- /packages/http/fetch/test/common/middleware/headersInspectionHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/test/common/middleware/headersInspectionHandler.ts -------------------------------------------------------------------------------- /packages/http/fetch/test/common/middleware/headersUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/test/common/middleware/headersUtil.ts -------------------------------------------------------------------------------- /packages/http/fetch/test/common/middleware/parametersNameDecodingHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/test/common/middleware/parametersNameDecodingHandler.ts -------------------------------------------------------------------------------- /packages/http/fetch/test/common/middleware/retryHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/test/common/middleware/retryHandler.ts -------------------------------------------------------------------------------- /packages/http/fetch/test/common/middleware/retryHandlerOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/test/common/middleware/retryHandlerOptions.ts -------------------------------------------------------------------------------- /packages/http/fetch/test/common/middleware/testCallBackMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/test/common/middleware/testCallBackMiddleware.ts -------------------------------------------------------------------------------- /packages/http/fetch/test/common/middleware/urlReplaceHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/test/common/middleware/urlReplaceHandler.ts -------------------------------------------------------------------------------- /packages/http/fetch/test/common/middleware/userAgentHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/test/common/middleware/userAgentHandler.ts -------------------------------------------------------------------------------- /packages/http/fetch/test/common/mockEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/test/common/mockEntity.ts -------------------------------------------------------------------------------- /packages/http/fetch/test/common/mockParseNodeFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/test/common/mockParseNodeFactory.ts -------------------------------------------------------------------------------- /packages/http/fetch/test/node/MiddlewareFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/test/node/MiddlewareFactory.ts -------------------------------------------------------------------------------- /packages/http/fetch/test/node/RedirectHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/test/node/RedirectHandler.ts -------------------------------------------------------------------------------- /packages/http/fetch/test/node/RedirectHandlerOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/test/node/RedirectHandlerOptions.ts -------------------------------------------------------------------------------- /packages/http/fetch/test/node/httpClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/test/node/httpClient.ts -------------------------------------------------------------------------------- /packages/http/fetch/test/node/kiotaClientFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/test/node/kiotaClientFactory.ts -------------------------------------------------------------------------------- /packages/http/fetch/test/testUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/test/testUtils.ts -------------------------------------------------------------------------------- /packages/http/fetch/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/tsconfig.json -------------------------------------------------------------------------------- /packages/http/fetch/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/http/fetch/vitest.config.mts -------------------------------------------------------------------------------- /packages/serialization/form/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | *.tsbuildinfo -------------------------------------------------------------------------------- /packages/serialization/form/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/form/.npmignore -------------------------------------------------------------------------------- /packages/serialization/form/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/form/CHANGELOG.md -------------------------------------------------------------------------------- /packages/serialization/form/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/form/README.md -------------------------------------------------------------------------------- /packages/serialization/form/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/form/package.json -------------------------------------------------------------------------------- /packages/serialization/form/src/browser/formParseNodeFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/form/src/browser/formParseNodeFactory.ts -------------------------------------------------------------------------------- /packages/serialization/form/src/browser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/form/src/browser/index.ts -------------------------------------------------------------------------------- /packages/serialization/form/src/formParseNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/form/src/formParseNode.ts -------------------------------------------------------------------------------- /packages/serialization/form/src/formParseNodeFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/form/src/formParseNodeFactory.ts -------------------------------------------------------------------------------- /packages/serialization/form/src/formSerializationWriter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/form/src/formSerializationWriter.ts -------------------------------------------------------------------------------- /packages/serialization/form/src/formSerializationWriterFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/form/src/formSerializationWriterFactory.ts -------------------------------------------------------------------------------- /packages/serialization/form/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/form/src/index.ts -------------------------------------------------------------------------------- /packages/serialization/form/test/browser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/form/test/browser/index.ts -------------------------------------------------------------------------------- /packages/serialization/form/test/common/formParseNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/form/test/common/formParseNode.ts -------------------------------------------------------------------------------- /packages/serialization/form/test/common/formParseNodeFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/form/test/common/formParseNodeFactory.ts -------------------------------------------------------------------------------- /packages/serialization/form/test/common/formSerializationWriter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/form/test/common/formSerializationWriter.ts -------------------------------------------------------------------------------- /packages/serialization/form/test/common/formSerializationWriterFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/form/test/common/formSerializationWriterFactory.ts -------------------------------------------------------------------------------- /packages/serialization/form/test/testEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/form/test/testEntity.ts -------------------------------------------------------------------------------- /packages/serialization/form/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/form/tsconfig.json -------------------------------------------------------------------------------- /packages/serialization/form/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/form/vitest.config.mts -------------------------------------------------------------------------------- /packages/serialization/json/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | *.tsbuildinfo -------------------------------------------------------------------------------- /packages/serialization/json/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/json/.npmignore -------------------------------------------------------------------------------- /packages/serialization/json/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/json/CHANGELOG.md -------------------------------------------------------------------------------- /packages/serialization/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/json/README.md -------------------------------------------------------------------------------- /packages/serialization/json/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/json/package.json -------------------------------------------------------------------------------- /packages/serialization/json/src/browser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/json/src/browser/index.ts -------------------------------------------------------------------------------- /packages/serialization/json/src/browser/jsonParseNodeFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/json/src/browser/jsonParseNodeFactory.ts -------------------------------------------------------------------------------- /packages/serialization/json/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/json/src/index.ts -------------------------------------------------------------------------------- /packages/serialization/json/src/jsonParseNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/json/src/jsonParseNode.ts -------------------------------------------------------------------------------- /packages/serialization/json/src/jsonParseNodeFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/json/src/jsonParseNodeFactory.ts -------------------------------------------------------------------------------- /packages/serialization/json/src/jsonSerializationWriter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/json/src/jsonSerializationWriter.ts -------------------------------------------------------------------------------- /packages/serialization/json/src/jsonSerializationWriterFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/json/src/jsonSerializationWriterFactory.ts -------------------------------------------------------------------------------- /packages/serialization/json/test/browser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/json/test/browser/index.ts -------------------------------------------------------------------------------- /packages/serialization/json/test/common/JsonParseNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/json/test/common/JsonParseNode.ts -------------------------------------------------------------------------------- /packages/serialization/json/test/common/jsonParseNodeFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/json/test/common/jsonParseNodeFactory.ts -------------------------------------------------------------------------------- /packages/serialization/json/test/common/jsonSerializationWriter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/json/test/common/jsonSerializationWriter.ts -------------------------------------------------------------------------------- /packages/serialization/json/test/common/kiotaSerializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/json/test/common/kiotaSerializer.ts -------------------------------------------------------------------------------- /packages/serialization/json/test/common/testEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/json/test/common/testEntity.ts -------------------------------------------------------------------------------- /packages/serialization/json/test/common/testUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/json/test/common/testUtils.ts -------------------------------------------------------------------------------- /packages/serialization/json/test/common/unionOfObjectsAndPrimitives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/json/test/common/unionOfObjectsAndPrimitives.ts -------------------------------------------------------------------------------- /packages/serialization/json/test/common/unionOfObjectsAndPrimitivesTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/json/test/common/unionOfObjectsAndPrimitivesTest.ts -------------------------------------------------------------------------------- /packages/serialization/json/test/common/untypedTestEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/json/test/common/untypedTestEntity.ts -------------------------------------------------------------------------------- /packages/serialization/json/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/json/tsconfig.json -------------------------------------------------------------------------------- /packages/serialization/json/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/json/vitest.config.mts -------------------------------------------------------------------------------- /packages/serialization/multipart/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | *.tsbuildinfo -------------------------------------------------------------------------------- /packages/serialization/multipart/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/multipart/.npmignore -------------------------------------------------------------------------------- /packages/serialization/multipart/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/multipart/CHANGELOG.md -------------------------------------------------------------------------------- /packages/serialization/multipart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/multipart/README.md -------------------------------------------------------------------------------- /packages/serialization/multipart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/multipart/package.json -------------------------------------------------------------------------------- /packages/serialization/multipart/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/multipart/src/index.ts -------------------------------------------------------------------------------- /packages/serialization/multipart/src/multipartSerializationWriter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/multipart/src/multipartSerializationWriter.ts -------------------------------------------------------------------------------- /packages/serialization/multipart/src/multipartSerializationWriterFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/multipart/src/multipartSerializationWriterFactory.ts -------------------------------------------------------------------------------- /packages/serialization/multipart/test/browser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/multipart/test/browser/index.ts -------------------------------------------------------------------------------- /packages/serialization/multipart/test/common/multipartSerializationWriter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/multipart/test/common/multipartSerializationWriter.ts -------------------------------------------------------------------------------- /packages/serialization/multipart/test/common/multipartSerializationWriterFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/multipart/test/common/multipartSerializationWriterFactory.ts -------------------------------------------------------------------------------- /packages/serialization/multipart/test/testEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/multipart/test/testEntity.ts -------------------------------------------------------------------------------- /packages/serialization/multipart/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/multipart/tsconfig.json -------------------------------------------------------------------------------- /packages/serialization/multipart/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/multipart/vitest.config.mts -------------------------------------------------------------------------------- /packages/serialization/text/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | *.tsbuildinfo -------------------------------------------------------------------------------- /packages/serialization/text/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/text/.npmignore -------------------------------------------------------------------------------- /packages/serialization/text/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/text/CHANGELOG.md -------------------------------------------------------------------------------- /packages/serialization/text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/text/README.md -------------------------------------------------------------------------------- /packages/serialization/text/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/text/package.json -------------------------------------------------------------------------------- /packages/serialization/text/src/browser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/text/src/browser/index.ts -------------------------------------------------------------------------------- /packages/serialization/text/src/browser/textParseNodeFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/text/src/browser/textParseNodeFactory.ts -------------------------------------------------------------------------------- /packages/serialization/text/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/text/src/index.ts -------------------------------------------------------------------------------- /packages/serialization/text/src/textParseNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/text/src/textParseNode.ts -------------------------------------------------------------------------------- /packages/serialization/text/src/textParseNodeFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/text/src/textParseNodeFactory.ts -------------------------------------------------------------------------------- /packages/serialization/text/src/textSerializationWriter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/text/src/textSerializationWriter.ts -------------------------------------------------------------------------------- /packages/serialization/text/src/textSerializationWriterFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/text/src/textSerializationWriterFactory.ts -------------------------------------------------------------------------------- /packages/serialization/text/test/browser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/text/test/browser/index.ts -------------------------------------------------------------------------------- /packages/serialization/text/test/common/textParseNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/text/test/common/textParseNode.ts -------------------------------------------------------------------------------- /packages/serialization/text/test/common/textParseNodeFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/text/test/common/textParseNodeFactory.ts -------------------------------------------------------------------------------- /packages/serialization/text/test/common/textSerializationWriter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/text/test/common/textSerializationWriter.ts -------------------------------------------------------------------------------- /packages/serialization/text/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/text/tsconfig.json -------------------------------------------------------------------------------- /packages/serialization/text/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/serialization/text/vitest.config.mts -------------------------------------------------------------------------------- /packages/test/.npmignore: -------------------------------------------------------------------------------- 1 | tests/ 2 | generatedCode/ 3 | *.tsbuildinfo -------------------------------------------------------------------------------- /packages/test/generatedCode/apiClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/apiClient.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/kiota-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/kiota-lock.json -------------------------------------------------------------------------------- /packages/test/generatedCode/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/models/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/models/oDataErrors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/models/oDataErrors/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/inferenceClassification/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/inferenceClassification/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/inferenceClassification/overrides/count/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/inferenceClassification/overrides/count/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/inferenceClassification/overrides/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/inferenceClassification/overrides/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/inferenceClassification/overrides/item/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/inferenceClassification/overrides/item/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/mailFolders/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/mailFolders/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/messages/count/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/messages/count/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/messages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/messages/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/messages/item/attachments/count/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/messages/item/attachments/count/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/messages/item/attachments/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/messages/item/attachments/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/messages/item/attachments/item/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/messages/item/attachments/item/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/messages/item/attachments/microsoftGraphCreateUploadSession/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/messages/item/attachments/microsoftGraphCreateUploadSession/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/messages/item/extensions/count/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/messages/item/extensions/count/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/messages/item/extensions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/messages/item/extensions/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/messages/item/extensions/item/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/messages/item/extensions/item/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/messages/item/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/messages/item/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/messages/item/microsoftGraphCopy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/messages/item/microsoftGraphCopy/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/messages/item/microsoftGraphCreateForward/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/messages/item/microsoftGraphCreateForward/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/messages/item/microsoftGraphCreateReply/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/messages/item/microsoftGraphCreateReply/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/messages/item/microsoftGraphCreateReplyAll/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/messages/item/microsoftGraphCreateReplyAll/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/messages/item/microsoftGraphForward/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/messages/item/microsoftGraphForward/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/messages/item/microsoftGraphMove/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/messages/item/microsoftGraphMove/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/messages/item/microsoftGraphPermanentDelete/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/messages/item/microsoftGraphPermanentDelete/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/messages/item/microsoftGraphReply/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/messages/item/microsoftGraphReply/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/messages/item/microsoftGraphReplyAll/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/messages/item/microsoftGraphReplyAll/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/messages/item/microsoftGraphSend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/messages/item/microsoftGraphSend/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/messages/item/value/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/messages/item/value/index.ts -------------------------------------------------------------------------------- /packages/test/generatedCode/users/item/messages/microsoftGraphDelta/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/generatedCode/users/item/messages/microsoftGraphDelta/index.ts -------------------------------------------------------------------------------- /packages/test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/package.json -------------------------------------------------------------------------------- /packages/test/tests/getTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/tests/getTest.ts -------------------------------------------------------------------------------- /packages/test/tests/postTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/tests/postTest.ts -------------------------------------------------------------------------------- /packages/test/tests/secrets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/tests/secrets.ts -------------------------------------------------------------------------------- /packages/test/tests/testClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/tests/testClient.ts -------------------------------------------------------------------------------- /packages/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/tsconfig.json -------------------------------------------------------------------------------- /packages/test/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/packages/test/vitest.config.mts -------------------------------------------------------------------------------- /prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/prettier.config.cjs -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/release-please-config.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /vitest.workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/kiota-typescript/HEAD/vitest.workspace.ts --------------------------------------------------------------------------------