Skip to content

Commit c5dcf3e

Browse files
chore(docs): Updated API Reference (automated) (#14948)
Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action Co-authored-by: Shahed Nasser <27354907+shahednasser@users.noreply.github.com>
1 parent dd2cad1 commit c5dcf3e

27 files changed

Lines changed: 630 additions & 10 deletions

www/apps/api-reference/specs/admin/components/schemas/AdminOrderFulfillment.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ required:
1414
- shipping_option_id
1515
- metadata
1616
- created_at
17+
- created_by
18+
- marked_shipped_by
1719
- updated_at
1820
properties:
1921
id:
@@ -80,3 +82,11 @@ properties:
8082
type: boolean
8183
title: requires_shipping
8284
description: Whether the fulfillment requires shipping.
85+
created_by:
86+
type: string
87+
title: created_by
88+
description: The ID of the user that created the fulfillment.
89+
marked_shipped_by:
90+
type: string
91+
title: marked_shipped_by
92+
description: The ID of the user that marked the fulfillment as shipped.

www/apps/api-reference/specs/admin/components/schemas/AdminReturn.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ required:
99
- display_id
1010
- received_at
1111
- created_at
12+
- created_by
1213
- canceled_at
1314
properties:
1415
id:
@@ -76,3 +77,7 @@ properties:
7677
type: string
7778
title: received_at
7879
description: The date the return was received.
80+
created_by:
81+
type: string
82+
title: created_by
83+
description: The ID of the user that created the return.

www/apps/api-reference/specs/admin/components/schemas/BaseOrderFulfillment.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ required:
1414
- shipping_option_id
1515
- metadata
1616
- created_at
17+
- created_by
18+
- marked_shipped_by
1719
- updated_at
1820
properties:
1921
id:
@@ -80,3 +82,11 @@ properties:
8082
type: boolean
8183
title: requires_shipping
8284
description: Whether the fulfillment requires shipping.
85+
created_by:
86+
type: string
87+
title: created_by
88+
description: The ID of the user that created the fulfillment.
89+
marked_shipped_by:
90+
type: string
91+
title: marked_shipped_by
92+
description: The ID of the user that marked the fulfillment as shipped.

www/apps/api-reference/specs/admin/components/schemas/StoreOrderFulfillment.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ required:
1414
- shipping_option_id
1515
- metadata
1616
- created_at
17+
- created_by
18+
- marked_shipped_by
1719
- updated_at
1820
properties:
1921
id:
@@ -80,3 +82,11 @@ properties:
8082
type: boolean
8183
title: requires_shipping
8284
description: The fulfillment's requires shipping.
85+
created_by:
86+
type: string
87+
title: created_by
88+
description: The ID of the user that created the fulfillment.
89+
marked_shipped_by:
90+
type: string
91+
title: marked_shipped_by
92+
description: The ID of the user that marked the fulfillment as shipped.

www/apps/api-reference/specs/admin/components/schemas/StoreReturn.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ required:
88
- created_at
99
- order_id
1010
- canceled_at
11+
- created_by
1112
- received_at
1213
properties:
1314
items:
@@ -65,3 +66,7 @@ properties:
6566
type: string
6667
title: received_at
6768
description: The date the return items were received.
69+
created_by:
70+
type: string
71+
title: created_by
72+
description: The ID of the user that created the return.

www/apps/api-reference/specs/admin/openapi.full.yaml

Lines changed: 174 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25500,6 +25500,14 @@ paths:
2550025500
metadata:
2550125501
type: object
2550225502
description: The invite's metadata. Can be custom data in key-value pairs.
25503+
roles:
25504+
type: array
25505+
description: The invited user's roles.
25506+
x-featureFlag: rbac
25507+
items:
25508+
type: string
25509+
title: roles
25510+
description: The invited user's role.
2550325511
x-codeSamples:
2550425512
- lang: JavaScript
2550525513
label: JS SDK
@@ -66362,6 +66370,132 @@ paths:
6636266370
type: boolean
6636366371
title: with_deleted
6636466372
description: Whether to include deleted records in the result.
66373+
- name: state
66374+
in: query
66375+
required: false
66376+
schema:
66377+
oneOf:
66378+
- type: string
66379+
title: state
66380+
description: Filter by a workflow execution's state.
66381+
- type: array
66382+
description: Filter by workflow execution states.
66383+
items:
66384+
type: string
66385+
title: state
66386+
description: A workflow execution state.
66387+
- name: created_at
66388+
in: query
66389+
description: Filter by the workflow execution's creation date.
66390+
required: false
66391+
schema:
66392+
type: object
66393+
properties:
66394+
$and:
66395+
type: array
66396+
description: Join query parameters with an AND condition. Each object's content is the same type as the expected query parameters.
66397+
items:
66398+
type: object
66399+
$or:
66400+
type: array
66401+
description: Join query parameters with an OR condition. Each object's content is the same type as the expected query parameters.
66402+
items:
66403+
type: object
66404+
$eq:
66405+
oneOf:
66406+
- type: string
66407+
title: $eq
66408+
description: Filter by exact value.
66409+
- type: array
66410+
title: $eq
66411+
description: Filter by exact value.
66412+
items:
66413+
type: string
66414+
$ne:
66415+
type: string
66416+
title: $ne
66417+
description: Filter by not equal to the given value.
66418+
$in:
66419+
type: array
66420+
title: $in
66421+
description: Filter by values included in the given array.
66422+
items:
66423+
type: string
66424+
$nin:
66425+
type: array
66426+
title: $nin
66427+
description: Filter by values not included in the given array.
66428+
items:
66429+
type: string
66430+
$not:
66431+
oneOf:
66432+
- type: string
66433+
title: $not
66434+
description: Filter by not equal to the given value.
66435+
- type: object
66436+
title: $not
66437+
description: Filter by values not matching the conditions in this parameter.
66438+
- type: array
66439+
title: $not
66440+
description: Filter by values not matching the conditions in this parameter.
66441+
items:
66442+
type: string
66443+
$gt:
66444+
type: string
66445+
title: $gt
66446+
description: Filter by values greater than the given value.
66447+
$gte:
66448+
type: string
66449+
title: $gte
66450+
description: Filter by values greater than or equal to the given value.
66451+
$lt:
66452+
type: string
66453+
title: $lt
66454+
description: Filter by values less than the given value.
66455+
$lte:
66456+
type: string
66457+
title: $lte
66458+
description: Filter by values less than or equal to the given value.
66459+
$like:
66460+
type: string
66461+
title: $like
66462+
description: Apply a `like` filter. Useful for strings only.
66463+
$re:
66464+
type: string
66465+
title: $re
66466+
description: Apply a regex filter. Useful for strings only.
66467+
$ilike:
66468+
type: string
66469+
title: $ilike
66470+
description: Apply a case-insensitive `like` filter. Useful for strings only.
66471+
$fulltext:
66472+
type: string
66473+
title: $fulltext
66474+
description: Filter to apply on full-text properties.
66475+
$overlap:
66476+
type: array
66477+
title: $overlap
66478+
description: Filter to apply on array properties to find overlapping values.
66479+
items:
66480+
type: string
66481+
$contains:
66482+
type: array
66483+
title: $contains
66484+
description: Filter to apply on array properties to find contained values.
66485+
items:
66486+
type: string
66487+
$contained:
66488+
type: array
66489+
title: $contained
66490+
description: Filter to apply on array properties to find contained values.
66491+
items:
66492+
type: string
66493+
$exists:
66494+
type: boolean
66495+
title: $exists
66496+
description: Filter by whether a value exists or not.
66497+
title: created_at
66498+
description: The workflows execution's created at.
6636566499
security:
6636666500
- api_token: []
6636766501
- cookie_auth: []
@@ -75509,6 +75643,8 @@ components:
7550975643
- shipping_option_id
7551075644
- metadata
7551175645
- created_at
75646+
- created_by
75647+
- marked_shipped_by
7551275648
- updated_at
7551375649
properties:
7551475650
id:
@@ -75572,6 +75708,14 @@ components:
7557275708
type: boolean
7557375709
title: requires_shipping
7557475710
description: Whether the fulfillment requires shipping.
75711+
created_by:
75712+
type: string
75713+
title: created_by
75714+
description: The ID of the user that created the fulfillment.
75715+
marked_shipped_by:
75716+
type: string
75717+
title: marked_shipped_by
75718+
description: The ID of the user that marked the fulfillment as shipped.
7557575719
AdminOrderItem:
7557675720
type: object
7557775721
description: The order item's details.
@@ -79324,6 +79468,7 @@ components:
7932479468
- display_id
7932579469
- received_at
7932679470
- created_at
79471+
- created_by
7932779472
- canceled_at
7932879473
properties:
7932979474
id:
@@ -79389,6 +79534,10 @@ components:
7938979534
type: string
7939079535
title: received_at
7939179536
description: The date the return was received.
79537+
created_by:
79538+
type: string
79539+
title: created_by
79540+
description: The ID of the user that created the return.
7939279541
AdminReturnItem:
7939379542
type: object
7939479543
description: The return item's details.
@@ -84967,6 +85116,8 @@ components:
8496785116
- shipping_option_id
8496885117
- metadata
8496985118
- created_at
85119+
- created_by
85120+
- marked_shipped_by
8497085121
- updated_at
8497185122
properties:
8497285123
id:
@@ -85030,6 +85181,14 @@ components:
8503085181
type: boolean
8503185182
title: requires_shipping
8503285183
description: Whether the fulfillment requires shipping.
85184+
created_by:
85185+
type: string
85186+
title: created_by
85187+
description: The ID of the user that created the fulfillment.
85188+
marked_shipped_by:
85189+
type: string
85190+
title: marked_shipped_by
85191+
description: The ID of the user that marked the fulfillment as shipped.
8503385192
BaseOrderItemDetail:
8503485193
type: object
8503585194
description: The item's detail.
@@ -91738,6 +91897,8 @@ components:
9173891897
- shipping_option_id
9173991898
- metadata
9174091899
- created_at
91900+
- created_by
91901+
- marked_shipped_by
9174191902
- updated_at
9174291903
properties:
9174391904
id:
@@ -91801,6 +91962,14 @@ components:
9180191962
type: boolean
9180291963
title: requires_shipping
9180391964
description: The fulfillment's requires shipping.
91965+
created_by:
91966+
type: string
91967+
title: created_by
91968+
description: The ID of the user that created the fulfillment.
91969+
marked_shipped_by:
91970+
type: string
91971+
title: marked_shipped_by
91972+
description: The ID of the user that marked the fulfillment as shipped.
9180491973
StoreOrderLineItem:
9180591974
type: object
9180691975
description: The item's details.
@@ -98734,6 +98903,7 @@ components:
9873498903
- created_at
9873598904
- order_id
9873698905
- canceled_at
98906+
- created_by
9873798907
- received_at
9873898908
properties:
9873998909
items:
@@ -98791,6 +98961,10 @@ components:
9879198961
type: string
9879298962
title: received_at
9879398963
description: The date the return items were received.
98964+
created_by:
98965+
type: string
98966+
title: created_by
98967+
description: The ID of the user that created the return.
9879498968
StoreReturnItem:
9879598969
type: object
9879698970
description: The return item's details.

www/apps/api-reference/specs/admin/paths/admin_invites.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -649,6 +649,14 @@ post:
649649
metadata:
650650
type: object
651651
description: The invite's metadata. Can be custom data in key-value pairs.
652+
roles:
653+
type: array
654+
description: The invited user's roles.
655+
x-featureFlag: rbac
656+
items:
657+
type: string
658+
title: roles
659+
description: The invited user's role.
652660
x-codeSamples:
653661
- lang: JavaScript
654662
label: JS SDK

0 commit comments

Comments
 (0)