Skip to content

Commit ae3004c

Browse files
Merge branch 'main' into keyring-type-docs
2 parents 69d4bd5 + 1be7aec commit ae3004c

Some content is hidden

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

63 files changed

+196
-90
lines changed

fern/apis/beta/openapi/openapi-beta-latest.yaml

Lines changed: 118 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1378,6 +1378,70 @@ components:
13781378
- timeline_comment
13791379
- webhook
13801380
type: string
1381+
boolean-expression:
1382+
description: Boolean expression.
1383+
discriminator:
1384+
mapping:
1385+
and: '#/components/schemas/boolean-expression-and-expression'
1386+
not: '#/components/schemas/boolean-expression-not-expression'
1387+
or: '#/components/schemas/boolean-expression-or-expression'
1388+
primitive: '#/components/schemas/boolean-expression-primitive-expression'
1389+
propertyName: type
1390+
oneOf:
1391+
- $ref: '#/components/schemas/boolean-expression-and-expression'
1392+
- $ref: '#/components/schemas/boolean-expression-not-expression'
1393+
- $ref: '#/components/schemas/boolean-expression-or-expression'
1394+
- $ref: '#/components/schemas/boolean-expression-primitive-expression'
1395+
properties:
1396+
type:
1397+
$ref: '#/components/schemas/boolean-expression-type'
1398+
required:
1399+
- type
1400+
title: boolean-expression
1401+
type: object
1402+
boolean-expression-and-expression:
1403+
description: All the expressions would be 'and'ed together.
1404+
properties:
1405+
expressions:
1406+
items:
1407+
$ref: '#/components/schemas/boolean-expression'
1408+
type: array
1409+
required:
1410+
- expressions
1411+
title: boolean-expression-and-expression
1412+
type: object
1413+
boolean-expression-not-expression:
1414+
description: The expression would be negated.
1415+
properties:
1416+
expression:
1417+
$ref: '#/components/schemas/boolean-expression'
1418+
required:
1419+
- expression
1420+
title: boolean-expression-not-expression
1421+
type: object
1422+
boolean-expression-or-expression:
1423+
description: All the expressions would be 'or'ed together.
1424+
properties:
1425+
expressions:
1426+
items:
1427+
$ref: '#/components/schemas/boolean-expression'
1428+
type: array
1429+
required:
1430+
- expressions
1431+
title: boolean-expression-or-expression
1432+
type: object
1433+
boolean-expression-primitive-expression:
1434+
additionalProperties: false
1435+
description: The primitive expression type.
1436+
title: boolean-expression-primitive-expression
1437+
type: object
1438+
boolean-expression-type:
1439+
enum:
1440+
- and
1441+
- not
1442+
- or
1443+
- primitive
1444+
type: string
13811445
capability:
13821446
allOf:
13831447
- $ref: '#/components/schemas/part-base'
@@ -4267,6 +4331,8 @@ components:
42674331
description:
42684332
description: The updated group's description.
42694333
type: string
4334+
dynamic_group_info:
4335+
$ref: '#/components/schemas/groups-update-request-dynamic-group-info'
42704336
id:
42714337
description: The ID of the group to update.
42724338
type: string
@@ -4280,6 +4346,14 @@ components:
42804346
- id
42814347
title: groups-update-request
42824348
type: object
4349+
groups-update-request-dynamic-group-info:
4350+
properties:
4351+
membership_expression:
4352+
$ref: '#/components/schemas/boolean-expression'
4353+
required:
4354+
- membership_expression
4355+
title: groups-update-request-dynamic-group-info
4356+
type: object
42834357
groups-update-response:
42844358
description: The response to group update.
42854359
properties:
@@ -4424,22 +4498,33 @@ components:
44244498
- ticket
44254499
type: string
44264500
link-rev-user-to-rev-org-request:
4427-
description: A request to link a rev user to a rev org.
4501+
description: Request to link a Rev user to an existing Rev organization.
44284502
properties:
4503+
id:
4504+
description: The ID of the Rev user.
4505+
type: string
4506+
rev_org:
4507+
description: The ID of the Rev organization to link the Rev user to.
4508+
example: REV-AbCdEfGh
4509+
type: string
44294510
rev_org_don:
4430-
description: The don of the rev org to link the rev user to.
4511+
deprecated: true
4512+
description: |
4513+
The don of the rev org to link the rev user to. This is deprecated,
4514+
use rev_org instead.
44314515
example: REV-AbCdEfGh
44324516
type: string
44334517
user_don:
4434-
description: The don of the rev user to link.
4518+
deprecated: true
4519+
description: |
4520+
The don of the rev user to link. This is deprecated, use id
4521+
instead.
44354522
type: string
4436-
required:
4437-
- rev_org_don
4438-
- user_don
44394523
title: link-rev-user-to-rev-org-request
44404524
type: object
44414525
link-rev-user-to-rev-org-response:
4442-
description: The response to link a rev user to a rev org.
4526+
description: |
4527+
Response for linking a Rev user to an existing Rev organization.
44434528
properties:
44444529
rev_user:
44454530
$ref: '#/components/schemas/rev-user'
@@ -7167,6 +7252,8 @@ components:
71677252
name:
71687253
description: Name of the field.
71697254
type: string
7255+
oasis:
7256+
$ref: '#/components/schemas/schema-field-oasis-metadata'
71707257
origin:
71717258
description: Type this field is from.
71727259
type: string
@@ -7222,6 +7309,11 @@ components:
72227309
description: The schema of MFZ specific fields.
72237310
title: schema-field-mfz-metadata
72247311
type: object
7312+
schema-field-oasis-metadata:
7313+
additionalProperties: false
7314+
description: The schema of oasis specific fields.
7315+
title: schema-field-oasis-metadata
7316+
type: object
72257317
schema-field-summary-view-ui-metadata:
72267318
description: Summary view UI hint overrides.
72277319
properties:
@@ -9797,22 +9889,34 @@ components:
97979889
- number
97989890
type: string
97999891
unlink-rev-user-from-rev-org-request:
9800-
description: A request to unlink a rev user from a rev org.
9892+
description: Request to unlink/remove a Rev user from a Rev organization.
98019893
properties:
9894+
id:
9895+
description: The ID of the Rev user.
9896+
type: string
9897+
rev_org:
9898+
description: |
9899+
The ID of the Rev organization to unlink the Rev user from.
9900+
example: REV-AbCdEfGh
9901+
type: string
98029902
rev_org_don:
9803-
description: The don of the rev org to unlink the rev user from.
9903+
deprecated: true
9904+
description: |
9905+
The don of the rev org to unlink the rev user from. This is
9906+
deprecated, use rev_org instead.
98049907
example: REV-AbCdEfGh
98059908
type: string
98069909
user_don:
9807-
description: The don of the rev user to unlink.
9910+
deprecated: true
9911+
description: |
9912+
The don of the rev user to unlink. This is deprecated, use id
9913+
instead.
98089914
type: string
9809-
required:
9810-
- rev_org_don
9811-
- user_don
98129915
title: unlink-rev-user-from-rev-org-request
98139916
type: object
98149917
unlink-rev-user-from-rev-org-response:
9815-
description: The response to unlink a rev user from a rev org.
9918+
description: |
9919+
Response for unlinking/removing a Rev user from a Rev organization.
98169920
properties:
98179921
rev_user:
98189922
$ref: '#/components/schemas/rev-user'
-51.4 KB
Binary file not shown.
-55.4 KB
Binary file not shown.

fern/docs/img/account.png

343 KB

fern/docs/img/actions.png

6.67 KB

fern/docs/img/button.png

8.98 KB

fern/docs/img/card.png

16 KB

fern/docs/img/check-boxes.png

20 KB

fern/docs/img/contact.png

250 KB

fern/docs/img/content.png

340 KB

fern/docs/img/custom-field.webp

12 KB
Binary file not shown.

fern/docs/img/custom-subtype.webp

12.7 KB
Binary file not shown.
File renamed without changes.
File renamed without changes.

fern/docs/img/display_id.png

155 KB

fern/docs/img/divider_in_form.png

20 KB

fern/docs/img/email-input.png

8.64 KB

fern/docs/img/form.png

42.6 KB

fern/docs/img/image-fill.png

120 KB

fern/docs/img/image_default.png

80.9 KB

fern/docs/img/input-layout.png

7.5 KB

fern/docs/img/lifecycle.png

140 KB

fern/docs/img/list-input-email.png

22.2 KB

fern/docs/img/list-input-number.png

19.3 KB
22.1 KB

fern/docs/img/list-input-string.png

20.4 KB

fern/docs/img/marketplace_listing.png

71 KB

fern/docs/img/mermaid.png

31.1 KB

fern/docs/img/multi-static-select.png

26 KB

fern/docs/img/number_input.png

3.17 KB

fern/docs/img/part_picker.png

4.56 KB

fern/docs/img/plain-text-input.png

8.13 KB

fern/docs/img/plain_text.png

4.61 KB
File renamed without changes.

fern/docs/img/radio-buttons.png

10.5 KB

fern/docs/img/rich-text-input.png

23.8 KB

fern/docs/img/rich_text.png

6.46 KB

fern/docs/img/snap-in-lifecycle.jpeg

489 KB
65.1 KB
124 KB

fern/docs/img/snap-inlifecycle.jpeg

489 KB

fern/docs/img/static-select.png

19.2 KB

fern/docs/img/tag-picker.png

3.3 KB

fern/docs/img/toggles.png

10.6 KB

fern/docs/img/upload.png

2.84 KB

fern/docs/img/user-picker.png

4.69 KB

fern/docs/pages/authentication.mdx

Lines changed: 1 addition & 1 deletion

fern/docs/pages/concepts.mdx

Lines changed: 1 addition & 1 deletion

fern/docs/pages/create-accounts.mdx

Lines changed: 3 additions & 3 deletions

fern/docs/pages/customization.mdx

Lines changed: 4 additions & 4 deletions

fern/docs/pages/plug-sdk/sdk-intro.mdx

Lines changed: 1 addition & 1 deletion

fern/docs/pages/publish_to_marketplace.mdx

Lines changed: 2 additions & 2 deletions

fern/docs/pages/references/event_sources.mdx

Lines changed: 32 additions & 30 deletions

fern/docs/pages/references/hooks.mdx

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)