@proveanything/smartlinks 1.9.4 → 1.9.5
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/docs/API_SUMMARY.md +138 -1
- package/dist/docs/translations.md +82 -0
- package/dist/openapi.yaml +1435 -496
- package/docs/API_SUMMARY.md +138 -1
- package/docs/translations.md +82 -0
- package/openapi.yaml +1435 -496
- package/package.json +1 -1
package/dist/openapi.yaml
CHANGED
|
@@ -106,115 +106,7 @@ paths:
|
|
|
106
106
|
application/json:
|
|
107
107
|
schema:
|
|
108
108
|
$ref: "#/components/schemas/CollectionCreateRequest"
|
|
109
|
-
/admin/collection
|
|
110
|
-
post:
|
|
111
|
-
tags:
|
|
112
|
-
- async
|
|
113
|
-
summary: "Enqueue a background job for a collection POST /admin/collection/:collectionId/async/jobs (202)"
|
|
114
|
-
operationId: async_enqueueAsyncJob
|
|
115
|
-
security:
|
|
116
|
-
- bearerAuth: []
|
|
117
|
-
responses:
|
|
118
|
-
200:
|
|
119
|
-
description: Success
|
|
120
|
-
content:
|
|
121
|
-
application/json:
|
|
122
|
-
schema:
|
|
123
|
-
$ref: "#/components/schemas/EnqueueAsyncJobResponse"
|
|
124
|
-
400:
|
|
125
|
-
description: Bad request
|
|
126
|
-
401:
|
|
127
|
-
description: Unauthorized
|
|
128
|
-
404:
|
|
129
|
-
description: Not found
|
|
130
|
-
requestBody:
|
|
131
|
-
required: true
|
|
132
|
-
content:
|
|
133
|
-
application/json:
|
|
134
|
-
schema:
|
|
135
|
-
$ref: "#/components/schemas/EnqueueAsyncJobRequest"
|
|
136
|
-
/admin/collection//async/jobs/{jobId}:
|
|
137
|
-
get:
|
|
138
|
-
tags:
|
|
139
|
-
- async
|
|
140
|
-
summary: "Enqueue a background job for a collection POST /admin/collection/:collectionId/async/jobs (202) / export async function"
|
|
141
|
-
operationId: async_getAsyncJobStatus
|
|
142
|
-
security:
|
|
143
|
-
- bearerAuth: []
|
|
144
|
-
parameters:
|
|
145
|
-
- name: jobId
|
|
146
|
-
in: path
|
|
147
|
-
required: true
|
|
148
|
-
schema:
|
|
149
|
-
type: string
|
|
150
|
-
responses:
|
|
151
|
-
200:
|
|
152
|
-
description: Success
|
|
153
|
-
content:
|
|
154
|
-
application/json:
|
|
155
|
-
schema:
|
|
156
|
-
$ref: "#/components/schemas/Job"
|
|
157
|
-
400:
|
|
158
|
-
description: Bad request
|
|
159
|
-
401:
|
|
160
|
-
description: Unauthorized
|
|
161
|
-
404:
|
|
162
|
-
description: Not found
|
|
163
|
-
/admin/collection//jobs/{jobId}:
|
|
164
|
-
get:
|
|
165
|
-
tags:
|
|
166
|
-
- jobs
|
|
167
|
-
summary: "List visible jobs for a collection GET /admin/collection/:collectionId/jobs / export async function listJobs( collection"
|
|
168
|
-
operationId: jobs_getJob
|
|
169
|
-
security:
|
|
170
|
-
- bearerAuth: []
|
|
171
|
-
parameters:
|
|
172
|
-
- name: jobId
|
|
173
|
-
in: path
|
|
174
|
-
required: true
|
|
175
|
-
schema:
|
|
176
|
-
type: string
|
|
177
|
-
responses:
|
|
178
|
-
200:
|
|
179
|
-
description: Success
|
|
180
|
-
content:
|
|
181
|
-
application/json:
|
|
182
|
-
schema:
|
|
183
|
-
$ref: "#/components/schemas/Job"
|
|
184
|
-
400:
|
|
185
|
-
description: Bad request
|
|
186
|
-
401:
|
|
187
|
-
description: Unauthorized
|
|
188
|
-
404:
|
|
189
|
-
description: Not found
|
|
190
|
-
/admin/collection//jobs{qs}:
|
|
191
|
-
get:
|
|
192
|
-
tags:
|
|
193
|
-
- jobs
|
|
194
|
-
summary: "List visible jobs for a collection GET /admin/collection/:collectionId/jobs"
|
|
195
|
-
operationId: jobs_listJobs
|
|
196
|
-
security:
|
|
197
|
-
- bearerAuth: []
|
|
198
|
-
parameters:
|
|
199
|
-
- name: qs
|
|
200
|
-
in: path
|
|
201
|
-
required: true
|
|
202
|
-
schema:
|
|
203
|
-
type: string
|
|
204
|
-
responses:
|
|
205
|
-
200:
|
|
206
|
-
description: Success
|
|
207
|
-
content:
|
|
208
|
-
application/json:
|
|
209
|
-
schema:
|
|
210
|
-
$ref: "#/components/schemas/JobsPage"
|
|
211
|
-
400:
|
|
212
|
-
description: Bad request
|
|
213
|
-
401:
|
|
214
|
-
description: Unauthorized
|
|
215
|
-
404:
|
|
216
|
-
description: Not found
|
|
217
|
-
/admin/collection//product//batch/{batchId}:
|
|
109
|
+
/admin/collection/product/batch/{batchId}:
|
|
218
110
|
get:
|
|
219
111
|
tags:
|
|
220
112
|
- batch
|
|
@@ -300,7 +192,7 @@ paths:
|
|
|
300
192
|
description: Unauthorized
|
|
301
193
|
404:
|
|
302
194
|
description: Not found
|
|
303
|
-
/admin/collection
|
|
195
|
+
/admin/collection/product/variant/{variantId}:
|
|
304
196
|
get:
|
|
305
197
|
tags:
|
|
306
198
|
- variant
|
|
@@ -386,7 +278,7 @@ paths:
|
|
|
386
278
|
description: Unauthorized
|
|
387
279
|
404:
|
|
388
280
|
description: Not found
|
|
389
|
-
/admin/collection
|
|
281
|
+
/admin/collection/product/{productId}/batch:
|
|
390
282
|
get:
|
|
391
283
|
tags:
|
|
392
284
|
- batch
|
|
@@ -447,7 +339,7 @@ paths:
|
|
|
447
339
|
application/json:
|
|
448
340
|
schema:
|
|
449
341
|
$ref: "#/components/schemas/BatchCreateRequest"
|
|
450
|
-
/admin/collection
|
|
342
|
+
/admin/collection/product/{productId}/variant:
|
|
451
343
|
get:
|
|
452
344
|
tags:
|
|
453
345
|
- variant
|
|
@@ -739,6 +631,24 @@ paths:
|
|
|
739
631
|
required: true
|
|
740
632
|
schema:
|
|
741
633
|
type: string
|
|
634
|
+
- name: provider
|
|
635
|
+
in: query
|
|
636
|
+
required: false
|
|
637
|
+
schema:
|
|
638
|
+
type: string
|
|
639
|
+
enum:
|
|
640
|
+
- gemini
|
|
641
|
+
- openai
|
|
642
|
+
- name: capability
|
|
643
|
+
in: query
|
|
644
|
+
required: false
|
|
645
|
+
schema:
|
|
646
|
+
type: string
|
|
647
|
+
enum:
|
|
648
|
+
- text
|
|
649
|
+
- vision
|
|
650
|
+
- audio
|
|
651
|
+
- code
|
|
742
652
|
responses:
|
|
743
653
|
200:
|
|
744
654
|
description: Success
|
|
@@ -1034,12 +944,12 @@ paths:
|
|
|
1034
944
|
description: Unauthorized
|
|
1035
945
|
404:
|
|
1036
946
|
description: Not found
|
|
1037
|
-
/admin/collection/{collectionId}/
|
|
947
|
+
/admin/collection/{collectionId}/async/jobs:
|
|
1038
948
|
post:
|
|
1039
949
|
tags:
|
|
1040
|
-
-
|
|
1041
|
-
summary:
|
|
1042
|
-
operationId:
|
|
950
|
+
- async
|
|
951
|
+
summary: "Enqueue a background job for a collection POST /admin/collection/:collectionId/async/jobs (202)"
|
|
952
|
+
operationId: async_enqueueAsyncJob
|
|
1043
953
|
security:
|
|
1044
954
|
- bearerAuth: []
|
|
1045
955
|
parameters:
|
|
@@ -1054,7 +964,7 @@ paths:
|
|
|
1054
964
|
content:
|
|
1055
965
|
application/json:
|
|
1056
966
|
schema:
|
|
1057
|
-
$ref: "#/components/schemas/
|
|
967
|
+
$ref: "#/components/schemas/EnqueueAsyncJobResponse"
|
|
1058
968
|
400:
|
|
1059
969
|
description: Bad request
|
|
1060
970
|
401:
|
|
@@ -1066,13 +976,13 @@ paths:
|
|
|
1066
976
|
content:
|
|
1067
977
|
application/json:
|
|
1068
978
|
schema:
|
|
1069
|
-
$ref: "#/components/schemas/
|
|
1070
|
-
/admin/collection/{collectionId}/
|
|
979
|
+
$ref: "#/components/schemas/EnqueueAsyncJobRequest"
|
|
980
|
+
/admin/collection/{collectionId}/async/jobs/{jobId}:
|
|
1071
981
|
get:
|
|
1072
982
|
tags:
|
|
1073
|
-
-
|
|
1074
|
-
summary: "
|
|
1075
|
-
operationId:
|
|
983
|
+
- async
|
|
984
|
+
summary: "Enqueue a background job for a collection POST /admin/collection/:collectionId/async/jobs (202) / export async function"
|
|
985
|
+
operationId: async_getAsyncJobStatus
|
|
1076
986
|
security:
|
|
1077
987
|
- bearerAuth: []
|
|
1078
988
|
parameters:
|
|
@@ -1081,7 +991,7 @@ paths:
|
|
|
1081
991
|
required: true
|
|
1082
992
|
schema:
|
|
1083
993
|
type: string
|
|
1084
|
-
- name:
|
|
994
|
+
- name: jobId
|
|
1085
995
|
in: path
|
|
1086
996
|
required: true
|
|
1087
997
|
schema:
|
|
@@ -1092,19 +1002,19 @@ paths:
|
|
|
1092
1002
|
content:
|
|
1093
1003
|
application/json:
|
|
1094
1004
|
schema:
|
|
1095
|
-
$ref: "#/components/schemas/
|
|
1005
|
+
$ref: "#/components/schemas/Job"
|
|
1096
1006
|
400:
|
|
1097
1007
|
description: Bad request
|
|
1098
1008
|
401:
|
|
1099
1009
|
description: Unauthorized
|
|
1100
1010
|
404:
|
|
1101
1011
|
description: Not found
|
|
1102
|
-
/admin/collection/{collectionId}/attestations
|
|
1012
|
+
/admin/collection/{collectionId}/attestations:
|
|
1103
1013
|
get:
|
|
1104
1014
|
tags:
|
|
1105
1015
|
- attestations
|
|
1106
|
-
summary:
|
|
1107
|
-
operationId:
|
|
1016
|
+
summary: List attestations for a subject (admin).
|
|
1017
|
+
operationId: attestations_list
|
|
1108
1018
|
security:
|
|
1109
1019
|
- bearerAuth: []
|
|
1110
1020
|
parameters:
|
|
@@ -1113,30 +1023,59 @@ paths:
|
|
|
1113
1023
|
required: true
|
|
1114
1024
|
schema:
|
|
1115
1025
|
type: string
|
|
1116
|
-
- name:
|
|
1117
|
-
in:
|
|
1118
|
-
required:
|
|
1026
|
+
- name: subjectType
|
|
1027
|
+
in: query
|
|
1028
|
+
required: false
|
|
1029
|
+
schema:
|
|
1030
|
+
$ref: "#/components/schemas/AttestationSubjectType"
|
|
1031
|
+
- name: subjectId
|
|
1032
|
+
in: query
|
|
1033
|
+
required: false
|
|
1034
|
+
schema:
|
|
1035
|
+
type: string
|
|
1036
|
+
- name: attestationType
|
|
1037
|
+
in: query
|
|
1038
|
+
required: false
|
|
1039
|
+
schema:
|
|
1040
|
+
type: string
|
|
1041
|
+
- name: recordedAfter
|
|
1042
|
+
in: query
|
|
1043
|
+
required: false
|
|
1044
|
+
schema:
|
|
1045
|
+
type: string
|
|
1046
|
+
- name: recordedBefore
|
|
1047
|
+
in: query
|
|
1048
|
+
required: false
|
|
1119
1049
|
schema:
|
|
1120
1050
|
type: string
|
|
1051
|
+
- name: limit
|
|
1052
|
+
in: query
|
|
1053
|
+
required: false
|
|
1054
|
+
schema:
|
|
1055
|
+
type: number
|
|
1056
|
+
- name: offset
|
|
1057
|
+
in: query
|
|
1058
|
+
required: false
|
|
1059
|
+
schema:
|
|
1060
|
+
type: number
|
|
1121
1061
|
responses:
|
|
1122
1062
|
200:
|
|
1123
1063
|
description: Success
|
|
1124
1064
|
content:
|
|
1125
1065
|
application/json:
|
|
1126
1066
|
schema:
|
|
1127
|
-
$ref: "#/components/schemas/
|
|
1067
|
+
$ref: "#/components/schemas/ListAttestationsResponse"
|
|
1128
1068
|
400:
|
|
1129
1069
|
description: Bad request
|
|
1130
1070
|
401:
|
|
1131
1071
|
description: Unauthorized
|
|
1132
1072
|
404:
|
|
1133
1073
|
description: Not found
|
|
1134
|
-
|
|
1135
|
-
get:
|
|
1074
|
+
post:
|
|
1136
1075
|
tags:
|
|
1137
1076
|
- attestations
|
|
1138
|
-
summary:
|
|
1139
|
-
operationId:
|
|
1077
|
+
summary: Create a single attestation (admin).
|
|
1078
|
+
operationId: attestations_create
|
|
1140
1079
|
security:
|
|
1141
1080
|
- bearerAuth: []
|
|
1142
1081
|
parameters:
|
|
@@ -1145,30 +1084,31 @@ paths:
|
|
|
1145
1084
|
required: true
|
|
1146
1085
|
schema:
|
|
1147
1086
|
type: string
|
|
1148
|
-
- name: qs
|
|
1149
|
-
in: path
|
|
1150
|
-
required: true
|
|
1151
|
-
schema:
|
|
1152
|
-
type: string
|
|
1153
1087
|
responses:
|
|
1154
1088
|
200:
|
|
1155
1089
|
description: Success
|
|
1156
1090
|
content:
|
|
1157
1091
|
application/json:
|
|
1158
1092
|
schema:
|
|
1159
|
-
$ref: "#/components/schemas/
|
|
1093
|
+
$ref: "#/components/schemas/Attestation"
|
|
1160
1094
|
400:
|
|
1161
1095
|
description: Bad request
|
|
1162
1096
|
401:
|
|
1163
1097
|
description: Unauthorized
|
|
1164
1098
|
404:
|
|
1165
1099
|
description: Not found
|
|
1166
|
-
|
|
1100
|
+
requestBody:
|
|
1101
|
+
required: true
|
|
1102
|
+
content:
|
|
1103
|
+
application/json:
|
|
1104
|
+
schema:
|
|
1105
|
+
$ref: "#/components/schemas/CreateAttestationInput"
|
|
1106
|
+
/admin/collection/{collectionId}/attestations/latest:
|
|
1167
1107
|
get:
|
|
1168
1108
|
tags:
|
|
1169
1109
|
- attestations
|
|
1170
|
-
summary:
|
|
1171
|
-
operationId:
|
|
1110
|
+
summary: "Latest snapshot — one record per `attestationType` (admin)."
|
|
1111
|
+
operationId: attestations_latest
|
|
1172
1112
|
security:
|
|
1173
1113
|
- bearerAuth: []
|
|
1174
1114
|
parameters:
|
|
@@ -1177,9 +1117,14 @@ paths:
|
|
|
1177
1117
|
required: true
|
|
1178
1118
|
schema:
|
|
1179
1119
|
type: string
|
|
1180
|
-
- name:
|
|
1181
|
-
in:
|
|
1182
|
-
required:
|
|
1120
|
+
- name: subjectType
|
|
1121
|
+
in: query
|
|
1122
|
+
required: false
|
|
1123
|
+
schema:
|
|
1124
|
+
$ref: "#/components/schemas/AttestationSubjectType"
|
|
1125
|
+
- name: subjectId
|
|
1126
|
+
in: query
|
|
1127
|
+
required: false
|
|
1183
1128
|
schema:
|
|
1184
1129
|
type: string
|
|
1185
1130
|
responses:
|
|
@@ -1188,19 +1133,19 @@ paths:
|
|
|
1188
1133
|
content:
|
|
1189
1134
|
application/json:
|
|
1190
1135
|
schema:
|
|
1191
|
-
$ref: "#/components/schemas/
|
|
1136
|
+
$ref: "#/components/schemas/AttestationLatestResponse"
|
|
1192
1137
|
400:
|
|
1193
1138
|
description: Bad request
|
|
1194
1139
|
401:
|
|
1195
1140
|
description: Unauthorized
|
|
1196
1141
|
404:
|
|
1197
1142
|
description: Not found
|
|
1198
|
-
/admin/collection/{collectionId}/attestations/
|
|
1143
|
+
/admin/collection/{collectionId}/attestations/summary:
|
|
1199
1144
|
get:
|
|
1200
1145
|
tags:
|
|
1201
1146
|
- attestations
|
|
1202
|
-
summary:
|
|
1203
|
-
operationId:
|
|
1147
|
+
summary: Time-series summary of attestations (admin).
|
|
1148
|
+
operationId: attestations_summary
|
|
1204
1149
|
security:
|
|
1205
1150
|
- bearerAuth: []
|
|
1206
1151
|
parameters:
|
|
@@ -1209,30 +1154,65 @@ paths:
|
|
|
1209
1154
|
required: true
|
|
1210
1155
|
schema:
|
|
1211
1156
|
type: string
|
|
1212
|
-
- name:
|
|
1213
|
-
in:
|
|
1214
|
-
required:
|
|
1157
|
+
- name: subjectType
|
|
1158
|
+
in: query
|
|
1159
|
+
required: false
|
|
1160
|
+
schema:
|
|
1161
|
+
$ref: "#/components/schemas/AttestationSubjectType"
|
|
1162
|
+
- name: subjectId
|
|
1163
|
+
in: query
|
|
1164
|
+
required: false
|
|
1165
|
+
schema:
|
|
1166
|
+
type: string
|
|
1167
|
+
- name: attestationType
|
|
1168
|
+
in: query
|
|
1169
|
+
required: false
|
|
1170
|
+
schema:
|
|
1171
|
+
type: string
|
|
1172
|
+
- name: valueField
|
|
1173
|
+
in: query
|
|
1174
|
+
required: false
|
|
1175
|
+
schema:
|
|
1176
|
+
type: string
|
|
1177
|
+
- name: groupBy
|
|
1178
|
+
in: query
|
|
1179
|
+
required: false
|
|
1180
|
+
schema:
|
|
1181
|
+
$ref: "#/components/schemas/AttestationGroupBy"
|
|
1182
|
+
- name: recordedAfter
|
|
1183
|
+
in: query
|
|
1184
|
+
required: false
|
|
1185
|
+
schema:
|
|
1186
|
+
type: string
|
|
1187
|
+
- name: recordedBefore
|
|
1188
|
+
in: query
|
|
1189
|
+
required: false
|
|
1215
1190
|
schema:
|
|
1216
1191
|
type: string
|
|
1192
|
+
- name: limit
|
|
1193
|
+
in: query
|
|
1194
|
+
required: false
|
|
1195
|
+
schema:
|
|
1196
|
+
type: number
|
|
1217
1197
|
responses:
|
|
1218
1198
|
200:
|
|
1219
1199
|
description: Success
|
|
1220
1200
|
content:
|
|
1221
1201
|
application/json:
|
|
1222
1202
|
schema:
|
|
1223
|
-
$ref: "#/components/schemas/
|
|
1203
|
+
$ref: "#/components/schemas/AttestationSummaryResponse"
|
|
1224
1204
|
400:
|
|
1225
1205
|
description: Bad request
|
|
1226
1206
|
401:
|
|
1227
1207
|
description: Unauthorized
|
|
1228
1208
|
404:
|
|
1229
1209
|
description: Not found
|
|
1230
|
-
/admin/collection/{collectionId}/attestations
|
|
1210
|
+
/admin/collection/{collectionId}/attestations/tree-latest:
|
|
1231
1211
|
get:
|
|
1232
1212
|
tags:
|
|
1233
1213
|
- attestations
|
|
1234
|
-
summary:
|
|
1235
|
-
operationId:
|
|
1214
|
+
summary: Tree latest snapshot — most-recent record per type across a container subtree (admin).
|
|
1215
|
+
operationId: attestations_treeLatest
|
|
1236
1216
|
security:
|
|
1237
1217
|
- bearerAuth: []
|
|
1238
1218
|
parameters:
|
|
@@ -1241,18 +1221,132 @@ paths:
|
|
|
1241
1221
|
required: true
|
|
1242
1222
|
schema:
|
|
1243
1223
|
type: string
|
|
1244
|
-
- name:
|
|
1245
|
-
in:
|
|
1246
|
-
required:
|
|
1224
|
+
- name: subjectId
|
|
1225
|
+
in: query
|
|
1226
|
+
required: false
|
|
1247
1227
|
schema:
|
|
1248
1228
|
type: string
|
|
1229
|
+
- name: includeItems
|
|
1230
|
+
in: query
|
|
1231
|
+
required: false
|
|
1232
|
+
schema:
|
|
1233
|
+
type: boolean
|
|
1249
1234
|
responses:
|
|
1250
1235
|
200:
|
|
1251
1236
|
description: Success
|
|
1252
1237
|
content:
|
|
1253
1238
|
application/json:
|
|
1254
1239
|
schema:
|
|
1255
|
-
$ref: "#/components/schemas/
|
|
1240
|
+
$ref: "#/components/schemas/AttestationTreeLatestResponse"
|
|
1241
|
+
400:
|
|
1242
|
+
description: Bad request
|
|
1243
|
+
401:
|
|
1244
|
+
description: Unauthorized
|
|
1245
|
+
404:
|
|
1246
|
+
description: Not found
|
|
1247
|
+
/admin/collection/{collectionId}/attestations/tree-summary:
|
|
1248
|
+
get:
|
|
1249
|
+
tags:
|
|
1250
|
+
- attestations
|
|
1251
|
+
summary: Tree time-series summary — aggregates across an entire container subtree (admin).
|
|
1252
|
+
operationId: attestations_treeSummary
|
|
1253
|
+
security:
|
|
1254
|
+
- bearerAuth: []
|
|
1255
|
+
parameters:
|
|
1256
|
+
- name: collectionId
|
|
1257
|
+
in: path
|
|
1258
|
+
required: true
|
|
1259
|
+
schema:
|
|
1260
|
+
type: string
|
|
1261
|
+
- name: subjectId
|
|
1262
|
+
in: query
|
|
1263
|
+
required: false
|
|
1264
|
+
schema:
|
|
1265
|
+
type: string
|
|
1266
|
+
- name: attestationType
|
|
1267
|
+
in: query
|
|
1268
|
+
required: false
|
|
1269
|
+
schema:
|
|
1270
|
+
type: string
|
|
1271
|
+
- name: valueField
|
|
1272
|
+
in: query
|
|
1273
|
+
required: false
|
|
1274
|
+
schema:
|
|
1275
|
+
type: string
|
|
1276
|
+
- name: groupBy
|
|
1277
|
+
in: query
|
|
1278
|
+
required: false
|
|
1279
|
+
schema:
|
|
1280
|
+
$ref: "#/components/schemas/AttestationGroupBy"
|
|
1281
|
+
- name: recordedAfter
|
|
1282
|
+
in: query
|
|
1283
|
+
required: false
|
|
1284
|
+
schema:
|
|
1285
|
+
type: string
|
|
1286
|
+
- name: recordedBefore
|
|
1287
|
+
in: query
|
|
1288
|
+
required: false
|
|
1289
|
+
schema:
|
|
1290
|
+
type: string
|
|
1291
|
+
- name: limit
|
|
1292
|
+
in: query
|
|
1293
|
+
required: false
|
|
1294
|
+
schema:
|
|
1295
|
+
type: number
|
|
1296
|
+
- name: includeItems
|
|
1297
|
+
in: query
|
|
1298
|
+
required: false
|
|
1299
|
+
schema:
|
|
1300
|
+
type: boolean
|
|
1301
|
+
responses:
|
|
1302
|
+
200:
|
|
1303
|
+
description: Success
|
|
1304
|
+
content:
|
|
1305
|
+
application/json:
|
|
1306
|
+
schema:
|
|
1307
|
+
$ref: "#/components/schemas/AttestationTreeSummaryResponse"
|
|
1308
|
+
400:
|
|
1309
|
+
description: Bad request
|
|
1310
|
+
401:
|
|
1311
|
+
description: Unauthorized
|
|
1312
|
+
404:
|
|
1313
|
+
description: Not found
|
|
1314
|
+
/admin/collection/{collectionId}/attestations/verify:
|
|
1315
|
+
get:
|
|
1316
|
+
tags:
|
|
1317
|
+
- attestations
|
|
1318
|
+
summary: "Verify the hash chain for a `(subjectType, subjectId, attestationType)` tuple (admin)."
|
|
1319
|
+
operationId: attestations_verify
|
|
1320
|
+
security:
|
|
1321
|
+
- bearerAuth: []
|
|
1322
|
+
parameters:
|
|
1323
|
+
- name: collectionId
|
|
1324
|
+
in: path
|
|
1325
|
+
required: true
|
|
1326
|
+
schema:
|
|
1327
|
+
type: string
|
|
1328
|
+
- name: subjectType
|
|
1329
|
+
in: query
|
|
1330
|
+
required: false
|
|
1331
|
+
schema:
|
|
1332
|
+
$ref: "#/components/schemas/AttestationSubjectType"
|
|
1333
|
+
- name: subjectId
|
|
1334
|
+
in: query
|
|
1335
|
+
required: false
|
|
1336
|
+
schema:
|
|
1337
|
+
type: string
|
|
1338
|
+
- name: attestationType
|
|
1339
|
+
in: query
|
|
1340
|
+
required: false
|
|
1341
|
+
schema:
|
|
1342
|
+
type: string
|
|
1343
|
+
responses:
|
|
1344
|
+
200:
|
|
1345
|
+
description: Success
|
|
1346
|
+
content:
|
|
1347
|
+
application/json:
|
|
1348
|
+
schema:
|
|
1349
|
+
$ref: "#/components/schemas/ChainVerifyResult"
|
|
1256
1350
|
400:
|
|
1257
1351
|
description: Bad request
|
|
1258
1352
|
401:
|
|
@@ -1395,6 +1489,21 @@ paths:
|
|
|
1395
1489
|
required: true
|
|
1396
1490
|
schema:
|
|
1397
1491
|
type: string
|
|
1492
|
+
- name: search
|
|
1493
|
+
in: query
|
|
1494
|
+
required: false
|
|
1495
|
+
schema:
|
|
1496
|
+
type: string
|
|
1497
|
+
- name: productId
|
|
1498
|
+
in: query
|
|
1499
|
+
required: false
|
|
1500
|
+
schema:
|
|
1501
|
+
type: string
|
|
1502
|
+
- name: limit
|
|
1503
|
+
in: query
|
|
1504
|
+
required: false
|
|
1505
|
+
schema:
|
|
1506
|
+
type: number
|
|
1398
1507
|
responses:
|
|
1399
1508
|
200:
|
|
1400
1509
|
description: Success
|
|
@@ -1490,6 +1599,21 @@ paths:
|
|
|
1490
1599
|
required: true
|
|
1491
1600
|
schema:
|
|
1492
1601
|
type: string
|
|
1602
|
+
- name: limit
|
|
1603
|
+
in: query
|
|
1604
|
+
required: false
|
|
1605
|
+
schema:
|
|
1606
|
+
type: number
|
|
1607
|
+
- name: offset
|
|
1608
|
+
in: query
|
|
1609
|
+
required: false
|
|
1610
|
+
schema:
|
|
1611
|
+
type: number
|
|
1612
|
+
- name: appId
|
|
1613
|
+
in: query
|
|
1614
|
+
required: false
|
|
1615
|
+
schema:
|
|
1616
|
+
type: string
|
|
1493
1617
|
responses:
|
|
1494
1618
|
200:
|
|
1495
1619
|
description: Success
|
|
@@ -1744,7 +1868,7 @@ paths:
|
|
|
1744
1868
|
application/json:
|
|
1745
1869
|
schema:
|
|
1746
1870
|
$ref: "#/components/schemas/BroadcastPreviewRequest"
|
|
1747
|
-
/admin/collection/{collectionId}/broadcasts/{id}/recipients
|
|
1871
|
+
/admin/collection/{collectionId}/broadcasts/{id}/recipients:
|
|
1748
1872
|
get:
|
|
1749
1873
|
tags:
|
|
1750
1874
|
- broadcasts
|
|
@@ -1763,11 +1887,6 @@ paths:
|
|
|
1763
1887
|
required: true
|
|
1764
1888
|
schema:
|
|
1765
1889
|
type: string
|
|
1766
|
-
- name: qs
|
|
1767
|
-
in: path
|
|
1768
|
-
required: true
|
|
1769
|
-
schema:
|
|
1770
|
-
type: string
|
|
1771
1890
|
responses:
|
|
1772
1891
|
200:
|
|
1773
1892
|
description: Success
|
|
@@ -1935,7 +2054,7 @@ paths:
|
|
|
1935
2054
|
description: Unauthorized
|
|
1936
2055
|
404:
|
|
1937
2056
|
description: Not found
|
|
1938
|
-
/admin/collection/{collectionId}/claimSet
|
|
2057
|
+
/admin/collection/{collectionId}/claimSet/assignClaims:
|
|
1939
2058
|
post:
|
|
1940
2059
|
tags:
|
|
1941
2060
|
- claimSet
|
|
@@ -1967,7 +2086,7 @@ paths:
|
|
|
1967
2086
|
application/json:
|
|
1968
2087
|
schema:
|
|
1969
2088
|
$ref: "#/components/schemas/AssignClaimsRequest"
|
|
1970
|
-
/admin/collection/{collectionId}/claimSet
|
|
2089
|
+
/admin/collection/{collectionId}/claimSet/makeClaim:
|
|
1971
2090
|
post:
|
|
1972
2091
|
tags:
|
|
1973
2092
|
- claimSet
|
|
@@ -2237,11 +2356,11 @@ paths:
|
|
|
2237
2356
|
schema:
|
|
2238
2357
|
$ref: "#/components/schemas/TransactionalSendRequest"
|
|
2239
2358
|
/admin/collection/{collectionId}/comm.settings:
|
|
2240
|
-
|
|
2359
|
+
get:
|
|
2241
2360
|
tags:
|
|
2242
2361
|
- comms
|
|
2243
|
-
summary: "
|
|
2244
|
-
operationId:
|
|
2362
|
+
summary: "Public: Register a Web Push subscription under unified comms."
|
|
2363
|
+
operationId: comms_getSettings
|
|
2245
2364
|
security:
|
|
2246
2365
|
- bearerAuth: []
|
|
2247
2366
|
parameters:
|
|
@@ -2250,6 +2369,11 @@ paths:
|
|
|
2250
2369
|
required: true
|
|
2251
2370
|
schema:
|
|
2252
2371
|
type: string
|
|
2372
|
+
- name: includeSecret
|
|
2373
|
+
in: query
|
|
2374
|
+
required: false
|
|
2375
|
+
schema:
|
|
2376
|
+
type: string
|
|
2253
2377
|
responses:
|
|
2254
2378
|
200:
|
|
2255
2379
|
description: Success
|
|
@@ -2264,19 +2388,11 @@ paths:
|
|
|
2264
2388
|
description: Unauthorized
|
|
2265
2389
|
404:
|
|
2266
2390
|
description: Not found
|
|
2267
|
-
|
|
2268
|
-
required: true
|
|
2269
|
-
content:
|
|
2270
|
-
application/json:
|
|
2271
|
-
schema:
|
|
2272
|
-
type: object
|
|
2273
|
-
additionalProperties: true
|
|
2274
|
-
/admin/collection/{collectionId}/comm.settings{qs}:
|
|
2275
|
-
get:
|
|
2391
|
+
patch:
|
|
2276
2392
|
tags:
|
|
2277
2393
|
- comms
|
|
2278
|
-
summary: "
|
|
2279
|
-
operationId:
|
|
2394
|
+
summary: "Admin: Get current comms settings for a collection."
|
|
2395
|
+
operationId: comms_patchSettings
|
|
2280
2396
|
security:
|
|
2281
2397
|
- bearerAuth: []
|
|
2282
2398
|
parameters:
|
|
@@ -2285,16 +2401,6 @@ paths:
|
|
|
2285
2401
|
required: true
|
|
2286
2402
|
schema:
|
|
2287
2403
|
type: string
|
|
2288
|
-
- name: qs
|
|
2289
|
-
in: path
|
|
2290
|
-
required: true
|
|
2291
|
-
schema:
|
|
2292
|
-
type: string
|
|
2293
|
-
- name: includeSecret
|
|
2294
|
-
in: query
|
|
2295
|
-
required: false
|
|
2296
|
-
schema:
|
|
2297
|
-
type: string
|
|
2298
2404
|
responses:
|
|
2299
2405
|
200:
|
|
2300
2406
|
description: Success
|
|
@@ -2309,6 +2415,13 @@ paths:
|
|
|
2309
2415
|
description: Unauthorized
|
|
2310
2416
|
404:
|
|
2311
2417
|
description: Not found
|
|
2418
|
+
requestBody:
|
|
2419
|
+
required: true
|
|
2420
|
+
content:
|
|
2421
|
+
application/json:
|
|
2422
|
+
schema:
|
|
2423
|
+
type: object
|
|
2424
|
+
additionalProperties: true
|
|
2312
2425
|
/admin/collection/{collectionId}/comm/log:
|
|
2313
2426
|
post:
|
|
2314
2427
|
tags:
|
|
@@ -2802,6 +2915,67 @@ paths:
|
|
|
2802
2915
|
404:
|
|
2803
2916
|
description: Not found
|
|
2804
2917
|
/admin/collection/{collectionId}/containers:
|
|
2918
|
+
get:
|
|
2919
|
+
tags:
|
|
2920
|
+
- containers
|
|
2921
|
+
summary: List containers (admin).
|
|
2922
|
+
operationId: containers_list
|
|
2923
|
+
security:
|
|
2924
|
+
- bearerAuth: []
|
|
2925
|
+
parameters:
|
|
2926
|
+
- name: collectionId
|
|
2927
|
+
in: path
|
|
2928
|
+
required: true
|
|
2929
|
+
schema:
|
|
2930
|
+
type: string
|
|
2931
|
+
- name: containerType
|
|
2932
|
+
in: query
|
|
2933
|
+
required: false
|
|
2934
|
+
schema:
|
|
2935
|
+
type: string
|
|
2936
|
+
- name: status
|
|
2937
|
+
in: query
|
|
2938
|
+
required: false
|
|
2939
|
+
schema:
|
|
2940
|
+
$ref: "#/components/schemas/ContainerStatus"
|
|
2941
|
+
- name: ref
|
|
2942
|
+
in: query
|
|
2943
|
+
required: false
|
|
2944
|
+
schema:
|
|
2945
|
+
type: string
|
|
2946
|
+
- name: parentContainerId
|
|
2947
|
+
in: query
|
|
2948
|
+
required: false
|
|
2949
|
+
schema:
|
|
2950
|
+
type: string
|
|
2951
|
+
- name: topLevel
|
|
2952
|
+
in: query
|
|
2953
|
+
required: false
|
|
2954
|
+
schema:
|
|
2955
|
+
type: boolean
|
|
2956
|
+
- name: limit
|
|
2957
|
+
in: query
|
|
2958
|
+
required: false
|
|
2959
|
+
schema:
|
|
2960
|
+
type: number
|
|
2961
|
+
- name: offset
|
|
2962
|
+
in: query
|
|
2963
|
+
required: false
|
|
2964
|
+
schema:
|
|
2965
|
+
type: number
|
|
2966
|
+
responses:
|
|
2967
|
+
200:
|
|
2968
|
+
description: Success
|
|
2969
|
+
content:
|
|
2970
|
+
application/json:
|
|
2971
|
+
schema:
|
|
2972
|
+
$ref: "#/components/schemas/ListContainersResponse"
|
|
2973
|
+
400:
|
|
2974
|
+
description: Bad request
|
|
2975
|
+
401:
|
|
2976
|
+
description: Unauthorized
|
|
2977
|
+
404:
|
|
2978
|
+
description: Not found
|
|
2805
2979
|
post:
|
|
2806
2980
|
tags:
|
|
2807
2981
|
- containers
|
|
@@ -2834,7 +3008,7 @@ paths:
|
|
|
2834
3008
|
application/json:
|
|
2835
3009
|
schema:
|
|
2836
3010
|
$ref: "#/components/schemas/CreateContainerInput"
|
|
2837
|
-
/admin/collection/{collectionId}/containers/find-for-item
|
|
3011
|
+
/admin/collection/{collectionId}/containers/find-for-item:
|
|
2838
3012
|
get:
|
|
2839
3013
|
tags:
|
|
2840
3014
|
- containers
|
|
@@ -2848,9 +3022,14 @@ paths:
|
|
|
2848
3022
|
required: true
|
|
2849
3023
|
schema:
|
|
2850
3024
|
type: string
|
|
2851
|
-
- name:
|
|
2852
|
-
in:
|
|
2853
|
-
required:
|
|
3025
|
+
- name: itemType
|
|
3026
|
+
in: query
|
|
3027
|
+
required: false
|
|
3028
|
+
schema:
|
|
3029
|
+
$ref: "#/components/schemas/ContainerItemType"
|
|
3030
|
+
- name: itemId
|
|
3031
|
+
in: query
|
|
3032
|
+
required: false
|
|
2854
3033
|
schema:
|
|
2855
3034
|
type: string
|
|
2856
3035
|
responses:
|
|
@@ -2867,11 +3046,11 @@ paths:
|
|
|
2867
3046
|
404:
|
|
2868
3047
|
description: Not found
|
|
2869
3048
|
/admin/collection/{collectionId}/containers/{containerId}:
|
|
2870
|
-
|
|
3049
|
+
get:
|
|
2871
3050
|
tags:
|
|
2872
3051
|
- containers
|
|
2873
|
-
summary:
|
|
2874
|
-
operationId:
|
|
3052
|
+
summary: Get a single container by ID (admin).
|
|
3053
|
+
operationId: containers_get
|
|
2875
3054
|
security:
|
|
2876
3055
|
- bearerAuth: []
|
|
2877
3056
|
parameters:
|
|
@@ -2885,62 +3064,39 @@ paths:
|
|
|
2885
3064
|
required: true
|
|
2886
3065
|
schema:
|
|
2887
3066
|
type: string
|
|
2888
|
-
|
|
2889
|
-
|
|
2890
|
-
|
|
2891
|
-
content:
|
|
2892
|
-
application/json:
|
|
2893
|
-
schema:
|
|
2894
|
-
$ref: "#/components/schemas/Container"
|
|
2895
|
-
400:
|
|
2896
|
-
description: Bad request
|
|
2897
|
-
401:
|
|
2898
|
-
description: Unauthorized
|
|
2899
|
-
404:
|
|
2900
|
-
description: Not found
|
|
2901
|
-
requestBody:
|
|
2902
|
-
required: true
|
|
2903
|
-
content:
|
|
2904
|
-
application/json:
|
|
2905
|
-
schema:
|
|
2906
|
-
$ref: "#/components/schemas/UpdateContainerInput"
|
|
2907
|
-
/admin/collection/{collectionId}/containers/{containerId}/items:
|
|
2908
|
-
get:
|
|
2909
|
-
tags:
|
|
2910
|
-
- containers
|
|
2911
|
-
summary: Soft-remove items from a container (admin).
|
|
2912
|
-
operationId: containers_removeItems
|
|
2913
|
-
security:
|
|
2914
|
-
- bearerAuth: []
|
|
2915
|
-
parameters:
|
|
2916
|
-
- name: collectionId
|
|
2917
|
-
in: path
|
|
2918
|
-
required: true
|
|
3067
|
+
- name: tree
|
|
3068
|
+
in: query
|
|
3069
|
+
required: false
|
|
2919
3070
|
schema:
|
|
2920
|
-
type:
|
|
2921
|
-
- name:
|
|
2922
|
-
in:
|
|
2923
|
-
required:
|
|
3071
|
+
type: boolean
|
|
3072
|
+
- name: treeDepth
|
|
3073
|
+
in: query
|
|
3074
|
+
required: false
|
|
2924
3075
|
schema:
|
|
2925
|
-
type:
|
|
3076
|
+
type: number
|
|
3077
|
+
- name: includeContents
|
|
3078
|
+
in: query
|
|
3079
|
+
required: false
|
|
3080
|
+
schema:
|
|
3081
|
+
type: boolean
|
|
2926
3082
|
responses:
|
|
2927
3083
|
200:
|
|
2928
3084
|
description: Success
|
|
2929
3085
|
content:
|
|
2930
3086
|
application/json:
|
|
2931
3087
|
schema:
|
|
2932
|
-
$ref: "#/components/schemas/
|
|
3088
|
+
$ref: "#/components/schemas/Container"
|
|
2933
3089
|
400:
|
|
2934
3090
|
description: Bad request
|
|
2935
3091
|
401:
|
|
2936
3092
|
description: Unauthorized
|
|
2937
3093
|
404:
|
|
2938
3094
|
description: Not found
|
|
2939
|
-
|
|
3095
|
+
patch:
|
|
2940
3096
|
tags:
|
|
2941
3097
|
- containers
|
|
2942
|
-
summary:
|
|
2943
|
-
operationId:
|
|
3098
|
+
summary: Partially update a container (admin).
|
|
3099
|
+
operationId: containers_update
|
|
2944
3100
|
security:
|
|
2945
3101
|
- bearerAuth: []
|
|
2946
3102
|
parameters:
|
|
@@ -2960,7 +3116,7 @@ paths:
|
|
|
2960
3116
|
content:
|
|
2961
3117
|
application/json:
|
|
2962
3118
|
schema:
|
|
2963
|
-
$ref: "#/components/schemas/
|
|
3119
|
+
$ref: "#/components/schemas/Container"
|
|
2964
3120
|
400:
|
|
2965
3121
|
description: Bad request
|
|
2966
3122
|
401:
|
|
@@ -2972,8 +3128,8 @@ paths:
|
|
|
2972
3128
|
content:
|
|
2973
3129
|
application/json:
|
|
2974
3130
|
schema:
|
|
2975
|
-
$ref: "#/components/schemas/
|
|
2976
|
-
/admin/collection/{collectionId}/containers/{containerId}/items
|
|
3131
|
+
$ref: "#/components/schemas/UpdateContainerInput"
|
|
3132
|
+
/admin/collection/{collectionId}/containers/{containerId}/items:
|
|
2977
3133
|
get:
|
|
2978
3134
|
tags:
|
|
2979
3135
|
- containers
|
|
@@ -2992,67 +3148,39 @@ paths:
|
|
|
2992
3148
|
required: true
|
|
2993
3149
|
schema:
|
|
2994
3150
|
type: string
|
|
2995
|
-
- name:
|
|
2996
|
-
in:
|
|
2997
|
-
required:
|
|
2998
|
-
schema:
|
|
2999
|
-
type: string
|
|
3000
|
-
responses:
|
|
3001
|
-
200:
|
|
3002
|
-
description: Success
|
|
3003
|
-
content:
|
|
3004
|
-
application/json:
|
|
3005
|
-
schema:
|
|
3006
|
-
$ref: "#/components/schemas/ContainerItemsResponse"
|
|
3007
|
-
400:
|
|
3008
|
-
description: Bad request
|
|
3009
|
-
401:
|
|
3010
|
-
description: Unauthorized
|
|
3011
|
-
404:
|
|
3012
|
-
description: Not found
|
|
3013
|
-
/admin/collection/{collectionId}/containers/{containerId}{qs}:
|
|
3014
|
-
get:
|
|
3015
|
-
tags:
|
|
3016
|
-
- containers
|
|
3017
|
-
summary: Get a single container by ID (admin).
|
|
3018
|
-
operationId: containers_get
|
|
3019
|
-
security:
|
|
3020
|
-
- bearerAuth: []
|
|
3021
|
-
parameters:
|
|
3022
|
-
- name: collectionId
|
|
3023
|
-
in: path
|
|
3024
|
-
required: true
|
|
3151
|
+
- name: history
|
|
3152
|
+
in: query
|
|
3153
|
+
required: false
|
|
3025
3154
|
schema:
|
|
3026
|
-
type:
|
|
3027
|
-
- name:
|
|
3028
|
-
in:
|
|
3029
|
-
required:
|
|
3155
|
+
type: boolean
|
|
3156
|
+
- name: limit
|
|
3157
|
+
in: query
|
|
3158
|
+
required: false
|
|
3030
3159
|
schema:
|
|
3031
|
-
type:
|
|
3032
|
-
- name:
|
|
3033
|
-
in:
|
|
3034
|
-
required:
|
|
3160
|
+
type: number
|
|
3161
|
+
- name: offset
|
|
3162
|
+
in: query
|
|
3163
|
+
required: false
|
|
3035
3164
|
schema:
|
|
3036
|
-
type:
|
|
3165
|
+
type: number
|
|
3037
3166
|
responses:
|
|
3038
3167
|
200:
|
|
3039
3168
|
description: Success
|
|
3040
3169
|
content:
|
|
3041
3170
|
application/json:
|
|
3042
3171
|
schema:
|
|
3043
|
-
$ref: "#/components/schemas/
|
|
3172
|
+
$ref: "#/components/schemas/ContainerItemsResponse"
|
|
3044
3173
|
400:
|
|
3045
3174
|
description: Bad request
|
|
3046
3175
|
401:
|
|
3047
3176
|
description: Unauthorized
|
|
3048
3177
|
404:
|
|
3049
3178
|
description: Not found
|
|
3050
|
-
|
|
3051
|
-
get:
|
|
3179
|
+
post:
|
|
3052
3180
|
tags:
|
|
3053
3181
|
- containers
|
|
3054
|
-
summary:
|
|
3055
|
-
operationId:
|
|
3182
|
+
summary: Add one or more items to a container (admin).
|
|
3183
|
+
operationId: containers_addItems
|
|
3056
3184
|
security:
|
|
3057
3185
|
- bearerAuth: []
|
|
3058
3186
|
parameters:
|
|
@@ -3061,7 +3189,7 @@ paths:
|
|
|
3061
3189
|
required: true
|
|
3062
3190
|
schema:
|
|
3063
3191
|
type: string
|
|
3064
|
-
- name:
|
|
3192
|
+
- name: containerId
|
|
3065
3193
|
in: path
|
|
3066
3194
|
required: true
|
|
3067
3195
|
schema:
|
|
@@ -3072,13 +3200,19 @@ paths:
|
|
|
3072
3200
|
content:
|
|
3073
3201
|
application/json:
|
|
3074
3202
|
schema:
|
|
3075
|
-
$ref: "#/components/schemas/
|
|
3203
|
+
$ref: "#/components/schemas/AddContainerItemsResponse"
|
|
3076
3204
|
400:
|
|
3077
3205
|
description: Bad request
|
|
3078
3206
|
401:
|
|
3079
3207
|
description: Unauthorized
|
|
3080
3208
|
404:
|
|
3081
3209
|
description: Not found
|
|
3210
|
+
requestBody:
|
|
3211
|
+
required: true
|
|
3212
|
+
content:
|
|
3213
|
+
application/json:
|
|
3214
|
+
schema:
|
|
3215
|
+
$ref: "#/components/schemas/AddContainerItemsInput"
|
|
3082
3216
|
/admin/collection/{collectionId}/crate:
|
|
3083
3217
|
get:
|
|
3084
3218
|
tags:
|
|
@@ -3093,6 +3227,21 @@ paths:
|
|
|
3093
3227
|
required: true
|
|
3094
3228
|
schema:
|
|
3095
3229
|
type: string
|
|
3230
|
+
- name: limit
|
|
3231
|
+
in: query
|
|
3232
|
+
required: false
|
|
3233
|
+
schema:
|
|
3234
|
+
type: number
|
|
3235
|
+
- name: startAfter
|
|
3236
|
+
in: query
|
|
3237
|
+
required: false
|
|
3238
|
+
schema:
|
|
3239
|
+
type: string
|
|
3240
|
+
- name: includeDeleted
|
|
3241
|
+
in: query
|
|
3242
|
+
required: false
|
|
3243
|
+
schema:
|
|
3244
|
+
type: boolean
|
|
3096
3245
|
responses:
|
|
3097
3246
|
200:
|
|
3098
3247
|
description: Success
|
|
@@ -3252,6 +3401,27 @@ paths:
|
|
|
3252
3401
|
required: true
|
|
3253
3402
|
schema:
|
|
3254
3403
|
type: string
|
|
3404
|
+
- name: includeValues
|
|
3405
|
+
in: query
|
|
3406
|
+
required: false
|
|
3407
|
+
schema:
|
|
3408
|
+
type: boolean
|
|
3409
|
+
- name: includeDeleted
|
|
3410
|
+
in: query
|
|
3411
|
+
required: false
|
|
3412
|
+
schema:
|
|
3413
|
+
type: boolean
|
|
3414
|
+
- name: kind
|
|
3415
|
+
in: query
|
|
3416
|
+
required: false
|
|
3417
|
+
schema:
|
|
3418
|
+
type: object
|
|
3419
|
+
additionalProperties: true
|
|
3420
|
+
- name: reserved
|
|
3421
|
+
in: query
|
|
3422
|
+
required: false
|
|
3423
|
+
schema:
|
|
3424
|
+
type: boolean
|
|
3255
3425
|
responses:
|
|
3256
3426
|
200:
|
|
3257
3427
|
description: Success
|
|
@@ -3349,6 +3519,16 @@ paths:
|
|
|
3349
3519
|
required: true
|
|
3350
3520
|
schema:
|
|
3351
3521
|
type: string
|
|
3522
|
+
- name: includeValues
|
|
3523
|
+
in: query
|
|
3524
|
+
required: false
|
|
3525
|
+
schema:
|
|
3526
|
+
type: boolean
|
|
3527
|
+
- name: includeDeleted
|
|
3528
|
+
in: query
|
|
3529
|
+
required: false
|
|
3530
|
+
schema:
|
|
3531
|
+
type: boolean
|
|
3352
3532
|
responses:
|
|
3353
3533
|
200:
|
|
3354
3534
|
description: Success
|
|
@@ -3450,6 +3630,11 @@ paths:
|
|
|
3450
3630
|
required: true
|
|
3451
3631
|
schema:
|
|
3452
3632
|
type: string
|
|
3633
|
+
- name: includeDeleted
|
|
3634
|
+
in: query
|
|
3635
|
+
required: false
|
|
3636
|
+
schema:
|
|
3637
|
+
type: boolean
|
|
3453
3638
|
responses:
|
|
3454
3639
|
200:
|
|
3455
3640
|
description: Success
|
|
@@ -3524,6 +3709,11 @@ paths:
|
|
|
3524
3709
|
required: true
|
|
3525
3710
|
schema:
|
|
3526
3711
|
type: string
|
|
3712
|
+
- name: includeDeleted
|
|
3713
|
+
in: query
|
|
3714
|
+
required: false
|
|
3715
|
+
schema:
|
|
3716
|
+
type: boolean
|
|
3527
3717
|
responses:
|
|
3528
3718
|
200:
|
|
3529
3719
|
description: Success
|
|
@@ -3732,6 +3922,47 @@ paths:
|
|
|
3732
3922
|
404:
|
|
3733
3923
|
description: Not found
|
|
3734
3924
|
/admin/collection/{collectionId}/interactions:
|
|
3925
|
+
get:
|
|
3926
|
+
tags:
|
|
3927
|
+
- interactions
|
|
3928
|
+
summary: interactions.list
|
|
3929
|
+
operationId: interactions_list
|
|
3930
|
+
security:
|
|
3931
|
+
- bearerAuth: []
|
|
3932
|
+
parameters:
|
|
3933
|
+
- name: collectionId
|
|
3934
|
+
in: path
|
|
3935
|
+
required: true
|
|
3936
|
+
schema:
|
|
3937
|
+
type: string
|
|
3938
|
+
- name: appId
|
|
3939
|
+
in: query
|
|
3940
|
+
required: false
|
|
3941
|
+
schema:
|
|
3942
|
+
type: string
|
|
3943
|
+
- name: limit
|
|
3944
|
+
in: query
|
|
3945
|
+
required: false
|
|
3946
|
+
schema:
|
|
3947
|
+
type: number
|
|
3948
|
+
- name: offset
|
|
3949
|
+
in: query
|
|
3950
|
+
required: false
|
|
3951
|
+
schema:
|
|
3952
|
+
type: number
|
|
3953
|
+
responses:
|
|
3954
|
+
200:
|
|
3955
|
+
description: Success
|
|
3956
|
+
content:
|
|
3957
|
+
application/json:
|
|
3958
|
+
schema:
|
|
3959
|
+
$ref: "#/components/schemas/InteractionTypeList"
|
|
3960
|
+
400:
|
|
3961
|
+
description: Bad request
|
|
3962
|
+
401:
|
|
3963
|
+
description: Unauthorized
|
|
3964
|
+
404:
|
|
3965
|
+
description: Not found
|
|
3735
3966
|
post:
|
|
3736
3967
|
tags:
|
|
3737
3968
|
- interactions
|
|
@@ -3968,12 +4199,12 @@ paths:
|
|
|
3968
4199
|
description: Unauthorized
|
|
3969
4200
|
404:
|
|
3970
4201
|
description: Not found
|
|
3971
|
-
/admin/collection/{collectionId}/
|
|
4202
|
+
/admin/collection/{collectionId}/jobs:
|
|
3972
4203
|
get:
|
|
3973
4204
|
tags:
|
|
3974
|
-
-
|
|
3975
|
-
summary:
|
|
3976
|
-
operationId:
|
|
4205
|
+
- jobs
|
|
4206
|
+
summary: "List visible jobs for a collection GET /admin/collection/:collectionId/jobs"
|
|
4207
|
+
operationId: jobs_listJobs
|
|
3977
4208
|
security:
|
|
3978
4209
|
- bearerAuth: []
|
|
3979
4210
|
parameters:
|
|
@@ -3982,9 +4213,34 @@ paths:
|
|
|
3982
4213
|
required: true
|
|
3983
4214
|
schema:
|
|
3984
4215
|
type: string
|
|
3985
|
-
- name:
|
|
3986
|
-
in:
|
|
3987
|
-
required:
|
|
4216
|
+
- name: state
|
|
4217
|
+
in: query
|
|
4218
|
+
required: false
|
|
4219
|
+
schema:
|
|
4220
|
+
$ref: "#/components/schemas/JobStatus"
|
|
4221
|
+
- name: task
|
|
4222
|
+
in: query
|
|
4223
|
+
required: false
|
|
4224
|
+
schema:
|
|
4225
|
+
type: string
|
|
4226
|
+
- name: limit
|
|
4227
|
+
in: query
|
|
4228
|
+
required: false
|
|
4229
|
+
schema:
|
|
4230
|
+
type: number
|
|
4231
|
+
- name: offset
|
|
4232
|
+
in: query
|
|
4233
|
+
required: false
|
|
4234
|
+
schema:
|
|
4235
|
+
type: number
|
|
4236
|
+
- name: from
|
|
4237
|
+
in: query
|
|
4238
|
+
required: false
|
|
4239
|
+
schema:
|
|
4240
|
+
type: string
|
|
4241
|
+
- name: to
|
|
4242
|
+
in: query
|
|
4243
|
+
required: false
|
|
3988
4244
|
schema:
|
|
3989
4245
|
type: string
|
|
3990
4246
|
responses:
|
|
@@ -3993,19 +4249,19 @@ paths:
|
|
|
3993
4249
|
content:
|
|
3994
4250
|
application/json:
|
|
3995
4251
|
schema:
|
|
3996
|
-
$ref: "#/components/schemas/
|
|
4252
|
+
$ref: "#/components/schemas/JobsPage"
|
|
3997
4253
|
400:
|
|
3998
4254
|
description: Bad request
|
|
3999
4255
|
401:
|
|
4000
4256
|
description: Unauthorized
|
|
4001
4257
|
404:
|
|
4002
4258
|
description: Not found
|
|
4003
|
-
/admin/collection/{collectionId}/
|
|
4259
|
+
/admin/collection/{collectionId}/jobs/{jobId}:
|
|
4004
4260
|
get:
|
|
4005
4261
|
tags:
|
|
4006
|
-
-
|
|
4007
|
-
summary:
|
|
4008
|
-
operationId:
|
|
4262
|
+
- jobs
|
|
4263
|
+
summary: "List visible jobs for a collection GET /admin/collection/:collectionId/jobs / export async function listJobs( collection"
|
|
4264
|
+
operationId: jobs_getJob
|
|
4009
4265
|
security:
|
|
4010
4266
|
- bearerAuth: []
|
|
4011
4267
|
parameters:
|
|
@@ -4014,24 +4270,84 @@ paths:
|
|
|
4014
4270
|
required: true
|
|
4015
4271
|
schema:
|
|
4016
4272
|
type: string
|
|
4273
|
+
- name: jobId
|
|
4274
|
+
in: path
|
|
4275
|
+
required: true
|
|
4276
|
+
schema:
|
|
4277
|
+
type: string
|
|
4017
4278
|
responses:
|
|
4018
4279
|
200:
|
|
4019
4280
|
description: Success
|
|
4020
4281
|
content:
|
|
4021
4282
|
application/json:
|
|
4022
4283
|
schema:
|
|
4023
|
-
$ref: "#/components/schemas/
|
|
4284
|
+
$ref: "#/components/schemas/Job"
|
|
4024
4285
|
400:
|
|
4025
4286
|
description: Bad request
|
|
4026
4287
|
401:
|
|
4027
4288
|
description: Unauthorized
|
|
4028
4289
|
404:
|
|
4029
4290
|
description: Not found
|
|
4030
|
-
|
|
4291
|
+
/admin/collection/{collectionId}/journeys:
|
|
4292
|
+
get:
|
|
4031
4293
|
tags:
|
|
4032
4294
|
- journeys
|
|
4033
|
-
summary: journeys.
|
|
4034
|
-
operationId:
|
|
4295
|
+
summary: journeys.list
|
|
4296
|
+
operationId: journeys_list
|
|
4297
|
+
security:
|
|
4298
|
+
- bearerAuth: []
|
|
4299
|
+
parameters:
|
|
4300
|
+
- name: collectionId
|
|
4301
|
+
in: path
|
|
4302
|
+
required: true
|
|
4303
|
+
schema:
|
|
4304
|
+
type: string
|
|
4305
|
+
- name: appId
|
|
4306
|
+
in: query
|
|
4307
|
+
required: false
|
|
4308
|
+
schema:
|
|
4309
|
+
type: string
|
|
4310
|
+
- name: active
|
|
4311
|
+
in: query
|
|
4312
|
+
required: false
|
|
4313
|
+
schema:
|
|
4314
|
+
type: boolean
|
|
4315
|
+
- name: journeyType
|
|
4316
|
+
in: query
|
|
4317
|
+
required: false
|
|
4318
|
+
schema:
|
|
4319
|
+
type: string
|
|
4320
|
+
enum:
|
|
4321
|
+
- event_triggered
|
|
4322
|
+
- scheduled
|
|
4323
|
+
- name: limit
|
|
4324
|
+
in: query
|
|
4325
|
+
required: false
|
|
4326
|
+
schema:
|
|
4327
|
+
type: number
|
|
4328
|
+
- name: offset
|
|
4329
|
+
in: query
|
|
4330
|
+
required: false
|
|
4331
|
+
schema:
|
|
4332
|
+
type: number
|
|
4333
|
+
responses:
|
|
4334
|
+
200:
|
|
4335
|
+
description: Success
|
|
4336
|
+
content:
|
|
4337
|
+
application/json:
|
|
4338
|
+
schema:
|
|
4339
|
+
$ref: "#/components/schemas/JourneyList"
|
|
4340
|
+
400:
|
|
4341
|
+
description: Bad request
|
|
4342
|
+
401:
|
|
4343
|
+
description: Unauthorized
|
|
4344
|
+
404:
|
|
4345
|
+
description: Not found
|
|
4346
|
+
post:
|
|
4347
|
+
tags:
|
|
4348
|
+
- journeys
|
|
4349
|
+
summary: journeys.create
|
|
4350
|
+
operationId: journeys_create
|
|
4035
4351
|
security:
|
|
4036
4352
|
- bearerAuth: []
|
|
4037
4353
|
parameters:
|
|
@@ -4312,7 +4628,7 @@ paths:
|
|
|
4312
4628
|
application/json:
|
|
4313
4629
|
schema:
|
|
4314
4630
|
$ref: "#/components/schemas/LocationPayload"
|
|
4315
|
-
/admin/collection/{collectionId}/location/search
|
|
4631
|
+
/admin/collection/{collectionId}/location/search:
|
|
4316
4632
|
get:
|
|
4317
4633
|
tags:
|
|
4318
4634
|
- location
|
|
@@ -4326,11 +4642,40 @@ paths:
|
|
|
4326
4642
|
required: true
|
|
4327
4643
|
schema:
|
|
4328
4644
|
type: string
|
|
4329
|
-
- name:
|
|
4330
|
-
in:
|
|
4331
|
-
required:
|
|
4645
|
+
- name: q
|
|
4646
|
+
in: query
|
|
4647
|
+
required: false
|
|
4648
|
+
schema:
|
|
4649
|
+
type: string
|
|
4650
|
+
- name: category
|
|
4651
|
+
in: query
|
|
4652
|
+
required: false
|
|
4653
|
+
schema:
|
|
4654
|
+
type: string
|
|
4655
|
+
- name: countryCode
|
|
4656
|
+
in: query
|
|
4657
|
+
required: false
|
|
4658
|
+
schema:
|
|
4659
|
+
type: string
|
|
4660
|
+
- name: countryName
|
|
4661
|
+
in: query
|
|
4662
|
+
required: false
|
|
4663
|
+
schema:
|
|
4664
|
+
type: string
|
|
4665
|
+
- name: limit
|
|
4666
|
+
in: query
|
|
4667
|
+
required: false
|
|
4668
|
+
schema:
|
|
4669
|
+
type: number
|
|
4670
|
+
- name: sort
|
|
4671
|
+
in: query
|
|
4672
|
+
required: false
|
|
4332
4673
|
schema:
|
|
4333
4674
|
type: string
|
|
4675
|
+
enum:
|
|
4676
|
+
- name
|
|
4677
|
+
- countryCode
|
|
4678
|
+
- countryName
|
|
4334
4679
|
responses:
|
|
4335
4680
|
200:
|
|
4336
4681
|
description: Success
|
|
@@ -4816,6 +5161,36 @@ paths:
|
|
|
4816
5161
|
required: true
|
|
4817
5162
|
schema:
|
|
4818
5163
|
type: string
|
|
5164
|
+
- name: limit
|
|
5165
|
+
in: query
|
|
5166
|
+
required: false
|
|
5167
|
+
schema:
|
|
5168
|
+
type: number
|
|
5169
|
+
- name: offset
|
|
5170
|
+
in: query
|
|
5171
|
+
required: false
|
|
5172
|
+
schema:
|
|
5173
|
+
type: number
|
|
5174
|
+
- name: status
|
|
5175
|
+
in: query
|
|
5176
|
+
required: false
|
|
5177
|
+
schema:
|
|
5178
|
+
type: string
|
|
5179
|
+
- name: orderRef
|
|
5180
|
+
in: query
|
|
5181
|
+
required: false
|
|
5182
|
+
schema:
|
|
5183
|
+
type: string
|
|
5184
|
+
- name: customerId
|
|
5185
|
+
in: query
|
|
5186
|
+
required: false
|
|
5187
|
+
schema:
|
|
5188
|
+
type: string
|
|
5189
|
+
- name: includeItems
|
|
5190
|
+
in: query
|
|
5191
|
+
required: false
|
|
5192
|
+
schema:
|
|
5193
|
+
type: boolean
|
|
4819
5194
|
responses:
|
|
4820
5195
|
200:
|
|
4821
5196
|
description: Success
|
|
@@ -5059,6 +5434,16 @@ paths:
|
|
|
5059
5434
|
required: true
|
|
5060
5435
|
schema:
|
|
5061
5436
|
type: string
|
|
5437
|
+
- name: limit
|
|
5438
|
+
in: query
|
|
5439
|
+
required: false
|
|
5440
|
+
schema:
|
|
5441
|
+
type: number
|
|
5442
|
+
- name: offset
|
|
5443
|
+
in: query
|
|
5444
|
+
required: false
|
|
5445
|
+
schema:
|
|
5446
|
+
type: number
|
|
5062
5447
|
responses:
|
|
5063
5448
|
200:
|
|
5064
5449
|
description: Success
|
|
@@ -5124,6 +5509,21 @@ paths:
|
|
|
5124
5509
|
required: true
|
|
5125
5510
|
schema:
|
|
5126
5511
|
type: string
|
|
5512
|
+
- name: limit
|
|
5513
|
+
in: query
|
|
5514
|
+
required: false
|
|
5515
|
+
schema:
|
|
5516
|
+
type: number
|
|
5517
|
+
- name: offset
|
|
5518
|
+
in: query
|
|
5519
|
+
required: false
|
|
5520
|
+
schema:
|
|
5521
|
+
type: number
|
|
5522
|
+
- name: includeItems
|
|
5523
|
+
in: query
|
|
5524
|
+
required: false
|
|
5525
|
+
schema:
|
|
5526
|
+
type: boolean
|
|
5127
5527
|
responses:
|
|
5128
5528
|
200:
|
|
5129
5529
|
description: Success
|
|
@@ -5156,6 +5556,21 @@ paths:
|
|
|
5156
5556
|
required: true
|
|
5157
5557
|
schema:
|
|
5158
5558
|
type: string
|
|
5559
|
+
- name: limit
|
|
5560
|
+
in: query
|
|
5561
|
+
required: false
|
|
5562
|
+
schema:
|
|
5563
|
+
type: number
|
|
5564
|
+
- name: offset
|
|
5565
|
+
in: query
|
|
5566
|
+
required: false
|
|
5567
|
+
schema:
|
|
5568
|
+
type: number
|
|
5569
|
+
- name: includeOrder
|
|
5570
|
+
in: query
|
|
5571
|
+
required: false
|
|
5572
|
+
schema:
|
|
5573
|
+
type: boolean
|
|
5159
5574
|
responses:
|
|
5160
5575
|
200:
|
|
5161
5576
|
description: Success
|
|
@@ -5216,6 +5631,66 @@ paths:
|
|
|
5216
5631
|
required: true
|
|
5217
5632
|
schema:
|
|
5218
5633
|
type: string
|
|
5634
|
+
- name: groupByStatus
|
|
5635
|
+
in: query
|
|
5636
|
+
required: false
|
|
5637
|
+
schema:
|
|
5638
|
+
type: boolean
|
|
5639
|
+
- name: groupByCollection
|
|
5640
|
+
in: query
|
|
5641
|
+
required: false
|
|
5642
|
+
schema:
|
|
5643
|
+
type: boolean
|
|
5644
|
+
- name: groupByCustomer
|
|
5645
|
+
in: query
|
|
5646
|
+
required: false
|
|
5647
|
+
schema:
|
|
5648
|
+
type: boolean
|
|
5649
|
+
- name: groupByDate
|
|
5650
|
+
in: query
|
|
5651
|
+
required: false
|
|
5652
|
+
schema:
|
|
5653
|
+
type: boolean
|
|
5654
|
+
- name: groupByItemType
|
|
5655
|
+
in: query
|
|
5656
|
+
required: false
|
|
5657
|
+
schema:
|
|
5658
|
+
type: boolean
|
|
5659
|
+
- name: groupByProduct
|
|
5660
|
+
in: query
|
|
5661
|
+
required: false
|
|
5662
|
+
schema:
|
|
5663
|
+
type: boolean
|
|
5664
|
+
- name: includeItemStats
|
|
5665
|
+
in: query
|
|
5666
|
+
required: false
|
|
5667
|
+
schema:
|
|
5668
|
+
type: boolean
|
|
5669
|
+
- name: includeCount
|
|
5670
|
+
in: query
|
|
5671
|
+
required: false
|
|
5672
|
+
schema:
|
|
5673
|
+
type: boolean
|
|
5674
|
+
- name: topN
|
|
5675
|
+
in: query
|
|
5676
|
+
required: false
|
|
5677
|
+
schema:
|
|
5678
|
+
type: number
|
|
5679
|
+
- name: status
|
|
5680
|
+
in: query
|
|
5681
|
+
required: false
|
|
5682
|
+
schema:
|
|
5683
|
+
type: string
|
|
5684
|
+
- name: createdAfter
|
|
5685
|
+
in: query
|
|
5686
|
+
required: false
|
|
5687
|
+
schema:
|
|
5688
|
+
type: string
|
|
5689
|
+
- name: createdBefore
|
|
5690
|
+
in: query
|
|
5691
|
+
required: false
|
|
5692
|
+
schema:
|
|
5693
|
+
type: string
|
|
5219
5694
|
responses:
|
|
5220
5695
|
200:
|
|
5221
5696
|
description: Success
|
|
@@ -5248,6 +5723,11 @@ paths:
|
|
|
5248
5723
|
required: true
|
|
5249
5724
|
schema:
|
|
5250
5725
|
type: string
|
|
5726
|
+
- name: includeItems
|
|
5727
|
+
in: query
|
|
5728
|
+
required: false
|
|
5729
|
+
schema:
|
|
5730
|
+
type: boolean
|
|
5251
5731
|
responses:
|
|
5252
5732
|
200:
|
|
5253
5733
|
description: Success
|
|
@@ -5348,6 +5828,16 @@ paths:
|
|
|
5348
5828
|
required: true
|
|
5349
5829
|
schema:
|
|
5350
5830
|
type: string
|
|
5831
|
+
- name: limit
|
|
5832
|
+
in: query
|
|
5833
|
+
required: false
|
|
5834
|
+
schema:
|
|
5835
|
+
type: number
|
|
5836
|
+
- name: offset
|
|
5837
|
+
in: query
|
|
5838
|
+
required: false
|
|
5839
|
+
schema:
|
|
5840
|
+
type: number
|
|
5351
5841
|
responses:
|
|
5352
5842
|
200:
|
|
5353
5843
|
description: Success
|
|
@@ -6616,6 +7106,29 @@ paths:
|
|
|
6616
7106
|
required: true
|
|
6617
7107
|
schema:
|
|
6618
7108
|
type: string
|
|
7109
|
+
- name: appId
|
|
7110
|
+
in: query
|
|
7111
|
+
required: false
|
|
7112
|
+
schema:
|
|
7113
|
+
type: string
|
|
7114
|
+
- name: filterType
|
|
7115
|
+
in: query
|
|
7116
|
+
required: false
|
|
7117
|
+
schema:
|
|
7118
|
+
type: string
|
|
7119
|
+
enum:
|
|
7120
|
+
- dynamic
|
|
7121
|
+
- static
|
|
7122
|
+
- name: limit
|
|
7123
|
+
in: query
|
|
7124
|
+
required: false
|
|
7125
|
+
schema:
|
|
7126
|
+
type: number
|
|
7127
|
+
- name: offset
|
|
7128
|
+
in: query
|
|
7129
|
+
required: false
|
|
7130
|
+
schema:
|
|
7131
|
+
type: number
|
|
6619
7132
|
responses:
|
|
6620
7133
|
200:
|
|
6621
7134
|
description: Success
|
|
@@ -6875,6 +7388,41 @@ paths:
|
|
|
6875
7388
|
required: true
|
|
6876
7389
|
schema:
|
|
6877
7390
|
type: string
|
|
7391
|
+
- name: limit
|
|
7392
|
+
in: query
|
|
7393
|
+
required: false
|
|
7394
|
+
schema:
|
|
7395
|
+
type: number
|
|
7396
|
+
- name: offset
|
|
7397
|
+
in: query
|
|
7398
|
+
required: false
|
|
7399
|
+
schema:
|
|
7400
|
+
type: number
|
|
7401
|
+
- name: productId
|
|
7402
|
+
in: query
|
|
7403
|
+
required: false
|
|
7404
|
+
schema:
|
|
7405
|
+
type: string
|
|
7406
|
+
- name: variantId
|
|
7407
|
+
in: query
|
|
7408
|
+
required: false
|
|
7409
|
+
schema:
|
|
7410
|
+
type: string
|
|
7411
|
+
- name: batchId
|
|
7412
|
+
in: query
|
|
7413
|
+
required: false
|
|
7414
|
+
schema:
|
|
7415
|
+
type: string
|
|
7416
|
+
- name: refType
|
|
7417
|
+
in: query
|
|
7418
|
+
required: false
|
|
7419
|
+
schema:
|
|
7420
|
+
type: string
|
|
7421
|
+
- name: refId
|
|
7422
|
+
in: query
|
|
7423
|
+
required: false
|
|
7424
|
+
schema:
|
|
7425
|
+
type: string
|
|
6878
7426
|
responses:
|
|
6879
7427
|
200:
|
|
6880
7428
|
description: Success
|
|
@@ -6967,7 +7515,22 @@ paths:
|
|
|
6967
7515
|
required: true
|
|
6968
7516
|
schema:
|
|
6969
7517
|
type: string
|
|
6970
|
-
|
|
7518
|
+
- name: refType
|
|
7519
|
+
in: query
|
|
7520
|
+
required: false
|
|
7521
|
+
schema:
|
|
7522
|
+
type: string
|
|
7523
|
+
- name: refId
|
|
7524
|
+
in: query
|
|
7525
|
+
required: false
|
|
7526
|
+
schema:
|
|
7527
|
+
type: string
|
|
7528
|
+
- name: embed
|
|
7529
|
+
in: query
|
|
7530
|
+
required: false
|
|
7531
|
+
schema:
|
|
7532
|
+
type: string
|
|
7533
|
+
responses:
|
|
6971
7534
|
200:
|
|
6972
7535
|
description: Success
|
|
6973
7536
|
content:
|
|
@@ -7281,12 +7844,12 @@ paths:
|
|
|
7281
7844
|
application/json:
|
|
7282
7845
|
schema:
|
|
7283
7846
|
$ref: "#/components/schemas/TemplateRenderRequest"
|
|
7284
|
-
/admin/collection/{collectionId}/translations
|
|
7847
|
+
/admin/collection/{collectionId}/translations:
|
|
7285
7848
|
get:
|
|
7286
7849
|
tags:
|
|
7287
7850
|
- translations
|
|
7288
|
-
summary: translations.
|
|
7289
|
-
operationId:
|
|
7851
|
+
summary: translations.list
|
|
7852
|
+
operationId: translations_list
|
|
7290
7853
|
security:
|
|
7291
7854
|
- bearerAuth: []
|
|
7292
7855
|
parameters:
|
|
@@ -7295,29 +7858,65 @@ paths:
|
|
|
7295
7858
|
required: true
|
|
7296
7859
|
schema:
|
|
7297
7860
|
type: string
|
|
7298
|
-
- name:
|
|
7299
|
-
in:
|
|
7300
|
-
required:
|
|
7861
|
+
- name: targetLanguage
|
|
7862
|
+
in: query
|
|
7863
|
+
required: false
|
|
7864
|
+
schema:
|
|
7865
|
+
type: string
|
|
7866
|
+
- name: sourceLanguage
|
|
7867
|
+
in: query
|
|
7868
|
+
required: false
|
|
7869
|
+
schema:
|
|
7870
|
+
type: string
|
|
7871
|
+
- name: contentType
|
|
7872
|
+
in: query
|
|
7873
|
+
required: false
|
|
7874
|
+
schema:
|
|
7875
|
+
type: string
|
|
7876
|
+
- name: contextKey
|
|
7877
|
+
in: query
|
|
7878
|
+
required: false
|
|
7879
|
+
schema:
|
|
7880
|
+
type: string
|
|
7881
|
+
- name: q
|
|
7882
|
+
in: query
|
|
7883
|
+
required: false
|
|
7301
7884
|
schema:
|
|
7302
7885
|
type: string
|
|
7886
|
+
- name: isOverride
|
|
7887
|
+
in: query
|
|
7888
|
+
required: false
|
|
7889
|
+
schema:
|
|
7890
|
+
type: boolean
|
|
7891
|
+
- name: limit
|
|
7892
|
+
in: query
|
|
7893
|
+
required: false
|
|
7894
|
+
schema:
|
|
7895
|
+
type: number
|
|
7896
|
+
- name: offset
|
|
7897
|
+
in: query
|
|
7898
|
+
required: false
|
|
7899
|
+
schema:
|
|
7900
|
+
type: number
|
|
7303
7901
|
responses:
|
|
7304
7902
|
200:
|
|
7305
7903
|
description: Success
|
|
7306
7904
|
content:
|
|
7307
7905
|
application/json:
|
|
7308
7906
|
schema:
|
|
7309
|
-
$ref: "#/components/schemas/
|
|
7907
|
+
$ref: "#/components/schemas/TranslationListResponse"
|
|
7310
7908
|
400:
|
|
7311
7909
|
description: Bad request
|
|
7312
7910
|
401:
|
|
7313
7911
|
description: Unauthorized
|
|
7314
7912
|
404:
|
|
7315
7913
|
description: Not found
|
|
7316
|
-
|
|
7914
|
+
/admin/collection/{collectionId}/translations/{translationId}:
|
|
7915
|
+
get:
|
|
7317
7916
|
tags:
|
|
7318
7917
|
- translations
|
|
7319
|
-
summary: translations.
|
|
7320
|
-
operationId:
|
|
7918
|
+
summary: translations.get
|
|
7919
|
+
operationId: translations_get
|
|
7321
7920
|
security:
|
|
7322
7921
|
- bearerAuth: []
|
|
7323
7922
|
parameters:
|
|
@@ -7344,18 +7943,11 @@ paths:
|
|
|
7344
7943
|
description: Unauthorized
|
|
7345
7944
|
404:
|
|
7346
7945
|
description: Not found
|
|
7347
|
-
|
|
7348
|
-
required: true
|
|
7349
|
-
content:
|
|
7350
|
-
application/json:
|
|
7351
|
-
schema:
|
|
7352
|
-
$ref: "#/components/schemas/TranslationUpdateRequest"
|
|
7353
|
-
/admin/collection/{collectionId}/translations{query}:
|
|
7354
|
-
get:
|
|
7946
|
+
patch:
|
|
7355
7947
|
tags:
|
|
7356
7948
|
- translations
|
|
7357
|
-
summary: translations.
|
|
7358
|
-
operationId:
|
|
7949
|
+
summary: translations.update
|
|
7950
|
+
operationId: translations_update
|
|
7359
7951
|
security:
|
|
7360
7952
|
- bearerAuth: []
|
|
7361
7953
|
parameters:
|
|
@@ -7364,7 +7956,7 @@ paths:
|
|
|
7364
7956
|
required: true
|
|
7365
7957
|
schema:
|
|
7366
7958
|
type: string
|
|
7367
|
-
- name:
|
|
7959
|
+
- name: translationId
|
|
7368
7960
|
in: path
|
|
7369
7961
|
required: true
|
|
7370
7962
|
schema:
|
|
@@ -7375,13 +7967,19 @@ paths:
|
|
|
7375
7967
|
content:
|
|
7376
7968
|
application/json:
|
|
7377
7969
|
schema:
|
|
7378
|
-
$ref: "#/components/schemas/
|
|
7970
|
+
$ref: "#/components/schemas/TranslationRecord"
|
|
7379
7971
|
400:
|
|
7380
7972
|
description: Bad request
|
|
7381
7973
|
401:
|
|
7382
7974
|
description: Unauthorized
|
|
7383
7975
|
404:
|
|
7384
7976
|
description: Not found
|
|
7977
|
+
requestBody:
|
|
7978
|
+
required: true
|
|
7979
|
+
content:
|
|
7980
|
+
application/json:
|
|
7981
|
+
schema:
|
|
7982
|
+
$ref: "#/components/schemas/TranslationUpdateRequest"
|
|
7385
7983
|
/api/admin/auth/push:
|
|
7386
7984
|
get:
|
|
7387
7985
|
tags:
|
|
@@ -7409,6 +8007,17 @@ paths:
|
|
|
7409
8007
|
summary: realtime.getPublicToken
|
|
7410
8008
|
operationId: realtime_getPublicToken
|
|
7411
8009
|
security: []
|
|
8010
|
+
parameters:
|
|
8011
|
+
- name: collectionId
|
|
8012
|
+
in: query
|
|
8013
|
+
required: false
|
|
8014
|
+
schema:
|
|
8015
|
+
type: string
|
|
8016
|
+
- name: appId
|
|
8017
|
+
in: query
|
|
8018
|
+
required: false
|
|
8019
|
+
schema:
|
|
8020
|
+
type: string
|
|
7412
8021
|
responses:
|
|
7413
8022
|
200:
|
|
7414
8023
|
description: Success
|
|
@@ -8361,15 +8970,15 @@ paths:
|
|
|
8361
8970
|
description: Unauthorized
|
|
8362
8971
|
404:
|
|
8363
8972
|
description: Not found
|
|
8364
|
-
/public/collection
|
|
8973
|
+
/public/collection/getShortId/{shortId}:
|
|
8365
8974
|
get:
|
|
8366
8975
|
tags:
|
|
8367
|
-
-
|
|
8368
|
-
summary:
|
|
8369
|
-
operationId:
|
|
8976
|
+
- collection
|
|
8977
|
+
summary: Retrieves all Collections.
|
|
8978
|
+
operationId: collection_getShortId
|
|
8370
8979
|
security: []
|
|
8371
8980
|
parameters:
|
|
8372
|
-
- name:
|
|
8981
|
+
- name: shortId
|
|
8373
8982
|
in: path
|
|
8374
8983
|
required: true
|
|
8375
8984
|
schema:
|
|
@@ -8380,22 +8989,22 @@ paths:
|
|
|
8380
8989
|
content:
|
|
8381
8990
|
application/json:
|
|
8382
8991
|
schema:
|
|
8383
|
-
$ref: "#/components/schemas/
|
|
8992
|
+
$ref: "#/components/schemas/CollectionResponse"
|
|
8384
8993
|
400:
|
|
8385
8994
|
description: Bad request
|
|
8386
8995
|
401:
|
|
8387
8996
|
description: Unauthorized
|
|
8388
8997
|
404:
|
|
8389
8998
|
description: Not found
|
|
8390
|
-
/public/collection
|
|
8999
|
+
/public/collection/product/batch/{batchId}:
|
|
8391
9000
|
get:
|
|
8392
9001
|
tags:
|
|
8393
|
-
-
|
|
8394
|
-
summary: Get a single
|
|
8395
|
-
operationId:
|
|
9002
|
+
- batch
|
|
9003
|
+
summary: Get a single batch by ID for a collection and product (public endpoint).
|
|
9004
|
+
operationId: batch_getPublic
|
|
8396
9005
|
security: []
|
|
8397
9006
|
parameters:
|
|
8398
|
-
- name:
|
|
9007
|
+
- name: batchId
|
|
8399
9008
|
in: path
|
|
8400
9009
|
required: true
|
|
8401
9010
|
schema:
|
|
@@ -8406,22 +9015,22 @@ paths:
|
|
|
8406
9015
|
content:
|
|
8407
9016
|
application/json:
|
|
8408
9017
|
schema:
|
|
8409
|
-
$ref: "#/components/schemas/
|
|
9018
|
+
$ref: "#/components/schemas/BatchResponse"
|
|
8410
9019
|
400:
|
|
8411
9020
|
description: Bad request
|
|
8412
9021
|
401:
|
|
8413
9022
|
description: Unauthorized
|
|
8414
9023
|
404:
|
|
8415
9024
|
description: Not found
|
|
8416
|
-
/public/collection/
|
|
9025
|
+
/public/collection/product/variant/{variantId}:
|
|
8417
9026
|
get:
|
|
8418
9027
|
tags:
|
|
8419
|
-
-
|
|
8420
|
-
summary:
|
|
8421
|
-
operationId:
|
|
9028
|
+
- variant
|
|
9029
|
+
summary: Get a single variant by ID for a collection and product (public endpoint).
|
|
9030
|
+
operationId: variant_getPublic
|
|
8422
9031
|
security: []
|
|
8423
9032
|
parameters:
|
|
8424
|
-
- name:
|
|
9033
|
+
- name: variantId
|
|
8425
9034
|
in: path
|
|
8426
9035
|
required: true
|
|
8427
9036
|
schema:
|
|
@@ -8432,7 +9041,7 @@ paths:
|
|
|
8432
9041
|
content:
|
|
8433
9042
|
application/json:
|
|
8434
9043
|
schema:
|
|
8435
|
-
$ref: "#/components/schemas/
|
|
9044
|
+
$ref: "#/components/schemas/VariantResponse"
|
|
8436
9045
|
400:
|
|
8437
9046
|
description: Bad request
|
|
8438
9047
|
401:
|
|
@@ -8650,12 +9259,12 @@ paths:
|
|
|
8650
9259
|
description: Unauthorized
|
|
8651
9260
|
404:
|
|
8652
9261
|
description: Not found
|
|
8653
|
-
/public/collection/{collectionId}/attestations
|
|
9262
|
+
/public/collection/{collectionId}/attestations:
|
|
8654
9263
|
get:
|
|
8655
9264
|
tags:
|
|
8656
9265
|
- attestations
|
|
8657
|
-
summary:
|
|
8658
|
-
operationId:
|
|
9266
|
+
summary: List attestations for a subject (public).
|
|
9267
|
+
operationId: attestations_publicList
|
|
8659
9268
|
security: []
|
|
8660
9269
|
parameters:
|
|
8661
9270
|
- name: collectionId
|
|
@@ -8663,30 +9272,60 @@ paths:
|
|
|
8663
9272
|
required: true
|
|
8664
9273
|
schema:
|
|
8665
9274
|
type: string
|
|
8666
|
-
- name:
|
|
8667
|
-
in:
|
|
8668
|
-
required:
|
|
9275
|
+
- name: subjectType
|
|
9276
|
+
in: query
|
|
9277
|
+
required: false
|
|
9278
|
+
schema:
|
|
9279
|
+
$ref: "#/components/schemas/AttestationSubjectType"
|
|
9280
|
+
- name: subjectId
|
|
9281
|
+
in: query
|
|
9282
|
+
required: false
|
|
9283
|
+
schema:
|
|
9284
|
+
type: string
|
|
9285
|
+
- name: attestationType
|
|
9286
|
+
in: query
|
|
9287
|
+
required: false
|
|
8669
9288
|
schema:
|
|
8670
9289
|
type: string
|
|
9290
|
+
- name: recordedAfter
|
|
9291
|
+
in: query
|
|
9292
|
+
required: false
|
|
9293
|
+
schema:
|
|
9294
|
+
type: string
|
|
9295
|
+
- name: recordedBefore
|
|
9296
|
+
in: query
|
|
9297
|
+
required: false
|
|
9298
|
+
schema:
|
|
9299
|
+
type: string
|
|
9300
|
+
- name: limit
|
|
9301
|
+
in: query
|
|
9302
|
+
required: false
|
|
9303
|
+
schema:
|
|
9304
|
+
type: number
|
|
9305
|
+
- name: offset
|
|
9306
|
+
in: query
|
|
9307
|
+
required: false
|
|
9308
|
+
schema:
|
|
9309
|
+
type: number
|
|
8671
9310
|
responses:
|
|
8672
9311
|
200:
|
|
8673
9312
|
description: Success
|
|
8674
9313
|
content:
|
|
8675
9314
|
application/json:
|
|
8676
9315
|
schema:
|
|
8677
|
-
$ref: "#/components/schemas/
|
|
9316
|
+
$ref: "#/components/schemas/PublicListAttestationsResponse"
|
|
8678
9317
|
400:
|
|
8679
9318
|
description: Bad request
|
|
8680
9319
|
401:
|
|
8681
9320
|
description: Unauthorized
|
|
8682
9321
|
404:
|
|
8683
9322
|
description: Not found
|
|
8684
|
-
/public/collection/{collectionId}/attestations/
|
|
9323
|
+
/public/collection/{collectionId}/attestations/latest:
|
|
8685
9324
|
get:
|
|
8686
9325
|
tags:
|
|
8687
9326
|
- attestations
|
|
8688
|
-
summary:
|
|
8689
|
-
operationId:
|
|
9327
|
+
summary: "Latest snapshot per `attestationType` (public)."
|
|
9328
|
+
operationId: attestations_publicLatest
|
|
8690
9329
|
security: []
|
|
8691
9330
|
parameters:
|
|
8692
9331
|
- name: collectionId
|
|
@@ -8694,9 +9333,14 @@ paths:
|
|
|
8694
9333
|
required: true
|
|
8695
9334
|
schema:
|
|
8696
9335
|
type: string
|
|
8697
|
-
- name:
|
|
8698
|
-
in:
|
|
8699
|
-
required:
|
|
9336
|
+
- name: subjectType
|
|
9337
|
+
in: query
|
|
9338
|
+
required: false
|
|
9339
|
+
schema:
|
|
9340
|
+
$ref: "#/components/schemas/AttestationSubjectType"
|
|
9341
|
+
- name: subjectId
|
|
9342
|
+
in: query
|
|
9343
|
+
required: false
|
|
8700
9344
|
schema:
|
|
8701
9345
|
type: string
|
|
8702
9346
|
responses:
|
|
@@ -8705,19 +9349,19 @@ paths:
|
|
|
8705
9349
|
content:
|
|
8706
9350
|
application/json:
|
|
8707
9351
|
schema:
|
|
8708
|
-
$ref: "#/components/schemas/
|
|
9352
|
+
$ref: "#/components/schemas/PublicAttestationLatestResponse"
|
|
8709
9353
|
400:
|
|
8710
9354
|
description: Bad request
|
|
8711
9355
|
401:
|
|
8712
9356
|
description: Unauthorized
|
|
8713
9357
|
404:
|
|
8714
9358
|
description: Not found
|
|
8715
|
-
/public/collection/{collectionId}/attestations/
|
|
9359
|
+
/public/collection/{collectionId}/attestations/summary:
|
|
8716
9360
|
get:
|
|
8717
9361
|
tags:
|
|
8718
9362
|
- attestations
|
|
8719
|
-
summary:
|
|
8720
|
-
operationId:
|
|
9363
|
+
summary: Time-series summary (public).
|
|
9364
|
+
operationId: attestations_publicSummary
|
|
8721
9365
|
security: []
|
|
8722
9366
|
parameters:
|
|
8723
9367
|
- name: collectionId
|
|
@@ -8725,30 +9369,65 @@ paths:
|
|
|
8725
9369
|
required: true
|
|
8726
9370
|
schema:
|
|
8727
9371
|
type: string
|
|
8728
|
-
- name:
|
|
8729
|
-
in:
|
|
8730
|
-
required:
|
|
9372
|
+
- name: subjectType
|
|
9373
|
+
in: query
|
|
9374
|
+
required: false
|
|
9375
|
+
schema:
|
|
9376
|
+
$ref: "#/components/schemas/AttestationSubjectType"
|
|
9377
|
+
- name: subjectId
|
|
9378
|
+
in: query
|
|
9379
|
+
required: false
|
|
8731
9380
|
schema:
|
|
8732
9381
|
type: string
|
|
9382
|
+
- name: attestationType
|
|
9383
|
+
in: query
|
|
9384
|
+
required: false
|
|
9385
|
+
schema:
|
|
9386
|
+
type: string
|
|
9387
|
+
- name: valueField
|
|
9388
|
+
in: query
|
|
9389
|
+
required: false
|
|
9390
|
+
schema:
|
|
9391
|
+
type: string
|
|
9392
|
+
- name: groupBy
|
|
9393
|
+
in: query
|
|
9394
|
+
required: false
|
|
9395
|
+
schema:
|
|
9396
|
+
$ref: "#/components/schemas/AttestationGroupBy"
|
|
9397
|
+
- name: recordedAfter
|
|
9398
|
+
in: query
|
|
9399
|
+
required: false
|
|
9400
|
+
schema:
|
|
9401
|
+
type: string
|
|
9402
|
+
- name: recordedBefore
|
|
9403
|
+
in: query
|
|
9404
|
+
required: false
|
|
9405
|
+
schema:
|
|
9406
|
+
type: string
|
|
9407
|
+
- name: limit
|
|
9408
|
+
in: query
|
|
9409
|
+
required: false
|
|
9410
|
+
schema:
|
|
9411
|
+
type: number
|
|
8733
9412
|
responses:
|
|
8734
9413
|
200:
|
|
8735
9414
|
description: Success
|
|
8736
9415
|
content:
|
|
8737
9416
|
application/json:
|
|
8738
9417
|
schema:
|
|
8739
|
-
$ref: "#/components/schemas/
|
|
9418
|
+
$ref: "#/components/schemas/PublicAttestationSummaryResponse"
|
|
8740
9419
|
400:
|
|
8741
9420
|
description: Bad request
|
|
8742
9421
|
401:
|
|
8743
9422
|
description: Unauthorized
|
|
8744
9423
|
404:
|
|
8745
9424
|
description: Not found
|
|
8746
|
-
/public/collection/{collectionId}/attestations/tree-
|
|
9425
|
+
/public/collection/{collectionId}/attestations/tree-latest:
|
|
8747
9426
|
get:
|
|
8748
9427
|
tags:
|
|
8749
9428
|
- attestations
|
|
8750
|
-
summary: Tree
|
|
8751
|
-
operationId:
|
|
9429
|
+
summary: Tree latest snapshot (public).
|
|
9430
|
+
operationId: attestations_publicTreeLatest
|
|
8752
9431
|
security: []
|
|
8753
9432
|
parameters:
|
|
8754
9433
|
- name: collectionId
|
|
@@ -8756,30 +9435,35 @@ paths:
|
|
|
8756
9435
|
required: true
|
|
8757
9436
|
schema:
|
|
8758
9437
|
type: string
|
|
8759
|
-
- name:
|
|
8760
|
-
in:
|
|
8761
|
-
required:
|
|
9438
|
+
- name: subjectId
|
|
9439
|
+
in: query
|
|
9440
|
+
required: false
|
|
8762
9441
|
schema:
|
|
8763
9442
|
type: string
|
|
9443
|
+
- name: includeItems
|
|
9444
|
+
in: query
|
|
9445
|
+
required: false
|
|
9446
|
+
schema:
|
|
9447
|
+
type: boolean
|
|
8764
9448
|
responses:
|
|
8765
9449
|
200:
|
|
8766
9450
|
description: Success
|
|
8767
9451
|
content:
|
|
8768
9452
|
application/json:
|
|
8769
9453
|
schema:
|
|
8770
|
-
$ref: "#/components/schemas/
|
|
9454
|
+
$ref: "#/components/schemas/PublicAttestationTreeLatestResponse"
|
|
8771
9455
|
400:
|
|
8772
9456
|
description: Bad request
|
|
8773
9457
|
401:
|
|
8774
9458
|
description: Unauthorized
|
|
8775
9459
|
404:
|
|
8776
9460
|
description: Not found
|
|
8777
|
-
/public/collection/{collectionId}/attestations
|
|
9461
|
+
/public/collection/{collectionId}/attestations/tree-summary:
|
|
8778
9462
|
get:
|
|
8779
9463
|
tags:
|
|
8780
9464
|
- attestations
|
|
8781
|
-
summary:
|
|
8782
|
-
operationId:
|
|
9465
|
+
summary: Tree time-series summary (public).
|
|
9466
|
+
operationId: attestations_publicTreeSummary
|
|
8783
9467
|
security: []
|
|
8784
9468
|
parameters:
|
|
8785
9469
|
- name: collectionId
|
|
@@ -8787,18 +9471,53 @@ paths:
|
|
|
8787
9471
|
required: true
|
|
8788
9472
|
schema:
|
|
8789
9473
|
type: string
|
|
8790
|
-
- name:
|
|
8791
|
-
in:
|
|
8792
|
-
required:
|
|
9474
|
+
- name: subjectId
|
|
9475
|
+
in: query
|
|
9476
|
+
required: false
|
|
9477
|
+
schema:
|
|
9478
|
+
type: string
|
|
9479
|
+
- name: attestationType
|
|
9480
|
+
in: query
|
|
9481
|
+
required: false
|
|
9482
|
+
schema:
|
|
9483
|
+
type: string
|
|
9484
|
+
- name: valueField
|
|
9485
|
+
in: query
|
|
9486
|
+
required: false
|
|
9487
|
+
schema:
|
|
9488
|
+
type: string
|
|
9489
|
+
- name: groupBy
|
|
9490
|
+
in: query
|
|
9491
|
+
required: false
|
|
9492
|
+
schema:
|
|
9493
|
+
$ref: "#/components/schemas/AttestationGroupBy"
|
|
9494
|
+
- name: recordedAfter
|
|
9495
|
+
in: query
|
|
9496
|
+
required: false
|
|
9497
|
+
schema:
|
|
9498
|
+
type: string
|
|
9499
|
+
- name: recordedBefore
|
|
9500
|
+
in: query
|
|
9501
|
+
required: false
|
|
8793
9502
|
schema:
|
|
8794
9503
|
type: string
|
|
9504
|
+
- name: limit
|
|
9505
|
+
in: query
|
|
9506
|
+
required: false
|
|
9507
|
+
schema:
|
|
9508
|
+
type: number
|
|
9509
|
+
- name: includeItems
|
|
9510
|
+
in: query
|
|
9511
|
+
required: false
|
|
9512
|
+
schema:
|
|
9513
|
+
type: boolean
|
|
8795
9514
|
responses:
|
|
8796
9515
|
200:
|
|
8797
9516
|
description: Success
|
|
8798
9517
|
content:
|
|
8799
9518
|
application/json:
|
|
8800
9519
|
schema:
|
|
8801
|
-
$ref: "#/components/schemas/
|
|
9520
|
+
$ref: "#/components/schemas/PublicAttestationTreeSummaryResponse"
|
|
8802
9521
|
400:
|
|
8803
9522
|
description: Bad request
|
|
8804
9523
|
401:
|
|
@@ -8839,7 +9558,7 @@ paths:
|
|
|
8839
9558
|
schema:
|
|
8840
9559
|
type: object
|
|
8841
9560
|
additionalProperties: true
|
|
8842
|
-
/public/collection/{collectionId}/comm/methods
|
|
9561
|
+
/public/collection/{collectionId}/comm/methods:
|
|
8843
9562
|
get:
|
|
8844
9563
|
tags:
|
|
8845
9564
|
- comms
|
|
@@ -8852,11 +9571,6 @@ paths:
|
|
|
8852
9571
|
required: true
|
|
8853
9572
|
schema:
|
|
8854
9573
|
type: string
|
|
8855
|
-
- name: qs
|
|
8856
|
-
in: path
|
|
8857
|
-
required: true
|
|
8858
|
-
schema:
|
|
8859
|
-
type: string
|
|
8860
9574
|
- name: contactId
|
|
8861
9575
|
in: query
|
|
8862
9576
|
required: false
|
|
@@ -9010,7 +9724,7 @@ paths:
|
|
|
9010
9724
|
schema:
|
|
9011
9725
|
type: object
|
|
9012
9726
|
additionalProperties: true
|
|
9013
|
-
/public/collection/{collectionId}/comm/subscription/check
|
|
9727
|
+
/public/collection/{collectionId}/comm/subscription/check:
|
|
9014
9728
|
get:
|
|
9015
9729
|
tags:
|
|
9016
9730
|
- comms
|
|
@@ -9023,11 +9737,6 @@ paths:
|
|
|
9023
9737
|
required: true
|
|
9024
9738
|
schema:
|
|
9025
9739
|
type: string
|
|
9026
|
-
- name: qs
|
|
9027
|
-
in: path
|
|
9028
|
-
required: true
|
|
9029
|
-
schema:
|
|
9030
|
-
type: string
|
|
9031
9740
|
- name: contactId
|
|
9032
9741
|
in: query
|
|
9033
9742
|
required: false
|
|
@@ -9123,7 +9832,7 @@ paths:
|
|
|
9123
9832
|
description: Unauthorized
|
|
9124
9833
|
404:
|
|
9125
9834
|
description: Not found
|
|
9126
|
-
/public/collection/{collectionId}/comm/unsubscribe
|
|
9835
|
+
/public/collection/{collectionId}/comm/unsubscribe:
|
|
9127
9836
|
get:
|
|
9128
9837
|
tags:
|
|
9129
9838
|
- comms
|
|
@@ -9136,11 +9845,6 @@ paths:
|
|
|
9136
9845
|
required: true
|
|
9137
9846
|
schema:
|
|
9138
9847
|
type: string
|
|
9139
|
-
- name: qs
|
|
9140
|
-
in: path
|
|
9141
|
-
required: true
|
|
9142
|
-
schema:
|
|
9143
|
-
type: string
|
|
9144
9848
|
- name: contactId
|
|
9145
9849
|
in: query
|
|
9146
9850
|
required: false
|
|
@@ -9290,12 +9994,12 @@ paths:
|
|
|
9290
9994
|
description: Unauthorized
|
|
9291
9995
|
404:
|
|
9292
9996
|
description: Not found
|
|
9293
|
-
/public/collection/{collectionId}/containers
|
|
9997
|
+
/public/collection/{collectionId}/containers:
|
|
9294
9998
|
get:
|
|
9295
9999
|
tags:
|
|
9296
|
-
-
|
|
9297
|
-
summary:
|
|
9298
|
-
operationId:
|
|
10000
|
+
- containers
|
|
10001
|
+
summary: List containers (public).
|
|
10002
|
+
operationId: containers_publicList
|
|
9299
10003
|
security: []
|
|
9300
10004
|
parameters:
|
|
9301
10005
|
- name: collectionId
|
|
@@ -9303,30 +10007,60 @@ paths:
|
|
|
9303
10007
|
required: true
|
|
9304
10008
|
schema:
|
|
9305
10009
|
type: string
|
|
9306
|
-
- name:
|
|
9307
|
-
in:
|
|
9308
|
-
required:
|
|
10010
|
+
- name: containerType
|
|
10011
|
+
in: query
|
|
10012
|
+
required: false
|
|
10013
|
+
schema:
|
|
10014
|
+
type: string
|
|
10015
|
+
- name: status
|
|
10016
|
+
in: query
|
|
10017
|
+
required: false
|
|
10018
|
+
schema:
|
|
10019
|
+
$ref: "#/components/schemas/ContainerStatus"
|
|
10020
|
+
- name: ref
|
|
10021
|
+
in: query
|
|
10022
|
+
required: false
|
|
10023
|
+
schema:
|
|
10024
|
+
type: string
|
|
10025
|
+
- name: parentContainerId
|
|
10026
|
+
in: query
|
|
10027
|
+
required: false
|
|
9309
10028
|
schema:
|
|
9310
10029
|
type: string
|
|
10030
|
+
- name: topLevel
|
|
10031
|
+
in: query
|
|
10032
|
+
required: false
|
|
10033
|
+
schema:
|
|
10034
|
+
type: boolean
|
|
10035
|
+
- name: limit
|
|
10036
|
+
in: query
|
|
10037
|
+
required: false
|
|
10038
|
+
schema:
|
|
10039
|
+
type: number
|
|
10040
|
+
- name: offset
|
|
10041
|
+
in: query
|
|
10042
|
+
required: false
|
|
10043
|
+
schema:
|
|
10044
|
+
type: number
|
|
9311
10045
|
responses:
|
|
9312
10046
|
200:
|
|
9313
10047
|
description: Success
|
|
9314
10048
|
content:
|
|
9315
10049
|
application/json:
|
|
9316
10050
|
schema:
|
|
9317
|
-
$ref: "#/components/schemas/
|
|
10051
|
+
$ref: "#/components/schemas/PublicListContainersResponse"
|
|
9318
10052
|
400:
|
|
9319
10053
|
description: Bad request
|
|
9320
10054
|
401:
|
|
9321
10055
|
description: Unauthorized
|
|
9322
10056
|
404:
|
|
9323
10057
|
description: Not found
|
|
9324
|
-
/public/collection/{collectionId}/containers/{containerId}
|
|
10058
|
+
/public/collection/{collectionId}/containers/{containerId}:
|
|
9325
10059
|
get:
|
|
9326
10060
|
tags:
|
|
9327
|
-
-
|
|
9328
|
-
summary:
|
|
9329
|
-
operationId:
|
|
10061
|
+
- containers
|
|
10062
|
+
summary: Get a single container (public).
|
|
10063
|
+
operationId: containers_publicGet
|
|
9330
10064
|
security: []
|
|
9331
10065
|
parameters:
|
|
9332
10066
|
- name: collectionId
|
|
@@ -9339,30 +10073,40 @@ paths:
|
|
|
9339
10073
|
required: true
|
|
9340
10074
|
schema:
|
|
9341
10075
|
type: string
|
|
9342
|
-
- name:
|
|
9343
|
-
in:
|
|
9344
|
-
required:
|
|
10076
|
+
- name: tree
|
|
10077
|
+
in: query
|
|
10078
|
+
required: false
|
|
9345
10079
|
schema:
|
|
9346
|
-
type:
|
|
10080
|
+
type: boolean
|
|
10081
|
+
- name: treeDepth
|
|
10082
|
+
in: query
|
|
10083
|
+
required: false
|
|
10084
|
+
schema:
|
|
10085
|
+
type: number
|
|
10086
|
+
- name: includeContents
|
|
10087
|
+
in: query
|
|
10088
|
+
required: false
|
|
10089
|
+
schema:
|
|
10090
|
+
type: boolean
|
|
9347
10091
|
responses:
|
|
9348
10092
|
200:
|
|
9349
10093
|
description: Success
|
|
9350
10094
|
content:
|
|
9351
10095
|
application/json:
|
|
9352
10096
|
schema:
|
|
9353
|
-
$ref: "#/components/schemas/
|
|
10097
|
+
$ref: "#/components/schemas/Container"
|
|
9354
10098
|
400:
|
|
9355
10099
|
description: Bad request
|
|
9356
10100
|
401:
|
|
9357
10101
|
description: Unauthorized
|
|
9358
10102
|
404:
|
|
9359
10103
|
description: Not found
|
|
9360
|
-
/public/collection/{collectionId}/containers/{containerId}/attestations
|
|
10104
|
+
/public/collection/{collectionId}/containers/{containerId}/attestations:
|
|
9361
10105
|
get:
|
|
9362
10106
|
tags:
|
|
9363
10107
|
- attestations
|
|
9364
|
-
summary:
|
|
9365
|
-
operationId:
|
|
10108
|
+
summary: List attestations for a specific container (public shortcut).
|
|
10109
|
+
operationId: attestations_publicContainerList
|
|
9366
10110
|
security: []
|
|
9367
10111
|
parameters:
|
|
9368
10112
|
- name: collectionId
|
|
@@ -9375,30 +10119,60 @@ paths:
|
|
|
9375
10119
|
required: true
|
|
9376
10120
|
schema:
|
|
9377
10121
|
type: string
|
|
9378
|
-
- name:
|
|
9379
|
-
in:
|
|
9380
|
-
required:
|
|
10122
|
+
- name: subjectType
|
|
10123
|
+
in: query
|
|
10124
|
+
required: false
|
|
10125
|
+
schema:
|
|
10126
|
+
$ref: "#/components/schemas/AttestationSubjectType"
|
|
10127
|
+
- name: subjectId
|
|
10128
|
+
in: query
|
|
10129
|
+
required: false
|
|
9381
10130
|
schema:
|
|
9382
10131
|
type: string
|
|
10132
|
+
- name: attestationType
|
|
10133
|
+
in: query
|
|
10134
|
+
required: false
|
|
10135
|
+
schema:
|
|
10136
|
+
type: string
|
|
10137
|
+
- name: recordedAfter
|
|
10138
|
+
in: query
|
|
10139
|
+
required: false
|
|
10140
|
+
schema:
|
|
10141
|
+
type: string
|
|
10142
|
+
- name: recordedBefore
|
|
10143
|
+
in: query
|
|
10144
|
+
required: false
|
|
10145
|
+
schema:
|
|
10146
|
+
type: string
|
|
10147
|
+
- name: limit
|
|
10148
|
+
in: query
|
|
10149
|
+
required: false
|
|
10150
|
+
schema:
|
|
10151
|
+
type: number
|
|
10152
|
+
- name: offset
|
|
10153
|
+
in: query
|
|
10154
|
+
required: false
|
|
10155
|
+
schema:
|
|
10156
|
+
type: number
|
|
9383
10157
|
responses:
|
|
9384
10158
|
200:
|
|
9385
10159
|
description: Success
|
|
9386
10160
|
content:
|
|
9387
10161
|
application/json:
|
|
9388
10162
|
schema:
|
|
9389
|
-
$ref: "#/components/schemas/
|
|
10163
|
+
$ref: "#/components/schemas/PublicListAttestationsResponse"
|
|
9390
10164
|
400:
|
|
9391
10165
|
description: Bad request
|
|
9392
10166
|
401:
|
|
9393
10167
|
description: Unauthorized
|
|
9394
10168
|
404:
|
|
9395
10169
|
description: Not found
|
|
9396
|
-
/public/collection/{collectionId}/containers/{containerId}/attestations/
|
|
10170
|
+
/public/collection/{collectionId}/containers/{containerId}/attestations/latest:
|
|
9397
10171
|
get:
|
|
9398
10172
|
tags:
|
|
9399
10173
|
- attestations
|
|
9400
|
-
summary:
|
|
9401
|
-
operationId:
|
|
10174
|
+
summary: Time-series summary for a specific container (public shortcut).
|
|
10175
|
+
operationId: attestations_publicContainerLatest
|
|
9402
10176
|
security: []
|
|
9403
10177
|
parameters:
|
|
9404
10178
|
- name: collectionId
|
|
@@ -9411,30 +10185,25 @@ paths:
|
|
|
9411
10185
|
required: true
|
|
9412
10186
|
schema:
|
|
9413
10187
|
type: string
|
|
9414
|
-
- name: qs
|
|
9415
|
-
in: path
|
|
9416
|
-
required: true
|
|
9417
|
-
schema:
|
|
9418
|
-
type: string
|
|
9419
10188
|
responses:
|
|
9420
10189
|
200:
|
|
9421
10190
|
description: Success
|
|
9422
10191
|
content:
|
|
9423
10192
|
application/json:
|
|
9424
10193
|
schema:
|
|
9425
|
-
$ref: "#/components/schemas/
|
|
10194
|
+
$ref: "#/components/schemas/PublicAttestationLatestResponse"
|
|
9426
10195
|
400:
|
|
9427
10196
|
description: Bad request
|
|
9428
10197
|
401:
|
|
9429
10198
|
description: Unauthorized
|
|
9430
10199
|
404:
|
|
9431
10200
|
description: Not found
|
|
9432
|
-
/public/collection/{collectionId}/containers/{containerId}/attestations
|
|
10201
|
+
/public/collection/{collectionId}/containers/{containerId}/attestations/summary:
|
|
9433
10202
|
get:
|
|
9434
10203
|
tags:
|
|
9435
10204
|
- attestations
|
|
9436
|
-
summary:
|
|
9437
|
-
operationId:
|
|
10205
|
+
summary: Time-series summary for a specific container (public shortcut).
|
|
10206
|
+
operationId: attestations_publicContainerSummary
|
|
9438
10207
|
security: []
|
|
9439
10208
|
parameters:
|
|
9440
10209
|
- name: collectionId
|
|
@@ -9447,30 +10216,65 @@ paths:
|
|
|
9447
10216
|
required: true
|
|
9448
10217
|
schema:
|
|
9449
10218
|
type: string
|
|
9450
|
-
- name:
|
|
9451
|
-
in:
|
|
9452
|
-
required:
|
|
10219
|
+
- name: subjectType
|
|
10220
|
+
in: query
|
|
10221
|
+
required: false
|
|
10222
|
+
schema:
|
|
10223
|
+
$ref: "#/components/schemas/AttestationSubjectType"
|
|
10224
|
+
- name: subjectId
|
|
10225
|
+
in: query
|
|
10226
|
+
required: false
|
|
10227
|
+
schema:
|
|
10228
|
+
type: string
|
|
10229
|
+
- name: attestationType
|
|
10230
|
+
in: query
|
|
10231
|
+
required: false
|
|
10232
|
+
schema:
|
|
10233
|
+
type: string
|
|
10234
|
+
- name: valueField
|
|
10235
|
+
in: query
|
|
10236
|
+
required: false
|
|
9453
10237
|
schema:
|
|
9454
10238
|
type: string
|
|
10239
|
+
- name: groupBy
|
|
10240
|
+
in: query
|
|
10241
|
+
required: false
|
|
10242
|
+
schema:
|
|
10243
|
+
$ref: "#/components/schemas/AttestationGroupBy"
|
|
10244
|
+
- name: recordedAfter
|
|
10245
|
+
in: query
|
|
10246
|
+
required: false
|
|
10247
|
+
schema:
|
|
10248
|
+
type: string
|
|
10249
|
+
- name: recordedBefore
|
|
10250
|
+
in: query
|
|
10251
|
+
required: false
|
|
10252
|
+
schema:
|
|
10253
|
+
type: string
|
|
10254
|
+
- name: limit
|
|
10255
|
+
in: query
|
|
10256
|
+
required: false
|
|
10257
|
+
schema:
|
|
10258
|
+
type: number
|
|
9455
10259
|
responses:
|
|
9456
10260
|
200:
|
|
9457
10261
|
description: Success
|
|
9458
10262
|
content:
|
|
9459
10263
|
application/json:
|
|
9460
10264
|
schema:
|
|
9461
|
-
$ref: "#/components/schemas/
|
|
10265
|
+
$ref: "#/components/schemas/PublicAttestationSummaryResponse"
|
|
9462
10266
|
400:
|
|
9463
10267
|
description: Bad request
|
|
9464
10268
|
401:
|
|
9465
10269
|
description: Unauthorized
|
|
9466
10270
|
404:
|
|
9467
10271
|
description: Not found
|
|
9468
|
-
/public/collection/{collectionId}/containers/{containerId}/
|
|
10272
|
+
/public/collection/{collectionId}/containers/{containerId}/attestations/tree-latest:
|
|
9469
10273
|
get:
|
|
9470
10274
|
tags:
|
|
9471
|
-
-
|
|
9472
|
-
summary:
|
|
9473
|
-
operationId:
|
|
10275
|
+
- attestations
|
|
10276
|
+
summary: Tree time-series summary rooted at a specific container (public shortcut).
|
|
10277
|
+
operationId: attestations_publicContainerTreeLatest
|
|
9474
10278
|
security: []
|
|
9475
10279
|
parameters:
|
|
9476
10280
|
- name: collectionId
|
|
@@ -9483,30 +10287,35 @@ paths:
|
|
|
9483
10287
|
required: true
|
|
9484
10288
|
schema:
|
|
9485
10289
|
type: string
|
|
9486
|
-
- name:
|
|
9487
|
-
in:
|
|
9488
|
-
required:
|
|
10290
|
+
- name: subjectId
|
|
10291
|
+
in: query
|
|
10292
|
+
required: false
|
|
9489
10293
|
schema:
|
|
9490
10294
|
type: string
|
|
10295
|
+
- name: includeItems
|
|
10296
|
+
in: query
|
|
10297
|
+
required: false
|
|
10298
|
+
schema:
|
|
10299
|
+
type: boolean
|
|
9491
10300
|
responses:
|
|
9492
10301
|
200:
|
|
9493
10302
|
description: Success
|
|
9494
10303
|
content:
|
|
9495
10304
|
application/json:
|
|
9496
10305
|
schema:
|
|
9497
|
-
$ref: "#/components/schemas/
|
|
10306
|
+
$ref: "#/components/schemas/PublicAttestationTreeLatestResponse"
|
|
9498
10307
|
400:
|
|
9499
10308
|
description: Bad request
|
|
9500
10309
|
401:
|
|
9501
10310
|
description: Unauthorized
|
|
9502
10311
|
404:
|
|
9503
10312
|
description: Not found
|
|
9504
|
-
/public/collection/{collectionId}/containers/{containerId}
|
|
10313
|
+
/public/collection/{collectionId}/containers/{containerId}/attestations/tree-summary:
|
|
9505
10314
|
get:
|
|
9506
10315
|
tags:
|
|
9507
|
-
-
|
|
9508
|
-
summary:
|
|
9509
|
-
operationId:
|
|
10316
|
+
- attestations
|
|
10317
|
+
summary: Latest snapshot for a specific container (public shortcut).
|
|
10318
|
+
operationId: attestations_publicContainerTreeSummary
|
|
9510
10319
|
security: []
|
|
9511
10320
|
parameters:
|
|
9512
10321
|
- name: collectionId
|
|
@@ -9519,30 +10328,65 @@ paths:
|
|
|
9519
10328
|
required: true
|
|
9520
10329
|
schema:
|
|
9521
10330
|
type: string
|
|
9522
|
-
- name:
|
|
9523
|
-
in:
|
|
9524
|
-
required:
|
|
10331
|
+
- name: subjectId
|
|
10332
|
+
in: query
|
|
10333
|
+
required: false
|
|
10334
|
+
schema:
|
|
10335
|
+
type: string
|
|
10336
|
+
- name: attestationType
|
|
10337
|
+
in: query
|
|
10338
|
+
required: false
|
|
10339
|
+
schema:
|
|
10340
|
+
type: string
|
|
10341
|
+
- name: valueField
|
|
10342
|
+
in: query
|
|
10343
|
+
required: false
|
|
10344
|
+
schema:
|
|
10345
|
+
type: string
|
|
10346
|
+
- name: groupBy
|
|
10347
|
+
in: query
|
|
10348
|
+
required: false
|
|
10349
|
+
schema:
|
|
10350
|
+
$ref: "#/components/schemas/AttestationGroupBy"
|
|
10351
|
+
- name: recordedAfter
|
|
10352
|
+
in: query
|
|
10353
|
+
required: false
|
|
10354
|
+
schema:
|
|
10355
|
+
type: string
|
|
10356
|
+
- name: recordedBefore
|
|
10357
|
+
in: query
|
|
10358
|
+
required: false
|
|
9525
10359
|
schema:
|
|
9526
10360
|
type: string
|
|
10361
|
+
- name: limit
|
|
10362
|
+
in: query
|
|
10363
|
+
required: false
|
|
10364
|
+
schema:
|
|
10365
|
+
type: number
|
|
10366
|
+
- name: includeItems
|
|
10367
|
+
in: query
|
|
10368
|
+
required: false
|
|
10369
|
+
schema:
|
|
10370
|
+
type: boolean
|
|
9527
10371
|
responses:
|
|
9528
10372
|
200:
|
|
9529
10373
|
description: Success
|
|
9530
10374
|
content:
|
|
9531
10375
|
application/json:
|
|
9532
10376
|
schema:
|
|
9533
|
-
$ref: "#/components/schemas/
|
|
10377
|
+
$ref: "#/components/schemas/PublicAttestationTreeSummaryResponse"
|
|
9534
10378
|
400:
|
|
9535
10379
|
description: Bad request
|
|
9536
10380
|
401:
|
|
9537
10381
|
description: Unauthorized
|
|
9538
10382
|
404:
|
|
9539
10383
|
description: Not found
|
|
9540
|
-
/public/collection/{collectionId}/containers{
|
|
10384
|
+
/public/collection/{collectionId}/containers/{containerId}/items:
|
|
9541
10385
|
get:
|
|
9542
10386
|
tags:
|
|
9543
10387
|
- containers
|
|
9544
|
-
summary: List
|
|
9545
|
-
operationId:
|
|
10388
|
+
summary: List current contents of a container (public).
|
|
10389
|
+
operationId: containers_publicListItems
|
|
9546
10390
|
security: []
|
|
9547
10391
|
parameters:
|
|
9548
10392
|
- name: collectionId
|
|
@@ -9550,18 +10394,33 @@ paths:
|
|
|
9550
10394
|
required: true
|
|
9551
10395
|
schema:
|
|
9552
10396
|
type: string
|
|
9553
|
-
- name:
|
|
10397
|
+
- name: containerId
|
|
9554
10398
|
in: path
|
|
9555
10399
|
required: true
|
|
9556
10400
|
schema:
|
|
9557
10401
|
type: string
|
|
10402
|
+
- name: history
|
|
10403
|
+
in: query
|
|
10404
|
+
required: false
|
|
10405
|
+
schema:
|
|
10406
|
+
type: boolean
|
|
10407
|
+
- name: limit
|
|
10408
|
+
in: query
|
|
10409
|
+
required: false
|
|
10410
|
+
schema:
|
|
10411
|
+
type: number
|
|
10412
|
+
- name: offset
|
|
10413
|
+
in: query
|
|
10414
|
+
required: false
|
|
10415
|
+
schema:
|
|
10416
|
+
type: number
|
|
9558
10417
|
responses:
|
|
9559
10418
|
200:
|
|
9560
10419
|
description: Success
|
|
9561
10420
|
content:
|
|
9562
10421
|
application/json:
|
|
9563
10422
|
schema:
|
|
9564
|
-
$ref: "#/components/schemas/
|
|
10423
|
+
$ref: "#/components/schemas/ContainerItemsResponse"
|
|
9565
10424
|
400:
|
|
9566
10425
|
description: Bad request
|
|
9567
10426
|
401:
|
|
@@ -9581,6 +10440,11 @@ paths:
|
|
|
9581
10440
|
required: true
|
|
9582
10441
|
schema:
|
|
9583
10442
|
type: string
|
|
10443
|
+
- name: includeValues
|
|
10444
|
+
in: query
|
|
10445
|
+
required: false
|
|
10446
|
+
schema:
|
|
10447
|
+
type: boolean
|
|
9584
10448
|
responses:
|
|
9585
10449
|
200:
|
|
9586
10450
|
description: Success
|
|
@@ -9644,6 +10508,11 @@ paths:
|
|
|
9644
10508
|
required: true
|
|
9645
10509
|
schema:
|
|
9646
10510
|
type: string
|
|
10511
|
+
- name: includeValues
|
|
10512
|
+
in: query
|
|
10513
|
+
required: false
|
|
10514
|
+
schema:
|
|
10515
|
+
type: boolean
|
|
9647
10516
|
responses:
|
|
9648
10517
|
200:
|
|
9649
10518
|
description: Success
|
|
@@ -9724,6 +10593,47 @@ paths:
|
|
|
9724
10593
|
description: Unauthorized
|
|
9725
10594
|
404:
|
|
9726
10595
|
description: Not found
|
|
10596
|
+
/public/collection/{collectionId}/interactions:
|
|
10597
|
+
get:
|
|
10598
|
+
tags:
|
|
10599
|
+
- interactions
|
|
10600
|
+
summary: interactions.publicList
|
|
10601
|
+
operationId: interactions_publicList
|
|
10602
|
+
security: []
|
|
10603
|
+
parameters:
|
|
10604
|
+
- name: collectionId
|
|
10605
|
+
in: path
|
|
10606
|
+
required: true
|
|
10607
|
+
schema:
|
|
10608
|
+
type: string
|
|
10609
|
+
- name: appId
|
|
10610
|
+
in: query
|
|
10611
|
+
required: false
|
|
10612
|
+
schema:
|
|
10613
|
+
type: string
|
|
10614
|
+
- name: limit
|
|
10615
|
+
in: query
|
|
10616
|
+
required: false
|
|
10617
|
+
schema:
|
|
10618
|
+
type: number
|
|
10619
|
+
- name: offset
|
|
10620
|
+
in: query
|
|
10621
|
+
required: false
|
|
10622
|
+
schema:
|
|
10623
|
+
type: number
|
|
10624
|
+
responses:
|
|
10625
|
+
200:
|
|
10626
|
+
description: Success
|
|
10627
|
+
content:
|
|
10628
|
+
application/json:
|
|
10629
|
+
schema:
|
|
10630
|
+
$ref: "#/components/schemas/InteractionTypeList"
|
|
10631
|
+
400:
|
|
10632
|
+
description: Bad request
|
|
10633
|
+
401:
|
|
10634
|
+
description: Unauthorized
|
|
10635
|
+
404:
|
|
10636
|
+
description: Not found
|
|
9727
10637
|
/public/collection/{collectionId}/interactions/by-user:
|
|
9728
10638
|
post:
|
|
9729
10639
|
tags:
|
|
@@ -9823,37 +10733,6 @@ paths:
|
|
|
9823
10733
|
description: Unauthorized
|
|
9824
10734
|
404:
|
|
9825
10735
|
description: Not found
|
|
9826
|
-
/public/collection/{collectionId}/interactions/{qs}:
|
|
9827
|
-
get:
|
|
9828
|
-
tags:
|
|
9829
|
-
- interactions
|
|
9830
|
-
summary: interactions.publicList
|
|
9831
|
-
operationId: interactions_publicList
|
|
9832
|
-
security: []
|
|
9833
|
-
parameters:
|
|
9834
|
-
- name: collectionId
|
|
9835
|
-
in: path
|
|
9836
|
-
required: true
|
|
9837
|
-
schema:
|
|
9838
|
-
type: string
|
|
9839
|
-
- name: qs
|
|
9840
|
-
in: path
|
|
9841
|
-
required: true
|
|
9842
|
-
schema:
|
|
9843
|
-
type: string
|
|
9844
|
-
responses:
|
|
9845
|
-
200:
|
|
9846
|
-
description: Success
|
|
9847
|
-
content:
|
|
9848
|
-
application/json:
|
|
9849
|
-
schema:
|
|
9850
|
-
$ref: "#/components/schemas/InteractionTypeList"
|
|
9851
|
-
400:
|
|
9852
|
-
description: Bad request
|
|
9853
|
-
401:
|
|
9854
|
-
description: Unauthorized
|
|
9855
|
-
404:
|
|
9856
|
-
description: Not found
|
|
9857
10736
|
/public/collection/{collectionId}/location/{locationId}:
|
|
9858
10737
|
get:
|
|
9859
10738
|
tags:
|
|
@@ -10648,6 +11527,21 @@ paths:
|
|
|
10648
11527
|
required: true
|
|
10649
11528
|
schema:
|
|
10650
11529
|
type: string
|
|
11530
|
+
- name: refType
|
|
11531
|
+
in: query
|
|
11532
|
+
required: false
|
|
11533
|
+
schema:
|
|
11534
|
+
type: string
|
|
11535
|
+
- name: refId
|
|
11536
|
+
in: query
|
|
11537
|
+
required: false
|
|
11538
|
+
schema:
|
|
11539
|
+
type: string
|
|
11540
|
+
- name: embed
|
|
11541
|
+
in: query
|
|
11542
|
+
required: false
|
|
11543
|
+
schema:
|
|
11544
|
+
type: string
|
|
10651
11545
|
responses:
|
|
10652
11546
|
200:
|
|
10653
11547
|
description: Success
|
|
@@ -10705,6 +11599,16 @@ paths:
|
|
|
10705
11599
|
required: true
|
|
10706
11600
|
schema:
|
|
10707
11601
|
type: string
|
|
11602
|
+
- name: tagIds
|
|
11603
|
+
in: query
|
|
11604
|
+
required: false
|
|
11605
|
+
schema:
|
|
11606
|
+
type: string
|
|
11607
|
+
- name: embed
|
|
11608
|
+
in: query
|
|
11609
|
+
required: false
|
|
11610
|
+
schema:
|
|
11611
|
+
type: string
|
|
10708
11612
|
responses:
|
|
10709
11613
|
200:
|
|
10710
11614
|
description: Success
|
|
@@ -11192,6 +12096,41 @@ paths:
|
|
|
11192
12096
|
required: true
|
|
11193
12097
|
schema:
|
|
11194
12098
|
type: string
|
|
12099
|
+
- name: category
|
|
12100
|
+
in: query
|
|
12101
|
+
required: false
|
|
12102
|
+
schema:
|
|
12103
|
+
type: string
|
|
12104
|
+
- name: priority
|
|
12105
|
+
in: query
|
|
12106
|
+
required: false
|
|
12107
|
+
schema:
|
|
12108
|
+
type: string
|
|
12109
|
+
- name: ref
|
|
12110
|
+
in: query
|
|
12111
|
+
required: false
|
|
12112
|
+
schema:
|
|
12113
|
+
type: string
|
|
12114
|
+
- name: proofId
|
|
12115
|
+
in: query
|
|
12116
|
+
required: false
|
|
12117
|
+
schema:
|
|
12118
|
+
type: string
|
|
12119
|
+
- name: contactId
|
|
12120
|
+
in: query
|
|
12121
|
+
required: false
|
|
12122
|
+
schema:
|
|
12123
|
+
type: string
|
|
12124
|
+
- name: assignedTo
|
|
12125
|
+
in: query
|
|
12126
|
+
required: false
|
|
12127
|
+
schema:
|
|
12128
|
+
type: string
|
|
12129
|
+
- name: closedAt
|
|
12130
|
+
in: query
|
|
12131
|
+
required: false
|
|
12132
|
+
schema:
|
|
12133
|
+
type: string
|
|
11195
12134
|
responses:
|
|
11196
12135
|
200:
|
|
11197
12136
|
description: Success
|