Skip to content

Commit 864e714

Browse files
Merge pull request #81 from lob/fix-name-changes
docs: update readme and gitignore name changes
2 parents b955764 + 18e2cee commit 864e714

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.gitignore

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ coverage
1212
!/sdks/*/__tests__
1313

1414
# Typescript specific exceptions
15-
!/sdks/lob-sdk-ts/.openapi-generator-ignore
16-
!/sdks/lob-sdk-ts/jest.config.js
17-
!/sdks/lob-sdk-ts/jest.integrationConfig.js
18-
!/sdks/lob-sdk-ts/package.json
19-
!/sdks/lob-sdk-ts/tsconfig.json
20-
!/sdks/lob-sdk-ts/.npmignore
15+
!/sdks/lob-typescript-sdk/.openapi-generator-ignore
16+
!/sdks/lob-typescript-sdk/jest.config.js
17+
!/sdks/lob-typescript-sdk/jest.integrationConfig.js
18+
!/sdks/lob-typescript-sdk/package.json
19+
!/sdks/lob-typescript-sdk/tsconfig.json
20+
!/sdks/lob-typescript-sdk/.npmignore
2121

22-
!/sdks/lob-sdk-ts/build/__tests__
22+
!/sdks/lob-typescript-sdk/build/__tests__
2323

2424
LOCAL.env

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# lob-sdk-ts
1+
# lob-typescript-sdk
22

33
Typescript SDK for the [Lob.com](https://lob.com) API. See full Lob.com API documentation [here](https://lob.com/docs/node). For best results, be sure that you're using [the latest version](https://lob.com/docs/node#version) of the Lob API and the latest version of the Node wrapper.
44

@@ -12,20 +12,20 @@ Once you have created an account, you can access your API Keys from the [Setting
1212

1313
### Installation
1414

15-
lob-sdk-ts can be installed through the npm:
15+
lob-typescript-sdk can be installed through the npm:
1616

1717
```bash
1818
# FOR PRE PUBLISH ALPHA TESTING ONLY!!!!!
1919
# UPDATE BEFORE PUBLISHING
20-
$ npm i https://github.com/lob/lob-sdk-ts
20+
$ npm i https://github.com/lob/lob-typescript-sdk
2121
```
2222

2323
## Examples
2424

2525
### First API Calls
2626

2727
```typescript
28-
import { Configuration, AddressesApi } from "lob-sdk-ts";
28+
import { Configuration, AddressesApi } from "lob-typescript-sdk";
2929
const config: Configuration = new Configuration({
3030
username: "<<YOUR API KEY HERE>>",
3131
});

0 commit comments

Comments
 (0)