Skip to content

Commit b176d3f

Browse files
louis-preclaude
andcommitted
feat: Standardize code sample tab order and titles across guides
Reorder all hand-written tab groups to match the API reference canonical order: JavaScript → cURL → Python → Ruby → PHP → C# → Java → Go. Also standardize tab titles: - "cURL (bash)" → "cURL" (matches API reference) - "Javascript" → "JavaScript" (fixes capitalization) 115 files updated, 425 tab groups reordered. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent dc0adaf commit b176d3f

115 files changed

Lines changed: 14721 additions & 12999 deletions

File tree

Some content is hidden

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

docs/brand-guides/2n-intercom-systems/get-started-with-2n-intercoms.md

Lines changed: 136 additions & 122 deletions
Large diffs are not rendered by default.

docs/brand-guides/33-lock-devices/get-started-with-33-lock-devices.md

Lines changed: 271 additions & 235 deletions
Large diffs are not rendered by default.

docs/brand-guides/4suites-locks/get-started-with-4suites-locks.md

Lines changed: 177 additions & 147 deletions
Large diffs are not rendered by default.

docs/brand-guides/akiles-locks/get-started-with-akiles-locks.md

Lines changed: 268 additions & 232 deletions
Large diffs are not rendered by default.

docs/brand-guides/assa-abloy-visionline-access-control-system/configuring-visionline-mobile-credentials/revoking-mobile-credentials.md

Lines changed: 21 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,25 @@ description: Learn how to delete mobile credentials.
77
To revoke a mobile credential, [delete the credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#delete-a-credential). Seam issues a discard command for the Visionline card. If you are deleting a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials), Seam discards all of the credentials that were created underneath it.
88

99
{% tabs %}
10-
{% tab title="Python" %}
10+
{% tab title="JavaScript" %}
11+
1112
**Request:**
1213

13-
```python
14-
seam.acs.credentials.delete(
15-
acs_credential_id="66666666-6666-6666-6666-666666666666"
16-
)
14+
```javascript
15+
await seam.acs.credentials.delete({
16+
acs_credential_id: "66666666-6666-6666-6666-666666666666"
17+
});
1718
```
1819

1920
**Response:**
2021

21-
```
22-
None
22+
```json
23+
void
2324
```
2425
{% endtab %}
2526

26-
{% tab title="cURL (bash)" %}
27+
{% tab title="cURL" %}
28+
2729
**Request:**
2830

2931
```bash
@@ -46,23 +48,25 @@ curl -X 'POST' \
4648
```
4749
{% endtab %}
4850

49-
{% tab title="JavaScript" %}
51+
{% tab title="Python" %}
52+
5053
**Request:**
5154

52-
```javascript
53-
await seam.acs.credentials.delete({
54-
acs_credential_id: "66666666-6666-6666-6666-666666666666"
55-
});
55+
```python
56+
seam.acs.credentials.delete(
57+
acs_credential_id="66666666-6666-6666-6666-666666666666"
58+
)
5659
```
5760

5861
**Response:**
5962

60-
```json
61-
void
63+
```
64+
None
6265
```
6366
{% endtab %}
6467

6568
{% tab title="Ruby" %}
69+
6670
**Request:**
6771

6872
```ruby
@@ -77,6 +81,7 @@ void
7781
{% endtab %}
7882

7983
{% tab title="PHP" %}
84+
8085
**Request:**
8186

8287
```php
@@ -93,6 +98,7 @@ void
9398
{% endtab %}
9499

95100
{% tab title="C#" %}
101+
96102
**Request:**
97103

98104
```csharp
@@ -107,7 +113,4 @@ seam.CredentialsAcs.Delete(
107113
void
108114
```
109115
{% endtab %}
110-
111-
112-
113116
{% endtabs %}

0 commit comments

Comments
 (0)