Skip to content

Commit 69f01e1

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.345.3
1 parent 1e4c1fc commit 69f01e1

File tree

313 files changed

+20515
-14942
lines changed

Some content is hidden

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

313 files changed

+20515
-14942
lines changed

.eslintrc.cjs

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
/* eslint-env node */
2+
module.exports = {
3+
root: true,
4+
extends: [
5+
"eslint:recommended",
6+
"plugin:@typescript-eslint/recommended",
7+
"plugin:import/recommended",
8+
"plugin:import/typescript",
9+
],
10+
parser: "@typescript-eslint/parser",
11+
plugins: ["@typescript-eslint"],
12+
settings: {
13+
"import/resolver": {
14+
typescript: true,
15+
node: true,
16+
},
17+
},
18+
rules: {
19+
// Handled by typescript compiler
20+
"@typescript-eslint/no-unused-vars": "off",
21+
"@typescript-eslint/ban-types": "off",
22+
"@typescript-eslint/no-namespace": "off",
23+
"@typescript-eslint/no-explicit-any": "off",
24+
"import/no-named-as-default-member": "off",
25+
26+
"import/no-default-export": "error",
27+
},
28+
};

.eslintrc.yml

-17
This file was deleted.

.gitignore

+14
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,16 @@
1+
/models
2+
/sdk/models/errors
3+
/sdk/types
4+
/node_modules
5+
/lib
6+
/sdk
7+
/hooks
8+
/index.*
9+
/cjs
10+
/esm
11+
/dist
12+
/.tsbuildinfo
13+
/.tshy
14+
/.tshy-*
115
dist/
216
node_modules/

.npmignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
**/*
2+
!/**/*.ts
3+
!/**/*.js
4+
!/**/*.map
5+
6+
/.eslintrc.js
7+
/cjs
8+
/.tshy
9+
/.tshy-*

0 commit comments

Comments
 (0)