Skip to content

Commit

Permalink
docs: replace all mentions of Ory Kratos SDK with Ory SDK (#2187)
Browse files Browse the repository at this point in the history
  • Loading branch information
vinckr committed Feb 2, 2022
1 parent ac0febb commit 4e6897f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/docs/sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ repositories:
- [.NET](https://www.nuget.org/packages/Ory.Kratos.Client/)
- [Go](https://github.com/ory/kratos-client-go)
- [Java](https://search.maven.org/artifact/sh.ory.kratos/kratos-client)
- [JavaScript](https://www.npmjs.com/package/@ory/kratos-client) with TypeScript
- [JavaScript](https://www.npmjs.com/package/@ory/client) with TypeScript
definitions and compatible with: NodeJS, ReactJS, AngularJS, Vue.js, and many
more.
- [PHP](https://packagist.org/packages/ory/kratos-client)
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/self-service.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ snippet:
```tsx
import React, { useState, useEffect } from 'react'
import { Text, TextInput, View } from 'react-native'
import { Configuration, V0alpha2Api, LoginFlow } from '@ory/kratos-client'
import { Configuration, V0alpha2Api, LoginFlow } from '@ory/client'

const kratos = new V0alpha2Api(
new Configuration({ basePath: 'https://playground.projects.oryapis.com/api/kratos/public' })
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Configuration, V0alpha1Api } from '@ory/kratos-client';
import { Configuration, V0alpha1Api } from '@ory/client';
const kratos = new V0alpha1Api(new Configuration({ basePath: 'https://playground.projects.oryapis.com/api/kratos/public/' }));

const route = (req: Request, res: Response) => {
Expand Down
2 changes: 1 addition & 1 deletion docs/versioned_docs/version-v0.8/sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ repositories:
- [.NET](https://www.nuget.org/packages/Ory.Kratos.Client/)
- [Go](https://github.com/ory/kratos-client-go)
- [Java](https://search.maven.org/artifact/sh.ory.kratos/kratos-client)
- [JavaScript](https://www.npmjs.com/package/@ory/kratos-client) with TypeScript
- [JavaScript](https://www.npmjs.com/package/@ory/client) with TypeScript
definitions and compatible with: NodeJS, ReactJS, AngularJS, Vue.js, and many
more.
- [PHP](https://packagist.org/packages/ory/kratos-client)
Expand Down
2 changes: 1 addition & 1 deletion docs/versioned_docs/version-v0.8/self-service.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ snippet:
```tsx
import React, { useState, useEffect } from 'react'
import { Text, TextInput, View } from 'react-native'
import { Configuration, V0alpha2Api, LoginFlow } from '@ory/kratos-client'
import { Configuration, V0alpha2Api, LoginFlow } from '@ory/client'

const kratos = new V0alpha2Api(
new Configuration({ basePath: 'https://playground.projects.oryapis.com/api/kratos/public' })
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Configuration, V0alpha1Api } from '@ory/kratos-client';
import { Configuration, V0alpha1Api } from '@ory/client';
const kratos = new V0alpha1Api(new Configuration({ basePath: 'https://playground.projects.oryapis.com/api/kratos/public/' }));

const route = (req: Request, res: Response) => {
Expand Down

0 comments on commit 4e6897f

Please sign in to comment.