Skip to content

Commit 21d8d75

Browse files
replace all mentions of javascript in docs
1 parent d1cc0da commit 21d8d75

File tree

6 files changed

+23
-23
lines changed

6 files changed

+23
-23
lines changed

CONTRIBUTE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### Thanks for looking into contributing to Weaviate JavaScript client!
1+
### Thanks for looking into contributing to Weaviate TypeScript client!
22
Contributing works pretty easy. You can do a pull request or you can commit if you are part of a Weaviate team.
33

44
### Code of Conduct
@@ -29,7 +29,7 @@ If you create a pull request without smart commits, the pull request will be [sq
2929

3030
### Contributor License Agreement
3131

32-
Contributions to Weaviate JavaScript client must be accompanied by a Contributor License Agreement. You (or your employer) retain the copyright to your contribution; this simply gives us permission to use and redistribute your contributions as part of Weaviate JavaScript client. Go to [this page](https://www.semi.technology/playbooks/misc/contributor-license-agreement.html) to read the current agreement.
32+
Contributions to Weaviate TypeScript client must be accompanied by a Contributor License Agreement. You (or your employer) retain the copyright to your contribution; this simply gives us permission to use and redistribute your contributions as part of Weaviate TypeScript client. Go to [this page](https://www.semi.technology/playbooks/misc/contributor-license-agreement.html) to read the current agreement.
3333

3434
The process works as follows:
3535

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
# Weaviate JavaScript client <img alt='Weaviate logo' src='https://raw.githubusercontent.com/semi-technologies/weaviate/19de0956c69b66c5552447e84d016f4fe29d12c9/docs/assets/weaviate-logo.png' width='180' align='right' />
1+
# Weaviate TypeScript client <img alt='Weaviate logo' src='https://raw.githubusercontent.com/semi-technologies/weaviate/19de0956c69b66c5552447e84d016f4fe29d12c9/docs/assets/weaviate-logo.png' width='180' align='right' />
22

3-
Official JavaScript client for easy interaction with a Weaviate instance.
3+
Official TypeScript client for easy interaction with a Weaviate instance.
44

55
## Documentation
66

7-
- [Documentation](https://weaviate.io/developers/weaviate/client-libraries/javascript).
7+
- [Documentation](https://weaviate.io/developers/weaviate/client-libraries/typescript).
88

99
## Support
1010

1111
- [Stackoverflow for questions](https://stackoverflow.com/questions/tagged/weaviate).
12-
- [Github for issues](https://github.com/weaviate/weaviate-javascript-client/issues).
12+
- [Github for issues](https://github.com/weaviate/typescript-client/issues).
1313

1414
## Contributing
1515

16-
- [How to Contribute](https://github.com/weaviate/weaviate-javascript-client/blob/main/CONTRIBUTE.md).
16+
- [How to Contribute](https://github.com/weaviate/typescript-client/blob/main/CONTRIBUTE.md).
1717

1818
## Build Status
1919

20-
[![Build Status](https://github.com/weaviate/weaviate-javascript-client/actions/workflows/.github/workflows/tests.yaml/badge.svg?branch=main)](https://github.com/weaviate/weaviate-javascript-client/actions/workflows/.github/workflows/tests.yaml)
20+
[![Build Status](https://github.com/weaviate/typescript-client/actions/workflows/.github/workflows/tests.yaml/badge.svg?branch=main)](https://github.com/weaviate/typescript-client/actions/workflows/.github/workflows/tests.yaml)

c11y/journey.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ describe("c11y endpoints", () => {
2121
.extensionCreator()
2222
.withConcept("clientalmostdonehappyness")
2323
.withDefinition(
24-
"the happyness you feel when the Weaviate Javascript client " +
24+
"the happyness you feel when the Weaviate TypeScript client " +
2525
"is almost complete and ready to be released"
2626
)
2727
.withWeight(1)
@@ -30,7 +30,7 @@ describe("c11y endpoints", () => {
3030
expect(res).toEqual({
3131
concept: "clientalmostdonehappyness",
3232
definition:
33-
"the happyness you feel when the Weaviate Javascript client " +
33+
"the happyness you feel when the Weaviate TypeScript client " +
3434
"is almost complete and ready to be released",
3535
weight: 1,
3636
});

graphql/getter.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ describe("where filters", () => {
100100
});
101101

102102
// to prevent a regression on
103-
// https://github.com/semi-technologies/weaviate-javascript-client/issues/6
103+
// https://github.com/weaviate/weaviate-javascript-client/issues/6
104104
test("a query with a where filter containing a geo query", () => {
105105
const mockClient: any = {
106106
query: jest.fn(),

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"name": "weaviate-client",
3-
"version": "2.14.5",
4-
"description": "Javascript client for Weaviate",
2+
"name": "weaviate-ts-client",
3+
"version": "0.1.0",
4+
"description": "TypeScript client for Weaviate",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
77
"engines": {
8-
"node": "~18"
8+
"node": ">=16.0.0"
99
},
1010
"files": [
1111
"/dist/index.js",
@@ -19,17 +19,17 @@
1919
},
2020
"repository": {
2121
"type": "git",
22-
"url": "git+https://github.com/weaviate/weaviate-javascript-client.git"
22+
"url": "git+https://github.com/weaviate/typescript-client.git"
2323
},
2424
"keywords": [
2525
"weaviate"
2626
],
2727
"author": "Weaviate",
2828
"license": "SEE LICENSE IN LICENSE",
2929
"bugs": {
30-
"url": "https://github.com/weaviate/weaviate-javascript-client/issues"
30+
"url": "https://github.com/weaviate/typescript-client/issues"
3131
},
32-
"homepage": "https://github.com/weaviate/weaviate-javascript-client#readme",
32+
"homepage": "https://github.com/weaviate/typescript-client#readme",
3333
"dependencies": {
3434
"graphql-request": "^5.1.0",
3535
"isomorphic-fetch": "^3.0.0"

0 commit comments

Comments
 (0)