File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ install:
1111
1212lint :
1313 npm run lint
14- python scripts/fix.py --path ./aep/general/
15- python scripts/validate_links.py
14+ python3 scripts/fix.py --path ./aep/general/
15+ python3 scripts/validate_links.py
1616
1717check :
1818 npm run check
19- python scripts/fix.py --check --path ./aep/general/
20- python scripts/validate_links.py
19+ python3 scripts/fix.py --check --path ./aep/general/
20+ python3 scripts/validate_links.py
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ Create methods **must** adhere to one of the following:
6666
6767- If a user attempts a create on a soft-deleted resource, the create **must**
6868 succeed, acting as if the resource did not exist previously.
69- - The create must accept a field (query parameter for OAS),
69+ - The create ** must** accept a field (query parameter for OAS),
7070 `overwrite_soft_deleted`. If set to `false`, the request **must** fail if a
7171 soft-deleted resource exists. If set to `true`, the request **must** succeed
7272 if the resource exists acting as if the resource did not exist previously.
@@ -78,7 +78,8 @@ default (unless `bool show_deleted` is true).
7878
7979A `Get` AEP-131 request for a soft deleted resource **must** return with a
8080`404 Not Found` response unless `bool show_deleted` is true, in which case
81- soft-deleted resources **must** return the resource (with the `DELETED` state value if the resource includes a [`state` field](/states)).
81+ soft-deleted resources **must** return the resource (with the `DELETED` state
82+ value if the resource includes a [`state` field](/states)).
8283
8384Services that soft delete resources **may** choose a reasonable strategy for
8485purging those resources, including automatic purging after a reasonable time
You can’t perform that action at this time.
0 commit comments