-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgenerators.yml
More file actions
85 lines (82 loc) · 2.59 KB
/
generators.yml
File metadata and controls
85 lines (82 loc) · 2.59 KB
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
81
82
83
84
# yaml-language-server: $schema=https://schema.buildwithfern.dev/generators-yml.json
api:
specs:
- openapi: ../descriptions/2.11/api.intercom.io.yaml
overrides: ./openapi-overrides.yml
settings:
title-as-schema-name: false
inline-path-parameters: true
- openapi: ../descriptions/0/api.intercom.io.yaml
overrides: ./unstable-openapi-overrides.yml
namespace: unstable
settings:
title-as-schema-name: false
inline-path-parameters: true
groups:
ts-sdk:
generators:
- name: fernapi/fern-typescript-node-sdk
version: 0.51.7
output:
location: npm
package-name: intercom-client
token: ${FERN_NPM_TOKEN}
github:
repository: intercom/intercom-node
mode: pull-request
config:
namespaceExport: Intercom
allowCustomFetcher: true
skipResponseValidation: true
includeApiReference: true
noSerdeLayer: true
enableInlineTypes: true
inlinePathParameters: true
timeoutInSeconds: 20
packageJson:
license: Apache-2.0
description: Official Node bindings to the Intercom API
homepage: https://github.com/intercom/intercom-node
bugs: https://github.com/intercom/intercom-node/issues
keywords:
- intercom
- api
smart-casing: true
java-sdk:
generators:
- name: fernapi/fern-java-sdk
version: 2.37.0
output:
location: maven
coordinate: io.intercom:intercom-java
username: ${MAVEN_USERNAME}
password: ${MAVEN_PASSWORD}
signature:
keyId: ${MAVEN_SIGNING_KEY_ID}
password: ${MAVEN_SIGNING_PASSWORD}
secretKey: ${MAVEN_SIGNING_KEY}
github:
repository: intercom/intercom-java
mode: pull-request
config:
enable-inline-types: true
client-class-name: Intercom
inline-path-parameters: true
enable-forward-compatible-enums: true
python-sdk:
generators:
- name: fernapi/fern-python-sdk
version: 4.25.5
github:
mode: pull-request
repository: intercom/python-intercom
config:
client_class_name: Intercom
pydantic_config:
skip_validation: true
use_typeddict_requests: true
use_typeddict_requests_for_file_upload: true
output:
location: pypi
package-name: 'python-intercom'
token: ${FERN_PYPI_TOKEN}