msgraph-sdk-typescript
msgraph-sdk-typescript copied to clipboard
reflection of https://github.com/microsoftgraph/msgraph-beta-sdk-java/issues/940 on this repository. We want: - [ ] release please header file (yaml .github/release-please.yml) - [ ] release please manifest (json .release-please-manifest.json) - [ ] release please...
Leverage the [kiota-dom-export-diff-tool](https://github.com/microsoftgraph/kiota-dom-export-diff-too) to check for breaking changes in our weekly generation as a PoC before adding to other languages. For reference: - https://github.com/microsoftgraph/msgraph-sdk-dotnet/pull/2626 - https://github.com/microsoftgraph/msgraph-sdk-java/pull/2141
This is a follow-up on #479. Originally we've discussed a validation of the input parameter for the method `graphClient.applications.byApplicationId("")` https://github.com/microsoftgraph/msgraph-sdk-typescript/blob/2c6c78a9a893ce2b244f34a0d1f0cfeff3e75dda/packages/msgraph-sdk-applications/applications/index.ts#L48-L52 Now I think the method is straight-up wrong. Because the...
Currently, getting started instructions are missing the steps to configure the auth provider. We're referencing our live documentation, which unfortunately isn't working, because it's incompatible with this SDK. To help...
Sample object missing in the global barrels File Sample Link : https://docs.microsoft.com/en-us/graph/api/chatmessage-post?view=graph-rest-beta&tabs=go Actual ```typescript import { BatchRecordDecisionsPostRequestBody } from '../models'; ``` Expected ```typescript import { BatchRecordDecisionsPostRequestBody } from '../identityGovernance/accessReviews/definitions/item/instances/item/batchRecordDecisions/batchRecordDecisionsPostRequestBody'; ```
Request Builder is missing a `PUT` request method. Only Patch is available Sample Link Go: https://docs.microsoft.com/en-us/graph/api/shift-put?view=graph-rest-beta&tabs=go Example Expected ```typescript const requestBody1 : Shift = { lastModifiedBy : { application :...
- Test the latest generation code from Kiota main - Set up unit tests for node and browser which validated the generation process.
currently our readmes don't show how to get started if you go on npm. All readmes for v1 and beta should be updated to reflect how to install the package...