@verdocs/js-sdk 1.0.8 → 1.0.12
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/.gitignore +4 -0
- package/.idea/.gitignore +8 -0
- package/.idea/inspectionProfiles/Project_Default.xml +12 -0
- package/.idea/js-sdk.iml +11 -0
- package/.idea/misc.xml +6 -0
- package/.idea/modules.xml +8 -0
- package/.idea/vcs.xml +6 -0
- package/.prettierrc.js +11 -0
- package/LICENSE +21 -0
- package/README.md +8 -5
- package/__mocks__/axios.ts +3 -0
- package/dist/.npmignore +5 -0
- package/{Documents → dist/Documents}/Documents.d.ts +9 -0
- package/{Documents → dist/Documents}/Documents.js +24 -7
- package/{Documents → dist/Documents}/Stars.d.ts +0 -0
- package/{Documents → dist/Documents}/Stars.js +2 -2
- package/{Documents → dist/Documents}/Templates.d.ts +0 -0
- package/{Documents → dist/Documents}/Templates.js +22 -10
- package/{Documents → dist/Documents}/Types.d.ts +0 -0
- package/{Api → dist/Documents}/Types.js +0 -0
- package/{Documents → dist/Documents}/index.d.ts +0 -0
- package/{Documents → dist/Documents}/index.js +0 -0
- package/dist/HTTP/Transport.d.ts +51 -0
- package/dist/HTTP/Transport.js +88 -0
- package/{HTTP → dist/HTTP}/Types.d.ts +0 -0
- package/{Documents → dist/HTTP}/Types.js +0 -0
- package/{HTTP → dist/HTTP}/index.d.ts +0 -0
- package/{HTTP → dist/HTTP}/index.js +0 -0
- package/{Organizations → dist/Organizations}/ApiKeys.d.ts +0 -0
- package/{Organizations → dist/Organizations}/ApiKeys.js +16 -6
- package/{Organizations → dist/Organizations}/Groups.d.ts +0 -0
- package/{Organizations → dist/Organizations}/Groups.js +22 -8
- package/{Organizations → dist/Organizations}/Invitations.d.ts +0 -0
- package/dist/Organizations/Invitations.js +36 -0
- package/{Organizations → dist/Organizations}/Members.d.ts +0 -0
- package/dist/Organizations/Members.js +26 -0
- package/{Organizations → dist/Organizations}/Organizations.d.ts +0 -0
- package/dist/Organizations/Organizations.js +31 -0
- package/{Organizations → dist/Organizations}/Types.d.ts +0 -0
- package/{HTTP → dist/Organizations}/Types.js +0 -0
- package/{Organizations → dist/Organizations}/Webhooks.d.ts +0 -0
- package/dist/Organizations/Webhooks.js +11 -0
- package/{Organizations → dist/Organizations}/index.d.ts +0 -0
- package/{Organizations → dist/Organizations}/index.js +0 -0
- package/dist/README.md +68 -0
- package/{Search → dist/Search}/Content.d.ts +0 -0
- package/{Search → dist/Search}/Content.js +22 -10
- package/{Search → dist/Search}/Types.d.ts +0 -0
- package/{Organizations → dist/Search}/Types.js +0 -0
- package/{Search → dist/Search}/index.d.ts +0 -0
- package/{Search → dist/Search}/index.js +0 -0
- package/{Signatures.d.ts → dist/Signatures.d.ts} +0 -0
- package/dist/Signatures.js +21 -0
- package/{Tags.d.ts → dist/Tags.d.ts} +0 -0
- package/dist/Tags.js +16 -0
- package/{Templates → dist/Templates}/Documents.d.ts +0 -0
- package/{Templates → dist/Templates}/Documents.js +13 -5
- package/{Templates → dist/Templates}/Fields.d.ts +0 -0
- package/dist/Templates/Fields.js +16 -0
- package/{Templates → dist/Templates}/Pages.d.ts +0 -0
- package/dist/Templates/Pages.js +21 -0
- package/{Templates → dist/Templates}/Reminders.d.ts +0 -0
- package/dist/Templates/Reminders.js +21 -0
- package/{Templates → dist/Templates}/Roles.d.ts +0 -0
- package/dist/Templates/Roles.js +36 -0
- package/{Templates → dist/Templates}/Stars.d.ts +0 -0
- package/dist/Templates/Stars.js +11 -0
- package/{Templates → dist/Templates}/Tags.d.ts +0 -0
- package/dist/Templates/Tags.js +16 -0
- package/{Templates → dist/Templates}/Templates.d.ts +0 -0
- package/{Templates → dist/Templates}/Templates.js +33 -11
- package/{Templates → dist/Templates}/Types.d.ts +0 -0
- package/{Templates → dist/Templates}/Types.js +0 -0
- package/{Templates → dist/Templates}/index.d.ts +0 -0
- package/{Templates → dist/Templates}/index.js +0 -0
- package/{Users → dist/Users}/Auth.d.ts +6 -6
- package/{Users → dist/Users}/Auth.js +27 -13
- package/{Users → dist/Users}/Billing.d.ts +0 -0
- package/{Users → dist/Users}/Billing.js +0 -0
- package/{Api → dist/Users}/Notifications.d.ts +0 -0
- package/{Api → dist/Users}/Notifications.js +8 -4
- package/{Users → dist/Users}/Profiles.d.ts +0 -0
- package/{Users → dist/Users}/Profiles.js +41 -11
- package/{Users → dist/Users}/Types.d.ts +13 -0
- package/{Search → dist/Users}/Types.js +0 -0
- package/{Users → dist/Users}/index.d.ts +0 -0
- package/{Users → dist/Users}/index.js +0 -0
- package/{Utils → dist/Utils}/DateTime.d.ts +0 -0
- package/{Utils → dist/Utils}/DateTime.js +0 -0
- package/{Utils → dist/Utils}/index.d.ts +0 -0
- package/{Utils → dist/Utils}/index.js +0 -0
- package/{Validators.d.ts → dist/Validators.d.ts} +0 -0
- package/dist/Validators.js +11 -0
- package/{Whitelabel.d.ts → dist/Whitelabel.d.ts} +0 -0
- package/dist/Whitelabel.js +11 -0
- package/{index.d.ts → dist/index.d.ts} +0 -0
- package/{index.js → dist/index.js} +0 -0
- package/dist/package.json +64 -0
- package/docs/.nojekyll +1 -0
- package/docs/README.md +70 -0
- package/docs/enums/Templates.Types.SortOptions.md +76 -0
- package/docs/enums/Templates.Types.Template.md +153 -0
- package/docs/enums/Templates.Types.TemplatePermissions.md +109 -0
- package/docs/enums/Templates.Types.TemplateSenderTypes.md +65 -0
- package/docs/interfaces/Documents.Documents-1.IActivityEntry.md +120 -0
- package/docs/interfaces/Documents.Documents-1.IDocument.md +175 -0
- package/docs/interfaces/Documents.Documents-1.IDocumentSearchOptions.md +98 -0
- package/docs/interfaces/Documents.Documents-1.IDocumentsSearchResult.md +43 -0
- package/docs/interfaces/Documents.Documents-1.IDocumentsSearchResultEntry.md +131 -0
- package/docs/interfaces/Documents.Documents-1.IDocumentsSummary.md +67 -0
- package/docs/interfaces/Documents.Documents-1.IHistory.md +76 -0
- package/docs/interfaces/Documents.Documents-1.IRecipient.md +208 -0
- package/docs/interfaces/Documents.Types.ITemplateSummaryEntry.md +186 -0
- package/docs/interfaces/Documents.Types.ITemplatesSummary.md +43 -0
- package/docs/interfaces/Organizations.Types.IApiKey.md +60 -0
- package/docs/interfaces/Organizations.Types.IApiKeyWithSecret.md +87 -0
- package/docs/interfaces/Organizations.Types.ICreateApiKeyRequest.md +32 -0
- package/docs/interfaces/Organizations.Types.IGroup.md +101 -0
- package/docs/interfaces/Organizations.Types.IGroupDetail.md +129 -0
- package/docs/interfaces/Organizations.Types.IOrganization.md +128 -0
- package/docs/interfaces/Organizations.Types.IUpdateApiKeyRequest.md +32 -0
- package/docs/interfaces/Signatures.ISignature.md +65 -0
- package/docs/interfaces/Tags.ITags.md +43 -0
- package/docs/interfaces/Templates.Types.IDocument.md +109 -0
- package/docs/interfaces/Templates.Types.IField.md +109 -0
- package/docs/interfaces/Templates.Types.IPage.md +87 -0
- package/docs/interfaces/Templates.Types.IReminder.md +109 -0
- package/docs/interfaces/Templates.Types.IRole.md +120 -0
- package/docs/interfaces/Templates.Types.ISetting.md +98 -0
- package/docs/interfaces/Templates.Types.IStar.md +32 -0
- package/docs/interfaces/Templates.Types.ITag.md +32 -0
- package/docs/interfaces/Templates.Types.ITemplate.md +219 -0
- package/docs/interfaces/Templates.Types.ITemplateSearchParams.md +197 -0
- package/docs/interfaces/Templates.Types.ITemplateSummaryEntry.md +186 -0
- package/docs/interfaces/Templates.Types.ITemplatesSearchResult.md +43 -0
- package/docs/interfaces/Templates.Types.ITemplatesSummary.md +43 -0
- package/docs/interfaces/Templates.Types.ITimePeriod.md +32 -0
- package/docs/interfaces/Users.Types.IActiveSession.md +131 -0
- package/docs/interfaces/Users.Types.IAuthenticateAppRequest.md +32 -0
- package/docs/interfaces/Users.Types.IAuthenticateResponse.md +43 -0
- package/docs/interfaces/Users.Types.IAuthenticateUserRequest.md +32 -0
- package/docs/interfaces/Users.Types.ICreateProfileRequest.md +54 -0
- package/docs/interfaces/Users.Types.IPermission.md +36 -0
- package/docs/interfaces/Users.Types.IProfile.md +173 -0
- package/docs/interfaces/Users.Types.IRole.md +36 -0
- package/docs/interfaces/Users.Types.ISwitchProfileResponse.md +54 -0
- package/docs/interfaces/Users.Types.IUpdateProfileRequest.md +43 -0
- package/docs/interfaces/Users.Types.TokenValidationRequest.md +21 -0
- package/docs/interfaces/Users.Types.TokenValidationResponse.md +36 -0
- package/docs/interfaces/Users.Types.UpdateEmailRequest.md +21 -0
- package/docs/interfaces/Users.Types.UpdateEmailResponse.md +21 -0
- package/docs/interfaces/Users.Types.UpdatePasswordRequest.md +43 -0
- package/docs/interfaces/Users.Types.UpdatePasswordResponse.md +34 -0
- package/docs/interfaces/Validators.IValidator.md +32 -0
- package/docs/modules/Documents.Documents-1.md +137 -0
- package/docs/modules/Documents.Stars.md +31 -0
- package/docs/modules/Documents.Templates.md +61 -0
- package/docs/modules/Documents.Types.md +12 -0
- package/docs/modules/Documents.md +12 -0
- package/docs/modules/HTTP.Transport.md +150 -0
- package/docs/modules/HTTP.Types.md +21 -0
- package/docs/modules/HTTP.md +10 -0
- package/docs/modules/Organizations.ApiKeys.md +169 -0
- package/docs/modules/Organizations.Groups.md +190 -0
- package/docs/modules/Organizations.Invitations.md +166 -0
- package/docs/modules/Organizations.Members.md +121 -0
- package/docs/modules/Organizations.Organizations-1.md +119 -0
- package/docs/modules/Organizations.Types.md +17 -0
- package/docs/modules/Organizations.Webhooks.md +53 -0
- package/docs/modules/Organizations.md +20 -0
- package/docs/modules/Signatures.md +90 -0
- package/docs/modules/Tags.md +75 -0
- package/docs/modules/Templates.Documents.md +129 -0
- package/docs/modules/Templates.Fields.md +77 -0
- package/docs/modules/Templates.Pages.md +98 -0
- package/docs/modules/Templates.Reminders.md +98 -0
- package/docs/modules/Templates.Roles.md +163 -0
- package/docs/modules/Templates.Stars.md +52 -0
- package/docs/modules/Templates.Tags.md +75 -0
- package/docs/modules/Templates.Templates-1.md +139 -0
- package/docs/modules/Templates.Types.md +31 -0
- package/docs/modules/Templates.md +17 -0
- package/docs/modules/Users.Auth.md +196 -0
- package/docs/modules/Users.Billing.md +5 -0
- package/docs/modules/Users.Notifications.md +25 -0
- package/docs/modules/Users.Profiles.md +286 -0
- package/docs/modules/Users.Types.md +62 -0
- package/docs/modules/Users.md +13 -0
- package/docs/modules/Utils.DateTime.md +31 -0
- package/docs/modules/Utils.md +9 -0
- package/docs/modules/Validators.md +48 -0
- package/docs/modules/Whitelabel.md +38 -0
- package/docs/modules.md +27 -0
- package/docs-html/.nojekyll +1 -0
- package/docs-html/assets/highlight.css +85 -0
- package/docs-html/assets/icons.css +1043 -0
- package/docs-html/assets/icons.png +0 -0
- package/docs-html/assets/icons@2x.png +0 -0
- package/docs-html/assets/main.js +52 -0
- package/docs-html/assets/search.js +1 -0
- package/docs-html/assets/style.css +1384 -0
- package/docs-html/assets/widgets.png +0 -0
- package/docs-html/assets/widgets@2x.png +0 -0
- package/docs-html/enums/Templates.Types.SortOptions.html +1 -0
- package/docs-html/enums/Templates.Types.Template.html +1 -0
- package/docs-html/enums/Templates.Types.TemplatePermissions.html +1 -0
- package/docs-html/enums/Templates.Types.TemplateSenderTypes.html +1 -0
- package/docs-html/index.html +64 -0
- package/docs-html/interfaces/Documents.Documents-1.IActivityEntry.html +1 -0
- package/docs-html/interfaces/Documents.Documents-1.IDocument.html +1 -0
- package/docs-html/interfaces/Documents.Documents-1.IDocumentSearchOptions.html +1 -0
- package/docs-html/interfaces/Documents.Documents-1.IDocumentsSearchResult.html +1 -0
- package/docs-html/interfaces/Documents.Documents-1.IDocumentsSearchResultEntry.html +1 -0
- package/docs-html/interfaces/Documents.Documents-1.IDocumentsSummary.html +1 -0
- package/docs-html/interfaces/Documents.Documents-1.IHistory.html +1 -0
- package/docs-html/interfaces/Documents.Documents-1.IRecipient.html +1 -0
- package/docs-html/interfaces/Documents.Types.ITemplateSummaryEntry.html +1 -0
- package/docs-html/interfaces/Documents.Types.ITemplatesSummary.html +1 -0
- package/docs-html/interfaces/Organizations.Types.IApiKey.html +1 -0
- package/docs-html/interfaces/Organizations.Types.IApiKeyWithSecret.html +1 -0
- package/docs-html/interfaces/Organizations.Types.ICreateApiKeyRequest.html +1 -0
- package/docs-html/interfaces/Organizations.Types.IGroup.html +9 -0
- package/docs-html/interfaces/Organizations.Types.IGroupDetail.html +9 -0
- package/docs-html/interfaces/Organizations.Types.IOrganization.html +9 -0
- package/docs-html/interfaces/Organizations.Types.IUpdateApiKeyRequest.html +1 -0
- package/docs-html/interfaces/Signatures.ISignature.html +1 -0
- package/docs-html/interfaces/Tags.ITags.html +1 -0
- package/docs-html/interfaces/Templates.Types.IDocument.html +1 -0
- package/docs-html/interfaces/Templates.Types.IField.html +1 -0
- package/docs-html/interfaces/Templates.Types.IPage.html +1 -0
- package/docs-html/interfaces/Templates.Types.IReminder.html +1 -0
- package/docs-html/interfaces/Templates.Types.IRole.html +1 -0
- package/docs-html/interfaces/Templates.Types.ISetting.html +1 -0
- package/docs-html/interfaces/Templates.Types.IStar.html +1 -0
- package/docs-html/interfaces/Templates.Types.ITag.html +1 -0
- package/docs-html/interfaces/Templates.Types.ITemplate.html +1 -0
- package/docs-html/interfaces/Templates.Types.ITemplateSearchParams.html +1 -0
- package/docs-html/interfaces/Templates.Types.ITemplateSummaryEntry.html +1 -0
- package/docs-html/interfaces/Templates.Types.ITemplatesSearchResult.html +1 -0
- package/docs-html/interfaces/Templates.Types.ITemplatesSummary.html +1 -0
- package/docs-html/interfaces/Templates.Types.ITimePeriod.html +1 -0
- package/docs-html/interfaces/Users.Types.IActiveSession.html +1 -0
- package/docs-html/interfaces/Users.Types.IAuthenticateAppRequest.html +1 -0
- package/docs-html/interfaces/Users.Types.IAuthenticateResponse.html +1 -0
- package/docs-html/interfaces/Users.Types.IAuthenticateUserRequest.html +1 -0
- package/docs-html/interfaces/Users.Types.ICreateProfileRequest.html +1 -0
- package/docs-html/interfaces/Users.Types.IPermission.html +5 -0
- package/docs-html/interfaces/Users.Types.IProfile.html +21 -0
- package/docs-html/interfaces/Users.Types.IRole.html +5 -0
- package/docs-html/interfaces/Users.Types.ISwitchProfileResponse.html +1 -0
- package/docs-html/interfaces/Users.Types.IUpdateProfileRequest.html +1 -0
- package/docs-html/interfaces/Users.Types.TokenValidationRequest.html +1 -0
- package/docs-html/interfaces/Users.Types.TokenValidationResponse.html +5 -0
- package/docs-html/interfaces/Users.Types.UpdateEmailRequest.html +1 -0
- package/docs-html/interfaces/Users.Types.UpdateEmailResponse.html +1 -0
- package/docs-html/interfaces/Users.Types.UpdatePasswordRequest.html +1 -0
- package/docs-html/interfaces/Users.Types.UpdatePasswordResponse.html +3 -0
- package/docs-html/interfaces/Validators.IValidator.html +1 -0
- package/docs-html/modules/Documents.Documents-1.html +9 -0
- package/docs-html/modules/Documents.Stars.html +1 -0
- package/docs-html/modules/Documents.Templates.html +1 -0
- package/docs-html/modules/Documents.Types.html +1 -0
- package/docs-html/modules/Documents.html +1 -0
- package/docs-html/modules/HTTP.Transport.html +22 -0
- package/docs-html/modules/HTTP.Types.html +1 -0
- package/docs-html/modules/HTTP.html +1 -0
- package/docs-html/modules/Organizations.ApiKeys.html +29 -0
- package/docs-html/modules/Organizations.Groups.html +15 -0
- package/docs-html/modules/Organizations.Invitations.html +1 -0
- package/docs-html/modules/Organizations.Members.html +1 -0
- package/docs-html/modules/Organizations.Organizations-1.html +1 -0
- package/docs-html/modules/Organizations.Types.html +1 -0
- package/docs-html/modules/Organizations.Webhooks.html +1 -0
- package/docs-html/modules/Organizations.html +6 -0
- package/docs-html/modules/Signatures.html +1 -0
- package/docs-html/modules/Tags.html +1 -0
- package/docs-html/modules/Templates.Documents.html +17 -0
- package/docs-html/modules/Templates.Fields.html +1 -0
- package/docs-html/modules/Templates.Pages.html +1 -0
- package/docs-html/modules/Templates.Reminders.html +1 -0
- package/docs-html/modules/Templates.Roles.html +1 -0
- package/docs-html/modules/Templates.Stars.html +1 -0
- package/docs-html/modules/Templates.Tags.html +1 -0
- package/docs-html/modules/Templates.Templates-1.html +5 -0
- package/docs-html/modules/Templates.Types.html +1 -0
- package/docs-html/modules/Templates.html +1 -0
- package/docs-html/modules/Users.Auth.html +31 -0
- package/docs-html/modules/Users.Billing.html +1 -0
- package/docs-html/modules/Users.Notifications.html +1 -0
- package/docs-html/modules/Users.Profiles.html +44 -0
- package/docs-html/modules/Users.Types.html +1 -0
- package/docs-html/modules/Users.html +1 -0
- package/docs-html/modules/Utils.DateTime.html +1 -0
- package/docs-html/modules/Utils.html +1 -0
- package/docs-html/modules/Validators.html +1 -0
- package/docs-html/modules/Whitelabel.html +1 -0
- package/docs-html/modules.html +11 -0
- package/jestconfig.json +11 -0
- package/package-lock.json +3421 -0
- package/package.json +6 -3
- package/src/Documents/Documents.ts +166 -0
- package/src/Documents/Stars.ts +5 -0
- package/src/Documents/Templates.ts +17 -0
- package/src/Documents/Types.ts +24 -0
- package/src/Documents/index.ts +4 -0
- package/src/HTTP/Transport.ts +95 -0
- package/src/HTTP/Types.ts +1 -0
- package/src/HTTP/index.ts +2 -0
- package/src/Organizations/ApiKeys.ts +85 -0
- package/src/Organizations/Groups.ts +65 -0
- package/src/Organizations/Invitations.ts +36 -0
- package/src/Organizations/Members.ts +26 -0
- package/src/Organizations/Organizations.ts +32 -0
- package/src/Organizations/Types.ts +63 -0
- package/src/Organizations/Webhooks.ts +11 -0
- package/src/Organizations/index.ts +16 -0
- package/src/Search/Content.ts +45 -0
- package/src/Search/Types.ts +83 -0
- package/src/Search/index.ts +2 -0
- package/src/Signatures.ts +29 -0
- package/src/Tags.ts +22 -0
- package/src/Templates/Documents.ts +58 -0
- package/src/Templates/Fields.ts +17 -0
- package/src/Templates/Pages.ts +22 -0
- package/src/Templates/Reminders.ts +22 -0
- package/src/Templates/Roles.ts +37 -0
- package/src/Templates/Stars.ts +12 -0
- package/src/Templates/Tags.ts +17 -0
- package/src/Templates/Templates.ts +42 -0
- package/src/Templates/Types.ts +201 -0
- package/src/Templates/index.ts +9 -0
- package/src/Users/Auth.ts +114 -0
- package/src/Users/Billing.ts +3 -0
- package/src/Users/Notifications.ts +6 -0
- package/src/Users/Profiles.ts +153 -0
- package/src/Users/Types.ts +156 -0
- package/src/Users/index.ts +5 -0
- package/src/Utils/DateTime.ts +43 -0
- package/src/Utils/index.ts +1 -0
- package/src/Validators.ts +16 -0
- package/src/Whitelabel.ts +11 -0
- package/src/__tests__/Organizations/Apikeys.spec.ts +84 -0
- package/src/__tests__/Users/Auth.spec.ts +89 -0
- package/src/__tests__/Users/Profiles.spec.ts +162 -0
- package/src/index.ts +23 -0
- package/tsconfig.json +20 -0
- package/tslint.json +3 -0
- package/Api/Auth.d.ts +0 -71
- package/Api/Auth.js +0 -24
- package/Api/Documents.d.ts +0 -124
- package/Api/Documents.js +0 -47
- package/Api/Endpoint.d.ts +0 -2
- package/Api/Endpoint.js +0 -9
- package/Api/Templates.d.ts +0 -33
- package/Api/Templates.js +0 -55
- package/Api/Types.d.ts +0 -182
- package/Api/index.d.ts +0 -2
- package/Api/index.js +0 -2
- package/AuthManager.d.ts +0 -14
- package/AuthManager.js +0 -53
- package/HTTP/Endpoint.d.ts +0 -4
- package/HTTP/Endpoint.js +0 -12
- package/HTTP/Transport.d.ts +0 -3
- package/HTTP/Transport.js +0 -12
- package/Organizations/Invitations.js +0 -22
- package/Organizations/Members.js +0 -16
- package/Organizations/Organizations.js +0 -13
- package/Organizations/Webhooks.js +0 -7
- package/Signatures.js +0 -7
- package/Tags.js +0 -4
- package/Templates/Fields.js +0 -10
- package/Templates/Pages.js +0 -13
- package/Templates/Reminders.js +0 -13
- package/Templates/Roles.js +0 -22
- package/Templates/Stars.js +0 -7
- package/Templates/Tags.js +0 -10
- package/Users/Notifications.d.ts +0 -1
- package/Users/Notifications.js +0 -40
- package/Users/Types.js +0 -1
- package/Validators.js +0 -5
- package/Whitelabel.js +0 -3
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!DOCTYPE html><html class="default no-js"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><title>ITemplateSummaryEntry | @verdocs/js-sdk - v1.0.12</title><meta name="description" content="Documentation for @verdocs/js-sdk - v1.0.12"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@verdocs/js-sdk - v1.0.12</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">@verdocs/js-sdk - v1.0.12</a></li><li><a href="../modules/Templates.html">Templates</a></li><li><a href="../modules/Templates.Types.html">Types</a></li><li><a href="Templates.Types.ITemplateSummaryEntry.html">ITemplateSummaryEntry</a></li></ul><h1>Interface ITemplateSummaryEntry</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel tsd-hierarchy"><h3>Hierarchy</h3><ul class="tsd-hierarchy"><li><span class="target">ITemplateSummaryEntry</span></li></ul></section><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Properties</h3><ul class="tsd-index-list"><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#counter" class="tsd-kind-icon">counter</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#created_at" class="tsd-kind-icon">created_<wbr/>at</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#description" class="tsd-kind-icon">description</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#document_name" class="tsd-kind-icon">document_<wbr/>name</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#id" class="tsd-kind-icon">id</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#is_personal" class="tsd-kind-icon">is_<wbr/>personal</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#is_public" class="tsd-kind-icon">is_<wbr/>public</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#is_starred" class="tsd-kind-icon">is_<wbr/>starred</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#last_used_at" class="tsd-kind-icon">last_<wbr/>used_<wbr/>at</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#name" class="tsd-kind-icon">name</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#organization_id" class="tsd-kind-icon">organization_<wbr/>id</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#profile_id" class="tsd-kind-icon">profile_<wbr/>id</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#sender" class="tsd-kind-icon">sender</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#star_counter" class="tsd-kind-icon">star_<wbr/>counter</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#tag_name" class="tsd-kind-icon">tag_<wbr/>name</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#updated_at" class="tsd-kind-icon">updated_<wbr/>at</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Properties</h2><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="counter" class="tsd-anchor"></a><h3>counter</h3><div class="tsd-signature tsd-kind-icon">counter<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Templates/Types.ts#L27">Templates/Types.ts:27</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="created_at" class="tsd-anchor"></a><h3>created_<wbr/>at</h3><div class="tsd-signature tsd-kind-icon">created_<wbr/>at<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Templates/Types.ts#L29">Templates/Types.ts:29</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="description" class="tsd-anchor"></a><h3>description</h3><div class="tsd-signature tsd-kind-icon">description<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Templates/Types.ts#L28">Templates/Types.ts:28</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="document_name" class="tsd-anchor"></a><h3>document_<wbr/>name</h3><div class="tsd-signature tsd-kind-icon">document_<wbr/>name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Templates/Types.ts#L36">Templates/Types.ts:36</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="id" class="tsd-anchor"></a><h3>id</h3><div class="tsd-signature tsd-kind-icon">id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Templates/Types.ts#L24">Templates/Types.ts:24</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="is_personal" class="tsd-anchor"></a><h3>is_<wbr/>personal</h3><div class="tsd-signature tsd-kind-icon">is_<wbr/>personal<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Templates/Types.ts#L31">Templates/Types.ts:31</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="is_public" class="tsd-anchor"></a><h3>is_<wbr/>public</h3><div class="tsd-signature tsd-kind-icon">is_<wbr/>public<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Templates/Types.ts#L32">Templates/Types.ts:32</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="is_starred" class="tsd-anchor"></a><h3>is_<wbr/>starred</h3><div class="tsd-signature tsd-kind-icon">is_<wbr/>starred<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Templates/Types.ts#L39">Templates/Types.ts:39</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="last_used_at" class="tsd-anchor"></a><h3>last_<wbr/>used_<wbr/>at</h3><div class="tsd-signature tsd-kind-icon">last_<wbr/>used_<wbr/>at<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Templates/Types.ts#L35">Templates/Types.ts:35</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="name" class="tsd-anchor"></a><h3>name</h3><div class="tsd-signature tsd-kind-icon">name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Templates/Types.ts#L25">Templates/Types.ts:25</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="organization_id" class="tsd-anchor"></a><h3>organization_<wbr/>id</h3><div class="tsd-signature tsd-kind-icon">organization_<wbr/>id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Templates/Types.ts#L34">Templates/Types.ts:34</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="profile_id" class="tsd-anchor"></a><h3>profile_<wbr/>id</h3><div class="tsd-signature tsd-kind-icon">profile_<wbr/>id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Templates/Types.ts#L33">Templates/Types.ts:33</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="sender" class="tsd-anchor"></a><h3>sender</h3><div class="tsd-signature tsd-kind-icon">sender<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Templates/Types.ts#L26">Templates/Types.ts:26</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="star_counter" class="tsd-anchor"></a><h3>star_<wbr/>counter</h3><div class="tsd-signature tsd-kind-icon">star_<wbr/>counter<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Templates/Types.ts#L37">Templates/Types.ts:37</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="tag_name" class="tsd-anchor"></a><h3>tag_<wbr/>name</h3><div class="tsd-signature tsd-kind-icon">tag_<wbr/>name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Templates/Types.ts#L38">Templates/Types.ts:38</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="updated_at" class="tsd-anchor"></a><h3>updated_<wbr/>at</h3><div class="tsd-signature tsd-kind-icon">updated_<wbr/>at<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Templates/Types.ts#L30">Templates/Types.ts:30</a></li></ul></aside></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Exports</a></li><li class=" tsd-kind-namespace"><a href="../modules/Documents.html">Documents</a></li><li class=" tsd-kind-namespace"><a href="../modules/HTTP.html">HTTP</a></li><li class=" tsd-kind-namespace"><a href="../modules/Organizations.html">Organizations</a></li><li class=" tsd-kind-namespace"><a href="../modules/Signatures.html">Signatures</a></li><li class=" tsd-kind-namespace"><a href="../modules/Tags.html">Tags</a></li><li class="current tsd-kind-namespace"><a href="../modules/Templates.html">Templates</a><ul><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Documents.html">Documents</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Fields.html">Fields</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Pages.html">Pages</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Reminders.html">Reminders</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Roles.html">Roles</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Stars.html">Stars</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Tags.html">Tags</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Templates-1.html">Templates</a></li><li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Types.html">Types</a></li></ul></li><li class=" tsd-kind-namespace"><a href="../modules/Users.html">Users</a></li><li class=" tsd-kind-namespace"><a href="../modules/Utils.html">Utils</a></li><li class=" tsd-kind-namespace"><a href="../modules/Validators.html">Validators</a></li><li class=" tsd-kind-namespace"><a href="../modules/Whitelabel.html">Whitelabel</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-interface tsd-parent-kind-namespace"><a href="Templates.Types.ITemplateSummaryEntry.html" class="tsd-kind-icon">ITemplate<wbr/>Summary<wbr/>Entry</a><ul><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#counter" class="tsd-kind-icon">counter</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#created_at" class="tsd-kind-icon">created_<wbr/>at</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#description" class="tsd-kind-icon">description</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#document_name" class="tsd-kind-icon">document_<wbr/>name</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#id" class="tsd-kind-icon">id</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#is_personal" class="tsd-kind-icon">is_<wbr/>personal</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#is_public" class="tsd-kind-icon">is_<wbr/>public</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#is_starred" class="tsd-kind-icon">is_<wbr/>starred</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#last_used_at" class="tsd-kind-icon">last_<wbr/>used_<wbr/>at</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#name" class="tsd-kind-icon">name</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#organization_id" class="tsd-kind-icon">organization_<wbr/>id</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#profile_id" class="tsd-kind-icon">profile_<wbr/>id</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#sender" class="tsd-kind-icon">sender</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#star_counter" class="tsd-kind-icon">star_<wbr/>counter</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#tag_name" class="tsd-kind-icon">tag_<wbr/>name</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplateSummaryEntry.html#updated_at" class="tsd-kind-icon">updated_<wbr/>at</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!DOCTYPE html><html class="default no-js"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><title>ITemplatesSearchResult | @verdocs/js-sdk - v1.0.12</title><meta name="description" content="Documentation for @verdocs/js-sdk - v1.0.12"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@verdocs/js-sdk - v1.0.12</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">@verdocs/js-sdk - v1.0.12</a></li><li><a href="../modules/Templates.html">Templates</a></li><li><a href="../modules/Templates.Types.html">Types</a></li><li><a href="Templates.Types.ITemplatesSearchResult.html">ITemplatesSearchResult</a></li></ul><h1>Interface ITemplatesSearchResult</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel tsd-hierarchy"><h3>Hierarchy</h3><ul class="tsd-hierarchy"><li><span class="target">ITemplatesSearchResult</span></li></ul></section><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Properties</h3><ul class="tsd-index-list"><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplatesSearchResult.html#page" class="tsd-kind-icon">page</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplatesSearchResult.html#result" class="tsd-kind-icon">result</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplatesSearchResult.html#total" class="tsd-kind-icon">total</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Properties</h2><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="page" class="tsd-anchor"></a><h3>page</h3><div class="tsd-signature tsd-kind-icon">page<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Templates/Types.ts#L118">Templates/Types.ts:118</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="result" class="tsd-anchor"></a><h3>result</h3><div class="tsd-signature tsd-kind-icon">result<span class="tsd-signature-symbol">:</span> <a href="Templates.Types.ITemplate.html" class="tsd-signature-type" data-tsd-kind="Interface">ITemplate</a><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Templates/Types.ts#L120">Templates/Types.ts:120</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="total" class="tsd-anchor"></a><h3>total</h3><div class="tsd-signature tsd-kind-icon">total<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Templates/Types.ts#L119">Templates/Types.ts:119</a></li></ul></aside></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Exports</a></li><li class=" tsd-kind-namespace"><a href="../modules/Documents.html">Documents</a></li><li class=" tsd-kind-namespace"><a href="../modules/HTTP.html">HTTP</a></li><li class=" tsd-kind-namespace"><a href="../modules/Organizations.html">Organizations</a></li><li class=" tsd-kind-namespace"><a href="../modules/Signatures.html">Signatures</a></li><li class=" tsd-kind-namespace"><a href="../modules/Tags.html">Tags</a></li><li class="current tsd-kind-namespace"><a href="../modules/Templates.html">Templates</a><ul><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Documents.html">Documents</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Fields.html">Fields</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Pages.html">Pages</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Reminders.html">Reminders</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Roles.html">Roles</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Stars.html">Stars</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Tags.html">Tags</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Templates-1.html">Templates</a></li><li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Types.html">Types</a></li></ul></li><li class=" tsd-kind-namespace"><a href="../modules/Users.html">Users</a></li><li class=" tsd-kind-namespace"><a href="../modules/Utils.html">Utils</a></li><li class=" tsd-kind-namespace"><a href="../modules/Validators.html">Validators</a></li><li class=" tsd-kind-namespace"><a href="../modules/Whitelabel.html">Whitelabel</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-interface tsd-parent-kind-namespace"><a href="Templates.Types.ITemplatesSearchResult.html" class="tsd-kind-icon">ITemplates<wbr/>Search<wbr/>Result</a><ul><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplatesSearchResult.html#page" class="tsd-kind-icon">page</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplatesSearchResult.html#result" class="tsd-kind-icon">result</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplatesSearchResult.html#total" class="tsd-kind-icon">total</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!DOCTYPE html><html class="default no-js"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><title>ITemplatesSummary | @verdocs/js-sdk - v1.0.12</title><meta name="description" content="Documentation for @verdocs/js-sdk - v1.0.12"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@verdocs/js-sdk - v1.0.12</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">@verdocs/js-sdk - v1.0.12</a></li><li><a href="../modules/Templates.html">Templates</a></li><li><a href="../modules/Templates.Types.html">Types</a></li><li><a href="Templates.Types.ITemplatesSummary.html">ITemplatesSummary</a></li></ul><h1>Interface ITemplatesSummary</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel tsd-hierarchy"><h3>Hierarchy</h3><ul class="tsd-hierarchy"><li><span class="target">ITemplatesSummary</span></li></ul></section><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Properties</h3><ul class="tsd-index-list"><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplatesSummary.html#page" class="tsd-kind-icon">page</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplatesSummary.html#result" class="tsd-kind-icon">result</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplatesSummary.html#total" class="tsd-kind-icon">total</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Properties</h2><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="page" class="tsd-anchor"></a><h3>page</h3><div class="tsd-signature tsd-kind-icon">page<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Templates/Types.ts#L112">Templates/Types.ts:112</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="result" class="tsd-anchor"></a><h3>result</h3><div class="tsd-signature tsd-kind-icon">result<span class="tsd-signature-symbol">:</span> <a href="Templates.Types.ITemplateSummaryEntry.html" class="tsd-signature-type" data-tsd-kind="Interface">ITemplateSummaryEntry</a><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Templates/Types.ts#L114">Templates/Types.ts:114</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="total" class="tsd-anchor"></a><h3>total</h3><div class="tsd-signature tsd-kind-icon">total<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Templates/Types.ts#L113">Templates/Types.ts:113</a></li></ul></aside></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Exports</a></li><li class=" tsd-kind-namespace"><a href="../modules/Documents.html">Documents</a></li><li class=" tsd-kind-namespace"><a href="../modules/HTTP.html">HTTP</a></li><li class=" tsd-kind-namespace"><a href="../modules/Organizations.html">Organizations</a></li><li class=" tsd-kind-namespace"><a href="../modules/Signatures.html">Signatures</a></li><li class=" tsd-kind-namespace"><a href="../modules/Tags.html">Tags</a></li><li class="current tsd-kind-namespace"><a href="../modules/Templates.html">Templates</a><ul><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Documents.html">Documents</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Fields.html">Fields</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Pages.html">Pages</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Reminders.html">Reminders</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Roles.html">Roles</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Stars.html">Stars</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Tags.html">Tags</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Templates-1.html">Templates</a></li><li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Types.html">Types</a></li></ul></li><li class=" tsd-kind-namespace"><a href="../modules/Users.html">Users</a></li><li class=" tsd-kind-namespace"><a href="../modules/Utils.html">Utils</a></li><li class=" tsd-kind-namespace"><a href="../modules/Validators.html">Validators</a></li><li class=" tsd-kind-namespace"><a href="../modules/Whitelabel.html">Whitelabel</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-interface tsd-parent-kind-namespace"><a href="Templates.Types.ITemplatesSummary.html" class="tsd-kind-icon">ITemplates<wbr/>Summary</a><ul><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplatesSummary.html#page" class="tsd-kind-icon">page</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplatesSummary.html#result" class="tsd-kind-icon">result</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITemplatesSummary.html#total" class="tsd-kind-icon">total</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!DOCTYPE html><html class="default no-js"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><title>ITimePeriod | @verdocs/js-sdk - v1.0.12</title><meta name="description" content="Documentation for @verdocs/js-sdk - v1.0.12"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@verdocs/js-sdk - v1.0.12</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">@verdocs/js-sdk - v1.0.12</a></li><li><a href="../modules/Templates.html">Templates</a></li><li><a href="../modules/Templates.Types.html">Types</a></li><li><a href="Templates.Types.ITimePeriod.html">ITimePeriod</a></li></ul><h1>Interface ITimePeriod</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel tsd-hierarchy"><h3>Hierarchy</h3><ul class="tsd-hierarchy"><li><span class="target">ITimePeriod</span></li></ul></section><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Properties</h3><ul class="tsd-index-list"><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITimePeriod.html#end_time" class="tsd-kind-icon">end_<wbr/>time</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITimePeriod.html#start_time" class="tsd-kind-icon">start_<wbr/>time</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Properties</h2><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="end_time" class="tsd-anchor"></a><h3>end_<wbr/>time</h3><div class="tsd-signature tsd-kind-icon">end_<wbr/>time<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Templates/Types.ts#L99">Templates/Types.ts:99</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="start_time" class="tsd-anchor"></a><h3>start_<wbr/>time</h3><div class="tsd-signature tsd-kind-icon">start_<wbr/>time<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Templates/Types.ts#L98">Templates/Types.ts:98</a></li></ul></aside></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Exports</a></li><li class=" tsd-kind-namespace"><a href="../modules/Documents.html">Documents</a></li><li class=" tsd-kind-namespace"><a href="../modules/HTTP.html">HTTP</a></li><li class=" tsd-kind-namespace"><a href="../modules/Organizations.html">Organizations</a></li><li class=" tsd-kind-namespace"><a href="../modules/Signatures.html">Signatures</a></li><li class=" tsd-kind-namespace"><a href="../modules/Tags.html">Tags</a></li><li class="current tsd-kind-namespace"><a href="../modules/Templates.html">Templates</a><ul><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Documents.html">Documents</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Fields.html">Fields</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Pages.html">Pages</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Reminders.html">Reminders</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Roles.html">Roles</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Stars.html">Stars</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Tags.html">Tags</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Templates-1.html">Templates</a></li><li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Templates.Types.html">Types</a></li></ul></li><li class=" tsd-kind-namespace"><a href="../modules/Users.html">Users</a></li><li class=" tsd-kind-namespace"><a href="../modules/Utils.html">Utils</a></li><li class=" tsd-kind-namespace"><a href="../modules/Validators.html">Validators</a></li><li class=" tsd-kind-namespace"><a href="../modules/Whitelabel.html">Whitelabel</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-interface tsd-parent-kind-namespace"><a href="Templates.Types.ITimePeriod.html" class="tsd-kind-icon">ITime<wbr/>Period</a><ul><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITimePeriod.html#end_time" class="tsd-kind-icon">end_<wbr/>time</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Templates.Types.ITimePeriod.html#start_time" class="tsd-kind-icon">start_<wbr/>time</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!DOCTYPE html><html class="default no-js"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><title>IActiveSession | @verdocs/js-sdk - v1.0.12</title><meta name="description" content="Documentation for @verdocs/js-sdk - v1.0.12"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@verdocs/js-sdk - v1.0.12</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">@verdocs/js-sdk - v1.0.12</a></li><li><a href="../modules/Users.html">Users</a></li><li><a href="../modules/Users.Types.html">Types</a></li><li><a href="Users.Types.IActiveSession.html">IActiveSession</a></li></ul><h1>Interface IActiveSession</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel tsd-hierarchy"><h3>Hierarchy</h3><ul class="tsd-hierarchy"><li><span class="target">IActiveSession</span></li></ul></section><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Properties</h3><ul class="tsd-index-list"><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IActiveSession.html#email" class="tsd-kind-icon">email</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IActiveSession.html#email_verified" class="tsd-kind-icon">email_<wbr/>verified</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IActiveSession.html#exp" class="tsd-kind-icon">exp</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IActiveSession.html#iat" class="tsd-kind-icon">iat</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IActiveSession.html#organization_id" class="tsd-kind-icon">organization_<wbr/>id</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IActiveSession.html#permissions" class="tsd-kind-icon">permissions</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IActiveSession.html#plans" class="tsd-kind-icon">plans</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IActiveSession.html#profile" class="tsd-kind-icon">profile</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IActiveSession.html#profile_id" class="tsd-kind-icon">profile_<wbr/>id</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IActiveSession.html#roles" class="tsd-kind-icon">roles</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IActiveSession.html#sub" class="tsd-kind-icon">sub</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Properties</h2><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="email" class="tsd-anchor"></a><h3>email</h3><div class="tsd-signature tsd-kind-icon">email<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L65">Users/Types.ts:65</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="email_verified" class="tsd-anchor"></a><h3>email_<wbr/>verified</h3><div class="tsd-signature tsd-kind-icon">email_<wbr/>verified<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L66">Users/Types.ts:66</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="exp" class="tsd-anchor"></a><h3>exp</h3><div class="tsd-signature tsd-kind-icon">exp<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L68">Users/Types.ts:68</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="iat" class="tsd-anchor"></a><h3>iat</h3><div class="tsd-signature tsd-kind-icon">iat<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L67">Users/Types.ts:67</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="organization_id" class="tsd-anchor"></a><h3>organization_<wbr/>id</h3><div class="tsd-signature tsd-kind-icon">organization_<wbr/>id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L73">Users/Types.ts:73</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="permissions" class="tsd-anchor"></a><h3>permissions</h3><div class="tsd-signature tsd-kind-icon">permissions<span class="tsd-signature-symbol">:</span> <a href="Users.Types.IPermission.html" class="tsd-signature-type" data-tsd-kind="Interface">IPermission</a><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L69">Users/Types.ts:69</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="plans" class="tsd-anchor"></a><h3><span class="tsd-flag ts-flagOptional">Optional</span> plans</h3><div class="tsd-signature tsd-kind-icon">plans<span class="tsd-signature-symbol">?:</span> <a href="../modules/Users.Types.html#TPlan" class="tsd-signature-type" data-tsd-kind="Type alias">TPlan</a><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L74">Users/Types.ts:74</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="profile" class="tsd-anchor"></a><h3>profile</h3><div class="tsd-signature tsd-kind-icon">profile<span class="tsd-signature-symbol">:</span> <a href="Users.Types.IProfile.html" class="tsd-signature-type" data-tsd-kind="Interface">IProfile</a></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L71">Users/Types.ts:71</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="profile_id" class="tsd-anchor"></a><h3>profile_<wbr/>id</h3><div class="tsd-signature tsd-kind-icon">profile_<wbr/>id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L72">Users/Types.ts:72</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="roles" class="tsd-anchor"></a><h3>roles</h3><div class="tsd-signature tsd-kind-icon">roles<span class="tsd-signature-symbol">:</span> <a href="Users.Types.IRole.html" class="tsd-signature-type" data-tsd-kind="Interface">IRole</a><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L70">Users/Types.ts:70</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="sub" class="tsd-anchor"></a><h3>sub</h3><div class="tsd-signature tsd-kind-icon">sub<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L64">Users/Types.ts:64</a></li></ul></aside></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Exports</a></li><li class=" tsd-kind-namespace"><a href="../modules/Documents.html">Documents</a></li><li class=" tsd-kind-namespace"><a href="../modules/HTTP.html">HTTP</a></li><li class=" tsd-kind-namespace"><a href="../modules/Organizations.html">Organizations</a></li><li class=" tsd-kind-namespace"><a href="../modules/Signatures.html">Signatures</a></li><li class=" tsd-kind-namespace"><a href="../modules/Tags.html">Tags</a></li><li class=" tsd-kind-namespace"><a href="../modules/Templates.html">Templates</a></li><li class="current tsd-kind-namespace"><a href="../modules/Users.html">Users</a><ul><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Auth.html">Auth</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Billing.html">Billing</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Notifications.html">Notifications</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Profiles.html">Profiles</a></li><li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Types.html">Types</a></li></ul></li><li class=" tsd-kind-namespace"><a href="../modules/Utils.html">Utils</a></li><li class=" tsd-kind-namespace"><a href="../modules/Validators.html">Validators</a></li><li class=" tsd-kind-namespace"><a href="../modules/Whitelabel.html">Whitelabel</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-interface tsd-parent-kind-namespace"><a href="Users.Types.IActiveSession.html" class="tsd-kind-icon">IActive<wbr/>Session</a><ul><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IActiveSession.html#email" class="tsd-kind-icon">email</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IActiveSession.html#email_verified" class="tsd-kind-icon">email_<wbr/>verified</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IActiveSession.html#exp" class="tsd-kind-icon">exp</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IActiveSession.html#iat" class="tsd-kind-icon">iat</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IActiveSession.html#organization_id" class="tsd-kind-icon">organization_<wbr/>id</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IActiveSession.html#permissions" class="tsd-kind-icon">permissions</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IActiveSession.html#plans" class="tsd-kind-icon">plans</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IActiveSession.html#profile" class="tsd-kind-icon">profile</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IActiveSession.html#profile_id" class="tsd-kind-icon">profile_<wbr/>id</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IActiveSession.html#roles" class="tsd-kind-icon">roles</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IActiveSession.html#sub" class="tsd-kind-icon">sub</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!DOCTYPE html><html class="default no-js"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><title>IAuthenticateAppRequest | @verdocs/js-sdk - v1.0.12</title><meta name="description" content="Documentation for @verdocs/js-sdk - v1.0.12"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@verdocs/js-sdk - v1.0.12</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">@verdocs/js-sdk - v1.0.12</a></li><li><a href="../modules/Users.html">Users</a></li><li><a href="../modules/Users.Types.html">Types</a></li><li><a href="Users.Types.IAuthenticateAppRequest.html">IAuthenticateAppRequest</a></li></ul><h1>Interface IAuthenticateAppRequest</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel tsd-hierarchy"><h3>Hierarchy</h3><ul class="tsd-hierarchy"><li><span class="target">IAuthenticateAppRequest</span></li></ul></section><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Properties</h3><ul class="tsd-index-list"><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IAuthenticateAppRequest.html#client_id" class="tsd-kind-icon">client_<wbr/>id</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IAuthenticateAppRequest.html#client_secret" class="tsd-kind-icon">client_<wbr/>secret</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Properties</h2><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="client_id" class="tsd-anchor"></a><h3>client_<wbr/>id</h3><div class="tsd-signature tsd-kind-icon">client_<wbr/>id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L117">Users/Types.ts:117</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="client_secret" class="tsd-anchor"></a><h3>client_<wbr/>secret</h3><div class="tsd-signature tsd-kind-icon">client_<wbr/>secret<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L118">Users/Types.ts:118</a></li></ul></aside></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Exports</a></li><li class=" tsd-kind-namespace"><a href="../modules/Documents.html">Documents</a></li><li class=" tsd-kind-namespace"><a href="../modules/HTTP.html">HTTP</a></li><li class=" tsd-kind-namespace"><a href="../modules/Organizations.html">Organizations</a></li><li class=" tsd-kind-namespace"><a href="../modules/Signatures.html">Signatures</a></li><li class=" tsd-kind-namespace"><a href="../modules/Tags.html">Tags</a></li><li class=" tsd-kind-namespace"><a href="../modules/Templates.html">Templates</a></li><li class="current tsd-kind-namespace"><a href="../modules/Users.html">Users</a><ul><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Auth.html">Auth</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Billing.html">Billing</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Notifications.html">Notifications</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Profiles.html">Profiles</a></li><li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Types.html">Types</a></li></ul></li><li class=" tsd-kind-namespace"><a href="../modules/Utils.html">Utils</a></li><li class=" tsd-kind-namespace"><a href="../modules/Validators.html">Validators</a></li><li class=" tsd-kind-namespace"><a href="../modules/Whitelabel.html">Whitelabel</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-interface tsd-parent-kind-namespace"><a href="Users.Types.IAuthenticateAppRequest.html" class="tsd-kind-icon">IAuthenticate<wbr/>App<wbr/>Request</a><ul><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IAuthenticateAppRequest.html#client_id" class="tsd-kind-icon">client_<wbr/>id</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IAuthenticateAppRequest.html#client_secret" class="tsd-kind-icon">client_<wbr/>secret</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!DOCTYPE html><html class="default no-js"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><title>IAuthenticateResponse | @verdocs/js-sdk - v1.0.12</title><meta name="description" content="Documentation for @verdocs/js-sdk - v1.0.12"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@verdocs/js-sdk - v1.0.12</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">@verdocs/js-sdk - v1.0.12</a></li><li><a href="../modules/Users.html">Users</a></li><li><a href="../modules/Users.Types.html">Types</a></li><li><a href="Users.Types.IAuthenticateResponse.html">IAuthenticateResponse</a></li></ul><h1>Interface IAuthenticateResponse</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel tsd-hierarchy"><h3>Hierarchy</h3><ul class="tsd-hierarchy"><li><span class="target">IAuthenticateResponse</span></li></ul></section><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Properties</h3><ul class="tsd-index-list"><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IAuthenticateResponse.html#accessToken" class="tsd-kind-icon">access<wbr/>Token</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IAuthenticateResponse.html#idToken" class="tsd-kind-icon">id<wbr/>Token</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IAuthenticateResponse.html#refreshToken" class="tsd-kind-icon">refresh<wbr/>Token</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Properties</h2><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="accessToken" class="tsd-anchor"></a><h3>access<wbr/>Token</h3><div class="tsd-signature tsd-kind-icon">access<wbr/>Token<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L123">Users/Types.ts:123</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="idToken" class="tsd-anchor"></a><h3>id<wbr/>Token</h3><div class="tsd-signature tsd-kind-icon">id<wbr/>Token<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L122">Users/Types.ts:122</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="refreshToken" class="tsd-anchor"></a><h3>refresh<wbr/>Token</h3><div class="tsd-signature tsd-kind-icon">refresh<wbr/>Token<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L124">Users/Types.ts:124</a></li></ul></aside></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Exports</a></li><li class=" tsd-kind-namespace"><a href="../modules/Documents.html">Documents</a></li><li class=" tsd-kind-namespace"><a href="../modules/HTTP.html">HTTP</a></li><li class=" tsd-kind-namespace"><a href="../modules/Organizations.html">Organizations</a></li><li class=" tsd-kind-namespace"><a href="../modules/Signatures.html">Signatures</a></li><li class=" tsd-kind-namespace"><a href="../modules/Tags.html">Tags</a></li><li class=" tsd-kind-namespace"><a href="../modules/Templates.html">Templates</a></li><li class="current tsd-kind-namespace"><a href="../modules/Users.html">Users</a><ul><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Auth.html">Auth</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Billing.html">Billing</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Notifications.html">Notifications</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Profiles.html">Profiles</a></li><li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Types.html">Types</a></li></ul></li><li class=" tsd-kind-namespace"><a href="../modules/Utils.html">Utils</a></li><li class=" tsd-kind-namespace"><a href="../modules/Validators.html">Validators</a></li><li class=" tsd-kind-namespace"><a href="../modules/Whitelabel.html">Whitelabel</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-interface tsd-parent-kind-namespace"><a href="Users.Types.IAuthenticateResponse.html" class="tsd-kind-icon">IAuthenticate<wbr/>Response</a><ul><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IAuthenticateResponse.html#accessToken" class="tsd-kind-icon">access<wbr/>Token</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IAuthenticateResponse.html#idToken" class="tsd-kind-icon">id<wbr/>Token</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IAuthenticateResponse.html#refreshToken" class="tsd-kind-icon">refresh<wbr/>Token</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!DOCTYPE html><html class="default no-js"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><title>IAuthenticateUserRequest | @verdocs/js-sdk - v1.0.12</title><meta name="description" content="Documentation for @verdocs/js-sdk - v1.0.12"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@verdocs/js-sdk - v1.0.12</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">@verdocs/js-sdk - v1.0.12</a></li><li><a href="../modules/Users.html">Users</a></li><li><a href="../modules/Users.Types.html">Types</a></li><li><a href="Users.Types.IAuthenticateUserRequest.html">IAuthenticateUserRequest</a></li></ul><h1>Interface IAuthenticateUserRequest</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel tsd-hierarchy"><h3>Hierarchy</h3><ul class="tsd-hierarchy"><li><span class="target">IAuthenticateUserRequest</span></li></ul></section><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Properties</h3><ul class="tsd-index-list"><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IAuthenticateUserRequest.html#password" class="tsd-kind-icon">password</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IAuthenticateUserRequest.html#username" class="tsd-kind-icon">username</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Properties</h2><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="password" class="tsd-anchor"></a><h3>password</h3><div class="tsd-signature tsd-kind-icon">password<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L113">Users/Types.ts:113</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="username" class="tsd-anchor"></a><h3>username</h3><div class="tsd-signature tsd-kind-icon">username<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L112">Users/Types.ts:112</a></li></ul></aside></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Exports</a></li><li class=" tsd-kind-namespace"><a href="../modules/Documents.html">Documents</a></li><li class=" tsd-kind-namespace"><a href="../modules/HTTP.html">HTTP</a></li><li class=" tsd-kind-namespace"><a href="../modules/Organizations.html">Organizations</a></li><li class=" tsd-kind-namespace"><a href="../modules/Signatures.html">Signatures</a></li><li class=" tsd-kind-namespace"><a href="../modules/Tags.html">Tags</a></li><li class=" tsd-kind-namespace"><a href="../modules/Templates.html">Templates</a></li><li class="current tsd-kind-namespace"><a href="../modules/Users.html">Users</a><ul><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Auth.html">Auth</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Billing.html">Billing</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Notifications.html">Notifications</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Profiles.html">Profiles</a></li><li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Types.html">Types</a></li></ul></li><li class=" tsd-kind-namespace"><a href="../modules/Utils.html">Utils</a></li><li class=" tsd-kind-namespace"><a href="../modules/Validators.html">Validators</a></li><li class=" tsd-kind-namespace"><a href="../modules/Whitelabel.html">Whitelabel</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-interface tsd-parent-kind-namespace"><a href="Users.Types.IAuthenticateUserRequest.html" class="tsd-kind-icon">IAuthenticate<wbr/>User<wbr/>Request</a><ul><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IAuthenticateUserRequest.html#password" class="tsd-kind-icon">password</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IAuthenticateUserRequest.html#username" class="tsd-kind-icon">username</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!DOCTYPE html><html class="default no-js"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><title>ICreateProfileRequest | @verdocs/js-sdk - v1.0.12</title><meta name="description" content="Documentation for @verdocs/js-sdk - v1.0.12"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@verdocs/js-sdk - v1.0.12</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">@verdocs/js-sdk - v1.0.12</a></li><li><a href="../modules/Users.html">Users</a></li><li><a href="../modules/Users.Types.html">Types</a></li><li><a href="Users.Types.ICreateProfileRequest.html">ICreateProfileRequest</a></li></ul><h1>Interface ICreateProfileRequest</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel tsd-hierarchy"><h3>Hierarchy</h3><ul class="tsd-hierarchy"><li><span class="target">ICreateProfileRequest</span></li></ul></section><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Properties</h3><ul class="tsd-index-list"><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.ICreateProfileRequest.html#email" class="tsd-kind-icon">email</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.ICreateProfileRequest.html#first_name" class="tsd-kind-icon">first_<wbr/>name</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.ICreateProfileRequest.html#last_name" class="tsd-kind-icon">last_<wbr/>name</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.ICreateProfileRequest.html#phone" class="tsd-kind-icon">phone</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Properties</h2><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="email" class="tsd-anchor"></a><h3>email</h3><div class="tsd-signature tsd-kind-icon">email<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L94">Users/Types.ts:94</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="first_name" class="tsd-anchor"></a><h3>first_<wbr/>name</h3><div class="tsd-signature tsd-kind-icon">first_<wbr/>name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L92">Users/Types.ts:92</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="last_name" class="tsd-anchor"></a><h3>last_<wbr/>name</h3><div class="tsd-signature tsd-kind-icon">last_<wbr/>name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L93">Users/Types.ts:93</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="phone" class="tsd-anchor"></a><h3><span class="tsd-flag ts-flagOptional">Optional</span> phone</h3><div class="tsd-signature tsd-kind-icon">phone<span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L95">Users/Types.ts:95</a></li></ul></aside></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Exports</a></li><li class=" tsd-kind-namespace"><a href="../modules/Documents.html">Documents</a></li><li class=" tsd-kind-namespace"><a href="../modules/HTTP.html">HTTP</a></li><li class=" tsd-kind-namespace"><a href="../modules/Organizations.html">Organizations</a></li><li class=" tsd-kind-namespace"><a href="../modules/Signatures.html">Signatures</a></li><li class=" tsd-kind-namespace"><a href="../modules/Tags.html">Tags</a></li><li class=" tsd-kind-namespace"><a href="../modules/Templates.html">Templates</a></li><li class="current tsd-kind-namespace"><a href="../modules/Users.html">Users</a><ul><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Auth.html">Auth</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Billing.html">Billing</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Notifications.html">Notifications</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Profiles.html">Profiles</a></li><li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Types.html">Types</a></li></ul></li><li class=" tsd-kind-namespace"><a href="../modules/Utils.html">Utils</a></li><li class=" tsd-kind-namespace"><a href="../modules/Validators.html">Validators</a></li><li class=" tsd-kind-namespace"><a href="../modules/Whitelabel.html">Whitelabel</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-interface tsd-parent-kind-namespace"><a href="Users.Types.ICreateProfileRequest.html" class="tsd-kind-icon">ICreate<wbr/>Profile<wbr/>Request</a><ul><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.ICreateProfileRequest.html#email" class="tsd-kind-icon">email</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.ICreateProfileRequest.html#first_name" class="tsd-kind-icon">first_<wbr/>name</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.ICreateProfileRequest.html#last_name" class="tsd-kind-icon">last_<wbr/>name</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.ICreateProfileRequest.html#phone" class="tsd-kind-icon">phone</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<!DOCTYPE html><html class="default no-js"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><title>IPermission | @verdocs/js-sdk - v1.0.12</title><meta name="description" content="Documentation for @verdocs/js-sdk - v1.0.12"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@verdocs/js-sdk - v1.0.12</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">@verdocs/js-sdk - v1.0.12</a></li><li><a href="../modules/Users.html">Users</a></li><li><a href="../modules/Users.Types.html">Types</a></li><li><a href="Users.Types.IPermission.html">IPermission</a></li></ul><h1>Interface IPermission</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel tsd-hierarchy"><h3>Hierarchy</h3><ul class="tsd-hierarchy"><li><span class="target">IPermission</span></li></ul></section><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Properties</h3><ul class="tsd-index-list"><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IPermission.html#id" class="tsd-kind-icon">id</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IPermission.html#name" class="tsd-kind-icon">name</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Properties</h2><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="id" class="tsd-anchor"></a><h3>id</h3><div class="tsd-signature tsd-kind-icon">id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L86">Users/Types.ts:86</a></li></ul></aside><div class="tsd-comment tsd-typography"><div class="lead">
|
|
2
|
+
<p>Unique identifier for the permission.</p>
|
|
3
|
+
</div></div></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="name" class="tsd-anchor"></a><h3>name</h3><div class="tsd-signature tsd-kind-icon">name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L88">Users/Types.ts:88</a></li></ul></aside><div class="tsd-comment tsd-typography"><div class="lead">
|
|
4
|
+
<p>Display name for the permission.</p>
|
|
5
|
+
</div></div></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Exports</a></li><li class=" tsd-kind-namespace"><a href="../modules/Documents.html">Documents</a></li><li class=" tsd-kind-namespace"><a href="../modules/HTTP.html">HTTP</a></li><li class=" tsd-kind-namespace"><a href="../modules/Organizations.html">Organizations</a></li><li class=" tsd-kind-namespace"><a href="../modules/Signatures.html">Signatures</a></li><li class=" tsd-kind-namespace"><a href="../modules/Tags.html">Tags</a></li><li class=" tsd-kind-namespace"><a href="../modules/Templates.html">Templates</a></li><li class="current tsd-kind-namespace"><a href="../modules/Users.html">Users</a><ul><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Auth.html">Auth</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Billing.html">Billing</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Notifications.html">Notifications</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Profiles.html">Profiles</a></li><li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Types.html">Types</a></li></ul></li><li class=" tsd-kind-namespace"><a href="../modules/Utils.html">Utils</a></li><li class=" tsd-kind-namespace"><a href="../modules/Validators.html">Validators</a></li><li class=" tsd-kind-namespace"><a href="../modules/Whitelabel.html">Whitelabel</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-interface tsd-parent-kind-namespace"><a href="Users.Types.IPermission.html" class="tsd-kind-icon">IPermission</a><ul><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IPermission.html#id" class="tsd-kind-icon">id</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IPermission.html#name" class="tsd-kind-icon">name</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<!DOCTYPE html><html class="default no-js"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><title>IProfile | @verdocs/js-sdk - v1.0.12</title><meta name="description" content="Documentation for @verdocs/js-sdk - v1.0.12"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@verdocs/js-sdk - v1.0.12</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">@verdocs/js-sdk - v1.0.12</a></li><li><a href="../modules/Users.html">Users</a></li><li><a href="../modules/Users.Types.html">Types</a></li><li><a href="Users.Types.IProfile.html">IProfile</a></li></ul><h1>Interface IProfile</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel tsd-hierarchy"><h3>Hierarchy</h3><ul class="tsd-hierarchy"><li><span class="target">IProfile</span></li></ul></section><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Properties</h3><ul class="tsd-index-list"><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IProfile.html#current" class="tsd-kind-icon">current</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IProfile.html#email" class="tsd-kind-icon">email</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IProfile.html#first_name" class="tsd-kind-icon">first_<wbr/>name</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IProfile.html#groups" class="tsd-kind-icon">groups</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IProfile.html#id" class="tsd-kind-icon">id</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IProfile.html#last_name" class="tsd-kind-icon">last_<wbr/>name</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IProfile.html#organization" class="tsd-kind-icon">organization</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IProfile.html#organization_id" class="tsd-kind-icon">organization_<wbr/>id</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IProfile.html#permissions" class="tsd-kind-icon">permissions</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IProfile.html#phone" class="tsd-kind-icon">phone</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IProfile.html#plans" class="tsd-kind-icon">plans</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IProfile.html#roles" class="tsd-kind-icon">roles</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IProfile.html#user_id" class="tsd-kind-icon">user_<wbr/>id</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Properties</h2><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="current" class="tsd-anchor"></a><h3>current</h3><div class="tsd-signature tsd-kind-icon">current<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L50">Users/Types.ts:50</a></li></ul></aside><div class="tsd-comment tsd-typography"><div class="lead">
|
|
2
|
+
<p>If true, this is the caller's "currently selected" profile. All operations will performed "as" this profile.</p>
|
|
3
|
+
</div></div></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="email" class="tsd-anchor"></a><h3>email</h3><div class="tsd-signature tsd-kind-icon">email<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L47">Users/Types.ts:47</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="first_name" class="tsd-anchor"></a><h3>first_<wbr/>name</h3><div class="tsd-signature tsd-kind-icon">first_<wbr/>name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L45">Users/Types.ts:45</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="groups" class="tsd-anchor"></a><h3><span class="tsd-flag ts-flagOptional">Optional</span> groups</h3><div class="tsd-signature tsd-kind-icon">groups<span class="tsd-signature-symbol">?:</span> <a href="Organizations.Types.IGroup.html" class="tsd-signature-type" data-tsd-kind="Interface">IGroup</a><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L60">Users/Types.ts:60</a></li></ul></aside><div class="tsd-comment tsd-typography"><div class="lead">
|
|
4
|
+
<p>The plans assigned to the profilel <em>NOTE: Only present in the "current" profile.</em></p>
|
|
5
|
+
</div></div></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="id" class="tsd-anchor"></a><h3>id</h3><div class="tsd-signature tsd-kind-icon">id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L36">Users/Types.ts:36</a></li></ul></aside><div class="tsd-comment tsd-typography"><div class="lead">
|
|
6
|
+
<p>The unique ID of the profile</p>
|
|
7
|
+
</div></div></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="last_name" class="tsd-anchor"></a><h3>last_<wbr/>name</h3><div class="tsd-signature tsd-kind-icon">last_<wbr/>name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L46">Users/Types.ts:46</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="organization" class="tsd-anchor"></a><h3>organization</h3><div class="tsd-signature tsd-kind-icon">organization<span class="tsd-signature-symbol">:</span> <a href="Organizations.Types.IOrganization.html" class="tsd-signature-type" data-tsd-kind="Interface">IOrganization</a></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L52">Users/Types.ts:52</a></li></ul></aside><div class="tsd-comment tsd-typography"><div class="lead">
|
|
8
|
+
<p>The organization</p>
|
|
9
|
+
</div></div></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="organization_id" class="tsd-anchor"></a><h3>organization_<wbr/>id</h3><div class="tsd-signature tsd-kind-icon">organization_<wbr/>id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L44">Users/Types.ts:44</a></li></ul></aside><div class="tsd-comment tsd-typography"><div class="lead">
|
|
10
|
+
<p>The profile's organization ID, or a global "Realster" organization that all personal profiles are members of.</p>
|
|
11
|
+
</div></div></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="permissions" class="tsd-anchor"></a><h3><span class="tsd-flag ts-flagOptional">Optional</span> permissions</h3><div class="tsd-signature tsd-kind-icon">permissions<span class="tsd-signature-symbol">?:</span> <a href="../modules/Users.Types.html#TPermission" class="tsd-signature-type" data-tsd-kind="Type alias">TPermission</a><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L54">Users/Types.ts:54</a></li></ul></aside><div class="tsd-comment tsd-typography"><div class="lead">
|
|
12
|
+
<p>The permissions assigned to the profilel <em>NOTE: Only present in the "current" profile.</em></p>
|
|
13
|
+
</div></div></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="phone" class="tsd-anchor"></a><h3>phone</h3><div class="tsd-signature tsd-kind-icon">phone<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L48">Users/Types.ts:48</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="plans" class="tsd-anchor"></a><h3><span class="tsd-flag ts-flagOptional">Optional</span> plans</h3><div class="tsd-signature tsd-kind-icon">plans<span class="tsd-signature-symbol">?:</span> <a href="../modules/Users.Types.html#TPlan" class="tsd-signature-type" data-tsd-kind="Type alias">TPlan</a><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L58">Users/Types.ts:58</a></li></ul></aside><div class="tsd-comment tsd-typography"><div class="lead">
|
|
14
|
+
<p>The plans assigned to the profilel <em>NOTE: Only present in the "current" profile.</em></p>
|
|
15
|
+
</div></div></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="roles" class="tsd-anchor"></a><h3><span class="tsd-flag ts-flagOptional">Optional</span> roles</h3><div class="tsd-signature tsd-kind-icon">roles<span class="tsd-signature-symbol">?:</span> <a href="../modules/Users.Types.html#TRole" class="tsd-signature-type" data-tsd-kind="Type alias">TRole</a><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L56">Users/Types.ts:56</a></li></ul></aside><div class="tsd-comment tsd-typography"><div class="lead">
|
|
16
|
+
<p>The roles assigned to the profilel <em>NOTE: Only present in the "current" profile.</em></p>
|
|
17
|
+
</div></div></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="user_id" class="tsd-anchor"></a><h3>user_<wbr/>id</h3><div class="tsd-signature tsd-kind-icon">user_<wbr/>id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L42">Users/Types.ts:42</a></li></ul></aside><div class="tsd-comment tsd-typography"><div class="lead">
|
|
18
|
+
<p>The Verdocs back-end currently uses Auth0 for authentication. This value is a unique ID assigned by Auth0 to the
|
|
19
|
+
user. This is typically used to identify multiple profiles owned by a single user, but its implementation may
|
|
20
|
+
change in the future and developers should not develop code based on this field at this time.</p>
|
|
21
|
+
</div></div></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Exports</a></li><li class=" tsd-kind-namespace"><a href="../modules/Documents.html">Documents</a></li><li class=" tsd-kind-namespace"><a href="../modules/HTTP.html">HTTP</a></li><li class=" tsd-kind-namespace"><a href="../modules/Organizations.html">Organizations</a></li><li class=" tsd-kind-namespace"><a href="../modules/Signatures.html">Signatures</a></li><li class=" tsd-kind-namespace"><a href="../modules/Tags.html">Tags</a></li><li class=" tsd-kind-namespace"><a href="../modules/Templates.html">Templates</a></li><li class="current tsd-kind-namespace"><a href="../modules/Users.html">Users</a><ul><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Auth.html">Auth</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Billing.html">Billing</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Notifications.html">Notifications</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Profiles.html">Profiles</a></li><li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Types.html">Types</a></li></ul></li><li class=" tsd-kind-namespace"><a href="../modules/Utils.html">Utils</a></li><li class=" tsd-kind-namespace"><a href="../modules/Validators.html">Validators</a></li><li class=" tsd-kind-namespace"><a href="../modules/Whitelabel.html">Whitelabel</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-interface tsd-parent-kind-namespace"><a href="Users.Types.IProfile.html" class="tsd-kind-icon">IProfile</a><ul><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IProfile.html#current" class="tsd-kind-icon">current</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IProfile.html#email" class="tsd-kind-icon">email</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IProfile.html#first_name" class="tsd-kind-icon">first_<wbr/>name</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IProfile.html#groups" class="tsd-kind-icon">groups</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IProfile.html#id" class="tsd-kind-icon">id</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IProfile.html#last_name" class="tsd-kind-icon">last_<wbr/>name</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IProfile.html#organization" class="tsd-kind-icon">organization</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IProfile.html#organization_id" class="tsd-kind-icon">organization_<wbr/>id</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IProfile.html#permissions" class="tsd-kind-icon">permissions</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IProfile.html#phone" class="tsd-kind-icon">phone</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IProfile.html#plans" class="tsd-kind-icon">plans</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IProfile.html#roles" class="tsd-kind-icon">roles</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IProfile.html#user_id" class="tsd-kind-icon">user_<wbr/>id</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<!DOCTYPE html><html class="default no-js"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><title>IRole | @verdocs/js-sdk - v1.0.12</title><meta name="description" content="Documentation for @verdocs/js-sdk - v1.0.12"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@verdocs/js-sdk - v1.0.12</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">@verdocs/js-sdk - v1.0.12</a></li><li><a href="../modules/Users.html">Users</a></li><li><a href="../modules/Users.Types.html">Types</a></li><li><a href="Users.Types.IRole.html">IRole</a></li></ul><h1>Interface IRole</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel tsd-hierarchy"><h3>Hierarchy</h3><ul class="tsd-hierarchy"><li><span class="target">IRole</span></li></ul></section><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Properties</h3><ul class="tsd-index-list"><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IRole.html#id" class="tsd-kind-icon">id</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IRole.html#name" class="tsd-kind-icon">name</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Properties</h2><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="id" class="tsd-anchor"></a><h3>id</h3><div class="tsd-signature tsd-kind-icon">id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L79">Users/Types.ts:79</a></li></ul></aside><div class="tsd-comment tsd-typography"><div class="lead">
|
|
2
|
+
<p>Unique identifier for the role.</p>
|
|
3
|
+
</div></div></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="name" class="tsd-anchor"></a><h3>name</h3><div class="tsd-signature tsd-kind-icon">name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L81">Users/Types.ts:81</a></li></ul></aside><div class="tsd-comment tsd-typography"><div class="lead">
|
|
4
|
+
<p>Display name for the role.</p>
|
|
5
|
+
</div></div></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Exports</a></li><li class=" tsd-kind-namespace"><a href="../modules/Documents.html">Documents</a></li><li class=" tsd-kind-namespace"><a href="../modules/HTTP.html">HTTP</a></li><li class=" tsd-kind-namespace"><a href="../modules/Organizations.html">Organizations</a></li><li class=" tsd-kind-namespace"><a href="../modules/Signatures.html">Signatures</a></li><li class=" tsd-kind-namespace"><a href="../modules/Tags.html">Tags</a></li><li class=" tsd-kind-namespace"><a href="../modules/Templates.html">Templates</a></li><li class="current tsd-kind-namespace"><a href="../modules/Users.html">Users</a><ul><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Auth.html">Auth</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Billing.html">Billing</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Notifications.html">Notifications</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Profiles.html">Profiles</a></li><li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Types.html">Types</a></li></ul></li><li class=" tsd-kind-namespace"><a href="../modules/Utils.html">Utils</a></li><li class=" tsd-kind-namespace"><a href="../modules/Validators.html">Validators</a></li><li class=" tsd-kind-namespace"><a href="../modules/Whitelabel.html">Whitelabel</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-interface tsd-parent-kind-namespace"><a href="Users.Types.IRole.html" class="tsd-kind-icon">IRole</a><ul><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IRole.html#id" class="tsd-kind-icon">id</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IRole.html#name" class="tsd-kind-icon">name</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!DOCTYPE html><html class="default no-js"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><title>ISwitchProfileResponse | @verdocs/js-sdk - v1.0.12</title><meta name="description" content="Documentation for @verdocs/js-sdk - v1.0.12"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@verdocs/js-sdk - v1.0.12</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">@verdocs/js-sdk - v1.0.12</a></li><li><a href="../modules/Users.html">Users</a></li><li><a href="../modules/Users.Types.html">Types</a></li><li><a href="Users.Types.ISwitchProfileResponse.html">ISwitchProfileResponse</a></li></ul><h1>Interface ISwitchProfileResponse</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel tsd-hierarchy"><h3>Hierarchy</h3><ul class="tsd-hierarchy"><li><span class="target">ISwitchProfileResponse</span></li></ul></section><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Properties</h3><ul class="tsd-index-list"><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.ISwitchProfileResponse.html#accessToken" class="tsd-kind-icon">access<wbr/>Token</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.ISwitchProfileResponse.html#idToken" class="tsd-kind-icon">id<wbr/>Token</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.ISwitchProfileResponse.html#profile" class="tsd-kind-icon">profile</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.ISwitchProfileResponse.html#refreshToken" class="tsd-kind-icon">refresh<wbr/>Token</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Properties</h2><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="accessToken" class="tsd-anchor"></a><h3>access<wbr/>Token</h3><div class="tsd-signature tsd-kind-icon">access<wbr/>Token<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L101">Users/Types.ts:101</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="idToken" class="tsd-anchor"></a><h3>id<wbr/>Token</h3><div class="tsd-signature tsd-kind-icon">id<wbr/>Token<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L100">Users/Types.ts:100</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="profile" class="tsd-anchor"></a><h3>profile</h3><div class="tsd-signature tsd-kind-icon">profile<span class="tsd-signature-symbol">:</span> <a href="Users.Types.IProfile.html" class="tsd-signature-type" data-tsd-kind="Interface">IProfile</a></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L99">Users/Types.ts:99</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="refreshToken" class="tsd-anchor"></a><h3>refresh<wbr/>Token</h3><div class="tsd-signature tsd-kind-icon">refresh<wbr/>Token<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L102">Users/Types.ts:102</a></li></ul></aside></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Exports</a></li><li class=" tsd-kind-namespace"><a href="../modules/Documents.html">Documents</a></li><li class=" tsd-kind-namespace"><a href="../modules/HTTP.html">HTTP</a></li><li class=" tsd-kind-namespace"><a href="../modules/Organizations.html">Organizations</a></li><li class=" tsd-kind-namespace"><a href="../modules/Signatures.html">Signatures</a></li><li class=" tsd-kind-namespace"><a href="../modules/Tags.html">Tags</a></li><li class=" tsd-kind-namespace"><a href="../modules/Templates.html">Templates</a></li><li class="current tsd-kind-namespace"><a href="../modules/Users.html">Users</a><ul><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Auth.html">Auth</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Billing.html">Billing</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Notifications.html">Notifications</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Profiles.html">Profiles</a></li><li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Types.html">Types</a></li></ul></li><li class=" tsd-kind-namespace"><a href="../modules/Utils.html">Utils</a></li><li class=" tsd-kind-namespace"><a href="../modules/Validators.html">Validators</a></li><li class=" tsd-kind-namespace"><a href="../modules/Whitelabel.html">Whitelabel</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-interface tsd-parent-kind-namespace"><a href="Users.Types.ISwitchProfileResponse.html" class="tsd-kind-icon">ISwitch<wbr/>Profile<wbr/>Response</a><ul><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.ISwitchProfileResponse.html#accessToken" class="tsd-kind-icon">access<wbr/>Token</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.ISwitchProfileResponse.html#idToken" class="tsd-kind-icon">id<wbr/>Token</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.ISwitchProfileResponse.html#profile" class="tsd-kind-icon">profile</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.ISwitchProfileResponse.html#refreshToken" class="tsd-kind-icon">refresh<wbr/>Token</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!DOCTYPE html><html class="default no-js"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><title>IUpdateProfileRequest | @verdocs/js-sdk - v1.0.12</title><meta name="description" content="Documentation for @verdocs/js-sdk - v1.0.12"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@verdocs/js-sdk - v1.0.12</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">@verdocs/js-sdk - v1.0.12</a></li><li><a href="../modules/Users.html">Users</a></li><li><a href="../modules/Users.Types.html">Types</a></li><li><a href="Users.Types.IUpdateProfileRequest.html">IUpdateProfileRequest</a></li></ul><h1>Interface IUpdateProfileRequest</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel tsd-hierarchy"><h3>Hierarchy</h3><ul class="tsd-hierarchy"><li><span class="target">IUpdateProfileRequest</span></li></ul></section><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Properties</h3><ul class="tsd-index-list"><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IUpdateProfileRequest.html#first_name" class="tsd-kind-icon">first_<wbr/>name</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IUpdateProfileRequest.html#last_name" class="tsd-kind-icon">last_<wbr/>name</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IUpdateProfileRequest.html#phone" class="tsd-kind-icon">phone</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Properties</h2><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="first_name" class="tsd-anchor"></a><h3><span class="tsd-flag ts-flagOptional">Optional</span> first_<wbr/>name</h3><div class="tsd-signature tsd-kind-icon">first_<wbr/>name<span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L106">Users/Types.ts:106</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="last_name" class="tsd-anchor"></a><h3><span class="tsd-flag ts-flagOptional">Optional</span> last_<wbr/>name</h3><div class="tsd-signature tsd-kind-icon">last_<wbr/>name<span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L107">Users/Types.ts:107</a></li></ul></aside></section><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="phone" class="tsd-anchor"></a><h3><span class="tsd-flag ts-flagOptional">Optional</span> phone</h3><div class="tsd-signature tsd-kind-icon">phone<span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L108">Users/Types.ts:108</a></li></ul></aside></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Exports</a></li><li class=" tsd-kind-namespace"><a href="../modules/Documents.html">Documents</a></li><li class=" tsd-kind-namespace"><a href="../modules/HTTP.html">HTTP</a></li><li class=" tsd-kind-namespace"><a href="../modules/Organizations.html">Organizations</a></li><li class=" tsd-kind-namespace"><a href="../modules/Signatures.html">Signatures</a></li><li class=" tsd-kind-namespace"><a href="../modules/Tags.html">Tags</a></li><li class=" tsd-kind-namespace"><a href="../modules/Templates.html">Templates</a></li><li class="current tsd-kind-namespace"><a href="../modules/Users.html">Users</a><ul><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Auth.html">Auth</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Billing.html">Billing</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Notifications.html">Notifications</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Profiles.html">Profiles</a></li><li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Types.html">Types</a></li></ul></li><li class=" tsd-kind-namespace"><a href="../modules/Utils.html">Utils</a></li><li class=" tsd-kind-namespace"><a href="../modules/Validators.html">Validators</a></li><li class=" tsd-kind-namespace"><a href="../modules/Whitelabel.html">Whitelabel</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-interface tsd-parent-kind-namespace"><a href="Users.Types.IUpdateProfileRequest.html" class="tsd-kind-icon">IUpdate<wbr/>Profile<wbr/>Request</a><ul><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IUpdateProfileRequest.html#first_name" class="tsd-kind-icon">first_<wbr/>name</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IUpdateProfileRequest.html#last_name" class="tsd-kind-icon">last_<wbr/>name</a></li><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.IUpdateProfileRequest.html#phone" class="tsd-kind-icon">phone</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!DOCTYPE html><html class="default no-js"><head><meta charSet="utf-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><title>TokenValidationRequest | @verdocs/js-sdk - v1.0.12</title><meta name="description" content="Documentation for @verdocs/js-sdk - v1.0.12"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@verdocs/js-sdk - v1.0.12</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">@verdocs/js-sdk - v1.0.12</a></li><li><a href="../modules/Users.html">Users</a></li><li><a href="../modules/Users.Types.html">Types</a></li><li><a href="Users.Types.TokenValidationRequest.html">TokenValidationRequest</a></li></ul><h1>Interface TokenValidationRequest</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel tsd-hierarchy"><h3>Hierarchy</h3><ul class="tsd-hierarchy"><li><span class="target">TokenValidationRequest</span></li></ul></section><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Properties</h3><ul class="tsd-index-list"><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.TokenValidationRequest.html#token" class="tsd-kind-icon">token</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Properties</h2><section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a name="token" class="tsd-anchor"></a><h3>token</h3><div class="tsd-signature tsd-kind-icon">token<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Verdocs/js-sdk/blob/main/src/Users/Types.ts#L128">Users/Types.ts:128</a></li></ul></aside></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Exports</a></li><li class=" tsd-kind-namespace"><a href="../modules/Documents.html">Documents</a></li><li class=" tsd-kind-namespace"><a href="../modules/HTTP.html">HTTP</a></li><li class=" tsd-kind-namespace"><a href="../modules/Organizations.html">Organizations</a></li><li class=" tsd-kind-namespace"><a href="../modules/Signatures.html">Signatures</a></li><li class=" tsd-kind-namespace"><a href="../modules/Tags.html">Tags</a></li><li class=" tsd-kind-namespace"><a href="../modules/Templates.html">Templates</a></li><li class="current tsd-kind-namespace"><a href="../modules/Users.html">Users</a><ul><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Auth.html">Auth</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Billing.html">Billing</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Notifications.html">Notifications</a></li><li class=" tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Profiles.html">Profiles</a></li><li class="current tsd-kind-namespace tsd-parent-kind-namespace"><a href="../modules/Users.Types.html">Types</a></li></ul></li><li class=" tsd-kind-namespace"><a href="../modules/Utils.html">Utils</a></li><li class=" tsd-kind-namespace"><a href="../modules/Validators.html">Validators</a></li><li class=" tsd-kind-namespace"><a href="../modules/Whitelabel.html">Whitelabel</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-interface tsd-parent-kind-namespace"><a href="Users.Types.TokenValidationRequest.html" class="tsd-kind-icon">Token<wbr/>Validation<wbr/>Request</a><ul><li class="tsd-kind-property tsd-parent-kind-interface"><a href="Users.Types.TokenValidationRequest.html#token" class="tsd-kind-icon">token</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>
|