File tree 5 files changed +16
-29
lines changed
5 files changed +16
-29
lines changed Original file line number Diff line number Diff line change @@ -26,14 +26,6 @@ $template_arguments:
26
26
/acquisitions/{AcquisitionId}/tags/{TagValue} :
27
27
$template : templates/tags-tag.yaml
28
28
29
- # ===== Packfile =====
30
- /acquisitions/{AcquisitionId}/packfile-start :
31
- $template : templates/packfile-start.yaml
32
- /acquisitions/{AcquisitionId}/packfile :
33
- $template : templates/packfile.yaml
34
- /acquisitions/{AcquisitionId}/packfile-end :
35
- $template : templates/packfile-end.yaml
36
-
37
29
# ===== Files =====
38
30
/acquisitions/{AcquisitionId}/files :
39
31
$template : templates/file-list-upload.yaml
Original file line number Diff line number Diff line change @@ -150,14 +150,6 @@ $template_arguments:
150
150
/collections/{CollectionId}/tags/{TagValue} :
151
151
$template : templates/tags-tag.yaml
152
152
153
- # ===== Packfile =====
154
- /collections/{CollectionId}/packfile-start :
155
- $template : templates/packfile-start.yaml
156
- /collections/{CollectionId}/packfile :
157
- $template : templates/packfile.yaml
158
- /collections/{CollectionId}/packfile-end :
159
- $template : templates/packfile-end.yaml
160
-
161
153
# ===== Files =====
162
154
/collections/{CollectionId}/files :
163
155
$template : templates/file-list-upload.yaml
Original file line number Diff line number Diff line change @@ -51,14 +51,6 @@ $template_arguments:
51
51
/sessions/{SessionId}/tags/{TagValue} :
52
52
$template : templates/tags-tag.yaml
53
53
54
- # ===== Packfile =====
55
- /sessions/{SessionId}/packfile-start :
56
- $template : templates/packfile-start.yaml
57
- /sessions/{SessionId}/packfile :
58
- $template : templates/packfile.yaml
59
- /sessions/{SessionId}/packfile-end :
60
- $template : templates/packfile-end.yaml
61
-
62
54
# ===== Files =====
63
55
/sessions/{SessionId}/files :
64
56
$template : templates/file-list-upload.yaml
Original file line number Diff line number Diff line change @@ -14,17 +14,23 @@ template: |
14
14
type: string
15
15
in: path
16
16
name: '{{parameter}}'
17
- post :
17
+ get :
18
18
summary: End a packfile upload
19
19
operationId: end_{{resource}}_packfile_upload
20
20
tags:
21
21
- '{{tag}}'
22
22
produces:
23
23
- text/event-stream
24
24
parameters:
25
- - in: formData
26
- name: formData
25
+ - name: token
26
+ in: query
27
27
type: string
28
+ required: true
29
+ - name: metadata
30
+ in: query
31
+ type: string
32
+ required: true
33
+ description: string-encoded metadata json object.
28
34
responses:
29
35
'200':
30
36
description: ''
Original file line number Diff line number Diff line change @@ -22,9 +22,14 @@ template: |
22
22
consumes:
23
23
- multipart/form-data
24
24
parameters:
25
- - in: formData
26
- name: formData
25
+ - name: token
26
+ in: query
27
27
type: string
28
+ required: true
29
+ - name: file
30
+ in: formData
31
+ type: file
32
+ required: true
28
33
responses:
29
34
'200':
30
35
description: ''
You can’t perform that action at this time.
0 commit comments