@kanda-libs/ks-schema 1.0.105 → 1.0.106

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kanda-libs/ks-schema",
3
- "version": "1.0.105",
3
+ "version": "1.0.106",
4
4
  "description": "Kanda Service OpenAPI Schema",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/schema.yaml CHANGED
@@ -684,6 +684,34 @@ paths:
684
684
  schema:
685
685
  $ref: "#/components/schemas/Error"
686
686
 
687
+ /api/job/{id}/resend:
688
+ post:
689
+ operationId: resendJob
690
+ summary: resend existing job
691
+ tags:
692
+ - Job
693
+ parameters:
694
+ - name: id
695
+ in: path
696
+ description: job id
697
+ required: true
698
+ schema:
699
+ type: string
700
+ minLength: 1
701
+ responses:
702
+ 200:
703
+ description: resent existing job
704
+ content:
705
+ application/json:
706
+ schema:
707
+ $ref: "#/components/schemas/Job"
708
+ default:
709
+ description: unexpected error
710
+ content:
711
+ application/json:
712
+ schema:
713
+ $ref: "#/components/schemas/Error"
714
+
687
715
  /api/job/{id}/complete:
688
716
  post:
689
717
  operationId: completeJob