Skip to content

Commit 0fcf078

Browse files
committed
chore: leftover changing from the update in naming convention to Stack Overflow Internal
1 parent 57a09a0 commit 0fcf078

File tree

7 files changed

+22
-10
lines changed

7 files changed

+22
-10
lines changed

.changeset/four-paws-raise.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"soteams-sdk-docs": patch
3+
"@stackoverflow/teams-sdk": patch
4+
---
5+
6+
Leftover changes from the update in naming conventions to Stack Overflow Internal

.changeset/huge-breads-design.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"soteams-sdk-docs": minor
3+
"@stackoverflow/teams-sdk": minor
4+
---
5+
6+
Changed naming conventions from "Stack Overflow for Teams" and "Stack Overflow Enterprise" to "Stack Overflow Internal" and "Stack Internal Enterprise"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The Stack Internal SDK lets you build powerful applications and integrations on
1212
## ✨ Features
1313

1414
- 🛠 **Official support** – built and maintained by Stack Overflow with full API coverage.
15-
- 🧑‍💻 **Type safety** – complete TypeScript definitions for all Teams endpoints, models, and responses.
15+
- 🧑‍💻 **Type safety** – complete TypeScript definitions for all Stack Internal endpoints, models, and responses.
1616
- 📚 **Knowledge access** – query questions, answers, and articles from your team’s private repository.
1717
- 👥 **Team management** – access profiles, activity, and collaborate on internal documentation and Q&A.
1818

@@ -53,4 +53,4 @@ Contributions are welcome! Please open an [issue](https://github.com/StackExchan
5353

5454
This Stack Overflow Internal SDK is licensed to you under the terms of the Apache Software License Version 2.0 (Apache 2.0): https://www.apache.org/licenses/LICENSE-2.0.txt
5555

56-
The Teams SDK is 100% open source and freely available to download and use under the terms of the Apache 2.0 license. This SDK enables development with the Stack Internal API, which is available to all Teams customers, but may be subject to future changes.
56+
The Stack Overflow Internal SDK is 100% open source and freely available to download and use under the terms of the Apache 2.0 license. This SDK enables development with the Stack Internal API, which is available to all Stack Internal customers, but may be subject to future changes.

docs/src/content/docs/index.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ import { Card, CardGrid } from '@astrojs/starlight/components';
4343

4444
<CardGrid>
4545
<Card title="Official Support" icon="approve-check-circle">
46-
Built and maintained by Stack Overflow with full Teams API coverage and guaranteed compatibility.
46+
Built and maintained by Stack Overflow with full Stack Internal API coverage and guaranteed compatibility.
4747
</Card>
4848
<Card title="Type Safety" icon="laptop">
49-
Complete TypeScript definitions for all Teams endpoints, models, and responses.
49+
Complete TypeScript definitions for all Stack Internal endpoints, models, and responses.
5050
</Card>
5151
<Card title="PKCE Authentication Built-in" icon="approve-check-circle">
5252
Includes full PKCE authentication with ready-to-use helpers for both backend and frontend implementations.
@@ -59,7 +59,7 @@ Whether you're building internal tools, integrating with existing workflows, or
5959

6060
**Internal Tooling**: Build IDE extensions, code review tools, or documentation generators that tap into your team's institutional knowledge.
6161

62-
**Workflow Integration**: Connect your Teams instance with CI/CD pipelines, project management tools, or custom dashboards.
62+
**Workflow Integration**: Connect your Stack Internal instance with CI/CD pipelines, project management tools, or custom dashboards.
6363

6464
**Knowledge Management**: Create applications that help organize, surface, and distribute your team's expertise and best practices.
6565

@@ -79,4 +79,4 @@ Our SDK provides a higher-level abstraction for programmatically interacting wit
7979

8080
This Stack Overflow Internal SDK is licensed to you under the terms of the Apache Software License Version 2.0 (Apache 2.0): https://www.apache.org/licenses/LICENSE-2.0.txt
8181

82-
The Teams SDK is 100% open source and freely available to download and use under the terms of the Apache 2.0 license. This SDK enables development with the Stack Overflow Internal API, which is available to all Teams customers, but may be subject to future changes.
82+
The Stack Overflow Internal SDK is 100% open source and freely available to download and use under the terms of the Apache 2.0 license. This SDK enables development with the Stack Overflow Internal API, which is available to all Stack Internal customers, but may be subject to future changes.

sdk/src/client/communities.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export class CommunityClient extends BaseClient {
7575
constructor(config: ReturnType<typeof import('../generated/configuration').createConfiguration>) {
7676
super();
7777
this.mainApi = new CommunitiesMainApi(config);
78-
// Note: Communities API has no Teams API variant - only Main API
78+
// Note: Communities API has no Private Team API variant - only Main API
7979
}
8080

8181
/**

sdk/src/client/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function normalizeBaseUrl(baseUrl: string): string {
3030
// Remove trailing slashes
3131
const cleanUrl = baseUrl.replace(/\/+$/, '');
3232

33-
// Don't modify the B&B Stack Overflow Teams API URL
33+
// Don't modify the B&B Stack Overflow Internal API URL
3434
if (cleanUrl.startsWith('https://api.stackoverflowteams.com')) {
3535
return cleanUrl;
3636
}
@@ -243,7 +243,7 @@ export class StackOverflowSDK {
243243
}
244244

245245
/**
246-
* Team-specific context for Stack Overflow Internal API operations (required for Basic and Business Teams)
246+
* Team-specific context for Stack Overflow Internal API operations (required for Basic and Business Internal teams)
247247
* Provides access to all API clients scoped to a specific team
248248
*/
249249
export class TeamContext {

sdk/src/client/shared/base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export abstract class BaseClient {
1515
}
1616

1717
/**
18-
* Helper method to determine which API to use (Main vs Teams)
18+
* Helper method to determine which API to use (Main vs Internal teams)
1919
*/
2020
protected chooseApi<TMain, TTeams>(
2121
mainApi: TMain,

0 commit comments

Comments
 (0)