Skip to content

Commit 4e705f9

Browse files
fern-api[bot]dpimdsinghvi
authored
🌿 Fern Regeneration -- December 29, 2023 (#114)
* SDK regeneration * SDK regeneration * scaffolding readme.md * further readme cleanup * minor consistency improvements * add oauth helpers * fix compile * SDK regeneration * fixing typo * SDK regeneration --------- Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com> Co-authored-by: Dmitry Pimenov <[email protected]> Co-authored-by: dsinghvi <[email protected]>
1 parent 9ad49c0 commit 4e705f9

File tree

559 files changed

+15924
-7663
lines changed

Some content is hidden

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

559 files changed

+15924
-7663
lines changed

.eslintrc

Lines changed: 0 additions & 31 deletions
This file was deleted.

.fernignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Specify files that shouldn't be modified by Fern
2+
3+
README.md
4+
5+
# Oauth Helpers
6+
src/index.ts
7+
src/oauth.ts
8+
src/wrapper

.github/workflows/ci.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: ci
2+
3+
on: [push]
4+
5+
jobs:
6+
compile:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Checkout repo
11+
uses: actions/checkout@v3
12+
13+
- name: Set up node
14+
uses: actions/setup-node@v3
15+
16+
- name: Compile
17+
run: yarn && yarn build
18+
19+
publish:
20+
needs: [ compile ]
21+
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
22+
runs-on: ubuntu-latest
23+
24+
steps:
25+
- name: Checkout repo
26+
uses: actions/checkout@v3
27+
28+
- name: Set up node
29+
uses: actions/setup-node@v3
30+
31+
- name: Install dependencies
32+
run: yarn install
33+
34+
- name: Build
35+
run: yarn build
36+
37+
- name: Publish to npm
38+
run: |
39+
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}
40+
npm publish --access public
41+
env:
42+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/code-quality.yml

Lines changed: 0 additions & 102 deletions
This file was deleted.

.github/workflows/npm-publish.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/workflows/semgrep.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

.gitignore

Lines changed: 12 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,13 @@
1-
# Logs
2-
logs
3-
*.log
4-
npm-debug.log*
5-
yarn-debug.log*
6-
yarn-error.log*
7-
lerna-debug.log*
8-
.pnpm-debug.log*
9-
10-
# Coverage directory used by tools like istanbul
11-
coverage
12-
*.lcov
13-
14-
# Diagnostic reports (https://nodejs.org/api/report.html)
15-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
16-
17-
# Runtime data
18-
pids
19-
*.pid
20-
*.seed
21-
*.pid.lock
22-
23-
# node-waf configuration
24-
.lock-wscript
25-
26-
# Compiled binary addons (https://nodejs.org/api/addons.html)
27-
build/Release
28-
29-
# Dependency directories
30-
node_modules/
31-
32-
# TypeScript cache
33-
*.tsbuildinfo
34-
35-
# Optional npm cache directory
36-
.npm
37-
38-
# Optional eslint cache
39-
.eslintcache
40-
41-
# Output of 'npm pack'
42-
*.tgz
43-
44-
# Yarn Integrity file
45-
.yarn-integrity
46-
47-
# dotenv environment variables file
48-
.env
49-
.env.test
50-
.env.production
51-
52-
# yarn v2
53-
.yarn/cache
54-
.yarn/unplugged
55-
.yarn/build-state.yml
56-
.yarn/install-state.gz
57-
.pnp.*
58-
59-
temp
1+
node_modules
602
.DS_Store
61-
62-
# Compiled files
63-
dist/
3+
/dist
4+
/Client.d.ts
5+
/Client.js
6+
/environments.d.ts
7+
/environments.js
8+
/index.d.ts
9+
/index.js
10+
/api
11+
/core
12+
/errors
13+
/serialization

.npmignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
node_modules
2+
src
3+
.gitignore
4+
.github
5+
.fernignore
6+
.prettierrc.yml
7+
tsconfig.json
8+
yarn.lock

.prettierignore

Lines changed: 0 additions & 5 deletions
This file was deleted.

.prettierrc

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)