Skip to content

Commit e498268

Browse files
Merge branch 'main' into feature/ISS-158592-unify-moble-sdk-guide
2 parents 6b44f5f + 0e1a788 commit e498268

File tree

10 files changed

+2032
-115
lines changed

10 files changed

+2032
-115
lines changed

changelog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def main(vrn, d):
1818
print('Sending request to LLM.')
1919
l = llm_client.get_response(p)
2020
log_file = f"./fern/apis/{vrn}/changelog/{d}.md"
21-
if (l):
21+
if (l) and 'Error' not in l.partition('\n')[0]:
2222
with open(log_file, 'w', encoding="utf-8") as outfile:
2323
outfile.write(llm_client.get_lines_between_tags(l, 'changelog'))
2424
print(f"Wrote log to {log_file}.")
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
## New Endpoints
2+
3+
### Artifacts
4+
- [`/artifacts.versions.delete`](/beta/api-reference/artifacts/hard-delete-version): Delete an artifact version
5+
6+
### Brands
7+
- [`/brands.create`](/beta/api-reference/brands/create): Create a new brand
8+
- [`/brands.delete`](/beta/api-reference/brands/delete): Delete an existing brand
9+
- [`/brands.get`](/beta/api-reference/brands/get-post): Get the information for a brand
10+
- [`/brands.list`](/beta/api-reference/brands/list-post): List brands matching a given filter
11+
- [`/brands.update`](/beta/api-reference/brands/update): Update an existing brand
12+
13+
### Links
14+
- [`/links.replace`](/beta/api-reference/links/replace): Replace a link
15+
16+
### Metrics
17+
- [`/metric-trackers.get`](/beta/api-reference/slas/metric-trackers-get-post): Get a metric tracker
18+
19+
## Modified Endpoints
20+
21+
### Accounts
22+
- Added `subtype` and `tier` query parameters to [`/accounts.export`](/beta/api-reference/accounts/export-post) and [`/accounts.list`](/beta/api-reference/accounts/list-post)
23+
- Added `drop` property to `custom_schema_spec` in [`/accounts.create`](/beta/api-reference/accounts/create) and [`/accounts.update`](/beta/api-reference/accounts/update)
24+
25+
### Articles
26+
- Added `content_format` and `data_sources` properties in [`/articles.create`](/beta/api-reference/articles/create-article) and [`/articles.update`](/beta/api-reference/articles/update-article)
27+
- Made `applies_to_parts` optional in [`/articles.create`](/beta/api-reference/articles/create-article)
28+
29+
### Commands
30+
- Added `ai_assistant_chat` and `dm` to allowed object types in surface configuration for [`/commands.create`](/beta/api-reference/commands/create), [`/commands.update`](/beta/api-reference/commands/update) and related endpoints
31+
32+
### Conversations
33+
- Added `state` query parameter to [`/conversations.list`](/beta/api-reference/conversations/list-post) and [`/conversations.export`](/beta/api-reference/conversations/export-post)
34+
- Modified `owned_by.set` to allow empty arrays in [`/conversations.update`](/beta/api-reference/conversations/update)
35+
36+
### Groups
37+
- Added filtering by `created_by`, `name`, and `sync_metadata` fields to [`/groups.list`](/beta/api-reference/groups/list-post)
38+
39+
### Links
40+
- Added `custom_link_type` property to link objects in [`/links.create`](/beta/api-reference/links/create) and related endpoints
41+
42+
### Meetings
43+
- Added `sync_metadata` property to meeting objects in [`/meetings.create`](/beta/api-reference/meetings/create) and related endpoints
44+
45+
### Opportunities
46+
- Added `contacts` property to opportunity objects in work-related endpoints
47+
48+
### SLAs
49+
- Added `subtype` and `tier` properties to account selector in [`/slas.create`](/beta/api-reference/slas/create) and [`/slas.update`](/beta/api-reference/slas/update)
50+
51+
### Webhooks
52+
- Added `sla_tracker_fetched` event type to [`/webhooks.create`](/beta/api-reference/webhooks/create), [`/webhooks.update`](/beta/api-reference/webhooks/update) and related endpoints
53+
54+
### Widgets
55+
- Added `combination` visualization type
56+
- Removed `percentage_precision` from PVP metric configuration
57+
58+
## Schema Changes
59+
60+
### Custom Schema Spec
61+
Added `drop` property to `custom_schema_spec` in multiple endpoints including:
62+
- Account endpoints
63+
- Article endpoints
64+
- Chat endpoints
65+
- Code change endpoints
66+
- Conversation endpoints
67+
- Custom object endpoints
68+
- Dev user endpoints
69+
- Incident endpoints
70+
- Meeting endpoints
71+
- Part endpoints
72+
- Work endpoints
73+
74+
### Meeting Summary
75+
Added new subschema to meeting summary objects affecting multiple endpoints that reference meetings
76+
77+
### Link Summary
78+
Modified link summary schema to support custom link types across multiple endpoints

0 commit comments

Comments
 (0)