@truvity/sdk 0.0.2 → 0.0.7

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 (640) hide show
  1. package/Client.d.ts +5 -7
  2. package/Client.js +4 -9
  3. package/api/resources/credentials/client/Client.d.ts +151 -0
  4. package/api/resources/{pets → credentials}/client/Client.js +152 -135
  5. package/{dist/api/resources/pets/client/requests/PetCreateRequest.d.ts → api/resources/credentials/client/requests/CredentialCreateRequest.d.ts} +2 -2
  6. package/api/resources/{pets/client/requests/PetDeleteRequest.d.ts → credentials/client/requests/CredentialDeleteRequest.d.ts} +1 -1
  7. package/api/resources/{pets/client/requests/PetDownloadRequest.d.ts → credentials/client/requests/CredentialDownloadRequest.d.ts} +1 -1
  8. package/api/resources/{owners/client/requests/OwnerHistoryRequest.d.ts → credentials/client/requests/CredentialHistoryRequest.d.ts} +1 -1
  9. package/api/resources/{owners/client/requests/OwnerRevisionRequest.d.ts → credentials/client/requests/CredentialLatestRequest.d.ts} +1 -1
  10. package/{dist/api/resources/owners/client/requests/OwnerDeleteRequest.d.ts → api/resources/credentials/client/requests/CredentialRestoreRequest.d.ts} +1 -1
  11. package/api/resources/credentials/client/requests/CredentialRevisionRequest.d.ts +27 -0
  12. package/api/resources/credentials/client/requests/CredentialSearch.d.ts +14 -0
  13. package/api/resources/{pets/client/requests/PetUpdateRequest.d.ts → credentials/client/requests/CredentialUpdateRequest.d.ts} +2 -2
  14. package/api/resources/{pets/client/requests/UploadRequest.d.ts → credentials/client/requests/CredentialUploadRequest.d.ts} +1 -3
  15. package/api/resources/credentials/client/requests/index.d.ts +10 -0
  16. package/api/resources/index.d.ts +2 -4
  17. package/api/resources/index.js +3 -5
  18. package/api/types/Credential.d.ts +17 -0
  19. package/api/types/Credential11.d.ts +16 -0
  20. package/api/types/Credential20.d.ts +16 -0
  21. package/api/types/CredentialField.d.ts +21 -0
  22. package/api/types/{OwnerField.js → CredentialField.js} +7 -5
  23. package/{dist/api/types/OwnerFilter.d.ts → api/types/CredentialFilter.d.ts} +6 -5
  24. package/api/types/CredentialFilterData.d.ts +11 -0
  25. package/api/types/{PetList.d.ts → CredentialFilterKind.d.ts} +2 -5
  26. package/{dist/api/types/HashSha1.d.ts → api/types/CredentialId.d.ts} +2 -2
  27. package/api/types/{PetInput.d.ts → CredentialInput.d.ts} +2 -2
  28. package/api/types/CredentialIssuer.d.ts +7 -0
  29. package/api/types/{ChecksumCrc32.d.ts → CredentialList.d.ts} +3 -3
  30. package/api/types/{PetResource.d.ts → CredentialResource.d.ts} +3 -3
  31. package/api/types/{OwnerSort.d.ts → CredentialSort.d.ts} +3 -3
  32. package/api/types/CredentialSubject.d.ts +8 -0
  33. package/api/types/CredentialType.d.ts +7 -0
  34. package/api/types/CredentialValidFrom.d.ts +7 -0
  35. package/api/types/CredentialValidUntil.d.ts +7 -0
  36. package/api/types/{HashCrc32.d.ts → CredentilHolder.d.ts} +2 -2
  37. package/api/types/DataModelCredential.d.ts +16 -0
  38. package/api/types/FilterUriEqual.d.ts +10 -0
  39. package/api/types/FilterUriIsNotNull.d.ts +8 -0
  40. package/api/types/{HashSha1.d.ts → FilterUriIsNull.d.ts} +3 -2
  41. package/api/types/FilterUriNotEqual.d.ts +10 -0
  42. package/api/types/FilterUriOptional.d.ts +23 -0
  43. package/api/types/{ProblemResourceConflict.d.ts → ProblemConflictResource.d.ts} +4 -4
  44. package/api/types/{ProblemResourceMethodNotAllowed.d.ts → ProblemMethodNotAllowedResourceAlive.d.ts} +4 -6
  45. package/{dist/api/types/ProblemResourceMethodNotAllowed.d.ts → api/types/ProblemMethodNotAllowedResourceDeleted.d.ts} +4 -6
  46. package/api/types/ProblemNotFoundRevision.d.ts +2 -2
  47. package/api/types/Subject.d.ts +10 -0
  48. package/api/types/UploadResponse.d.ts +2 -2
  49. package/api/types/index.d.ts +28 -32
  50. package/api/types/index.js +28 -32
  51. package/core/schemas/builders/object/object.js +11 -15
  52. package/dist/Client.d.ts +5 -7
  53. package/dist/Client.js +4 -9
  54. package/dist/api/resources/credentials/client/Client.d.ts +151 -0
  55. package/dist/api/resources/{pets → credentials}/client/Client.js +152 -135
  56. package/{api/resources/pets/client/requests/PetCreateRequest.d.ts → dist/api/resources/credentials/client/requests/CredentialCreateRequest.d.ts} +2 -2
  57. package/{api/resources/owners/client/requests/OwnerDeleteRequest.d.ts → dist/api/resources/credentials/client/requests/CredentialDeleteRequest.d.ts} +1 -1
  58. package/dist/api/resources/{pets/client/requests/PetDownloadRequest.d.ts → credentials/client/requests/CredentialDownloadRequest.d.ts} +1 -1
  59. package/{api/resources/owners/client/requests/OwnerLatestRequest.d.ts → dist/api/resources/credentials/client/requests/CredentialHistoryRequest.d.ts} +1 -1
  60. package/{api/resources/pets/client/requests/PetHistoryRequest.d.ts → dist/api/resources/credentials/client/requests/CredentialLatestRequest.d.ts} +1 -1
  61. package/dist/api/resources/{pets/client/requests/PetDeleteRequest.d.ts → credentials/client/requests/CredentialRestoreRequest.d.ts} +1 -1
  62. package/dist/api/resources/credentials/client/requests/CredentialRevisionRequest.d.ts +27 -0
  63. package/dist/api/resources/credentials/client/requests/CredentialSearch.d.ts +14 -0
  64. package/dist/api/resources/{pets/client/requests/PetUpdateRequest.d.ts → credentials/client/requests/CredentialUpdateRequest.d.ts} +2 -2
  65. package/dist/api/resources/{pets/client/requests/UploadRequest.d.ts → credentials/client/requests/CredentialUploadRequest.d.ts} +1 -3
  66. package/dist/api/resources/credentials/client/requests/index.d.ts +10 -0
  67. package/dist/api/resources/index.d.ts +2 -4
  68. package/dist/api/resources/index.js +3 -5
  69. package/dist/api/types/Credential.d.ts +17 -0
  70. package/dist/api/types/Credential11.d.ts +16 -0
  71. package/dist/api/types/Credential20.d.ts +16 -0
  72. package/dist/api/types/CredentialField.d.ts +21 -0
  73. package/dist/api/types/{OwnerField.js → CredentialField.js} +7 -5
  74. package/{api/types/PetFilter.d.ts → dist/api/types/CredentialFilter.d.ts} +6 -5
  75. package/dist/api/types/CredentialFilterData.d.ts +11 -0
  76. package/dist/api/types/{PetList.d.ts → CredentialFilterKind.d.ts} +2 -5
  77. package/dist/api/types/{HashCrc32.d.ts → CredentialId.d.ts} +2 -2
  78. package/dist/api/types/{PetInput.d.ts → CredentialInput.d.ts} +2 -2
  79. package/dist/api/types/CredentialIssuer.d.ts +7 -0
  80. package/{api/types/ChecksumCrc32C.d.ts → dist/api/types/CredentialList.d.ts} +3 -3
  81. package/{api/types/OwnerResource.d.ts → dist/api/types/CredentialResource.d.ts} +3 -3
  82. package/{api/types/PetSort.d.ts → dist/api/types/CredentialSort.d.ts} +3 -3
  83. package/dist/api/types/CredentialSubject.d.ts +8 -0
  84. package/dist/api/types/CredentialType.d.ts +7 -0
  85. package/dist/api/types/CredentialValidFrom.d.ts +7 -0
  86. package/dist/api/types/CredentialValidUntil.d.ts +7 -0
  87. package/dist/api/types/CredentilHolder.d.ts +7 -0
  88. package/dist/api/types/DataModelCredential.d.ts +16 -0
  89. package/dist/api/types/FilterUriEqual.d.ts +10 -0
  90. package/dist/api/types/FilterUriIsNotNull.d.ts +8 -0
  91. package/dist/api/types/FilterUriIsNull.d.ts +8 -0
  92. package/dist/api/types/FilterUriNotEqual.d.ts +10 -0
  93. package/dist/api/types/FilterUriOptional.d.ts +23 -0
  94. package/dist/api/types/{ProblemResourceConflict.d.ts → ProblemConflictResource.d.ts} +4 -4
  95. package/dist/api/types/ProblemMethodNotAllowedResourceAlive.d.ts +24 -0
  96. package/dist/api/types/ProblemMethodNotAllowedResourceDeleted.d.ts +24 -0
  97. package/dist/api/types/ProblemNotFoundRevision.d.ts +2 -2
  98. package/dist/api/types/Subject.d.ts +10 -0
  99. package/dist/api/types/UploadResponse.d.ts +2 -2
  100. package/dist/api/types/index.d.ts +28 -32
  101. package/dist/api/types/index.js +28 -32
  102. package/dist/core/schemas/builders/object/object.js +11 -15
  103. package/dist/serialization/resources/credentials/client/requests/CredentialSearch.d.ts +15 -0
  104. package/dist/serialization/resources/credentials/client/requests/CredentialSearch.js +36 -0
  105. package/dist/serialization/resources/credentials/client/requests/index.d.ts +1 -0
  106. package/dist/serialization/resources/credentials/client/requests/index.js +5 -0
  107. package/dist/serialization/resources/index.d.ts +2 -4
  108. package/dist/serialization/resources/index.js +3 -5
  109. package/dist/serialization/types/Annotations.d.ts +2 -1
  110. package/dist/serialization/types/Annotations.js +2 -10
  111. package/dist/serialization/types/BadRequestErrorBody.d.ts +6 -3
  112. package/dist/serialization/types/BadRequestErrorBody.js +6 -12
  113. package/dist/serialization/types/Credential.d.ts +27 -0
  114. package/dist/serialization/types/{ChecksumCrc32C.js → Credential.js} +18 -12
  115. package/dist/serialization/types/Credential11.d.ts +25 -0
  116. package/{serialization/types/ChecksumSha1.js → dist/serialization/types/Credential11.js} +16 -12
  117. package/dist/serialization/types/Credential20.d.ts +25 -0
  118. package/dist/serialization/types/{ChecksumSha1.js → Credential20.js} +16 -12
  119. package/dist/serialization/types/CredentialField.d.ts +10 -0
  120. package/dist/serialization/types/{OwnerField.js → CredentialField.js} +7 -5
  121. package/dist/serialization/types/CredentialFilter.d.ts +30 -0
  122. package/dist/serialization/types/CredentialFilter.js +51 -0
  123. package/dist/serialization/types/CredentialFilterData.d.ts +18 -0
  124. package/dist/serialization/types/CredentialFilterData.js +39 -0
  125. package/dist/serialization/types/CredentialFilterKind.d.ts +13 -0
  126. package/dist/serialization/types/CredentialFilterKind.js +34 -0
  127. package/dist/serialization/types/{HashSha1.d.ts → CredentialId.d.ts} +2 -2
  128. package/dist/serialization/types/{HashCrc32C.js → CredentialId.js} +2 -2
  129. package/dist/serialization/types/CredentialInput.d.ts +15 -0
  130. package/dist/serialization/types/{Owner.js → CredentialInput.js} +6 -4
  131. package/dist/serialization/types/CredentialIssuer.d.ts +10 -0
  132. package/dist/serialization/types/CredentialIssuer.js +31 -0
  133. package/dist/serialization/types/CredentialList.d.ts +13 -0
  134. package/dist/serialization/types/CredentialList.js +34 -0
  135. package/dist/serialization/types/CredentialResource.d.ts +29 -0
  136. package/dist/serialization/types/CredentialResource.js +50 -0
  137. package/dist/serialization/types/CredentialSort.d.ts +15 -0
  138. package/dist/serialization/types/CredentialSort.js +36 -0
  139. package/dist/serialization/types/CredentialSubject.d.ts +11 -0
  140. package/dist/serialization/types/CredentialSubject.js +32 -0
  141. package/dist/serialization/types/CredentialType.d.ts +10 -0
  142. package/dist/serialization/types/CredentialType.js +31 -0
  143. package/dist/serialization/types/CredentialValidFrom.d.ts +10 -0
  144. package/dist/serialization/types/CredentialValidFrom.js +31 -0
  145. package/dist/serialization/types/CredentialValidUntil.d.ts +10 -0
  146. package/dist/serialization/types/CredentialValidUntil.js +31 -0
  147. package/dist/serialization/types/{HashCrc32.d.ts → CredentilHolder.d.ts} +2 -2
  148. package/dist/serialization/types/{HashSha1.js → CredentilHolder.js} +2 -2
  149. package/dist/serialization/types/DataModelCredential.d.ts +18 -0
  150. package/dist/serialization/types/DataModelCredential.js +41 -0
  151. package/dist/serialization/types/FilterId.d.ts +8 -4
  152. package/dist/serialization/types/FilterId.js +8 -13
  153. package/dist/serialization/types/FilterInteger.d.ts +14 -7
  154. package/dist/serialization/types/FilterInteger.js +14 -16
  155. package/dist/serialization/types/FilterString.d.ts +4 -2
  156. package/dist/serialization/types/FilterString.js +4 -11
  157. package/dist/serialization/types/FilterTimestamp.d.ts +14 -7
  158. package/dist/serialization/types/FilterTimestamp.js +14 -16
  159. package/dist/serialization/types/FilterTimestampOptional.d.ts +18 -9
  160. package/dist/serialization/types/FilterTimestampOptional.js +18 -18
  161. package/dist/serialization/types/FilterUriEqual.d.ts +12 -0
  162. package/dist/serialization/types/{ChecksumAlgorithm.js → FilterUriEqual.js} +4 -2
  163. package/dist/serialization/types/{PetList.d.ts → FilterUriIsNotNull.d.ts} +2 -3
  164. package/dist/serialization/types/FilterUriIsNotNull.js +31 -0
  165. package/{serialization/types/PetList.d.ts → dist/serialization/types/FilterUriIsNull.d.ts} +2 -3
  166. package/dist/serialization/types/FilterUriIsNull.js +31 -0
  167. package/dist/serialization/types/{OwnerList.d.ts → FilterUriNotEqual.d.ts} +3 -3
  168. package/dist/serialization/types/FilterUriNotEqual.js +33 -0
  169. package/dist/serialization/types/FilterUriOptional.d.ts +26 -0
  170. package/dist/serialization/types/FilterUriOptional.js +45 -0
  171. package/dist/serialization/types/Labels.d.ts +2 -1
  172. package/dist/serialization/types/Labels.js +2 -10
  173. package/dist/serialization/types/ProblemBodyContent.d.ts +2 -1
  174. package/dist/serialization/types/ProblemBodyContent.js +2 -10
  175. package/dist/serialization/types/ProblemConflictResource.d.ts +21 -0
  176. package/dist/serialization/types/ProblemConflictResource.js +42 -0
  177. package/dist/serialization/types/ProblemForbidden.d.ts +2 -1
  178. package/dist/serialization/types/ProblemForbidden.js +2 -10
  179. package/dist/serialization/types/ProblemInternalServerError.d.ts +2 -1
  180. package/dist/serialization/types/ProblemInternalServerError.js +2 -10
  181. package/dist/serialization/types/ProblemMethodNotAllowedResourceAlive.d.ts +19 -0
  182. package/dist/serialization/types/ProblemMethodNotAllowedResourceAlive.js +40 -0
  183. package/dist/serialization/types/ProblemMethodNotAllowedResourceDeleted.d.ts +19 -0
  184. package/dist/serialization/types/ProblemMethodNotAllowedResourceDeleted.js +40 -0
  185. package/dist/serialization/types/ProblemNotFoundBlob.d.ts +4 -2
  186. package/dist/serialization/types/ProblemNotFoundBlob.js +4 -11
  187. package/dist/serialization/types/ProblemNotFoundResource.d.ts +4 -2
  188. package/dist/serialization/types/ProblemNotFoundResource.js +4 -11
  189. package/dist/serialization/types/ProblemNotFoundRevision.d.ts +4 -2
  190. package/dist/serialization/types/ProblemNotFoundRevision.js +4 -11
  191. package/dist/serialization/types/ProblemNullUnicode.d.ts +2 -1
  192. package/dist/serialization/types/ProblemNullUnicode.js +2 -10
  193. package/dist/serialization/types/ProblemUnauthorized.d.ts +2 -1
  194. package/dist/serialization/types/ProblemUnauthorized.js +2 -10
  195. package/dist/serialization/types/ProblemUnsupportedMediaType.d.ts +4 -2
  196. package/dist/serialization/types/ProblemUnsupportedMediaType.js +4 -11
  197. package/dist/serialization/types/ProblemValidation.d.ts +4 -2
  198. package/dist/serialization/types/ProblemValidation.js +4 -2
  199. package/dist/serialization/types/Resource.d.ts +16 -9
  200. package/dist/serialization/types/Resource.js +16 -18
  201. package/dist/serialization/types/ResourceKind.d.ts +4 -2
  202. package/dist/serialization/types/ResourceKind.js +4 -11
  203. package/dist/serialization/types/{Owner.d.ts → Subject.d.ts} +3 -4
  204. package/dist/serialization/types/Subject.js +33 -0
  205. package/dist/serialization/types/UploadResponse.d.ts +5 -4
  206. package/dist/serialization/types/UploadResponse.js +5 -13
  207. package/dist/serialization/types/index.d.ts +28 -32
  208. package/dist/serialization/types/index.js +28 -32
  209. package/package.json +1 -1
  210. package/serialization/resources/credentials/client/requests/CredentialSearch.d.ts +15 -0
  211. package/serialization/resources/credentials/client/requests/CredentialSearch.js +36 -0
  212. package/serialization/resources/credentials/client/requests/index.d.ts +1 -0
  213. package/serialization/resources/credentials/client/requests/index.js +5 -0
  214. package/serialization/resources/index.d.ts +2 -4
  215. package/serialization/resources/index.js +3 -5
  216. package/serialization/types/Annotations.d.ts +2 -1
  217. package/serialization/types/Annotations.js +2 -10
  218. package/serialization/types/BadRequestErrorBody.d.ts +6 -3
  219. package/serialization/types/BadRequestErrorBody.js +6 -12
  220. package/serialization/types/Credential.d.ts +27 -0
  221. package/{dist/serialization/types/ChecksumSha256.js → serialization/types/Credential.js} +18 -12
  222. package/serialization/types/Credential11.d.ts +25 -0
  223. package/serialization/types/Credential11.js +46 -0
  224. package/serialization/types/Credential20.d.ts +25 -0
  225. package/serialization/types/Credential20.js +46 -0
  226. package/serialization/types/CredentialField.d.ts +10 -0
  227. package/{dist/serialization/types/PetField.js → serialization/types/CredentialField.js} +7 -6
  228. package/serialization/types/CredentialFilter.d.ts +30 -0
  229. package/serialization/types/CredentialFilter.js +51 -0
  230. package/serialization/types/CredentialFilterData.d.ts +18 -0
  231. package/serialization/types/CredentialFilterData.js +39 -0
  232. package/serialization/types/CredentialFilterKind.d.ts +13 -0
  233. package/serialization/types/CredentialFilterKind.js +34 -0
  234. package/{dist/serialization/types/HashCrc32C.d.ts → serialization/types/CredentialId.d.ts} +2 -2
  235. package/{dist/serialization/types/HashCrc32.js → serialization/types/CredentialId.js} +2 -2
  236. package/serialization/types/CredentialInput.d.ts +15 -0
  237. package/serialization/types/{Owner.js → CredentialInput.js} +6 -4
  238. package/serialization/types/CredentialIssuer.d.ts +10 -0
  239. package/serialization/types/CredentialIssuer.js +31 -0
  240. package/serialization/types/CredentialList.d.ts +13 -0
  241. package/serialization/types/CredentialList.js +34 -0
  242. package/serialization/types/CredentialResource.d.ts +29 -0
  243. package/serialization/types/CredentialResource.js +50 -0
  244. package/serialization/types/CredentialSort.d.ts +15 -0
  245. package/serialization/types/CredentialSort.js +36 -0
  246. package/serialization/types/CredentialSubject.d.ts +11 -0
  247. package/serialization/types/CredentialSubject.js +32 -0
  248. package/serialization/types/CredentialType.d.ts +10 -0
  249. package/serialization/types/CredentialType.js +31 -0
  250. package/serialization/types/CredentialValidFrom.d.ts +10 -0
  251. package/serialization/types/CredentialValidFrom.js +31 -0
  252. package/serialization/types/CredentialValidUntil.d.ts +10 -0
  253. package/serialization/types/CredentialValidUntil.js +31 -0
  254. package/{dist/serialization/types/HashSha256.d.ts → serialization/types/CredentilHolder.d.ts} +2 -2
  255. package/{dist/serialization/types/HashSha256.js → serialization/types/CredentilHolder.js} +2 -2
  256. package/serialization/types/DataModelCredential.d.ts +18 -0
  257. package/serialization/types/DataModelCredential.js +41 -0
  258. package/serialization/types/FilterId.d.ts +8 -4
  259. package/serialization/types/FilterId.js +8 -13
  260. package/serialization/types/FilterInteger.d.ts +14 -7
  261. package/serialization/types/FilterInteger.js +14 -16
  262. package/serialization/types/FilterString.d.ts +4 -2
  263. package/serialization/types/FilterString.js +4 -11
  264. package/serialization/types/FilterTimestamp.d.ts +14 -7
  265. package/serialization/types/FilterTimestamp.js +14 -16
  266. package/serialization/types/FilterTimestampOptional.d.ts +18 -9
  267. package/serialization/types/FilterTimestampOptional.js +18 -18
  268. package/serialization/types/FilterUriEqual.d.ts +12 -0
  269. package/serialization/types/FilterUriEqual.js +33 -0
  270. package/serialization/types/{Owner.d.ts → FilterUriIsNotNull.d.ts} +2 -4
  271. package/serialization/types/FilterUriIsNotNull.js +31 -0
  272. package/serialization/types/FilterUriIsNull.d.ts +11 -0
  273. package/serialization/types/FilterUriIsNull.js +31 -0
  274. package/{dist/serialization/types/ChecksumSha1.d.ts → serialization/types/FilterUriNotEqual.d.ts} +3 -3
  275. package/serialization/types/FilterUriNotEqual.js +33 -0
  276. package/serialization/types/FilterUriOptional.d.ts +26 -0
  277. package/serialization/types/FilterUriOptional.js +45 -0
  278. package/serialization/types/Labels.d.ts +2 -1
  279. package/serialization/types/Labels.js +2 -10
  280. package/serialization/types/ProblemBodyContent.d.ts +2 -1
  281. package/serialization/types/ProblemBodyContent.js +2 -10
  282. package/serialization/types/ProblemConflictResource.d.ts +21 -0
  283. package/serialization/types/ProblemConflictResource.js +42 -0
  284. package/serialization/types/ProblemForbidden.d.ts +2 -1
  285. package/serialization/types/ProblemForbidden.js +2 -10
  286. package/serialization/types/ProblemInternalServerError.d.ts +2 -1
  287. package/serialization/types/ProblemInternalServerError.js +2 -10
  288. package/serialization/types/ProblemMethodNotAllowedResourceAlive.d.ts +19 -0
  289. package/serialization/types/ProblemMethodNotAllowedResourceAlive.js +40 -0
  290. package/serialization/types/ProblemMethodNotAllowedResourceDeleted.d.ts +19 -0
  291. package/serialization/types/ProblemMethodNotAllowedResourceDeleted.js +40 -0
  292. package/serialization/types/ProblemNotFoundBlob.d.ts +4 -2
  293. package/serialization/types/ProblemNotFoundBlob.js +4 -11
  294. package/serialization/types/ProblemNotFoundResource.d.ts +4 -2
  295. package/serialization/types/ProblemNotFoundResource.js +4 -11
  296. package/serialization/types/ProblemNotFoundRevision.d.ts +4 -2
  297. package/serialization/types/ProblemNotFoundRevision.js +4 -11
  298. package/serialization/types/ProblemNullUnicode.d.ts +2 -1
  299. package/serialization/types/ProblemNullUnicode.js +2 -10
  300. package/serialization/types/ProblemUnauthorized.d.ts +2 -1
  301. package/serialization/types/ProblemUnauthorized.js +2 -10
  302. package/serialization/types/ProblemUnsupportedMediaType.d.ts +4 -2
  303. package/serialization/types/ProblemUnsupportedMediaType.js +4 -11
  304. package/serialization/types/ProblemValidation.d.ts +4 -2
  305. package/serialization/types/ProblemValidation.js +4 -2
  306. package/serialization/types/Resource.d.ts +16 -9
  307. package/serialization/types/Resource.js +16 -18
  308. package/serialization/types/ResourceKind.d.ts +4 -2
  309. package/serialization/types/ResourceKind.js +4 -11
  310. package/serialization/types/Subject.d.ts +12 -0
  311. package/serialization/types/Subject.js +33 -0
  312. package/serialization/types/UploadResponse.d.ts +5 -4
  313. package/serialization/types/UploadResponse.js +5 -13
  314. package/serialization/types/index.d.ts +28 -32
  315. package/serialization/types/index.js +28 -32
  316. package/api/resources/owners/client/Client.d.ts +0 -124
  317. package/api/resources/owners/client/Client.js +0 -711
  318. package/api/resources/owners/client/requests/OwnerCreateRequest.d.ts +0 -38
  319. package/api/resources/owners/client/requests/OwnerSearch.d.ts +0 -14
  320. package/api/resources/owners/client/requests/OwnerUpdateRequest.d.ts +0 -57
  321. package/api/resources/owners/client/requests/index.d.ts +0 -7
  322. package/api/resources/pets/client/Client.d.ts +0 -133
  323. package/api/resources/pets/client/requests/PetLatestRequest.d.ts +0 -27
  324. package/api/resources/pets/client/requests/PetRevisionRequest.d.ts +0 -27
  325. package/api/resources/pets/client/requests/PetSearch.d.ts +0 -14
  326. package/api/resources/pets/client/requests/index.d.ts +0 -9
  327. package/api/types/Checksum.d.ts +0 -22
  328. package/api/types/ChecksumAlgorithm.d.ts +0 -13
  329. package/api/types/ChecksumAlgorithm.js +0 -12
  330. package/api/types/ChecksumSha1.d.ts +0 -10
  331. package/api/types/ChecksumSha256.d.ts +0 -10
  332. package/api/types/HashCrc32C.d.ts +0 -7
  333. package/api/types/HashSha256.d.ts +0 -7
  334. package/api/types/HttpMethod.d.ts +0 -18
  335. package/api/types/HttpMethod.js +0 -17
  336. package/api/types/Owner.d.ts +0 -12
  337. package/api/types/OwnerField.d.ts +0 -19
  338. package/api/types/OwnerFilter.d.ts +0 -18
  339. package/api/types/OwnerFilterData.d.ts +0 -8
  340. package/api/types/OwnerInput.d.ts +0 -14
  341. package/api/types/OwnerList.d.ts +0 -10
  342. package/api/types/Pet.d.ts +0 -14
  343. package/api/types/PetField.d.ts +0 -20
  344. package/api/types/PetField.js +0 -19
  345. package/api/types/PetFilterData.d.ts +0 -9
  346. package/api/types/RequestedETag.d.ts +0 -12
  347. package/api/types/RequestedRevision.d.ts +0 -12
  348. package/api/types/Species.d.ts +0 -13
  349. package/api/types/Species.js +0 -11
  350. package/dist/api/resources/owners/client/Client.d.ts +0 -124
  351. package/dist/api/resources/owners/client/Client.js +0 -711
  352. package/dist/api/resources/owners/client/requests/OwnerCreateRequest.d.ts +0 -38
  353. package/dist/api/resources/owners/client/requests/OwnerHistoryRequest.d.ts +0 -27
  354. package/dist/api/resources/owners/client/requests/OwnerLatestRequest.d.ts +0 -27
  355. package/dist/api/resources/owners/client/requests/OwnerRevisionRequest.d.ts +0 -27
  356. package/dist/api/resources/owners/client/requests/OwnerSearch.d.ts +0 -14
  357. package/dist/api/resources/owners/client/requests/OwnerUpdateRequest.d.ts +0 -57
  358. package/dist/api/resources/owners/client/requests/index.d.ts +0 -7
  359. package/dist/api/resources/owners/client/requests/index.js +0 -2
  360. package/dist/api/resources/pets/client/Client.d.ts +0 -133
  361. package/dist/api/resources/pets/client/requests/PetHistoryRequest.d.ts +0 -27
  362. package/dist/api/resources/pets/client/requests/PetLatestRequest.d.ts +0 -27
  363. package/dist/api/resources/pets/client/requests/PetRevisionRequest.d.ts +0 -27
  364. package/dist/api/resources/pets/client/requests/PetSearch.d.ts +0 -14
  365. package/dist/api/resources/pets/client/requests/index.d.ts +0 -9
  366. package/dist/api/resources/pets/client/requests/index.js +0 -2
  367. package/dist/api/types/Checksum.d.ts +0 -22
  368. package/dist/api/types/ChecksumAlgorithm.d.ts +0 -13
  369. package/dist/api/types/ChecksumAlgorithm.js +0 -12
  370. package/dist/api/types/ChecksumCrc32.d.ts +0 -10
  371. package/dist/api/types/ChecksumCrc32C.d.ts +0 -10
  372. package/dist/api/types/ChecksumSha1.d.ts +0 -10
  373. package/dist/api/types/ChecksumSha256.d.ts +0 -10
  374. package/dist/api/types/HashCrc32C.d.ts +0 -7
  375. package/dist/api/types/HashSha256.d.ts +0 -7
  376. package/dist/api/types/HttpMethod.d.ts +0 -18
  377. package/dist/api/types/HttpMethod.js +0 -17
  378. package/dist/api/types/Owner.d.ts +0 -12
  379. package/dist/api/types/OwnerField.d.ts +0 -19
  380. package/dist/api/types/OwnerFilterData.d.ts +0 -8
  381. package/dist/api/types/OwnerInput.d.ts +0 -14
  382. package/dist/api/types/OwnerList.d.ts +0 -10
  383. package/dist/api/types/OwnerResource.d.ts +0 -19
  384. package/dist/api/types/OwnerSort.d.ts +0 -11
  385. package/dist/api/types/OwnerSort.js +0 -5
  386. package/dist/api/types/Pet.d.ts +0 -14
  387. package/dist/api/types/Pet.js +0 -5
  388. package/dist/api/types/PetField.d.ts +0 -20
  389. package/dist/api/types/PetField.js +0 -19
  390. package/dist/api/types/PetFilter.d.ts +0 -18
  391. package/dist/api/types/PetFilter.js +0 -5
  392. package/dist/api/types/PetFilterData.d.ts +0 -9
  393. package/dist/api/types/PetFilterData.js +0 -5
  394. package/dist/api/types/PetInput.js +0 -5
  395. package/dist/api/types/PetList.js +0 -5
  396. package/dist/api/types/PetResource.d.ts +0 -19
  397. package/dist/api/types/PetResource.js +0 -5
  398. package/dist/api/types/PetSort.d.ts +0 -11
  399. package/dist/api/types/PetSort.js +0 -5
  400. package/dist/api/types/ProblemResourceConflict.js +0 -5
  401. package/dist/api/types/ProblemResourceMethodNotAllowed.js +0 -5
  402. package/dist/api/types/RequestedETag.d.ts +0 -12
  403. package/dist/api/types/RequestedETag.js +0 -5
  404. package/dist/api/types/RequestedRevision.d.ts +0 -12
  405. package/dist/api/types/RequestedRevision.js +0 -5
  406. package/dist/api/types/Species.d.ts +0 -13
  407. package/dist/api/types/Species.js +0 -11
  408. package/dist/serialization/resources/owners/client/index.d.ts +0 -1
  409. package/dist/serialization/resources/owners/client/index.js +0 -17
  410. package/dist/serialization/resources/owners/client/requests/OwnerSearch.d.ts +0 -13
  411. package/dist/serialization/resources/owners/client/requests/OwnerSearch.js +0 -47
  412. package/dist/serialization/resources/owners/client/requests/index.d.ts +0 -1
  413. package/dist/serialization/resources/owners/client/requests/index.js +0 -5
  414. package/dist/serialization/resources/owners/index.d.ts +0 -1
  415. package/dist/serialization/resources/owners/index.js +0 -17
  416. package/dist/serialization/resources/pets/client/index.d.ts +0 -1
  417. package/dist/serialization/resources/pets/client/index.js +0 -17
  418. package/dist/serialization/resources/pets/client/requests/PetSearch.d.ts +0 -13
  419. package/dist/serialization/resources/pets/client/requests/PetSearch.js +0 -47
  420. package/dist/serialization/resources/pets/client/requests/UploadRequest.d.ts +0 -12
  421. package/dist/serialization/resources/pets/client/requests/UploadRequest.js +0 -42
  422. package/dist/serialization/resources/pets/client/requests/index.d.ts +0 -2
  423. package/dist/serialization/resources/pets/client/requests/index.js +0 -7
  424. package/dist/serialization/resources/pets/index.d.ts +0 -1
  425. package/dist/serialization/resources/pets/index.js +0 -17
  426. package/dist/serialization/types/Checksum.d.ts +0 -22
  427. package/dist/serialization/types/Checksum.js +0 -50
  428. package/dist/serialization/types/ChecksumAlgorithm.d.ts +0 -10
  429. package/dist/serialization/types/ChecksumCrc32.d.ts +0 -12
  430. package/dist/serialization/types/ChecksumCrc32.js +0 -42
  431. package/dist/serialization/types/ChecksumCrc32C.d.ts +0 -12
  432. package/dist/serialization/types/ChecksumSha256.d.ts +0 -12
  433. package/dist/serialization/types/HttpMethod.d.ts +0 -10
  434. package/dist/serialization/types/HttpMethod.js +0 -31
  435. package/dist/serialization/types/OwnerField.d.ts +0 -10
  436. package/dist/serialization/types/OwnerFilter.d.ts +0 -20
  437. package/dist/serialization/types/OwnerFilter.js +0 -50
  438. package/dist/serialization/types/OwnerFilterData.d.ts +0 -13
  439. package/dist/serialization/types/OwnerFilterData.js +0 -43
  440. package/dist/serialization/types/OwnerInput.d.ts +0 -14
  441. package/dist/serialization/types/OwnerInput.js +0 -44
  442. package/dist/serialization/types/OwnerList.js +0 -42
  443. package/dist/serialization/types/OwnerResource.d.ts +0 -21
  444. package/dist/serialization/types/OwnerResource.js +0 -51
  445. package/dist/serialization/types/OwnerSort.d.ts +0 -13
  446. package/dist/serialization/types/OwnerSort.js +0 -43
  447. package/dist/serialization/types/Pet.d.ts +0 -14
  448. package/dist/serialization/types/Pet.js +0 -44
  449. package/dist/serialization/types/PetField.d.ts +0 -10
  450. package/dist/serialization/types/PetFilter.d.ts +0 -20
  451. package/dist/serialization/types/PetFilter.js +0 -50
  452. package/dist/serialization/types/PetFilterData.d.ts +0 -14
  453. package/dist/serialization/types/PetFilterData.js +0 -44
  454. package/dist/serialization/types/PetInput.d.ts +0 -13
  455. package/dist/serialization/types/PetInput.js +0 -43
  456. package/dist/serialization/types/PetList.js +0 -42
  457. package/dist/serialization/types/PetResource.d.ts +0 -21
  458. package/dist/serialization/types/PetResource.js +0 -51
  459. package/dist/serialization/types/PetSort.d.ts +0 -13
  460. package/dist/serialization/types/PetSort.js +0 -43
  461. package/dist/serialization/types/ProblemResourceConflict.d.ts +0 -18
  462. package/dist/serialization/types/ProblemResourceConflict.js +0 -48
  463. package/dist/serialization/types/ProblemResourceMethodNotAllowed.d.ts +0 -19
  464. package/dist/serialization/types/ProblemResourceMethodNotAllowed.js +0 -49
  465. package/dist/serialization/types/RequestedETag.d.ts +0 -14
  466. package/dist/serialization/types/RequestedETag.js +0 -44
  467. package/dist/serialization/types/RequestedRevision.d.ts +0 -14
  468. package/dist/serialization/types/RequestedRevision.js +0 -44
  469. package/dist/serialization/types/Species.d.ts +0 -10
  470. package/dist/serialization/types/Species.js +0 -35
  471. package/serialization/resources/owners/client/index.d.ts +0 -1
  472. package/serialization/resources/owners/client/index.js +0 -17
  473. package/serialization/resources/owners/client/requests/OwnerSearch.d.ts +0 -13
  474. package/serialization/resources/owners/client/requests/OwnerSearch.js +0 -47
  475. package/serialization/resources/owners/client/requests/index.d.ts +0 -1
  476. package/serialization/resources/owners/client/requests/index.js +0 -5
  477. package/serialization/resources/owners/index.d.ts +0 -1
  478. package/serialization/resources/owners/index.js +0 -17
  479. package/serialization/resources/pets/client/index.d.ts +0 -1
  480. package/serialization/resources/pets/client/index.js +0 -17
  481. package/serialization/resources/pets/client/requests/PetSearch.d.ts +0 -13
  482. package/serialization/resources/pets/client/requests/PetSearch.js +0 -47
  483. package/serialization/resources/pets/client/requests/UploadRequest.d.ts +0 -12
  484. package/serialization/resources/pets/client/requests/UploadRequest.js +0 -42
  485. package/serialization/resources/pets/client/requests/index.d.ts +0 -2
  486. package/serialization/resources/pets/client/requests/index.js +0 -7
  487. package/serialization/resources/pets/index.d.ts +0 -1
  488. package/serialization/resources/pets/index.js +0 -17
  489. package/serialization/types/Checksum.d.ts +0 -22
  490. package/serialization/types/Checksum.js +0 -50
  491. package/serialization/types/ChecksumAlgorithm.d.ts +0 -10
  492. package/serialization/types/ChecksumAlgorithm.js +0 -31
  493. package/serialization/types/ChecksumCrc32.d.ts +0 -12
  494. package/serialization/types/ChecksumCrc32.js +0 -42
  495. package/serialization/types/ChecksumCrc32C.d.ts +0 -12
  496. package/serialization/types/ChecksumCrc32C.js +0 -42
  497. package/serialization/types/ChecksumSha1.d.ts +0 -12
  498. package/serialization/types/ChecksumSha256.d.ts +0 -12
  499. package/serialization/types/ChecksumSha256.js +0 -42
  500. package/serialization/types/HashCrc32.d.ts +0 -10
  501. package/serialization/types/HashCrc32.js +0 -31
  502. package/serialization/types/HashCrc32C.d.ts +0 -10
  503. package/serialization/types/HashCrc32C.js +0 -31
  504. package/serialization/types/HashSha1.d.ts +0 -10
  505. package/serialization/types/HashSha1.js +0 -31
  506. package/serialization/types/HashSha256.d.ts +0 -10
  507. package/serialization/types/HashSha256.js +0 -31
  508. package/serialization/types/HttpMethod.d.ts +0 -10
  509. package/serialization/types/HttpMethod.js +0 -31
  510. package/serialization/types/OwnerField.d.ts +0 -10
  511. package/serialization/types/OwnerField.js +0 -42
  512. package/serialization/types/OwnerFilter.d.ts +0 -20
  513. package/serialization/types/OwnerFilter.js +0 -50
  514. package/serialization/types/OwnerFilterData.d.ts +0 -13
  515. package/serialization/types/OwnerFilterData.js +0 -43
  516. package/serialization/types/OwnerInput.d.ts +0 -14
  517. package/serialization/types/OwnerInput.js +0 -44
  518. package/serialization/types/OwnerList.d.ts +0 -12
  519. package/serialization/types/OwnerList.js +0 -42
  520. package/serialization/types/OwnerResource.d.ts +0 -21
  521. package/serialization/types/OwnerResource.js +0 -51
  522. package/serialization/types/OwnerSort.d.ts +0 -13
  523. package/serialization/types/OwnerSort.js +0 -43
  524. package/serialization/types/Pet.d.ts +0 -14
  525. package/serialization/types/Pet.js +0 -44
  526. package/serialization/types/PetField.d.ts +0 -10
  527. package/serialization/types/PetField.js +0 -43
  528. package/serialization/types/PetFilter.d.ts +0 -20
  529. package/serialization/types/PetFilter.js +0 -50
  530. package/serialization/types/PetFilterData.d.ts +0 -14
  531. package/serialization/types/PetFilterData.js +0 -44
  532. package/serialization/types/PetInput.d.ts +0 -13
  533. package/serialization/types/PetInput.js +0 -43
  534. package/serialization/types/PetList.js +0 -42
  535. package/serialization/types/PetResource.d.ts +0 -21
  536. package/serialization/types/PetResource.js +0 -51
  537. package/serialization/types/PetSort.d.ts +0 -13
  538. package/serialization/types/PetSort.js +0 -43
  539. package/serialization/types/ProblemResourceConflict.d.ts +0 -18
  540. package/serialization/types/ProblemResourceConflict.js +0 -48
  541. package/serialization/types/ProblemResourceMethodNotAllowed.d.ts +0 -19
  542. package/serialization/types/ProblemResourceMethodNotAllowed.js +0 -49
  543. package/serialization/types/RequestedETag.d.ts +0 -14
  544. package/serialization/types/RequestedETag.js +0 -44
  545. package/serialization/types/RequestedRevision.d.ts +0 -14
  546. package/serialization/types/RequestedRevision.js +0 -44
  547. package/serialization/types/Species.d.ts +0 -10
  548. package/serialization/types/Species.js +0 -35
  549. /package/api/resources/{owners → credentials}/client/index.d.ts +0 -0
  550. /package/api/resources/{owners → credentials}/client/index.js +0 -0
  551. /package/api/resources/{owners/client/requests/OwnerCreateRequest.js → credentials/client/requests/CredentialCreateRequest.js} +0 -0
  552. /package/api/resources/{owners/client/requests/OwnerDeleteRequest.js → credentials/client/requests/CredentialDeleteRequest.js} +0 -0
  553. /package/api/resources/{owners/client/requests/OwnerHistoryRequest.js → credentials/client/requests/CredentialDownloadRequest.js} +0 -0
  554. /package/api/resources/{owners/client/requests/OwnerLatestRequest.js → credentials/client/requests/CredentialHistoryRequest.js} +0 -0
  555. /package/api/resources/{owners/client/requests/OwnerRevisionRequest.js → credentials/client/requests/CredentialLatestRequest.js} +0 -0
  556. /package/api/resources/{owners/client/requests/OwnerSearch.js → credentials/client/requests/CredentialRestoreRequest.js} +0 -0
  557. /package/api/resources/{owners/client/requests/OwnerUpdateRequest.js → credentials/client/requests/CredentialRevisionRequest.js} +0 -0
  558. /package/api/resources/{pets/client/requests/PetCreateRequest.js → credentials/client/requests/CredentialSearch.js} +0 -0
  559. /package/api/resources/{pets/client/requests/PetDeleteRequest.js → credentials/client/requests/CredentialUpdateRequest.js} +0 -0
  560. /package/api/resources/{pets/client/requests/PetDownloadRequest.js → credentials/client/requests/CredentialUploadRequest.js} +0 -0
  561. /package/api/resources/{owners → credentials}/client/requests/index.js +0 -0
  562. /package/api/resources/{owners → credentials}/index.d.ts +0 -0
  563. /package/api/resources/{owners → credentials}/index.js +0 -0
  564. /package/api/{resources/pets/client/requests/PetHistoryRequest.js → types/Credential.js} +0 -0
  565. /package/api/{resources/pets/client/requests/PetLatestRequest.js → types/Credential11.js} +0 -0
  566. /package/api/{resources/pets/client/requests/PetRevisionRequest.js → types/Credential20.js} +0 -0
  567. /package/api/{resources/pets/client/requests/PetSearch.js → types/CredentialFilter.js} +0 -0
  568. /package/api/{resources/pets/client/requests/PetUpdateRequest.js → types/CredentialFilterData.js} +0 -0
  569. /package/api/{resources/pets/client/requests/UploadRequest.js → types/CredentialFilterKind.js} +0 -0
  570. /package/api/types/{Checksum.js → CredentialId.js} +0 -0
  571. /package/api/types/{ChecksumCrc32.js → CredentialInput.js} +0 -0
  572. /package/api/types/{ChecksumCrc32C.js → CredentialIssuer.js} +0 -0
  573. /package/api/types/{ChecksumSha1.js → CredentialList.js} +0 -0
  574. /package/api/types/{ChecksumSha256.js → CredentialResource.js} +0 -0
  575. /package/api/types/{HashCrc32.js → CredentialSort.js} +0 -0
  576. /package/api/types/{HashCrc32C.js → CredentialSubject.js} +0 -0
  577. /package/api/types/{HashSha1.js → CredentialType.js} +0 -0
  578. /package/api/types/{HashSha256.js → CredentialValidFrom.js} +0 -0
  579. /package/api/types/{Owner.js → CredentialValidUntil.js} +0 -0
  580. /package/api/types/{OwnerFilter.js → CredentilHolder.js} +0 -0
  581. /package/api/types/{OwnerFilterData.js → DataModelCredential.js} +0 -0
  582. /package/api/types/{OwnerInput.js → FilterUriEqual.js} +0 -0
  583. /package/api/types/{OwnerList.js → FilterUriIsNotNull.js} +0 -0
  584. /package/api/types/{OwnerResource.js → FilterUriIsNull.js} +0 -0
  585. /package/api/types/{OwnerSort.js → FilterUriNotEqual.js} +0 -0
  586. /package/api/types/{Pet.js → FilterUriOptional.js} +0 -0
  587. /package/api/types/{PetFilter.js → ProblemConflictResource.js} +0 -0
  588. /package/api/types/{PetFilterData.js → ProblemMethodNotAllowedResourceAlive.js} +0 -0
  589. /package/api/types/{PetInput.js → ProblemMethodNotAllowedResourceDeleted.js} +0 -0
  590. /package/api/types/{PetList.js → Subject.js} +0 -0
  591. /package/{api/resources/pets → dist/api/resources/credentials}/client/index.d.ts +0 -0
  592. /package/{api/resources/pets → dist/api/resources/credentials}/client/index.js +0 -0
  593. /package/{api/types/PetResource.js → dist/api/resources/credentials/client/requests/CredentialCreateRequest.js} +0 -0
  594. /package/{api/types/PetSort.js → dist/api/resources/credentials/client/requests/CredentialDeleteRequest.js} +0 -0
  595. /package/{api/types/ProblemResourceConflict.js → dist/api/resources/credentials/client/requests/CredentialDownloadRequest.js} +0 -0
  596. /package/{api/types/ProblemResourceMethodNotAllowed.js → dist/api/resources/credentials/client/requests/CredentialHistoryRequest.js} +0 -0
  597. /package/{api/types/RequestedETag.js → dist/api/resources/credentials/client/requests/CredentialLatestRequest.js} +0 -0
  598. /package/{api/types/RequestedRevision.js → dist/api/resources/credentials/client/requests/CredentialRestoreRequest.js} +0 -0
  599. /package/dist/api/resources/{owners/client/requests/OwnerCreateRequest.js → credentials/client/requests/CredentialRevisionRequest.js} +0 -0
  600. /package/dist/api/resources/{owners/client/requests/OwnerDeleteRequest.js → credentials/client/requests/CredentialSearch.js} +0 -0
  601. /package/dist/api/resources/{owners/client/requests/OwnerHistoryRequest.js → credentials/client/requests/CredentialUpdateRequest.js} +0 -0
  602. /package/dist/api/resources/{owners/client/requests/OwnerLatestRequest.js → credentials/client/requests/CredentialUploadRequest.js} +0 -0
  603. /package/{api/resources/pets → dist/api/resources/credentials}/client/requests/index.js +0 -0
  604. /package/{api/resources/pets → dist/api/resources/credentials}/index.d.ts +0 -0
  605. /package/{api/resources/pets → dist/api/resources/credentials}/index.js +0 -0
  606. /package/dist/api/{resources/owners/client/requests/OwnerRevisionRequest.js → types/Credential.js} +0 -0
  607. /package/dist/api/{resources/owners/client/requests/OwnerSearch.js → types/Credential11.js} +0 -0
  608. /package/dist/api/{resources/owners/client/requests/OwnerUpdateRequest.js → types/Credential20.js} +0 -0
  609. /package/dist/api/{resources/pets/client/requests/PetCreateRequest.js → types/CredentialFilter.js} +0 -0
  610. /package/dist/api/{resources/pets/client/requests/PetDeleteRequest.js → types/CredentialFilterData.js} +0 -0
  611. /package/dist/api/{resources/pets/client/requests/PetDownloadRequest.js → types/CredentialFilterKind.js} +0 -0
  612. /package/dist/api/{resources/pets/client/requests/PetHistoryRequest.js → types/CredentialId.js} +0 -0
  613. /package/dist/api/{resources/pets/client/requests/PetLatestRequest.js → types/CredentialInput.js} +0 -0
  614. /package/dist/api/{resources/pets/client/requests/PetRevisionRequest.js → types/CredentialIssuer.js} +0 -0
  615. /package/dist/api/{resources/pets/client/requests/PetSearch.js → types/CredentialList.js} +0 -0
  616. /package/dist/api/{resources/pets/client/requests/PetUpdateRequest.js → types/CredentialResource.js} +0 -0
  617. /package/dist/api/{resources/pets/client/requests/UploadRequest.js → types/CredentialSort.js} +0 -0
  618. /package/dist/api/types/{Checksum.js → CredentialSubject.js} +0 -0
  619. /package/dist/api/types/{ChecksumCrc32.js → CredentialType.js} +0 -0
  620. /package/dist/api/types/{ChecksumCrc32C.js → CredentialValidFrom.js} +0 -0
  621. /package/dist/api/types/{ChecksumSha1.js → CredentialValidUntil.js} +0 -0
  622. /package/dist/api/types/{ChecksumSha256.js → CredentilHolder.js} +0 -0
  623. /package/dist/api/types/{HashCrc32.js → DataModelCredential.js} +0 -0
  624. /package/dist/api/types/{HashCrc32C.js → FilterUriEqual.js} +0 -0
  625. /package/dist/api/types/{HashSha1.js → FilterUriIsNotNull.js} +0 -0
  626. /package/dist/api/types/{HashSha256.js → FilterUriIsNull.js} +0 -0
  627. /package/dist/api/types/{Owner.js → FilterUriNotEqual.js} +0 -0
  628. /package/dist/api/types/{OwnerFilter.js → FilterUriOptional.js} +0 -0
  629. /package/dist/api/types/{OwnerFilterData.js → ProblemConflictResource.js} +0 -0
  630. /package/dist/api/types/{OwnerInput.js → ProblemMethodNotAllowedResourceAlive.js} +0 -0
  631. /package/dist/api/types/{OwnerList.js → ProblemMethodNotAllowedResourceDeleted.js} +0 -0
  632. /package/dist/api/types/{OwnerResource.js → Subject.js} +0 -0
  633. /package/dist/{api/resources/owners → serialization/resources/credentials}/client/index.d.ts +0 -0
  634. /package/dist/{api/resources/owners → serialization/resources/credentials}/client/index.js +0 -0
  635. /package/dist/{api/resources/owners → serialization/resources/credentials}/index.d.ts +0 -0
  636. /package/dist/{api/resources/owners → serialization/resources/credentials}/index.js +0 -0
  637. /package/{dist/api/resources/pets → serialization/resources/credentials}/client/index.d.ts +0 -0
  638. /package/{dist/api/resources/pets → serialization/resources/credentials}/client/index.js +0 -0
  639. /package/{dist/api/resources/pets → serialization/resources/credentials}/index.d.ts +0 -0
  640. /package/{dist/api/resources/pets → serialization/resources/credentials}/index.js +0 -0
@@ -9,7 +9,7 @@ import * as Truvity from "../../../..";
9
9
  * body: {}
10
10
  * }
11
11
  */
12
- export interface PetUpdateRequest {
12
+ export interface CredentialUpdateRequest {
13
13
  /**
14
14
  * Take a look to documentation about #/components/schemas/BlobID.
15
15
  */
@@ -52,5 +52,5 @@ export interface PetUpdateRequest {
52
52
  * [api-182]: <https://opensource.zalando.com/restful-api-guidelines/#182>.
53
53
  */
54
54
  ifMatch: string;
55
- body: Truvity.PetInput;
55
+ body: Truvity.CredentialInput;
56
56
  }
@@ -1,12 +1,11 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- import * as Truvity from "../../../..";
5
4
  /**
6
5
  * @example
7
6
  * {}
8
7
  */
9
- export interface UploadRequest {
8
+ export interface CredentialUploadRequest {
10
9
  /**
11
10
  * From [Zalando RESTful API Guidelines - models/headers-1.0.0.yaml](https://opensource.zalando.com/restful-api-guidelines/models/headers-1.0.0.yaml).
12
11
  * The **Idempotency-Key** is a free identifier created by the client to
@@ -27,5 +26,4 @@ export interface UploadRequest {
27
26
  * [api-230]: <https://opensource.zalando.com/restful-api-guidelines/#230>.
28
27
  */
29
28
  idempotencyKey?: string;
30
- checksum?: Truvity.Checksum;
31
29
  }
@@ -0,0 +1,10 @@
1
+ export { CredentialCreateRequest } from "./CredentialCreateRequest";
2
+ export { CredentialSearch } from "./CredentialSearch";
3
+ export { CredentialUploadRequest } from "./CredentialUploadRequest";
4
+ export { CredentialLatestRequest } from "./CredentialLatestRequest";
5
+ export { CredentialUpdateRequest } from "./CredentialUpdateRequest";
6
+ export { CredentialDeleteRequest } from "./CredentialDeleteRequest";
7
+ export { CredentialRestoreRequest } from "./CredentialRestoreRequest";
8
+ export { CredentialHistoryRequest } from "./CredentialHistoryRequest";
9
+ export { CredentialRevisionRequest } from "./CredentialRevisionRequest";
10
+ export { CredentialDownloadRequest } from "./CredentialDownloadRequest";
@@ -1,4 +1,2 @@
1
- export * as owners from "./owners";
2
- export * as pets from "./pets";
3
- export * from "./owners/client/requests";
4
- export * from "./pets/client/requests";
1
+ export * as credentials from "./credentials";
2
+ export * from "./credentials/client/requests";
@@ -26,8 +26,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
26
26
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
27
27
  };
28
28
  Object.defineProperty(exports, "__esModule", { value: true });
29
- exports.pets = exports.owners = void 0;
30
- exports.owners = __importStar(require("./owners"));
31
- exports.pets = __importStar(require("./pets"));
32
- __exportStar(require("./owners/client/requests"), exports);
33
- __exportStar(require("./pets/client/requests"), exports);
29
+ exports.credentials = void 0;
30
+ exports.credentials = __importStar(require("./credentials"));
31
+ __exportStar(require("./credentials/client/requests"), exports);
@@ -0,0 +1,17 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Truvity from "..";
5
+ /**
6
+ * A generic representation of a verifiable crendential. [Terminology](https://www.w3.org/TR/vc-json-schema/#terminology).
7
+ */
8
+ export interface Credential {
9
+ type?: Truvity.CredentialType;
10
+ dataModel?: Truvity.DataModelCredential;
11
+ holder?: Truvity.CredentilHolder;
12
+ id?: Truvity.CredentialId;
13
+ issuer?: Truvity.CredentialIssuer;
14
+ subject?: Truvity.CredentialSubject;
15
+ validFrom?: Truvity.CredentialValidFrom;
16
+ validUntil?: Truvity.CredentialValidUntil;
17
+ }
@@ -0,0 +1,16 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Truvity from "..";
5
+ /**
6
+ * VC1.1 specific properties.
7
+ */
8
+ export interface Credential11 {
9
+ type?: Truvity.CredentialType;
10
+ expirationDate?: Truvity.CredentialValidUntil;
11
+ holder?: Truvity.CredentilHolder;
12
+ id?: Truvity.CredentialId;
13
+ issuanceDate?: Truvity.CredentialValidFrom;
14
+ issuer?: Truvity.CredentialIssuer;
15
+ subject?: Truvity.CredentialSubject;
16
+ }
@@ -0,0 +1,16 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Truvity from "..";
5
+ /**
6
+ * VC2.0 specific properties.
7
+ */
8
+ export interface Credential20 {
9
+ type?: Truvity.CredentialType;
10
+ holder?: Truvity.CredentilHolder;
11
+ id?: Truvity.CredentialId;
12
+ issuer?: Truvity.CredentialIssuer;
13
+ subject?: Truvity.CredentialSubject;
14
+ validFrom?: Truvity.CredentialValidFrom;
15
+ validUntil?: Truvity.CredentialValidUntil;
16
+ }
@@ -0,0 +1,21 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * Enum of all available values.
6
+ */
7
+ export declare type CredentialField = "KIND_NAME" | "ID" | "REVISION" | "CREATED_AT" | "MODIFIED_AT" | "ETAG" | "DATA_HOLDER" | "DATA_ID" | "DATA_ISSUER" | "DATA_VALID_FROM" | "DATA_VALID_UNTIL" | "DELETED_AT";
8
+ export declare const CredentialField: {
9
+ readonly KindName: "KIND_NAME";
10
+ readonly Id: "ID";
11
+ readonly Revision: "REVISION";
12
+ readonly CreatedAt: "CREATED_AT";
13
+ readonly ModifiedAt: "MODIFIED_AT";
14
+ readonly Etag: "ETAG";
15
+ readonly DataHolder: "DATA_HOLDER";
16
+ readonly DataId: "DATA_ID";
17
+ readonly DataIssuer: "DATA_ISSUER";
18
+ readonly DataValidFrom: "DATA_VALID_FROM";
19
+ readonly DataValidUntil: "DATA_VALID_UNTIL";
20
+ readonly DeletedAt: "DELETED_AT";
21
+ };
@@ -3,16 +3,18 @@
3
3
  * This file was auto-generated by Fern from our API Definition.
4
4
  */
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.OwnerField = void 0;
7
- exports.OwnerField = {
6
+ exports.CredentialField = void 0;
7
+ exports.CredentialField = {
8
8
  KindName: "KIND_NAME",
9
- KindVersion: "KIND_VERSION",
10
9
  Id: "ID",
11
10
  Revision: "REVISION",
12
11
  CreatedAt: "CREATED_AT",
13
12
  ModifiedAt: "MODIFIED_AT",
14
13
  Etag: "ETAG",
15
- DataFirstName: "DATA_FIRST_NAME",
16
- DataLastName: "DATA_LAST_NAME",
14
+ DataHolder: "DATA_HOLDER",
15
+ DataId: "DATA_ID",
16
+ DataIssuer: "DATA_ISSUER",
17
+ DataValidFrom: "DATA_VALID_FROM",
18
+ DataValidUntil: "DATA_VALID_UNTIL",
17
19
  DeletedAt: "DELETED_AT",
18
20
  };
@@ -3,16 +3,17 @@
3
3
  */
4
4
  import * as Truvity from "..";
5
5
  /**
6
- * Schema for the OwnerResource filter.
6
+ * Schema for the CredentialResource filter.
7
7
  */
8
- export interface OwnerFilter {
8
+ export interface CredentialFilter {
9
+ annotations?: Truvity.Annotations;
9
10
  createdAt?: Truvity.FilterTimestamp;
10
- data?: Truvity.OwnerFilterData;
11
+ data?: Truvity.CredentialFilterData;
11
12
  deletedAt?: Truvity.FilterTimestampOptional;
12
13
  etag?: Truvity.FilterString;
13
14
  id?: Truvity.FilterId;
15
+ kind?: Truvity.CredentialFilterKind;
16
+ labels?: Truvity.Labels;
14
17
  modifiedAt?: Truvity.FilterTimestamp;
15
- name?: Truvity.FilterString;
16
18
  revision?: Truvity.FilterInteger;
17
- version?: Truvity.FilterInteger;
18
19
  }
@@ -0,0 +1,11 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Truvity from "..";
5
+ export interface CredentialFilterData {
6
+ holder?: Truvity.FilterUriOptional;
7
+ id?: Truvity.FilterUriOptional;
8
+ issuer?: Truvity.FilterUriOptional;
9
+ validFrom?: Truvity.FilterTimestampOptional;
10
+ validUntil?: Truvity.FilterTimestampOptional;
11
+ }
@@ -2,9 +2,6 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  import * as Truvity from "..";
5
- /**
6
- * List of the pets' resources.
7
- */
8
- export interface PetList {
9
- items: Truvity.PetResource[];
5
+ export interface CredentialFilterKind {
6
+ name?: Truvity.FilterString;
10
7
  }
@@ -2,6 +2,6 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  /**
5
- * Hex-encoded hash for SHA-1 algorithm.
5
+ * The URI of a credential.
6
6
  */
7
- export declare type HashSha1 = string;
7
+ export declare type CredentialId = string;
@@ -3,11 +3,11 @@
3
3
  */
4
4
  import * as Truvity from "..";
5
5
  /**
6
- * Create or update pet's resource.
6
+ * Create or update credential's resource.
7
7
  * If `labels` or `annotations` are omitted in an create request, the default empty object (`{}`) will be used.
8
8
  * If `labels` or `annotations` are omitted in an update request, the current values remain untouched. Providing specific values updates the resoruce accordingly, while an empty object (`{}`) for either field clears its stored data.
9
9
  */
10
- export interface PetInput {
10
+ export interface CredentialInput {
11
11
  annotations?: Truvity.Annotations;
12
12
  labels?: Truvity.Labels;
13
13
  }
@@ -0,0 +1,7 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * The URI of a credential issuer.
6
+ */
7
+ export declare type CredentialIssuer = string;
@@ -3,8 +3,8 @@
3
3
  */
4
4
  import * as Truvity from "..";
5
5
  /**
6
- * Checksum according to CRC32 algorithm.
6
+ * List of the credentials' resources.
7
7
  */
8
- export interface ChecksumCrc32 {
9
- value: Truvity.HashCrc32;
8
+ export interface CredentialList {
9
+ items: Truvity.CredentialResource[];
10
10
  }
@@ -3,9 +3,9 @@
3
3
  */
4
4
  import * as Truvity from "..";
5
5
  /**
6
- * The pet's resource (with general for all resources' fields).
6
+ * The credential's resource (with general for all resources' fields).
7
7
  */
8
- export interface PetResource {
8
+ export interface CredentialResource {
9
9
  kind: Truvity.ResourceKind;
10
10
  id: Truvity.ResourceId;
11
11
  revision: Truvity.Revision;
@@ -14,6 +14,6 @@ export interface PetResource {
14
14
  labels: Truvity.Labels;
15
15
  annotations: Truvity.Annotations;
16
16
  etag: Truvity.ETag;
17
- data: Truvity.Pet;
17
+ data: Truvity.Credential;
18
18
  deletedAt?: Truvity.Timestamp;
19
19
  }
@@ -3,9 +3,9 @@
3
3
  */
4
4
  import * as Truvity from "..";
5
5
  /**
6
- * Sort of the owners' resources.
6
+ * Sort of the credentials' resources.
7
7
  */
8
- export interface OwnerSort {
9
- field: Truvity.OwnerField;
8
+ export interface CredentialSort {
9
+ field: Truvity.CredentialField;
10
10
  order?: Truvity.SortOrder;
11
11
  }
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Truvity from "..";
5
+ /**
6
+ * A list of subjects. [Terminology](https://www.w3.org/TR/vc-json-schema/#dfn-subjects).
7
+ */
8
+ export declare type CredentialSubject = Truvity.Subject[];
@@ -0,0 +1,7 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * A list of credential types. [Terminology](https://www.w3.org/TR/vc-json-schema/#dfn-type).
6
+ */
7
+ export declare type CredentialType = string[];
@@ -0,0 +1,7 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * The date from which a credential is valid.
6
+ */
7
+ export declare type CredentialValidFrom = Date;
@@ -0,0 +1,7 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * The date until which a credential is valid.
6
+ */
7
+ export declare type CredentialValidUntil = Date;
@@ -2,6 +2,6 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  /**
5
- * Hex-encoded hash for CRC32 algorithm.
5
+ * The URI of a credential holder.
6
6
  */
7
- export declare type HashCrc32 = string;
7
+ export declare type CredentilHolder = string;
@@ -0,0 +1,16 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Truvity from "..";
5
+ /**
6
+ * A flavor specific representation of a verifiable crendential.
7
+ */
8
+ export declare type DataModelCredential = Truvity.DataModelCredential.Vc11 | Truvity.DataModelCredential.Vc20;
9
+ export declare namespace DataModelCredential {
10
+ interface Vc11 extends Truvity.Credential11 {
11
+ datamodel: "vc1_1";
12
+ }
13
+ interface Vc20 extends Truvity.Credential20 {
14
+ datamodel: "vc2_0";
15
+ }
16
+ }
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * Filter for uri with operator EQUAL.
6
+ */
7
+ export interface FilterUriEqual {
8
+ /** EQUAL uri value for the filter. */
9
+ value: string;
10
+ }
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * Filter for uri with operator IS_NOT_NULL.
6
+ */
7
+ export interface FilterUriIsNotNull {
8
+ }
@@ -2,6 +2,7 @@
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
4
  /**
5
- * Hex-encoded hash for SHA-1 algorithm.
5
+ * Filter for uri with operator IS_NULL.
6
6
  */
7
- export declare type HashSha1 = string;
7
+ export interface FilterUriIsNull {
8
+ }
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * Filter for uri with operator NOT_EQUAL.
6
+ */
7
+ export interface FilterUriNotEqual {
8
+ /** NOT_EQUAL uri value for the filter. */
9
+ value: string;
10
+ }
@@ -0,0 +1,23 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Truvity from "..";
5
+ /**
6
+ * Schema of the filter by URI value by the requested operator.
7
+ * The optional filter has IS_NULL and IS_NOT_NULL operators.
8
+ */
9
+ export declare type FilterUriOptional = Truvity.FilterUriOptional.Equal | Truvity.FilterUriOptional.IsNotNull | Truvity.FilterUriOptional.IsNull | Truvity.FilterUriOptional.NotEqual;
10
+ export declare namespace FilterUriOptional {
11
+ interface Equal extends Truvity.FilterUriEqual {
12
+ operator: "EQUAL";
13
+ }
14
+ interface IsNotNull extends Truvity.FilterUriIsNotNull {
15
+ operator: "IS_NOT_NULL";
16
+ }
17
+ interface IsNull extends Truvity.FilterUriIsNull {
18
+ operator: "IS_NULL";
19
+ }
20
+ interface NotEqual extends Truvity.FilterUriNotEqual {
21
+ operator: "NOT_EQUAL";
22
+ }
23
+ }
@@ -5,19 +5,19 @@ import * as Truvity from "..";
5
5
  /**
6
6
  * Impossible to modify resource due to race condition.
7
7
  * Additional information:
8
- * type: resource/conflict
8
+ * type: /conflict/resource
9
9
  * status: 412
10
10
  * title: Precondition Failed
11
11
  * .
12
12
  */
13
- export interface ProblemResourceConflict {
13
+ export interface ProblemConflictResource {
14
14
  /** The HTTP system code generated by the origin server for this occurrence of the problem. */
15
15
  status: number;
16
16
  /** A short, human-readable summary of the problem type. */
17
17
  title: string;
18
18
  type: Truvity.UriReference;
19
- requested: Truvity.RequestedETag;
20
- latest: Truvity.Resource;
19
+ expected: Truvity.ETag;
20
+ actual: Truvity.Resource;
21
21
  /** A human-readable explanation specific to this occurrence of the problem. */
22
22
  detail?: string;
23
23
  /** A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced. */
@@ -3,22 +3,20 @@
3
3
  */
4
4
  import * as Truvity from "..";
5
5
  /**
6
- * Impossible to apply this HTTP method due to resource state.
6
+ * Resource is deleted already
7
7
  * Additional information:
8
- * type: /method-not-allowed/resource
8
+ * type: /method-not-allowed/resource/alive
9
9
  * status: 405
10
10
  * title: Method Not Allowed
11
11
  * .
12
12
  */
13
- export interface ProblemResourceMethodNotAllowed {
13
+ export interface ProblemMethodNotAllowedResourceAlive {
14
14
  /** The HTTP system code generated by the origin server for this occurrence of the problem. */
15
15
  status: number;
16
16
  /** A short, human-readable summary of the problem type. */
17
17
  title: string;
18
18
  type: Truvity.UriReference;
19
- method: Truvity.HttpMethod;
20
- path: Truvity.UriReference;
21
- latest: Truvity.Resource;
19
+ actual: Truvity.Resource;
22
20
  /** A human-readable explanation specific to this occurrence of the problem. */
23
21
  detail?: string;
24
22
  /** A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced. */
@@ -3,22 +3,20 @@
3
3
  */
4
4
  import * as Truvity from "..";
5
5
  /**
6
- * Impossible to apply this HTTP method due to resource state.
6
+ * Resource is deleted already
7
7
  * Additional information:
8
- * type: /method-not-allowed/resource
8
+ * type: /method-not-allowed/resource/deleted
9
9
  * status: 405
10
10
  * title: Method Not Allowed
11
11
  * .
12
12
  */
13
- export interface ProblemResourceMethodNotAllowed {
13
+ export interface ProblemMethodNotAllowedResourceDeleted {
14
14
  /** The HTTP system code generated by the origin server for this occurrence of the problem. */
15
15
  status: number;
16
16
  /** A short, human-readable summary of the problem type. */
17
17
  title: string;
18
18
  type: Truvity.UriReference;
19
- method: Truvity.HttpMethod;
20
- path: Truvity.UriReference;
21
- latest: Truvity.Resource;
19
+ actual: Truvity.Resource;
22
20
  /** A human-readable explanation specific to this occurrence of the problem. */
23
21
  detail?: string;
24
22
  /** A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced. */
@@ -15,8 +15,8 @@ export interface ProblemNotFoundRevision {
15
15
  status: number;
16
16
  /** A short, human-readable summary of the problem type. */
17
17
  title: string;
18
- requested: Truvity.RequestedRevision;
19
- latest: Truvity.Resource;
18
+ expected: Truvity.Revision;
19
+ actual: Truvity.Resource;
20
20
  /** A human-readable explanation specific to this occurrence of the problem. */
21
21
  detail?: string;
22
22
  /** A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced. */
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * A thing about which claims are made.
6
+ */
7
+ export interface Subject {
8
+ /** The URI of the subject. */
9
+ id: string;
10
+ }
@@ -7,7 +7,7 @@ import * as Truvity from "..";
7
7
  */
8
8
  export interface UploadResponse {
9
9
  blobId: Truvity.BlobId;
10
- deadline: Truvity.Timestamp;
10
+ /** Timeout (in seconds) while `upload_uri` is valid. */
11
+ timeout: number;
11
12
  uploadUri: Truvity.Uri;
12
- checksum?: Truvity.Checksum;
13
13
  }
@@ -1,13 +1,26 @@
1
1
  export * from "./AnnotationValue";
2
2
  export * from "./Annotations";
3
3
  export * from "./BlobId";
4
- export * from "./Checksum";
5
- export * from "./ChecksumAlgorithm";
6
- export * from "./ChecksumCrc32";
7
- export * from "./ChecksumCrc32C";
8
- export * from "./ChecksumSha1";
9
- export * from "./ChecksumSha256";
10
4
  export * from "./ContentType";
5
+ export * from "./Credential";
6
+ export * from "./Credential11";
7
+ export * from "./Credential20";
8
+ export * from "./CredentialField";
9
+ export * from "./CredentialFilterData";
10
+ export * from "./CredentialFilterKind";
11
+ export * from "./CredentialFilter";
12
+ export * from "./CredentialId";
13
+ export * from "./CredentialInput";
14
+ export * from "./CredentialIssuer";
15
+ export * from "./CredentialList";
16
+ export * from "./CredentialResource";
17
+ export * from "./CredentialSort";
18
+ export * from "./CredentialSubject";
19
+ export * from "./CredentialType";
20
+ export * from "./CredentialValidFrom";
21
+ export * from "./CredentialValidUntil";
22
+ export * from "./CredentilHolder";
23
+ export * from "./DataModelCredential";
11
24
  export * from "./Download";
12
25
  export * from "./ETag";
13
26
  export * from "./FilterId";
@@ -37,44 +50,27 @@ export * from "./FilterTimestampLessThan";
37
50
  export * from "./FilterTimestampLessThanOrEqual";
38
51
  export * from "./FilterTimestampNotEqual";
39
52
  export * from "./FilterTimestampOptional";
40
- export * from "./HttpMethod";
53
+ export * from "./FilterUriEqual";
54
+ export * from "./FilterUriIsNotNull";
55
+ export * from "./FilterUriIsNull";
56
+ export * from "./FilterUriNotEqual";
57
+ export * from "./FilterUriOptional";
41
58
  export * from "./HttpRequestPart";
42
- export * from "./HashCrc32";
43
- export * from "./HashCrc32C";
44
- export * from "./HashSha1";
45
- export * from "./HashSha256";
46
59
  export * from "./LabelValue";
47
60
  export * from "./Labels";
48
- export * from "./Owner";
49
- export * from "./OwnerField";
50
- export * from "./OwnerFilterData";
51
- export * from "./OwnerFilter";
52
- export * from "./OwnerInput";
53
- export * from "./OwnerList";
54
- export * from "./OwnerResource";
55
- export * from "./OwnerSort";
56
- export * from "./Pet";
57
- export * from "./PetField";
58
- export * from "./PetFilterData";
59
- export * from "./PetFilter";
60
- export * from "./PetInput";
61
- export * from "./PetList";
62
- export * from "./PetResource";
63
- export * from "./PetSort";
64
61
  export * from "./ProblemBodyContent";
62
+ export * from "./ProblemConflictResource";
65
63
  export * from "./ProblemForbidden";
66
64
  export * from "./ProblemInternalServerError";
65
+ export * from "./ProblemMethodNotAllowedResourceAlive";
66
+ export * from "./ProblemMethodNotAllowedResourceDeleted";
67
67
  export * from "./ProblemNotFoundBlob";
68
68
  export * from "./ProblemNotFoundResource";
69
69
  export * from "./ProblemNotFoundRevision";
70
70
  export * from "./ProblemNullUnicode";
71
- export * from "./ProblemResourceConflict";
72
- export * from "./ProblemResourceMethodNotAllowed";
73
71
  export * from "./ProblemUnauthorized";
74
72
  export * from "./ProblemUnsupportedMediaType";
75
73
  export * from "./ProblemValidation";
76
- export * from "./RequestedETag";
77
- export * from "./RequestedRevision";
78
74
  export * from "./Resource";
79
75
  export * from "./ResourceId";
80
76
  export * from "./ResourceKind";
@@ -82,7 +78,7 @@ export * from "./ResourceName";
82
78
  export * from "./ResourceVersion";
83
79
  export * from "./Revision";
84
80
  export * from "./SortOrder";
85
- export * from "./Species";
81
+ export * from "./Subject";
86
82
  export * from "./Timestamp";
87
83
  export * from "./Uri";
88
84
  export * from "./UriReference";