@audius/sdk 15.0.1 → 15.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +8 -9
- package/.turbo/turbo-lint.log +1 -1
- package/.turbo/turbo-test.log +24 -23
- package/.turbo/turbo-typecheck.log +1 -1
- package/CHANGELOG.md +35 -0
- package/package.json +22 -8
- package/rollup.config.ts +23 -3
- package/src/sdk/api/chats/ChatsApi.ts +1 -1
- package/src/sdk/api/comments/CommentsAPI.ts +214 -13
- package/src/sdk/api/comments/types.ts +61 -8
- package/src/sdk/api/developer-apps/types.ts +2 -20
- package/src/sdk/api/events/EventsApi.ts +96 -4
- package/src/sdk/api/events/types.ts +17 -0
- package/src/sdk/api/generated/default/.openapi-generator/FILES +14 -0
- package/src/sdk/api/generated/default/apis/ChallengesApi.ts +10 -6
- package/src/sdk/api/generated/default/apis/CommentsApi.ts +61 -43
- package/src/sdk/api/generated/default/apis/DeveloperAppsApi.ts +7 -5
- package/src/sdk/api/generated/default/apis/EventsApi.ts +451 -9
- package/src/sdk/api/generated/default/apis/ExploreApi.ts +5 -3
- package/src/sdk/api/generated/default/apis/FanClubApi.ts +152 -0
- package/src/sdk/api/generated/default/apis/NotificationsApi.ts +4 -1
- package/src/sdk/api/generated/default/apis/PlaylistsApi.ts +151 -61
- package/src/sdk/api/generated/default/apis/SearchApi.ts +15 -9
- package/src/sdk/api/generated/default/apis/TipsApi.ts +5 -3
- package/src/sdk/api/generated/default/apis/TracksApi.ts +285 -144
- package/src/sdk/api/generated/default/apis/UsersApi.ts +386 -206
- package/src/sdk/api/generated/default/apis/index.ts +1 -0
- package/src/sdk/api/generated/default/models/AnnouncementNotificationActionData.ts +8 -0
- package/src/sdk/api/generated/default/models/Comment.ts +16 -0
- package/src/sdk/api/generated/default/models/CommentEntityType.ts +3 -1
- package/src/sdk/api/generated/default/models/CreateCommentRequestBody.ts +8 -0
- package/src/sdk/api/generated/default/models/EventFollowState.ts +75 -0
- package/src/sdk/api/generated/default/models/EventFollowStateResponse.ts +72 -0
- package/src/sdk/api/generated/default/models/FanClubTextPostNotification.ts +108 -0
- package/src/sdk/api/generated/default/models/FanClubTextPostNotificationAction.ts +100 -0
- package/src/sdk/api/generated/default/models/FanClubTextPostNotificationActionData.ts +75 -0
- package/src/sdk/api/generated/default/models/FanRemixContestSubmissionNotification.ts +108 -0
- package/src/sdk/api/generated/default/models/FanRemixContestSubmissionNotificationAction.ts +100 -0
- package/src/sdk/api/generated/default/models/FanRemixContestSubmissionNotificationActionData.ts +102 -0
- package/src/sdk/api/generated/default/models/Notification.ts +34 -1
- package/src/sdk/api/generated/default/models/RemixContestUpdateNotification.ts +108 -0
- package/src/sdk/api/generated/default/models/RemixContestUpdateNotificationAction.ts +100 -0
- package/src/sdk/api/generated/default/models/RemixContestUpdateNotificationActionData.ts +93 -0
- package/src/sdk/api/generated/default/models/RemixContestsRelated.ts +94 -0
- package/src/sdk/api/generated/default/models/RemixContestsResponse.ts +86 -0
- package/src/sdk/api/generated/default/models/ReplyComment.ts +8 -0
- package/src/sdk/api/generated/default/models/UserCoin.ts +15 -0
- package/src/sdk/api/generated/default/models/index.ts +13 -0
- package/src/sdk/api/generated/default/runtime.ts +2 -2
- package/src/sdk/api/generator/{gen.cjs → gen.js} +1 -0
- package/src/sdk/api/generator/templates/typescript-fetch/apis.mustache +7 -5
- package/src/sdk/api/generator/templates/typescript-fetch/runtime.mustache +2 -2
- package/src/sdk/api/playlists/PlaylistsApi.ts +5 -5
- package/src/sdk/api/tracks/types.ts +1 -0
- package/src/sdk/createSdk.ts +24 -5
- package/src/sdk/createSdkWithServices.ts +39 -9
- package/src/sdk/index.ts +1 -0
- package/src/sdk/middleware/addSolanaWalletSignatureMiddleware.ts +44 -0
- package/src/sdk/middleware/index.ts +1 -0
- package/src/sdk/oauth/OAuth.test.ts +110 -4
- package/src/sdk/oauth/OAuth.ts +51 -12
- package/src/sdk/oauth/TokenStoreAsyncStorage.ts +48 -4
- package/src/sdk/oauth/TokenStoreLocalStorage.ts +48 -1
- package/src/sdk/oauth/TokenStoreMemory.ts +22 -1
- package/src/sdk/oauth/tokenStore.test.ts +32 -3
- package/src/sdk/oauth/tokenStore.ts +10 -1
- package/src/sdk/oauth/tokenStoreAsyncStorage.test.ts +130 -0
- package/src/sdk/oauth/tokenStoreLocalStorage.test.ts +45 -1
- package/src/sdk/scripts/generateServicesConfig.ts +1 -2
- package/src/sdk/services/EntityManager/EntityManagerClient.ts +27 -4
- package/src/sdk/services/EntityManager/types.ts +8 -0
- package/src/sdk/services/Solana/programs/ClaimableTokensClient/ClaimableTokensClient.ts +92 -12
- package/src/sdk/services/Solana/programs/ClaimableTokensClient/types.ts +5 -1
- package/src/sdk/services/Storage/Storage.ts +12 -1
- package/src/sdk/solanaWallet/SolanaWallet.ts +61 -0
- package/src/sdk/solanaWallet/index.ts +8 -0
- package/src/sdk/utils/mergeConfigs.ts +55 -11
- package/src/sdk/utils/objectUtils.ts +30 -0
- package/dist/browser-15461226.js +0 -2732
- package/dist/browser-15461226.js.map +0 -1
- package/dist/index.browser.esm.js +0 -51254
- package/dist/index.browser.esm.js.map +0 -1
- package/dist/index.d.ts +0 -52
- package/dist/index.esm.js +0 -48732
- package/dist/index.esm.js.map +0 -1
- package/dist/index.native.d.ts +0 -15
- package/dist/index.native.js +0 -48803
- package/dist/index.native.js.map +0 -1
- package/dist/sdk/api/ResolveApi.d.ts +0 -24
- package/dist/sdk/api/albums/AlbumsApi.d.ts +0 -71
- package/dist/sdk/api/albums/AlbumsApi.test.d.ts +0 -1
- package/dist/sdk/api/albums/types.d.ts +0 -3109
- package/dist/sdk/api/challenges/types.d.ts +0 -26
- package/dist/sdk/api/chats/ChatsApi.d.ts +0 -233
- package/dist/sdk/api/chats/clientTypes.d.ts +0 -270
- package/dist/sdk/api/chats/serverTypes.d.ts +0 -199
- package/dist/sdk/api/comments/CommentsAPI.d.ts +0 -58
- package/dist/sdk/api/comments/types.d.ts +0 -118
- package/dist/sdk/api/dashboard-wallet-users/DashboardWalletUsersApi.d.ts +0 -19
- package/dist/sdk/api/dashboard-wallet-users/types.d.ts +0 -87
- package/dist/sdk/api/developer-apps/DeveloperAppsApi.d.ts +0 -62
- package/dist/sdk/api/developer-apps/types.d.ts +0 -59
- package/dist/sdk/api/events/EventsApi.d.ts +0 -19
- package/dist/sdk/api/events/types.d.ts +0 -124
- package/dist/sdk/api/generated/default/apis/ChallengesApi.d.ts +0 -64
- package/dist/sdk/api/generated/default/apis/CidDataApi.d.ts +0 -29
- package/dist/sdk/api/generated/default/apis/CoinsApi.d.ts +0 -220
- package/dist/sdk/api/generated/default/apis/CommentsApi.d.ts +0 -162
- package/dist/sdk/api/generated/default/apis/DashboardWalletUsersApi.d.ts +0 -29
- package/dist/sdk/api/generated/default/apis/DeveloperAppsApi.d.ts +0 -130
- package/dist/sdk/api/generated/default/apis/EventsApi.d.ts +0 -112
- package/dist/sdk/api/generated/default/apis/ExploreApi.d.ts +0 -43
- package/dist/sdk/api/generated/default/apis/NotificationsApi.d.ts +0 -94
- package/dist/sdk/api/generated/default/apis/PlaylistsApi.d.ts +0 -296
- package/dist/sdk/api/generated/default/apis/PrizesApi.d.ts +0 -50
- package/dist/sdk/api/generated/default/apis/ReactionsApi.d.ts +0 -30
- package/dist/sdk/api/generated/default/apis/ResolveApi.d.ts +0 -30
- package/dist/sdk/api/generated/default/apis/RewardsApi.d.ts +0 -41
- package/dist/sdk/api/generated/default/apis/SearchApi.d.ts +0 -157
- package/dist/sdk/api/generated/default/apis/TipsApi.d.ts +0 -55
- package/dist/sdk/api/generated/default/apis/TracksApi.d.ts +0 -846
- package/dist/sdk/api/generated/default/apis/TransactionsApi.d.ts +0 -71
- package/dist/sdk/api/generated/default/apis/UsersApi.d.ts +0 -1737
- package/dist/sdk/api/generated/default/apis/WalletApi.d.ts +0 -31
- package/dist/sdk/api/generated/default/apis/index.d.ts +0 -20
- package/dist/sdk/api/generated/default/index.d.ts +0 -3
- package/dist/sdk/api/generated/default/models/Access.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/AccessGate.d.ts +0 -23
- package/dist/sdk/api/generated/default/models/AccessInfoResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/Account.d.ts +0 -51
- package/dist/sdk/api/generated/default/models/AccountCollection.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/AccountCollectionUser.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/Activity.d.ts +0 -56
- package/dist/sdk/api/generated/default/models/AddManagerRequestBody.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/AlbumBacklink.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/AlbumsResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/AnnouncementNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/AnnouncementNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/AnnouncementNotificationActionData.d.ts +0 -54
- package/dist/sdk/api/generated/default/models/ApproveGrantRequestBody.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/ApproveManagerRequestNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/ApproveManagerRequestNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/ApproveManagerRequestNotificationActionData.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/ArtistCoinFees.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/ArtistLocker.d.ts +0 -48
- package/dist/sdk/api/generated/default/models/ArtistRemixContestEndedNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/ArtistRemixContestEndedNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/ArtistRemixContestEndedNotificationActionData.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/ArtistRemixContestEndingSoonNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/ArtistRemixContestEndingSoonNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/ArtistRemixContestEndingSoonNotificationActionData.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/ArtistRemixContestSubmissionsNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/ArtistRemixContestSubmissionsNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/ArtistRemixContestSubmissionsNotificationActionData.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/Attestation.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/AttestationReponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/AuthorizedApp.d.ts +0 -66
- package/dist/sdk/api/generated/default/models/AuthorizedApps.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/BalanceHistoryDataPoint.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/BalanceHistoryResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/BestSellingItem.d.ts +0 -56
- package/dist/sdk/api/generated/default/models/BestSellingResponse.d.ts +0 -81
- package/dist/sdk/api/generated/default/models/BlobInfo.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/BulkSubscribersResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/ChallengeResponse.d.ts +0 -102
- package/dist/sdk/api/generated/default/models/ChallengeRewardNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/ChallengeRewardNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/ChallengeRewardNotificationActionData.d.ts +0 -48
- package/dist/sdk/api/generated/default/models/CidData.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/CidDataResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/ClaimRewardsRequestBody.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/ClaimRewardsResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/ClaimRewardsResponseDataInner.d.ts +0 -54
- package/dist/sdk/api/generated/default/models/ClaimableRewardNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/ClaimableRewardNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/ClaimableRewardNotificationActionData.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/ClaimedPrize.d.ts +0 -78
- package/dist/sdk/api/generated/default/models/ClaimedPrizesResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/Coin.d.ts +0 -232
- package/dist/sdk/api/generated/default/models/CoinInsights.d.ts +0 -352
- package/dist/sdk/api/generated/default/models/CoinInsightsDynamicBondingCurve.d.ts +0 -72
- package/dist/sdk/api/generated/default/models/CoinInsightsExtensions.d.ts +0 -54
- package/dist/sdk/api/generated/default/models/CoinInsightsResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/CoinMember.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/CoinMembersCountResponse.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/CoinMembersResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/CoinResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/CoinsResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/CoinsVolumeLeadersResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/CoinsVolumeLeadersResponseDataInner.d.ts +0 -43
- package/dist/sdk/api/generated/default/models/Collectibles.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/CollectiblesResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/CollectionActivityWithoutTracks.d.ts +0 -45
- package/dist/sdk/api/generated/default/models/CollectionLibraryResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/Comment.d.ts +0 -135
- package/dist/sdk/api/generated/default/models/CommentEntityType.d.ts +0 -21
- package/dist/sdk/api/generated/default/models/CommentMention.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/CommentMentionNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/CommentMentionNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/CommentMentionNotificationActionData.d.ts +0 -63
- package/dist/sdk/api/generated/default/models/CommentNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/CommentNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/CommentNotificationActionData.d.ts +0 -57
- package/dist/sdk/api/generated/default/models/CommentNotificationSetting.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/CommentReactionNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/CommentReactionNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/CommentReactionNotificationActionData.d.ts +0 -63
- package/dist/sdk/api/generated/default/models/CommentRepliesResponse.d.ts +0 -81
- package/dist/sdk/api/generated/default/models/CommentResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/CommentThreadNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/CommentThreadNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/CommentThreadNotificationActionData.d.ts +0 -63
- package/dist/sdk/api/generated/default/models/ConnectedWallets.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/ConnectedWalletsResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/CosignNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/CosignNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/CosignNotificationActionData.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/CoverArt.d.ts +0 -48
- package/dist/sdk/api/generated/default/models/CoverPhoto.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/CreateAccessKeyResponse.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/CreateCoinRequest.d.ts +0 -90
- package/dist/sdk/api/generated/default/models/CreateCoinResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/CreateCoinResponseData.d.ts +0 -102
- package/dist/sdk/api/generated/default/models/CreateCommentRequestBody.d.ts +0 -67
- package/dist/sdk/api/generated/default/models/CreateCommentResponse.d.ts +0 -48
- package/dist/sdk/api/generated/default/models/CreateDeveloperAppRequestBody.d.ts +0 -48
- package/dist/sdk/api/generated/default/models/CreateDeveloperAppResponse.d.ts +0 -60
- package/dist/sdk/api/generated/default/models/CreateGrantRequestBody.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/CreateNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/CreateNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/CreateNotificationActionData.d.ts +0 -21
- package/dist/sdk/api/generated/default/models/CreatePlaylistNotificationActionData.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/CreatePlaylistRequestBody.d.ts +0 -171
- package/dist/sdk/api/generated/default/models/CreatePlaylistRequestBodyCopyrightLine.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/CreatePlaylistRequestBodyProducerCopyrightLine.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/CreatePlaylistResponse.d.ts +0 -48
- package/dist/sdk/api/generated/default/models/CreateRewardCodeRequest.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/CreateRewardCodeResponse.d.ts +0 -48
- package/dist/sdk/api/generated/default/models/CreateTrackNotificationActionData.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/CreateTrackRequestBody.d.ts +0 -292
- package/dist/sdk/api/generated/default/models/CreateTrackResponse.d.ts +0 -48
- package/dist/sdk/api/generated/default/models/CreateUserRequestBody.d.ts +0 -153
- package/dist/sdk/api/generated/default/models/CreateUserResponse.d.ts +0 -48
- package/dist/sdk/api/generated/default/models/DashboardWalletUser.d.ts +0 -37
- package/dist/sdk/api/generated/default/models/DashboardWalletUsersResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/DataAndType.d.ts +0 -37
- package/dist/sdk/api/generated/default/models/DdexCopyright.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/DdexResourceContributor.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/DdexRightsController.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/DeactivateAccessKeyRequestBody.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/DeactivateAccessKeyResponse.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/DecodedUserToken.d.ts +0 -79
- package/dist/sdk/api/generated/default/models/DeveloperApp.d.ts +0 -60
- package/dist/sdk/api/generated/default/models/DeveloperAppResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/DeveloperAppsResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/DynamicBondingCurveInsights.d.ts +0 -72
- package/dist/sdk/api/generated/default/models/EmailAccess.d.ts +0 -72
- package/dist/sdk/api/generated/default/models/EmailAccessResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/Event.d.ts +0 -102
- package/dist/sdk/api/generated/default/models/EventsResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/ExtendedAccessGate.d.ts +0 -23
- package/dist/sdk/api/generated/default/models/ExtendedPaymentSplit.d.ts +0 -54
- package/dist/sdk/api/generated/default/models/ExtendedPurchaseGate.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/ExtendedTokenGate.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/ExtendedUsdcGate.d.ts +0 -37
- package/dist/sdk/api/generated/default/models/FanRemixContestEndedNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/FanRemixContestEndedNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/FanRemixContestEndedNotificationActionData.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/FanRemixContestEndingSoonNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/FanRemixContestEndingSoonNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/FanRemixContestEndingSoonNotificationActionData.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/FanRemixContestStartedNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/FanRemixContestStartedNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/FanRemixContestStartedNotificationActionData.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/FanRemixContestWinnersSelectedNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/FanRemixContestWinnersSelectedNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/FanRemixContestWinnersSelectedNotificationActionData.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/Favorite.d.ts +0 -48
- package/dist/sdk/api/generated/default/models/FavoriteRequestBody.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/FavoritesResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/FieldVisibility.d.ts +0 -60
- package/dist/sdk/api/generated/default/models/FollowGate.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/FollowNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/FollowNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/FollowNotificationActionData.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/FollowersResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/FollowingResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/Genre.d.ts +0 -71
- package/dist/sdk/api/generated/default/models/GetChallenges.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/GetSupportedUsers.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/GetSupporter.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/GetSupporters.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/GetSupporting.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/GetTipsResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/Grant.d.ts +0 -60
- package/dist/sdk/api/generated/default/models/HistoryResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/ListenCount.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/ListenStreakReminderNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/ListenStreakReminderNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/ListenStreakReminderNotificationActionData.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/ManagedUser.d.ts +0 -38
- package/dist/sdk/api/generated/default/models/ManagedUsersResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/ManagersResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/MilestoneNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/MilestoneNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/MilestoneNotificationActionData.d.ts +0 -22
- package/dist/sdk/api/generated/default/models/MonthlyAggregatePlay.d.ts +0 -43
- package/dist/sdk/api/generated/default/models/Mood.d.ts +0 -43
- package/dist/sdk/api/generated/default/models/MutualFollowersResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/NftCollection.d.ts +0 -76
- package/dist/sdk/api/generated/default/models/NftGate.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/Notification.d.ts +0 -141
- package/dist/sdk/api/generated/default/models/Notifications.d.ts +0 -37
- package/dist/sdk/api/generated/default/models/NotificationsResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/PaymentSplit.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/PinCommentRequestBody.d.ts +0 -37
- package/dist/sdk/api/generated/default/models/Playlist.d.ts +0 -272
- package/dist/sdk/api/generated/default/models/PlaylistAddedTimestamp.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/PlaylistArtwork.d.ts +0 -48
- package/dist/sdk/api/generated/default/models/PlaylistFeedItem.d.ts +0 -37
- package/dist/sdk/api/generated/default/models/PlaylistLibrary.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/PlaylistLibraryExplorePlaylistIdentifier.d.ts +0 -43
- package/dist/sdk/api/generated/default/models/PlaylistLibraryFolder.d.ts +0 -56
- package/dist/sdk/api/generated/default/models/PlaylistLibraryPlaylistIdentifier.d.ts +0 -43
- package/dist/sdk/api/generated/default/models/PlaylistMilestoneNotificationActionData.d.ts +0 -48
- package/dist/sdk/api/generated/default/models/PlaylistResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/PlaylistSearchResult.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/PlaylistTracksResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/PlaylistUpdate.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/PlaylistUpdates.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/PlaylistUpdatesResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/PlaylistWithoutTracks.d.ts +0 -272
- package/dist/sdk/api/generated/default/models/PlaylistsResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/PrizeClaimRequestBody.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/PrizeClaimResponse.d.ts +0 -56
- package/dist/sdk/api/generated/default/models/PrizePublic.d.ts +0 -56
- package/dist/sdk/api/generated/default/models/PrizesResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/ProfilePicture.d.ts +0 -48
- package/dist/sdk/api/generated/default/models/Purchase.d.ts +0 -97
- package/dist/sdk/api/generated/default/models/PurchaseGate.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/PurchaseSplit.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/PurchasersCountResponse.d.ts +0 -73
- package/dist/sdk/api/generated/default/models/PurchasersResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/PurchasesCountResponse.d.ts +0 -73
- package/dist/sdk/api/generated/default/models/PurchasesResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/ReactCommentRequestBody.d.ts +0 -37
- package/dist/sdk/api/generated/default/models/Reaction.d.ts +0 -48
- package/dist/sdk/api/generated/default/models/ReactionNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/ReactionNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/ReactionNotificationActionData.d.ts +0 -66
- package/dist/sdk/api/generated/default/models/Reactions.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/ReceiveTipNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/ReceiveTipNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/ReceiveTipNotificationActionData.d.ts +0 -54
- package/dist/sdk/api/generated/default/models/RedeemAmountResponse.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/RegisterApiKeyRequestBody.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/RegisterApiKeyResponse.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/Related.d.ts +0 -45
- package/dist/sdk/api/generated/default/models/RelatedArtistResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/Remix.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/RemixNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/RemixNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/RemixNotificationActionData.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/RemixParent.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/RemixParentWrite.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/RemixablesResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/RemixedTrackAggregate.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/RemixersCountResponse.d.ts +0 -73
- package/dist/sdk/api/generated/default/models/RemixersResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/RemixesResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/RemixesResponseData.d.ts +0 -37
- package/dist/sdk/api/generated/default/models/RemixingResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/ReplyComment.d.ts +0 -110
- package/dist/sdk/api/generated/default/models/Repost.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/RepostNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/RepostNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/RepostNotificationActionData.d.ts +0 -51
- package/dist/sdk/api/generated/default/models/RepostOfRepostNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/RepostOfRepostNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/RepostOfRepostNotificationActionData.d.ts +0 -51
- package/dist/sdk/api/generated/default/models/RepostRequestBody.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/Reposts.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/RequestManagerNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/RequestManagerNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/RequestManagerNotificationActionData.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/RewardCodeErrorResponse.d.ts +0 -38
- package/dist/sdk/api/generated/default/models/RewardCodeResponse.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/RewardPool.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/SaleJson.d.ts +0 -108
- package/dist/sdk/api/generated/default/models/SalesAggregate.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/SalesAggregateResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/SalesJsonContent.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/SalesJsonResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/SaveNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/SaveNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/SaveNotificationActionData.d.ts +0 -51
- package/dist/sdk/api/generated/default/models/SaveOfRepostNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/SaveOfRepostNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/SaveOfRepostNotificationActionData.d.ts +0 -51
- package/dist/sdk/api/generated/default/models/SearchAutocompleteResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/SearchModel.d.ts +0 -75
- package/dist/sdk/api/generated/default/models/SearchPlaylist.d.ts +0 -272
- package/dist/sdk/api/generated/default/models/SearchResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/SearchTrack.d.ts +0 -520
- package/dist/sdk/api/generated/default/models/SendTipNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/SendTipNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/SendTipNotificationActionData.d.ts +0 -48
- package/dist/sdk/api/generated/default/models/Stem.d.ts +0 -66
- package/dist/sdk/api/generated/default/models/StemParent.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/StemsResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/StreamUrlResponse.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/SubscribersResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/Supporter.d.ts +0 -43
- package/dist/sdk/api/generated/default/models/SupporterDethronedNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/SupporterDethronedNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/SupporterDethronedNotificationActionData.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/SupporterRankUpNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/SupporterRankUpNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/SupporterRankUpNotificationActionData.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/SupporterReference.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/Supporting.d.ts +0 -43
- package/dist/sdk/api/generated/default/models/TagsResponse.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/TastemakerNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/TastemakerNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/TastemakerNotificationActionData.d.ts +0 -54
- package/dist/sdk/api/generated/default/models/TierChangeNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/TierChangeNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/TierChangeNotificationActionData.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/Tip.d.ts +0 -68
- package/dist/sdk/api/generated/default/models/TipGate.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/TokenGate.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/TopGenreUsersResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/TopListener.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/TopUsersResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/Track.d.ts +0 -526
- package/dist/sdk/api/generated/default/models/TrackAccessInfo.d.ts +0 -68
- package/dist/sdk/api/generated/default/models/TrackActivity.d.ts +0 -45
- package/dist/sdk/api/generated/default/models/TrackAddedToPlaylistNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/TrackAddedToPlaylistNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/TrackAddedToPlaylistNotificationActionData.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/TrackAddedToPurchasedAlbumNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/TrackAddedToPurchasedAlbumNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/TrackAddedToPurchasedAlbumNotificationActionData.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/TrackArtwork.d.ts +0 -48
- package/dist/sdk/api/generated/default/models/TrackCommentCountResponse.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/TrackCommentNotificationResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/TrackCommentsResponse.d.ts +0 -81
- package/dist/sdk/api/generated/default/models/TrackDownloadCountResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/TrackDownloadCountResponseData.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/TrackDownloadCountsResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/TrackDownloadRequestBody.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/TrackElementWrite.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/TrackFavoritesResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/TrackFeedItem.d.ts +0 -37
- package/dist/sdk/api/generated/default/models/TrackId.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/TrackInspect.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/TrackInspectList.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/TrackLibraryResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/TrackMilestoneNotificationActionData.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/TrackRepostsResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/TrackResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/TrackSearch.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/TrackSegment.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/Tracks.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/TracksCountResponse.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/TracksResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/TransactionDetails.d.ts +0 -72
- package/dist/sdk/api/generated/default/models/TransactionHistoryCountResponse.d.ts +0 -73
- package/dist/sdk/api/generated/default/models/TransactionHistoryResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/TrendingIdsResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/TrendingNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/TrendingNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/TrendingNotificationActionData.d.ts +0 -57
- package/dist/sdk/api/generated/default/models/TrendingPlaylistNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/TrendingPlaylistNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/TrendingPlaylistNotificationActionData.d.ts +0 -57
- package/dist/sdk/api/generated/default/models/TrendingPlaylistsResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/TrendingTimesIds.d.ts +0 -43
- package/dist/sdk/api/generated/default/models/TrendingUndergroundNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/TrendingUndergroundNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/TrendingUndergroundNotificationActionData.d.ts +0 -57
- package/dist/sdk/api/generated/default/models/UnclaimedIdResponse.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/UndisbursedChallenge.d.ts +0 -84
- package/dist/sdk/api/generated/default/models/UndisbursedChallenges.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/UpdateCoinRequest.d.ts +0 -60
- package/dist/sdk/api/generated/default/models/UpdateCoinResponse.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/UpdateCommentRequestBody.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/UpdateDeveloperAppRequestBody.d.ts +0 -48
- package/dist/sdk/api/generated/default/models/UpdatePlaylistRequestBody.d.ts +0 -165
- package/dist/sdk/api/generated/default/models/UpdateTrackRequestBody.d.ts +0 -210
- package/dist/sdk/api/generated/default/models/UpdateUserRequestBody.d.ts +0 -159
- package/dist/sdk/api/generated/default/models/UpdateUserRequestBodyEvents.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/UrlWithMirrors.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/UsdcGate.d.ts +0 -37
- package/dist/sdk/api/generated/default/models/UsdcPurchaseBuyerNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/UsdcPurchaseBuyerNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/UsdcPurchaseBuyerNotificationActionData.d.ts +0 -60
- package/dist/sdk/api/generated/default/models/UsdcPurchaseSellerNotification.d.ts +0 -55
- package/dist/sdk/api/generated/default/models/UsdcPurchaseSellerNotificationAction.d.ts +0 -49
- package/dist/sdk/api/generated/default/models/UsdcPurchaseSellerNotificationActionData.d.ts +0 -60
- package/dist/sdk/api/generated/default/models/User.d.ts +0 -388
- package/dist/sdk/api/generated/default/models/UserAccountResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/UserArtistCoinBadge.d.ts +0 -48
- package/dist/sdk/api/generated/default/models/UserCoin.d.ts +0 -78
- package/dist/sdk/api/generated/default/models/UserCoinAccount.d.ts +0 -54
- package/dist/sdk/api/generated/default/models/UserCoinResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/UserCoinWithAccounts.d.ts +0 -67
- package/dist/sdk/api/generated/default/models/UserCoinsResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/UserCommentsResponse.d.ts +0 -81
- package/dist/sdk/api/generated/default/models/UserFeedItem.d.ts +0 -25
- package/dist/sdk/api/generated/default/models/UserFeedResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/UserIdAddress.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/UserIdsAddressesResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/UserManager.d.ts +0 -38
- package/dist/sdk/api/generated/default/models/UserMilestoneNotificationActionData.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/UserPlaylistLibrary.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/UserPlaylistLibraryContentsInner.d.ts +0 -22
- package/dist/sdk/api/generated/default/models/UserResponse.d.ts +0 -74
- package/dist/sdk/api/generated/default/models/UserResponseSingle.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/UserSearch.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/UserSubscribers.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/UserTrackListenCountsResponse.d.ts +0 -33
- package/dist/sdk/api/generated/default/models/UserTracksDownloadCountResponse.d.ts +0 -30
- package/dist/sdk/api/generated/default/models/UserTracksRemixedResponse.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/VerifyToken.d.ts +0 -31
- package/dist/sdk/api/generated/default/models/VersionMetadata.d.ts +0 -36
- package/dist/sdk/api/generated/default/models/WriteResponse.d.ts +0 -42
- package/dist/sdk/api/generated/default/models/index.d.ts +0 -401
- package/dist/sdk/api/generated/default/runtime.d.ts +0 -172
- package/dist/sdk/api/grants/GrantsApi.d.ts +0 -19
- package/dist/sdk/api/grants/types.d.ts +0 -65
- package/dist/sdk/api/notifications/NotificationsApi.d.ts +0 -14
- package/dist/sdk/api/notifications/NotificationsApi.test.d.ts +0 -1
- package/dist/sdk/api/notifications/types.d.ts +0 -32
- package/dist/sdk/api/playlists/PlaylistsApi.d.ts +0 -106
- package/dist/sdk/api/playlists/PlaylistsApi.test.d.ts +0 -1
- package/dist/sdk/api/playlists/types.d.ts +0 -3942
- package/dist/sdk/api/tracks/TrackUploadHelper.d.ts +0 -133
- package/dist/sdk/api/tracks/TracksApi.d.ts +0 -122
- package/dist/sdk/api/tracks/TracksApi.test.d.ts +0 -1
- package/dist/sdk/api/tracks/constants.d.ts +0 -2
- package/dist/sdk/api/tracks/types.d.ts +0 -4431
- package/dist/sdk/api/uploads/UploadsApi.d.ts +0 -49
- package/dist/sdk/api/uploads/types.d.ts +0 -4
- package/dist/sdk/api/users/UsersApi.d.ts +0 -134
- package/dist/sdk/api/users/UsersApi.test.d.ts +0 -1
- package/dist/sdk/api/users/types.d.ts +0 -1009
- package/dist/sdk/config/development.d.ts +0 -2
- package/dist/sdk/config/production.d.ts +0 -2
- package/dist/sdk/config/types.d.ts +0 -45
- package/dist/sdk/createSdk.d.ts +0 -26
- package/dist/sdk/createSdkWithServices.d.ts +0 -50
- package/dist/sdk/errors.d.ts +0 -3
- package/dist/sdk/index.d.ts +0 -40
- package/dist/sdk/middleware/addAppInfoMiddleware.d.ts +0 -16
- package/dist/sdk/middleware/addRequestSignatureMiddleware.d.ts +0 -12
- package/dist/sdk/middleware/addRequestSignatureMiddleware.test.d.ts +0 -1
- package/dist/sdk/middleware/addTokenRefreshMiddleware.d.ts +0 -16
- package/dist/sdk/middleware/addTokenRefreshMiddleware.test.d.ts +0 -1
- package/dist/sdk/middleware/index.d.ts +0 -3
- package/dist/sdk/oauth/OAuth.d.ts +0 -131
- package/dist/sdk/oauth/OAuth.test.d.ts +0 -1
- package/dist/sdk/oauth/TokenStoreAsyncStorage.d.ts +0 -7
- package/dist/sdk/oauth/TokenStoreLocalStorage.d.ts +0 -11
- package/dist/sdk/oauth/TokenStoreMemory.d.ts +0 -18
- package/dist/sdk/oauth/index.d.ts +0 -3
- package/dist/sdk/oauth/pkce.d.ts +0 -18
- package/dist/sdk/oauth/pkce.test.d.ts +0 -1
- package/dist/sdk/oauth/tokenStore.d.ts +0 -11
- package/dist/sdk/oauth/tokenStore.test.d.ts +0 -1
- package/dist/sdk/oauth/tokenStoreLocalStorage.test.d.ts +0 -1
- package/dist/sdk/oauth/types.d.ts +0 -5
- package/dist/sdk/scripts/generateServicesConfig.d.ts +0 -1
- package/dist/sdk/scripts/manageRewardsLookupTable.d.ts +0 -1
- package/dist/sdk/scripts/verifyUser.d.ts +0 -1
- package/dist/sdk/sdk.d.ts +0 -5
- package/dist/sdk/sdkBrowserDist.d.ts +0 -51
- package/dist/sdk/services/AntiAbuseOracle/AntiAbuseOracle.d.ts +0 -10
- package/dist/sdk/services/AntiAbuseOracle/index.d.ts +0 -2
- package/dist/sdk/services/AntiAbuseOracle/types.d.ts +0 -70
- package/dist/sdk/services/AntiAbuseOracleSelector/AntiAbuseOracleSelector.d.ts +0 -26
- package/dist/sdk/services/AntiAbuseOracleSelector/AntiAbuseOracleSelector.test.d.ts +0 -1
- package/dist/sdk/services/AntiAbuseOracleSelector/getDefaultConfig.d.ts +0 -3
- package/dist/sdk/services/AntiAbuseOracleSelector/index.d.ts +0 -3
- package/dist/sdk/services/AntiAbuseOracleSelector/types.d.ts +0 -37
- package/dist/sdk/services/Archiver/Archiver.d.ts +0 -21
- package/dist/sdk/services/Archiver/index.d.ts +0 -1
- package/dist/sdk/services/AudiusWalletClient/actions/getSharedSecret.d.ts +0 -7
- package/dist/sdk/services/AudiusWalletClient/actions/sign.d.ts +0 -7
- package/dist/sdk/services/AudiusWalletClient/createAppWalletClient.d.ts +0 -5
- package/dist/sdk/services/AudiusWalletClient/createHedgehogWalletClient.d.ts +0 -9
- package/dist/sdk/services/AudiusWalletClient/decorators/audiusWallet.d.ts +0 -184
- package/dist/sdk/services/AudiusWalletClient/index.d.ts +0 -4
- package/dist/sdk/services/AudiusWalletClient/localTransport.d.ts +0 -10
- package/dist/sdk/services/AudiusWalletClient/privateKeyToAudiusAccount.d.ts +0 -6
- package/dist/sdk/services/AudiusWalletClient/types.d.ts +0 -24
- package/dist/sdk/services/AudiusWalletClient/utils.d.ts +0 -7
- package/dist/sdk/services/Encryption/EmailEncryptionService.d.ts +0 -107
- package/dist/sdk/services/Encryption/index.d.ts +0 -2
- package/dist/sdk/services/Encryption/types.d.ts +0 -13
- package/dist/sdk/services/EntityManager/EntityManager.test.d.ts +0 -1
- package/dist/sdk/services/EntityManager/EntityManagerClient.d.ts +0 -48
- package/dist/sdk/services/EntityManager/contract/EntityManagerContract.d.ts +0 -168
- package/dist/sdk/services/EntityManager/contract/abi.d.ts +0 -131
- package/dist/sdk/services/EntityManager/getDefaultConfig.d.ts +0 -3
- package/dist/sdk/services/EntityManager/index.d.ts +0 -5
- package/dist/sdk/services/EntityManager/types.d.ts +0 -131
- package/dist/sdk/services/Ethereum/ethereum.d.ts +0 -86
- package/dist/sdk/services/Ethereum/getDefaultConfig.d.ts +0 -3
- package/dist/sdk/services/Ethereum/index.d.ts +0 -2
- package/dist/sdk/services/Ethereum/types.d.ts +0 -26
- package/dist/sdk/services/Logger/Logger.d.ts +0 -18
- package/dist/sdk/services/Logger/index.d.ts +0 -2
- package/dist/sdk/services/Logger/types.d.ts +0 -7
- package/dist/sdk/services/Solana/SolanaRelay.d.ts +0 -84
- package/dist/sdk/services/Solana/SolanaRelayWalletAdapter.d.ts +0 -42
- package/dist/sdk/services/Solana/constants.d.ts +0 -3
- package/dist/sdk/services/Solana/index.d.ts +0 -7
- package/dist/sdk/services/Solana/programs/ClaimableTokensClient/ClaimableTokensClient.d.ts +0 -77
- package/dist/sdk/services/Solana/programs/ClaimableTokensClient/getDefaultConfig.d.ts +0 -3
- package/dist/sdk/services/Solana/programs/ClaimableTokensClient/index.d.ts +0 -2
- package/dist/sdk/services/Solana/programs/ClaimableTokensClient/types.d.ts +0 -98
- package/dist/sdk/services/Solana/programs/CustomInstructionError.d.ts +0 -7
- package/dist/sdk/services/Solana/programs/PaymentRouterClient/PaymentRouterClient.d.ts +0 -23
- package/dist/sdk/services/Solana/programs/PaymentRouterClient/getDefaultConfig.d.ts +0 -3
- package/dist/sdk/services/Solana/programs/PaymentRouterClient/index.d.ts +0 -3
- package/dist/sdk/services/Solana/programs/PaymentRouterClient/types.d.ts +0 -136
- package/dist/sdk/services/Solana/programs/RewardManagerClient/RewardManagerClient.d.ts +0 -44
- package/dist/sdk/services/Solana/programs/RewardManagerClient/getDefaultConfig.d.ts +0 -3
- package/dist/sdk/services/Solana/programs/RewardManagerClient/index.d.ts +0 -2
- package/dist/sdk/services/Solana/programs/RewardManagerClient/types.d.ts +0 -113
- package/dist/sdk/services/Solana/programs/SolanaClient.d.ts +0 -47
- package/dist/sdk/services/Solana/programs/getDefaultConfig.d.ts +0 -3
- package/dist/sdk/services/Solana/programs/types.d.ts +0 -276
- package/dist/sdk/services/Solana/types.d.ts +0 -208
- package/dist/sdk/services/Storage/Storage.d.ts +0 -42
- package/dist/sdk/services/Storage/getDefaultConfig.d.ts +0 -3
- package/dist/sdk/services/Storage/index.d.ts +0 -3
- package/dist/sdk/services/Storage/types.d.ts +0 -127
- package/dist/sdk/services/StorageNodeSelector/StorageNodeSelector.d.ts +0 -17
- package/dist/sdk/services/StorageNodeSelector/StorageNodeSelector.test.d.ts +0 -1
- package/dist/sdk/services/StorageNodeSelector/getDefaultConfig.d.ts +0 -3
- package/dist/sdk/services/StorageNodeSelector/getNStorageNodes.d.ts +0 -14
- package/dist/sdk/services/StorageNodeSelector/index.d.ts +0 -3
- package/dist/sdk/services/StorageNodeSelector/types.d.ts +0 -30
- package/dist/sdk/services/index.d.ts +0 -11
- package/dist/sdk/types/ChainAddress.d.ts +0 -21
- package/dist/sdk/types/DDEX.d.ts +0 -37
- package/dist/sdk/types/Env.d.ts +0 -1
- package/dist/sdk/types/EthAddress.d.ts +0 -2
- package/dist/sdk/types/File.d.ts +0 -210
- package/dist/sdk/types/Genre.d.ts +0 -54
- package/dist/sdk/types/HashId.d.ts +0 -5
- package/dist/sdk/types/Hex.d.ts +0 -2
- package/dist/sdk/types/Mood.d.ts +0 -25
- package/dist/sdk/types/SolanaAddress.d.ts +0 -2
- package/dist/sdk/types/StemCategory.d.ts +0 -14
- package/dist/sdk/types/Timeout.d.ts +0 -1
- package/dist/sdk/types.d.ts +0 -267
- package/dist/sdk/utils/EventEmitterTarget.d.ts +0 -6
- package/dist/sdk/utils/apiKey.d.ts +0 -1
- package/dist/sdk/utils/cid.d.ts +0 -2
- package/dist/sdk/utils/crypto.d.ts +0 -26
- package/dist/sdk/utils/deepPartial.d.ts +0 -3
- package/dist/sdk/utils/errors.d.ts +0 -8
- package/dist/sdk/utils/fetch.d.ts +0 -16
- package/dist/sdk/utils/getPathFromUrl.d.ts +0 -4
- package/dist/sdk/utils/hashId.d.ts +0 -8
- package/dist/sdk/utils/hashId.test.d.ts +0 -1
- package/dist/sdk/utils/localStorage.d.ts +0 -6
- package/dist/sdk/utils/location.d.ts +0 -16
- package/dist/sdk/utils/mergeConfigs.d.ts +0 -7
- package/dist/sdk/utils/mergeConfigs.test.d.ts +0 -1
- package/dist/sdk/utils/oauthScope.d.ts +0 -1
- package/dist/sdk/utils/object.d.ts +0 -4
- package/dist/sdk/utils/parseMint.d.ts +0 -10
- package/dist/sdk/utils/parseParams.d.ts +0 -13
- package/dist/sdk/utils/preparePaymentSplits.d.ts +0 -19
- package/dist/sdk/utils/prettify.d.ts +0 -3
- package/dist/sdk/utils/promiseAny.d.ts +0 -6
- package/dist/sdk/utils/reactionsMap.d.ts +0 -11
- package/dist/sdk/utils/rendezvous.d.ts +0 -12
- package/dist/sdk/utils/retry.d.ts +0 -4
- package/dist/sdk/utils/signatureSchemas.d.ts +0 -54
- package/dist/sdk/utils/uuid.d.ts +0 -1
- package/dist/sdk/utils/wait.d.ts +0 -1
- package/dist/sdk.browser.esm.html +0 -5000
- package/dist/sdk.min.js +0 -30
- package/dist/sdk.min.js.map +0 -1
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Audius API
|
|
3
|
-
*
|
|
4
|
-
* The version of the OpenAPI document: 1.0
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
|
-
* https://openapi-generator.tech
|
|
9
|
-
* Do not edit the class manually.
|
|
10
|
-
*/
|
|
11
|
-
import type { CommentThreadNotificationAction } from './CommentThreadNotificationAction';
|
|
12
|
-
/**
|
|
13
|
-
*
|
|
14
|
-
* @export
|
|
15
|
-
* @interface CommentThreadNotification
|
|
16
|
-
*/
|
|
17
|
-
export interface CommentThreadNotification {
|
|
18
|
-
/**
|
|
19
|
-
*
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof CommentThreadNotification
|
|
22
|
-
*/
|
|
23
|
-
type: string;
|
|
24
|
-
/**
|
|
25
|
-
*
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof CommentThreadNotification
|
|
28
|
-
*/
|
|
29
|
-
groupId: string;
|
|
30
|
-
/**
|
|
31
|
-
*
|
|
32
|
-
* @type {boolean}
|
|
33
|
-
* @memberof CommentThreadNotification
|
|
34
|
-
*/
|
|
35
|
-
isSeen: boolean;
|
|
36
|
-
/**
|
|
37
|
-
*
|
|
38
|
-
* @type {number}
|
|
39
|
-
* @memberof CommentThreadNotification
|
|
40
|
-
*/
|
|
41
|
-
seenAt?: number;
|
|
42
|
-
/**
|
|
43
|
-
*
|
|
44
|
-
* @type {Array<CommentThreadNotificationAction>}
|
|
45
|
-
* @memberof CommentThreadNotification
|
|
46
|
-
*/
|
|
47
|
-
actions: Array<CommentThreadNotificationAction>;
|
|
48
|
-
}
|
|
49
|
-
/**
|
|
50
|
-
* Check if a given object implements the CommentThreadNotification interface.
|
|
51
|
-
*/
|
|
52
|
-
export declare function instanceOfCommentThreadNotification(value: object): value is CommentThreadNotification;
|
|
53
|
-
export declare function CommentThreadNotificationFromJSON(json: any): CommentThreadNotification;
|
|
54
|
-
export declare function CommentThreadNotificationFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommentThreadNotification;
|
|
55
|
-
export declare function CommentThreadNotificationToJSON(value?: CommentThreadNotification | null): any;
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Audius API
|
|
3
|
-
*
|
|
4
|
-
* The version of the OpenAPI document: 1.0
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
|
-
* https://openapi-generator.tech
|
|
9
|
-
* Do not edit the class manually.
|
|
10
|
-
*/
|
|
11
|
-
import type { CommentThreadNotificationActionData } from './CommentThreadNotificationActionData';
|
|
12
|
-
/**
|
|
13
|
-
*
|
|
14
|
-
* @export
|
|
15
|
-
* @interface CommentThreadNotificationAction
|
|
16
|
-
*/
|
|
17
|
-
export interface CommentThreadNotificationAction {
|
|
18
|
-
/**
|
|
19
|
-
*
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof CommentThreadNotificationAction
|
|
22
|
-
*/
|
|
23
|
-
specifier: string;
|
|
24
|
-
/**
|
|
25
|
-
*
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof CommentThreadNotificationAction
|
|
28
|
-
*/
|
|
29
|
-
type: string;
|
|
30
|
-
/**
|
|
31
|
-
*
|
|
32
|
-
* @type {number}
|
|
33
|
-
* @memberof CommentThreadNotificationAction
|
|
34
|
-
*/
|
|
35
|
-
timestamp: number;
|
|
36
|
-
/**
|
|
37
|
-
*
|
|
38
|
-
* @type {CommentThreadNotificationActionData}
|
|
39
|
-
* @memberof CommentThreadNotificationAction
|
|
40
|
-
*/
|
|
41
|
-
data: CommentThreadNotificationActionData;
|
|
42
|
-
}
|
|
43
|
-
/**
|
|
44
|
-
* Check if a given object implements the CommentThreadNotificationAction interface.
|
|
45
|
-
*/
|
|
46
|
-
export declare function instanceOfCommentThreadNotificationAction(value: object): value is CommentThreadNotificationAction;
|
|
47
|
-
export declare function CommentThreadNotificationActionFromJSON(json: any): CommentThreadNotificationAction;
|
|
48
|
-
export declare function CommentThreadNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommentThreadNotificationAction;
|
|
49
|
-
export declare function CommentThreadNotificationActionToJSON(value?: CommentThreadNotificationAction | null): any;
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Audius API
|
|
3
|
-
*
|
|
4
|
-
* The version of the OpenAPI document: 1.0
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
|
-
* https://openapi-generator.tech
|
|
9
|
-
* Do not edit the class manually.
|
|
10
|
-
*/
|
|
11
|
-
/**
|
|
12
|
-
*
|
|
13
|
-
* @export
|
|
14
|
-
* @interface CommentThreadNotificationActionData
|
|
15
|
-
*/
|
|
16
|
-
export interface CommentThreadNotificationActionData {
|
|
17
|
-
/**
|
|
18
|
-
*
|
|
19
|
-
* @type {string}
|
|
20
|
-
* @memberof CommentThreadNotificationActionData
|
|
21
|
-
*/
|
|
22
|
-
type: CommentThreadNotificationActionDataTypeEnum;
|
|
23
|
-
/**
|
|
24
|
-
*
|
|
25
|
-
* @type {string}
|
|
26
|
-
* @memberof CommentThreadNotificationActionData
|
|
27
|
-
*/
|
|
28
|
-
entityId: string;
|
|
29
|
-
/**
|
|
30
|
-
*
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof CommentThreadNotificationActionData
|
|
33
|
-
*/
|
|
34
|
-
entityUserId: string;
|
|
35
|
-
/**
|
|
36
|
-
*
|
|
37
|
-
* @type {string}
|
|
38
|
-
* @memberof CommentThreadNotificationActionData
|
|
39
|
-
*/
|
|
40
|
-
commentUserId: string;
|
|
41
|
-
/**
|
|
42
|
-
*
|
|
43
|
-
* @type {string}
|
|
44
|
-
* @memberof CommentThreadNotificationActionData
|
|
45
|
-
*/
|
|
46
|
-
commentId?: string;
|
|
47
|
-
}
|
|
48
|
-
/**
|
|
49
|
-
* @export
|
|
50
|
-
*/
|
|
51
|
-
export declare const CommentThreadNotificationActionDataTypeEnum: {
|
|
52
|
-
readonly Track: "Track";
|
|
53
|
-
readonly Playlist: "Playlist";
|
|
54
|
-
readonly Album: "Album";
|
|
55
|
-
};
|
|
56
|
-
export type CommentThreadNotificationActionDataTypeEnum = typeof CommentThreadNotificationActionDataTypeEnum[keyof typeof CommentThreadNotificationActionDataTypeEnum];
|
|
57
|
-
/**
|
|
58
|
-
* Check if a given object implements the CommentThreadNotificationActionData interface.
|
|
59
|
-
*/
|
|
60
|
-
export declare function instanceOfCommentThreadNotificationActionData(value: object): value is CommentThreadNotificationActionData;
|
|
61
|
-
export declare function CommentThreadNotificationActionDataFromJSON(json: any): CommentThreadNotificationActionData;
|
|
62
|
-
export declare function CommentThreadNotificationActionDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommentThreadNotificationActionData;
|
|
63
|
-
export declare function CommentThreadNotificationActionDataToJSON(value?: CommentThreadNotificationActionData | null): any;
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Audius API
|
|
3
|
-
*
|
|
4
|
-
* The version of the OpenAPI document: 1.0
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
|
-
* https://openapi-generator.tech
|
|
9
|
-
* Do not edit the class manually.
|
|
10
|
-
*/
|
|
11
|
-
/**
|
|
12
|
-
*
|
|
13
|
-
* @export
|
|
14
|
-
* @interface ConnectedWallets
|
|
15
|
-
*/
|
|
16
|
-
export interface ConnectedWallets {
|
|
17
|
-
/**
|
|
18
|
-
*
|
|
19
|
-
* @type {Array<string>}
|
|
20
|
-
* @memberof ConnectedWallets
|
|
21
|
-
*/
|
|
22
|
-
ercWallets: Array<string>;
|
|
23
|
-
/**
|
|
24
|
-
*
|
|
25
|
-
* @type {Array<string>}
|
|
26
|
-
* @memberof ConnectedWallets
|
|
27
|
-
*/
|
|
28
|
-
splWallets: Array<string>;
|
|
29
|
-
}
|
|
30
|
-
/**
|
|
31
|
-
* Check if a given object implements the ConnectedWallets interface.
|
|
32
|
-
*/
|
|
33
|
-
export declare function instanceOfConnectedWallets(value: object): value is ConnectedWallets;
|
|
34
|
-
export declare function ConnectedWalletsFromJSON(json: any): ConnectedWallets;
|
|
35
|
-
export declare function ConnectedWalletsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConnectedWallets;
|
|
36
|
-
export declare function ConnectedWalletsToJSON(value?: ConnectedWallets | null): any;
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Audius API
|
|
3
|
-
*
|
|
4
|
-
* The version of the OpenAPI document: 1.0
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
|
-
* https://openapi-generator.tech
|
|
9
|
-
* Do not edit the class manually.
|
|
10
|
-
*/
|
|
11
|
-
import type { ConnectedWallets } from './ConnectedWallets';
|
|
12
|
-
/**
|
|
13
|
-
*
|
|
14
|
-
* @export
|
|
15
|
-
* @interface ConnectedWalletsResponse
|
|
16
|
-
*/
|
|
17
|
-
export interface ConnectedWalletsResponse {
|
|
18
|
-
/**
|
|
19
|
-
*
|
|
20
|
-
* @type {ConnectedWallets}
|
|
21
|
-
* @memberof ConnectedWalletsResponse
|
|
22
|
-
*/
|
|
23
|
-
data?: ConnectedWallets;
|
|
24
|
-
}
|
|
25
|
-
/**
|
|
26
|
-
* Check if a given object implements the ConnectedWalletsResponse interface.
|
|
27
|
-
*/
|
|
28
|
-
export declare function instanceOfConnectedWalletsResponse(value: object): value is ConnectedWalletsResponse;
|
|
29
|
-
export declare function ConnectedWalletsResponseFromJSON(json: any): ConnectedWalletsResponse;
|
|
30
|
-
export declare function ConnectedWalletsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConnectedWalletsResponse;
|
|
31
|
-
export declare function ConnectedWalletsResponseToJSON(value?: ConnectedWalletsResponse | null): any;
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Audius API
|
|
3
|
-
*
|
|
4
|
-
* The version of the OpenAPI document: 1.0
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
|
-
* https://openapi-generator.tech
|
|
9
|
-
* Do not edit the class manually.
|
|
10
|
-
*/
|
|
11
|
-
import type { CosignNotificationAction } from './CosignNotificationAction';
|
|
12
|
-
/**
|
|
13
|
-
*
|
|
14
|
-
* @export
|
|
15
|
-
* @interface CosignNotification
|
|
16
|
-
*/
|
|
17
|
-
export interface CosignNotification {
|
|
18
|
-
/**
|
|
19
|
-
*
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof CosignNotification
|
|
22
|
-
*/
|
|
23
|
-
type: string;
|
|
24
|
-
/**
|
|
25
|
-
*
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof CosignNotification
|
|
28
|
-
*/
|
|
29
|
-
groupId: string;
|
|
30
|
-
/**
|
|
31
|
-
*
|
|
32
|
-
* @type {boolean}
|
|
33
|
-
* @memberof CosignNotification
|
|
34
|
-
*/
|
|
35
|
-
isSeen: boolean;
|
|
36
|
-
/**
|
|
37
|
-
*
|
|
38
|
-
* @type {number}
|
|
39
|
-
* @memberof CosignNotification
|
|
40
|
-
*/
|
|
41
|
-
seenAt?: number;
|
|
42
|
-
/**
|
|
43
|
-
*
|
|
44
|
-
* @type {Array<CosignNotificationAction>}
|
|
45
|
-
* @memberof CosignNotification
|
|
46
|
-
*/
|
|
47
|
-
actions: Array<CosignNotificationAction>;
|
|
48
|
-
}
|
|
49
|
-
/**
|
|
50
|
-
* Check if a given object implements the CosignNotification interface.
|
|
51
|
-
*/
|
|
52
|
-
export declare function instanceOfCosignNotification(value: object): value is CosignNotification;
|
|
53
|
-
export declare function CosignNotificationFromJSON(json: any): CosignNotification;
|
|
54
|
-
export declare function CosignNotificationFromJSONTyped(json: any, ignoreDiscriminator: boolean): CosignNotification;
|
|
55
|
-
export declare function CosignNotificationToJSON(value?: CosignNotification | null): any;
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Audius API
|
|
3
|
-
*
|
|
4
|
-
* The version of the OpenAPI document: 1.0
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
|
-
* https://openapi-generator.tech
|
|
9
|
-
* Do not edit the class manually.
|
|
10
|
-
*/
|
|
11
|
-
import type { CosignNotificationActionData } from './CosignNotificationActionData';
|
|
12
|
-
/**
|
|
13
|
-
*
|
|
14
|
-
* @export
|
|
15
|
-
* @interface CosignNotificationAction
|
|
16
|
-
*/
|
|
17
|
-
export interface CosignNotificationAction {
|
|
18
|
-
/**
|
|
19
|
-
*
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof CosignNotificationAction
|
|
22
|
-
*/
|
|
23
|
-
specifier: string;
|
|
24
|
-
/**
|
|
25
|
-
*
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof CosignNotificationAction
|
|
28
|
-
*/
|
|
29
|
-
type: string;
|
|
30
|
-
/**
|
|
31
|
-
*
|
|
32
|
-
* @type {number}
|
|
33
|
-
* @memberof CosignNotificationAction
|
|
34
|
-
*/
|
|
35
|
-
timestamp: number;
|
|
36
|
-
/**
|
|
37
|
-
*
|
|
38
|
-
* @type {CosignNotificationActionData}
|
|
39
|
-
* @memberof CosignNotificationAction
|
|
40
|
-
*/
|
|
41
|
-
data: CosignNotificationActionData;
|
|
42
|
-
}
|
|
43
|
-
/**
|
|
44
|
-
* Check if a given object implements the CosignNotificationAction interface.
|
|
45
|
-
*/
|
|
46
|
-
export declare function instanceOfCosignNotificationAction(value: object): value is CosignNotificationAction;
|
|
47
|
-
export declare function CosignNotificationActionFromJSON(json: any): CosignNotificationAction;
|
|
48
|
-
export declare function CosignNotificationActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): CosignNotificationAction;
|
|
49
|
-
export declare function CosignNotificationActionToJSON(value?: CosignNotificationAction | null): any;
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Audius API
|
|
3
|
-
*
|
|
4
|
-
* The version of the OpenAPI document: 1.0
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
|
-
* https://openapi-generator.tech
|
|
9
|
-
* Do not edit the class manually.
|
|
10
|
-
*/
|
|
11
|
-
/**
|
|
12
|
-
*
|
|
13
|
-
* @export
|
|
14
|
-
* @interface CosignNotificationActionData
|
|
15
|
-
*/
|
|
16
|
-
export interface CosignNotificationActionData {
|
|
17
|
-
/**
|
|
18
|
-
*
|
|
19
|
-
* @type {string}
|
|
20
|
-
* @memberof CosignNotificationActionData
|
|
21
|
-
*/
|
|
22
|
-
parentTrackId: string;
|
|
23
|
-
/**
|
|
24
|
-
*
|
|
25
|
-
* @type {string}
|
|
26
|
-
* @memberof CosignNotificationActionData
|
|
27
|
-
*/
|
|
28
|
-
trackId: string;
|
|
29
|
-
/**
|
|
30
|
-
*
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof CosignNotificationActionData
|
|
33
|
-
*/
|
|
34
|
-
trackOwnerId: string;
|
|
35
|
-
}
|
|
36
|
-
/**
|
|
37
|
-
* Check if a given object implements the CosignNotificationActionData interface.
|
|
38
|
-
*/
|
|
39
|
-
export declare function instanceOfCosignNotificationActionData(value: object): value is CosignNotificationActionData;
|
|
40
|
-
export declare function CosignNotificationActionDataFromJSON(json: any): CosignNotificationActionData;
|
|
41
|
-
export declare function CosignNotificationActionDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): CosignNotificationActionData;
|
|
42
|
-
export declare function CosignNotificationActionDataToJSON(value?: CosignNotificationActionData | null): any;
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Audius API
|
|
3
|
-
*
|
|
4
|
-
* The version of the OpenAPI document: 1.0
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
|
-
* https://openapi-generator.tech
|
|
9
|
-
* Do not edit the class manually.
|
|
10
|
-
*/
|
|
11
|
-
/**
|
|
12
|
-
*
|
|
13
|
-
* @export
|
|
14
|
-
* @interface CoverArt
|
|
15
|
-
*/
|
|
16
|
-
export interface CoverArt {
|
|
17
|
-
/**
|
|
18
|
-
*
|
|
19
|
-
* @type {string}
|
|
20
|
-
* @memberof CoverArt
|
|
21
|
-
*/
|
|
22
|
-
_150x150?: string;
|
|
23
|
-
/**
|
|
24
|
-
*
|
|
25
|
-
* @type {string}
|
|
26
|
-
* @memberof CoverArt
|
|
27
|
-
*/
|
|
28
|
-
_480x480?: string;
|
|
29
|
-
/**
|
|
30
|
-
*
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof CoverArt
|
|
33
|
-
*/
|
|
34
|
-
_1000x1000?: string;
|
|
35
|
-
/**
|
|
36
|
-
*
|
|
37
|
-
* @type {Array<string>}
|
|
38
|
-
* @memberof CoverArt
|
|
39
|
-
*/
|
|
40
|
-
mirrors?: Array<string>;
|
|
41
|
-
}
|
|
42
|
-
/**
|
|
43
|
-
* Check if a given object implements the CoverArt interface.
|
|
44
|
-
*/
|
|
45
|
-
export declare function instanceOfCoverArt(value: object): value is CoverArt;
|
|
46
|
-
export declare function CoverArtFromJSON(json: any): CoverArt;
|
|
47
|
-
export declare function CoverArtFromJSONTyped(json: any, ignoreDiscriminator: boolean): CoverArt;
|
|
48
|
-
export declare function CoverArtToJSON(value?: CoverArt | null): any;
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Audius API
|
|
3
|
-
*
|
|
4
|
-
* The version of the OpenAPI document: 1.0
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
|
-
* https://openapi-generator.tech
|
|
9
|
-
* Do not edit the class manually.
|
|
10
|
-
*/
|
|
11
|
-
/**
|
|
12
|
-
*
|
|
13
|
-
* @export
|
|
14
|
-
* @interface CoverPhoto
|
|
15
|
-
*/
|
|
16
|
-
export interface CoverPhoto {
|
|
17
|
-
/**
|
|
18
|
-
*
|
|
19
|
-
* @type {string}
|
|
20
|
-
* @memberof CoverPhoto
|
|
21
|
-
*/
|
|
22
|
-
_640x?: string;
|
|
23
|
-
/**
|
|
24
|
-
*
|
|
25
|
-
* @type {string}
|
|
26
|
-
* @memberof CoverPhoto
|
|
27
|
-
*/
|
|
28
|
-
_2000x?: string;
|
|
29
|
-
/**
|
|
30
|
-
*
|
|
31
|
-
* @type {Array<string>}
|
|
32
|
-
* @memberof CoverPhoto
|
|
33
|
-
*/
|
|
34
|
-
mirrors?: Array<string>;
|
|
35
|
-
}
|
|
36
|
-
/**
|
|
37
|
-
* Check if a given object implements the CoverPhoto interface.
|
|
38
|
-
*/
|
|
39
|
-
export declare function instanceOfCoverPhoto(value: object): value is CoverPhoto;
|
|
40
|
-
export declare function CoverPhotoFromJSON(json: any): CoverPhoto;
|
|
41
|
-
export declare function CoverPhotoFromJSONTyped(json: any, ignoreDiscriminator: boolean): CoverPhoto;
|
|
42
|
-
export declare function CoverPhotoToJSON(value?: CoverPhoto | null): any;
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Audius API
|
|
3
|
-
*
|
|
4
|
-
* The version of the OpenAPI document: 1.0
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
|
-
* https://openapi-generator.tech
|
|
9
|
-
* Do not edit the class manually.
|
|
10
|
-
*/
|
|
11
|
-
/**
|
|
12
|
-
*
|
|
13
|
-
* @export
|
|
14
|
-
* @interface CreateAccessKeyResponse
|
|
15
|
-
*/
|
|
16
|
-
export interface CreateAccessKeyResponse {
|
|
17
|
-
/**
|
|
18
|
-
* The newly created bearer token (API access key)
|
|
19
|
-
* @type {string}
|
|
20
|
-
* @memberof CreateAccessKeyResponse
|
|
21
|
-
*/
|
|
22
|
-
apiAccessKey: string;
|
|
23
|
-
}
|
|
24
|
-
/**
|
|
25
|
-
* Check if a given object implements the CreateAccessKeyResponse interface.
|
|
26
|
-
*/
|
|
27
|
-
export declare function instanceOfCreateAccessKeyResponse(value: object): value is CreateAccessKeyResponse;
|
|
28
|
-
export declare function CreateAccessKeyResponseFromJSON(json: any): CreateAccessKeyResponse;
|
|
29
|
-
export declare function CreateAccessKeyResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateAccessKeyResponse;
|
|
30
|
-
export declare function CreateAccessKeyResponseToJSON(value?: CreateAccessKeyResponse | null): any;
|
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Audius API
|
|
3
|
-
*
|
|
4
|
-
* The version of the OpenAPI document: 1.0
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
|
-
* https://openapi-generator.tech
|
|
9
|
-
* Do not edit the class manually.
|
|
10
|
-
*/
|
|
11
|
-
/**
|
|
12
|
-
*
|
|
13
|
-
* @export
|
|
14
|
-
* @interface CreateCoinRequest
|
|
15
|
-
*/
|
|
16
|
-
export interface CreateCoinRequest {
|
|
17
|
-
/**
|
|
18
|
-
* The mint address of the coin
|
|
19
|
-
* @type {string}
|
|
20
|
-
* @memberof CreateCoinRequest
|
|
21
|
-
*/
|
|
22
|
-
mint: string;
|
|
23
|
-
/**
|
|
24
|
-
* The coin symbol/ticker
|
|
25
|
-
* @type {string}
|
|
26
|
-
* @memberof CreateCoinRequest
|
|
27
|
-
*/
|
|
28
|
-
ticker: string;
|
|
29
|
-
/**
|
|
30
|
-
* The number of decimals for the coin (0-18)
|
|
31
|
-
* @type {number}
|
|
32
|
-
* @memberof CreateCoinRequest
|
|
33
|
-
*/
|
|
34
|
-
decimals: number;
|
|
35
|
-
/**
|
|
36
|
-
* The coin name
|
|
37
|
-
* @type {string}
|
|
38
|
-
* @memberof CreateCoinRequest
|
|
39
|
-
*/
|
|
40
|
-
name: string;
|
|
41
|
-
/**
|
|
42
|
-
* The URI for the coin's logo image
|
|
43
|
-
* @type {string}
|
|
44
|
-
* @memberof CreateCoinRequest
|
|
45
|
-
*/
|
|
46
|
-
logoUri?: string;
|
|
47
|
-
/**
|
|
48
|
-
* The URI for the coin's banner image
|
|
49
|
-
* @type {string}
|
|
50
|
-
* @memberof CreateCoinRequest
|
|
51
|
-
*/
|
|
52
|
-
bannerImageUrl?: string;
|
|
53
|
-
/**
|
|
54
|
-
* The description of the coin
|
|
55
|
-
* @type {string}
|
|
56
|
-
* @memberof CreateCoinRequest
|
|
57
|
-
*/
|
|
58
|
-
description?: string;
|
|
59
|
-
/**
|
|
60
|
-
* Generic link URL for the coin
|
|
61
|
-
* @type {string}
|
|
62
|
-
* @memberof CreateCoinRequest
|
|
63
|
-
*/
|
|
64
|
-
link1?: string;
|
|
65
|
-
/**
|
|
66
|
-
* Generic link URL for the coin
|
|
67
|
-
* @type {string}
|
|
68
|
-
* @memberof CreateCoinRequest
|
|
69
|
-
*/
|
|
70
|
-
link2?: string;
|
|
71
|
-
/**
|
|
72
|
-
* Generic link URL for the coin
|
|
73
|
-
* @type {string}
|
|
74
|
-
* @memberof CreateCoinRequest
|
|
75
|
-
*/
|
|
76
|
-
link3?: string;
|
|
77
|
-
/**
|
|
78
|
-
* Generic link URL for the coin
|
|
79
|
-
* @type {string}
|
|
80
|
-
* @memberof CreateCoinRequest
|
|
81
|
-
*/
|
|
82
|
-
link4?: string;
|
|
83
|
-
}
|
|
84
|
-
/**
|
|
85
|
-
* Check if a given object implements the CreateCoinRequest interface.
|
|
86
|
-
*/
|
|
87
|
-
export declare function instanceOfCreateCoinRequest(value: object): value is CreateCoinRequest;
|
|
88
|
-
export declare function CreateCoinRequestFromJSON(json: any): CreateCoinRequest;
|
|
89
|
-
export declare function CreateCoinRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateCoinRequest;
|
|
90
|
-
export declare function CreateCoinRequestToJSON(value?: CreateCoinRequest | null): any;
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Audius API
|
|
3
|
-
*
|
|
4
|
-
* The version of the OpenAPI document: 1.0
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8
|
-
* https://openapi-generator.tech
|
|
9
|
-
* Do not edit the class manually.
|
|
10
|
-
*/
|
|
11
|
-
import type { CreateCoinResponseData } from './CreateCoinResponseData';
|
|
12
|
-
/**
|
|
13
|
-
*
|
|
14
|
-
* @export
|
|
15
|
-
* @interface CreateCoinResponse
|
|
16
|
-
*/
|
|
17
|
-
export interface CreateCoinResponse {
|
|
18
|
-
/**
|
|
19
|
-
*
|
|
20
|
-
* @type {CreateCoinResponseData}
|
|
21
|
-
* @memberof CreateCoinResponse
|
|
22
|
-
*/
|
|
23
|
-
data?: CreateCoinResponseData;
|
|
24
|
-
}
|
|
25
|
-
/**
|
|
26
|
-
* Check if a given object implements the CreateCoinResponse interface.
|
|
27
|
-
*/
|
|
28
|
-
export declare function instanceOfCreateCoinResponse(value: object): value is CreateCoinResponse;
|
|
29
|
-
export declare function CreateCoinResponseFromJSON(json: any): CreateCoinResponse;
|
|
30
|
-
export declare function CreateCoinResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateCoinResponse;
|
|
31
|
-
export declare function CreateCoinResponseToJSON(value?: CreateCoinResponse | null): any;
|