-
Notifications
You must be signed in to change notification settings - Fork 4
/
generators.yml
80 lines (80 loc) · 2.41 KB
/
generators.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
groups:
python-sdk-local:
generators:
- name: fernapi/fern-python-sdk
version: 2.10.2
config:
client:
class_name: BaseOctoAI
filename: base_client.py
exported_class_name: OctoAI
exported_filename: client.py
extra_dependencies:
boto3: "^1.34.75"
types-boto3: "^1.0"
smart-casing: true
output:
location: local-file-system
path: ../../../generated/octoai-python-sdk-fern
python-sdk:
generators:
- name: fernapi/fern-python-sdk
version: 2.10.2
output:
location: pypi
package-name: "octoai"
token: ${PYPI_TOKEN}
github:
repository: octoml/octoai-python-sdk-fern
config:
client:
class_name: BaseOctoAI
filename: base_client.py
exported_class_name: OctoAI
exported_filename: client.py
extra_dependencies:
boto3: "^1.34.75"
types-boto3: "^1.0"
smart-casing: true
ts-sdk-local:
generators:
- name: fernapi/fern-typescript-node-sdk
version: 0.25.2
output:
location: local-file-system
path: ../../../generated/octoai-typescript-sdk-fern
config:
namespaceExport: OctoAI
skipResponseValidation: true
allowCustomFetcher: true
outputSourceFiles: true
includeApiReference: true
extraDependencies:
'@aws-sdk/client-s3': '^3.540.0'
'fast-glob': '^3.3.2'
extraDevDependencies:
'aws-sdk-client-mock': '^4.0.0'
'aws-sdk-client-mock-jest': '^4.0.0'
smart-casing: true
ts-sdk:
generators:
- name: fernapi/fern-typescript-node-sdk
version: 0.25.2
output:
location: npm
package-name: "@octoai/sdk"
token: ${NPM_TOKEN}
github:
repository: octoml/octoai-typescript-sdk-fern
config:
namespaceExport: OctoAI
skipResponseValidation: true
allowCustomFetcher: true
includeApiReference: true
extraDependencies:
'@aws-sdk/client-s3': '^3.540.0'
'fast-glob': '^3.3.2'
extraDevDependencies:
'aws-sdk-client-mock': '^4.0.0'
'aws-sdk-client-mock-jest': '^4.0.0'
smart-casing: true