Skip to content

Commit be5600c

Browse files
committed
feat: Remove deprecated SCIM2 API files; clean up organization and profile management endpoints
1 parent eda115b commit be5600c

17 files changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
applyTo: '**'
3+
---
4+
5+
# `@asgardeo/react` SDK Documentation
6+
7+
## Quick Start
8+
9+
1. Add `<AsgardeoProvider />` to your app
10+
11+
```tsx
12+
import { StrictMode } from 'react'
13+
import { createRoot } from 'react-dom/client'
14+
import './index.css'
15+
import App from './App.tsx'
16+
import { AsgardeoProvider } from '@asgardeo/react'
17+
18+
createRoot(document.getElementById('root')).render(
19+
<StrictMode>
20+
<AsgardeoProvider
21+
baseUrl: '<your-organization-name>'
22+
clientId: '<your-app-client-id>'
23+
>
24+
<App />
25+
</AsgardeoProvider>
26+
</StrictMode>
27+
)
28+
```

packages/javascript/src/api/scim2/createOrganization.ts

Whitespace-only changes.

packages/javascript/src/api/scim2/getAllOrganizations.ts

Whitespace-only changes.

packages/javascript/src/api/scim2/getMeOrganizations.ts

Whitespace-only changes.

packages/javascript/src/api/scim2/getOrganization.ts

Whitespace-only changes.

packages/javascript/src/api/scim2/getSchemas.ts

Whitespace-only changes.

packages/javascript/src/api/scim2/index.ts

Whitespace-only changes.

packages/javascript/src/api/scim2/updateMeProfile.ts

Whitespace-only changes.

packages/javascript/src/api/scim2/updateOrganization.ts

Whitespace-only changes.

packages/react/src/api/scim2/createOrganization.ts

Whitespace-only changes.

0 commit comments

Comments
 (0)