@itentialopensource/adapter-gogetssl 0.1.1 → 0.3.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/AUTH.md +39 -0
- package/BROKER.md +199 -0
- package/CALLS.md +476 -0
- package/CHANGELOG.md +3 -3
- package/CODE_OF_CONDUCT.md +12 -17
- package/CONTRIBUTING.md +3 -148
- package/ENHANCE.md +69 -0
- package/PROPERTIES.md +641 -0
- package/README.md +235 -576
- package/SUMMARY.md +9 -0
- package/SYSTEMINFO.md +11 -0
- package/TROUBLESHOOT.md +47 -0
- package/adapter.js +367 -266
- package/adapterBase.js +843 -419
- package/changelogs/CHANGELOG.md +16 -0
- package/entities/.generic/action.json +105 -0
- package/entities/.generic/schema.json +6 -1
- package/error.json +6 -0
- package/metadata.json +49 -0
- package/package.json +24 -24
- package/pronghorn.json +680 -100
- package/propertiesDecorators.json +14 -0
- package/propertiesSchema.json +830 -9
- package/refs?service=git-upload-pack +0 -0
- package/report/adapter-openapi.yaml +20538 -0
- package/report/adapterInfo.json +10 -0
- package/report/updateReport1653710772448.json +120 -0
- package/report/updateReport1691508724487.json +120 -0
- package/report/updateReport1692203182238.json +120 -0
- package/report/updateReport1694468184582.json +120 -0
- package/report/updateReport1698422557075.json +120 -0
- package/sampleProperties.json +153 -3
- package/test/integration/adapterTestBasicGet.js +3 -5
- package/test/integration/adapterTestConnectivity.js +91 -42
- package/test/integration/adapterTestIntegration.js +166 -117
- package/test/unit/adapterBaseTestUnit.js +388 -308
- package/test/unit/adapterTestUnit.js +659 -418
- package/utils/adapterInfo.js +206 -0
- package/utils/addAuth.js +1 -1
- package/utils/artifactize.js +1 -1
- package/utils/checkMigrate.js +1 -1
- package/utils/entitiesToDB.js +12 -57
- package/utils/findPath.js +1 -1
- package/utils/methodDocumentor.js +273 -0
- package/utils/modify.js +13 -15
- package/utils/packModificationScript.js +1 -1
- package/utils/patches2bundledDeps.js +90 -0
- package/utils/pre-commit.sh +5 -0
- package/utils/taskMover.js +309 -0
- package/utils/tbScript.js +123 -53
- package/utils/tbUtils.js +92 -48
- package/utils/testRunner.js +17 -17
- package/utils/troubleshootingAdapter.js +9 -6
- package/workflows/README.md +0 -3
- /package/report/{gogetssl_apimatic_openapi3.json → adapter-openapi.json} +0 -0
package/CALLS.md
ADDED
|
@@ -0,0 +1,476 @@
|
|
|
1
|
+
## Using this Adapter
|
|
2
|
+
|
|
3
|
+
The `adapter.js` file contains the calls the adapter makes available to the rest of the Itential Platform. The API detailed for these calls should be available through JSDOC. The following is a brief summary of the calls.
|
|
4
|
+
|
|
5
|
+
### Generic Adapter Calls
|
|
6
|
+
|
|
7
|
+
These are adapter methods that IAP or you might use. There are some other methods not shown here that might be used for internal adapter functionality.
|
|
8
|
+
|
|
9
|
+
<table border="1" class="bordered-table">
|
|
10
|
+
<tr>
|
|
11
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
|
|
12
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
|
|
13
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
14
|
+
</tr>
|
|
15
|
+
<tr>
|
|
16
|
+
<td style="padding:15px">connect()</td>
|
|
17
|
+
<td style="padding:15px">This call is run when the Adapter is first loaded by he Itential Platform. It validates the properties have been provided correctly.</td>
|
|
18
|
+
<td style="padding:15px">No</td>
|
|
19
|
+
</tr>
|
|
20
|
+
<tr>
|
|
21
|
+
<td style="padding:15px">healthCheck(callback)</td>
|
|
22
|
+
<td style="padding:15px">This call ensures that the adapter can communicate with Adapter for GoGetSSL. The actual call that is used is defined in the adapter properties and .system entities action.json file.</td>
|
|
23
|
+
<td style="padding:15px">No</td>
|
|
24
|
+
</tr>
|
|
25
|
+
<tr>
|
|
26
|
+
<td style="padding:15px">refreshProperties(properties)</td>
|
|
27
|
+
<td style="padding:15px">This call provides the adapter the ability to accept property changes without having to restart the adapter.</td>
|
|
28
|
+
<td style="padding:15px">No</td>
|
|
29
|
+
</tr>
|
|
30
|
+
<tr>
|
|
31
|
+
<td style="padding:15px">encryptProperty(property, technique, callback)</td>
|
|
32
|
+
<td style="padding:15px">This call will take the provided property and technique, and return the property encrypted with the technique. This allows the property to be used in the adapterProps section for the credential password so that the password does not have to be in clear text. The adapter will decrypt the property as needed for communications with Adapter for GoGetSSL.</td>
|
|
33
|
+
<td style="padding:15px">No</td>
|
|
34
|
+
</tr>
|
|
35
|
+
<tr>
|
|
36
|
+
<td style="padding:15px">iapUpdateAdapterConfiguration(configFile, changes, entity, type, action, callback)</td>
|
|
37
|
+
<td style="padding:15px">This call provides the ability to update the adapter configuration from IAP - includes actions, schema, mockdata and other configurations.</td>
|
|
38
|
+
<td style="padding:15px">Yes</td>
|
|
39
|
+
</tr>
|
|
40
|
+
<tr>
|
|
41
|
+
<td style="padding:15px">iapSuspendAdapter(mode, callback)</td>
|
|
42
|
+
<td style="padding:15px">This call provides the ability to suspend the adapter and either have requests rejected or put into a queue to be processed after the adapter is resumed.</td>
|
|
43
|
+
<td style="padding:15px">Yes</td>
|
|
44
|
+
</tr>
|
|
45
|
+
<tr>
|
|
46
|
+
<td style="padding:15px">iapUnsuspendAdapter(callback)</td>
|
|
47
|
+
<td style="padding:15px">This call provides the ability to resume a suspended adapter. Any requests in queue will be processed before new requests.</td>
|
|
48
|
+
<td style="padding:15px">Yes</td>
|
|
49
|
+
</tr>
|
|
50
|
+
<tr>
|
|
51
|
+
<td style="padding:15px">iapGetAdapterQueue(callback)</td>
|
|
52
|
+
<td style="padding:15px">This call will return the requests that are waiting in the queue if throttling is enabled.</td>
|
|
53
|
+
<td style="padding:15px">Yes</td>
|
|
54
|
+
</tr>
|
|
55
|
+
<tr>
|
|
56
|
+
<td style="padding:15px">iapFindAdapterPath(apiPath, callback)</td>
|
|
57
|
+
<td style="padding:15px">This call provides the ability to see if a particular API path is supported by the adapter.</td>
|
|
58
|
+
<td style="padding:15px">Yes</td>
|
|
59
|
+
</tr>
|
|
60
|
+
<tr>
|
|
61
|
+
<td style="padding:15px">iapTroubleshootAdapter(props, persistFlag, adapter, callback)</td>
|
|
62
|
+
<td style="padding:15px">This call can be used to check on the performance of the adapter - it checks connectivity, healthcheck and basic get calls.</td>
|
|
63
|
+
<td style="padding:15px">Yes</td>
|
|
64
|
+
</tr>
|
|
65
|
+
<tr>
|
|
66
|
+
<td style="padding:15px">iapRunAdapterHealthcheck(adapter, callback)</td>
|
|
67
|
+
<td style="padding:15px">This call will return the results of a healthcheck.</td>
|
|
68
|
+
<td style="padding:15px">Yes</td>
|
|
69
|
+
</tr>
|
|
70
|
+
<tr>
|
|
71
|
+
<td style="padding:15px">iapRunAdapterConnectivity(callback)</td>
|
|
72
|
+
<td style="padding:15px">This call will return the results of a connectivity check.</td>
|
|
73
|
+
<td style="padding:15px">Yes</td>
|
|
74
|
+
</tr>
|
|
75
|
+
<tr>
|
|
76
|
+
<td style="padding:15px">iapRunAdapterBasicGet(callback)</td>
|
|
77
|
+
<td style="padding:15px">This call will return the results of running basic get API calls.</td>
|
|
78
|
+
<td style="padding:15px">Yes</td>
|
|
79
|
+
</tr>
|
|
80
|
+
<tr>
|
|
81
|
+
<td style="padding:15px">iapMoveAdapterEntitiesToDB(callback)</td>
|
|
82
|
+
<td style="padding:15px">This call will push the adapter configuration from the entities directory into the Adapter or IAP Database.</td>
|
|
83
|
+
<td style="padding:15px">Yes</td>
|
|
84
|
+
</tr>
|
|
85
|
+
<tr>
|
|
86
|
+
<td style="padding:15px">iapDeactivateTasks(tasks, callback)</td>
|
|
87
|
+
<td style="padding:15px">This call provides the ability to remove tasks from the adapter.</td>
|
|
88
|
+
<td style="padding:15px">Yes</td>
|
|
89
|
+
</tr>
|
|
90
|
+
<tr>
|
|
91
|
+
<td style="padding:15px">iapActivateTasks(tasks, callback)</td>
|
|
92
|
+
<td style="padding:15px">This call provides the ability to add deactivated tasks back into the adapter.</td>
|
|
93
|
+
<td style="padding:15px">Yes</td>
|
|
94
|
+
</tr>
|
|
95
|
+
<tr>
|
|
96
|
+
<td style="padding:15px">iapExpandedGenericAdapterRequest(metadata, uriPath, restMethod, pathVars, queryData, requestBody, addlHeaders, callback)</td>
|
|
97
|
+
<td style="padding:15px">This is an expanded Generic Call. The metadata object allows us to provide many new capabilities within the generic request.</td>
|
|
98
|
+
<td style="padding:15px">Yes</td>
|
|
99
|
+
</tr>
|
|
100
|
+
<tr>
|
|
101
|
+
<td style="padding:15px">genericAdapterRequest(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)</td>
|
|
102
|
+
<td style="padding:15px">This call allows you to provide the path to have the adapter call. It is an easy way to incorporate paths that have not been built into the adapter yet.</td>
|
|
103
|
+
<td style="padding:15px">Yes</td>
|
|
104
|
+
</tr>
|
|
105
|
+
<tr>
|
|
106
|
+
<td style="padding:15px">genericAdapterRequestNoBasePath(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)</td>
|
|
107
|
+
<td style="padding:15px">This call is the same as the genericAdapterRequest only it does not add a base_path or version to the call.</td>
|
|
108
|
+
<td style="padding:15px">Yes</td>
|
|
109
|
+
</tr>
|
|
110
|
+
<tr>
|
|
111
|
+
<td style="padding:15px">iapRunAdapterLint(callback)</td>
|
|
112
|
+
<td style="padding:15px">Runs lint on the addapter and provides the information back.</td>
|
|
113
|
+
<td style="padding:15px">Yes</td>
|
|
114
|
+
</tr>
|
|
115
|
+
<tr>
|
|
116
|
+
<td style="padding:15px">iapRunAdapterTests(callback)</td>
|
|
117
|
+
<td style="padding:15px">Runs baseunit and unit tests on the adapter and provides the information back.</td>
|
|
118
|
+
<td style="padding:15px">Yes</td>
|
|
119
|
+
</tr>
|
|
120
|
+
<tr>
|
|
121
|
+
<td style="padding:15px">iapGetAdapterInventory(callback)</td>
|
|
122
|
+
<td style="padding:15px">This call provides some inventory related information about the adapter.</td>
|
|
123
|
+
<td style="padding:15px">Yes</td>
|
|
124
|
+
</tr>
|
|
125
|
+
</table>
|
|
126
|
+
<br>
|
|
127
|
+
|
|
128
|
+
### Adapter Cache Calls
|
|
129
|
+
|
|
130
|
+
These are adapter methods that are used for adapter caching. If configured, the adapter will cache based on the interval provided. However, you can force a population of the cache manually as well.
|
|
131
|
+
|
|
132
|
+
<table border="1" class="bordered-table">
|
|
133
|
+
<tr>
|
|
134
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
|
|
135
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
|
|
136
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
137
|
+
</tr>
|
|
138
|
+
<tr>
|
|
139
|
+
<td style="padding:15px">iapPopulateEntityCache(entityTypes, callback)</td>
|
|
140
|
+
<td style="padding:15px">This call populates the adapter cache.</td>
|
|
141
|
+
<td style="padding:15px">Yes</td>
|
|
142
|
+
</tr>
|
|
143
|
+
<tr>
|
|
144
|
+
<td style="padding:15px">iapRetrieveEntitiesCache(entityType, options, callback)</td>
|
|
145
|
+
<td style="padding:15px">This call retrieves the specific items from the adapter cache.</td>
|
|
146
|
+
<td style="padding:15px">Yes</td>
|
|
147
|
+
</tr>
|
|
148
|
+
</table>
|
|
149
|
+
<br>
|
|
150
|
+
|
|
151
|
+
### Adapter Broker Calls
|
|
152
|
+
|
|
153
|
+
These are adapter methods that are used to integrate to IAP Brokers. This adapter currently supports the following broker calls.
|
|
154
|
+
|
|
155
|
+
<table border="1" class="bordered-table">
|
|
156
|
+
<tr>
|
|
157
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
|
|
158
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
|
|
159
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
160
|
+
</tr>
|
|
161
|
+
<tr>
|
|
162
|
+
<td style="padding:15px">hasEntities(entityType, entityList, callback)</td>
|
|
163
|
+
<td style="padding:15px">This call is utilized by the IAP Device Broker to determine if the adapter has a specific entity and item of the entity.</td>
|
|
164
|
+
<td style="padding:15px">No</td>
|
|
165
|
+
</tr>
|
|
166
|
+
<tr>
|
|
167
|
+
<td style="padding:15px">getDevice(deviceName, callback)</td>
|
|
168
|
+
<td style="padding:15px">This call returns the details of the requested device.</td>
|
|
169
|
+
<td style="padding:15px">No</td>
|
|
170
|
+
</tr>
|
|
171
|
+
<tr>
|
|
172
|
+
<td style="padding:15px">getDevicesFiltered(options, callback)</td>
|
|
173
|
+
<td style="padding:15px">This call returns the list of devices that match the criteria provided in the options filter.</td>
|
|
174
|
+
<td style="padding:15px">No</td>
|
|
175
|
+
</tr>
|
|
176
|
+
<tr>
|
|
177
|
+
<td style="padding:15px">isAlive(deviceName, callback)</td>
|
|
178
|
+
<td style="padding:15px">This call returns whether the device status is active</td>
|
|
179
|
+
<td style="padding:15px">No</td>
|
|
180
|
+
</tr>
|
|
181
|
+
<tr>
|
|
182
|
+
<td style="padding:15px">getConfig(deviceName, format, callback)</td>
|
|
183
|
+
<td style="padding:15px">This call returns the configuration for the selected device.</td>
|
|
184
|
+
<td style="padding:15px">No</td>
|
|
185
|
+
</tr>
|
|
186
|
+
<tr>
|
|
187
|
+
<td style="padding:15px">iapGetDeviceCount(callback)</td>
|
|
188
|
+
<td style="padding:15px">This call returns the count of devices.</td>
|
|
189
|
+
<td style="padding:15px">No</td>
|
|
190
|
+
</tr>
|
|
191
|
+
</table>
|
|
192
|
+
<br>
|
|
193
|
+
|
|
194
|
+
### Specific Adapter Calls
|
|
195
|
+
|
|
196
|
+
Specific adapter calls are built based on the API of the GoGetSSL. The Adapter Builder creates the proper method comments for generating JS-DOC for the adapter. This is the best way to get information on the calls.
|
|
197
|
+
|
|
198
|
+
<table border="1" class="bordered-table">
|
|
199
|
+
<tr>
|
|
200
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
|
|
201
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
|
|
202
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Path</span></th>
|
|
203
|
+
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
|
|
204
|
+
</tr>
|
|
205
|
+
<tr>
|
|
206
|
+
<td style="padding:15px">getAllProducts(authKey, callback)</td>
|
|
207
|
+
<td style="padding:15px">getAllProducts</td>
|
|
208
|
+
<td style="padding:15px">{base_path}/{version}/products?{query}</td>
|
|
209
|
+
<td style="padding:15px">Yes</td>
|
|
210
|
+
</tr>
|
|
211
|
+
<tr>
|
|
212
|
+
<td style="padding:15px">getAllProductPrices(authKey, callback)</td>
|
|
213
|
+
<td style="padding:15px">getAllProductPrices</td>
|
|
214
|
+
<td style="padding:15px">{base_path}/{version}/products/all_prices?{query}</td>
|
|
215
|
+
<td style="padding:15px">Yes</td>
|
|
216
|
+
</tr>
|
|
217
|
+
<tr>
|
|
218
|
+
<td style="padding:15px">getProductDetails(authKey, productId, callback)</td>
|
|
219
|
+
<td style="padding:15px">getProductDetails</td>
|
|
220
|
+
<td style="padding:15px">{base_path}/{version}/products/details/{pathv1}?{query}</td>
|
|
221
|
+
<td style="padding:15px">Yes</td>
|
|
222
|
+
</tr>
|
|
223
|
+
<tr>
|
|
224
|
+
<td style="padding:15px">getProductPrice(authKey, productId, callback)</td>
|
|
225
|
+
<td style="padding:15px">getProductPrice</td>
|
|
226
|
+
<td style="padding:15px">{base_path}/{version}/products/price/{pathv1}?{query}</td>
|
|
227
|
+
<td style="padding:15px">Yes</td>
|
|
228
|
+
</tr>
|
|
229
|
+
<tr>
|
|
230
|
+
<td style="padding:15px">getProductAgreement(authKey, productId, callback)</td>
|
|
231
|
+
<td style="padding:15px">getProductAgreement</td>
|
|
232
|
+
<td style="padding:15px">{base_path}/{version}/products/agreement/{pathv1}?{query}</td>
|
|
233
|
+
<td style="padding:15px">Yes</td>
|
|
234
|
+
</tr>
|
|
235
|
+
<tr>
|
|
236
|
+
<td style="padding:15px">getSslProducts(authKey, callback)</td>
|
|
237
|
+
<td style="padding:15px">getSslProducts</td>
|
|
238
|
+
<td style="padding:15px">{base_path}/{version}/products/ssl?{query}</td>
|
|
239
|
+
<td style="padding:15px">Yes</td>
|
|
240
|
+
</tr>
|
|
241
|
+
<tr>
|
|
242
|
+
<td style="padding:15px">getSslProduct(authKey, productId, callback)</td>
|
|
243
|
+
<td style="padding:15px">getSslProduct</td>
|
|
244
|
+
<td style="padding:15px">{base_path}/{version}/products/ssl/{pathv1}?{query}</td>
|
|
245
|
+
<td style="padding:15px">Yes</td>
|
|
246
|
+
</tr>
|
|
247
|
+
<tr>
|
|
248
|
+
<td style="padding:15px">decodeCSR(csr, callback)</td>
|
|
249
|
+
<td style="padding:15px">decodeCSR</td>
|
|
250
|
+
<td style="padding:15px">{base_path}/{version}/tools/csr/decode?{query}</td>
|
|
251
|
+
<td style="padding:15px">Yes</td>
|
|
252
|
+
</tr>
|
|
253
|
+
<tr>
|
|
254
|
+
<td style="padding:15px">generateCSR(csrCommonname, csrOrganization, csrDepartment, csrCity, csrState, csrCountry, csrEmail, callback)</td>
|
|
255
|
+
<td style="padding:15px">generateCSR</td>
|
|
256
|
+
<td style="padding:15px">{base_path}/{version}/tools/csr/generate?{query}</td>
|
|
257
|
+
<td style="padding:15px">Yes</td>
|
|
258
|
+
</tr>
|
|
259
|
+
<tr>
|
|
260
|
+
<td style="padding:15px">validateCSR(csr, callback)</td>
|
|
261
|
+
<td style="padding:15px">validateCSR</td>
|
|
262
|
+
<td style="padding:15px">{base_path}/{version}/tools/csr/validate?{query}</td>
|
|
263
|
+
<td style="padding:15px">Yes</td>
|
|
264
|
+
</tr>
|
|
265
|
+
<tr>
|
|
266
|
+
<td style="padding:15px">getDomainAlternative(authKey, csr, callback)</td>
|
|
267
|
+
<td style="padding:15px">getDomainAlternative</td>
|
|
268
|
+
<td style="padding:15px">{base_path}/{version}/tools/domain/alternative?{query}</td>
|
|
269
|
+
<td style="padding:15px">Yes</td>
|
|
270
|
+
</tr>
|
|
271
|
+
<tr>
|
|
272
|
+
<td style="padding:15px">getDomainEmails(authKey, domain, callback)</td>
|
|
273
|
+
<td style="padding:15px">getDomainEmails</td>
|
|
274
|
+
<td style="padding:15px">{base_path}/{version}/tools/domain/emails?{query}</td>
|
|
275
|
+
<td style="padding:15px">Yes</td>
|
|
276
|
+
</tr>
|
|
277
|
+
<tr>
|
|
278
|
+
<td style="padding:15px">getDomainEmailsForGeotrust(authKey, domain, callback)</td>
|
|
279
|
+
<td style="padding:15px">getDomainEmailsForGeotrust</td>
|
|
280
|
+
<td style="padding:15px">{base_path}/{version}/tools/domain/emails/geotrust?{query}</td>
|
|
281
|
+
<td style="padding:15px">Yes</td>
|
|
282
|
+
</tr>
|
|
283
|
+
<tr>
|
|
284
|
+
<td style="padding:15px">domainGetFromWhois(authKey, domain, callback)</td>
|
|
285
|
+
<td style="padding:15px">domainGetFromWhois</td>
|
|
286
|
+
<td style="padding:15px">{base_path}/{version}/tools/domain_get_from_whois?{query}</td>
|
|
287
|
+
<td style="padding:15px">Yes</td>
|
|
288
|
+
</tr>
|
|
289
|
+
<tr>
|
|
290
|
+
<td style="padding:15px">getWebServers(authKey, supplierId, callback)</td>
|
|
291
|
+
<td style="padding:15px">getWebServers</td>
|
|
292
|
+
<td style="padding:15px">{base_path}/{version}/tools/webservers/{pathv1}?{query}</td>
|
|
293
|
+
<td style="padding:15px">Yes</td>
|
|
294
|
+
</tr>
|
|
295
|
+
<tr>
|
|
296
|
+
<td style="padding:15px">getAccountDetails(authKey, callback)</td>
|
|
297
|
+
<td style="padding:15px">getAccountDetails</td>
|
|
298
|
+
<td style="padding:15px">{base_path}/{version}/account?{query}</td>
|
|
299
|
+
<td style="padding:15px">Yes</td>
|
|
300
|
+
</tr>
|
|
301
|
+
<tr>
|
|
302
|
+
<td style="padding:15px">getAccountBalance(authKey, callback)</td>
|
|
303
|
+
<td style="padding:15px">getAccountBalance</td>
|
|
304
|
+
<td style="padding:15px">{base_path}/{version}/account/balance?{query}</td>
|
|
305
|
+
<td style="padding:15px">Yes</td>
|
|
306
|
+
</tr>
|
|
307
|
+
<tr>
|
|
308
|
+
<td style="padding:15px">createNewLEI(authKey, test, productId, legalName, lastName, isLevel2DataAvailable, incorporationDate, legalState, legalPostal, legalfirstAddressLine, legalCountry, legalCity, multiYearSupport, callback)</td>
|
|
309
|
+
<td style="padding:15px">createNewLEI</td>
|
|
310
|
+
<td style="padding:15px">{base_path}/{version}/orders/lei/create?{query}</td>
|
|
311
|
+
<td style="padding:15px">Yes</td>
|
|
312
|
+
</tr>
|
|
313
|
+
<tr>
|
|
314
|
+
<td style="padding:15px">getLEIJurisdictions(authKey, callback)</td>
|
|
315
|
+
<td style="padding:15px">getLEIJurisdictions</td>
|
|
316
|
+
<td style="padding:15px">{base_path}/{version}/lei/jurisdictions?{query}</td>
|
|
317
|
+
<td style="padding:15px">Yes</td>
|
|
318
|
+
</tr>
|
|
319
|
+
<tr>
|
|
320
|
+
<td style="padding:15px">confirmLEIDataQuality(authKey, orderId, confirm, callback)</td>
|
|
321
|
+
<td style="padding:15px">confirmLEIDataQuality</td>
|
|
322
|
+
<td style="padding:15px">{base_path}/{version}/lei/confirm/{pathv1}?{query}</td>
|
|
323
|
+
<td style="padding:15px">Yes</td>
|
|
324
|
+
</tr>
|
|
325
|
+
<tr>
|
|
326
|
+
<td style="padding:15px">getLeiStatus(authKey, orderId, callback)</td>
|
|
327
|
+
<td style="padding:15px">getLeiStatus</td>
|
|
328
|
+
<td style="padding:15px">{base_path}/{version}/lei/status/{pathv1}?{query}</td>
|
|
329
|
+
<td style="padding:15px">Yes</td>
|
|
330
|
+
</tr>
|
|
331
|
+
<tr>
|
|
332
|
+
<td style="padding:15px">renewLEI(authKey, orderId, isLevel1DataSame, firstName, lastName, callback)</td>
|
|
333
|
+
<td style="padding:15px">Renew LEI</td>
|
|
334
|
+
<td style="padding:15px">{base_path}/{version}/orders/lei/renew/{pathv1}?{query}</td>
|
|
335
|
+
<td style="padding:15px">Yes</td>
|
|
336
|
+
</tr>
|
|
337
|
+
<tr>
|
|
338
|
+
<td style="padding:15px">leiLoolup(authKey, query, callback)</td>
|
|
339
|
+
<td style="padding:15px">leiLoolup</td>
|
|
340
|
+
<td style="padding:15px">{base_path}/{version}/lei/lookup?{query}</td>
|
|
341
|
+
<td style="padding:15px">Yes</td>
|
|
342
|
+
</tr>
|
|
343
|
+
<tr>
|
|
344
|
+
<td style="padding:15px">addSSLOrder(authKey, productId, csr, serverCount, period, webserverType, adminFirstname, adminLastname, adminPhone, adminTitle, adminEmail, adminCity, adminCountry, adminPostalcode, dcvMethod, techFirstname, techLastname, techPhone, techTitle, techEmail, techAddressline1, adminAddressline1, callback)</td>
|
|
345
|
+
<td style="padding:15px">addSSLOrder</td>
|
|
346
|
+
<td style="padding:15px">{base_path}/{version}/orders/add_ssl_order?{query}</td>
|
|
347
|
+
<td style="padding:15px">Yes</td>
|
|
348
|
+
</tr>
|
|
349
|
+
<tr>
|
|
350
|
+
<td style="padding:15px">reissueSSLOrder(authKey, orderId, webserverType, csr, dcvMethod, dnsNames, approverEmails, approverEmail, signatureHash, uniqueCode, callback)</td>
|
|
351
|
+
<td style="padding:15px">reissueSSLOrder</td>
|
|
352
|
+
<td style="padding:15px">{base_path}/{version}/orders/ssl/reissue/{pathv1}?{query}</td>
|
|
353
|
+
<td style="padding:15px">Yes</td>
|
|
354
|
+
</tr>
|
|
355
|
+
<tr>
|
|
356
|
+
<td style="padding:15px">addSSLRenewOrder(authKey, productId, csr, serverCount, period, approverEmail, webserverType, adminFirstname, adminLastname, adminPhone, adminTitle, adminEmail, adminCity, adminCountry, adminOrganization, dcvMethod, techFirstname, techLastname, techPhone, techTitle, techEmail, techAddressline1, adminAddressline1, techOrganization, techCity, techCountry, orgDivision, orgAddressline1, orgCity, orgCountry, orgPhone, orgPostalcode, orgRegion, approverEmails, dnsNames, signatureHash, test, callback)</td>
|
|
357
|
+
<td style="padding:15px">addSSLRenewOrder</td>
|
|
358
|
+
<td style="padding:15px">{base_path}/{version}/orders/add_ssl_renew_order?{query}</td>
|
|
359
|
+
<td style="padding:15px">Yes</td>
|
|
360
|
+
</tr>
|
|
361
|
+
<tr>
|
|
362
|
+
<td style="padding:15px">addSSLSANOrder(authKey, orderId, count, wildcardSanCount, singleSanCount, callback)</td>
|
|
363
|
+
<td style="padding:15px">addSSLSANOrder</td>
|
|
364
|
+
<td style="padding:15px">{base_path}/{version}/orders/add_ssl_san_order?{query}</td>
|
|
365
|
+
<td style="padding:15px">Yes</td>
|
|
366
|
+
</tr>
|
|
367
|
+
<tr>
|
|
368
|
+
<td style="padding:15px">cancelOrder(authKey, orderId, reason, callback)</td>
|
|
369
|
+
<td style="padding:15px">cancelOrder</td>
|
|
370
|
+
<td style="padding:15px">{base_path}/{version}/orders/cancel_ssl_order?{query}</td>
|
|
371
|
+
<td style="padding:15px">Yes</td>
|
|
372
|
+
</tr>
|
|
373
|
+
<tr>
|
|
374
|
+
<td style="padding:15px">getOrdersStatuses(authKey, cids, callback)</td>
|
|
375
|
+
<td style="padding:15px">getOrdersStatuses</td>
|
|
376
|
+
<td style="padding:15px">{base_path}/{version}/orders/statuses?{query}</td>
|
|
377
|
+
<td style="padding:15px">Yes</td>
|
|
378
|
+
</tr>
|
|
379
|
+
<tr>
|
|
380
|
+
<td style="padding:15px">getOrderStatus(authKey, orderId, callback)</td>
|
|
381
|
+
<td style="padding:15px">getOrderStatus</td>
|
|
382
|
+
<td style="padding:15px">{base_path}/{version}/orders/status/{pathv1}?{query}</td>
|
|
383
|
+
<td style="padding:15px">Yes</td>
|
|
384
|
+
</tr>
|
|
385
|
+
<tr>
|
|
386
|
+
<td style="padding:15px">recheckCAA(authKey, orderId, callback)</td>
|
|
387
|
+
<td style="padding:15px">recheck CAA</td>
|
|
388
|
+
<td style="padding:15px">{base_path}/{version}/orders/ssl/recheck-caa/{pathv1}?{query}</td>
|
|
389
|
+
<td style="padding:15px">Yes</td>
|
|
390
|
+
</tr>
|
|
391
|
+
<tr>
|
|
392
|
+
<td style="padding:15px">getUnpaidOrders(authKey, callback)</td>
|
|
393
|
+
<td style="padding:15px">getUnpaidOrders</td>
|
|
394
|
+
<td style="padding:15px">{base_path}/{version}/orders/list/unpaid?{query}</td>
|
|
395
|
+
<td style="padding:15px">Yes</td>
|
|
396
|
+
</tr>
|
|
397
|
+
<tr>
|
|
398
|
+
<td style="padding:15px">getAllSSLOrders(authKey, limit, offset, callback)</td>
|
|
399
|
+
<td style="padding:15px">getAllSSLOrders</td>
|
|
400
|
+
<td style="padding:15px">{base_path}/{version}/orders/ssl/all?{query}</td>
|
|
401
|
+
<td style="padding:15px">Yes</td>
|
|
402
|
+
</tr>
|
|
403
|
+
<tr>
|
|
404
|
+
<td style="padding:15px">comodoClaimFreeEV(authKey, orderId, callback)</td>
|
|
405
|
+
<td style="padding:15px">comodoClaimFreeEV</td>
|
|
406
|
+
<td style="padding:15px">{base_path}/{version}/orders/ssl/comodo_claim_free_ev/{pathv1}?{query}</td>
|
|
407
|
+
<td style="padding:15px">Yes</td>
|
|
408
|
+
</tr>
|
|
409
|
+
<tr>
|
|
410
|
+
<td style="padding:15px">getTotalOrders(authKey, callback)</td>
|
|
411
|
+
<td style="padding:15px">getTotalOrders</td>
|
|
412
|
+
<td style="padding:15px">{base_path}/{version}/account/total_orders?{query}</td>
|
|
413
|
+
<td style="padding:15px">Yes</td>
|
|
414
|
+
</tr>
|
|
415
|
+
<tr>
|
|
416
|
+
<td style="padding:15px">changeDomainsValidationMethod(authKey, orderId, newMethods, domains, callback)</td>
|
|
417
|
+
<td style="padding:15px">changeDomainsValidationMethod</td>
|
|
418
|
+
<td style="padding:15px">{base_path}/{version}/orders/ssl/change_domains_validation_method/{pathv1}?{query}</td>
|
|
419
|
+
<td style="padding:15px">Yes</td>
|
|
420
|
+
</tr>
|
|
421
|
+
<tr>
|
|
422
|
+
<td style="padding:15px">changeValidationMethod(authKey, orderId, domain, newMethod, callback)</td>
|
|
423
|
+
<td style="padding:15px">changeValidationMethod</td>
|
|
424
|
+
<td style="padding:15px">{base_path}/{version}/orders/ssl/change_validation_method/{pathv1}?{query}</td>
|
|
425
|
+
<td style="padding:15px">Yes</td>
|
|
426
|
+
</tr>
|
|
427
|
+
<tr>
|
|
428
|
+
<td style="padding:15px">changeValidationEmail(authKey, orderId, approverEmail, callback)</td>
|
|
429
|
+
<td style="padding:15px">changeValidationEmail</td>
|
|
430
|
+
<td style="padding:15px">{base_path}/{version}/orders/ssl/change_validation_email/{pathv1}?{query}</td>
|
|
431
|
+
<td style="padding:15px">Yes</td>
|
|
432
|
+
</tr>
|
|
433
|
+
<tr>
|
|
434
|
+
<td style="padding:15px">resendValidationEmail(authKey, orderId, callback)</td>
|
|
435
|
+
<td style="padding:15px">resendValidationEmail</td>
|
|
436
|
+
<td style="padding:15px">{base_path}/{version}/orders/ssl/resend_validation_email/{pathv1}?{query}</td>
|
|
437
|
+
<td style="padding:15px">Yes</td>
|
|
438
|
+
</tr>
|
|
439
|
+
<tr>
|
|
440
|
+
<td style="padding:15px">changeDcv(authKey, orderId, domainName, newMethod, callback)</td>
|
|
441
|
+
<td style="padding:15px">changeDcv</td>
|
|
442
|
+
<td style="padding:15px">{base_path}/{version}/orders/ssl/change_dcv/{pathv1}?{query}</td>
|
|
443
|
+
<td style="padding:15px">Yes</td>
|
|
444
|
+
</tr>
|
|
445
|
+
<tr>
|
|
446
|
+
<td style="padding:15px">revalidate(authKey, orderId, callback)</td>
|
|
447
|
+
<td style="padding:15px">revalidate</td>
|
|
448
|
+
<td style="padding:15px">{base_path}/{version}/orders/ssl/revalidate/{pathv1}?{query}</td>
|
|
449
|
+
<td style="padding:15px">Yes</td>
|
|
450
|
+
</tr>
|
|
451
|
+
<tr>
|
|
452
|
+
<td style="padding:15px">resend(authKey, orderId, domain, callback)</td>
|
|
453
|
+
<td style="padding:15px">resend</td>
|
|
454
|
+
<td style="padding:15px">{base_path}/{version}/orders/ssl/resend/{pathv1}?{query}</td>
|
|
455
|
+
<td style="padding:15px">Yes</td>
|
|
456
|
+
</tr>
|
|
457
|
+
<tr>
|
|
458
|
+
<td style="padding:15px">getAllInvoices(authKey, callback)</td>
|
|
459
|
+
<td style="padding:15px">getAllInvoices</td>
|
|
460
|
+
<td style="padding:15px">{base_path}/{version}/account/invoices?{query}</td>
|
|
461
|
+
<td style="padding:15px">Yes</td>
|
|
462
|
+
</tr>
|
|
463
|
+
<tr>
|
|
464
|
+
<td style="padding:15px">getUnpaidInvoices(authKey, callback)</td>
|
|
465
|
+
<td style="padding:15px">getUnpaidInvoices</td>
|
|
466
|
+
<td style="padding:15px">{base_path}/{version}/account/invoices/unpaid?{query}</td>
|
|
467
|
+
<td style="padding:15px">Yes</td>
|
|
468
|
+
</tr>
|
|
469
|
+
<tr>
|
|
470
|
+
<td style="padding:15px">getOrderInvoice(authKey, orderId, callback)</td>
|
|
471
|
+
<td style="padding:15px">getOrderInvoice</td>
|
|
472
|
+
<td style="padding:15px">{base_path}/{version}/orders/invoice/{pathv1}?{query}</td>
|
|
473
|
+
<td style="padding:15px">Yes</td>
|
|
474
|
+
</tr>
|
|
475
|
+
</table>
|
|
476
|
+
<br>
|
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
|
|
2
|
-
## 0.
|
|
2
|
+
## 0.3.0 [12-27-2023]
|
|
3
3
|
|
|
4
|
-
*
|
|
4
|
+
* Adapter Engine has been updated and the changes are being migrated to the adapter
|
|
5
5
|
|
|
6
|
-
See
|
|
6
|
+
See merge request itentialopensource/adapters/security/adapter-gogetssl!2
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
package/CODE_OF_CONDUCT.md
CHANGED
|
@@ -8,19 +8,19 @@ In the interest of fostering an open and welcoming environment, we as contributo
|
|
|
8
8
|
|
|
9
9
|
Examples of behavior that contributes to creating a positive environment include:
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
11
|
+
- Using welcoming and inclusive language
|
|
12
|
+
- Being respectful of differing viewpoints and experiences
|
|
13
|
+
- Gracefully accepting constructive criticism
|
|
14
|
+
- Focusing on what is best for the community
|
|
15
|
+
- Showing empathy towards other community members
|
|
16
16
|
|
|
17
17
|
Examples of unacceptable behavior by participants include:
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
19
|
+
- The use of sexualized language or imagery and unwelcome sexual attention or advances
|
|
20
|
+
- Trolling, insulting/derogatory comments, and personal or political attacks
|
|
21
|
+
- Public or private harassment
|
|
22
|
+
- Publishing others' private information, such as a physical or electronic address, without explicit permission
|
|
23
|
+
- Other conduct which could reasonably be considered inappropriate in a professional setting
|
|
24
24
|
|
|
25
25
|
## Our Responsibilities
|
|
26
26
|
|
|
@@ -34,15 +34,10 @@ This Code of Conduct applies both within project spaces and in public spaces whe
|
|
|
34
34
|
|
|
35
35
|
## Enforcement
|
|
36
36
|
|
|
37
|
-
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at
|
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at support@itential.com. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
|
|
38
38
|
|
|
39
39
|
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
|
|
40
40
|
|
|
41
41
|
## Attribution
|
|
42
42
|
|
|
43
|
-
This Code of Conduct is adapted from the
|
|
44
|
-
|
|
45
|
-
[homepage]: http://contributor-covenant.org
|
|
46
|
-
[version]: http://contributor-covenant.org/version/1/4/
|
|
47
|
-
|
|
48
|
-
_return to [README](../README.md)_
|
|
43
|
+
This Code of Conduct is adapted from the <a href="http://contributor-covenant.org" target="_blank">Contributor Covenant</a>, version 1.4, available at <a href="http://contributor-covenant.org/version/1/4/" target="_blank">version</a>
|