Skip to content

Commit

Permalink
docs: ensure additional block is present in docs (#486)
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinsandilya committed Feb 16, 2024
1 parent 7b9486b commit daa440e
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fern/definition/common/unified.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ types:
type: unknown
docs: The last updated timestamp of the object.
additional:
type: unknown
type: optional<unknown>
docs: Any fields that are not unified yet/non-unifiable come inside this `json` object.
LeadWrite:
properties:
Expand Down
7 changes: 6 additions & 1 deletion fern/definition/crm/contact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ types:
next: optional<string>
previous: optional<string>
results: list<unified.Contact>
CreateOrUpdateContactRequest: unified.ContactWrite
CreateOrUpdateContactRequest:
extends: unified.ContactWrite
properties:
additional:
type: unknown
docs: Any fields that are not unified yet/non-unifiable come inside this `json` object.
CreateOrUpdateContactResponse:
properties:
status: types.ResponseStatus
Expand Down
4 changes: 4 additions & 0 deletions fern/definition/crm/deal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ types:
results: list<unified.Deal>
CreateOrUpdateDealRequest:
extends: unified.DealWrite
properties:
additional:
type: unknown
docs: Any fields that are not unified yet/non-unifiable come inside this `json` object.
CreateOrUpdateDealResponse:
properties:
status: types.ResponseStatus
Expand Down
4 changes: 4 additions & 0 deletions fern/definition/crm/event.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ types:
results: list<unified.Event>
CreateOrUpdateEventRequest:
extends: unified.EventWrite
properties:
additional:
type: unknown
docs: Any fields that are not unified yet/non-unifiable come inside this `json` object.
CreateOrUpdateEventResponse:
properties:
status: types.ResponseStatus
Expand Down
4 changes: 4 additions & 0 deletions fern/definition/crm/lead.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ types:
results: list<unified.Lead>
CreateOrUpdateLeadRequest:
extends: unified.LeadWrite
properties:
additional:
type: unknown
docs: Any fields that are not unified yet/non-unifiable come inside this `json` object.
CreateOrUpdateLeadResponse:
properties:
status: types.ResponseStatus
Expand Down
4 changes: 4 additions & 0 deletions fern/definition/crm/note.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ types:
results: list<unified.Note>
CreateOrUpdateNoteRequest:
extends: unified.NoteWrite
properties:
additional:
type: unknown
docs: Any fields that are not unified yet/non-unifiable come inside this `json` object.
CreateOrUpdateNoteResponse:
properties:
status: types.ResponseStatus
Expand Down
4 changes: 4 additions & 0 deletions fern/definition/crm/task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ types:
results: list<unified.Task>
CreateOrUpdateTaskRequest:
extends: unified.TaskWrite
properties:
additional:
type: unknown
docs: Any fields that are not unified yet/non-unifiable come inside this `json` object.
CreateOrUpdateTaskResponse:
properties:
status: types.ResponseStatus
Expand Down
4 changes: 4 additions & 0 deletions fern/definition/crm/user.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ types:
results: list<unified.User>
CreateOrUpdateUserRequest:
extends: unified.UserWrite
properties:
additional:
type: unknown
docs: Any fields that are not unified yet/non-unifiable come inside this `json` object.
CreateOrUpdateUserResponse:
properties:
status: types.ResponseStatus
Expand Down

0 comments on commit daa440e

Please sign in to comment.