@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/dist/operations/index.d.ts +190 -0
- package/dist/operations/index.d.ts.map +1 -1
- package/dist/operations/index.js +4 -0
- package/dist/operations/resendJob.d.ts +196 -0
- package/dist/operations/resendJob.d.ts.map +1 -0
- package/dist/operations/resendJob.js +44 -0
- package/dist/schema.json +1 -1
- package/dist/widget/index.d.ts +2476 -2476
- package/dist/widget/index.d.ts.map +1 -1
- package/dist/widget/index.js +5044 -5044
- package/package.json +1 -1
- package/schema.yaml +28 -0
package/package.json
CHANGED
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
|