@api-client/core 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.
Files changed (537) hide show
  1. package/LICENSE.md +69 -0
  2. package/amf-models/dialects/ApiProjectVocabulary.yaml +233 -0
  3. package/amf-models/dialects/Environment.yaml +38 -0
  4. package/amf-models/dialects/HttpProject.yaml +55 -0
  5. package/amf-models/dialects/License.yaml +31 -0
  6. package/amf-models/dialects/ProjectFolder.yaml +43 -0
  7. package/amf-models/dialects/ProjectItem.yaml +22 -0
  8. package/amf-models/dialects/ProjectRequest.yaml +23 -0
  9. package/amf-models/dialects/ProjectSchema.yaml +36 -0
  10. package/amf-models/dialects/Property.yaml +43 -0
  11. package/amf-models/dialects/Provider.yaml +32 -0
  12. package/amf-models/dialects/Server.yaml +31 -0
  13. package/amf-models/dialects/Thing.yaml +28 -0
  14. package/build/browser.d.ts +79 -0
  15. package/build/browser.js +92 -0
  16. package/build/browser.js.map +1 -0
  17. package/build/index.d.ts +89 -0
  18. package/build/index.js +108 -0
  19. package/build/index.js.map +1 -0
  20. package/build/src/data/DataReader.d.ts +10 -0
  21. package/build/src/data/DataReader.js +4 -0
  22. package/build/src/data/DataReader.js.map +1 -0
  23. package/build/src/data/DataUtils.d.ts +40 -0
  24. package/build/src/data/DataUtils.js +106 -0
  25. package/build/src/data/DataUtils.js.map +1 -0
  26. package/build/src/data/JmesparthReader.d.ts +12 -0
  27. package/build/src/data/JmesparthReader.js +27 -0
  28. package/build/src/data/JmesparthReader.js.map +1 -0
  29. package/build/src/data/Json2Xml.d.ts +84 -0
  30. package/build/src/data/Json2Xml.js +185 -0
  31. package/build/src/data/Json2Xml.js.map +1 -0
  32. package/build/src/data/JsonReader.d.ts +8 -0
  33. package/build/src/data/JsonReader.js +40 -0
  34. package/build/src/data/JsonReader.js.map +1 -0
  35. package/build/src/data/PayloadPointer.d.ts +19 -0
  36. package/build/src/data/PayloadPointer.js +46 -0
  37. package/build/src/data/PayloadPointer.js.map +1 -0
  38. package/build/src/data/RequestDataExtractor.d.ts +44 -0
  39. package/build/src/data/RequestDataExtractor.js +126 -0
  40. package/build/src/data/RequestDataExtractor.js.map +1 -0
  41. package/build/src/data/UrlEncodedReader.d.ts +11 -0
  42. package/build/src/data/UrlEncodedReader.js +20 -0
  43. package/build/src/data/UrlEncodedReader.js.map +1 -0
  44. package/build/src/data/XmlReader.d.ts +14 -0
  45. package/build/src/data/XmlReader.js +97 -0
  46. package/build/src/data/XmlReader.js.map +1 -0
  47. package/build/src/events/BaseEvents.d.ts +208 -0
  48. package/build/src/events/BaseEvents.js +117 -0
  49. package/build/src/events/BaseEvents.js.map +1 -0
  50. package/build/src/events/CustomEvent.d.ts +2 -0
  51. package/build/src/events/CustomEvent.js +24 -0
  52. package/build/src/events/CustomEvent.js.map +1 -0
  53. package/build/src/events/EventTypes.d.ts +91 -0
  54. package/build/src/events/EventTypes.js +19 -0
  55. package/build/src/events/EventTypes.js.map +1 -0
  56. package/build/src/events/Events.d.ts +20 -0
  57. package/build/src/events/Events.js +19 -0
  58. package/build/src/events/Events.js.map +1 -0
  59. package/build/src/events/authorization/AuthorizationEventTypes.d.ts +22 -0
  60. package/build/src/events/authorization/AuthorizationEventTypes.js +23 -0
  61. package/build/src/events/authorization/AuthorizationEventTypes.js.map +1 -0
  62. package/build/src/events/authorization/AuthorizationEvents.d.ts +34 -0
  63. package/build/src/events/authorization/AuthorizationEvents.js +55 -0
  64. package/build/src/events/authorization/AuthorizationEvents.js.map +1 -0
  65. package/build/src/events/cookies/CookieEventTypes.d.ts +13 -0
  66. package/build/src/events/cookies/CookieEventTypes.js +14 -0
  67. package/build/src/events/cookies/CookieEventTypes.js.map +1 -0
  68. package/build/src/events/cookies/CookieEvents.d.ts +90 -0
  69. package/build/src/events/cookies/CookieEvents.js +126 -0
  70. package/build/src/events/cookies/CookieEvents.js.map +1 -0
  71. package/build/src/events/encryption/EncryptionEventTypes.d.ts +4 -0
  72. package/build/src/events/encryption/EncryptionEventTypes.js +5 -0
  73. package/build/src/events/encryption/EncryptionEventTypes.js.map +1 -0
  74. package/build/src/events/encryption/EncryptionEvents.d.ts +36 -0
  75. package/build/src/events/encryption/EncryptionEvents.js +35 -0
  76. package/build/src/events/encryption/EncryptionEvents.js.map +1 -0
  77. package/build/src/events/environment/EnvironmentEventTypes.d.ts +3 -0
  78. package/build/src/events/environment/EnvironmentEventTypes.js +4 -0
  79. package/build/src/events/environment/EnvironmentEventTypes.js.map +1 -0
  80. package/build/src/events/environment/EnvironmentEvents.d.ts +15 -0
  81. package/build/src/events/environment/EnvironmentEvents.js +19 -0
  82. package/build/src/events/environment/EnvironmentEvents.js.map +1 -0
  83. package/build/src/events/models/ClientCertificateEvents.d.ts +56 -0
  84. package/build/src/events/models/ClientCertificateEvents.js +80 -0
  85. package/build/src/events/models/ClientCertificateEvents.js.map +1 -0
  86. package/build/src/events/models/ModelEventTypes.d.ts +47 -0
  87. package/build/src/events/models/ModelEventTypes.js +48 -0
  88. package/build/src/events/models/ModelEventTypes.js.map +1 -0
  89. package/build/src/events/models/ModelEvents.d.ts +6 -0
  90. package/build/src/events/models/ModelEvents.js +7 -0
  91. package/build/src/events/models/ModelEvents.js.map +1 -0
  92. package/build/src/events/models/ProjectEvents.d.ts +221 -0
  93. package/build/src/events/models/ProjectEvents.js +254 -0
  94. package/build/src/events/models/ProjectEvents.js.map +1 -0
  95. package/build/src/events/process/ProcessEventTypes.d.ts +5 -0
  96. package/build/src/events/process/ProcessEventTypes.js +6 -0
  97. package/build/src/events/process/ProcessEventTypes.js.map +1 -0
  98. package/build/src/events/process/ProcessEvents.d.ts +42 -0
  99. package/build/src/events/process/ProcessEvents.js +59 -0
  100. package/build/src/events/process/ProcessEvents.js.map +1 -0
  101. package/build/src/events/reporting/ReportingEventTypes.d.ts +3 -0
  102. package/build/src/events/reporting/ReportingEventTypes.js +4 -0
  103. package/build/src/events/reporting/ReportingEventTypes.js.map +1 -0
  104. package/build/src/events/reporting/ReportingEvents.d.ts +16 -0
  105. package/build/src/events/reporting/ReportingEvents.js +22 -0
  106. package/build/src/events/reporting/ReportingEvents.js.map +1 -0
  107. package/build/src/events/telemetry/TelemetryEventTypes.d.ts +10 -0
  108. package/build/src/events/telemetry/TelemetryEventTypes.js +11 -0
  109. package/build/src/events/telemetry/TelemetryEventTypes.js.map +1 -0
  110. package/build/src/events/telemetry/TelemetryEvents.d.ts +89 -0
  111. package/build/src/events/telemetry/TelemetryEvents.js +109 -0
  112. package/build/src/events/telemetry/TelemetryEvents.js.map +1 -0
  113. package/build/src/lib/cookies/Cookie.d.ts +123 -0
  114. package/build/src/lib/cookies/Cookie.js +257 -0
  115. package/build/src/lib/cookies/Cookie.js.map +1 -0
  116. package/build/src/lib/cookies/Cookies.d.ts +90 -0
  117. package/build/src/lib/cookies/Cookies.js +310 -0
  118. package/build/src/lib/cookies/Cookies.js.map +1 -0
  119. package/build/src/lib/cookies/Utils.d.ts +47 -0
  120. package/build/src/lib/cookies/Utils.js +163 -0
  121. package/build/src/lib/cookies/Utils.js.map +1 -0
  122. package/build/src/lib/headers/Headers.d.ts +67 -0
  123. package/build/src/lib/headers/Headers.js +202 -0
  124. package/build/src/lib/headers/Headers.js.map +1 -0
  125. package/build/src/lib/logging/DefaultLogger.d.ts +8 -0
  126. package/build/src/lib/logging/DefaultLogger.js +19 -0
  127. package/build/src/lib/logging/DefaultLogger.js.map +1 -0
  128. package/build/src/lib/logging/DummyLogger.d.ts +8 -0
  129. package/build/src/lib/logging/DummyLogger.js +21 -0
  130. package/build/src/lib/logging/DummyLogger.js.map +1 -0
  131. package/build/src/lib/logging/Logger.d.ts +14 -0
  132. package/build/src/lib/logging/Logger.js +3 -0
  133. package/build/src/lib/logging/Logger.js.map +1 -0
  134. package/build/src/lib/transformers/PayloadSerializer.d.ts +145 -0
  135. package/build/src/lib/transformers/PayloadSerializer.js +264 -0
  136. package/build/src/lib/transformers/PayloadSerializer.js.map +1 -0
  137. package/build/src/lib/transformers/Utils.d.ts +7 -0
  138. package/build/src/lib/transformers/Utils.js +19 -0
  139. package/build/src/lib/transformers/Utils.js.map +1 -0
  140. package/build/src/lib/uuid.d.ts +8 -0
  141. package/build/src/lib/uuid.js +38 -0
  142. package/build/src/lib/uuid.js.map +1 -0
  143. package/build/src/mocking/LegacyInterfaces.d.ts +47 -0
  144. package/build/src/mocking/LegacyInterfaces.js +2 -0
  145. package/build/src/mocking/LegacyInterfaces.js.map +1 -0
  146. package/build/src/mocking/LegacyMock.d.ts +24 -0
  147. package/build/src/mocking/LegacyMock.js +34 -0
  148. package/build/src/mocking/LegacyMock.js.map +1 -0
  149. package/build/src/mocking/legacy/Authorization.d.ts +19 -0
  150. package/build/src/mocking/legacy/Authorization.js +34 -0
  151. package/build/src/mocking/legacy/Authorization.js.map +1 -0
  152. package/build/src/mocking/legacy/Certificates.d.ts +54 -0
  153. package/build/src/mocking/legacy/Certificates.js +125 -0
  154. package/build/src/mocking/legacy/Certificates.js.map +1 -0
  155. package/build/src/mocking/legacy/Cookies.d.ts +19 -0
  156. package/build/src/mocking/legacy/Cookies.js +46 -0
  157. package/build/src/mocking/legacy/Cookies.js.map +1 -0
  158. package/build/src/mocking/legacy/HostRules.d.ts +20 -0
  159. package/build/src/mocking/legacy/HostRules.js +38 -0
  160. package/build/src/mocking/legacy/HostRules.js.map +1 -0
  161. package/build/src/mocking/legacy/Http.d.ts +78 -0
  162. package/build/src/mocking/legacy/Http.js +192 -0
  163. package/build/src/mocking/legacy/Http.js.map +1 -0
  164. package/build/src/mocking/legacy/HttpResponse.d.ts +22 -0
  165. package/build/src/mocking/legacy/HttpResponse.js +98 -0
  166. package/build/src/mocking/legacy/HttpResponse.js.map +1 -0
  167. package/build/src/mocking/legacy/RestApi.d.ts +13 -0
  168. package/build/src/mocking/legacy/RestApi.js +61 -0
  169. package/build/src/mocking/legacy/RestApi.js.map +1 -0
  170. package/build/src/mocking/legacy/Urls.d.ts +19 -0
  171. package/build/src/mocking/legacy/Urls.js +39 -0
  172. package/build/src/mocking/legacy/Urls.js.map +1 -0
  173. package/build/src/mocking/legacy/Variables.d.ts +17 -0
  174. package/build/src/mocking/legacy/Variables.js +50 -0
  175. package/build/src/mocking/legacy/Variables.js.map +1 -0
  176. package/build/src/models/ArcResponse.d.ts +63 -0
  177. package/build/src/models/ArcResponse.js +142 -0
  178. package/build/src/models/ArcResponse.js.map +1 -0
  179. package/build/src/models/Authorization.d.ts +452 -0
  180. package/build/src/models/Authorization.js +2 -0
  181. package/build/src/models/Authorization.js.map +1 -0
  182. package/build/src/models/AuthorizationData.d.ts +27 -0
  183. package/build/src/models/AuthorizationData.js +52 -0
  184. package/build/src/models/AuthorizationData.js.map +1 -0
  185. package/build/src/models/Backend.d.ts +71 -0
  186. package/build/src/models/Backend.js +2 -0
  187. package/build/src/models/Backend.js.map +1 -0
  188. package/build/src/models/ClientCertificate.d.ts +65 -0
  189. package/build/src/models/ClientCertificate.js +2 -0
  190. package/build/src/models/ClientCertificate.js.map +1 -0
  191. package/build/src/models/Environment.d.ts +125 -0
  192. package/build/src/models/Environment.js +215 -0
  193. package/build/src/models/Environment.js.map +1 -0
  194. package/build/src/models/ErrorResponse.d.ts +35 -0
  195. package/build/src/models/ErrorResponse.js +88 -0
  196. package/build/src/models/ErrorResponse.js.map +1 -0
  197. package/build/src/models/HistoryIndex.d.ts +43 -0
  198. package/build/src/models/HistoryIndex.js +53 -0
  199. package/build/src/models/HistoryIndex.js.map +1 -0
  200. package/build/src/models/HistoryRequest.d.ts +13 -0
  201. package/build/src/models/HistoryRequest.js +25 -0
  202. package/build/src/models/HistoryRequest.js.map +1 -0
  203. package/build/src/models/HostRule.d.ts +78 -0
  204. package/build/src/models/HostRule.js +134 -0
  205. package/build/src/models/HostRule.js.map +1 -0
  206. package/build/src/models/HttpCookie.d.ts +123 -0
  207. package/build/src/models/HttpCookie.js +209 -0
  208. package/build/src/models/HttpCookie.js.map +1 -0
  209. package/build/src/models/HttpProject.d.ts +455 -0
  210. package/build/src/models/HttpProject.js +987 -0
  211. package/build/src/models/HttpProject.js.map +1 -0
  212. package/build/src/models/HttpProjectListItem.d.ts +23 -0
  213. package/build/src/models/HttpProjectListItem.js +2 -0
  214. package/build/src/models/HttpProjectListItem.js.map +1 -0
  215. package/build/src/models/HttpRequest.d.ts +69 -0
  216. package/build/src/models/HttpRequest.js +92 -0
  217. package/build/src/models/HttpRequest.js.map +1 -0
  218. package/build/src/models/HttpResponse.d.ts +59 -0
  219. package/build/src/models/HttpResponse.js +116 -0
  220. package/build/src/models/HttpResponse.js.map +1 -0
  221. package/build/src/models/License.d.ts +52 -0
  222. package/build/src/models/License.js +91 -0
  223. package/build/src/models/License.js.map +1 -0
  224. package/build/src/models/ProjectDefinitionProperty.d.ts +34 -0
  225. package/build/src/models/ProjectDefinitionProperty.js +2 -0
  226. package/build/src/models/ProjectDefinitionProperty.js.map +1 -0
  227. package/build/src/models/ProjectFolder.d.ts +213 -0
  228. package/build/src/models/ProjectFolder.js +314 -0
  229. package/build/src/models/ProjectFolder.js.map +1 -0
  230. package/build/src/models/ProjectItem.d.ts +59 -0
  231. package/build/src/models/ProjectItem.js +119 -0
  232. package/build/src/models/ProjectItem.js.map +1 -0
  233. package/build/src/models/ProjectParent.d.ts +58 -0
  234. package/build/src/models/ProjectParent.js +77 -0
  235. package/build/src/models/ProjectParent.js.map +1 -0
  236. package/build/src/models/ProjectRequest.d.ts +118 -0
  237. package/build/src/models/ProjectRequest.js +238 -0
  238. package/build/src/models/ProjectRequest.js.map +1 -0
  239. package/build/src/models/ProjectSchema.d.ts +105 -0
  240. package/build/src/models/ProjectSchema.js +156 -0
  241. package/build/src/models/ProjectSchema.js.map +1 -0
  242. package/build/src/models/Property.d.ts +130 -0
  243. package/build/src/models/Property.js +392 -0
  244. package/build/src/models/Property.js.map +1 -0
  245. package/build/src/models/Provider.d.ts +52 -0
  246. package/build/src/models/Provider.js +75 -0
  247. package/build/src/models/Provider.js.map +1 -0
  248. package/build/src/models/Request.d.ts +157 -0
  249. package/build/src/models/Request.js +398 -0
  250. package/build/src/models/Request.js.map +1 -0
  251. package/build/src/models/RequestActions.d.ts +67 -0
  252. package/build/src/models/RequestActions.js +116 -0
  253. package/build/src/models/RequestActions.js.map +1 -0
  254. package/build/src/models/RequestAuthorization.d.ts +59 -0
  255. package/build/src/models/RequestAuthorization.js +85 -0
  256. package/build/src/models/RequestAuthorization.js.map +1 -0
  257. package/build/src/models/RequestConfig.d.ts +161 -0
  258. package/build/src/models/RequestConfig.js +246 -0
  259. package/build/src/models/RequestConfig.js.map +1 -0
  260. package/build/src/models/RequestLog.d.ts +70 -0
  261. package/build/src/models/RequestLog.js +133 -0
  262. package/build/src/models/RequestLog.js.map +1 -0
  263. package/build/src/models/RequestTime.d.ts +36 -0
  264. package/build/src/models/RequestTime.js +91 -0
  265. package/build/src/models/RequestTime.js.map +1 -0
  266. package/build/src/models/RequestUiMeta.d.ts +169 -0
  267. package/build/src/models/RequestUiMeta.js +120 -0
  268. package/build/src/models/RequestUiMeta.js.map +1 -0
  269. package/build/src/models/RequestsSize.d.ts +34 -0
  270. package/build/src/models/RequestsSize.js +52 -0
  271. package/build/src/models/RequestsSize.js.map +1 -0
  272. package/build/src/models/ResponseAuthorization.d.ts +54 -0
  273. package/build/src/models/ResponseAuthorization.js +82 -0
  274. package/build/src/models/ResponseAuthorization.js.map +1 -0
  275. package/build/src/models/ResponseRedirect.d.ts +73 -0
  276. package/build/src/models/ResponseRedirect.js +126 -0
  277. package/build/src/models/ResponseRedirect.js.map +1 -0
  278. package/build/src/models/RevisionInfo.d.ts +36 -0
  279. package/build/src/models/RevisionInfo.js +2 -0
  280. package/build/src/models/RevisionInfo.js.map +1 -0
  281. package/build/src/models/SentRequest.d.ts +62 -0
  282. package/build/src/models/SentRequest.js +93 -0
  283. package/build/src/models/SentRequest.js.map +1 -0
  284. package/build/src/models/SerializablePayload.d.ts +30 -0
  285. package/build/src/models/SerializablePayload.js +66 -0
  286. package/build/src/models/SerializablePayload.js.map +1 -0
  287. package/build/src/models/Server.d.ts +76 -0
  288. package/build/src/models/Server.js +121 -0
  289. package/build/src/models/Server.js.map +1 -0
  290. package/build/src/models/Thing.d.ts +56 -0
  291. package/build/src/models/Thing.js +85 -0
  292. package/build/src/models/Thing.js.map +1 -0
  293. package/build/src/models/Url.d.ts +51 -0
  294. package/build/src/models/Url.js +71 -0
  295. package/build/src/models/Url.js.map +1 -0
  296. package/build/src/models/User.d.ts +110 -0
  297. package/build/src/models/User.js +2 -0
  298. package/build/src/models/User.js.map +1 -0
  299. package/build/src/models/WebApi.d.ts +119 -0
  300. package/build/src/models/WebApi.js +175 -0
  301. package/build/src/models/WebApi.js.map +1 -0
  302. package/build/src/models/WebApiIndex.d.ts +70 -0
  303. package/build/src/models/WebApiIndex.js +72 -0
  304. package/build/src/models/WebApiIndex.js.map +1 -0
  305. package/build/src/models/Workspace.d.ts +98 -0
  306. package/build/src/models/Workspace.js +139 -0
  307. package/build/src/models/Workspace.js.map +1 -0
  308. package/build/src/models/actions/Action.d.ts +75 -0
  309. package/build/src/models/actions/Action.js +188 -0
  310. package/build/src/models/actions/Action.js.map +1 -0
  311. package/build/src/models/actions/ActionView.d.ts +15 -0
  312. package/build/src/models/actions/ActionView.js +33 -0
  313. package/build/src/models/actions/ActionView.js.map +1 -0
  314. package/build/src/models/actions/Condition.d.ts +81 -0
  315. package/build/src/models/actions/Condition.js +185 -0
  316. package/build/src/models/actions/Condition.js.map +1 -0
  317. package/build/src/models/actions/ConditionView.d.ts +17 -0
  318. package/build/src/models/actions/ConditionView.js +34 -0
  319. package/build/src/models/actions/ConditionView.js.map +1 -0
  320. package/build/src/models/actions/Enums.d.ts +26 -0
  321. package/build/src/models/actions/Enums.js +31 -0
  322. package/build/src/models/actions/Enums.js.map +1 -0
  323. package/build/src/models/actions/RunnableAction.d.ts +59 -0
  324. package/build/src/models/actions/RunnableAction.js +106 -0
  325. package/build/src/models/actions/RunnableAction.js.map +1 -0
  326. package/build/src/models/actions/runnable/DeleteCookieAction.d.ts +44 -0
  327. package/build/src/models/actions/runnable/DeleteCookieAction.js +92 -0
  328. package/build/src/models/actions/runnable/DeleteCookieAction.js.map +1 -0
  329. package/build/src/models/actions/runnable/Runnable.d.ts +8 -0
  330. package/build/src/models/actions/runnable/Runnable.js +4 -0
  331. package/build/src/models/actions/runnable/Runnable.js.map +1 -0
  332. package/build/src/models/actions/runnable/SetCookieAction.d.ts +87 -0
  333. package/build/src/models/actions/runnable/SetCookieAction.js +176 -0
  334. package/build/src/models/actions/runnable/SetCookieAction.js.map +1 -0
  335. package/build/src/models/actions/runnable/SetVariableAction.d.ts +31 -0
  336. package/build/src/models/actions/runnable/SetVariableAction.js +63 -0
  337. package/build/src/models/actions/runnable/SetVariableAction.js.map +1 -0
  338. package/build/src/models/actions/runnable/index.d.ts +7 -0
  339. package/build/src/models/actions/runnable/index.js +2 -0
  340. package/build/src/models/actions/runnable/index.js.map +1 -0
  341. package/build/src/models/legacy/DataExport.d.ts +168 -0
  342. package/build/src/models/legacy/DataExport.js +2 -0
  343. package/build/src/models/legacy/DataExport.js.map +1 -0
  344. package/build/src/models/legacy/Normalizer.d.ts +12 -0
  345. package/build/src/models/legacy/Normalizer.js +104 -0
  346. package/build/src/models/legacy/Normalizer.js.map +1 -0
  347. package/build/src/models/legacy/actions/Actions.d.ts +257 -0
  348. package/build/src/models/legacy/actions/Actions.js +2 -0
  349. package/build/src/models/legacy/actions/Actions.js.map +1 -0
  350. package/build/src/models/legacy/authorization/Authorization.d.ts +540 -0
  351. package/build/src/models/legacy/authorization/Authorization.js +3 -0
  352. package/build/src/models/legacy/authorization/Authorization.js.map +1 -0
  353. package/build/src/models/legacy/models/ApiTypes.d.ts +192 -0
  354. package/build/src/models/legacy/models/ApiTypes.js +2 -0
  355. package/build/src/models/legacy/models/ApiTypes.js.map +1 -0
  356. package/build/src/models/legacy/models/ArcLegacyProject.d.ts +37 -0
  357. package/build/src/models/legacy/models/ArcLegacyProject.js +2 -0
  358. package/build/src/models/legacy/models/ArcLegacyProject.js.map +1 -0
  359. package/build/src/models/legacy/models/AuthData.d.ts +14 -0
  360. package/build/src/models/legacy/models/AuthData.js +2 -0
  361. package/build/src/models/legacy/models/AuthData.js.map +1 -0
  362. package/build/src/models/legacy/models/ClientCertificate.d.ts +89 -0
  363. package/build/src/models/legacy/models/ClientCertificate.js +2 -0
  364. package/build/src/models/legacy/models/ClientCertificate.js.map +1 -0
  365. package/build/src/models/legacy/models/Cookies.d.ts +52 -0
  366. package/build/src/models/legacy/models/Cookies.js +2 -0
  367. package/build/src/models/legacy/models/Cookies.js.map +1 -0
  368. package/build/src/models/legacy/models/HostRule.d.ts +33 -0
  369. package/build/src/models/legacy/models/HostRule.js +2 -0
  370. package/build/src/models/legacy/models/HostRule.js.map +1 -0
  371. package/build/src/models/legacy/models/RestApi.d.ts +47 -0
  372. package/build/src/models/legacy/models/RestApi.js +2 -0
  373. package/build/src/models/legacy/models/RestApi.js.map +1 -0
  374. package/build/src/models/legacy/models/UrlHistory.d.ts +32 -0
  375. package/build/src/models/legacy/models/UrlHistory.js +2 -0
  376. package/build/src/models/legacy/models/UrlHistory.js.map +1 -0
  377. package/build/src/models/legacy/models/Variable.d.ts +38 -0
  378. package/build/src/models/legacy/models/Variable.js +2 -0
  379. package/build/src/models/legacy/models/Variable.js.map +1 -0
  380. package/build/src/models/legacy/request/ArcRequest.d.ts +387 -0
  381. package/build/src/models/legacy/request/ArcRequest.js +2 -0
  382. package/build/src/models/legacy/request/ArcRequest.js.map +1 -0
  383. package/build/src/models/legacy/request/ArcResponse.d.ts +166 -0
  384. package/build/src/models/legacy/request/ArcResponse.js +2 -0
  385. package/build/src/models/legacy/request/ArcResponse.js.map +1 -0
  386. package/build/src/models/legacy/request/HistoryData.d.ts +45 -0
  387. package/build/src/models/legacy/request/HistoryData.js +2 -0
  388. package/build/src/models/legacy/request/HistoryData.js.map +1 -0
  389. package/build/src/models/legacy/request/Legacy.d.ts +43 -0
  390. package/build/src/models/legacy/request/Legacy.js +2 -0
  391. package/build/src/models/legacy/request/Legacy.js.map +1 -0
  392. package/build/src/models/legacy/request/RequestBody.d.ts +82 -0
  393. package/build/src/models/legacy/request/RequestBody.js +2 -0
  394. package/build/src/models/legacy/request/RequestBody.js.map +1 -0
  395. package/build/src/models/transformers/ArcDexieTransformer.d.ts +108 -0
  396. package/build/src/models/transformers/ArcDexieTransformer.js +252 -0
  397. package/build/src/models/transformers/ArcDexieTransformer.js.map +1 -0
  398. package/build/src/models/transformers/ArcLegacyNormalizer.d.ts +42 -0
  399. package/build/src/models/transformers/ArcLegacyNormalizer.js +80 -0
  400. package/build/src/models/transformers/ArcLegacyNormalizer.js.map +1 -0
  401. package/build/src/models/transformers/ArcLegacyTransformer.d.ts +85 -0
  402. package/build/src/models/transformers/ArcLegacyTransformer.js +150 -0
  403. package/build/src/models/transformers/ArcLegacyTransformer.js.map +1 -0
  404. package/build/src/models/transformers/ArcPouchTransformer.d.ts +46 -0
  405. package/build/src/models/transformers/ArcPouchTransformer.js +170 -0
  406. package/build/src/models/transformers/ArcPouchTransformer.js.map +1 -0
  407. package/build/src/models/transformers/BaseTransformer.d.ts +48 -0
  408. package/build/src/models/transformers/BaseTransformer.js +104 -0
  409. package/build/src/models/transformers/BaseTransformer.js.map +1 -0
  410. package/build/src/models/transformers/ImportUtils.d.ts +44 -0
  411. package/build/src/models/transformers/ImportUtils.js +135 -0
  412. package/build/src/models/transformers/ImportUtils.js.map +1 -0
  413. package/build/src/models/transformers/LegacyDataExportToApiProject.d.ts +15 -0
  414. package/build/src/models/transformers/LegacyDataExportToApiProject.js +70 -0
  415. package/build/src/models/transformers/LegacyDataExportToApiProject.js.map +1 -0
  416. package/build/src/models/transformers/LegacyExportProcessor.d.ts +47 -0
  417. package/build/src/models/transformers/LegacyExportProcessor.js +219 -0
  418. package/build/src/models/transformers/LegacyExportProcessor.js.map +1 -0
  419. package/build/src/models/transformers/PostmanBackupTransformer.d.ts +96 -0
  420. package/build/src/models/transformers/PostmanBackupTransformer.js +188 -0
  421. package/build/src/models/transformers/PostmanBackupTransformer.js.map +1 -0
  422. package/build/src/models/transformers/PostmanDataTransformer.d.ts +9 -0
  423. package/build/src/models/transformers/PostmanDataTransformer.js +46 -0
  424. package/build/src/models/transformers/PostmanDataTransformer.js.map +1 -0
  425. package/build/src/models/transformers/PostmanTransformer.d.ts +49 -0
  426. package/build/src/models/transformers/PostmanTransformer.js +90 -0
  427. package/build/src/models/transformers/PostmanTransformer.js.map +1 -0
  428. package/build/src/models/transformers/PostmanV21Transformer.d.ts +125 -0
  429. package/build/src/models/transformers/PostmanV21Transformer.js +195 -0
  430. package/build/src/models/transformers/PostmanV21Transformer.js.map +1 -0
  431. package/build/src/models/transformers/PostmanV2Transformer.d.ts +123 -0
  432. package/build/src/models/transformers/PostmanV2Transformer.js +195 -0
  433. package/build/src/models/transformers/PostmanV2Transformer.js.map +1 -0
  434. package/build/src/models/transformers/har.d.ts +857 -0
  435. package/build/src/models/transformers/har.js +2 -0
  436. package/build/src/models/transformers/har.js.map +1 -0
  437. package/build/src/runtime/actions/ActionRunner.d.ts +17 -0
  438. package/build/src/runtime/actions/ActionRunner.js +74 -0
  439. package/build/src/runtime/actions/ActionRunner.js.map +1 -0
  440. package/build/src/runtime/actions/ConditionRunner.d.ts +74 -0
  441. package/build/src/runtime/actions/ConditionRunner.js +185 -0
  442. package/build/src/runtime/actions/ConditionRunner.js.map +1 -0
  443. package/build/src/runtime/actions/RunnableCondition.d.ts +28 -0
  444. package/build/src/runtime/actions/RunnableCondition.js +51 -0
  445. package/build/src/runtime/actions/RunnableCondition.js.map +1 -0
  446. package/build/src/runtime/actions/runnable/ActionRunnable.d.ts +13 -0
  447. package/build/src/runtime/actions/runnable/ActionRunnable.js +13 -0
  448. package/build/src/runtime/actions/runnable/ActionRunnable.js.map +1 -0
  449. package/build/src/runtime/actions/runnable/DeleteCookieRunnable.d.ts +7 -0
  450. package/build/src/runtime/actions/runnable/DeleteCookieRunnable.js +36 -0
  451. package/build/src/runtime/actions/runnable/DeleteCookieRunnable.js.map +1 -0
  452. package/build/src/runtime/actions/runnable/SetCookieRunnable.d.ts +10 -0
  453. package/build/src/runtime/actions/runnable/SetCookieRunnable.js +89 -0
  454. package/build/src/runtime/actions/runnable/SetCookieRunnable.js.map +1 -0
  455. package/build/src/runtime/actions/runnable/SetVariableRunnable.d.ts +10 -0
  456. package/build/src/runtime/actions/runnable/SetVariableRunnable.js +49 -0
  457. package/build/src/runtime/actions/runnable/SetVariableRunnable.js.map +1 -0
  458. package/build/src/runtime/http-engine/ArcEngine.d.ts +218 -0
  459. package/build/src/runtime/http-engine/ArcEngine.js +1034 -0
  460. package/build/src/runtime/http-engine/ArcEngine.js.map +1 -0
  461. package/build/src/runtime/http-engine/Errors.d.ts +10 -0
  462. package/build/src/runtime/http-engine/Errors.js +14 -0
  463. package/build/src/runtime/http-engine/Errors.js.map +1 -0
  464. package/build/src/runtime/http-engine/FormData.d.ts +16 -0
  465. package/build/src/runtime/http-engine/FormData.js +72 -0
  466. package/build/src/runtime/http-engine/FormData.js.map +1 -0
  467. package/build/src/runtime/http-engine/HttpEngine.d.ts +294 -0
  468. package/build/src/runtime/http-engine/HttpEngine.js +736 -0
  469. package/build/src/runtime/http-engine/HttpEngine.js.map +1 -0
  470. package/build/src/runtime/http-engine/HttpErrorCodes.d.ts +15 -0
  471. package/build/src/runtime/http-engine/HttpErrorCodes.js +223 -0
  472. package/build/src/runtime/http-engine/HttpErrorCodes.js.map +1 -0
  473. package/build/src/runtime/http-engine/NodeEngine.d.ts +154 -0
  474. package/build/src/runtime/http-engine/NodeEngine.js +761 -0
  475. package/build/src/runtime/http-engine/NodeEngine.js.map +1 -0
  476. package/build/src/runtime/http-engine/NodeEngineDirect.d.ts +113 -0
  477. package/build/src/runtime/http-engine/NodeEngineDirect.js +443 -0
  478. package/build/src/runtime/http-engine/NodeEngineDirect.js.map +1 -0
  479. package/build/src/runtime/http-engine/PayloadSupport.d.ts +26 -0
  480. package/build/src/runtime/http-engine/PayloadSupport.js +78 -0
  481. package/build/src/runtime/http-engine/PayloadSupport.js.map +1 -0
  482. package/build/src/runtime/http-engine/RequestUtils.d.ts +66 -0
  483. package/build/src/runtime/http-engine/RequestUtils.js +144 -0
  484. package/build/src/runtime/http-engine/RequestUtils.js.map +1 -0
  485. package/build/src/runtime/http-engine/ntlm/Des.d.ts +4 -0
  486. package/build/src/runtime/http-engine/ntlm/Des.js +343 -0
  487. package/build/src/runtime/http-engine/ntlm/Des.js.map +1 -0
  488. package/build/src/runtime/http-engine/ntlm/MD4.d.ts +13 -0
  489. package/build/src/runtime/http-engine/ntlm/MD4.js +120 -0
  490. package/build/src/runtime/http-engine/ntlm/MD4.js.map +1 -0
  491. package/build/src/runtime/http-engine/ntlm/NtlmAuth.d.ts +26 -0
  492. package/build/src/runtime/http-engine/ntlm/NtlmAuth.js +159 -0
  493. package/build/src/runtime/http-engine/ntlm/NtlmAuth.js.map +1 -0
  494. package/build/src/runtime/http-engine/ntlm/NtlmMessage.d.ts +10 -0
  495. package/build/src/runtime/http-engine/ntlm/NtlmMessage.js +51 -0
  496. package/build/src/runtime/http-engine/ntlm/NtlmMessage.js.map +1 -0
  497. package/build/src/runtime/modules/BasicAuthCache.d.ts +39 -0
  498. package/build/src/runtime/modules/BasicAuthCache.js +125 -0
  499. package/build/src/runtime/modules/BasicAuthCache.js.map +1 -0
  500. package/build/src/runtime/modules/ExecutionResponse.d.ts +4 -0
  501. package/build/src/runtime/modules/ExecutionResponse.js +6 -0
  502. package/build/src/runtime/modules/ExecutionResponse.js.map +1 -0
  503. package/build/src/runtime/modules/ModulesRegistry.d.ts +93 -0
  504. package/build/src/runtime/modules/ModulesRegistry.js +69 -0
  505. package/build/src/runtime/modules/ModulesRegistry.js.map +1 -0
  506. package/build/src/runtime/modules/RequestAuthorization.d.ts +6 -0
  507. package/build/src/runtime/modules/RequestAuthorization.js +114 -0
  508. package/build/src/runtime/modules/RequestAuthorization.js.map +1 -0
  509. package/build/src/runtime/modules/RequestCookies.d.ts +17 -0
  510. package/build/src/runtime/modules/RequestCookies.js +133 -0
  511. package/build/src/runtime/modules/RequestCookies.js.map +1 -0
  512. package/build/src/runtime/node/ProjectRunner.d.ts +125 -0
  513. package/build/src/runtime/node/ProjectRunner.js +178 -0
  514. package/build/src/runtime/node/ProjectRunner.js.map +1 -0
  515. package/build/src/runtime/node/RequestFactory.d.ts +139 -0
  516. package/build/src/runtime/node/RequestFactory.js +397 -0
  517. package/build/src/runtime/node/RequestFactory.js.map +1 -0
  518. package/build/src/runtime/node/VariablesStore.d.ts +9 -0
  519. package/build/src/runtime/node/VariablesStore.js +19 -0
  520. package/build/src/runtime/node/VariablesStore.js.map +1 -0
  521. package/build/src/runtime/variables/Cache.d.ts +23 -0
  522. package/build/src/runtime/variables/Cache.js +51 -0
  523. package/build/src/runtime/variables/Cache.js.map +1 -0
  524. package/build/src/runtime/variables/EvalFunctions.d.ts +58 -0
  525. package/build/src/runtime/variables/EvalFunctions.js +123 -0
  526. package/build/src/runtime/variables/EvalFunctions.js.map +1 -0
  527. package/build/src/runtime/variables/ProjectVariables.d.ts +5 -0
  528. package/build/src/runtime/variables/ProjectVariables.js +6 -0
  529. package/build/src/runtime/variables/ProjectVariables.js.map +1 -0
  530. package/build/src/runtime/variables/VariablesProcessor.d.ts +165 -0
  531. package/build/src/runtime/variables/VariablesProcessor.js +515 -0
  532. package/build/src/runtime/variables/VariablesProcessor.js.map +1 -0
  533. package/build/src/runtime/variables/VariablesTokenizer.d.ts +26 -0
  534. package/build/src/runtime/variables/VariablesTokenizer.js +53 -0
  535. package/build/src/runtime/variables/VariablesTokenizer.js.map +1 -0
  536. package/package.json +97 -0
  537. package/readme.md +51 -0
package/LICENSE.md ADDED
@@ -0,0 +1,69 @@
1
+ # API Client license
2
+
3
+ The API Client is an open source project and everyone can use it or part of it.
4
+
5
+ ## Apache License, Version 2.0
6
+
7
+ Apache License
8
+ Version 2.0,
9
+ January 2004
10
+
11
+ http://www.apache.org/licenses/
12
+
13
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
14
+
15
+ 1. Definitions.
16
+
17
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
18
+
19
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
20
+
21
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
24
+
25
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
26
+
27
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
28
+
29
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
30
+
31
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
32
+
33
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
34
+
35
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
36
+
37
+ 2. Grant of Copyright License.
38
+
39
+ Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
40
+
41
+ 3. Grant of Patent License.
42
+
43
+ Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
44
+
45
+ 4. Redistribution.
46
+
47
+ You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
48
+
49
+ You must give any other recipients of the Work or Derivative Works a copy of this License; and You must cause any modified files to carry prominent notices stating that You changed the files; and You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
50
+
51
+ 5. Submission of Contributions.
52
+
53
+ Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
54
+
55
+ 6. Trademarks.
56
+
57
+ This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
58
+
59
+ 7. Disclaimer of Warranty.
60
+
61
+ Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
62
+
63
+ 8. Limitation of Liability.
64
+
65
+ In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
66
+
67
+ 9. Accepting Warranty or Additional Liability.
68
+
69
+ While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
@@ -0,0 +1,233 @@
1
+ #%Vocabulary 1.0
2
+
3
+ vocabulary: api-project
4
+ base: http://api-client.io/vocabularies/project#
5
+
6
+ usage: |
7
+ The vocabulary definition of an API project.
8
+
9
+ external:
10
+ schema-org: http://schema.org/
11
+
12
+ classTerms:
13
+ Thing:
14
+ properties:
15
+ - extends
16
+
17
+ ProjectFolder:
18
+ extends: Thing
19
+ properties:
20
+ - kind
21
+ - key
22
+ - info
23
+ - items
24
+ - environments
25
+ - updated
26
+ - created
27
+ ProjectItem:
28
+ extends: Thing
29
+ properties:
30
+ - kind
31
+ - key
32
+ Environment:
33
+ extends: Thing
34
+ properties:
35
+ - kind
36
+ - key
37
+ - encapsulated
38
+ - info
39
+ - server
40
+ - variables
41
+ Info:
42
+ extends: Thing
43
+ properties:
44
+ - kind
45
+ - version
46
+ - name
47
+ - description
48
+ Server:
49
+ extends: Thing
50
+ properties:
51
+ - kind
52
+ - uri
53
+ - protocol
54
+ - basePath
55
+ - description
56
+ Property:
57
+ extends: Thing
58
+ properties:
59
+ - kind
60
+ - name
61
+ - type
62
+ - enabled
63
+ - default
64
+ - enum
65
+ - description
66
+ - required
67
+ License:
68
+ extends: Thing
69
+ properties:
70
+ - kind
71
+ - url
72
+ - name
73
+ - content
74
+ Provider:
75
+ extends: Thing
76
+ properties:
77
+ - kind
78
+ - url
79
+ - name
80
+ - email
81
+ ProjectSchema:
82
+ extends: Thing
83
+ properties:
84
+ - kind
85
+ - key
86
+ - name
87
+ - content
88
+ - mime
89
+ - properties
90
+ HttpProject:
91
+ extends: Thing
92
+ properties:
93
+ - kind
94
+ - items
95
+ - provider
96
+ - info
97
+ - license
98
+ Request:
99
+ extends: Thing
100
+ properties:
101
+ - kind
102
+ - info
103
+ - expects
104
+ - log
105
+ - updated
106
+ - created
107
+ - midnight
108
+ - config
109
+ - authorization
110
+ - actions
111
+ - clientCertificate
112
+ ProjectRequest:
113
+ extends: Request
114
+ properties:
115
+ - key
116
+
117
+ propertyTerms:
118
+ kind:
119
+ displayName: kind
120
+ range: string
121
+ description: The kind that identifies the object
122
+ key:
123
+ displayName: key
124
+ range: string
125
+ description: The unique identifier of an object
126
+ updated:
127
+ displayName: updated
128
+ range: integer
129
+ description: The timestamp when the object was last updated
130
+ created:
131
+ displayName: created
132
+ range: integer
133
+ description: The timestamp when the object was created
134
+ items:
135
+ displayName: items
136
+ description: An item located in a project or a folder
137
+ range: ProjectItem
138
+ environments:
139
+ displayName: environments
140
+ description: The execution environment
141
+ range: Environment
142
+ info:
143
+ displayName: info
144
+ description: The base information about the object
145
+ range: Info
146
+ version:
147
+ displayName: version
148
+ range: schema-org.version
149
+ description: The version of the object
150
+ name:
151
+ displayName: name
152
+ range: schema-org.name
153
+ description: The name of the object
154
+ description:
155
+ displayName: description
156
+ range: schema-org.description
157
+ description: The description of the object
158
+ encapsulated:
159
+ displayName: encapsulated
160
+ range: boolean
161
+ description: Whether the object is encapsulated to its parent.
162
+ server:
163
+ displayName: server
164
+ range: Server
165
+ description: A server of an API
166
+ variables:
167
+ displayName: variables
168
+ range: Property
169
+ description: A list of properties in an environment
170
+ uri:
171
+ displayName: uri
172
+ range: string
173
+ description: The URI of a resource
174
+ url:
175
+ displayName: url
176
+ range: string
177
+ description: The URL of a resource
178
+ protocol:
179
+ displayName: protocol
180
+ range: string
181
+ description: The protocol used to construct an URL
182
+ basePath:
183
+ displayName: basePath
184
+ range: string
185
+ description: The API base path.
186
+ type:
187
+ displayName: type
188
+ range: string
189
+ description: The type of a property.
190
+ enabled:
191
+ displayName: enabled
192
+ range: boolean
193
+ description: Whether the property is allowed to be processed.
194
+ default:
195
+ displayName: default
196
+ range: any
197
+ description: The default value for a property
198
+ enum:
199
+ displayName: enum
200
+ range: any
201
+ description: The enum values for a property
202
+ required:
203
+ displayName: required
204
+ range: boolean
205
+ description: Whether the property is required.
206
+ content:
207
+ displayName: content
208
+ range: string
209
+ description: The rich content, usually used with a documents.
210
+ email:
211
+ displayName: email
212
+ range: string
213
+ description: The contact email to the person or the organization.
214
+ mime:
215
+ displayName: mime
216
+ range: string
217
+ description: The mime type of the object.
218
+ properties:
219
+ displayName: properties
220
+ range: Property
221
+ description: The list of properties in the object.
222
+ provider:
223
+ displayName: provider
224
+ range: Provider
225
+ description: The provider of the object.
226
+ license:
227
+ displayName: license
228
+ range: License
229
+ description: The license of the object.
230
+ midnight:
231
+ displayName: midnight
232
+ range: integer
233
+ description: The timestamp describing the midnight when an event happened.
@@ -0,0 +1,38 @@
1
+ #%Dialect 1.0
2
+
3
+ dialect: Environment
4
+ version: 1.0
5
+
6
+ uses:
7
+ Thing: Thing.yaml
8
+ Server: Server.yaml
9
+ Property: Property.yaml
10
+ ApiProject: ApiProjectVocabulary.yaml
11
+
12
+ documents:
13
+ root:
14
+ encodes: EnvironmentNode
15
+
16
+ nodeMappings:
17
+ EnvironmentNode:
18
+ classTerm: ApiProject.Environment
19
+ mapping:
20
+ kind:
21
+ range: string
22
+ mandatory: true
23
+ key:
24
+ range: string
25
+ mandatory: true
26
+ encapsulated:
27
+ range: boolean
28
+ mandatory: false
29
+ info:
30
+ range: Thing.ThingNode
31
+ mandatory: true
32
+ server:
33
+ range: Server.ServerNode
34
+ mandatory: false
35
+ variables:
36
+ range: Property.PropertyNode
37
+ allowMultiple: true
38
+ mandatory: false
@@ -0,0 +1,55 @@
1
+ #%Dialect 1.0
2
+
3
+ dialect: Http Project
4
+ version: 1.0
5
+
6
+ uses:
7
+ License: License.yaml
8
+ Thing: Thing.yaml
9
+ Provider: Provider.yaml
10
+ Environment: Environment.yaml
11
+ ProjectSchema: ProjectSchema.yaml
12
+ ProjectItem: ProjectItem.yaml
13
+ ProjectFolder: ProjectFolder.yaml
14
+ ProjectRequest: ProjectRequest.yaml
15
+ ApiProject: ApiProjectVocabulary.yaml
16
+
17
+ documents:
18
+ root:
19
+ encodes: DescriptionDataNode
20
+
21
+ nodeMappings:
22
+ DescriptionDataNode:
23
+ classTerm: ApiProject.HttpProject
24
+ mapping:
25
+ kind:
26
+ range: string
27
+ mandatory: true
28
+ definitions:
29
+ mandatory: true
30
+ allowMultiple: true
31
+ union:
32
+ - ProjectFolder.ProjectFolderNode
33
+ - ProjectRequest.ProjectRequestNode
34
+ typeDiscriminatorName: kind
35
+ items:
36
+ range: ProjectItem.ProjectItemNode
37
+ mandatory: true
38
+ allowMultiple: true
39
+ schemas:
40
+ range: ProjectSchema.ProjectSchemaNode
41
+ mandatory: false
42
+ allowMultiple: true
43
+ environments:
44
+ range: Environment.EnvironmentNode
45
+ mandatory: false
46
+ allowMultiple: true
47
+ provider:
48
+ range: Provider.ProviderNode
49
+ mandatory: false
50
+ info:
51
+ range: Thing.ThingNode
52
+ mandatory: false
53
+ license:
54
+ range: License.LicenseNode
55
+ mandatory: false
@@ -0,0 +1,31 @@
1
+ #%Dialect 1.0
2
+
3
+ dialect: License
4
+ version: 1.0
5
+
6
+ uses:
7
+ ApiProject: ApiProjectVocabulary.yaml
8
+
9
+ documents:
10
+ root:
11
+ encodes: LicenseNode
12
+
13
+ nodeMappings:
14
+ LicenseNode:
15
+ classTerm: ApiProject.License
16
+ mapping:
17
+ kind:
18
+ propertyTerm: schema-org.name
19
+ range: string
20
+ mandatory: true
21
+ url:
22
+ propertyTerm: schema-org.url
23
+ range: string
24
+ mandatory: false
25
+ name:
26
+ propertyTerm: schema-org.name
27
+ range: string
28
+ mandatory: false
29
+ content:
30
+ range: string
31
+ mandatory: false
@@ -0,0 +1,43 @@
1
+ #%Dialect 1.0
2
+
3
+ dialect: Project Folder
4
+ version: 1.0
5
+
6
+ uses:
7
+ Thing: Thing.yaml
8
+ ProjectItem: ProjectItem.yaml
9
+ Environment: Environment.yaml
10
+ ApiProject: ApiProjectVocabulary.yaml
11
+
12
+ documents:
13
+ root:
14
+ encodes: ProjectFolderNode
15
+
16
+ nodeMappings:
17
+ ProjectFolderNode:
18
+ classTerm: ApiProject.ProjectFolder
19
+ mapping:
20
+ kind:
21
+ range: string
22
+ mandatory: true
23
+ key:
24
+ propertyTerm: schema-org.identifier
25
+ range: string
26
+ mandatory: true
27
+ info:
28
+ range: Thing.ThingNode
29
+ mandatory: true
30
+ items:
31
+ range: ProjectItem.ProjectItemNode
32
+ mandatory: true
33
+ allowMultiple: true
34
+ environments:
35
+ range: Environment.EnvironmentNode
36
+ mandatory: false
37
+ allowMultiple: true
38
+ updated:
39
+ range: integer
40
+ mandatory: false
41
+ created:
42
+ range: integer
43
+ mandatory: false
@@ -0,0 +1,22 @@
1
+ #%Dialect 1.0
2
+
3
+ dialect: Project Item
4
+ version: 1.0
5
+
6
+ uses:
7
+ ApiProject: ApiProjectVocabulary.yaml
8
+
9
+ documents:
10
+ root:
11
+ encodes: ProjectItemNode
12
+
13
+ nodeMappings:
14
+ ProjectItemNode:
15
+ classTerm: ApiProject.ProjectItem
16
+ mapping:
17
+ kind:
18
+ range: string
19
+ mandatory: true
20
+ key:
21
+ range: string
22
+ mandatory: true
@@ -0,0 +1,23 @@
1
+ #%Dialect 1.0
2
+
3
+ dialect: Project Request
4
+ version: 1.0
5
+
6
+ uses:
7
+ ApiProject: ApiProjectVocabulary.yaml
8
+
9
+ documents:
10
+ root:
11
+ encodes: ProjectRequestNode
12
+
13
+ nodeMappings:
14
+ ProjectRequestNode:
15
+ classTerm: ApiProject.ProjectRequest
16
+ mapping:
17
+ kind:
18
+ range: string
19
+ mandatory: true
20
+ key:
21
+ propertyTerm: schema-org.identifier
22
+ range: string
23
+ mandatory: true
@@ -0,0 +1,36 @@
1
+ #%Dialect 1.0
2
+
3
+ dialect: Project Schema
4
+ version: 1.0
5
+
6
+ uses:
7
+ Property: Property.yaml
8
+ ApiProject: ApiProjectVocabulary.yaml
9
+
10
+ documents:
11
+ root:
12
+ encodes: ProjectSchemaNode
13
+
14
+ nodeMappings:
15
+ ProjectSchemaNode:
16
+ classTerm: ApiProject.ProjectSchema
17
+ mapping:
18
+ kind:
19
+ range: string
20
+ mandatory: true
21
+ key:
22
+ range: string
23
+ mandatory: true
24
+ name:
25
+ range: string
26
+ mandatory: false
27
+ content:
28
+ mandatory: false
29
+ range: string
30
+ mime:
31
+ mandatory: false
32
+ range: string
33
+ properties:
34
+ range: Property.PropertyNode
35
+ allowMultiple: true
36
+ mandatory: false
@@ -0,0 +1,43 @@
1
+ #%Dialect 1.0
2
+
3
+ dialect: Property
4
+ version: 1.0
5
+
6
+ uses:
7
+ ApiProject: ApiProjectVocabulary.yaml
8
+
9
+ documents:
10
+ root:
11
+ encodes: PropertyNode
12
+
13
+ nodeMappings:
14
+ PropertyNode:
15
+ classTerm: ApiProject.Property
16
+ mapping:
17
+ kind:
18
+ range: string
19
+ mandatory: true
20
+ name:
21
+ range: string
22
+ mandatory: true
23
+ value:
24
+ range: string
25
+ mandatory: true
26
+ type:
27
+ range: string
28
+ mandatory: true
29
+ enabled:
30
+ range: boolean
31
+ mandatory: false
32
+ default:
33
+ range: string
34
+ mandatory: false
35
+ enum:
36
+ range: string
37
+ mandatory: false
38
+ description:
39
+ range: string
40
+ mandatory: false
41
+ required:
42
+ range: boolean
43
+ mandatory: false
@@ -0,0 +1,32 @@
1
+ #%Dialect 1.0
2
+
3
+ dialect: Provider
4
+ version: 1.0
5
+
6
+ uses:
7
+ ApiProject: ApiProjectVocabulary.yaml
8
+
9
+ documents:
10
+ root:
11
+ encodes: ProviderNode
12
+
13
+ nodeMappings:
14
+ ProviderNode:
15
+ classTerm: ApiProject.Provider
16
+ mapping:
17
+ kind:
18
+ propertyTerm: schema-org.name
19
+ range: string
20
+ mandatory: true
21
+ url:
22
+ propertyTerm: schema-org.url
23
+ range: string
24
+ mandatory: false
25
+ name:
26
+ propertyTerm: schema-org.name
27
+ range: string
28
+ mandatory: false
29
+ email:
30
+ propertyTerm: schema-org.email
31
+ range: string
32
+ mandatory: false
@@ -0,0 +1,31 @@
1
+ #%Dialect 1.0
2
+
3
+ dialect: Server
4
+ version: 1.0
5
+
6
+ uses:
7
+ ApiProject: ApiProjectVocabulary.yaml
8
+
9
+ documents:
10
+ root:
11
+ encodes: ServerNode
12
+
13
+ nodeMappings:
14
+ ServerNode:
15
+ classTerm: ApiProject.Server
16
+ mapping:
17
+ kind:
18
+ range: string
19
+ mandatory: true
20
+ uri:
21
+ range: string
22
+ mandatory: true
23
+ protocol:
24
+ range: string
25
+ mandatory: false
26
+ basePath:
27
+ range: string
28
+ mandatory: false
29
+ description:
30
+ range: string
31
+ mandatory: false
@@ -0,0 +1,28 @@
1
+ #%Dialect 1.0
2
+
3
+ dialect: Thing
4
+ version: 1.0
5
+
6
+ uses:
7
+ ApiProject: ApiProjectVocabulary.yaml
8
+
9
+ documents:
10
+ root:
11
+ encodes: ThingNode
12
+
13
+ nodeMappings:
14
+ ThingNode:
15
+ classTerm: ApiProject.Info
16
+ mapping:
17
+ kind:
18
+ range: string
19
+ mandatory: true
20
+ version:
21
+ range: string
22
+ mandatory: false
23
+ name:
24
+ range: string
25
+ mandatory: false
26
+ description:
27
+ range: string
28
+ mandatory: false