@lifeready/core 1.0.0 → 1.0.1

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 (378) hide show
  1. package/README.md +62 -62
  2. package/karma.conf.js +32 -0
  3. package/ng-package.json +26 -0
  4. package/package.json +21 -29
  5. package/src/lib/_common/ast.ts +75 -0
  6. package/src/lib/_common/deferred-promise.ts +35 -0
  7. package/src/lib/_common/exceptions.ts +189 -0
  8. package/src/lib/_common/queries.gql.ts +200 -0
  9. package/src/lib/_common/run-outside-angular.ts +125 -0
  10. package/src/lib/_common/tests.ts +82 -0
  11. package/{lib/_common/types.d.ts → src/lib/_common/types.ts} +13 -10
  12. package/src/lib/_common/utils.ts +57 -0
  13. package/src/lib/api/api-mutation.spec.ts +547 -0
  14. package/src/lib/api/api-query.spec.ts +40 -0
  15. package/src/lib/api/contact-card.gql.ts +85 -0
  16. package/src/lib/api/contact-card.service.spec.ts +249 -0
  17. package/src/lib/api/contact-card.service.ts +228 -0
  18. package/src/lib/api/contact-card2.gql.ts +93 -0
  19. package/src/lib/api/contact-card2.service.spec.ts +297 -0
  20. package/src/lib/api/contact-card2.service.ts +139 -0
  21. package/src/lib/api/file.service.spec.ts +14 -0
  22. package/src/lib/api/file.service.ts +81 -0
  23. package/src/lib/api/item2.gql.ts +211 -0
  24. package/src/lib/api/item2.service.spec.ts +1043 -0
  25. package/src/lib/api/item2.service.ts +481 -0
  26. package/src/lib/api/key-exchange.gql.ts +196 -0
  27. package/src/lib/api/key-exchange.service.spec.ts +470 -0
  28. package/src/lib/api/key-exchange.service.ts +731 -0
  29. package/src/lib/api/key-exchange.types.ts +235 -0
  30. package/src/lib/api/key-exchange2.gql.ts +310 -0
  31. package/src/lib/api/key-exchange2.service.spec.ts +892 -0
  32. package/src/lib/api/key-exchange2.service.ts +875 -0
  33. package/src/lib/api/lock.gql.ts +67 -0
  34. package/src/lib/api/lock.service.spec.ts +549 -0
  35. package/src/lib/api/lock.service.ts +57 -0
  36. package/src/lib/api/lr-apollo.service.spec.ts +27 -0
  37. package/src/lib/api/lr-apollo.service.ts +43 -0
  38. package/{lib/api/lr-graphql/index.d.ts → src/lib/api/lr-graphql/index.ts} +5 -5
  39. package/src/lib/api/lr-graphql/lr-graphql.service.ts +313 -0
  40. package/src/lib/api/lr-graphql/lr-merged-mutation.ts +377 -0
  41. package/src/lib/api/lr-graphql/lr-mutation-base.ts +67 -0
  42. package/src/lib/api/lr-graphql/lr-mutation.ts +74 -0
  43. package/src/lib/api/lr-graphql/lr.service.ts +28 -0
  44. package/src/lib/api/message.service.spec.ts +20 -0
  45. package/src/lib/api/message.service.ts +210 -0
  46. package/src/lib/api/persist.service.spec.ts +209 -0
  47. package/src/lib/api/persist.service.ts +220 -0
  48. package/src/lib/api/query-processor/common-processors.service.ts +148 -0
  49. package/{lib/api/query-processor/index.d.ts → src/lib/api/query-processor/index.ts} +2 -2
  50. package/src/lib/api/query-processor/query-processor.service.ts +240 -0
  51. package/src/lib/api/query-processor/tp-password-reset-processor.service.ts +177 -0
  52. package/src/lib/api/shared-contact-card.service.ts +156 -0
  53. package/src/lib/api/shared-contact-card2.gql.ts +76 -0
  54. package/src/lib/api/shared-contact-card2.service.ts +154 -0
  55. package/src/lib/api/time.service.spec.ts +48 -0
  56. package/src/lib/api/time.service.ts +155 -0
  57. package/src/lib/api/types/graphql.types.ts +48 -0
  58. package/{lib/api/types/index.d.ts → src/lib/api/types/index.ts} +2 -2
  59. package/src/lib/api/types/lr-graphql.types.ts +467 -0
  60. package/src/lib/auth/auth.config.ts +83 -0
  61. package/src/lib/auth/auth.gql.ts +62 -0
  62. package/src/lib/auth/auth.types.ts +79 -0
  63. package/src/lib/auth/idle.service.spec.ts +119 -0
  64. package/src/lib/auth/idle.service.ts +208 -0
  65. package/src/lib/auth/idle.types.ts +11 -0
  66. package/src/lib/auth/lbop.service.spec.ts +56 -0
  67. package/src/lib/auth/lbop.service.ts +539 -0
  68. package/src/lib/auth/life-ready-auth.service.spec.ts +70 -0
  69. package/src/lib/auth/life-ready-auth.service.ts +454 -0
  70. package/src/lib/auth/password.service.spec.ts +51 -0
  71. package/src/lib/auth/password.service.ts +438 -0
  72. package/src/lib/auth/register.service.spec.ts +31 -0
  73. package/src/lib/auth/register.service.ts +181 -0
  74. package/src/lib/auth/two-factor.service.spec.ts +21 -0
  75. package/src/lib/auth/two-factor.service.ts +69 -0
  76. package/src/lib/category/category-meta.service.spec.ts +28 -0
  77. package/src/lib/category/category-meta.service.ts +125 -0
  78. package/src/lib/category/category.gql.ts +449 -0
  79. package/src/lib/category/category.service.spec.ts +26 -0
  80. package/src/lib/category/category.service.ts +498 -0
  81. package/src/lib/category/category.types.ts +89 -0
  82. package/src/lib/cryptography/cryptography.types.ts +108 -0
  83. package/src/lib/cryptography/encryption.service.spec.ts +125 -0
  84. package/src/lib/cryptography/encryption.service.ts +243 -0
  85. package/src/lib/cryptography/key-factory.service.spec.ts +15 -0
  86. package/src/lib/cryptography/key-factory.service.ts +303 -0
  87. package/src/lib/cryptography/key-graph.service.spec.ts +16 -0
  88. package/src/lib/cryptography/key-graph.service.ts +354 -0
  89. package/src/lib/cryptography/key-meta.service.spec.ts +40 -0
  90. package/src/lib/cryptography/key-meta.service.ts +254 -0
  91. package/src/lib/cryptography/key.service.spec.ts +16 -0
  92. package/src/lib/cryptography/key.service.ts +154 -0
  93. package/src/lib/cryptography/slip39.service.spec.ts +44 -0
  94. package/src/lib/cryptography/slip39.service.ts +204 -0
  95. package/src/lib/cryptography/web-crypto.service.ts +22 -0
  96. package/src/lib/life-ready.config.ts +127 -0
  97. package/src/lib/life-ready.module.ts +81 -0
  98. package/src/lib/plan/plan.gql.ts +133 -0
  99. package/src/lib/plan/plan.service.spec.ts +294 -0
  100. package/src/lib/plan/plan.service.ts +198 -0
  101. package/src/lib/plan/plan.types.ts +37 -0
  102. package/src/lib/record/record-attachment.service.spec.ts +31 -0
  103. package/src/lib/record/record-attachment.service.ts +101 -0
  104. package/src/lib/record/record.gql.ts +192 -0
  105. package/src/lib/record/record.service.spec.ts +598 -0
  106. package/src/lib/record/record.service.ts +236 -0
  107. package/src/lib/record/record.types.ts +86 -0
  108. package/src/lib/record-type/record-type.service.spec.ts +16 -0
  109. package/src/lib/record-type/record-type.service.ts +71 -0
  110. package/src/lib/record-type/record-type.types.ts +58 -0
  111. package/src/lib/scenario/approvals/scenario-approval.gql.ts +112 -0
  112. package/src/lib/scenario/approvals/scenario-approval.types.ts +85 -0
  113. package/src/lib/scenario/approvals/scenario-approver.service.spec.ts +16 -0
  114. package/src/lib/scenario/approvals/scenario-approver.service.ts +422 -0
  115. package/src/lib/scenario/claimants/scenario-claimant.gql.ts +56 -0
  116. package/src/lib/scenario/claimants/scenario-claimant.service.spec.ts +16 -0
  117. package/src/lib/scenario/claimants/scenario-claimant.service.ts +100 -0
  118. package/src/lib/scenario/claimants/scenario-claimant.types.ts +21 -0
  119. package/src/lib/scenario/receivers/scenario-receiver.gql.ts +157 -0
  120. package/src/lib/scenario/receivers/scenario-receiver.service.spec.ts +16 -0
  121. package/src/lib/scenario/receivers/scenario-receiver.service.ts +278 -0
  122. package/src/lib/scenario/receivers/scenario-receiver.types.ts +66 -0
  123. package/src/lib/scenario/scenario-setup.service.spec.ts +22 -0
  124. package/src/lib/scenario/scenario-setup.service.ts +369 -0
  125. package/src/lib/scenario/scenario.gql.ts +404 -0
  126. package/src/lib/scenario/scenario.service.spec.ts +1586 -0
  127. package/src/lib/scenario/scenario.service.ts +811 -0
  128. package/src/lib/scenario/scenario.types.ts +258 -0
  129. package/src/lib/search/search.gql.ts +62 -0
  130. package/src/lib/search/search.service.spec.ts +57 -0
  131. package/src/lib/search/search.service.ts +174 -0
  132. package/src/lib/search/search.types.ts +24 -0
  133. package/src/lib/trusted-parties/tp-password-reset-request.service.ts +140 -0
  134. package/src/lib/trusted-parties/tp-password-reset-user.service.ts +359 -0
  135. package/src/lib/trusted-parties/tp-password-reset.gql.ts +453 -0
  136. package/src/lib/trusted-parties/tp-password-reset.service.spec.ts +602 -0
  137. package/src/lib/trusted-parties/tp-password-reset.service.ts +482 -0
  138. package/src/lib/trusted-parties/trusted-party.gql.ts +159 -0
  139. package/src/lib/trusted-parties/trusted-party.service.spec.ts +1008 -0
  140. package/src/lib/trusted-parties/trusted-party.service.ts +394 -0
  141. package/src/lib/trusted-parties/trusted-party.types.ts +119 -0
  142. package/src/lib/trusted-parties/trusted-party2.gql.ts +165 -0
  143. package/src/lib/trusted-parties/trusted-party2.service.spec.ts +1782 -0
  144. package/src/lib/trusted-parties/trusted-party2.service.ts +272 -0
  145. package/src/lib/users/profile-details.service.spec.ts +45 -0
  146. package/src/lib/users/profile-details.service.ts +278 -0
  147. package/src/lib/users/profile.gql.ts +108 -0
  148. package/src/lib/users/profile.service.spec.ts +97 -0
  149. package/src/lib/users/profile.service.ts +224 -0
  150. package/src/lib/users/profile.types.ts +101 -0
  151. package/src/lib/users/user.gql.ts +69 -0
  152. package/src/lib/users/user.service.spec.ts +161 -0
  153. package/src/lib/users/user.service.ts +72 -0
  154. package/src/lib/users/user.types.ts +27 -0
  155. package/{public-api.d.ts → src/public-api.ts} +96 -77
  156. package/src/test.ts +21 -0
  157. package/tsconfig.lib.json +21 -0
  158. package/tsconfig.lib.prod.json +6 -0
  159. package/tsconfig.spec.json +10 -0
  160. package/tslint.json +17 -0
  161. package/bundles/lifeready-core.umd.js +0 -15876
  162. package/bundles/lifeready-core.umd.js.map +0 -1
  163. package/bundles/lifeready-core.umd.min.js +0 -16
  164. package/bundles/lifeready-core.umd.min.js.map +0 -1
  165. package/esm2015/lib/_common/ast.js +0 -40
  166. package/esm2015/lib/_common/deferred-promise.js +0 -24
  167. package/esm2015/lib/_common/exceptions.js +0 -157
  168. package/esm2015/lib/_common/queries.gql.js +0 -190
  169. package/esm2015/lib/_common/run-outside-angular.js +0 -79
  170. package/esm2015/lib/_common/types.js +0 -1
  171. package/esm2015/lib/_common/utils.js +0 -44
  172. package/esm2015/lib/api/contact-card.gql.js +0 -79
  173. package/esm2015/lib/api/contact-card.service.js +0 -154
  174. package/esm2015/lib/api/contact-card2.gql.js +0 -60
  175. package/esm2015/lib/api/contact-card2.service.js +0 -103
  176. package/esm2015/lib/api/file.service.js +0 -74
  177. package/esm2015/lib/api/item2.gql.js +0 -110
  178. package/esm2015/lib/api/item2.service.js +0 -311
  179. package/esm2015/lib/api/key-exchange.gql.js +0 -188
  180. package/esm2015/lib/api/key-exchange.service.js +0 -442
  181. package/esm2015/lib/api/key-exchange.types.js +0 -18
  182. package/esm2015/lib/api/key-exchange2.gql.js +0 -171
  183. package/esm2015/lib/api/key-exchange2.service.js +0 -479
  184. package/esm2015/lib/api/lock.gql.js +0 -40
  185. package/esm2015/lib/api/lock.service.js +0 -64
  186. package/esm2015/lib/api/lr-apollo.service.js +0 -46
  187. package/esm2015/lib/api/lr-graphql/index.js +0 -6
  188. package/esm2015/lib/api/lr-graphql/lr-graphql.service.js +0 -155
  189. package/esm2015/lib/api/lr-graphql/lr-merged-mutation.js +0 -213
  190. package/esm2015/lib/api/lr-graphql/lr-mutation-base.js +0 -51
  191. package/esm2015/lib/api/lr-graphql/lr-mutation.js +0 -48
  192. package/esm2015/lib/api/lr-graphql/lr.service.js +0 -18
  193. package/esm2015/lib/api/message.service.js +0 -138
  194. package/esm2015/lib/api/persist.service.js +0 -181
  195. package/esm2015/lib/api/query-processor/common-processors.service.js +0 -93
  196. package/esm2015/lib/api/query-processor/index.js +0 -3
  197. package/esm2015/lib/api/query-processor/query-processor.service.js +0 -192
  198. package/esm2015/lib/api/query-processor/tp-password-reset-processor.service.js +0 -109
  199. package/esm2015/lib/api/shared-contact-card.service.js +0 -119
  200. package/esm2015/lib/api/shared-contact-card2.gql.js +0 -41
  201. package/esm2015/lib/api/shared-contact-card2.service.js +0 -117
  202. package/esm2015/lib/api/time.service.js +0 -146
  203. package/esm2015/lib/api/types/graphql.types.js +0 -7
  204. package/esm2015/lib/api/types/index.js +0 -3
  205. package/esm2015/lib/api/types/lr-graphql.types.js +0 -71
  206. package/esm2015/lib/auth/auth.config.js +0 -57
  207. package/esm2015/lib/auth/auth.gql.js +0 -48
  208. package/esm2015/lib/auth/auth.types.js +0 -27
  209. package/esm2015/lib/auth/idle.service.js +0 -168
  210. package/esm2015/lib/auth/idle.types.js +0 -7
  211. package/esm2015/lib/auth/lbop.service.js +0 -355
  212. package/esm2015/lib/auth/life-ready-auth.service.js +0 -333
  213. package/esm2015/lib/auth/password.service.js +0 -320
  214. package/esm2015/lib/auth/register.service.js +0 -172
  215. package/esm2015/lib/auth/two-factor.service.js +0 -74
  216. package/esm2015/lib/category/category-meta.service.js +0 -99
  217. package/esm2015/lib/category/category.gql.js +0 -406
  218. package/esm2015/lib/category/category.service.js +0 -390
  219. package/esm2015/lib/category/category.types.js +0 -29
  220. package/esm2015/lib/cryptography/cryptography.types.js +0 -11
  221. package/esm2015/lib/cryptography/encryption.service.js +0 -189
  222. package/esm2015/lib/cryptography/key-factory.service.js +0 -237
  223. package/esm2015/lib/cryptography/key-graph.service.js +0 -280
  224. package/esm2015/lib/cryptography/key-meta.service.js +0 -200
  225. package/esm2015/lib/cryptography/key.service.js +0 -124
  226. package/esm2015/lib/cryptography/slip39.service.js +0 -169
  227. package/esm2015/lib/cryptography/web-crypto.service.js +0 -29
  228. package/esm2015/lib/life-ready.config.js +0 -84
  229. package/esm2015/lib/life-ready.module.js +0 -74
  230. package/esm2015/lib/plan/plan.gql.js +0 -123
  231. package/esm2015/lib/plan/plan.service.js +0 -149
  232. package/esm2015/lib/plan/plan.types.js +0 -11
  233. package/esm2015/lib/record/record-attachment.service.js +0 -101
  234. package/esm2015/lib/record/record.gql.js +0 -179
  235. package/esm2015/lib/record/record.service.js +0 -206
  236. package/esm2015/lib/record/record.types.js +0 -15
  237. package/esm2015/lib/record-type/record-type.service.js +0 -75
  238. package/esm2015/lib/record-type/record-type.types.js +0 -28
  239. package/esm2015/lib/scenario/approvals/scenario-approval.gql.js +0 -105
  240. package/esm2015/lib/scenario/approvals/scenario-approval.types.js +0 -1
  241. package/esm2015/lib/scenario/approvals/scenario-approver.service.js +0 -300
  242. package/esm2015/lib/scenario/claimants/scenario-claimant.gql.js +0 -52
  243. package/esm2015/lib/scenario/claimants/scenario-claimant.service.js +0 -97
  244. package/esm2015/lib/scenario/claimants/scenario-claimant.types.js +0 -1
  245. package/esm2015/lib/scenario/receivers/scenario-receiver.gql.js +0 -150
  246. package/esm2015/lib/scenario/receivers/scenario-receiver.service.js +0 -229
  247. package/esm2015/lib/scenario/receivers/scenario-receiver.types.js +0 -1
  248. package/esm2015/lib/scenario/scenario-setup.service.js +0 -269
  249. package/esm2015/lib/scenario/scenario.gql.js +0 -368
  250. package/esm2015/lib/scenario/scenario.service.js +0 -611
  251. package/esm2015/lib/scenario/scenario.types.js +0 -64
  252. package/esm2015/lib/search/search.gql.js +0 -62
  253. package/esm2015/lib/search/search.service.js +0 -156
  254. package/esm2015/lib/search/search.types.js +0 -6
  255. package/esm2015/lib/trusted-parties/tp-password-reset-request.service.js +0 -112
  256. package/esm2015/lib/trusted-parties/tp-password-reset-user.service.js +0 -266
  257. package/esm2015/lib/trusted-parties/tp-password-reset.gql.js +0 -232
  258. package/esm2015/lib/trusted-parties/tp-password-reset.service.js +0 -300
  259. package/esm2015/lib/trusted-parties/trusted-party.gql.js +0 -148
  260. package/esm2015/lib/trusted-parties/trusted-party.service.js +0 -326
  261. package/esm2015/lib/trusted-parties/trusted-party.types.js +0 -41
  262. package/esm2015/lib/trusted-parties/trusted-party2.gql.js +0 -87
  263. package/esm2015/lib/trusted-parties/trusted-party2.service.js +0 -215
  264. package/esm2015/lib/users/profile-details.service.js +0 -214
  265. package/esm2015/lib/users/profile.gql.js +0 -97
  266. package/esm2015/lib/users/profile.service.js +0 -169
  267. package/esm2015/lib/users/profile.types.js +0 -34
  268. package/esm2015/lib/users/user.gql.js +0 -60
  269. package/esm2015/lib/users/user.service.js +0 -79
  270. package/esm2015/lib/users/user.types.js +0 -5
  271. package/esm2015/lifeready-core.js +0 -10
  272. package/esm2015/public-api.js +0 -81
  273. package/fesm2015/lifeready-core.js +0 -13282
  274. package/fesm2015/lifeready-core.js.map +0 -1
  275. package/lib/_common/ast.d.ts +0 -11
  276. package/lib/_common/deferred-promise.d.ts +0 -12
  277. package/lib/_common/exceptions.d.ts +0 -109
  278. package/lib/_common/queries.gql.d.ts +0 -10
  279. package/lib/_common/run-outside-angular.d.ts +0 -14
  280. package/lib/_common/utils.d.ts +0 -3
  281. package/lib/api/contact-card.gql.d.ts +0 -7
  282. package/lib/api/contact-card.service.d.ts +0 -52
  283. package/lib/api/contact-card2.gql.d.ts +0 -34
  284. package/lib/api/contact-card2.service.d.ts +0 -49
  285. package/lib/api/file.service.d.ts +0 -18
  286. package/lib/api/item2.gql.d.ts +0 -96
  287. package/lib/api/item2.service.d.ts +0 -177
  288. package/lib/api/key-exchange.gql.d.ts +0 -9
  289. package/lib/api/key-exchange.service.d.ts +0 -39
  290. package/lib/api/key-exchange.types.d.ts +0 -196
  291. package/lib/api/key-exchange2.gql.d.ts +0 -125
  292. package/lib/api/key-exchange2.service.d.ts +0 -187
  293. package/lib/api/lock.gql.d.ts +0 -27
  294. package/lib/api/lock.service.d.ts +0 -25
  295. package/lib/api/lr-apollo.service.d.ts +0 -15
  296. package/lib/api/lr-graphql/lr-graphql.service.d.ts +0 -60
  297. package/lib/api/lr-graphql/lr-merged-mutation.d.ts +0 -27
  298. package/lib/api/lr-graphql/lr-mutation-base.d.ts +0 -28
  299. package/lib/api/lr-graphql/lr-mutation.d.ts +0 -8
  300. package/lib/api/lr-graphql/lr.service.d.ts +0 -9
  301. package/lib/api/message.service.d.ts +0 -58
  302. package/lib/api/persist.service.d.ts +0 -31
  303. package/lib/api/query-processor/common-processors.service.d.ts +0 -36
  304. package/lib/api/query-processor/query-processor.service.d.ts +0 -18
  305. package/lib/api/query-processor/tp-password-reset-processor.service.d.ts +0 -15
  306. package/lib/api/shared-contact-card.service.d.ts +0 -33
  307. package/lib/api/shared-contact-card2.gql.d.ts +0 -36
  308. package/lib/api/shared-contact-card2.service.d.ts +0 -45
  309. package/lib/api/time.service.d.ts +0 -16
  310. package/lib/api/types/graphql.types.d.ts +0 -29
  311. package/lib/api/types/lr-graphql.types.d.ts +0 -385
  312. package/lib/auth/auth.config.d.ts +0 -5
  313. package/lib/auth/auth.gql.d.ts +0 -15
  314. package/lib/auth/auth.types.d.ts +0 -66
  315. package/lib/auth/idle.service.d.ts +0 -40
  316. package/lib/auth/idle.types.d.ts +0 -10
  317. package/lib/auth/lbop.service.d.ts +0 -91
  318. package/lib/auth/life-ready-auth.service.d.ts +0 -46
  319. package/lib/auth/password.service.d.ts +0 -78
  320. package/lib/auth/register.service.d.ts +0 -25
  321. package/lib/auth/two-factor.service.d.ts +0 -15
  322. package/lib/category/category-meta.service.d.ts +0 -23
  323. package/lib/category/category.gql.d.ts +0 -45
  324. package/lib/category/category.service.d.ts +0 -67
  325. package/lib/category/category.types.d.ts +0 -79
  326. package/lib/cryptography/cryptography.types.d.ts +0 -83
  327. package/lib/cryptography/encryption.service.d.ts +0 -41
  328. package/lib/cryptography/key-factory.service.d.ts +0 -38
  329. package/lib/cryptography/key-graph.service.d.ts +0 -33
  330. package/lib/cryptography/key-meta.service.d.ts +0 -44
  331. package/lib/cryptography/key.service.d.ts +0 -36
  332. package/lib/cryptography/slip39.service.d.ts +0 -43
  333. package/lib/cryptography/web-crypto.service.d.ts +0 -5
  334. package/lib/life-ready.config.d.ts +0 -14
  335. package/lib/life-ready.module.d.ts +0 -5
  336. package/lib/plan/plan.gql.d.ts +0 -11
  337. package/lib/plan/plan.service.d.ts +0 -33
  338. package/lib/plan/plan.types.d.ts +0 -31
  339. package/lib/record/record-attachment.service.d.ts +0 -16
  340. package/lib/record/record.gql.d.ts +0 -14
  341. package/lib/record/record.service.d.ts +0 -25
  342. package/lib/record/record.types.d.ts +0 -57
  343. package/lib/record-type/record-type.service.d.ts +0 -11
  344. package/lib/record-type/record-type.types.d.ts +0 -50
  345. package/lib/scenario/approvals/scenario-approval.gql.d.ts +0 -7
  346. package/lib/scenario/approvals/scenario-approval.types.d.ts +0 -63
  347. package/lib/scenario/approvals/scenario-approver.service.d.ts +0 -32
  348. package/lib/scenario/claimants/scenario-claimant.gql.d.ts +0 -5
  349. package/lib/scenario/claimants/scenario-claimant.service.d.ts +0 -17
  350. package/lib/scenario/claimants/scenario-claimant.types.d.ts +0 -18
  351. package/lib/scenario/receivers/scenario-receiver.gql.d.ts +0 -8
  352. package/lib/scenario/receivers/scenario-receiver.service.d.ts +0 -30
  353. package/lib/scenario/receivers/scenario-receiver.types.d.ts +0 -54
  354. package/lib/scenario/scenario-setup.service.d.ts +0 -22
  355. package/lib/scenario/scenario.gql.d.ts +0 -34
  356. package/lib/scenario/scenario.service.d.ts +0 -58
  357. package/lib/scenario/scenario.types.d.ts +0 -217
  358. package/lib/search/search.gql.d.ts +0 -1
  359. package/lib/search/search.service.d.ts +0 -25
  360. package/lib/search/search.types.d.ts +0 -20
  361. package/lib/trusted-parties/tp-password-reset-request.service.d.ts +0 -20
  362. package/lib/trusted-parties/tp-password-reset-user.service.d.ts +0 -41
  363. package/lib/trusted-parties/tp-password-reset.gql.d.ts +0 -218
  364. package/lib/trusted-parties/tp-password-reset.service.d.ts +0 -131
  365. package/lib/trusted-parties/trusted-party.gql.d.ts +0 -9
  366. package/lib/trusted-parties/trusted-party.service.d.ts +0 -44
  367. package/lib/trusted-parties/trusted-party.types.d.ts +0 -102
  368. package/lib/trusted-parties/trusted-party2.gql.d.ts +0 -79
  369. package/lib/trusted-parties/trusted-party2.service.d.ts +0 -114
  370. package/lib/users/profile-details.service.d.ts +0 -21
  371. package/lib/users/profile.gql.d.ts +0 -11
  372. package/lib/users/profile.service.d.ts +0 -35
  373. package/lib/users/profile.types.d.ts +0 -96
  374. package/lib/users/user.gql.d.ts +0 -9
  375. package/lib/users/user.service.d.ts +0 -12
  376. package/lib/users/user.types.d.ts +0 -23
  377. package/lifeready-core.d.ts +0 -9
  378. package/lifeready-core.metadata.json +0 -1
@@ -1,44 +0,0 @@
1
- import { HttpClient } from '@angular/common/http';
2
- import { KeyExchangeService } from '../api/key-exchange.service';
3
- import { LrApolloService } from '../api/lr-apollo.service';
4
- import { SharedContactCardService } from '../api/shared-contact-card.service';
5
- import { LifeReadyAuthService } from '../auth/life-ready-auth.service';
6
- import { AccessLevel } from '../category/category.types';
7
- import { EncryptionService } from '../cryptography/encryption.service';
8
- import { KeyGraphService } from '../cryptography/key-graph.service';
9
- import { KeyService } from '../cryptography/key.service';
10
- import { UserService } from '../users/user.service';
11
- import { AcceptTrustedPartyInvite, ConfirmTrustedPartyInvite, FoundTrustedParty, InviteTrustedParty, TrustedParties, TrustedParty, TrustedPartyInvite, TrustedPartyRole, TrustedPartyRoleType } from './trusted-party.types';
12
- import { KeyFactoryService } from '../cryptography/key-factory.service';
13
- export declare class TrustedPartyService {
14
- private http;
15
- private lrApollo;
16
- private sharedContactCardService;
17
- private userService;
18
- private authService;
19
- private keyExchangeService;
20
- private keyGraphService;
21
- private keyService;
22
- private keyFactory;
23
- private encryptionService;
24
- private trustedPartyRoles;
25
- constructor(http: HttpClient, lrApollo: LrApolloService, sharedContactCardService: SharedContactCardService, userService: UserService, authService: LifeReadyAuthService, keyExchangeService: KeyExchangeService, keyGraphService: KeyGraphService, keyService: KeyService, keyFactory: KeyFactoryService, encryptionService: EncryptionService);
26
- getTrustedParties(): Promise<TrustedParty[]>;
27
- getAllTrustedParties(): Promise<TrustedParties>;
28
- getTrustedParty(partyId: string): Promise<TrustedParty>;
29
- getTrustedPartyRoles(roleType?: TrustedPartyRoleType): Promise<TrustedPartyRole[]>;
30
- findByEmail(email: string): Promise<FoundTrustedParty>;
31
- inviteTrustedParty(invite: InviteTrustedParty): Promise<void>;
32
- cancelInvitation(inviteId: string): Promise<void>;
33
- getInvitation(inviteId: string, inviteToken: string, key: string): Promise<TrustedPartyInvite>;
34
- acceptInvitation(invite: AcceptTrustedPartyInvite): Promise<string>;
35
- declineInvitation(inviteId: string, inviteToken: string): Promise<void>;
36
- confirmInvitation(confirm: ConfirmTrustedPartyInvite): Promise<string>;
37
- removeTrustedParty(partyId: string): Promise<void>;
38
- setCategoryAccessLevel(categoryId: string, keyId: string, trustedParty: TrustedParty, accessLevel?: AccessLevel): Promise<void>;
39
- setRecordAccessLevel(recordId: string, keyId: string, trustedParty: TrustedParty, accessLevel: AccessLevel): Promise<void>;
40
- private shareDirectory;
41
- private unshareDirectory;
42
- mapTrustedParty(tp: any): Promise<TrustedParty>;
43
- private mapInvite;
44
- }
@@ -1,102 +0,0 @@
1
- import { DecryptedOtk, PreparedPermissions, UserSharedKey } from '../api/key-exchange.types';
2
- import { KeyExchangeMessage } from './../api/key-exchange.types';
3
- import { AccessLevel } from './../category/category.types';
4
- import { TrustedPartyDetails } from './../users/profile.types';
5
- export declare class TrustedPartyRole {
6
- id: string;
7
- name: string;
8
- roleType: TrustedPartyRoleType;
9
- categories: {
10
- category: string[];
11
- accessLevel: AccessLevel;
12
- }[];
13
- }
14
- export declare enum TrustedPartyRoleType {
15
- General = "general",
16
- Scenario = "scenario"
17
- }
18
- export declare enum TrustedPartyType {
19
- User = "user",
20
- Organisation = "organisation"
21
- }
22
- export declare enum TrustedPartyInviteStatus {
23
- Invited = "IN_PROGRESS",
24
- Cancelled = "CANCELLED",
25
- Declined = "DECLINED",
26
- Completed = "COMPLETED"
27
- }
28
- export declare class TrustedParties {
29
- parties: TrustedParty[];
30
- invites: TrustedPartyInvite[];
31
- sentInvites: TrustedPartyInvite[];
32
- }
33
- export declare class SharedTrustedPartyDetails extends TrustedPartyDetails {
34
- id: string;
35
- ownedKeyId: string;
36
- sharedKeyId: string;
37
- }
38
- export declare class TrustedPartyInvite {
39
- id: string;
40
- type: TrustedPartyType;
41
- status: TrustedPartyInviteStatus;
42
- token: string;
43
- tokenExpiry: string | Date;
44
- isExpired: boolean;
45
- isSender: boolean;
46
- actionRequired: boolean;
47
- name: string;
48
- email: string;
49
- details?: TrustedPartyDetails;
50
- message?: KeyExchangeMessage;
51
- mySharedDetails?: TrustedPartyDetails;
52
- mySharedMessage?: KeyExchangeMessage;
53
- rootKeyCipher: string;
54
- pbkCipher: string;
55
- decryptedOtk: DecryptedOtk;
56
- }
57
- export declare class TPFeatures {
58
- sharedVault: SharedVaultFeature;
59
- }
60
- export declare class SharedVaultFeature {
61
- hasAccess: boolean;
62
- }
63
- export declare class TrustedParty {
64
- id: string;
65
- type: TrustedPartyType;
66
- name: string;
67
- hasScenarios: boolean;
68
- hasSharedVault: boolean;
69
- details: TrustedPartyDetails;
70
- mySharedDetails: SharedTrustedPartyDetails;
71
- userSharedKey: UserSharedKey;
72
- username: string;
73
- features: TPFeatures;
74
- }
75
- export declare class FoundTrustedParty {
76
- id: string;
77
- email: string;
78
- username: string;
79
- isTrustedParty: boolean;
80
- isMe: boolean;
81
- }
82
- export declare class InviteTrustedParty {
83
- party: {
84
- username?: string;
85
- email?: string;
86
- name?: string;
87
- message?: string;
88
- };
89
- permissions?: PreparedPermissions;
90
- mySharedDetails: TrustedPartyDetails;
91
- }
92
- export declare class AcceptTrustedPartyInvite {
93
- inviteId: string;
94
- inviteToken: string;
95
- decryptedOtk: DecryptedOtk;
96
- mySharedDetails: TrustedPartyDetails;
97
- }
98
- export declare class ConfirmTrustedPartyInvite {
99
- inviteId: string;
100
- initiatorRootKeyCipher: string;
101
- initiatorOneTimePbkCipher: string;
102
- }
@@ -1,79 +0,0 @@
1
- import { ID } from '../api/types';
2
- export interface DeleteTpMutation {
3
- deleteTp: {
4
- id: ID;
5
- };
6
- }
7
- export declare const DeleteTpMutation: import("../_common/ast").TypedDocumentNode<DeleteTpMutation>;
8
- export interface ShareDirectoryMutation {
9
- shareDirectory: {
10
- tpDirectory: {
11
- id: ID;
12
- };
13
- };
14
- }
15
- export declare const ShareDirectoryMutation: import("../_common/ast").TypedDocumentNode<ShareDirectoryMutation>;
16
- export interface UnshareDirectoryMutation {
17
- unshareDirectory: {
18
- tpDirectory: {
19
- id: ID;
20
- };
21
- };
22
- }
23
- export declare const UnshareDirectoryMutation: import("../_common/ast").TypedDocumentNode<UnshareDirectoryMutation>;
24
- export interface ShareFileMutation {
25
- shareFile: {
26
- tpFile: {
27
- id: ID;
28
- };
29
- };
30
- }
31
- export declare const ShareFileMutation: import("../_common/ast").TypedDocumentNode<ShareFileMutation>;
32
- export interface UnshareFileMutation {
33
- unshareFile: {
34
- tpFile: {
35
- id: ID;
36
- };
37
- };
38
- }
39
- export declare const UnshareFileMutation: import("../_common/ast").TypedDocumentNode<UnshareFileMutation>;
40
- export interface TpCurrentUserSharedKeyQuery {
41
- tp: {
42
- currentUserSharedKey: {
43
- userSharedKey: {
44
- sharedKey: {
45
- id: ID;
46
- };
47
- mkSharedKey: {
48
- id: ID;
49
- };
50
- mkPxk: {
51
- id: ID;
52
- };
53
- mkReshareRequestCipher: string;
54
- mkReshareRequestSent: boolean;
55
- mkReshareResponseCipher: string;
56
- mkReshareResponseSent: boolean;
57
- };
58
- };
59
- };
60
- }
61
- export declare const TpCurrentUserSharedKeyQuery: import("../_common/ast").TypedDocumentNode<TpCurrentUserSharedKeyQuery>;
62
- export interface RequestTpMkReshareMutation {
63
- requestTpMkReshare: {
64
- id: ID;
65
- };
66
- }
67
- export declare const RequestTpMkReshareMutation: import("../_common/ast").TypedDocumentNode<RequestTpMkReshareMutation>;
68
- export interface RespondTpMkReshareMutation {
69
- respondTpMkReshare: {
70
- id: ID;
71
- };
72
- }
73
- export declare const RespondTpMkReshareMutation: import("../_common/ast").TypedDocumentNode<RespondTpMkReshareMutation>;
74
- export interface CompleteTpMkReshareMutation {
75
- completeTpMkReshare: {
76
- id: ID;
77
- };
78
- }
79
- export declare const CompleteTpMkReshareMutation: import("../_common/ast").TypedDocumentNode<CompleteTpMkReshareMutation>;
@@ -1,114 +0,0 @@
1
- import { NgZone } from '@angular/core';
2
- import { Item2Service } from '../api/item2.service';
3
- import { LrGraphQLService, LrMutation } from '../api/lr-graphql';
4
- import { AccessRoleChoice, LrRelayIdInput } from '../api/types';
5
- import { EncryptionService } from '../cryptography/encryption.service';
6
- import { KeyFactoryService } from '../cryptography/key-factory.service';
7
- import { KeyGraphService } from '../cryptography/key-graph.service';
8
- import { KeyService } from '../cryptography/key.service';
9
- import { CompleteTpMkReshareMutation, DeleteTpMutation, RequestTpMkReshareMutation, RespondTpMkReshareMutation, ShareDirectoryMutation, UnshareDirectoryMutation } from './trusted-party2.gql';
10
- export interface ShareItemOptions {
11
- itemId: LrRelayIdInput;
12
- itemKeyId?: LrRelayIdInput;
13
- tpId: LrRelayIdInput;
14
- tpSharedKeyId?: LrRelayIdInput;
15
- accessRole: AccessRoleChoice;
16
- }
17
- export interface UnshareItemOptions {
18
- itemId: string;
19
- tpId: string;
20
- }
21
- export declare class TrustedParty2Service {
22
- private ngZone;
23
- private keyGraph;
24
- private lrGraphQL;
25
- private item2Service;
26
- private keyService;
27
- private keyFactory;
28
- private encryptionService;
29
- constructor(ngZone: NgZone, keyGraph: KeyGraphService, lrGraphQL: LrGraphQLService, item2Service: Item2Service, keyService: KeyService, keyFactory: KeyFactoryService, encryptionService: EncryptionService);
30
- deleteTp(tpId: LrRelayIdInput): LrMutation<DeleteTpMutation, {
31
- input: {
32
- id: string;
33
- };
34
- }>;
35
- deleteTpMutation(tpId: LrRelayIdInput): LrMutation<DeleteTpMutation, {
36
- input: {
37
- id: string;
38
- };
39
- }>;
40
- getTpCurrentUserSharedKey(tpId: LrRelayIdInput): Promise<{
41
- sharedKey: {
42
- id: string;
43
- };
44
- mkSharedKey: {
45
- id: string;
46
- };
47
- mkPxk: {
48
- id: string;
49
- };
50
- mkReshareRequestCipher: string;
51
- mkReshareRequestSent: boolean;
52
- mkReshareResponseCipher: string;
53
- mkReshareResponseSent: boolean;
54
- }>;
55
- shareDirectory(options: ShareItemOptions): Promise<LrMutation<ShareDirectoryMutation, {
56
- input: {
57
- id: string;
58
- tpId: string;
59
- accessRole: AccessRoleChoice;
60
- keyId: string;
61
- wrappingKeyId: string;
62
- wrappedKey: string;
63
- };
64
- }>>;
65
- shareFile(options: ShareItemOptions): Promise<LrMutation<ShareDirectoryMutation, {
66
- input: {
67
- id: string;
68
- tpId: string;
69
- accessRole: AccessRoleChoice;
70
- keyId: string;
71
- wrappingKeyId: string;
72
- wrappedKey: string;
73
- };
74
- }>>;
75
- private shareItem;
76
- unshareDirectory(options: UnshareItemOptions): Promise<LrMutation<UnshareDirectoryMutation, {
77
- input: {
78
- id: string;
79
- tpId: string;
80
- };
81
- }>>;
82
- unshareFile(options: UnshareItemOptions): Promise<LrMutation<UnshareDirectoryMutation, {
83
- input: {
84
- id: string;
85
- tpId: string;
86
- };
87
- }>>;
88
- private unshareItem;
89
- requestMkReshare(tpId: LrRelayIdInput): Promise<LrMutation<RequestTpMkReshareMutation, {
90
- input: {
91
- tpId: string;
92
- masterKeyId: string;
93
- mkPbk: string;
94
- mkWrappedMkPrk: string;
95
- sharedKeyId: string;
96
- mkReshareRequestCipher: string;
97
- };
98
- }>>;
99
- respondMkReshare(tpId: LrRelayIdInput): Promise<LrMutation<RespondTpMkReshareMutation, {
100
- input: {
101
- tpId: string;
102
- mkSharedKeyId: string;
103
- mkReshareResponseCipher: string;
104
- };
105
- }>>;
106
- completeMkReshare(tpId: LrRelayIdInput): Promise<LrMutation<CompleteTpMkReshareMutation, {
107
- input: {
108
- tpId: string;
109
- masterKeyId: string;
110
- mkSharedKeyId: string;
111
- mkWrappedMkSharedKey: string;
112
- };
113
- }>>;
114
- }
@@ -1,21 +0,0 @@
1
- import { SharedContactCardService } from '../api/shared-contact-card.service';
2
- import { CurrentUser } from '../auth/auth.types';
3
- import { LifeReadyAuthService } from '../auth/life-ready-auth.service';
4
- import { TrustedPartyService } from '../trusted-parties/trusted-party.service';
5
- import { SharedTrustedPartyDetails } from '../trusted-parties/trusted-party.types';
6
- import { ProfileService } from './profile.service';
7
- import { MainContactCardFields, TrustedPartyDetails } from './profile.types';
8
- export declare class ProfileDetailsService {
9
- private sharedContactCardService;
10
- private trustedPartyService;
11
- private profileService;
12
- private authService;
13
- constructor(sharedContactCardService: SharedContactCardService, trustedPartyService: TrustedPartyService, profileService: ProfileService, authService: LifeReadyAuthService);
14
- updateDetails(fields: MainContactCardFields): Promise<CurrentUser>;
15
- private synchronizeContactCards;
16
- private getChanges;
17
- private synchronizeSharedContactCard;
18
- updateTrustedPartyDetails(details: SharedTrustedPartyDetails): Promise<void>;
19
- synchronizeSharedDetails(details: TrustedPartyDetails): Promise<void>;
20
- private checkField;
21
- }
@@ -1,11 +0,0 @@
1
- import { HasEdges } from './../_common/types';
2
- import { HasKeyGraph } from './../cryptography/cryptography.types';
3
- import { ApiCurrentUser, ApiContactCard } from './profile.types';
4
- export interface CurrentUserQueryType extends HasKeyGraph {
5
- currentUser: ApiCurrentUser;
6
- contactCards: HasEdges<ApiContactCard>;
7
- userPlans: any[];
8
- }
9
- export declare const CurrentUserQuery: import("graphql").DocumentNode;
10
- export declare const CreateContactCardMutation: import("graphql").DocumentNode;
11
- export declare const UpdateContactCardMutation: import("graphql").DocumentNode;
@@ -1,35 +0,0 @@
1
- import { HttpClient } from '@angular/common/http';
2
- import { LrApolloService } from '../api/lr-apollo.service';
3
- import { LifeReadyConfig } from '../life-ready.config';
4
- import { ApiCurrentUser, PassIdpApiResult, MainContactCard, ApiContactCard, MainContactCardFields } from './profile.types';
5
- import { KeyMetaService } from '../cryptography/key-meta.service';
6
- import { KeyService } from '../cryptography/key.service';
7
- import { EncryptionService } from '../cryptography/encryption.service';
8
- import { ContactCard } from '../api/contact-card.service';
9
- import { UserPlan } from '../plan/plan.types';
10
- import { KeyGraphService } from '../cryptography/key-graph.service';
11
- export declare class ProfileService {
12
- private config;
13
- private http;
14
- private lrApollo;
15
- private keyService;
16
- private keyMetaService;
17
- private keyGraph;
18
- private encryptionService;
19
- constructor(config: LifeReadyConfig, http: HttpClient, lrApollo: LrApolloService, keyService: KeyService, keyMetaService: KeyMetaService, keyGraph: KeyGraphService, encryptionService: EncryptionService);
20
- getPassIdpParams(emailOrPhone: string): Promise<PassIdpApiResult>;
21
- getCurrentUser(): Promise<{
22
- currentUser: ApiCurrentUser;
23
- contactCard: ApiContactCard;
24
- userPlans: UserPlan[];
25
- }>;
26
- decryptContactCard(contactCard: ApiContactCard): Promise<MainContactCard>;
27
- updateDetails(id: string, keyId: string, fields: MainContactCardFields): Promise<void>;
28
- private prepareContactCardInput;
29
- private createContactCard;
30
- private updateContactCard;
31
- decryptContactCardEdges(edges: any): Promise<ContactCard[]>;
32
- getContactCards(): Promise<ContactCard[]>;
33
- deleteContactCard(id: string): Promise<string>;
34
- signOut(): Promise<void>;
35
- }
@@ -1,96 +0,0 @@
1
- import { PassIdpParams, PassKey } from '../cryptography/cryptography.types';
2
- import { UserDelete } from './user.types';
3
- export declare class CurrentUserKey {
4
- passKey?: PassKey;
5
- masterKey?: {
6
- id: string;
7
- };
8
- rootKey?: {
9
- id: string;
10
- };
11
- pxk?: {
12
- id: string;
13
- };
14
- sigPxk?: {
15
- id: string;
16
- };
17
- }
18
- export declare class ApiCurrentUser {
19
- id: string;
20
- username: string;
21
- currentUserKey: CurrentUserKey;
22
- userDelete: UserDelete;
23
- features: any;
24
- sessionEncryptionKey: string;
25
- }
26
- export declare class ApiContactCard {
27
- id: string;
28
- cipherData: string;
29
- key: {
30
- id: string;
31
- };
32
- }
33
- export declare class ContactCardName {
34
- name: string;
35
- title?: string;
36
- firstName?: string;
37
- lastName?: string;
38
- constructor(input: any);
39
- }
40
- export declare class ContactCardAddress {
41
- fullAddress: string;
42
- streetAddress: string;
43
- suburb: string;
44
- state: string;
45
- postcode: string;
46
- country: string;
47
- }
48
- export declare class MainContactCardProperty<T> {
49
- value: T;
50
- hasMultiple: boolean;
51
- values?: {
52
- id: string;
53
- label: string;
54
- value: T;
55
- }[];
56
- }
57
- export declare class MainContactCardFields {
58
- name: MainContactCardProperty<ContactCardName>;
59
- email: MainContactCardProperty<string>;
60
- image: MainContactCardProperty<string>;
61
- phone: MainContactCardProperty<string>;
62
- address: MainContactCardProperty<ContactCardAddress>;
63
- }
64
- export declare class MainContactCard extends MainContactCardFields {
65
- id: string;
66
- keyId: string;
67
- }
68
- export declare class MainContactCardPlainFields {
69
- name: ContactCardName;
70
- }
71
- export declare enum PasswordChangeStatus {
72
- InProgress = "IN_PROGRESS",
73
- Recovery = "RECOVERY"
74
- }
75
- export declare class PassIdpApiResult {
76
- passwordChangeStatus?: PasswordChangeStatus;
77
- currentPassIdpParams: PassIdpParams;
78
- newPassIdpParams: PassIdpParams;
79
- tpPasswordReset: {
80
- passIdpParams: PassIdpParams;
81
- resetUsername: string;
82
- };
83
- }
84
- export declare class TrustedPartyDetails {
85
- name: ContactCardName;
86
- email?: string;
87
- image?: string;
88
- phones?: {
89
- label: string;
90
- value: string;
91
- }[];
92
- addresses?: {
93
- label: string;
94
- value: ContactCardAddress;
95
- }[];
96
- }
@@ -1,9 +0,0 @@
1
- import { User } from './user.types';
2
- import { HasKeyGraph } from '../cryptography/cryptography.types';
3
- export interface UserQueryType extends HasKeyGraph {
4
- user: User;
5
- }
6
- export declare const UserQuery: import("graphql").DocumentNode;
7
- export declare const RequestUserDeleteMutation: import("graphql").DocumentNode;
8
- export declare const CancelUserDeleteMutation: import("graphql").DocumentNode;
9
- export declare const LoginHistoryQuery: import("graphql").DocumentNode;
@@ -1,12 +0,0 @@
1
- import { User, GetUserInput, UserDelete } from './user.types';
2
- import { LrApolloService } from '../api/lr-apollo.service';
3
- export declare class UserService {
4
- private lrApollo;
5
- constructor(lrApollo: LrApolloService);
6
- getUserByEmail(email: string): Promise<User>;
7
- getUserByUsername(username: string): Promise<User>;
8
- getUser({ email, username }: GetUserInput): Promise<User>;
9
- requestUserDelete(): Promise<UserDelete>;
10
- cancelUserDelete(): Promise<string>;
11
- loginHistory(first?: number, after?: string): Promise<any>;
12
- }
@@ -1,23 +0,0 @@
1
- import { Key } from '../cryptography/cryptography.types';
2
- export interface GetUserInput {
3
- email?: string;
4
- username?: string;
5
- }
6
- export interface User {
7
- id?: string;
8
- username?: string;
9
- haveTp: boolean;
10
- isCurrentUser: boolean;
11
- contactCards?: any;
12
- currentUserKey: {
13
- sigPxk?: Key;
14
- pxk?: Key;
15
- };
16
- }
17
- export declare enum UserDeleteState {
18
- REQUESTED = "REQUESTED"
19
- }
20
- export interface UserDelete {
21
- created?: string;
22
- state: UserDeleteState;
23
- }
@@ -1,9 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- export * from './public-api';
5
- export { RunOutsideAngular as ɵd } from './lib/_common/run-outside-angular';
6
- export { LrGraphQLService as ɵb, LrService as ɵg } from './lib/api/lr-graphql';
7
- export { TpPasswordResetProcessorService as ɵc } from './lib/api/query-processor/tp-password-reset-processor.service';
8
- export { SharedContactCardFields as ɵe, SharedContactCardService as ɵf } from './lib/api/shared-contact-card.service';
9
- export { TimeService as ɵa } from './lib/api/time.service';