@radocc/svc-assessment-order-contract 1.0.6 → 1.0.8
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/index.d.ts +17 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -5,6 +5,9 @@ export interface paths {
|
|
|
5
5
|
"/": {
|
|
6
6
|
post: operations["AssessmentOrderController_createAssessmentOrder"];
|
|
7
7
|
};
|
|
8
|
+
"/{integrationId}": {
|
|
9
|
+
get: operations["AssessmentOrderController_getByIntegrationId"];
|
|
10
|
+
};
|
|
8
11
|
"/{integrationId}/results": {
|
|
9
12
|
post: operations["AssessmentOrderController_postAssessmentOrderResults"];
|
|
10
13
|
};
|
|
@@ -126,6 +129,20 @@ export interface operations {
|
|
|
126
129
|
};
|
|
127
130
|
};
|
|
128
131
|
};
|
|
132
|
+
AssessmentOrderController_getByIntegrationId: {
|
|
133
|
+
parameters: {
|
|
134
|
+
path: {
|
|
135
|
+
integrationId: string;
|
|
136
|
+
};
|
|
137
|
+
};
|
|
138
|
+
responses: {
|
|
139
|
+
200: {
|
|
140
|
+
content: {
|
|
141
|
+
"application/json": components["schemas"]["AssessmentOrderResponseDto"];
|
|
142
|
+
};
|
|
143
|
+
};
|
|
144
|
+
};
|
|
145
|
+
};
|
|
129
146
|
AssessmentOrderController_postAssessmentOrderResults: {
|
|
130
147
|
parameters: {
|
|
131
148
|
path: {
|