czech-data-box 0.1.2 → 0.2.0
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/LICENSE +1 -1
- package/README.md +277 -48
- package/dist/index.d.ts +5 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/ISDSBox.d.ts +96 -0
- package/dist/lib/ISDSBox.d.ts.map +1 -0
- package/dist/lib/ISDSBox.js +662 -0
- package/dist/lib/ISDSBox.js.map +1 -0
- package/dist/lib/ISDSSentOutFiles.d.ts +14 -0
- package/dist/lib/ISDSSentOutFiles.d.ts.map +1 -0
- package/dist/lib/ISDSSentOutFiles.js +44 -0
- package/dist/lib/ISDSSentOutFiles.js.map +1 -0
- package/dist/lib/ISDSSoapClient.d.ts +25 -0
- package/dist/lib/ISDSSoapClient.d.ts.map +1 -0
- package/dist/lib/ISDSSoapClient.js +178 -0
- package/dist/lib/ISDSSoapClient.js.map +1 -0
- package/dist/lib/config.d.ts +7 -0
- package/dist/lib/config.d.ts.map +1 -0
- package/dist/lib/config.js +94 -0
- package/dist/lib/config.js.map +1 -0
- package/dist/models/DataBox.d.ts +34 -0
- package/dist/models/DataBox.d.ts.map +1 -0
- package/dist/models/DataBox.js +92 -0
- package/dist/models/DataBox.js.map +1 -0
- package/dist/models/DataMessage.d.ts +29 -0
- package/dist/models/DataMessage.d.ts.map +1 -0
- package/dist/models/DataMessage.js +96 -0
- package/dist/models/DataMessage.js.map +1 -0
- package/dist/models/DataMessageFile.d.ts +22 -0
- package/dist/models/DataMessageFile.d.ts.map +1 -0
- package/dist/models/DataMessageFile.js +54 -0
- package/dist/models/DataMessageFile.js.map +1 -0
- package/dist/models/DataMessageFiles.d.ts +9 -0
- package/dist/models/DataMessageFiles.d.ts.map +1 -0
- package/dist/models/DataMessageFiles.js +17 -0
- package/dist/models/DataMessageFiles.js.map +1 -0
- package/dist/types.d.ts +420 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +2 -0
- package/dist/types.js.map +1 -0
- package/package.json +66 -40
- package/resources/wsdl/ChangePassword.wsdl +83 -83
- package/resources/wsdl/ChangePasswordTypes.xsd +68 -68
- package/resources/wsdl/dbTypes.xsd +1712 -1688
- package/resources/wsdl/db_access.wsdl +199 -197
- package/resources/wsdl/db_manipulations.wsdl +600 -598
- package/resources/wsdl/db_search.wsdl +389 -362
- package/resources/wsdl/dmBaseTypes.xsd +1563 -1497
- package/resources/wsdl/dm_VoDZ.wsdl +215 -212
- package/resources/wsdl/dm_arch.wsdl +77 -0
- package/resources/wsdl/dm_info.wsdl +462 -412
- package/resources/wsdl/dm_operations.wsdl +252 -242
- package/.gitattributes +0 -16
- package/.github/workflows/tests.yml +0 -39
- package/.nvmrc +0 -1
- package/.prettierignore +0 -1
- package/.prettierrc.yaml +0 -6
- package/.vscode/launch.json +0 -15
- package/.vscode/settings.json +0 -5
- package/CHANGELOG.md +0 -17
- package/CODE_OF_CONDUCT.md +0 -128
- package/CONTRIBUTING.md +0 -84
- package/eslint.config.js +0 -26
- package/examples/db_login_with_certificate.js +0 -27
- package/examples/db_search.js +0 -27
- package/examples/dm_operations.js +0 -58
- package/src/index.js +0 -5
- package/src/lib/ISDSBox.js +0 -309
- package/src/lib/ISDSSentOutFiles.js +0 -84
- package/src/lib/ISDSSoapClient.js +0 -201
- package/src/lib/config.js +0 -71
- package/src/models/DataBox.js +0 -194
- package/src/models/DataMessage.js +0 -153
- package/src/models/DataMessageFile.js +0 -69
- package/src/models/DataMessageFiles.js +0 -23
- package/test/ISDSBox.test.js +0 -129
- package/test/ISDSSentOutFiles.test.js +0 -124
- package/test/ISDSSoapClient.test.js +0 -81
- package/test/communication_test.pdf +0 -0
|
@@ -1,242 +1,252 @@
|
|
|
1
|
-
<?xml version = '1.0' encoding = 'UTF-8'?>
|
|
2
|
-
<!-- *********************************************************************
|
|
3
|
-
|
|
4
|
-
verze: 3.
|
|
5
|
-
klasifikace: Veřejný dokument
|
|
6
|
-
|
|
7
|
-
WSDL pro služby
|
|
8
|
-
1. Vytvoření/odeslání datové zprávy - CreateMessage
|
|
9
|
-
2. stažení kompletní přijaté zprávy v čitelné podobě - MessageDownload
|
|
10
|
-
3. stažení podepsané přijaté zprávy - SignedMessageDownload
|
|
11
|
-
4. stažení podepsané odeslané zprávy - SignedSentMessageDownload
|
|
12
|
-
5. vytvoření hromadné zprávy - CreateMultipleMessage
|
|
13
|
-
6. ověření zprávy - AuthenticateMessage
|
|
14
|
-
7. přepodepsání zprávy či doručenky - Re-signISDSDocument
|
|
15
|
-
|
|
16
|
-
Změny:
|
|
17
|
-
04.02.2009 verze 0.1
|
|
18
|
-
20.03.2009 verze 1.0 - formální úpravy vyhovující WS-I Basic Profile
|
|
19
|
-
08.04.2009 verze 1.2 - změna názvů WSDL, rozložení operací mezi WSDL
|
|
20
|
-
16.04.2009 verze 1.3 - přidána DummyOperation pro navazování a udržování spojení
|
|
21
|
-
03.06.2009 verze 2.0 - novela
|
|
22
|
-
01.10.2009 verze 2.5 - přidána WS CreateMultipleMessage
|
|
23
|
-
01.11.2009 verze 2.6 - komerční provoz
|
|
24
|
-
14.04.2010 verze 2.9 - přidána WS AuthenticateMessage
|
|
25
|
-
18.09.2010 verze 2.10 - změna URL v důsledku přechodu na Basic autentizaci
|
|
26
|
-
27.06.2012 verze 2.17 - přidána WS Re-signISDSDocument
|
|
27
|
-
18.09.2015 verze 2.21 - sjednocení verzí
|
|
28
|
-
14.10.2015 verze 2.22 - sjednocení verzí
|
|
29
|
-
31.01.2017 verze 2.26 -
|
|
30
|
-
21.11.2017 verze 2.27 - sjednocení verzí
|
|
31
|
-
02.09.2018 verze 2.30 - sjednocení verzí
|
|
32
|
-
04.09.2018 verze 2.31 - sjednocení verzí
|
|
33
|
-
27.07.2021 verze 2.33 - sjednocení verzí
|
|
34
|
-
25.04.2022 verze 2.35 - sjednocení verzí
|
|
35
|
-
|
|
36
|
-
31.10.2022 verze 3.03 - sjednocení verzí
|
|
37
|
-
20.10.2023 verze 3.04 - sjednocení verzí
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
xmlns
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
<message name="
|
|
58
|
-
<part name="parameter" element="tns:
|
|
59
|
-
</message>
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
<message name="
|
|
65
|
-
<part name="parameter" element="tns:
|
|
66
|
-
</message>
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
<message name="
|
|
72
|
-
<part name="parameter" element="tns:
|
|
73
|
-
</message>
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
<message name="
|
|
79
|
-
<part name="parameter" element="tns:
|
|
80
|
-
</message>
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
<
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
<
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
<
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
<
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
<
|
|
168
|
-
<soap:body use="literal" />
|
|
169
|
-
</
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
<
|
|
178
|
-
<soap:body use="literal" />
|
|
179
|
-
</
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
<
|
|
188
|
-
<soap:body use="literal" />
|
|
189
|
-
</
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
<
|
|
198
|
-
<soap:body use="literal" />
|
|
199
|
-
</
|
|
200
|
-
</operation>
|
|
201
|
-
|
|
202
|
-
<operation name="
|
|
203
|
-
<soap:operation soapAction=""
|
|
204
|
-
<input>
|
|
205
|
-
<soap:body use="literal" />
|
|
206
|
-
</input>
|
|
207
|
-
<output
|
|
208
|
-
<soap:body use="literal" />
|
|
209
|
-
</output>
|
|
210
|
-
</operation>
|
|
211
|
-
|
|
212
|
-
<operation name="
|
|
213
|
-
<soap:operation soapAction="" />
|
|
214
|
-
<input>
|
|
215
|
-
<soap:body use="literal" />
|
|
216
|
-
</input>
|
|
217
|
-
<output >
|
|
218
|
-
<soap:body use="literal" />
|
|
219
|
-
</output>
|
|
220
|
-
</operation>
|
|
221
|
-
|
|
222
|
-
<operation name="
|
|
223
|
-
<soap:operation soapAction="" />
|
|
224
|
-
<input>
|
|
225
|
-
<soap:body use="literal" />
|
|
226
|
-
</input>
|
|
227
|
-
<output >
|
|
228
|
-
<soap:body use="literal" />
|
|
229
|
-
</output>
|
|
230
|
-
</operation>
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
<
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
1
|
+
<?xml version = '1.0' encoding = 'UTF-8'?>
|
|
2
|
+
<!-- *********************************************************************
|
|
3
|
+
|
|
4
|
+
verze: 3.09
|
|
5
|
+
klasifikace: Veřejný dokument
|
|
6
|
+
|
|
7
|
+
WSDL pro služby
|
|
8
|
+
1. Vytvoření/odeslání datové zprávy - CreateMessage
|
|
9
|
+
2. stažení kompletní přijaté zprávy v čitelné podobě - MessageDownload
|
|
10
|
+
3. stažení podepsané přijaté zprávy - SignedMessageDownload
|
|
11
|
+
4. stažení podepsané odeslané zprávy - SignedSentMessageDownload
|
|
12
|
+
5. vytvoření hromadné zprávy - CreateMultipleMessage
|
|
13
|
+
6. ověření zprávy - AuthenticateMessage
|
|
14
|
+
7. přepodepsání zprávy či doručenky - Re-signISDSDocument
|
|
15
|
+
|
|
16
|
+
Změny:
|
|
17
|
+
04.02.2009 verze 0.1
|
|
18
|
+
20.03.2009 verze 1.0 - formální úpravy vyhovující WS-I Basic Profile
|
|
19
|
+
08.04.2009 verze 1.2 - změna názvů WSDL, rozložení operací mezi WSDL
|
|
20
|
+
16.04.2009 verze 1.3 - přidána DummyOperation pro navazování a udržování spojení
|
|
21
|
+
03.06.2009 verze 2.0 - novela
|
|
22
|
+
01.10.2009 verze 2.5 - přidána WS CreateMultipleMessage
|
|
23
|
+
01.11.2009 verze 2.6 - komerční provoz
|
|
24
|
+
14.04.2010 verze 2.9 - přidána WS AuthenticateMessage
|
|
25
|
+
18.09.2010 verze 2.10 - změna URL v důsledku přechodu na Basic autentizaci
|
|
26
|
+
27.06.2012 verze 2.17 - přidána WS Re-signISDSDocument
|
|
27
|
+
18.09.2015 verze 2.21 - sjednocení verzí
|
|
28
|
+
14.10.2015 verze 2.22 - sjednocení verzí
|
|
29
|
+
31.01.2017 verze 2.26 -sjednocení verzí
|
|
30
|
+
21.11.2017 verze 2.27 - sjednocení verzí
|
|
31
|
+
02.09.2018 verze 2.30 - sjednocení verzí
|
|
32
|
+
04.09.2018 verze 2.31 - sjednocení verzí
|
|
33
|
+
27.07.2021 verze 2.33 - sjednocení verzí
|
|
34
|
+
25.04.2022 verze 2.35 - sjednocení verzí
|
|
35
|
+
|
|
36
|
+
31.10.2022 verze 3.03 - sjednocení verzí
|
|
37
|
+
20.10.2023 verze 3.04 - sjednocení verzí
|
|
38
|
+
09.09.2024 verze 3.06 - oprava v response u DummyOperation (nepoužívaná služba)
|
|
39
|
+
21.10.2024 verze 3.07 - sjednocení verzí
|
|
40
|
+
29.07.2025 verze 3.09 - sjednocení verzí
|
|
41
|
+
|
|
42
|
+
************************************************************************ -->
|
|
43
|
+
|
|
44
|
+
<definitions name="ISDS_dmOperations" targetNamespace="http://isds.czechpoint.cz/v20"
|
|
45
|
+
xmlns="http://schemas.xmlsoap.org/wsdl/"
|
|
46
|
+
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
47
|
+
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
|
|
48
|
+
xmlns:tns="http://isds.czechpoint.cz/v20">
|
|
49
|
+
|
|
50
|
+
<types>
|
|
51
|
+
<xs:schema targetNamespace="http://isds.czechpoint.cz/v20">
|
|
52
|
+
<xs:include schemaLocation="dmBaseTypes.xsd" />
|
|
53
|
+
</xs:schema>
|
|
54
|
+
</types>
|
|
55
|
+
|
|
56
|
+
<!-- ******************************************************************* -->
|
|
57
|
+
<message name="MessageCreateRequest">
|
|
58
|
+
<part name="parameter" element="tns:CreateMessage" />
|
|
59
|
+
</message>
|
|
60
|
+
<message name="MessageCreateResponse">
|
|
61
|
+
<part name="parameter" element="tns:CreateMessageResponse" />
|
|
62
|
+
</message>
|
|
63
|
+
|
|
64
|
+
<message name="MessageDownloadRequest">
|
|
65
|
+
<part name="parameter" element="tns:MessageDownload" />
|
|
66
|
+
</message>
|
|
67
|
+
<message name="MessageDownloadResponse">
|
|
68
|
+
<part name="parameter" element="tns:MessageDownloadResponse" />
|
|
69
|
+
</message>
|
|
70
|
+
|
|
71
|
+
<message name="SignedMessageDownloadRequest">
|
|
72
|
+
<part name="parameter" element="tns:SignedMessageDownload" />
|
|
73
|
+
</message>
|
|
74
|
+
<message name="SignedMessageDownloadResponse">
|
|
75
|
+
<part name="parameter" element="tns:SignedMessageDownloadResponse" />
|
|
76
|
+
</message>
|
|
77
|
+
|
|
78
|
+
<message name="SignedSentMessageDownloadRequest">
|
|
79
|
+
<part name="parameter" element="tns:SignedSentMessageDownload" />
|
|
80
|
+
</message>
|
|
81
|
+
<message name="SignedSentMessageDownloadResponse">
|
|
82
|
+
<part name="parameter" element="tns:SignedSentMessageDownloadResponse" />
|
|
83
|
+
</message>
|
|
84
|
+
|
|
85
|
+
<message name="DummyOperationRequest">
|
|
86
|
+
<part name="parameter" element="tns:DummyOperation" />
|
|
87
|
+
</message>
|
|
88
|
+
<message name="DummyOperationResponse">
|
|
89
|
+
<part name="parameter" element="tns:DummyOperationResponse" />
|
|
90
|
+
</message>
|
|
91
|
+
|
|
92
|
+
<message name="MultipleMessageCreateRequest">
|
|
93
|
+
<part name="parameter" element="tns:CreateMultipleMessage" />
|
|
94
|
+
</message>
|
|
95
|
+
<message name="MultipleMessageCreateResponse">
|
|
96
|
+
<part name="parameter" element="tns:CreateMultipleMessageResponse" />
|
|
97
|
+
</message>
|
|
98
|
+
|
|
99
|
+
<message name="AuthenticateMessageRequest">
|
|
100
|
+
<part name="parameter" element="tns:AuthenticateMessage" />
|
|
101
|
+
</message>
|
|
102
|
+
<message name="AuthenticateMessageResponse">
|
|
103
|
+
<part name="parameter" element="tns:AuthenticateMessageResponse" />
|
|
104
|
+
</message>
|
|
105
|
+
|
|
106
|
+
<message name="Re-signISDSDocumentRequest">
|
|
107
|
+
<part name="parameter" element="tns:Re-signISDSDocument" />
|
|
108
|
+
</message>
|
|
109
|
+
<message name="Re-signISDSDocumentResponse">
|
|
110
|
+
<part name="parameter" element="tns:Re-signISDSDocumentResponse" />
|
|
111
|
+
</message>
|
|
112
|
+
|
|
113
|
+
<!-- ******************************************************************* -->
|
|
114
|
+
<portType name="dmOperationsPortType">
|
|
115
|
+
|
|
116
|
+
<operation name="CreateMessage">
|
|
117
|
+
<input message="tns:MessageCreateRequest"/>
|
|
118
|
+
<output message="tns:MessageCreateResponse"/>
|
|
119
|
+
</operation>
|
|
120
|
+
|
|
121
|
+
<operation name="MessageDownload">
|
|
122
|
+
<input message="tns:MessageDownloadRequest"/>
|
|
123
|
+
<output message="tns:MessageDownloadResponse"/>
|
|
124
|
+
</operation>
|
|
125
|
+
|
|
126
|
+
<operation name="SignedMessageDownload">
|
|
127
|
+
<input message="tns:SignedMessageDownloadRequest"/>
|
|
128
|
+
<output message="tns:SignedMessageDownloadResponse"/>
|
|
129
|
+
</operation>
|
|
130
|
+
|
|
131
|
+
<operation name="SignedSentMessageDownload">
|
|
132
|
+
<input message="tns:SignedSentMessageDownloadRequest"/>
|
|
133
|
+
<output message="tns:SignedSentMessageDownloadResponse"/>
|
|
134
|
+
</operation>
|
|
135
|
+
|
|
136
|
+
<operation name="DummyOperation">
|
|
137
|
+
<input message="tns:DummyOperationRequest"/>
|
|
138
|
+
<output message="tns:DummyOperationResponse"/>
|
|
139
|
+
</operation>
|
|
140
|
+
|
|
141
|
+
<operation name="CreateMultipleMessage">
|
|
142
|
+
<input message="tns:MultipleMessageCreateRequest"/>
|
|
143
|
+
<output message="tns:MultipleMessageCreateResponse"/>
|
|
144
|
+
</operation>
|
|
145
|
+
|
|
146
|
+
<operation name="AuthenticateMessage">
|
|
147
|
+
<input message="tns:AuthenticateMessageRequest"/>
|
|
148
|
+
<output message="tns:AuthenticateMessageResponse"/>
|
|
149
|
+
</operation>
|
|
150
|
+
|
|
151
|
+
<operation name="Re-signISDSDocument">
|
|
152
|
+
<input message="tns:Re-signISDSDocumentRequest"/>
|
|
153
|
+
<output message="tns:Re-signISDSDocumentResponse"/>
|
|
154
|
+
</operation>
|
|
155
|
+
|
|
156
|
+
</portType>
|
|
157
|
+
|
|
158
|
+
<!-- ******************************************************************* -->
|
|
159
|
+
<binding name="dmOperationsBinding" type="tns:dmOperationsPortType">
|
|
160
|
+
|
|
161
|
+
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
|
162
|
+
<operation name="CreateMessage">
|
|
163
|
+
<soap:operation soapAction="" />
|
|
164
|
+
<input>
|
|
165
|
+
<soap:body use="literal" />
|
|
166
|
+
</input>
|
|
167
|
+
<output >
|
|
168
|
+
<soap:body use="literal" />
|
|
169
|
+
</output>
|
|
170
|
+
</operation>
|
|
171
|
+
|
|
172
|
+
<operation name="MessageDownload">
|
|
173
|
+
<soap:operation soapAction="" />
|
|
174
|
+
<input>
|
|
175
|
+
<soap:body use="literal" />
|
|
176
|
+
</input>
|
|
177
|
+
<output>
|
|
178
|
+
<soap:body use="literal" />
|
|
179
|
+
</output>
|
|
180
|
+
</operation>
|
|
181
|
+
|
|
182
|
+
<operation name="SignedMessageDownload">
|
|
183
|
+
<soap:operation soapAction="" />
|
|
184
|
+
<input>
|
|
185
|
+
<soap:body use="literal" />
|
|
186
|
+
</input>
|
|
187
|
+
<output>
|
|
188
|
+
<soap:body use="literal" />
|
|
189
|
+
</output>
|
|
190
|
+
</operation>
|
|
191
|
+
|
|
192
|
+
<operation name="SignedSentMessageDownload">
|
|
193
|
+
<soap:operation soapAction="" />
|
|
194
|
+
<input>
|
|
195
|
+
<soap:body use="literal" />
|
|
196
|
+
</input>
|
|
197
|
+
<output>
|
|
198
|
+
<soap:body use="literal" />
|
|
199
|
+
</output>
|
|
200
|
+
</operation>
|
|
201
|
+
|
|
202
|
+
<operation name="DummyOperation">
|
|
203
|
+
<soap:operation soapAction="" />
|
|
204
|
+
<input>
|
|
205
|
+
<soap:body use="literal" />
|
|
206
|
+
</input>
|
|
207
|
+
<output>
|
|
208
|
+
<soap:body use="literal" />
|
|
209
|
+
</output>
|
|
210
|
+
</operation>
|
|
211
|
+
|
|
212
|
+
<operation name="CreateMultipleMessage">
|
|
213
|
+
<soap:operation soapAction="" />
|
|
214
|
+
<input>
|
|
215
|
+
<soap:body use="literal" />
|
|
216
|
+
</input>
|
|
217
|
+
<output >
|
|
218
|
+
<soap:body use="literal" />
|
|
219
|
+
</output>
|
|
220
|
+
</operation>
|
|
221
|
+
|
|
222
|
+
<operation name="AuthenticateMessage">
|
|
223
|
+
<soap:operation soapAction="" />
|
|
224
|
+
<input>
|
|
225
|
+
<soap:body use="literal" />
|
|
226
|
+
</input>
|
|
227
|
+
<output >
|
|
228
|
+
<soap:body use="literal" />
|
|
229
|
+
</output>
|
|
230
|
+
</operation>
|
|
231
|
+
|
|
232
|
+
<operation name="Re-signISDSDocument">
|
|
233
|
+
<soap:operation soapAction="" />
|
|
234
|
+
<input>
|
|
235
|
+
<soap:body use="literal" />
|
|
236
|
+
</input>
|
|
237
|
+
<output >
|
|
238
|
+
<soap:body use="literal" />
|
|
239
|
+
</output>
|
|
240
|
+
</operation>
|
|
241
|
+
|
|
242
|
+
</binding>
|
|
243
|
+
|
|
244
|
+
<!-- ******************************************************************* -->
|
|
245
|
+
<service name="dmOperationsWebService">
|
|
246
|
+
<port name="dmOperationsPortType" binding="tns:dmOperationsBinding">
|
|
247
|
+
<soap:address location="https://ws1.mojedatovaschranka.cz/DS/dz"/>
|
|
248
|
+
</port>
|
|
249
|
+
</service>
|
|
250
|
+
|
|
251
|
+
</definitions>
|
|
252
|
+
|
package/.gitattributes
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
# Normalize text files to LF (Linux/Mac) on all platforms
|
|
2
|
-
* text=auto eol=lf
|
|
3
|
-
|
|
4
|
-
# Convert text file line endings to lf
|
|
5
|
-
*.js text diff=javascript
|
|
6
|
-
*.graphql diff=graphql
|
|
7
|
-
*.json diff=json
|
|
8
|
-
*.md diff=markdown
|
|
9
|
-
*.wsdl text
|
|
10
|
-
|
|
11
|
-
# Node.js & npm specific files
|
|
12
|
-
package.json eol=lf
|
|
13
|
-
package-lock.json eol=lf
|
|
14
|
-
yarn.lock eol=lf
|
|
15
|
-
|
|
16
|
-
vcbuild.bat text eol=crlf
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
name: Tests
|
|
2
|
-
|
|
3
|
-
# This workflow runs standard unit tests to ensure basic integrity and avoid
|
|
4
|
-
# regressions on pull-requests (and pushes)
|
|
5
|
-
|
|
6
|
-
on:
|
|
7
|
-
push:
|
|
8
|
-
branches:
|
|
9
|
-
- main # allthough master is push protected we still keep it
|
|
10
|
-
- develop
|
|
11
|
-
pull_request: # runs on all PR
|
|
12
|
-
|
|
13
|
-
jobs:
|
|
14
|
-
unittest:
|
|
15
|
-
name: unit tests
|
|
16
|
-
runs-on: ubuntu-latest
|
|
17
|
-
strategy:
|
|
18
|
-
matrix:
|
|
19
|
-
node: [18, 20, 22]
|
|
20
|
-
steps:
|
|
21
|
-
- name: Checkout ${{ matrix.node }}
|
|
22
|
-
uses: actions/Checkout@v3
|
|
23
|
-
|
|
24
|
-
- name: Setup node ${{ matrix.node }}
|
|
25
|
-
uses: actions/setup-node@v3
|
|
26
|
-
with:
|
|
27
|
-
node-version: ${{ matrix.node }}
|
|
28
|
-
|
|
29
|
-
- name: Cache dependencies ${{ matrix.node }}
|
|
30
|
-
uses: actions/cache@v3
|
|
31
|
-
with:
|
|
32
|
-
path: ~/.npm
|
|
33
|
-
key: ${{ runner.os }}-node-${{ matrix.node }}-${{ hashFiles('**/package-lock.json') }}
|
|
34
|
-
restore-keys: |
|
|
35
|
-
${{ runner.os }}-node-${{ matrix.node }}
|
|
36
|
-
- name: Install dependencies
|
|
37
|
-
run: npm install
|
|
38
|
-
- run: npm run lint
|
|
39
|
-
- run: npm run test
|
package/.nvmrc
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
22.1.0
|
package/.prettierignore
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
package.json
|
package/.prettierrc.yaml
DELETED
package/.vscode/launch.json
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
// Use IntelliSense to learn about possible attributes.
|
|
3
|
-
// Hover to view descriptions of existing attributes.
|
|
4
|
-
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
5
|
-
"version": "0.2.0",
|
|
6
|
-
"configurations": [
|
|
7
|
-
{
|
|
8
|
-
"type": "node",
|
|
9
|
-
"request": "launch",
|
|
10
|
-
"name": "Launch Program",
|
|
11
|
-
"skipFiles": ["<node_internals>/**"],
|
|
12
|
-
"program": "${workspaceFolder}/src/index.js"
|
|
13
|
-
}
|
|
14
|
-
]
|
|
15
|
-
}
|
package/.vscode/settings.json
DELETED
package/CHANGELOG.md
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
|
|
5
|
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
-
|
|
8
|
-
## [Unreleased]
|
|
9
|
-
|
|
10
|
-
### Added
|
|
11
|
-
|
|
12
|
-
- basic simple funcionality
|
|
13
|
-
- basic authentication to ISDS via username and password
|
|
14
|
-
- send data message
|
|
15
|
-
- fetch owner info from current login
|
|
16
|
-
- get password expiration info
|
|
17
|
-
- find data box via criteria
|