@rixl/sdk 0.9.1 → 0.11.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/dist/index.d.ts +1328 -109
- package/dist/index.js +159 -13
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -752,6 +752,17 @@ const analyticsV1DashboardServiceQueryChart = (options) => (options.client ?? cl
|
|
|
752
752
|
}
|
|
753
753
|
});
|
|
754
754
|
/**
|
|
755
|
+
* BatchQueryChart
|
|
756
|
+
*/
|
|
757
|
+
const analyticsV1DashboardServiceBatchQueryChart = (options) => (options.client ?? client).post({
|
|
758
|
+
url: "/analytics/v1/dashboard/chart-query/batch",
|
|
759
|
+
...options,
|
|
760
|
+
headers: {
|
|
761
|
+
"Content-Type": "application/json",
|
|
762
|
+
...options.headers
|
|
763
|
+
}
|
|
764
|
+
});
|
|
765
|
+
/**
|
|
755
766
|
* ListDatasets
|
|
756
767
|
*/
|
|
757
768
|
const analyticsV1DashboardServiceListDatasets = (options) => (options?.client ?? client).get({
|
|
@@ -770,6 +781,118 @@ const analyticsV1DashboardServiceGetFilterOptions = (options) => (options.client
|
|
|
770
781
|
}
|
|
771
782
|
});
|
|
772
783
|
/**
|
|
784
|
+
* GetScopeTree
|
|
785
|
+
*/
|
|
786
|
+
const analyticsV1DashboardServiceGetScopeTree = (options) => (options.client ?? client).post({
|
|
787
|
+
url: "/analytics/v1/dashboard/scope-tree",
|
|
788
|
+
...options,
|
|
789
|
+
headers: {
|
|
790
|
+
"Content-Type": "application/json",
|
|
791
|
+
...options.headers
|
|
792
|
+
}
|
|
793
|
+
});
|
|
794
|
+
/**
|
|
795
|
+
* ListDashboards
|
|
796
|
+
*/
|
|
797
|
+
const analyticsV1DashboardServiceListDashboards = (options) => (options?.client ?? client).get({
|
|
798
|
+
url: "/analytics/v1/dashboards",
|
|
799
|
+
...options
|
|
800
|
+
});
|
|
801
|
+
/**
|
|
802
|
+
* CreateDashboard
|
|
803
|
+
*/
|
|
804
|
+
const analyticsV1DashboardServiceCreateDashboard = (options) => (options.client ?? client).post({
|
|
805
|
+
url: "/analytics/v1/dashboards",
|
|
806
|
+
...options,
|
|
807
|
+
headers: {
|
|
808
|
+
"Content-Type": "application/json",
|
|
809
|
+
...options.headers
|
|
810
|
+
}
|
|
811
|
+
});
|
|
812
|
+
/**
|
|
813
|
+
* DeleteWidget
|
|
814
|
+
*/
|
|
815
|
+
const analyticsV1DashboardServiceDeleteWidget = (options) => (options.client ?? client).delete({
|
|
816
|
+
url: "/analytics/v1/dashboards/widgets/{id}",
|
|
817
|
+
...options
|
|
818
|
+
});
|
|
819
|
+
/**
|
|
820
|
+
* UpdateWidget
|
|
821
|
+
*/
|
|
822
|
+
const analyticsV1DashboardServiceUpdateWidget = (options) => (options.client ?? client).patch({
|
|
823
|
+
url: "/analytics/v1/dashboards/widgets/{id}",
|
|
824
|
+
...options,
|
|
825
|
+
headers: {
|
|
826
|
+
"Content-Type": "application/json",
|
|
827
|
+
...options.headers
|
|
828
|
+
}
|
|
829
|
+
});
|
|
830
|
+
/**
|
|
831
|
+
* ExportDashboard
|
|
832
|
+
*/
|
|
833
|
+
const analyticsV1DashboardServiceExportDashboard = (options) => (options.client ?? client).post({
|
|
834
|
+
url: "/analytics/v1/dashboards/{dashboard_id}/export",
|
|
835
|
+
...options,
|
|
836
|
+
headers: {
|
|
837
|
+
"Content-Type": "application/json",
|
|
838
|
+
...options.headers
|
|
839
|
+
}
|
|
840
|
+
});
|
|
841
|
+
/**
|
|
842
|
+
* UpdateDashboardLayout
|
|
843
|
+
*/
|
|
844
|
+
const analyticsV1DashboardServiceUpdateDashboardLayout = (options) => (options.client ?? client).post({
|
|
845
|
+
url: "/analytics/v1/dashboards/{dashboard_id}/layout",
|
|
846
|
+
...options,
|
|
847
|
+
headers: {
|
|
848
|
+
"Content-Type": "application/json",
|
|
849
|
+
...options.headers
|
|
850
|
+
}
|
|
851
|
+
});
|
|
852
|
+
/**
|
|
853
|
+
* CreateWidget
|
|
854
|
+
*/
|
|
855
|
+
const analyticsV1DashboardServiceCreateWidget = (options) => (options.client ?? client).post({
|
|
856
|
+
url: "/analytics/v1/dashboards/{dashboard_id}/widgets",
|
|
857
|
+
...options,
|
|
858
|
+
headers: {
|
|
859
|
+
"Content-Type": "application/json",
|
|
860
|
+
...options.headers
|
|
861
|
+
}
|
|
862
|
+
});
|
|
863
|
+
/**
|
|
864
|
+
* DeleteDashboard
|
|
865
|
+
*/
|
|
866
|
+
const analyticsV1DashboardServiceDeleteDashboard = (options) => (options.client ?? client).delete({
|
|
867
|
+
url: "/analytics/v1/dashboards/{id}",
|
|
868
|
+
...options
|
|
869
|
+
});
|
|
870
|
+
/**
|
|
871
|
+
* GetDashboard
|
|
872
|
+
*/
|
|
873
|
+
const analyticsV1DashboardServiceGetDashboard = (options) => (options.client ?? client).get({
|
|
874
|
+
url: "/analytics/v1/dashboards/{id}",
|
|
875
|
+
...options
|
|
876
|
+
});
|
|
877
|
+
/**
|
|
878
|
+
* UpdateDashboard
|
|
879
|
+
*/
|
|
880
|
+
const analyticsV1DashboardServiceUpdateDashboard = (options) => (options.client ?? client).patch({
|
|
881
|
+
url: "/analytics/v1/dashboards/{id}",
|
|
882
|
+
...options,
|
|
883
|
+
headers: {
|
|
884
|
+
"Content-Type": "application/json",
|
|
885
|
+
...options.headers
|
|
886
|
+
}
|
|
887
|
+
});
|
|
888
|
+
/**
|
|
889
|
+
* SetDefaultDashboard
|
|
890
|
+
*/
|
|
891
|
+
const analyticsV1DashboardServiceSetDefaultDashboard = (options) => (options.client ?? client).post({
|
|
892
|
+
url: "/analytics/v1/dashboards/{id}/default",
|
|
893
|
+
...options
|
|
894
|
+
});
|
|
895
|
+
/**
|
|
773
896
|
* TrackEvents
|
|
774
897
|
*/
|
|
775
898
|
const analyticsV1EventsServiceTrackEvents = (options) => (options.client ?? client).post({
|
|
@@ -831,6 +954,20 @@ const analyticsV1HeatmapServiceGetHotSegments = (options) => (options.client ??
|
|
|
831
954
|
...options
|
|
832
955
|
});
|
|
833
956
|
/**
|
|
957
|
+
* GetImageStats
|
|
958
|
+
*/
|
|
959
|
+
const analyticsV1ImagesServiceGetImageStats = (options) => (options.client ?? client).get({
|
|
960
|
+
url: "/analytics/v1/images/{image_id}/stats",
|
|
961
|
+
...options
|
|
962
|
+
});
|
|
963
|
+
/**
|
|
964
|
+
* GetTopImages
|
|
965
|
+
*/
|
|
966
|
+
const analyticsV1ImagesServiceGetTopImages = (options) => (options?.client ?? client).get({
|
|
967
|
+
url: "/analytics/v1/top/images",
|
|
968
|
+
...options
|
|
969
|
+
});
|
|
970
|
+
/**
|
|
834
971
|
* GetPostStats
|
|
835
972
|
*/
|
|
836
973
|
const analyticsV1PostsServiceGetPostStats = (options) => (options.client ?? client).get({
|
|
@@ -1152,6 +1289,13 @@ const authV1MembershipServiceUpdateOrgUsername = (options) => (options.client ??
|
|
|
1152
1289
|
}
|
|
1153
1290
|
});
|
|
1154
1291
|
/**
|
|
1292
|
+
* RegenerateBackupCodes
|
|
1293
|
+
*/
|
|
1294
|
+
const authV1OtpServiceRegenerateBackupCodes = (options) => (options?.client ?? client).post({
|
|
1295
|
+
url: "/auth/v1/users/current/totp/backup-codes/regenerate",
|
|
1296
|
+
...options
|
|
1297
|
+
});
|
|
1298
|
+
/**
|
|
1155
1299
|
* DeleteOTP
|
|
1156
1300
|
*/
|
|
1157
1301
|
const authV1OtpServiceDeleteOtp = (options) => (options?.client ?? client).delete({
|
|
@@ -1307,6 +1451,13 @@ const authV1PolicyServiceDetachPolicy = (options) => (options.client ?? client).
|
|
|
1307
1451
|
...options
|
|
1308
1452
|
});
|
|
1309
1453
|
/**
|
|
1454
|
+
* ListPermissionRegistry
|
|
1455
|
+
*/
|
|
1456
|
+
const authV1PolicyServiceListPermissionRegistry = (options) => (options.client ?? client).get({
|
|
1457
|
+
url: "/auth/v1/memberships/{user.org_id}/policies/permissions",
|
|
1458
|
+
...options
|
|
1459
|
+
});
|
|
1460
|
+
/**
|
|
1310
1461
|
* DeletePolicy
|
|
1311
1462
|
*/
|
|
1312
1463
|
const authV1PolicyServiceDeletePolicy = (options) => (options.client ?? client).delete({
|
|
@@ -1350,13 +1501,6 @@ const authV1PolicyServiceAttachPolicy = (options) => (options.client ?? client).
|
|
|
1350
1501
|
}
|
|
1351
1502
|
});
|
|
1352
1503
|
/**
|
|
1353
|
-
* ListPermissionRegistry
|
|
1354
|
-
*/
|
|
1355
|
-
const authV1PolicyServiceListPermissionRegistry = (options) => (options?.client ?? client).get({
|
|
1356
|
-
url: "/auth/v1/policies/permissions",
|
|
1357
|
-
...options
|
|
1358
|
-
});
|
|
1359
|
-
/**
|
|
1360
1504
|
* ListProviders
|
|
1361
1505
|
*/
|
|
1362
1506
|
const authV1ProvidersServiceListProviders = (options) => (options?.client ?? client).get({
|
|
@@ -3014,11 +3158,13 @@ function setCookie(name, value, options) {
|
|
|
3014
3158
|
if (typeof document === "undefined") return;
|
|
3015
3159
|
let cookieString = `${encodeName(name)}=${encodeValue(value)}`;
|
|
3016
3160
|
if (options) {
|
|
3017
|
-
if (options.expires)
|
|
3018
|
-
|
|
3019
|
-
|
|
3020
|
-
|
|
3021
|
-
|
|
3161
|
+
if (options.expires) {
|
|
3162
|
+
if (typeof options.expires === "number") {
|
|
3163
|
+
const date = /* @__PURE__ */ new Date();
|
|
3164
|
+
date.setTime(date.getTime() + options.expires * 24 * 60 * 60 * 1e3);
|
|
3165
|
+
cookieString += `; expires=${date.toUTCString()}`;
|
|
3166
|
+
} else cookieString += `; expires=${options.expires.toUTCString()}`;
|
|
3167
|
+
}
|
|
3022
3168
|
if (options.path) cookieString += `; path=${options.path}`;
|
|
3023
3169
|
if (options.domain) cookieString += `; domain=${options.domain}`;
|
|
3024
3170
|
if (options.secure) cookieString += `; secure`;
|
|
@@ -4615,5 +4761,5 @@ const verifyPasskeyForLogin = async (session_id, credential) => {
|
|
|
4615
4761
|
};
|
|
4616
4762
|
|
|
4617
4763
|
//#endregion
|
|
4618
|
-
export { DomainStatus, MembershipRole, MembershipState, PasskeyUnavailableError, addEmail, analyticsV1DashboardServiceGetDashboardStats, analyticsV1DashboardServiceGetFilterOptions, analyticsV1DashboardServiceListDatasets, analyticsV1DashboardServiceQueryChart, analyticsV1EventsServiceTrackEvents, analyticsV1FeedsServiceGetFeedStats, analyticsV1FeedsServiceGetTopFeeds, analyticsV1FunnelsServiceGetFunnelAnalytics, analyticsV1FunnelsServiceGetRetentionAnalytics, analyticsV1HeatmapServiceGetHotSegments, analyticsV1HeatmapServiceGetVideoHeatmap, analyticsV1PostsServiceGetPostStats, analyticsV1PostsServiceGetTopPosts, analyticsV1RealtimeServiceGetRealtimeStats, analyticsV1VideosServiceGetTopVideos, analyticsV1VideosServiceGetVideoStats, apikeysV1ApiKeyServiceCreateApiKey, apikeysV1ApiKeyServiceDeleteApiKey, apikeysV1ApiKeyServiceListApiKeys, apikeysV1ApiKeyServiceRotateApiKey, authError, authV1BlogServiceGetBlogSubscription, authV1BlogServiceSendBlogBroadcast, authV1BlogServiceSubscribeBlog, authV1BlogServiceUnsubscribeBlog, authV1BlogServiceUnsubscribeBlogByEmail, authV1DomainServiceCheckDomainVerification, authV1DomainServiceCreateDomainVerification, authV1DomainServiceGetDomainAutoJoin, authV1DomainServiceGetDomainStatus, authV1DomainServiceRemoveDomain, authV1DomainServiceSetDomainAutoJoin, authV1EmailServiceAddEmail, authV1EmailServiceGetUserEmailStatus, authV1EmailServiceInitiateEmailChange, authV1EmailServiceLogin, authV1EmailServiceRegister, authV1EmailServiceResendVerification, authV1EmailServiceResetPassword, authV1EmailServiceSendPasswordReset, authV1EmailServiceVerifyEmail, authV1MembershipServiceAcceptInvitation, authV1MembershipServiceCancelInvitation, authV1MembershipServiceCheckMembership, authV1MembershipServiceDeclineInvitation, authV1MembershipServiceGetInternalMembershipInfo, authV1MembershipServiceInviteMember, authV1MembershipServiceLeaveOrganization, authV1MembershipServiceListMembershipApplications, authV1MembershipServiceListMemberships, authV1MembershipServiceListOrganizationMembers, authV1MembershipServiceReactivateMember, authV1MembershipServiceRemoveMember, authV1MembershipServiceResendInvitation, authV1MembershipServiceSuspendMember, authV1MembershipServiceUpdateActiveMembership, authV1MembershipServiceUpdateMemberRole, authV1MembershipServiceUpdateMembershipState, authV1MembershipServiceUpdateOrgName, authV1MembershipServiceUpdateOrgUsername, authV1OtpServiceDeleteOtp, authV1OtpServiceGetOtpStatus, authV1OtpServiceSetupOtp, authV1OtpServiceVerifyOtp, authV1OtpServiceVerifyTotpForLogin, authV1PasskeyServiceDeletePasskey, authV1PasskeyServiceListPasskeys, authV1PasskeyServicePasskeyLoginBegin, authV1PasskeyServicePasskeyLoginFinish, authV1PasskeyServicePasskeyRegisterBegin, authV1PasskeyServicePasskeyRegisterFinish, authV1PasskeyServiceRenamePasskey, authV1PasskeyServiceVerifyPasskeyForLogin, authV1PolicyServiceAttachPolicy, authV1PolicyServiceCreatePolicy, authV1PolicyServiceDeletePolicy, authV1PolicyServiceDetachPolicy, authV1PolicyServiceGetPolicy, authV1PolicyServiceListPermissionRegistry, authV1PolicyServiceListPolicies, authV1PolicyServiceListPolicyAttachments, authV1PolicyServiceListUserPolicies, authV1PolicyServiceUpdatePolicy, authV1ProvidersServiceConnectProvider, authV1ProvidersServiceDisconnectProvider, authV1ProvidersServiceListProviders, authV1TokenServiceLogout, authV1TokenServiceRefreshToken, authV1UserServiceGetUser, authV1UserServiceGetUserInfo, authV1UserServiceUpdateName, authV1UserServiceUpdateUsername, beginPasskeyLogin, beginPasskeyRegistration, billingV1InvoiceServiceListInvoices, billingV1InvoiceServiceUpdateInvoiceStatus, billingV1PaymentServiceCalculateGenericTax, billingV1PaymentServiceCalculateTax, billingV1PaymentServiceCreateCheckoutSession, billingV1PaymentServiceCreateSetupIntent, billingV1PaymentServiceDeletePaymentMethod, billingV1PaymentServiceGetBillingAddress, billingV1PaymentServiceGetPaymentMethodFromPaymentIntent, billingV1PaymentServiceGetPaymentMethodFromSetupIntent, billingV1PaymentServiceListPaymentMethods, billingV1PaymentServiceUpgradeSubscription, billingV1PaymentServiceUpsertBillingAddress, billingV1PaymentServiceUpsertPaymentMethod, billingV1PlanServiceGetPlan, billingV1PlanServiceListPlans, billingV1SalesServiceContactSales, billingV1SubscriptionServiceCancelSubscription, billingV1SubscriptionServiceCreateSubscription, billingV1SubscriptionServiceGetSubscription, billingV1SubscriptionServiceGetSubscriptionHistory, billingV1SubscriptionServiceReactivateSubscription, billingV1UsageServiceGetBandwidthUsage, billingV1UsageServiceGetBandwidthUsageHistory, billingV1UsageServiceGetStorageUsage, billingV1UsageServiceGetStorageUsageHistory, billingV1UsageServiceRefreshBandwidthUsage, billingV1UsageServiceRefreshStorageUsage, checkDomainVerification, clearAuthError, clearLimitedAccessState, client, clientauthV1ClientCredentialServiceCreateClientCredential, clientauthV1ClientCredentialServiceListClientCredentials, clientauthV1ClientCredentialServiceMintClientToken, clientauthV1ClientCredentialServiceRevokeClientCredential, confirmPasswordReset, connect, connectSocial, createClient, decodeRequestOptions, deleteMember, deletePasskey, deleteUserOTP, disconnectSocial, feedsV1FeedServiceCreateFeed, feedsV1FeedServiceDeleteFeed, feedsV1FeedServiceGetFeed, feedsV1FeedServiceListFeeds, feedsV1FeedServiceUpdateFeed, finishPasskeyLogin, finishPasskeyRegistration, getBlogSubscriptionStatus, getDomainStatus, getEmailVerificationStatus, getOTPStatus, getToken, getUserInfo, imagesV1ImageConversionServiceMarkImageFailed, imagesV1ImageConversionServiceMarkImageProcessed, imagesV1ImageConversionServiceTakeUnprocessedImage, imagesV1ImageServiceCreateImageUpload, imagesV1ImageServiceDeleteImage, imagesV1ImageServiceGetImage, imagesV1ImageServiceListImages, imagesV1ImageServiceUpdateImageVisibility, initClient, initiateDomainVerification, initiateEmailChange, inviteMember, isLogged, leaveOrganization, limitedAccessToken, listActiveMemberships, listOrganizationMembers, listPasskeys, listPendingMemberships, listSocials, login, loginWithEmail, logout, platformauthV1PlatformAuthServiceExchangeApiKey, platformauthV1PlatformAuthServiceRefreshPlatformToken, postsV1PostServiceCreatePost, postsV1PostServiceCreatePostUpload, postsV1PostServiceDeletePost, postsV1PostServiceDeletePost2, postsV1PostServiceGetPost, postsV1PostServiceGetPost2, postsV1PostServiceGetPost3, postsV1PostServiceListPosts, postsV1PostServiceListPosts2, postsV1PostServiceListPosts3, postsV1PostServiceListPosts4, projectV1ProjectServiceCreateProject, projectV1ProjectServiceDeleteProject, projectV1ProjectServiceGetProject, projectV1ProjectServiceListProjects, projectV1ProjectServiceMoveProject, projectV1ProjectServiceRemoveCustomDomain, projectV1ProjectServiceSetCustomDomain, projectV1ProjectServiceUpdateProjectName, projectV1ProjectServiceUpdateVideoQuality, publicRespondToInvitation, registerWithEmail, removeDomain, renamePasskey, requiresAction, resendEmailVerificationCode, resendMemberInvite, respondToInvitation, sendPasswordResetEmail, setLimitedAccessState, setupUserOTP, subscribeToBlog, unsubscribeFromBlog, updateActiveMembership, updateAutoJoin, updateFullName, updateMemberRole, updateOrgName, updateOrgUsername, updateUsername, user, verifyEmailWithCode, verifyPasskeyForLogin, verifyTOTPForLogin, verifyUserOTP, videosV1AudioTrackServiceCreateAudioTrackUpload, videosV1AudioTrackServiceDeleteAllAudioTracks, videosV1AudioTrackServiceDeleteAudioTrack, videosV1AudioTrackServiceDeleteAudioTracksByLanguage, videosV1AudioTrackServiceListAudioTracks, videosV1ChapterServiceDeleteVideoChapter, videosV1ChapterServiceGetVideoChapters, videosV1ChapterServiceUpdateVideoChapters, videosV1LanguageServiceListLanguages, videosV1SubtitleServiceCreateSubtitleUpload, videosV1SubtitleServiceDeleteAllSubtitles, videosV1SubtitleServiceDeleteSubtitle, videosV1SubtitleServiceDeleteSubtitlesByLanguage, videosV1SubtitleServiceListSubtitles, videosV1VideoConversionServiceMarkVideoFailed, videosV1VideoConversionServiceMarkVideoProcessed, videosV1VideoServiceCreateVideoUpload, videosV1VideoServiceDeleteVideo, videosV1VideoServiceGetVideo, videosV1VideoServiceListVideos, videosV1VideoServiceUpdateVideoVisibility };
|
|
4764
|
+
export { DomainStatus, MembershipRole, MembershipState, PasskeyUnavailableError, addEmail, analyticsV1DashboardServiceBatchQueryChart, analyticsV1DashboardServiceCreateDashboard, analyticsV1DashboardServiceCreateWidget, analyticsV1DashboardServiceDeleteDashboard, analyticsV1DashboardServiceDeleteWidget, analyticsV1DashboardServiceExportDashboard, analyticsV1DashboardServiceGetDashboard, analyticsV1DashboardServiceGetDashboardStats, analyticsV1DashboardServiceGetFilterOptions, analyticsV1DashboardServiceGetScopeTree, analyticsV1DashboardServiceListDashboards, analyticsV1DashboardServiceListDatasets, analyticsV1DashboardServiceQueryChart, analyticsV1DashboardServiceSetDefaultDashboard, analyticsV1DashboardServiceUpdateDashboard, analyticsV1DashboardServiceUpdateDashboardLayout, analyticsV1DashboardServiceUpdateWidget, analyticsV1EventsServiceTrackEvents, analyticsV1FeedsServiceGetFeedStats, analyticsV1FeedsServiceGetTopFeeds, analyticsV1FunnelsServiceGetFunnelAnalytics, analyticsV1FunnelsServiceGetRetentionAnalytics, analyticsV1HeatmapServiceGetHotSegments, analyticsV1HeatmapServiceGetVideoHeatmap, analyticsV1ImagesServiceGetImageStats, analyticsV1ImagesServiceGetTopImages, analyticsV1PostsServiceGetPostStats, analyticsV1PostsServiceGetTopPosts, analyticsV1RealtimeServiceGetRealtimeStats, analyticsV1VideosServiceGetTopVideos, analyticsV1VideosServiceGetVideoStats, apikeysV1ApiKeyServiceCreateApiKey, apikeysV1ApiKeyServiceDeleteApiKey, apikeysV1ApiKeyServiceListApiKeys, apikeysV1ApiKeyServiceRotateApiKey, authError, authV1BlogServiceGetBlogSubscription, authV1BlogServiceSendBlogBroadcast, authV1BlogServiceSubscribeBlog, authV1BlogServiceUnsubscribeBlog, authV1BlogServiceUnsubscribeBlogByEmail, authV1DomainServiceCheckDomainVerification, authV1DomainServiceCreateDomainVerification, authV1DomainServiceGetDomainAutoJoin, authV1DomainServiceGetDomainStatus, authV1DomainServiceRemoveDomain, authV1DomainServiceSetDomainAutoJoin, authV1EmailServiceAddEmail, authV1EmailServiceGetUserEmailStatus, authV1EmailServiceInitiateEmailChange, authV1EmailServiceLogin, authV1EmailServiceRegister, authV1EmailServiceResendVerification, authV1EmailServiceResetPassword, authV1EmailServiceSendPasswordReset, authV1EmailServiceVerifyEmail, authV1MembershipServiceAcceptInvitation, authV1MembershipServiceCancelInvitation, authV1MembershipServiceCheckMembership, authV1MembershipServiceDeclineInvitation, authV1MembershipServiceGetInternalMembershipInfo, authV1MembershipServiceInviteMember, authV1MembershipServiceLeaveOrganization, authV1MembershipServiceListMembershipApplications, authV1MembershipServiceListMemberships, authV1MembershipServiceListOrganizationMembers, authV1MembershipServiceReactivateMember, authV1MembershipServiceRemoveMember, authV1MembershipServiceResendInvitation, authV1MembershipServiceSuspendMember, authV1MembershipServiceUpdateActiveMembership, authV1MembershipServiceUpdateMemberRole, authV1MembershipServiceUpdateMembershipState, authV1MembershipServiceUpdateOrgName, authV1MembershipServiceUpdateOrgUsername, authV1OtpServiceDeleteOtp, authV1OtpServiceGetOtpStatus, authV1OtpServiceRegenerateBackupCodes, authV1OtpServiceSetupOtp, authV1OtpServiceVerifyOtp, authV1OtpServiceVerifyTotpForLogin, authV1PasskeyServiceDeletePasskey, authV1PasskeyServiceListPasskeys, authV1PasskeyServicePasskeyLoginBegin, authV1PasskeyServicePasskeyLoginFinish, authV1PasskeyServicePasskeyRegisterBegin, authV1PasskeyServicePasskeyRegisterFinish, authV1PasskeyServiceRenamePasskey, authV1PasskeyServiceVerifyPasskeyForLogin, authV1PolicyServiceAttachPolicy, authV1PolicyServiceCreatePolicy, authV1PolicyServiceDeletePolicy, authV1PolicyServiceDetachPolicy, authV1PolicyServiceGetPolicy, authV1PolicyServiceListPermissionRegistry, authV1PolicyServiceListPolicies, authV1PolicyServiceListPolicyAttachments, authV1PolicyServiceListUserPolicies, authV1PolicyServiceUpdatePolicy, authV1ProvidersServiceConnectProvider, authV1ProvidersServiceDisconnectProvider, authV1ProvidersServiceListProviders, authV1TokenServiceLogout, authV1TokenServiceRefreshToken, authV1UserServiceGetUser, authV1UserServiceGetUserInfo, authV1UserServiceUpdateName, authV1UserServiceUpdateUsername, beginPasskeyLogin, beginPasskeyRegistration, billingV1InvoiceServiceListInvoices, billingV1InvoiceServiceUpdateInvoiceStatus, billingV1PaymentServiceCalculateGenericTax, billingV1PaymentServiceCalculateTax, billingV1PaymentServiceCreateCheckoutSession, billingV1PaymentServiceCreateSetupIntent, billingV1PaymentServiceDeletePaymentMethod, billingV1PaymentServiceGetBillingAddress, billingV1PaymentServiceGetPaymentMethodFromPaymentIntent, billingV1PaymentServiceGetPaymentMethodFromSetupIntent, billingV1PaymentServiceListPaymentMethods, billingV1PaymentServiceUpgradeSubscription, billingV1PaymentServiceUpsertBillingAddress, billingV1PaymentServiceUpsertPaymentMethod, billingV1PlanServiceGetPlan, billingV1PlanServiceListPlans, billingV1SalesServiceContactSales, billingV1SubscriptionServiceCancelSubscription, billingV1SubscriptionServiceCreateSubscription, billingV1SubscriptionServiceGetSubscription, billingV1SubscriptionServiceGetSubscriptionHistory, billingV1SubscriptionServiceReactivateSubscription, billingV1UsageServiceGetBandwidthUsage, billingV1UsageServiceGetBandwidthUsageHistory, billingV1UsageServiceGetStorageUsage, billingV1UsageServiceGetStorageUsageHistory, billingV1UsageServiceRefreshBandwidthUsage, billingV1UsageServiceRefreshStorageUsage, checkDomainVerification, clearAuthError, clearLimitedAccessState, client, clientauthV1ClientCredentialServiceCreateClientCredential, clientauthV1ClientCredentialServiceListClientCredentials, clientauthV1ClientCredentialServiceMintClientToken, clientauthV1ClientCredentialServiceRevokeClientCredential, confirmPasswordReset, connect, connectSocial, createClient, decodeRequestOptions, deleteMember, deletePasskey, deleteUserOTP, disconnectSocial, feedsV1FeedServiceCreateFeed, feedsV1FeedServiceDeleteFeed, feedsV1FeedServiceGetFeed, feedsV1FeedServiceListFeeds, feedsV1FeedServiceUpdateFeed, finishPasskeyLogin, finishPasskeyRegistration, getBlogSubscriptionStatus, getDomainStatus, getEmailVerificationStatus, getOTPStatus, getToken, getUserInfo, imagesV1ImageConversionServiceMarkImageFailed, imagesV1ImageConversionServiceMarkImageProcessed, imagesV1ImageConversionServiceTakeUnprocessedImage, imagesV1ImageServiceCreateImageUpload, imagesV1ImageServiceDeleteImage, imagesV1ImageServiceGetImage, imagesV1ImageServiceListImages, imagesV1ImageServiceUpdateImageVisibility, initClient, initiateDomainVerification, initiateEmailChange, inviteMember, isLogged, leaveOrganization, limitedAccessToken, listActiveMemberships, listOrganizationMembers, listPasskeys, listPendingMemberships, listSocials, login, loginWithEmail, logout, platformauthV1PlatformAuthServiceExchangeApiKey, platformauthV1PlatformAuthServiceRefreshPlatformToken, postsV1PostServiceCreatePost, postsV1PostServiceCreatePostUpload, postsV1PostServiceDeletePost, postsV1PostServiceDeletePost2, postsV1PostServiceGetPost, postsV1PostServiceGetPost2, postsV1PostServiceGetPost3, postsV1PostServiceListPosts, postsV1PostServiceListPosts2, postsV1PostServiceListPosts3, postsV1PostServiceListPosts4, projectV1ProjectServiceCreateProject, projectV1ProjectServiceDeleteProject, projectV1ProjectServiceGetProject, projectV1ProjectServiceListProjects, projectV1ProjectServiceMoveProject, projectV1ProjectServiceRemoveCustomDomain, projectV1ProjectServiceSetCustomDomain, projectV1ProjectServiceUpdateProjectName, projectV1ProjectServiceUpdateVideoQuality, publicRespondToInvitation, registerWithEmail, removeDomain, renamePasskey, requiresAction, resendEmailVerificationCode, resendMemberInvite, respondToInvitation, sendPasswordResetEmail, setLimitedAccessState, setupUserOTP, subscribeToBlog, unsubscribeFromBlog, updateActiveMembership, updateAutoJoin, updateFullName, updateMemberRole, updateOrgName, updateOrgUsername, updateUsername, user, verifyEmailWithCode, verifyPasskeyForLogin, verifyTOTPForLogin, verifyUserOTP, videosV1AudioTrackServiceCreateAudioTrackUpload, videosV1AudioTrackServiceDeleteAllAudioTracks, videosV1AudioTrackServiceDeleteAudioTrack, videosV1AudioTrackServiceDeleteAudioTracksByLanguage, videosV1AudioTrackServiceListAudioTracks, videosV1ChapterServiceDeleteVideoChapter, videosV1ChapterServiceGetVideoChapters, videosV1ChapterServiceUpdateVideoChapters, videosV1LanguageServiceListLanguages, videosV1SubtitleServiceCreateSubtitleUpload, videosV1SubtitleServiceDeleteAllSubtitles, videosV1SubtitleServiceDeleteSubtitle, videosV1SubtitleServiceDeleteSubtitlesByLanguage, videosV1SubtitleServiceListSubtitles, videosV1VideoConversionServiceMarkVideoFailed, videosV1VideoConversionServiceMarkVideoProcessed, videosV1VideoServiceCreateVideoUpload, videosV1VideoServiceDeleteVideo, videosV1VideoServiceGetVideo, videosV1VideoServiceListVideos, videosV1VideoServiceUpdateVideoVisibility };
|
|
4619
4765
|
//# sourceMappingURL=index.js.map
|