Skip to content

Commit 0565b0d

Browse files
committed
deploy: a46dd14
1 parent 69f0a68 commit 0565b0d

37 files changed

Lines changed: 95 additions & 59 deletions

openapi.1.0.0.yaml

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: 3.1.0
22
info:
33
title: Core System API
4-
version: '2026-05-11'
4+
version: '2026-05-18'
55
description: |-
66
## Pages
77
- [API Documentation (Redocly)](redocly/)
@@ -2534,6 +2534,7 @@ components:
25342534
required:
25352535
- title
25362536
- visibility
2537+
- allowEditResponse
25372538
properties:
25382539
title:
25392540
type: string
@@ -2570,6 +2571,9 @@ components:
25702571
allOf:
25712572
- $ref: '#/components/schemas/Forms.FormVisibility'
25722573
description: The visibility setting of the form. Public forms are visible to all logged-in users. Private forms require a direct link to access.
2574+
allowEditResponse:
2575+
type: boolean
2576+
description: Whether the user can edit their responses to the form. This is true if the form is still open and the user has already started a response, allowing them to continue editing until the deadline.
25732577
description: The request body for creating/updating a form.
25742578
examples:
25752579
- title: Enter SDC Form
@@ -2582,6 +2586,7 @@ components:
25822586
text: If you want to join us, just fill in this form!
25832587
messageAfterSubmission: Thank you for your submission!
25842588
visibility: PUBLIC
2589+
allowEditResponse: true
25852590
Forms.FormRequestUpdate:
25862591
type: object
25872592
properties:
@@ -2620,6 +2625,9 @@ components:
26202625
allOf:
26212626
- $ref: '#/components/schemas/Forms.FormVisibility'
26222627
description: The visibility setting of the form. Public forms are visible to all logged-in users. Private forms require a direct link to access.
2628+
allowEditResponse:
2629+
type: boolean
2630+
description: Whether the user can edit their responses to the form. This is true if the form is still open and the user has already started a response, allowing them to continue editing until the deadline.
26232631
description: The request body for creating/updating a form.
26242632
examples:
26252633
- title: Enter SDC Form
@@ -2632,6 +2640,7 @@ components:
26322640
text: If you want to join us, just fill in this form!
26332641
messageAfterSubmission: Thank you for your submission!
26342642
visibility: PUBLIC
2643+
allowEditResponse: true
26352644
Forms.FormResponse:
26362645
type: object
26372646
required:
@@ -2646,6 +2655,7 @@ components:
26462655
- deadline
26472656
- messageAfterSubmission
26482657
- visibility
2658+
- allowEditResponse
26492659
- createdAt
26502660
- updatedAt
26512661
properties:
@@ -2708,6 +2718,9 @@ components:
27082718
allOf:
27092719
- $ref: '#/components/schemas/Forms.FormVisibility'
27102720
description: The visibility setting of the form. Public forms are visible to all logged-in users. Private forms require a direct link to access.
2721+
allowEditResponse:
2722+
type: boolean
2723+
description: Whether the current user can edit their responses to the form. This is true if the form is still open and the user has already started a response, allowing them to continue editing until the deadline.
27112724
createdAt:
27122725
type: string
27132726
format: date-time
@@ -2764,6 +2777,7 @@ components:
27642777
coverImage: https://placehold.co/1800x600/0066cc/white.webp?text=SDC+2025+Recruitment
27652778
googleSheetUrl: https://docs.google.com/spreadsheets/d/1ABC123/edit
27662779
visibility: PUBLIC
2780+
allowEditResponse: true
27672781
createdAt: '2025-01-15T10:00:00Z'
27682782
updatedAt: '2025-02-10T14:30:00Z'
27692783
Forms.FormStatus:
@@ -5335,6 +5349,7 @@ components:
53355349
- title
53365350
- deadline
53375351
- status
5352+
- allowEditResponse
53385353
properties:
53395354
id:
53405355
allOf:
@@ -5351,6 +5366,9 @@ components:
53515366
allOf:
53525367
- $ref: '#/components/schemas/Unit.UserFormStatus'
53535368
description: The completion status of the form for the current user
5369+
allowEditResponse:
5370+
type: boolean
5371+
description: Whether the user can edit their responses to the form. This is true if the form is still open and the user has already started a response, allowing them to continue editing until the deadline.
53545372
responseIds:
53555373
type: array
53565374
items:
@@ -5362,19 +5380,22 @@ components:
53625380
title: Member Information Update 2025
53635381
deadline: '2025-02-15T23:59:59Z'
53645382
status: COMPLETED
5383+
allowEditResponse: true
53655384
responseIds:
53665385
- b23c4d5e-6f7a-8b9c-0d1e-f2a3b4c5d6e7
53675386
- c34d5e6f-7a8b-9c0d-1e2f-a3b4c5d6e7f8
53685387
- id: 9a843aa0-8451-4e3b-b6a0-8c0e994e9040
53695388
title: SDC 2025 Recruitment Form
53705389
deadline: '2025-03-31T23:59:59Z'
53715390
status: IN_PROGRESS
5391+
allowEditResponse: true
53725392
responseIds:
53735393
- a12b3c4d-5e6f-7a8b-9c0d-e1f2a3b4c5d6
53745394
- id: 5a1b2c3d-4e5f-6789-0abc-def123456789
53755395
title: Annual Survey 2026
53765396
deadline: '2026-03-31T23:59:59Z'
53775397
status: NOT_STARTED
5398+
allowEditResponse: false
53785399
Unit.UserFormListResponse:
53795400
type: array
53805401
items:
@@ -5384,17 +5405,20 @@ components:
53845405
- - id: 5a1b2c3d-4e5f-6789-0abc-def123456789
53855406
title: Annual Survey 2026
53865407
deadline: '2026-03-31T23:59:59Z'
5408+
allowEditResponse: false
53875409
status: NOT_STARTED
53885410
- id: 9a843aa0-8451-4e3b-b6a0-8c0e994e9040
53895411
title: SDC 2025 Recruitment Form
53905412
deadline: '2025-03-31T23:59:59Z'
53915413
status: IN_PROGRESS
5414+
allowEditResponse: true
53925415
responseIds:
53935416
- a12b3c4d-5e6f-7a8b-9c0d-e1f2a3b4c5d6
53945417
- id: 7f6e5d4c-3b2a-1098-7654-321fedcba098
53955418
title: Member Information Update 2025
53965419
deadline: '2025-02-15T23:59:59Z'
53975420
status: COMPLETED
5421+
allowEditResponse: true
53985422
responseIds:
53995423
- b23c4d5e-6f7a-8b9c-0d1e-f2a3b4c5d6e7
54005424
- c34d5e6f-7a8b-9c0d-1e2f-a3b4c5d6e7f8

redocly/index.html

Lines changed: 16 additions & 12 deletions
Large diffs are not rendered by default.

sdk/assets/search.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/interfaces/AuthInternalLoginRequest.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ <h2 id="pages" class="tsd-anchor-link">Pages<a href="#pages" aria-label="Permali
66
<li><a href="redocly/">API Documentation (Redocly)</a></li>
77
<li><a href="swagger/">API Documentation (Swagger UI)</a></li>
88
<li><a href="sdk/">SDK Documentation (TypeDoc)</a>
9-
OpenAPI spec version: 2026-05-11</li>
9+
OpenAPI spec version: 2026-05-18</li>
1010
</ul>
1111
</div></section><div class="tsd-signature"><span class="tsd-signature-keyword">interface</span> <span class="tsd-kind-interface">AuthInternalLoginRequest</span> <span class="tsd-signature-symbol">{</span><br/>    <a class="tsd-kind-property" href="#uid">uid</a><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">;</span><br/><span class="tsd-signature-symbol">}</span></div><aside class="tsd-sources"><ul><li>Defined in model/authInternalLoginRequest.ts:12</li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h5 class="tsd-index-heading uppercase">Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Properties</h3><div class="tsd-index-list"><a href="#uid" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>uid</span></a>
1212
</div></section></div></details></section></section><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Properties"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>Properties</h2></summary><section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="uid"><span>uid</span><a href="#uid" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">uid</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><p>The user ID to login as.</p>

sdk/interfaces/AuthInternalLoginResponse.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ <h2 id="pages" class="tsd-anchor-link">Pages<a href="#pages" aria-label="Permali
66
<li><a href="redocly/">API Documentation (Redocly)</a></li>
77
<li><a href="swagger/">API Documentation (Swagger UI)</a></li>
88
<li><a href="sdk/">SDK Documentation (TypeDoc)</a>
9-
OpenAPI spec version: 2026-05-11</li>
9+
OpenAPI spec version: 2026-05-18</li>
1010
</ul>
1111
</div></section><div class="tsd-signature"><span class="tsd-signature-keyword">interface</span> <span class="tsd-kind-interface">AuthInternalLoginResponse</span> <span class="tsd-signature-symbol">{</span><br/>    <a class="tsd-kind-property" href="#message">message</a><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">;</span><br/><span class="tsd-signature-symbol">}</span></div><aside class="tsd-sources"><ul><li>Defined in model/authInternalLoginResponse.ts:12</li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h5 class="tsd-index-heading uppercase">Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Properties</h3><div class="tsd-index-list"><a href="#message" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>message</span></a>
1212
</div></section></div></details></section></section><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Properties"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>Properties</h2></summary><section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="message"><span>message</span><a href="#message" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">message</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><div class="tsd-comment tsd-typography"><p>Login status message.</p>

sdk/interfaces/AuthRefreshToken.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ <h2 id="pages" class="tsd-anchor-link">Pages<a href="#pages" aria-label="Permali
66
<li><a href="redocly/">API Documentation (Redocly)</a></li>
77
<li><a href="swagger/">API Documentation (Swagger UI)</a></li>
88
<li><a href="sdk/">SDK Documentation (TypeDoc)</a>
9-
OpenAPI spec version: 2026-05-11</li>
9+
OpenAPI spec version: 2026-05-18</li>
1010
</ul>
1111
</div></section><div class="tsd-signature"><span class="tsd-signature-keyword">interface</span> <span class="tsd-kind-interface">AuthRefreshToken</span> <span class="tsd-signature-symbol">{</span><br/>    <a class="tsd-kind-property" href="#accesstoken">accessToken</a><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#expirationtime">expirationTime</a><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">;</span><br/>    <a class="tsd-kind-property" href="#refreshtoken">refreshToken</a><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">;</span><br/><span class="tsd-signature-symbol">}</span></div><aside class="tsd-sources"><ul><li>Defined in model/authRefreshToken.ts:12</li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h5 class="tsd-index-heading uppercase">Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Properties</h3><div class="tsd-index-list"><a href="#accesstoken" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>access<wbr/>Token</span></a>
1212
<a href="#expirationtime" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>expiration<wbr/>Time</span></a>

sdk/interfaces/FormsFormCoverUploadRequest.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ <h2 id="pages" class="tsd-anchor-link">Pages<a href="#pages" aria-label="Permali
66
<li><a href="redocly/">API Documentation (Redocly)</a></li>
77
<li><a href="swagger/">API Documentation (Swagger UI)</a></li>
88
<li><a href="sdk/">SDK Documentation (TypeDoc)</a>
9-
OpenAPI spec version: 2026-05-11</li>
9+
OpenAPI spec version: 2026-05-18</li>
1010
</ul>
1111
</div></section><div class="tsd-signature"><span class="tsd-signature-keyword">interface</span> <span class="tsd-kind-interface">FormsFormCoverUploadRequest</span> <span class="tsd-signature-symbol">{</span><br/>    <a class="tsd-kind-property" href="#coverimage">coverImage</a><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Blob</span><span class="tsd-signature-symbol">;</span><br/><span class="tsd-signature-symbol">}</span></div><aside class="tsd-sources"><ul><li>Defined in model/formsFormCoverUploadRequest.ts:12</li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h5 class="tsd-index-heading uppercase">Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Properties</h3><div class="tsd-index-list"><a href="#coverimage" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>cover<wbr/>Image</span></a>
1212
</div></section></div></details></section></section><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Properties"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>Properties</h2></summary><section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="coverimage"><span>cover<wbr/>Image</span><a href="#coverimage" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">coverImage</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Blob</span></div><aside class="tsd-sources"><ul><li>Defined in model/formsFormCoverUploadRequest.ts:13</li></ul></aside></section></section></details></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>On This Page</h3></summary><div class="tsd-accordion-details"><a href="#pages"><span>Pages</span></a><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-Properties"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Properties</summary><div><a href="#coverimage"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>cover<wbr/>Image</span></a></div></details></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html">@nycu-sdc/core-system-sdk</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer></footer><div class="overlay"></div></body></html>

0 commit comments

Comments
 (0)