@clioplaylists/clio 0.1.0 → 0.1.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 (148) hide show
  1. package/dist/.env +1 -1
  2. package/dist/api/com/clioplaylists/alpha/actor/getProfile.d.ts +0 -0
  3. package/dist/api/com/clioplaylists/alpha/feed/getSongs.d.ts +0 -0
  4. package/dist/api/health.d.ts +3 -0
  5. package/dist/api/index.d.ts +4 -0
  6. package/dist/api/util.d.ts +9 -0
  7. package/dist/auth-verifier.d.ts +92 -0
  8. package/dist/client.d.ts +9 -0
  9. package/dist/config.d.ts +21 -0
  10. package/dist/context.d.ts +11 -0
  11. package/dist/dataplane/client.d.ts +27 -0
  12. package/dist/dataplane/index.d.ts +2 -0
  13. package/dist/dataplane/server/background.d.ts +13 -0
  14. package/dist/dataplane/server/db/database-schema.d.ts +13 -0
  15. package/dist/dataplane/server/db/db.d.ts +32 -0
  16. package/dist/dataplane/server/db/index.d.ts +1 -0
  17. package/dist/dataplane/server/db/migrations/20230309T045948368Z-init.d.ts +3 -0
  18. package/dist/dataplane/server/db/migrations/20230420T211446071Z-did-cache.d.ts +3 -0
  19. package/dist/dataplane/server/db/migrations/index.d.ts +2 -0
  20. package/dist/dataplane/server/db/migrations/provider.d.ts +11 -0
  21. package/dist/dataplane/server/db/pagination.d.ts +86 -0
  22. package/dist/dataplane/server/db/tables/actor-sync.d.ts +9 -0
  23. package/dist/dataplane/server/db/tables/actor.d.ts +11 -0
  24. package/dist/dataplane/server/db/tables/artist-list-item.d.ts +11 -0
  25. package/dist/dataplane/server/db/tables/artist.d.ts +10 -0
  26. package/dist/dataplane/server/db/tables/playlist-idea.d.ts +14 -0
  27. package/dist/dataplane/server/db/tables/playlist-item.d.ts +11 -0
  28. package/dist/dataplane/server/db/tables/playlist.d.ts +10 -0
  29. package/dist/dataplane/server/db/tables/profile.d.ts +15 -0
  30. package/dist/dataplane/server/db/tables/record.d.ts +12 -0
  31. package/dist/dataplane/server/db/tables/song.d.ts +12 -0
  32. package/dist/dataplane/server/db/types.d.ts +9 -0
  33. package/dist/dataplane/server/db/util.d.ts +20 -0
  34. package/dist/dataplane/server/index.d.ts +11 -0
  35. package/dist/dataplane/server/indexing/index.d.ts +32 -0
  36. package/dist/dataplane/server/indexing/plugins/playlist-idea.d.ts +14 -0
  37. package/dist/dataplane/server/indexing/plugins/profile.d.ts +8 -0
  38. package/dist/dataplane/server/indexing/processor.d.ts +22 -0
  39. package/dist/dataplane/server/routes/identity.d.ts +6 -0
  40. package/dist/dataplane/server/routes/index.d.ts +5 -0
  41. package/dist/dataplane/server/routes/profile.d.ts +5 -0
  42. package/dist/dataplane/server/routes/records.d.ts +11 -0
  43. package/dist/dataplane/server/routes/sync.d.ts +5 -0
  44. package/dist/dataplane/server/subscription.d.ts +25 -0
  45. package/dist/error.d.ts +2 -0
  46. package/dist/index.d.ts +20 -0
  47. package/dist/lexicons/index.d.ts +278 -0
  48. package/dist/lexicons/lexicons.d.ts +8466 -0
  49. package/dist/lexicons/types/com/atproto/admin/defs.d.ts +50 -0
  50. package/dist/lexicons/types/com/atproto/admin/deleteAccount.d.ts +29 -0
  51. package/dist/lexicons/types/com/atproto/admin/disableAccountInvites.d.ts +31 -0
  52. package/dist/lexicons/types/com/atproto/admin/disableInviteCodes.d.ts +30 -0
  53. package/dist/lexicons/types/com/atproto/admin/enableAccountInvites.d.ts +31 -0
  54. package/dist/lexicons/types/com/atproto/admin/getAccountInfo.d.ts +33 -0
  55. package/dist/lexicons/types/com/atproto/admin/getAccountInfos.d.ts +36 -0
  56. package/dist/lexicons/types/com/atproto/admin/getInviteCodes.d.ts +39 -0
  57. package/dist/lexicons/types/com/atproto/admin/getSubjectStatus.d.ts +44 -0
  58. package/dist/lexicons/types/com/atproto/admin/searchAccounts.d.ts +39 -0
  59. package/dist/lexicons/types/com/atproto/admin/sendEmail.d.ts +45 -0
  60. package/dist/lexicons/types/com/atproto/admin/updateAccountEmail.d.ts +31 -0
  61. package/dist/lexicons/types/com/atproto/admin/updateAccountHandle.d.ts +30 -0
  62. package/dist/lexicons/types/com/atproto/admin/updateAccountPassword.d.ts +30 -0
  63. package/dist/lexicons/types/com/atproto/admin/updateSubjectStatus.d.ts +51 -0
  64. package/dist/lexicons/types/com/atproto/identity/defs.d.ts +14 -0
  65. package/dist/lexicons/types/com/atproto/identity/getRecommendedDidCredentials.d.ts +38 -0
  66. package/dist/lexicons/types/com/atproto/identity/refreshIdentity.d.ts +39 -0
  67. package/dist/lexicons/types/com/atproto/identity/requestPlcOperationSignature.d.ts +23 -0
  68. package/dist/lexicons/types/com/atproto/identity/resolveDid.d.ts +38 -0
  69. package/dist/lexicons/types/com/atproto/identity/resolveHandle.d.ts +37 -0
  70. package/dist/lexicons/types/com/atproto/identity/resolveIdentity.d.ts +35 -0
  71. package/dist/lexicons/types/com/atproto/identity/signPlcOperation.d.ts +46 -0
  72. package/dist/lexicons/types/com/atproto/identity/submitPlcOperation.d.ts +29 -0
  73. package/dist/lexicons/types/com/atproto/identity/updateHandle.d.ts +30 -0
  74. package/dist/lexicons/types/com/atproto/label/defs.d.ts +73 -0
  75. package/dist/lexicons/types/com/atproto/label/queryLabels.d.ts +42 -0
  76. package/dist/lexicons/types/com/atproto/label/subscribeLabels.d.ts +38 -0
  77. package/dist/lexicons/types/com/atproto/lexicon/schema.d.ts +11 -0
  78. package/dist/lexicons/types/com/atproto/moderation/createReport.d.ts +57 -0
  79. package/dist/lexicons/types/com/atproto/moderation/defs.d.ts +20 -0
  80. package/dist/lexicons/types/com/atproto/repo/applyWrites.d.ts +98 -0
  81. package/dist/lexicons/types/com/atproto/repo/createRecord.d.ts +56 -0
  82. package/dist/lexicons/types/com/atproto/repo/defs.d.ts +11 -0
  83. package/dist/lexicons/types/com/atproto/repo/deleteRecord.d.ts +51 -0
  84. package/dist/lexicons/types/com/atproto/repo/describeRepo.d.ts +43 -0
  85. package/dist/lexicons/types/com/atproto/repo/getRecord.d.ts +45 -0
  86. package/dist/lexicons/types/com/atproto/repo/importRepo.d.ts +27 -0
  87. package/dist/lexicons/types/com/atproto/repo/listMissingBlobs.d.ts +45 -0
  88. package/dist/lexicons/types/com/atproto/repo/listRecords.d.ts +53 -0
  89. package/dist/lexicons/types/com/atproto/repo/putRecord.d.ts +58 -0
  90. package/dist/lexicons/types/com/atproto/repo/strongRef.d.ts +11 -0
  91. package/dist/lexicons/types/com/atproto/repo/uploadBlob.d.ts +39 -0
  92. package/dist/lexicons/types/com/atproto/server/activateAccount.d.ts +23 -0
  93. package/dist/lexicons/types/com/atproto/server/checkAccountStatus.d.ts +42 -0
  94. package/dist/lexicons/types/com/atproto/server/confirmEmail.d.ts +31 -0
  95. package/dist/lexicons/types/com/atproto/server/createAccount.d.ts +61 -0
  96. package/dist/lexicons/types/com/atproto/server/createAppPassword.d.ts +51 -0
  97. package/dist/lexicons/types/com/atproto/server/createInviteCode.d.ts +41 -0
  98. package/dist/lexicons/types/com/atproto/server/createInviteCodes.d.ts +50 -0
  99. package/dist/lexicons/types/com/atproto/server/createSession.d.ts +56 -0
  100. package/dist/lexicons/types/com/atproto/server/deactivateAccount.d.ts +30 -0
  101. package/dist/lexicons/types/com/atproto/server/defs.d.ts +23 -0
  102. package/dist/lexicons/types/com/atproto/server/deleteAccount.d.ts +32 -0
  103. package/dist/lexicons/types/com/atproto/server/deleteSession.d.ts +23 -0
  104. package/dist/lexicons/types/com/atproto/server/describeServer.d.ts +56 -0
  105. package/dist/lexicons/types/com/atproto/server/getAccountInviteCodes.d.ts +39 -0
  106. package/dist/lexicons/types/com/atproto/server/getServiceAuth.d.ts +41 -0
  107. package/dist/lexicons/types/com/atproto/server/getSession.d.ts +42 -0
  108. package/dist/lexicons/types/com/atproto/server/listAppPasswords.d.ts +44 -0
  109. package/dist/lexicons/types/com/atproto/server/refreshSession.d.ts +42 -0
  110. package/dist/lexicons/types/com/atproto/server/requestAccountDelete.d.ts +23 -0
  111. package/dist/lexicons/types/com/atproto/server/requestEmailConfirmation.d.ts +23 -0
  112. package/dist/lexicons/types/com/atproto/server/requestEmailUpdate.d.ts +34 -0
  113. package/dist/lexicons/types/com/atproto/server/requestPasswordReset.d.ts +29 -0
  114. package/dist/lexicons/types/com/atproto/server/reserveSigningKey.d.ts +42 -0
  115. package/dist/lexicons/types/com/atproto/server/resetPassword.d.ts +31 -0
  116. package/dist/lexicons/types/com/atproto/server/revokeAppPassword.d.ts +29 -0
  117. package/dist/lexicons/types/com/atproto/server/updateEmail.d.ts +33 -0
  118. package/dist/lexicons/types/com/atproto/sync/getBlob.d.ts +36 -0
  119. package/dist/lexicons/types/com/atproto/sync/getBlocks.d.ts +35 -0
  120. package/dist/lexicons/types/com/atproto/sync/getCheckout.d.ts +33 -0
  121. package/dist/lexicons/types/com/atproto/sync/getHead.d.ts +37 -0
  122. package/dist/lexicons/types/com/atproto/sync/getLatestCommit.d.ts +38 -0
  123. package/dist/lexicons/types/com/atproto/sync/getRecord.d.ts +37 -0
  124. package/dist/lexicons/types/com/atproto/sync/getRepo.d.ts +36 -0
  125. package/dist/lexicons/types/com/atproto/sync/getRepoStatus.d.ts +42 -0
  126. package/dist/lexicons/types/com/atproto/sync/listBlobs.d.ts +42 -0
  127. package/dist/lexicons/types/com/atproto/sync/listRepos.d.ts +50 -0
  128. package/dist/lexicons/types/com/atproto/sync/listReposByCollection.d.ts +46 -0
  129. package/dist/lexicons/types/com/atproto/sync/notifyOfUpdate.d.ts +30 -0
  130. package/dist/lexicons/types/com/atproto/sync/requestCrawl.d.ts +30 -0
  131. package/dist/lexicons/types/com/atproto/sync/subscribeRepos.d.ts +111 -0
  132. package/dist/lexicons/types/com/atproto/temp/addReservedHandle.d.ts +39 -0
  133. package/dist/lexicons/types/com/atproto/temp/checkSignupQueue.d.ts +36 -0
  134. package/dist/lexicons/types/com/atproto/temp/fetchLabels.d.ts +37 -0
  135. package/dist/lexicons/types/com/atproto/temp/requestPhoneVerification.d.ts +29 -0
  136. package/dist/lexicons/types/com/clioplaylists/alpha/actor/profile.d.ts +19 -0
  137. package/dist/lexicons/types/com/clioplaylists/alpha/feed/defs.d.ts +32 -0
  138. package/dist/lexicons/types/com/clioplaylists/alpha/feed/getSongs.d.ts +37 -0
  139. package/dist/lexicons/types/com/clioplaylists/alpha/feed/playlistIdea.d.ts +32 -0
  140. package/dist/lexicons/util.d.ts +5 -0
  141. package/dist/logger.d.ts +6 -0
  142. package/dist/rpc/clio_connect.d.ts +103 -0
  143. package/dist/rpc/clio_pb.d.ts +457 -0
  144. package/dist/start.d.ts +1 -0
  145. package/dist/util/retry.d.ts +2 -0
  146. package/dist/util/uris.d.ts +1 -0
  147. package/dist/util.d.ts +23 -0
  148. package/package.json +2 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.