Skip to content

Commit 50ab48d

Browse files
committed
fix createMembership
1 parent 92539d9 commit 50ab48d

File tree

129 files changed

+522
-124
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

129 files changed

+522
-124
lines changed

docs/examples/account/create-anonymous-session.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
```javascript
12
import { Client, Account } from "appwrite";
23

34
const client = new Client()
@@ -9,3 +10,4 @@ const account = new Account(client);
910
const result = await account.createAnonymousSession();
1011

1112
console.log(result);
13+
```

docs/examples/account/create-email-password-session.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
```javascript
12
import { Client, Account } from "appwrite";
23

34
const client = new Client()
@@ -12,3 +13,4 @@ const result = await account.createEmailPasswordSession({
1213
});
1314

1415
console.log(result);
16+
```

docs/examples/account/create-email-token.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
```javascript
12
import { Client, Account } from "appwrite";
23

34
const client = new Client()
@@ -13,3 +14,4 @@ const result = await account.createEmailToken({
1314
});
1415

1516
console.log(result);
17+
```

docs/examples/account/create-email-verification.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
```javascript
12
import { Client, Account } from "appwrite";
23

34
const client = new Client()
@@ -11,3 +12,4 @@ const result = await account.createEmailVerification({
1112
});
1213

1314
console.log(result);
15+
```

docs/examples/account/create-jwt.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
```javascript
12
import { Client, Account } from "appwrite";
23

34
const client = new Client()
@@ -11,3 +12,4 @@ const result = await account.createJWT({
1112
});
1213

1314
console.log(result);
15+
```

docs/examples/account/create-magic-url-token.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
```javascript
12
import { Client, Account } from "appwrite";
23

34
const client = new Client()
@@ -14,3 +15,4 @@ const result = await account.createMagicURLToken({
1415
});
1516

1617
console.log(result);
18+
```

docs/examples/account/create-mfa-authenticator.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
```javascript
12
import { Client, Account, AuthenticatorType } from "appwrite";
23

34
const client = new Client()
@@ -11,3 +12,4 @@ const result = await account.createMFAAuthenticator({
1112
});
1213

1314
console.log(result);
15+
```

docs/examples/account/create-mfa-challenge.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
```javascript
12
import { Client, Account, AuthenticationFactor } from "appwrite";
23

34
const client = new Client()
@@ -11,3 +12,4 @@ const result = await account.createMFAChallenge({
1112
});
1213

1314
console.log(result);
15+
```

docs/examples/account/create-mfa-recovery-codes.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
```javascript
12
import { Client, Account } from "appwrite";
23

34
const client = new Client()
@@ -9,3 +10,4 @@ const account = new Account(client);
910
const result = await account.createMFARecoveryCodes();
1011

1112
console.log(result);
13+
```

docs/examples/account/create-o-auth-2-session.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
```javascript
12
import { Client, Account, OAuthProvider } from "appwrite";
23

34
const client = new Client()
@@ -13,3 +14,4 @@ account.createOAuth2Session({
1314
scopes: [] // optional
1415
});
1516

17+
```

0 commit comments

Comments
 (0)