chore: add typedoc and use to generate updated documenation when publishing

This commit is contained in:
Stevan Freeborn
2024-03-23 15:44:49 -05:00
parent 90a559a7c8
commit f1a87eb2aa
79 changed files with 16082 additions and 1 deletions
+22
View File
@@ -61,6 +61,28 @@ jobs:
with:
name: build
path: ./dist
generate_docs:
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: latest
- name: Install dependencies
run: npm install
- name: Generate docs
run: npm run generate-docs
- name: Commit generated docs
id: commit
uses: EndBug/add-and-commit@v9
with:
commit: --no-verify
message: 'docs: update docs'
committer_name: GitHub Actions
committer_email: actions@github.com
publish:
needs: build
runs-on: ubuntu-latest
+1
View File
@@ -0,0 +1 @@
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.
+85
View File
@@ -0,0 +1,85 @@
:root {
--light-hl-0: #0000FF;
--dark-hl-0: #569CD6;
--light-hl-1: #000000;
--dark-hl-1: #D4D4D4;
--light-hl-2: #0070C1;
--dark-hl-2: #4FC1FF;
--light-hl-3: #795E26;
--dark-hl-3: #DCDCAA;
--light-hl-4: #A31515;
--dark-hl-4: #CE9178;
--light-hl-5: #001080;
--dark-hl-5: #9CDCFE;
--light-hl-6: #AF00DB;
--dark-hl-6: #C586C0;
--light-hl-7: #098658;
--dark-hl-7: #B5CEA8;
--light-hl-8: #008000;
--dark-hl-8: #6A9955;
--light-code-background: #FFFFFF;
--dark-code-background: #1E1E1E;
}
@media (prefers-color-scheme: light) { :root {
--hl-0: var(--light-hl-0);
--hl-1: var(--light-hl-1);
--hl-2: var(--light-hl-2);
--hl-3: var(--light-hl-3);
--hl-4: var(--light-hl-4);
--hl-5: var(--light-hl-5);
--hl-6: var(--light-hl-6);
--hl-7: var(--light-hl-7);
--hl-8: var(--light-hl-8);
--code-background: var(--light-code-background);
} }
@media (prefers-color-scheme: dark) { :root {
--hl-0: var(--dark-hl-0);
--hl-1: var(--dark-hl-1);
--hl-2: var(--dark-hl-2);
--hl-3: var(--dark-hl-3);
--hl-4: var(--dark-hl-4);
--hl-5: var(--dark-hl-5);
--hl-6: var(--dark-hl-6);
--hl-7: var(--dark-hl-7);
--hl-8: var(--dark-hl-8);
--code-background: var(--dark-code-background);
} }
:root[data-theme='light'] {
--hl-0: var(--light-hl-0);
--hl-1: var(--light-hl-1);
--hl-2: var(--light-hl-2);
--hl-3: var(--light-hl-3);
--hl-4: var(--light-hl-4);
--hl-5: var(--light-hl-5);
--hl-6: var(--light-hl-6);
--hl-7: var(--light-hl-7);
--hl-8: var(--light-hl-8);
--code-background: var(--light-code-background);
}
:root[data-theme='dark'] {
--hl-0: var(--dark-hl-0);
--hl-1: var(--dark-hl-1);
--hl-2: var(--dark-hl-2);
--hl-3: var(--dark-hl-3);
--hl-4: var(--dark-hl-4);
--hl-5: var(--dark-hl-5);
--hl-6: var(--dark-hl-6);
--hl-7: var(--dark-hl-7);
--hl-8: var(--dark-hl-8);
--code-background: var(--dark-code-background);
}
.hl-0 { color: var(--hl-0); }
.hl-1 { color: var(--hl-1); }
.hl-2 { color: var(--hl-2); }
.hl-3 { color: var(--hl-3); }
.hl-4 { color: var(--hl-4); }
.hl-5 { color: var(--hl-5); }
.hl-6 { color: var(--hl-6); }
.hl-7 { color: var(--hl-7); }
.hl-8 { color: var(--hl-8); }
pre, code { background: var(--code-background); }
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 14 KiB

File diff suppressed because one or more lines are too long
+247
View File
@@ -0,0 +1,247 @@
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap");
:root,
:root[data-theme="light"],
:root[data-theme="dark"] {
--font-sans: "Space Grotesk", sans-serif;
--font-mono: "Space Mono", monospace;
--color-background: var(--md-sys-color-surface-container);
--color-background-secondary: var(--md-sys-color-surface-container-high);
--color-background-warning: var(--md-sys-color-error-container);
--color-warning-text: var(--md-sys-color-on-error-container);
--color-icon-background: var(--md-sys-color-on-primary);
--color-accent: var(--md-sys-color-secondary-container);
--color-active-menu-item: var(--md-sys-color-surface-container-highest);
--color-text: var(--md-sys-color-on-surface);
--color-text-aside: var(--md-sys-color-on-surface-variant);
--color-link: var(--md-sys-color-primary);
--color-ts-project: var(--md-sys-color-secondary);
--color-ts-module: var(--color-ts-project);
--color-ts-namespace: var(--color-ts-project);
--color-ts-enum: var(--md-sys-color-tertiary);
--color-ts-enum-member: var(--color-ts-enum);
--color-ts-variable: var(--md-sys-color-primary);
--color-ts-function: var(--md-sys-color-secondary);
--color-ts-class: var(--md-sys-color-tertiary);
--color-ts-interface: var(--md-sys-color-tertiary);
--color-ts-constructor: var(--md-sys-color-inverse-primary);
--color-ts-property: var(--md-sys-color-on-background);
--color-ts-method: var(--color-ts-function);
--color-ts-call-signature: var(--color-ts-method);
--color-ts-index-signature: var(--color-ts-property); /* ? */
--color-ts-constructor-signature: var(--color-ts-function);
--color-ts-parameter: var(--md-sys-color-primary);
--color-ts-type-parameter: var(--md-sys-color-tertiary);
--color-ts-accessor: var(--color-ts-property);
--color-ts-get-signature: var(--color-ts-accessor);
--color-ts-set-signature: var(--color-ts-accessor);
--color-ts-type-alias: var(--md-sys-color-tertiary);
/* --external-icon: var(--md-sys-external-icon);
--color-scheme: var(--md-sys-color-scheme); */
--top-app-bar-height: 4.5rem;
--footer-height: 3.5rem;
}
body {
font-family: var(--font-sans);
}
code,
pre {
font-family: var(--font-mono);
}
img {
max-width: 100%;
}
*::-webkit-scrollbar {
width: 8px;
height: 8px;
}
*::-webkit-scrollbar-track {
background: none;
}
*::-webkit-scrollbar-thumb {
border: none;
}
.container-main {
min-height: calc(100vh - var(--top-app-bar-height) - var(--footer-height));
}
.col-content {
overflow: hidden;
box-sizing: border-box;
padding: 1.75rem;
border-radius: 28px;
background-color: var(--md-sys-color-surface);
}
.page-menu {
height: fit-content;
padding: 0.75rem 1.75rem;
border-radius: 28px;
background-color: var(--md-sys-color-surface);
}
.site-menu > *,
.page-menu > * {
position: relative;
}
.title {
display: block;
max-width: calc(100% - 5rem);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-size: 22px;
}
.tsd-page-toolbar {
padding: 8px 0;
height: calc(var(--top-app-bar-height) - 16px);
background-color: var(--color-background);
border-bottom: none;
}
.tsd-page-toolbar .tsd-toolbar-contents {
height: 56px;
}
.tsd-page-toolbar .table-cell {
height: 56px;
margin-left: 1.5rem;
}
.tsd-page-toolbar .tsd-toolbar-icon {
padding: 20px 0;
}
#tsd-search {
line-height: 56px;
border-radius: 22px;
}
#tsd-search .results {
z-index: -1;
top: calc(56px - 22px);
padding-top: 22px;
box-shadow: 0px 4px 2px rgba(0, 0, 0, 0.125);
background-color: var(--color-background-secondary);
border-bottom-left-radius: 22px;
border-bottom-right-radius: 22px;
overflow: hidden;
}
#tsd-search .results li {
background: none;
}
#tsd-search .results a {
padding: 1rem 0.25rem;
}
.col-sidebar {
padding-top: 0;
margin-right: 1rem;
}
.tsd-signature {
padding: 1rem 1.5rem;
border-radius: 24px;
background-color: var(--md-sys-color-surface-container);
}
.tsd-page-navigation ul {
padding-left: 0.44rem;
}
.tsd-navigation a,
.tsd-navigation summary > span,
.tsd-page-navigation a {
padding: 0.88rem;
border-radius: 24px;
}
.tsd-navigation a:hover,
.tsd-page-navigation a:hover {
text-decoration: none;
background-color: var(--md-sys-color-surface-container-high);
}
.page-menu .tsd-accordion-summary svg {
position: absolute;
right: 0;
}
.site-menu .tsd-navigation .tsd-accordion-summary {
display: flex;
flex-direction: row-reverse;
width: 100%;
}
.tsd-small-nested-navigation {
margin-left: 1rem;
}
.tsd-nested-navigation {
margin-left: 2.5rem;
}
.tsd-nested-navigation > li > a,
.tsd-nested-navigation > li > span {
width: 100%;
}
.tsd-navigation > a,
.tsd-navigation .tsd-accordion-summary {
width: 100%;
}
.tsd-index-accordion .tsd-accordion-summary > svg {
position: absolute;
right: 1.5rem;
margin-top: 1rem;
}
.tsd-accordion-summary .tsd-kind-icon ~ span {
margin-right: 2.5rem;
}
.tsd-accordion-summary .tsd-nested-navigation > li > a,
.tsd-nested-navigation > li > span {
width: calc(100% - 0.44rem);
}
.tsd-kind-icon ~ span {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.tsd-generator {
padding: 0;
border-top: none;
height: var(--footer-height);
line-height: var(--footer-height);
}
.tsd-generator > p {
padding: 0 2rem;
}
@media (max-width: 769px) {
.container {
padding: 1rem;
}
.col-sidebar {
margin-right: 0;
}
}
@media (min-width: 770px) {
.container-main {
margin: 0 auto;
}
.site-menu {
margin-right: 0.5rem;
}
}
@media (min-width: 1200px) {
.page-menu,
.site-menu {
max-height: calc(100vh - var(--footer-height) - var(--top-app-bar-height));
top: var(--top-app-bar-height);
}
.page-menu {
margin-left: 1rem;
}
.col-sidebar {
margin-right: 0;
}
}
+1
View File
@@ -0,0 +1 @@
window.navigationData = "data:application/octet-stream;base64,H4sIAAAAAAAACo2XQY/TMBCF/0vOFSs4od5Kl10igQrtCg6Ig5XMthaObZwxS4X47ygNdGN7PPY1773P8djjxF9/Nwi/sFk3twLFnXGDwGbVWIGnZt2A9sN486y8OOGgmlXzXeq+Wb/+s3pOg4KjQHg4W0jyCy1PuJOg+gMK9GMMWEiFPDX8VeCyCg5onDjCQSJBCGSWg+B2FpxA44h5BDLDMW7wSuw8Wo/knGJDnvUO0c6125o+AYVqnvLBK5RWyU7iOWYstTxhD51x/WehPLlJIpnjWONw2pM0ZqnmKQ9ygIMVutWdgwF0sukTQ5m1h847B7ojJ0i78tSNlXsYrdHjAtUpMY4w3izEkPDyVciwVNayGUTRncKSXKNXrY7wXo64WFgOGFk5/tYoBR1Ko/MFSj0s0YFA6L9IPLU9A6VsHPdWILDzjwwsCzo5CMXjEg9PnM9lijMrNeniGmeMHPut7q2RGu9Eh8adU2Zk4FiX4z8lXB7zOUVMZnpaSrX60dDJSSmli/UkTCxz/lTkyrBQOco94EdxhH5j7ZhvEMpVQ70MX8ENfTXkuUgV6MhYx56+NVXswFhgz2+yhx8eRuIMjh1VtPHNeWNtW0GNnHX0CmwNz8u+uPsJU4lZ5FWyWo1wBFd8RdpXQa6hVhKnwTMtf5VK+RZhyK5sZKhj5RoldpRomRJdJS6/06N1Uh+3SpL/OKHOkf71dm5SgVzgSH3MVjqQOc4nD+483zFSykIsMkpdTZg45uxMMfPzcjKz2pWdsIdHuPxuZ9oh1HnSdIxThOl5OTndSnLpSWMJ5omImicucxA/YfpZyK5jZCixCh+mxFLLyzVQ6mGJnZna9t4ZT1x6lmotpXjQM2Z2DJxSZTplK3MrmJW8/zdWet8u1RoK+16EKWV++wv61xb7rRIAAA=="
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+181
View File
@@ -0,0 +1,181 @@
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>CreatedWithIdResponse | onspring-api-sdk</title><meta name="description" content="Documentation for onspring-api-sdk"/><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 defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><style>
@media (prefers-color-scheme: dark) {
:root {
--md-sys-color-primary: #adc6ff;
--md-sys-color-on-primary: #002e6a;
--md-sys-color-primary-container: #10448f;
--md-sys-color-on-primary-container: #d8e2ff;
--md-sys-color-secondary: #bfc6dc;
--md-sys-color-on-secondary: #293041;
--md-sys-color-secondary-container: #3f4759;
--md-sys-color-on-secondary-container: #dbe2f9;
--md-sys-color-tertiary: #debcdf;
--md-sys-color-on-tertiary: #402843;
--md-sys-color-tertiary-container: #583e5b;
--md-sys-color-on-tertiary-container: #fcd7fb;
--md-sys-color-error: #ffb4ab;
--md-sys-color-on-error: #690005;
--md-sys-color-error-container: #93000a;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-background: #1b1b1f;
--md-sys-color-on-background: #e3e2e6;
--md-sys-color-surface: #1b1b1f;
--md-sys-color-on-surface: #e3e2e6;
--md-sys-color-surface-variant: #44474f;
--md-sys-color-on-surface-variant: #c4c6d0;
--md-sys-color-outline: #8e9099;
--md-sys-color-outline-variant: #44474f;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #e3e2e6;
--md-sys-color-inverse-on-surface: #303034;
--md-sys-color-inverse-primary: #325da8;
--md-sys-color-surface-dim: #121316;
--md-sys-color-surface-bright: #38393c;
--md-sys-color-surface-container-lowest: #0d0e11;
--md-sys-color-surface-container-low: #1b1b1f;
--md-sys-color-surface-container: #1f1f23;
--md-sys-color-surface-container-high: #292a2d;
--md-sys-color-surface-container-highest: #343538
}
}
:root[data-theme="dark"] {
--md-sys-color-primary: #adc6ff;
--md-sys-color-on-primary: #002e6a;
--md-sys-color-primary-container: #10448f;
--md-sys-color-on-primary-container: #d8e2ff;
--md-sys-color-secondary: #bfc6dc;
--md-sys-color-on-secondary: #293041;
--md-sys-color-secondary-container: #3f4759;
--md-sys-color-on-secondary-container: #dbe2f9;
--md-sys-color-tertiary: #debcdf;
--md-sys-color-on-tertiary: #402843;
--md-sys-color-tertiary-container: #583e5b;
--md-sys-color-on-tertiary-container: #fcd7fb;
--md-sys-color-error: #ffb4ab;
--md-sys-color-on-error: #690005;
--md-sys-color-error-container: #93000a;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-background: #1b1b1f;
--md-sys-color-on-background: #e3e2e6;
--md-sys-color-surface: #1b1b1f;
--md-sys-color-on-surface: #e3e2e6;
--md-sys-color-surface-variant: #44474f;
--md-sys-color-on-surface-variant: #c4c6d0;
--md-sys-color-outline: #8e9099;
--md-sys-color-outline-variant: #44474f;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #e3e2e6;
--md-sys-color-inverse-on-surface: #303034;
--md-sys-color-inverse-primary: #325da8;
--md-sys-color-surface-dim: #121316;
--md-sys-color-surface-bright: #38393c;
--md-sys-color-surface-container-lowest: #0d0e11;
--md-sys-color-surface-container-low: #1b1b1f;
--md-sys-color-surface-container: #1f1f23;
--md-sys-color-surface-container-high: #292a2d;
--md-sys-color-surface-container-highest: #343538
}
@media (prefers-color-scheme: light) {
:root {
--md-sys-color-primary: #325da8;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-primary-container: #d8e2ff;
--md-sys-color-on-primary-container: #001a42;
--md-sys-color-secondary: #575e71;
--md-sys-color-on-secondary: #ffffff;
--md-sys-color-secondary-container: #dbe2f9;
--md-sys-color-on-secondary-container: #141b2c;
--md-sys-color-tertiary: #715573;
--md-sys-color-on-tertiary: #ffffff;
--md-sys-color-tertiary-container: #fcd7fb;
--md-sys-color-on-tertiary-container: #29132d;
--md-sys-color-error: #ba1a1a;
--md-sys-color-on-error: #ffffff;
--md-sys-color-error-container: #ffdad6;
--md-sys-color-on-error-container: #410002;
--md-sys-color-background: #fefbff;
--md-sys-color-on-background: #1b1b1f;
--md-sys-color-surface: #fefbff;
--md-sys-color-on-surface: #1b1b1f;
--md-sys-color-surface-variant: #e1e2ec;
--md-sys-color-on-surface-variant: #44474f;
--md-sys-color-outline: #75777f;
--md-sys-color-outline-variant: #c4c6d0;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #303034;
--md-sys-color-inverse-on-surface: #f2f0f4;
--md-sys-color-inverse-primary: #adc6ff;
--md-sys-color-surface-dim: #dbd9dd;
--md-sys-color-surface-bright: #faf8fd;
--md-sys-color-surface-container-lowest: #ffffff;
--md-sys-color-surface-container-low: #f5f3f7;
--md-sys-color-surface-container: #efedf1;
--md-sys-color-surface-container-high: #e9e7ec;
--md-sys-color-surface-container-highest: #e3e2e6
}
}
:root[data-theme="light"] {
--md-sys-color-primary: #325da8;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-primary-container: #d8e2ff;
--md-sys-color-on-primary-container: #001a42;
--md-sys-color-secondary: #575e71;
--md-sys-color-on-secondary: #ffffff;
--md-sys-color-secondary-container: #dbe2f9;
--md-sys-color-on-secondary-container: #141b2c;
--md-sys-color-tertiary: #715573;
--md-sys-color-on-tertiary: #ffffff;
--md-sys-color-tertiary-container: #fcd7fb;
--md-sys-color-on-tertiary-container: #29132d;
--md-sys-color-error: #ba1a1a;
--md-sys-color-on-error: #ffffff;
--md-sys-color-error-container: #ffdad6;
--md-sys-color-on-error-container: #410002;
--md-sys-color-background: #fefbff;
--md-sys-color-on-background: #1b1b1f;
--md-sys-color-surface: #fefbff;
--md-sys-color-on-surface: #1b1b1f;
--md-sys-color-surface-variant: #e1e2ec;
--md-sys-color-on-surface-variant: #44474f;
--md-sys-color-outline: #75777f;
--md-sys-color-outline-variant: #c4c6d0;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #303034;
--md-sys-color-inverse-on-surface: #f2f0f4;
--md-sys-color-inverse-primary: #adc6ff;
--md-sys-color-surface-dim: #dbd9dd;
--md-sys-color-surface-bright: #faf8fd;
--md-sys-color-surface-container-lowest: #ffffff;
--md-sys-color-surface-container-low: #f5f3f7;
--md-sys-color-surface-container: #efedf1;
--md-sys-color-surface-container-high: #e9e7ec;
--md-sys-color-surface-container-highest: #e3e2e6
}
</style><link rel="stylesheet" href="../assets/material-style.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></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">onspring-api-sdk</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../modules.html">onspring-api-sdk</a></li><li><a href="CreatedWithIdResponse.html">CreatedWithIdResponse</a></li></ul><h1>Class CreatedWithIdResponse&lt;T&gt;</h1></div><section class="tsd-panel tsd-comment"><div class="tsd-comment tsd-typography"><p>CreatedWithIdResponse<T> - Represents a response to a request to create a resource.</p>
</div><div class="tsd-comment tsd-typography"></div></section> <section class="tsd-panel"><h4>Type Parameters</h4><ul class="tsd-type-parameter-list"><li><span><a id="T" class="tsd-anchor"></a><span class="tsd-kind-type-parameter">T</span></span></li></ul></section> <section class="tsd-panel tsd-hierarchy"><h4>Hierarchy (<a class="link" href="../hierarchy.html#CreatedWithIdResponse">view full</a>)</h4><ul class="tsd-hierarchy"><li><span class="target">CreatedWithIdResponse</span><ul class="tsd-hierarchy"><li><a href="ListItemResponse.html" class="tsd-signature-type tsd-kind-class">ListItemResponse</a></li><li><a href="SaveRecordResponse.html" class="tsd-signature-type tsd-kind-class">SaveRecordResponse</a></li></ul></li></ul></section><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/models/CreatedWithIdResponse.ts#L4">models/CreatedWithIdResponse.ts:4</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Constructors</h3><div class="tsd-index-list"><a href="CreatedWithIdResponse.html#constructor" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-512"></use></svg><span>constructor</span></a>
</div></section><section class="tsd-index-section"><h3 class="tsd-index-heading">Properties</h3><div class="tsd-index-list"><a href="CreatedWithIdResponse.html#id" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>id</span></a>
</div></section></div></details></section></section><section class="tsd-panel-group tsd-member-group"><h2>Constructors</h2><section class="tsd-panel tsd-member"><a id="constructor" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>constructor</span><a href="#constructor" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class="tsd-signature tsd-anchor-link"><a id="constructor.new_CreatedWithIdResponse" class="tsd-anchor"></a><span class="tsd-kind-constructor-signature">new <wbr/>Created<wbr/>With<wbr/>Id<wbr/>Response</span><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="CreatedWithIdResponse.html#constructor.new_CreatedWithIdResponse.T-1">T</a><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">id</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="CreatedWithIdResponse.html" class="tsd-signature-type tsd-kind-class">CreatedWithIdResponse</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="CreatedWithIdResponse.html#constructor.new_CreatedWithIdResponse.T-1">T</a><span class="tsd-signature-symbol">&gt;</span><a href="#constructor.new_CreatedWithIdResponse" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></li><li class="tsd-description"><section class="tsd-panel"><h4>Type Parameters</h4><ul class="tsd-type-parameter-list"><li><span><a id="constructor.new_CreatedWithIdResponse.T-1" class="tsd-anchor"></a><span class="tsd-kind-type-parameter">T</span></span></li></ul></section><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">id</span>: <a class="tsd-signature-type tsd-kind-type-parameter" href="CreatedWithIdResponse.html#constructor.new_CreatedWithIdResponse.T-1">T</a></span><div class="tsd-comment tsd-typography"><p>The id of the created object.</p>
</div><div class="tsd-comment tsd-typography"></div></li></ul></div><h4 class="tsd-returns-title">Returns <a href="CreatedWithIdResponse.html" class="tsd-signature-type tsd-kind-class">CreatedWithIdResponse</a><span class="tsd-signature-symbol">&lt;</span><a class="tsd-signature-type tsd-kind-type-parameter" href="CreatedWithIdResponse.html#constructor.new_CreatedWithIdResponse.T-1">T</a><span class="tsd-signature-symbol">&gt;</span></h4><ul>
<li>A new instance of the CreatedWithIdResponse class.</li>
</ul>
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/models/CreatedWithIdResponse.ts#L15">models/CreatedWithIdResponse.ts:15</a></li></ul></aside></li></ul></section></section><section class="tsd-panel-group tsd-member-group"><h2>Properties</h2><section class="tsd-panel tsd-member"><a id="id" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>id</span><a href="#id" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">id</span><span class="tsd-signature-symbol">:</span> <a class="tsd-signature-type tsd-kind-type-parameter" href="CreatedWithIdResponse.html#constructor.new_CreatedWithIdResponse.T-1">T</a></div><div class="tsd-comment tsd-typography"></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/models/CreatedWithIdResponse.ts#L8">models/CreatedWithIdResponse.ts:8</a></li></ul></aside></section></section></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-index-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><h4 class="uppercase">Member Visibility</h4><form><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div><div class="tsd-theme-toggle"><h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><a href="#constructor" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-512"></use></svg><span>constructor</span></a><a href="#id" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>id</span></a></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>onspring-api-sdk</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><div class="tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script>
try {
const generateLinkElement = document.querySelector(".tsd-generator a");
const link = document.createElement("a");
Object.assign(link, {
href: "https://github.com/dmnsgn/typedoc-material-theme",
target: "_blank",
rel: "noreferrer",
innerText: "typedoc-material-theme."
});
generateLinkElement.insertAdjacentElement("afterend", link);
generateLinkElement.insertAdjacentText("afterend", " with ");
} catch (error) {
}
</script></body></html>
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+193
View File
@@ -0,0 +1,193 @@
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>QueryFilter | onspring-api-sdk</title><meta name="description" content="Documentation for onspring-api-sdk"/><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 defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><style>
@media (prefers-color-scheme: dark) {
:root {
--md-sys-color-primary: #adc6ff;
--md-sys-color-on-primary: #002e6a;
--md-sys-color-primary-container: #10448f;
--md-sys-color-on-primary-container: #d8e2ff;
--md-sys-color-secondary: #bfc6dc;
--md-sys-color-on-secondary: #293041;
--md-sys-color-secondary-container: #3f4759;
--md-sys-color-on-secondary-container: #dbe2f9;
--md-sys-color-tertiary: #debcdf;
--md-sys-color-on-tertiary: #402843;
--md-sys-color-tertiary-container: #583e5b;
--md-sys-color-on-tertiary-container: #fcd7fb;
--md-sys-color-error: #ffb4ab;
--md-sys-color-on-error: #690005;
--md-sys-color-error-container: #93000a;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-background: #1b1b1f;
--md-sys-color-on-background: #e3e2e6;
--md-sys-color-surface: #1b1b1f;
--md-sys-color-on-surface: #e3e2e6;
--md-sys-color-surface-variant: #44474f;
--md-sys-color-on-surface-variant: #c4c6d0;
--md-sys-color-outline: #8e9099;
--md-sys-color-outline-variant: #44474f;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #e3e2e6;
--md-sys-color-inverse-on-surface: #303034;
--md-sys-color-inverse-primary: #325da8;
--md-sys-color-surface-dim: #121316;
--md-sys-color-surface-bright: #38393c;
--md-sys-color-surface-container-lowest: #0d0e11;
--md-sys-color-surface-container-low: #1b1b1f;
--md-sys-color-surface-container: #1f1f23;
--md-sys-color-surface-container-high: #292a2d;
--md-sys-color-surface-container-highest: #343538
}
}
:root[data-theme="dark"] {
--md-sys-color-primary: #adc6ff;
--md-sys-color-on-primary: #002e6a;
--md-sys-color-primary-container: #10448f;
--md-sys-color-on-primary-container: #d8e2ff;
--md-sys-color-secondary: #bfc6dc;
--md-sys-color-on-secondary: #293041;
--md-sys-color-secondary-container: #3f4759;
--md-sys-color-on-secondary-container: #dbe2f9;
--md-sys-color-tertiary: #debcdf;
--md-sys-color-on-tertiary: #402843;
--md-sys-color-tertiary-container: #583e5b;
--md-sys-color-on-tertiary-container: #fcd7fb;
--md-sys-color-error: #ffb4ab;
--md-sys-color-on-error: #690005;
--md-sys-color-error-container: #93000a;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-background: #1b1b1f;
--md-sys-color-on-background: #e3e2e6;
--md-sys-color-surface: #1b1b1f;
--md-sys-color-on-surface: #e3e2e6;
--md-sys-color-surface-variant: #44474f;
--md-sys-color-on-surface-variant: #c4c6d0;
--md-sys-color-outline: #8e9099;
--md-sys-color-outline-variant: #44474f;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #e3e2e6;
--md-sys-color-inverse-on-surface: #303034;
--md-sys-color-inverse-primary: #325da8;
--md-sys-color-surface-dim: #121316;
--md-sys-color-surface-bright: #38393c;
--md-sys-color-surface-container-lowest: #0d0e11;
--md-sys-color-surface-container-low: #1b1b1f;
--md-sys-color-surface-container: #1f1f23;
--md-sys-color-surface-container-high: #292a2d;
--md-sys-color-surface-container-highest: #343538
}
@media (prefers-color-scheme: light) {
:root {
--md-sys-color-primary: #325da8;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-primary-container: #d8e2ff;
--md-sys-color-on-primary-container: #001a42;
--md-sys-color-secondary: #575e71;
--md-sys-color-on-secondary: #ffffff;
--md-sys-color-secondary-container: #dbe2f9;
--md-sys-color-on-secondary-container: #141b2c;
--md-sys-color-tertiary: #715573;
--md-sys-color-on-tertiary: #ffffff;
--md-sys-color-tertiary-container: #fcd7fb;
--md-sys-color-on-tertiary-container: #29132d;
--md-sys-color-error: #ba1a1a;
--md-sys-color-on-error: #ffffff;
--md-sys-color-error-container: #ffdad6;
--md-sys-color-on-error-container: #410002;
--md-sys-color-background: #fefbff;
--md-sys-color-on-background: #1b1b1f;
--md-sys-color-surface: #fefbff;
--md-sys-color-on-surface: #1b1b1f;
--md-sys-color-surface-variant: #e1e2ec;
--md-sys-color-on-surface-variant: #44474f;
--md-sys-color-outline: #75777f;
--md-sys-color-outline-variant: #c4c6d0;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #303034;
--md-sys-color-inverse-on-surface: #f2f0f4;
--md-sys-color-inverse-primary: #adc6ff;
--md-sys-color-surface-dim: #dbd9dd;
--md-sys-color-surface-bright: #faf8fd;
--md-sys-color-surface-container-lowest: #ffffff;
--md-sys-color-surface-container-low: #f5f3f7;
--md-sys-color-surface-container: #efedf1;
--md-sys-color-surface-container-high: #e9e7ec;
--md-sys-color-surface-container-highest: #e3e2e6
}
}
:root[data-theme="light"] {
--md-sys-color-primary: #325da8;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-primary-container: #d8e2ff;
--md-sys-color-on-primary-container: #001a42;
--md-sys-color-secondary: #575e71;
--md-sys-color-on-secondary: #ffffff;
--md-sys-color-secondary-container: #dbe2f9;
--md-sys-color-on-secondary-container: #141b2c;
--md-sys-color-tertiary: #715573;
--md-sys-color-on-tertiary: #ffffff;
--md-sys-color-tertiary-container: #fcd7fb;
--md-sys-color-on-tertiary-container: #29132d;
--md-sys-color-error: #ba1a1a;
--md-sys-color-on-error: #ffffff;
--md-sys-color-error-container: #ffdad6;
--md-sys-color-on-error-container: #410002;
--md-sys-color-background: #fefbff;
--md-sys-color-on-background: #1b1b1f;
--md-sys-color-surface: #fefbff;
--md-sys-color-on-surface: #1b1b1f;
--md-sys-color-surface-variant: #e1e2ec;
--md-sys-color-on-surface-variant: #44474f;
--md-sys-color-outline: #75777f;
--md-sys-color-outline-variant: #c4c6d0;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #303034;
--md-sys-color-inverse-on-surface: #f2f0f4;
--md-sys-color-inverse-primary: #adc6ff;
--md-sys-color-surface-dim: #dbd9dd;
--md-sys-color-surface-bright: #faf8fd;
--md-sys-color-surface-container-lowest: #ffffff;
--md-sys-color-surface-container-low: #f5f3f7;
--md-sys-color-surface-container: #efedf1;
--md-sys-color-surface-container-high: #e9e7ec;
--md-sys-color-surface-container-highest: #e3e2e6
}
</style><link rel="stylesheet" href="../assets/material-style.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></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">onspring-api-sdk</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../modules.html">onspring-api-sdk</a></li><li><a href="QueryFilter.html">QueryFilter</a></li></ul><h1>Class QueryFilter</h1></div><section class="tsd-panel tsd-comment"><div class="tsd-comment tsd-typography"><p>QueryFilter - Represents a query filter.</p>
</div><div class="tsd-comment tsd-typography"></div></section><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/models/QueryFilter.ts#L6">models/QueryFilter.ts:6</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Constructors</h3><div class="tsd-index-list"><a href="QueryFilter.html#constructor" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-512"></use></svg><span>constructor</span></a>
</div></section><section class="tsd-index-section"><h3 class="tsd-index-heading">Properties</h3><div class="tsd-index-list"><a href="QueryFilter.html#fieldId" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>field<wbr/>Id</span></a>
<a href="QueryFilter.html#operator" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>operator</span></a>
<a href="QueryFilter.html#value" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>value</span></a>
</div></section><section class="tsd-index-section"><h3 class="tsd-index-heading">Methods</h3><div class="tsd-index-list"><a href="QueryFilter.html#toString" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-2048"></use></svg><span>to<wbr/>String</span></a>
</div></section></div></details></section></section><section class="tsd-panel-group tsd-member-group"><h2>Constructors</h2><section class="tsd-panel tsd-member"><a id="constructor" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>constructor</span><a href="#constructor" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class="tsd-signature tsd-anchor-link"><a id="constructor.new_QueryFilter" class="tsd-anchor"></a><span class="tsd-kind-constructor-signature">new <wbr/>Query<wbr/>Filter</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">fieldId</span>, <span class="tsd-kind-parameter">operator</span>, <span class="tsd-kind-parameter">value</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="QueryFilter.html" class="tsd-signature-type tsd-kind-class">QueryFilter</a><a href="#constructor.new_QueryFilter" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></li><li class="tsd-description"><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">fieldId</span>: <span class="tsd-signature-type">number</span></span><div class="tsd-comment tsd-typography"><p>The id of the field to filter on.</p>
</div><div class="tsd-comment tsd-typography"></div></li><li><span><span class="tsd-kind-parameter">operator</span>: <a href="../enums/FilterOperators.html" class="tsd-signature-type tsd-kind-enum">FilterOperators</a></span><div class="tsd-comment tsd-typography"><p>The operator for the filter.</p>
</div><div class="tsd-comment tsd-typography"></div></li><li><span><span class="tsd-kind-parameter">value</span>: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Date</span></span><div class="tsd-comment tsd-typography"><p>The value for the filter.</p>
</div><div class="tsd-comment tsd-typography"></div></li></ul></div><h4 class="tsd-returns-title">Returns <a href="QueryFilter.html" class="tsd-signature-type tsd-kind-class">QueryFilter</a></h4><ul>
<li>A new instance of the QueryFilter class.</li>
</ul>
<div class="tsd-comment tsd-typography"><h4>Throws</h4><ul>
<li>If the value is null and the operator is not IsNull or NotNull.</li>
</ul>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/models/QueryFilter.ts#L30">models/QueryFilter.ts:30</a></li></ul></aside></li></ul></section></section><section class="tsd-panel-group tsd-member-group"><h2>Properties</h2><section class="tsd-panel tsd-member"><a id="fieldId" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>field<wbr/>Id</span><a href="#fieldId" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">field<wbr/>Id</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/models/QueryFilter.ts#L10">models/QueryFilter.ts:10</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="operator" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>operator</span><a href="#operator" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">operator</span><span class="tsd-signature-symbol">:</span> <a href="../enums/FilterOperators.html" class="tsd-signature-type tsd-kind-enum">FilterOperators</a></div><div class="tsd-comment tsd-typography"></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/models/QueryFilter.ts#L15">models/QueryFilter.ts:15</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="value" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>value</span><a href="#value" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">value</span><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><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Date</span></div><div class="tsd-comment tsd-typography"></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/models/QueryFilter.ts#L20">models/QueryFilter.ts:20</a></li></ul></aside></section></section><section class="tsd-panel-group tsd-member-group"><h2>Methods</h2><section class="tsd-panel tsd-member"><a id="toString" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>to<wbr/>String</span><a href="#toString" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class="tsd-signature tsd-anchor-link"><a id="toString.toString-1" class="tsd-anchor"></a><span class="tsd-kind-call-signature">to<wbr/>String</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><a href="#toString.toString-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></li><li class="tsd-description"><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><ul>
<li>The filter as a string.</li>
</ul>
<div class="tsd-comment tsd-typography"><h4>Method</h4><p>toString - Converts the filter to a string.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/models/QueryFilter.ts#L52">models/QueryFilter.ts:52</a></li></ul></aside></li></ul></section></section></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-index-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><h4 class="uppercase">Member Visibility</h4><form><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div><div class="tsd-theme-toggle"><h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><a href="#constructor" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-512"></use></svg><span>constructor</span></a><a href="#fieldId" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>field<wbr/>Id</span></a><a href="#operator" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>operator</span></a><a href="#value" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>value</span></a><a href="#toString" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-2048"></use></svg><span>to<wbr/>String</span></a></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>onspring-api-sdk</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><div class="tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script>
try {
const generateLinkElement = document.querySelector(".tsd-generator a");
const link = document.createElement("a");
Object.assign(link, {
href: "https://github.com/dmnsgn/typedoc-material-theme",
target: "_blank",
rel: "noreferrer",
innerText: "typedoc-material-theme."
});
generateLinkElement.insertAdjacentElement("afterend", link);
generateLinkElement.insertAdjacentText("afterend", " with ");
} catch (error) {
}
</script></body></html>
File diff suppressed because one or more lines are too long
+196
View File
@@ -0,0 +1,196 @@
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Record | onspring-api-sdk</title><meta name="description" content="Documentation for onspring-api-sdk"/><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 defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><style>
@media (prefers-color-scheme: dark) {
:root {
--md-sys-color-primary: #adc6ff;
--md-sys-color-on-primary: #002e6a;
--md-sys-color-primary-container: #10448f;
--md-sys-color-on-primary-container: #d8e2ff;
--md-sys-color-secondary: #bfc6dc;
--md-sys-color-on-secondary: #293041;
--md-sys-color-secondary-container: #3f4759;
--md-sys-color-on-secondary-container: #dbe2f9;
--md-sys-color-tertiary: #debcdf;
--md-sys-color-on-tertiary: #402843;
--md-sys-color-tertiary-container: #583e5b;
--md-sys-color-on-tertiary-container: #fcd7fb;
--md-sys-color-error: #ffb4ab;
--md-sys-color-on-error: #690005;
--md-sys-color-error-container: #93000a;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-background: #1b1b1f;
--md-sys-color-on-background: #e3e2e6;
--md-sys-color-surface: #1b1b1f;
--md-sys-color-on-surface: #e3e2e6;
--md-sys-color-surface-variant: #44474f;
--md-sys-color-on-surface-variant: #c4c6d0;
--md-sys-color-outline: #8e9099;
--md-sys-color-outline-variant: #44474f;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #e3e2e6;
--md-sys-color-inverse-on-surface: #303034;
--md-sys-color-inverse-primary: #325da8;
--md-sys-color-surface-dim: #121316;
--md-sys-color-surface-bright: #38393c;
--md-sys-color-surface-container-lowest: #0d0e11;
--md-sys-color-surface-container-low: #1b1b1f;
--md-sys-color-surface-container: #1f1f23;
--md-sys-color-surface-container-high: #292a2d;
--md-sys-color-surface-container-highest: #343538
}
}
:root[data-theme="dark"] {
--md-sys-color-primary: #adc6ff;
--md-sys-color-on-primary: #002e6a;
--md-sys-color-primary-container: #10448f;
--md-sys-color-on-primary-container: #d8e2ff;
--md-sys-color-secondary: #bfc6dc;
--md-sys-color-on-secondary: #293041;
--md-sys-color-secondary-container: #3f4759;
--md-sys-color-on-secondary-container: #dbe2f9;
--md-sys-color-tertiary: #debcdf;
--md-sys-color-on-tertiary: #402843;
--md-sys-color-tertiary-container: #583e5b;
--md-sys-color-on-tertiary-container: #fcd7fb;
--md-sys-color-error: #ffb4ab;
--md-sys-color-on-error: #690005;
--md-sys-color-error-container: #93000a;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-background: #1b1b1f;
--md-sys-color-on-background: #e3e2e6;
--md-sys-color-surface: #1b1b1f;
--md-sys-color-on-surface: #e3e2e6;
--md-sys-color-surface-variant: #44474f;
--md-sys-color-on-surface-variant: #c4c6d0;
--md-sys-color-outline: #8e9099;
--md-sys-color-outline-variant: #44474f;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #e3e2e6;
--md-sys-color-inverse-on-surface: #303034;
--md-sys-color-inverse-primary: #325da8;
--md-sys-color-surface-dim: #121316;
--md-sys-color-surface-bright: #38393c;
--md-sys-color-surface-container-lowest: #0d0e11;
--md-sys-color-surface-container-low: #1b1b1f;
--md-sys-color-surface-container: #1f1f23;
--md-sys-color-surface-container-high: #292a2d;
--md-sys-color-surface-container-highest: #343538
}
@media (prefers-color-scheme: light) {
:root {
--md-sys-color-primary: #325da8;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-primary-container: #d8e2ff;
--md-sys-color-on-primary-container: #001a42;
--md-sys-color-secondary: #575e71;
--md-sys-color-on-secondary: #ffffff;
--md-sys-color-secondary-container: #dbe2f9;
--md-sys-color-on-secondary-container: #141b2c;
--md-sys-color-tertiary: #715573;
--md-sys-color-on-tertiary: #ffffff;
--md-sys-color-tertiary-container: #fcd7fb;
--md-sys-color-on-tertiary-container: #29132d;
--md-sys-color-error: #ba1a1a;
--md-sys-color-on-error: #ffffff;
--md-sys-color-error-container: #ffdad6;
--md-sys-color-on-error-container: #410002;
--md-sys-color-background: #fefbff;
--md-sys-color-on-background: #1b1b1f;
--md-sys-color-surface: #fefbff;
--md-sys-color-on-surface: #1b1b1f;
--md-sys-color-surface-variant: #e1e2ec;
--md-sys-color-on-surface-variant: #44474f;
--md-sys-color-outline: #75777f;
--md-sys-color-outline-variant: #c4c6d0;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #303034;
--md-sys-color-inverse-on-surface: #f2f0f4;
--md-sys-color-inverse-primary: #adc6ff;
--md-sys-color-surface-dim: #dbd9dd;
--md-sys-color-surface-bright: #faf8fd;
--md-sys-color-surface-container-lowest: #ffffff;
--md-sys-color-surface-container-low: #f5f3f7;
--md-sys-color-surface-container: #efedf1;
--md-sys-color-surface-container-high: #e9e7ec;
--md-sys-color-surface-container-highest: #e3e2e6
}
}
:root[data-theme="light"] {
--md-sys-color-primary: #325da8;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-primary-container: #d8e2ff;
--md-sys-color-on-primary-container: #001a42;
--md-sys-color-secondary: #575e71;
--md-sys-color-on-secondary: #ffffff;
--md-sys-color-secondary-container: #dbe2f9;
--md-sys-color-on-secondary-container: #141b2c;
--md-sys-color-tertiary: #715573;
--md-sys-color-on-tertiary: #ffffff;
--md-sys-color-tertiary-container: #fcd7fb;
--md-sys-color-on-tertiary-container: #29132d;
--md-sys-color-error: #ba1a1a;
--md-sys-color-on-error: #ffffff;
--md-sys-color-error-container: #ffdad6;
--md-sys-color-on-error-container: #410002;
--md-sys-color-background: #fefbff;
--md-sys-color-on-background: #1b1b1f;
--md-sys-color-surface: #fefbff;
--md-sys-color-on-surface: #1b1b1f;
--md-sys-color-surface-variant: #e1e2ec;
--md-sys-color-on-surface-variant: #44474f;
--md-sys-color-outline: #75777f;
--md-sys-color-outline-variant: #c4c6d0;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #303034;
--md-sys-color-inverse-on-surface: #f2f0f4;
--md-sys-color-inverse-primary: #adc6ff;
--md-sys-color-surface-dim: #dbd9dd;
--md-sys-color-surface-bright: #faf8fd;
--md-sys-color-surface-container-lowest: #ffffff;
--md-sys-color-surface-container-low: #f5f3f7;
--md-sys-color-surface-container: #efedf1;
--md-sys-color-surface-container-high: #e9e7ec;
--md-sys-color-surface-container-highest: #e3e2e6
}
</style><link rel="stylesheet" href="../assets/material-style.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></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">onspring-api-sdk</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../modules.html">onspring-api-sdk</a></li><li><a href="Record.html">Record</a></li></ul><h1>Class Record</h1></div><section class="tsd-panel tsd-comment"><div class="tsd-comment tsd-typography"><p>Record - A record in an app.</p>
</div><div class="tsd-comment tsd-typography"></div></section><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/models/Record.ts#L7">models/Record.ts:7</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Constructors</h3><div class="tsd-index-list"><a href="Record.html#constructor" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-512"></use></svg><span>constructor</span></a>
</div></section><section class="tsd-index-section"><h3 class="tsd-index-heading">Properties</h3><div class="tsd-index-list"><a href="Record.html#appId" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>app<wbr/>Id</span></a>
<a href="Record.html#fieldData" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>field<wbr/>Data</span></a>
<a href="Record.html#recordId" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>record<wbr/>Id</span></a>
</div></section><section class="tsd-index-section"><h3 class="tsd-index-heading">Methods</h3><div class="tsd-index-list"><a href="Record.html#addValue" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Value</span></a>
<a href="Record.html#addValues" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Values</span></a>
<a href="Record.html#convertToSaveRecordRequest" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-2048"></use></svg><span>convert<wbr/>To<wbr/>Save<wbr/>Record<wbr/>Request</span></a>
</div></section></div></details></section></section><section class="tsd-panel-group tsd-member-group"><h2>Constructors</h2><section class="tsd-panel tsd-member"><a id="constructor" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>constructor</span><a href="#constructor" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class="tsd-signature tsd-anchor-link"><a id="constructor.new_Record" class="tsd-anchor"></a><span class="tsd-kind-constructor-signature">new <wbr/>Record</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">appId</span>, <span class="tsd-kind-parameter">recordId</span>, <span class="tsd-kind-parameter">fieldData</span><span class="tsd-signature-symbol">?</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="Record.html" class="tsd-signature-type tsd-kind-class">Record</a><a href="#constructor.new_Record" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></li><li class="tsd-description"><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">appId</span>: <span class="tsd-signature-type">number</span></span><div class="tsd-comment tsd-typography"><p>The id of the app that the record belongs to.</p>
</div><div class="tsd-comment tsd-typography"></div></li><li><span><span class="tsd-kind-parameter">recordId</span>: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">number</span></span><div class="tsd-comment tsd-typography"><p>The id of the record.</p>
</div><div class="tsd-comment tsd-typography"></div></li><li><span><span class="tsd-kind-parameter">fieldData</span>: <a href="RecordValue.html" class="tsd-signature-type tsd-kind-class">RecordValue</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol"> = []</span></span><div class="tsd-comment tsd-typography"><p>The data for the fields in the record.</p>
</div><div class="tsd-comment tsd-typography"></div></li></ul></div><h4 class="tsd-returns-title">Returns <a href="Record.html" class="tsd-signature-type tsd-kind-class">Record</a></h4><ul>
<li>A new instance of Record.</li>
</ul>
<div class="tsd-comment tsd-typography"></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/models/Record.ts#L30">models/Record.ts:30</a></li></ul></aside></li></ul></section></section><section class="tsd-panel-group tsd-member-group"><h2>Properties</h2><section class="tsd-panel tsd-member"><a id="appId" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>app<wbr/>Id</span><a href="#appId" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">app<wbr/>Id</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/models/Record.ts#L11">models/Record.ts:11</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="fieldData" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>field<wbr/>Data</span><a href="#fieldData" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">field<wbr/>Data</span><span class="tsd-signature-symbol">:</span> <a href="RecordValue.html" class="tsd-signature-type tsd-kind-class">RecordValue</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">[]</span></div><div class="tsd-comment tsd-typography"></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/models/Record.ts#L21">models/Record.ts:21</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="recordId" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>record<wbr/>Id</span><a href="#recordId" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">record<wbr/>Id</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">number</span></div><div class="tsd-comment tsd-typography"></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/models/Record.ts#L16">models/Record.ts:16</a></li></ul></aside></section></section><section class="tsd-panel-group tsd-member-group"><h2>Methods</h2><section class="tsd-panel tsd-member"><a id="addValue" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>add<wbr/>Value</span><a href="#addValue" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class="tsd-signature tsd-anchor-link"><a id="addValue.addValue-1" class="tsd-anchor"></a><span class="tsd-kind-call-signature">add<wbr/>Value</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">fieldData</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#addValue.addValue-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></li><li class="tsd-description"><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">fieldData</span>: <a href="RecordValue.html" class="tsd-signature-type tsd-kind-class">RecordValue</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">&gt;</span></span><div class="tsd-comment tsd-typography"><p>The value to add to the record.</p>
</div><div class="tsd-comment tsd-typography"></div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><div class="tsd-comment tsd-typography"><h4>Method</h4><p>addValue - Adds a value to the record.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/models/Record.ts#L45">models/Record.ts:45</a></li></ul></aside></li></ul></section><section class="tsd-panel tsd-member"><a id="addValues" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>add<wbr/>Values</span><a href="#addValues" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class="tsd-signature tsd-anchor-link"><a id="addValues.addValues-1" class="tsd-anchor"></a><span class="tsd-kind-call-signature">add<wbr/>Values</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">fieldData</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#addValues.addValues-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></li><li class="tsd-description"><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">fieldData</span>: <a href="RecordValue.html" class="tsd-signature-type tsd-kind-class">RecordValue</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">[]</span></span><div class="tsd-comment tsd-typography"><p>The values to add to the record.</p>
</div><div class="tsd-comment tsd-typography"></div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><div class="tsd-comment tsd-typography"><h4>Method</h4><p>addValues - Adds values to the record.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/models/Record.ts#L54">models/Record.ts:54</a></li></ul></aside></li></ul></section><section class="tsd-panel tsd-member"><a id="convertToSaveRecordRequest" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>convert<wbr/>To<wbr/>Save<wbr/>Record<wbr/>Request</span><a href="#convertToSaveRecordRequest" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class="tsd-signature tsd-anchor-link"><a id="convertToSaveRecordRequest.convertToSaveRecordRequest-1" class="tsd-anchor"></a><span class="tsd-kind-call-signature">convert<wbr/>To<wbr/>Save<wbr/>Record<wbr/>Request</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="SaveRecordRequest.html" class="tsd-signature-type tsd-kind-class">SaveRecordRequest</a><a href="#convertToSaveRecordRequest.convertToSaveRecordRequest-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></li><li class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="SaveRecordRequest.html" class="tsd-signature-type tsd-kind-class">SaveRecordRequest</a></h4><ul>
<li>A SaveRecordRequest.</li>
</ul>
<div class="tsd-comment tsd-typography"><h4>Method</h4><p>convertToSaveRecordRequest - Converts the record to a SaveRecordRequest.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/models/Record.ts#L62">models/Record.ts:62</a></li></ul></aside></li></ul></section></section></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-index-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><h4 class="uppercase">Member Visibility</h4><form><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div><div class="tsd-theme-toggle"><h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><a href="#constructor" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-512"></use></svg><span>constructor</span></a><a href="#appId" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>app<wbr/>Id</span></a><a href="#fieldData" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>field<wbr/>Data</span></a><a href="#recordId" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>record<wbr/>Id</span></a><a href="#addValue" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Value</span></a><a href="#addValues" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-2048"></use></svg><span>add<wbr/>Values</span></a><a href="#convertToSaveRecordRequest" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-2048"></use></svg><span>convert<wbr/>To<wbr/>Save<wbr/>Record<wbr/>Request</span></a></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>onspring-api-sdk</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><div class="tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script>
try {
const generateLinkElement = document.querySelector(".tsd-generator a");
const link = document.createElement("a");
Object.assign(link, {
href: "https://github.com/dmnsgn/typedoc-material-theme",
target: "_blank",
rel: "noreferrer",
innerText: "typedoc-material-theme."
});
generateLinkElement.insertAdjacentElement("afterend", link);
generateLinkElement.insertAdjacentText("afterend", " with ");
} catch (error) {
}
</script></body></html>
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+179
View File
@@ -0,0 +1,179 @@
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>DataFormat | onspring-api-sdk</title><meta name="description" content="Documentation for onspring-api-sdk"/><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 defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><style>
@media (prefers-color-scheme: dark) {
:root {
--md-sys-color-primary: #adc6ff;
--md-sys-color-on-primary: #002e6a;
--md-sys-color-primary-container: #10448f;
--md-sys-color-on-primary-container: #d8e2ff;
--md-sys-color-secondary: #bfc6dc;
--md-sys-color-on-secondary: #293041;
--md-sys-color-secondary-container: #3f4759;
--md-sys-color-on-secondary-container: #dbe2f9;
--md-sys-color-tertiary: #debcdf;
--md-sys-color-on-tertiary: #402843;
--md-sys-color-tertiary-container: #583e5b;
--md-sys-color-on-tertiary-container: #fcd7fb;
--md-sys-color-error: #ffb4ab;
--md-sys-color-on-error: #690005;
--md-sys-color-error-container: #93000a;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-background: #1b1b1f;
--md-sys-color-on-background: #e3e2e6;
--md-sys-color-surface: #1b1b1f;
--md-sys-color-on-surface: #e3e2e6;
--md-sys-color-surface-variant: #44474f;
--md-sys-color-on-surface-variant: #c4c6d0;
--md-sys-color-outline: #8e9099;
--md-sys-color-outline-variant: #44474f;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #e3e2e6;
--md-sys-color-inverse-on-surface: #303034;
--md-sys-color-inverse-primary: #325da8;
--md-sys-color-surface-dim: #121316;
--md-sys-color-surface-bright: #38393c;
--md-sys-color-surface-container-lowest: #0d0e11;
--md-sys-color-surface-container-low: #1b1b1f;
--md-sys-color-surface-container: #1f1f23;
--md-sys-color-surface-container-high: #292a2d;
--md-sys-color-surface-container-highest: #343538
}
}
:root[data-theme="dark"] {
--md-sys-color-primary: #adc6ff;
--md-sys-color-on-primary: #002e6a;
--md-sys-color-primary-container: #10448f;
--md-sys-color-on-primary-container: #d8e2ff;
--md-sys-color-secondary: #bfc6dc;
--md-sys-color-on-secondary: #293041;
--md-sys-color-secondary-container: #3f4759;
--md-sys-color-on-secondary-container: #dbe2f9;
--md-sys-color-tertiary: #debcdf;
--md-sys-color-on-tertiary: #402843;
--md-sys-color-tertiary-container: #583e5b;
--md-sys-color-on-tertiary-container: #fcd7fb;
--md-sys-color-error: #ffb4ab;
--md-sys-color-on-error: #690005;
--md-sys-color-error-container: #93000a;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-background: #1b1b1f;
--md-sys-color-on-background: #e3e2e6;
--md-sys-color-surface: #1b1b1f;
--md-sys-color-on-surface: #e3e2e6;
--md-sys-color-surface-variant: #44474f;
--md-sys-color-on-surface-variant: #c4c6d0;
--md-sys-color-outline: #8e9099;
--md-sys-color-outline-variant: #44474f;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #e3e2e6;
--md-sys-color-inverse-on-surface: #303034;
--md-sys-color-inverse-primary: #325da8;
--md-sys-color-surface-dim: #121316;
--md-sys-color-surface-bright: #38393c;
--md-sys-color-surface-container-lowest: #0d0e11;
--md-sys-color-surface-container-low: #1b1b1f;
--md-sys-color-surface-container: #1f1f23;
--md-sys-color-surface-container-high: #292a2d;
--md-sys-color-surface-container-highest: #343538
}
@media (prefers-color-scheme: light) {
:root {
--md-sys-color-primary: #325da8;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-primary-container: #d8e2ff;
--md-sys-color-on-primary-container: #001a42;
--md-sys-color-secondary: #575e71;
--md-sys-color-on-secondary: #ffffff;
--md-sys-color-secondary-container: #dbe2f9;
--md-sys-color-on-secondary-container: #141b2c;
--md-sys-color-tertiary: #715573;
--md-sys-color-on-tertiary: #ffffff;
--md-sys-color-tertiary-container: #fcd7fb;
--md-sys-color-on-tertiary-container: #29132d;
--md-sys-color-error: #ba1a1a;
--md-sys-color-on-error: #ffffff;
--md-sys-color-error-container: #ffdad6;
--md-sys-color-on-error-container: #410002;
--md-sys-color-background: #fefbff;
--md-sys-color-on-background: #1b1b1f;
--md-sys-color-surface: #fefbff;
--md-sys-color-on-surface: #1b1b1f;
--md-sys-color-surface-variant: #e1e2ec;
--md-sys-color-on-surface-variant: #44474f;
--md-sys-color-outline: #75777f;
--md-sys-color-outline-variant: #c4c6d0;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #303034;
--md-sys-color-inverse-on-surface: #f2f0f4;
--md-sys-color-inverse-primary: #adc6ff;
--md-sys-color-surface-dim: #dbd9dd;
--md-sys-color-surface-bright: #faf8fd;
--md-sys-color-surface-container-lowest: #ffffff;
--md-sys-color-surface-container-low: #f5f3f7;
--md-sys-color-surface-container: #efedf1;
--md-sys-color-surface-container-high: #e9e7ec;
--md-sys-color-surface-container-highest: #e3e2e6
}
}
:root[data-theme="light"] {
--md-sys-color-primary: #325da8;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-primary-container: #d8e2ff;
--md-sys-color-on-primary-container: #001a42;
--md-sys-color-secondary: #575e71;
--md-sys-color-on-secondary: #ffffff;
--md-sys-color-secondary-container: #dbe2f9;
--md-sys-color-on-secondary-container: #141b2c;
--md-sys-color-tertiary: #715573;
--md-sys-color-on-tertiary: #ffffff;
--md-sys-color-tertiary-container: #fcd7fb;
--md-sys-color-on-tertiary-container: #29132d;
--md-sys-color-error: #ba1a1a;
--md-sys-color-on-error: #ffffff;
--md-sys-color-error-container: #ffdad6;
--md-sys-color-on-error-container: #410002;
--md-sys-color-background: #fefbff;
--md-sys-color-on-background: #1b1b1f;
--md-sys-color-surface: #fefbff;
--md-sys-color-on-surface: #1b1b1f;
--md-sys-color-surface-variant: #e1e2ec;
--md-sys-color-on-surface-variant: #44474f;
--md-sys-color-outline: #75777f;
--md-sys-color-outline-variant: #c4c6d0;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #303034;
--md-sys-color-inverse-on-surface: #f2f0f4;
--md-sys-color-inverse-primary: #adc6ff;
--md-sys-color-surface-dim: #dbd9dd;
--md-sys-color-surface-bright: #faf8fd;
--md-sys-color-surface-container-lowest: #ffffff;
--md-sys-color-surface-container-low: #f5f3f7;
--md-sys-color-surface-container: #efedf1;
--md-sys-color-surface-container-high: #e9e7ec;
--md-sys-color-surface-container-highest: #e3e2e6
}
</style><link rel="stylesheet" href="../assets/material-style.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></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">onspring-api-sdk</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../modules.html">onspring-api-sdk</a></li><li><a href="DataFormat.html">DataFormat</a></li></ul><h1>Enumeration DataFormat</h1></div><section class="tsd-panel tsd-comment"><div class="tsd-comment tsd-typography"><p>DataFormat - The format of the data to be returned.</p>
</div><div class="tsd-comment tsd-typography"></div></section><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/DataFormat.ts#L4">enums/DataFormat.ts:4</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Enumeration Members</h3><div class="tsd-index-list"><a href="DataFormat.html#Formatted" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Formatted</span></a>
<a href="DataFormat.html#Raw" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Raw</span></a>
</div></section></div></details></section></section><section class="tsd-panel-group tsd-member-group"><h2>Enumeration Members</h2><section class="tsd-panel tsd-member"><a id="Formatted" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>Formatted</span><a href="#Formatted" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">Formatted</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;Formatted&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>Formatted - The formatted data will be returned.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/DataFormat.ts#L15">enums/DataFormat.ts:15</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="Raw" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>Raw</span><a href="#Raw" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">Raw</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;Raw&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>Raw - The raw data will be returned.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/DataFormat.ts#L9">enums/DataFormat.ts:9</a></li></ul></aside></section></section></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-index-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><h4 class="uppercase">Member Visibility</h4><form><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div><div class="tsd-theme-toggle"><h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><a href="#Formatted" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Formatted</span></a><a href="#Raw" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Raw</span></a></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>onspring-api-sdk</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><div class="tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script>
try {
const generateLinkElement = document.querySelector(".tsd-generator a");
const link = document.createElement("a");
Object.assign(link, {
href: "https://github.com/dmnsgn/typedoc-material-theme",
target: "_blank",
rel: "noreferrer",
innerText: "typedoc-material-theme."
});
generateLinkElement.insertAdjacentElement("afterend", link);
generateLinkElement.insertAdjacentText("afterend", " with ");
} catch (error) {
}
</script></body></html>
+179
View File
@@ -0,0 +1,179 @@
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>DelegateType | onspring-api-sdk</title><meta name="description" content="Documentation for onspring-api-sdk"/><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 defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><style>
@media (prefers-color-scheme: dark) {
:root {
--md-sys-color-primary: #adc6ff;
--md-sys-color-on-primary: #002e6a;
--md-sys-color-primary-container: #10448f;
--md-sys-color-on-primary-container: #d8e2ff;
--md-sys-color-secondary: #bfc6dc;
--md-sys-color-on-secondary: #293041;
--md-sys-color-secondary-container: #3f4759;
--md-sys-color-on-secondary-container: #dbe2f9;
--md-sys-color-tertiary: #debcdf;
--md-sys-color-on-tertiary: #402843;
--md-sys-color-tertiary-container: #583e5b;
--md-sys-color-on-tertiary-container: #fcd7fb;
--md-sys-color-error: #ffb4ab;
--md-sys-color-on-error: #690005;
--md-sys-color-error-container: #93000a;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-background: #1b1b1f;
--md-sys-color-on-background: #e3e2e6;
--md-sys-color-surface: #1b1b1f;
--md-sys-color-on-surface: #e3e2e6;
--md-sys-color-surface-variant: #44474f;
--md-sys-color-on-surface-variant: #c4c6d0;
--md-sys-color-outline: #8e9099;
--md-sys-color-outline-variant: #44474f;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #e3e2e6;
--md-sys-color-inverse-on-surface: #303034;
--md-sys-color-inverse-primary: #325da8;
--md-sys-color-surface-dim: #121316;
--md-sys-color-surface-bright: #38393c;
--md-sys-color-surface-container-lowest: #0d0e11;
--md-sys-color-surface-container-low: #1b1b1f;
--md-sys-color-surface-container: #1f1f23;
--md-sys-color-surface-container-high: #292a2d;
--md-sys-color-surface-container-highest: #343538
}
}
:root[data-theme="dark"] {
--md-sys-color-primary: #adc6ff;
--md-sys-color-on-primary: #002e6a;
--md-sys-color-primary-container: #10448f;
--md-sys-color-on-primary-container: #d8e2ff;
--md-sys-color-secondary: #bfc6dc;
--md-sys-color-on-secondary: #293041;
--md-sys-color-secondary-container: #3f4759;
--md-sys-color-on-secondary-container: #dbe2f9;
--md-sys-color-tertiary: #debcdf;
--md-sys-color-on-tertiary: #402843;
--md-sys-color-tertiary-container: #583e5b;
--md-sys-color-on-tertiary-container: #fcd7fb;
--md-sys-color-error: #ffb4ab;
--md-sys-color-on-error: #690005;
--md-sys-color-error-container: #93000a;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-background: #1b1b1f;
--md-sys-color-on-background: #e3e2e6;
--md-sys-color-surface: #1b1b1f;
--md-sys-color-on-surface: #e3e2e6;
--md-sys-color-surface-variant: #44474f;
--md-sys-color-on-surface-variant: #c4c6d0;
--md-sys-color-outline: #8e9099;
--md-sys-color-outline-variant: #44474f;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #e3e2e6;
--md-sys-color-inverse-on-surface: #303034;
--md-sys-color-inverse-primary: #325da8;
--md-sys-color-surface-dim: #121316;
--md-sys-color-surface-bright: #38393c;
--md-sys-color-surface-container-lowest: #0d0e11;
--md-sys-color-surface-container-low: #1b1b1f;
--md-sys-color-surface-container: #1f1f23;
--md-sys-color-surface-container-high: #292a2d;
--md-sys-color-surface-container-highest: #343538
}
@media (prefers-color-scheme: light) {
:root {
--md-sys-color-primary: #325da8;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-primary-container: #d8e2ff;
--md-sys-color-on-primary-container: #001a42;
--md-sys-color-secondary: #575e71;
--md-sys-color-on-secondary: #ffffff;
--md-sys-color-secondary-container: #dbe2f9;
--md-sys-color-on-secondary-container: #141b2c;
--md-sys-color-tertiary: #715573;
--md-sys-color-on-tertiary: #ffffff;
--md-sys-color-tertiary-container: #fcd7fb;
--md-sys-color-on-tertiary-container: #29132d;
--md-sys-color-error: #ba1a1a;
--md-sys-color-on-error: #ffffff;
--md-sys-color-error-container: #ffdad6;
--md-sys-color-on-error-container: #410002;
--md-sys-color-background: #fefbff;
--md-sys-color-on-background: #1b1b1f;
--md-sys-color-surface: #fefbff;
--md-sys-color-on-surface: #1b1b1f;
--md-sys-color-surface-variant: #e1e2ec;
--md-sys-color-on-surface-variant: #44474f;
--md-sys-color-outline: #75777f;
--md-sys-color-outline-variant: #c4c6d0;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #303034;
--md-sys-color-inverse-on-surface: #f2f0f4;
--md-sys-color-inverse-primary: #adc6ff;
--md-sys-color-surface-dim: #dbd9dd;
--md-sys-color-surface-bright: #faf8fd;
--md-sys-color-surface-container-lowest: #ffffff;
--md-sys-color-surface-container-low: #f5f3f7;
--md-sys-color-surface-container: #efedf1;
--md-sys-color-surface-container-high: #e9e7ec;
--md-sys-color-surface-container-highest: #e3e2e6
}
}
:root[data-theme="light"] {
--md-sys-color-primary: #325da8;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-primary-container: #d8e2ff;
--md-sys-color-on-primary-container: #001a42;
--md-sys-color-secondary: #575e71;
--md-sys-color-on-secondary: #ffffff;
--md-sys-color-secondary-container: #dbe2f9;
--md-sys-color-on-secondary-container: #141b2c;
--md-sys-color-tertiary: #715573;
--md-sys-color-on-tertiary: #ffffff;
--md-sys-color-tertiary-container: #fcd7fb;
--md-sys-color-on-tertiary-container: #29132d;
--md-sys-color-error: #ba1a1a;
--md-sys-color-on-error: #ffffff;
--md-sys-color-error-container: #ffdad6;
--md-sys-color-on-error-container: #410002;
--md-sys-color-background: #fefbff;
--md-sys-color-on-background: #1b1b1f;
--md-sys-color-surface: #fefbff;
--md-sys-color-on-surface: #1b1b1f;
--md-sys-color-surface-variant: #e1e2ec;
--md-sys-color-on-surface-variant: #44474f;
--md-sys-color-outline: #75777f;
--md-sys-color-outline-variant: #c4c6d0;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #303034;
--md-sys-color-inverse-on-surface: #f2f0f4;
--md-sys-color-inverse-primary: #adc6ff;
--md-sys-color-surface-dim: #dbd9dd;
--md-sys-color-surface-bright: #faf8fd;
--md-sys-color-surface-container-lowest: #ffffff;
--md-sys-color-surface-container-low: #f5f3f7;
--md-sys-color-surface-container: #efedf1;
--md-sys-color-surface-container-high: #e9e7ec;
--md-sys-color-surface-container-highest: #e3e2e6
}
</style><link rel="stylesheet" href="../assets/material-style.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></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">onspring-api-sdk</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../modules.html">onspring-api-sdk</a></li><li><a href="DelegateType.html">DelegateType</a></li></ul><h1>Enumeration DelegateType</h1></div><section class="tsd-panel tsd-comment"><div class="tsd-comment tsd-typography"><p>DelegateType - The type of delegate</p>
</div><div class="tsd-comment tsd-typography"></div></section><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/DelegateType.ts#L4">enums/DelegateType.ts:4</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Enumeration Members</h3><div class="tsd-index-list"><a href="DelegateType.html#External" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>External</span></a>
<a href="DelegateType.html#Internal" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Internal</span></a>
</div></section></div></details></section></section><section class="tsd-panel-group tsd-member-group"><h2>Enumeration Members</h2><section class="tsd-panel tsd-member"><a id="External" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>External</span><a href="#External" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">External</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;External&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>External - The delegate is external.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/DelegateType.ts#L9">enums/DelegateType.ts:9</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="Internal" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>Internal</span><a href="#Internal" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">Internal</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;Internal&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>Internal - The delegate is internal.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/DelegateType.ts#L15">enums/DelegateType.ts:15</a></li></ul></aside></section></section></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-index-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><h4 class="uppercase">Member Visibility</h4><form><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div><div class="tsd-theme-toggle"><h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><a href="#External" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>External</span></a><a href="#Internal" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Internal</span></a></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>onspring-api-sdk</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><div class="tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script>
try {
const generateLinkElement = document.querySelector(".tsd-generator a");
const link = document.createElement("a");
Object.assign(link, {
href: "https://github.com/dmnsgn/typedoc-material-theme",
target: "_blank",
rel: "noreferrer",
innerText: "typedoc-material-theme."
});
generateLinkElement.insertAdjacentElement("afterend", link);
generateLinkElement.insertAdjacentText("afterend", " with ");
} catch (error) {
}
</script></body></html>
+181
View File
@@ -0,0 +1,181 @@
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FieldStatus | onspring-api-sdk</title><meta name="description" content="Documentation for onspring-api-sdk"/><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 defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><style>
@media (prefers-color-scheme: dark) {
:root {
--md-sys-color-primary: #adc6ff;
--md-sys-color-on-primary: #002e6a;
--md-sys-color-primary-container: #10448f;
--md-sys-color-on-primary-container: #d8e2ff;
--md-sys-color-secondary: #bfc6dc;
--md-sys-color-on-secondary: #293041;
--md-sys-color-secondary-container: #3f4759;
--md-sys-color-on-secondary-container: #dbe2f9;
--md-sys-color-tertiary: #debcdf;
--md-sys-color-on-tertiary: #402843;
--md-sys-color-tertiary-container: #583e5b;
--md-sys-color-on-tertiary-container: #fcd7fb;
--md-sys-color-error: #ffb4ab;
--md-sys-color-on-error: #690005;
--md-sys-color-error-container: #93000a;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-background: #1b1b1f;
--md-sys-color-on-background: #e3e2e6;
--md-sys-color-surface: #1b1b1f;
--md-sys-color-on-surface: #e3e2e6;
--md-sys-color-surface-variant: #44474f;
--md-sys-color-on-surface-variant: #c4c6d0;
--md-sys-color-outline: #8e9099;
--md-sys-color-outline-variant: #44474f;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #e3e2e6;
--md-sys-color-inverse-on-surface: #303034;
--md-sys-color-inverse-primary: #325da8;
--md-sys-color-surface-dim: #121316;
--md-sys-color-surface-bright: #38393c;
--md-sys-color-surface-container-lowest: #0d0e11;
--md-sys-color-surface-container-low: #1b1b1f;
--md-sys-color-surface-container: #1f1f23;
--md-sys-color-surface-container-high: #292a2d;
--md-sys-color-surface-container-highest: #343538
}
}
:root[data-theme="dark"] {
--md-sys-color-primary: #adc6ff;
--md-sys-color-on-primary: #002e6a;
--md-sys-color-primary-container: #10448f;
--md-sys-color-on-primary-container: #d8e2ff;
--md-sys-color-secondary: #bfc6dc;
--md-sys-color-on-secondary: #293041;
--md-sys-color-secondary-container: #3f4759;
--md-sys-color-on-secondary-container: #dbe2f9;
--md-sys-color-tertiary: #debcdf;
--md-sys-color-on-tertiary: #402843;
--md-sys-color-tertiary-container: #583e5b;
--md-sys-color-on-tertiary-container: #fcd7fb;
--md-sys-color-error: #ffb4ab;
--md-sys-color-on-error: #690005;
--md-sys-color-error-container: #93000a;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-background: #1b1b1f;
--md-sys-color-on-background: #e3e2e6;
--md-sys-color-surface: #1b1b1f;
--md-sys-color-on-surface: #e3e2e6;
--md-sys-color-surface-variant: #44474f;
--md-sys-color-on-surface-variant: #c4c6d0;
--md-sys-color-outline: #8e9099;
--md-sys-color-outline-variant: #44474f;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #e3e2e6;
--md-sys-color-inverse-on-surface: #303034;
--md-sys-color-inverse-primary: #325da8;
--md-sys-color-surface-dim: #121316;
--md-sys-color-surface-bright: #38393c;
--md-sys-color-surface-container-lowest: #0d0e11;
--md-sys-color-surface-container-low: #1b1b1f;
--md-sys-color-surface-container: #1f1f23;
--md-sys-color-surface-container-high: #292a2d;
--md-sys-color-surface-container-highest: #343538
}
@media (prefers-color-scheme: light) {
:root {
--md-sys-color-primary: #325da8;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-primary-container: #d8e2ff;
--md-sys-color-on-primary-container: #001a42;
--md-sys-color-secondary: #575e71;
--md-sys-color-on-secondary: #ffffff;
--md-sys-color-secondary-container: #dbe2f9;
--md-sys-color-on-secondary-container: #141b2c;
--md-sys-color-tertiary: #715573;
--md-sys-color-on-tertiary: #ffffff;
--md-sys-color-tertiary-container: #fcd7fb;
--md-sys-color-on-tertiary-container: #29132d;
--md-sys-color-error: #ba1a1a;
--md-sys-color-on-error: #ffffff;
--md-sys-color-error-container: #ffdad6;
--md-sys-color-on-error-container: #410002;
--md-sys-color-background: #fefbff;
--md-sys-color-on-background: #1b1b1f;
--md-sys-color-surface: #fefbff;
--md-sys-color-on-surface: #1b1b1f;
--md-sys-color-surface-variant: #e1e2ec;
--md-sys-color-on-surface-variant: #44474f;
--md-sys-color-outline: #75777f;
--md-sys-color-outline-variant: #c4c6d0;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #303034;
--md-sys-color-inverse-on-surface: #f2f0f4;
--md-sys-color-inverse-primary: #adc6ff;
--md-sys-color-surface-dim: #dbd9dd;
--md-sys-color-surface-bright: #faf8fd;
--md-sys-color-surface-container-lowest: #ffffff;
--md-sys-color-surface-container-low: #f5f3f7;
--md-sys-color-surface-container: #efedf1;
--md-sys-color-surface-container-high: #e9e7ec;
--md-sys-color-surface-container-highest: #e3e2e6
}
}
:root[data-theme="light"] {
--md-sys-color-primary: #325da8;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-primary-container: #d8e2ff;
--md-sys-color-on-primary-container: #001a42;
--md-sys-color-secondary: #575e71;
--md-sys-color-on-secondary: #ffffff;
--md-sys-color-secondary-container: #dbe2f9;
--md-sys-color-on-secondary-container: #141b2c;
--md-sys-color-tertiary: #715573;
--md-sys-color-on-tertiary: #ffffff;
--md-sys-color-tertiary-container: #fcd7fb;
--md-sys-color-on-tertiary-container: #29132d;
--md-sys-color-error: #ba1a1a;
--md-sys-color-on-error: #ffffff;
--md-sys-color-error-container: #ffdad6;
--md-sys-color-on-error-container: #410002;
--md-sys-color-background: #fefbff;
--md-sys-color-on-background: #1b1b1f;
--md-sys-color-surface: #fefbff;
--md-sys-color-on-surface: #1b1b1f;
--md-sys-color-surface-variant: #e1e2ec;
--md-sys-color-on-surface-variant: #44474f;
--md-sys-color-outline: #75777f;
--md-sys-color-outline-variant: #c4c6d0;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #303034;
--md-sys-color-inverse-on-surface: #f2f0f4;
--md-sys-color-inverse-primary: #adc6ff;
--md-sys-color-surface-dim: #dbd9dd;
--md-sys-color-surface-bright: #faf8fd;
--md-sys-color-surface-container-lowest: #ffffff;
--md-sys-color-surface-container-low: #f5f3f7;
--md-sys-color-surface-container: #efedf1;
--md-sys-color-surface-container-high: #e9e7ec;
--md-sys-color-surface-container-highest: #e3e2e6
}
</style><link rel="stylesheet" href="../assets/material-style.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></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">onspring-api-sdk</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../modules.html">onspring-api-sdk</a></li><li><a href="FieldStatus.html">FieldStatus</a></li></ul><h1>Enumeration FieldStatus</h1></div><section class="tsd-panel tsd-comment"><div class="tsd-comment tsd-typography"><p>FieldStatus - The status of a field.</p>
</div><div class="tsd-comment tsd-typography"></div></section><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/FieldStatus.ts#L4">enums/FieldStatus.ts:4</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Enumeration Members</h3><div class="tsd-index-list"><a href="FieldStatus.html#Disabled" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Disabled</span></a>
<a href="FieldStatus.html#Enabled" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Enabled</span></a>
<a href="FieldStatus.html#Invalid" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Invalid</span></a>
</div></section></div></details></section></section><section class="tsd-panel-group tsd-member-group"><h2>Enumeration Members</h2><section class="tsd-panel tsd-member"><a id="Disabled" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>Disabled</span><a href="#Disabled" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">Disabled</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;Disabled&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>Disabled - The field is disabled.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/FieldStatus.ts#L15">enums/FieldStatus.ts:15</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="Enabled" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>Enabled</span><a href="#Enabled" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">Enabled</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;Enabled&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>Enabled - The field is enabled.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/FieldStatus.ts#L9">enums/FieldStatus.ts:9</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="Invalid" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>Invalid</span><a href="#Invalid" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">Invalid</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;Invalid&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>Invalid - The field is invalid.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/FieldStatus.ts#L21">enums/FieldStatus.ts:21</a></li></ul></aside></section></section></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-index-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><h4 class="uppercase">Member Visibility</h4><form><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div><div class="tsd-theme-toggle"><h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><a href="#Disabled" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Disabled</span></a><a href="#Enabled" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Enabled</span></a><a href="#Invalid" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Invalid</span></a></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>onspring-api-sdk</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><div class="tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script>
try {
const generateLinkElement = document.querySelector(".tsd-generator a");
const link = document.createElement("a");
Object.assign(link, {
href: "https://github.com/dmnsgn/typedoc-material-theme",
target: "_blank",
rel: "noreferrer",
innerText: "typedoc-material-theme."
});
generateLinkElement.insertAdjacentElement("afterend", link);
generateLinkElement.insertAdjacentText("afterend", " with ");
} catch (error) {
}
</script></body></html>
File diff suppressed because one or more lines are too long
+181
View File
@@ -0,0 +1,181 @@
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FileStorageSite | onspring-api-sdk</title><meta name="description" content="Documentation for onspring-api-sdk"/><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 defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><style>
@media (prefers-color-scheme: dark) {
:root {
--md-sys-color-primary: #adc6ff;
--md-sys-color-on-primary: #002e6a;
--md-sys-color-primary-container: #10448f;
--md-sys-color-on-primary-container: #d8e2ff;
--md-sys-color-secondary: #bfc6dc;
--md-sys-color-on-secondary: #293041;
--md-sys-color-secondary-container: #3f4759;
--md-sys-color-on-secondary-container: #dbe2f9;
--md-sys-color-tertiary: #debcdf;
--md-sys-color-on-tertiary: #402843;
--md-sys-color-tertiary-container: #583e5b;
--md-sys-color-on-tertiary-container: #fcd7fb;
--md-sys-color-error: #ffb4ab;
--md-sys-color-on-error: #690005;
--md-sys-color-error-container: #93000a;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-background: #1b1b1f;
--md-sys-color-on-background: #e3e2e6;
--md-sys-color-surface: #1b1b1f;
--md-sys-color-on-surface: #e3e2e6;
--md-sys-color-surface-variant: #44474f;
--md-sys-color-on-surface-variant: #c4c6d0;
--md-sys-color-outline: #8e9099;
--md-sys-color-outline-variant: #44474f;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #e3e2e6;
--md-sys-color-inverse-on-surface: #303034;
--md-sys-color-inverse-primary: #325da8;
--md-sys-color-surface-dim: #121316;
--md-sys-color-surface-bright: #38393c;
--md-sys-color-surface-container-lowest: #0d0e11;
--md-sys-color-surface-container-low: #1b1b1f;
--md-sys-color-surface-container: #1f1f23;
--md-sys-color-surface-container-high: #292a2d;
--md-sys-color-surface-container-highest: #343538
}
}
:root[data-theme="dark"] {
--md-sys-color-primary: #adc6ff;
--md-sys-color-on-primary: #002e6a;
--md-sys-color-primary-container: #10448f;
--md-sys-color-on-primary-container: #d8e2ff;
--md-sys-color-secondary: #bfc6dc;
--md-sys-color-on-secondary: #293041;
--md-sys-color-secondary-container: #3f4759;
--md-sys-color-on-secondary-container: #dbe2f9;
--md-sys-color-tertiary: #debcdf;
--md-sys-color-on-tertiary: #402843;
--md-sys-color-tertiary-container: #583e5b;
--md-sys-color-on-tertiary-container: #fcd7fb;
--md-sys-color-error: #ffb4ab;
--md-sys-color-on-error: #690005;
--md-sys-color-error-container: #93000a;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-background: #1b1b1f;
--md-sys-color-on-background: #e3e2e6;
--md-sys-color-surface: #1b1b1f;
--md-sys-color-on-surface: #e3e2e6;
--md-sys-color-surface-variant: #44474f;
--md-sys-color-on-surface-variant: #c4c6d0;
--md-sys-color-outline: #8e9099;
--md-sys-color-outline-variant: #44474f;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #e3e2e6;
--md-sys-color-inverse-on-surface: #303034;
--md-sys-color-inverse-primary: #325da8;
--md-sys-color-surface-dim: #121316;
--md-sys-color-surface-bright: #38393c;
--md-sys-color-surface-container-lowest: #0d0e11;
--md-sys-color-surface-container-low: #1b1b1f;
--md-sys-color-surface-container: #1f1f23;
--md-sys-color-surface-container-high: #292a2d;
--md-sys-color-surface-container-highest: #343538
}
@media (prefers-color-scheme: light) {
:root {
--md-sys-color-primary: #325da8;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-primary-container: #d8e2ff;
--md-sys-color-on-primary-container: #001a42;
--md-sys-color-secondary: #575e71;
--md-sys-color-on-secondary: #ffffff;
--md-sys-color-secondary-container: #dbe2f9;
--md-sys-color-on-secondary-container: #141b2c;
--md-sys-color-tertiary: #715573;
--md-sys-color-on-tertiary: #ffffff;
--md-sys-color-tertiary-container: #fcd7fb;
--md-sys-color-on-tertiary-container: #29132d;
--md-sys-color-error: #ba1a1a;
--md-sys-color-on-error: #ffffff;
--md-sys-color-error-container: #ffdad6;
--md-sys-color-on-error-container: #410002;
--md-sys-color-background: #fefbff;
--md-sys-color-on-background: #1b1b1f;
--md-sys-color-surface: #fefbff;
--md-sys-color-on-surface: #1b1b1f;
--md-sys-color-surface-variant: #e1e2ec;
--md-sys-color-on-surface-variant: #44474f;
--md-sys-color-outline: #75777f;
--md-sys-color-outline-variant: #c4c6d0;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #303034;
--md-sys-color-inverse-on-surface: #f2f0f4;
--md-sys-color-inverse-primary: #adc6ff;
--md-sys-color-surface-dim: #dbd9dd;
--md-sys-color-surface-bright: #faf8fd;
--md-sys-color-surface-container-lowest: #ffffff;
--md-sys-color-surface-container-low: #f5f3f7;
--md-sys-color-surface-container: #efedf1;
--md-sys-color-surface-container-high: #e9e7ec;
--md-sys-color-surface-container-highest: #e3e2e6
}
}
:root[data-theme="light"] {
--md-sys-color-primary: #325da8;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-primary-container: #d8e2ff;
--md-sys-color-on-primary-container: #001a42;
--md-sys-color-secondary: #575e71;
--md-sys-color-on-secondary: #ffffff;
--md-sys-color-secondary-container: #dbe2f9;
--md-sys-color-on-secondary-container: #141b2c;
--md-sys-color-tertiary: #715573;
--md-sys-color-on-tertiary: #ffffff;
--md-sys-color-tertiary-container: #fcd7fb;
--md-sys-color-on-tertiary-container: #29132d;
--md-sys-color-error: #ba1a1a;
--md-sys-color-on-error: #ffffff;
--md-sys-color-error-container: #ffdad6;
--md-sys-color-on-error-container: #410002;
--md-sys-color-background: #fefbff;
--md-sys-color-on-background: #1b1b1f;
--md-sys-color-surface: #fefbff;
--md-sys-color-on-surface: #1b1b1f;
--md-sys-color-surface-variant: #e1e2ec;
--md-sys-color-on-surface-variant: #44474f;
--md-sys-color-outline: #75777f;
--md-sys-color-outline-variant: #c4c6d0;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #303034;
--md-sys-color-inverse-on-surface: #f2f0f4;
--md-sys-color-inverse-primary: #adc6ff;
--md-sys-color-surface-dim: #dbd9dd;
--md-sys-color-surface-bright: #faf8fd;
--md-sys-color-surface-container-lowest: #ffffff;
--md-sys-color-surface-container-low: #f5f3f7;
--md-sys-color-surface-container: #efedf1;
--md-sys-color-surface-container-high: #e9e7ec;
--md-sys-color-surface-container-highest: #e3e2e6
}
</style><link rel="stylesheet" href="../assets/material-style.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></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">onspring-api-sdk</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../modules.html">onspring-api-sdk</a></li><li><a href="FileStorageSite.html">FileStorageSite</a></li></ul><h1>Enumeration FileStorageSite</h1></div><section class="tsd-panel tsd-comment"><div class="tsd-comment tsd-typography"><p>FileStorageSite - The site where the file is stored.</p>
</div><div class="tsd-comment tsd-typography"></div></section><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/FileStorageSite.ts#L4">enums/FileStorageSite.ts:4</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Enumeration Members</h3><div class="tsd-index-list"><a href="FileStorageSite.html#GoogleDrive" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Google<wbr/>Drive</span></a>
<a href="FileStorageSite.html#Internal" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Internal</span></a>
<a href="FileStorageSite.html#OneDrive" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>One<wbr/>Drive</span></a>
</div></section></div></details></section></section><section class="tsd-panel-group tsd-member-group"><h2>Enumeration Members</h2><section class="tsd-panel tsd-member"><a id="GoogleDrive" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>Google<wbr/>Drive</span><a href="#GoogleDrive" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">Google<wbr/>Drive</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;GoogleDrive&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>GoogleDrive - The file is stored in Google Drive.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/FileStorageSite.ts#L21">enums/FileStorageSite.ts:21</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="Internal" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>Internal</span><a href="#Internal" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">Internal</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;Internal&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>Internal - The file is stored in the internal file storage.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/FileStorageSite.ts#L9">enums/FileStorageSite.ts:9</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="OneDrive" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>One<wbr/>Drive</span><a href="#OneDrive" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">One<wbr/>Drive</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;OneDrive&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>OneDrive - The file is stored in OneDrive.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/FileStorageSite.ts#L15">enums/FileStorageSite.ts:15</a></li></ul></aside></section></section></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-index-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><h4 class="uppercase">Member Visibility</h4><form><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div><div class="tsd-theme-toggle"><h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><a href="#GoogleDrive" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Google<wbr/>Drive</span></a><a href="#Internal" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Internal</span></a><a href="#OneDrive" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>One<wbr/>Drive</span></a></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>onspring-api-sdk</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><div class="tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script>
try {
const generateLinkElement = document.querySelector(".tsd-generator a");
const link = document.createElement("a");
Object.assign(link, {
href: "https://github.com/dmnsgn/typedoc-material-theme",
target: "_blank",
rel: "noreferrer",
innerText: "typedoc-material-theme."
});
generateLinkElement.insertAdjacentElement("afterend", link);
generateLinkElement.insertAdjacentText("afterend", " with ");
} catch (error) {
}
</script></body></html>
File diff suppressed because one or more lines are too long
+183
View File
@@ -0,0 +1,183 @@
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>FormulaOutputType | onspring-api-sdk</title><meta name="description" content="Documentation for onspring-api-sdk"/><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 defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><style>
@media (prefers-color-scheme: dark) {
:root {
--md-sys-color-primary: #adc6ff;
--md-sys-color-on-primary: #002e6a;
--md-sys-color-primary-container: #10448f;
--md-sys-color-on-primary-container: #d8e2ff;
--md-sys-color-secondary: #bfc6dc;
--md-sys-color-on-secondary: #293041;
--md-sys-color-secondary-container: #3f4759;
--md-sys-color-on-secondary-container: #dbe2f9;
--md-sys-color-tertiary: #debcdf;
--md-sys-color-on-tertiary: #402843;
--md-sys-color-tertiary-container: #583e5b;
--md-sys-color-on-tertiary-container: #fcd7fb;
--md-sys-color-error: #ffb4ab;
--md-sys-color-on-error: #690005;
--md-sys-color-error-container: #93000a;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-background: #1b1b1f;
--md-sys-color-on-background: #e3e2e6;
--md-sys-color-surface: #1b1b1f;
--md-sys-color-on-surface: #e3e2e6;
--md-sys-color-surface-variant: #44474f;
--md-sys-color-on-surface-variant: #c4c6d0;
--md-sys-color-outline: #8e9099;
--md-sys-color-outline-variant: #44474f;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #e3e2e6;
--md-sys-color-inverse-on-surface: #303034;
--md-sys-color-inverse-primary: #325da8;
--md-sys-color-surface-dim: #121316;
--md-sys-color-surface-bright: #38393c;
--md-sys-color-surface-container-lowest: #0d0e11;
--md-sys-color-surface-container-low: #1b1b1f;
--md-sys-color-surface-container: #1f1f23;
--md-sys-color-surface-container-high: #292a2d;
--md-sys-color-surface-container-highest: #343538
}
}
:root[data-theme="dark"] {
--md-sys-color-primary: #adc6ff;
--md-sys-color-on-primary: #002e6a;
--md-sys-color-primary-container: #10448f;
--md-sys-color-on-primary-container: #d8e2ff;
--md-sys-color-secondary: #bfc6dc;
--md-sys-color-on-secondary: #293041;
--md-sys-color-secondary-container: #3f4759;
--md-sys-color-on-secondary-container: #dbe2f9;
--md-sys-color-tertiary: #debcdf;
--md-sys-color-on-tertiary: #402843;
--md-sys-color-tertiary-container: #583e5b;
--md-sys-color-on-tertiary-container: #fcd7fb;
--md-sys-color-error: #ffb4ab;
--md-sys-color-on-error: #690005;
--md-sys-color-error-container: #93000a;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-background: #1b1b1f;
--md-sys-color-on-background: #e3e2e6;
--md-sys-color-surface: #1b1b1f;
--md-sys-color-on-surface: #e3e2e6;
--md-sys-color-surface-variant: #44474f;
--md-sys-color-on-surface-variant: #c4c6d0;
--md-sys-color-outline: #8e9099;
--md-sys-color-outline-variant: #44474f;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #e3e2e6;
--md-sys-color-inverse-on-surface: #303034;
--md-sys-color-inverse-primary: #325da8;
--md-sys-color-surface-dim: #121316;
--md-sys-color-surface-bright: #38393c;
--md-sys-color-surface-container-lowest: #0d0e11;
--md-sys-color-surface-container-low: #1b1b1f;
--md-sys-color-surface-container: #1f1f23;
--md-sys-color-surface-container-high: #292a2d;
--md-sys-color-surface-container-highest: #343538
}
@media (prefers-color-scheme: light) {
:root {
--md-sys-color-primary: #325da8;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-primary-container: #d8e2ff;
--md-sys-color-on-primary-container: #001a42;
--md-sys-color-secondary: #575e71;
--md-sys-color-on-secondary: #ffffff;
--md-sys-color-secondary-container: #dbe2f9;
--md-sys-color-on-secondary-container: #141b2c;
--md-sys-color-tertiary: #715573;
--md-sys-color-on-tertiary: #ffffff;
--md-sys-color-tertiary-container: #fcd7fb;
--md-sys-color-on-tertiary-container: #29132d;
--md-sys-color-error: #ba1a1a;
--md-sys-color-on-error: #ffffff;
--md-sys-color-error-container: #ffdad6;
--md-sys-color-on-error-container: #410002;
--md-sys-color-background: #fefbff;
--md-sys-color-on-background: #1b1b1f;
--md-sys-color-surface: #fefbff;
--md-sys-color-on-surface: #1b1b1f;
--md-sys-color-surface-variant: #e1e2ec;
--md-sys-color-on-surface-variant: #44474f;
--md-sys-color-outline: #75777f;
--md-sys-color-outline-variant: #c4c6d0;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #303034;
--md-sys-color-inverse-on-surface: #f2f0f4;
--md-sys-color-inverse-primary: #adc6ff;
--md-sys-color-surface-dim: #dbd9dd;
--md-sys-color-surface-bright: #faf8fd;
--md-sys-color-surface-container-lowest: #ffffff;
--md-sys-color-surface-container-low: #f5f3f7;
--md-sys-color-surface-container: #efedf1;
--md-sys-color-surface-container-high: #e9e7ec;
--md-sys-color-surface-container-highest: #e3e2e6
}
}
:root[data-theme="light"] {
--md-sys-color-primary: #325da8;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-primary-container: #d8e2ff;
--md-sys-color-on-primary-container: #001a42;
--md-sys-color-secondary: #575e71;
--md-sys-color-on-secondary: #ffffff;
--md-sys-color-secondary-container: #dbe2f9;
--md-sys-color-on-secondary-container: #141b2c;
--md-sys-color-tertiary: #715573;
--md-sys-color-on-tertiary: #ffffff;
--md-sys-color-tertiary-container: #fcd7fb;
--md-sys-color-on-tertiary-container: #29132d;
--md-sys-color-error: #ba1a1a;
--md-sys-color-on-error: #ffffff;
--md-sys-color-error-container: #ffdad6;
--md-sys-color-on-error-container: #410002;
--md-sys-color-background: #fefbff;
--md-sys-color-on-background: #1b1b1f;
--md-sys-color-surface: #fefbff;
--md-sys-color-on-surface: #1b1b1f;
--md-sys-color-surface-variant: #e1e2ec;
--md-sys-color-on-surface-variant: #44474f;
--md-sys-color-outline: #75777f;
--md-sys-color-outline-variant: #c4c6d0;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #303034;
--md-sys-color-inverse-on-surface: #f2f0f4;
--md-sys-color-inverse-primary: #adc6ff;
--md-sys-color-surface-dim: #dbd9dd;
--md-sys-color-surface-bright: #faf8fd;
--md-sys-color-surface-container-lowest: #ffffff;
--md-sys-color-surface-container-low: #f5f3f7;
--md-sys-color-surface-container: #efedf1;
--md-sys-color-surface-container-high: #e9e7ec;
--md-sys-color-surface-container-highest: #e3e2e6
}
</style><link rel="stylesheet" href="../assets/material-style.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></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">onspring-api-sdk</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../modules.html">onspring-api-sdk</a></li><li><a href="FormulaOutputType.html">FormulaOutputType</a></li></ul><h1>Enumeration FormulaOutputType</h1></div><section class="tsd-panel tsd-comment"><div class="tsd-comment tsd-typography"><p>FormulaOutputType - The type of the formula output.</p>
</div><div class="tsd-comment tsd-typography"></div></section><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/FormulaOutputType.ts#L4">enums/FormulaOutputType.ts:4</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Enumeration Members</h3><div class="tsd-index-list"><a href="FormulaOutputType.html#DateAndTime" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Date<wbr/>And<wbr/>Time</span></a>
<a href="FormulaOutputType.html#ListValue" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>List<wbr/>Value</span></a>
<a href="FormulaOutputType.html#Numeric" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Numeric</span></a>
<a href="FormulaOutputType.html#Text" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Text</span></a>
</div></section></div></details></section></section><section class="tsd-panel-group tsd-member-group"><h2>Enumeration Members</h2><section class="tsd-panel tsd-member"><a id="DateAndTime" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>Date<wbr/>And<wbr/>Time</span><a href="#DateAndTime" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">Date<wbr/>And<wbr/>Time</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;DateAndTime&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>DateAndTime - The formula output is a date and time value.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/FormulaOutputType.ts#L21">enums/FormulaOutputType.ts:21</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="ListValue" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>List<wbr/>Value</span><a href="#ListValue" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">List<wbr/>Value</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;ListValue&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>ListValue - The formula output is a list value.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/FormulaOutputType.ts#L27">enums/FormulaOutputType.ts:27</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="Numeric" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>Numeric</span><a href="#Numeric" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">Numeric</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;Numeric&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>Numeric - The formula output is a numeric value.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/FormulaOutputType.ts#L15">enums/FormulaOutputType.ts:15</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="Text" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>Text</span><a href="#Text" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">Text</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;Text&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>Text - The formula output is a text value.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/FormulaOutputType.ts#L9">enums/FormulaOutputType.ts:9</a></li></ul></aside></section></section></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-index-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><h4 class="uppercase">Member Visibility</h4><form><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div><div class="tsd-theme-toggle"><h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><a href="#DateAndTime" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Date<wbr/>And<wbr/>Time</span></a><a href="#ListValue" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>List<wbr/>Value</span></a><a href="#Numeric" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Numeric</span></a><a href="#Text" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Text</span></a></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>onspring-api-sdk</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><div class="tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script>
try {
const generateLinkElement = document.querySelector(".tsd-generator a");
const link = document.createElement("a");
Object.assign(link, {
href: "https://github.com/dmnsgn/typedoc-material-theme",
target: "_blank",
rel: "noreferrer",
innerText: "typedoc-material-theme."
});
generateLinkElement.insertAdjacentElement("afterend", link);
generateLinkElement.insertAdjacentText("afterend", " with ");
} catch (error) {
}
</script></body></html>
File diff suppressed because one or more lines are too long
+179
View File
@@ -0,0 +1,179 @@
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Multiplicity | onspring-api-sdk</title><meta name="description" content="Documentation for onspring-api-sdk"/><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 defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><style>
@media (prefers-color-scheme: dark) {
:root {
--md-sys-color-primary: #adc6ff;
--md-sys-color-on-primary: #002e6a;
--md-sys-color-primary-container: #10448f;
--md-sys-color-on-primary-container: #d8e2ff;
--md-sys-color-secondary: #bfc6dc;
--md-sys-color-on-secondary: #293041;
--md-sys-color-secondary-container: #3f4759;
--md-sys-color-on-secondary-container: #dbe2f9;
--md-sys-color-tertiary: #debcdf;
--md-sys-color-on-tertiary: #402843;
--md-sys-color-tertiary-container: #583e5b;
--md-sys-color-on-tertiary-container: #fcd7fb;
--md-sys-color-error: #ffb4ab;
--md-sys-color-on-error: #690005;
--md-sys-color-error-container: #93000a;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-background: #1b1b1f;
--md-sys-color-on-background: #e3e2e6;
--md-sys-color-surface: #1b1b1f;
--md-sys-color-on-surface: #e3e2e6;
--md-sys-color-surface-variant: #44474f;
--md-sys-color-on-surface-variant: #c4c6d0;
--md-sys-color-outline: #8e9099;
--md-sys-color-outline-variant: #44474f;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #e3e2e6;
--md-sys-color-inverse-on-surface: #303034;
--md-sys-color-inverse-primary: #325da8;
--md-sys-color-surface-dim: #121316;
--md-sys-color-surface-bright: #38393c;
--md-sys-color-surface-container-lowest: #0d0e11;
--md-sys-color-surface-container-low: #1b1b1f;
--md-sys-color-surface-container: #1f1f23;
--md-sys-color-surface-container-high: #292a2d;
--md-sys-color-surface-container-highest: #343538
}
}
:root[data-theme="dark"] {
--md-sys-color-primary: #adc6ff;
--md-sys-color-on-primary: #002e6a;
--md-sys-color-primary-container: #10448f;
--md-sys-color-on-primary-container: #d8e2ff;
--md-sys-color-secondary: #bfc6dc;
--md-sys-color-on-secondary: #293041;
--md-sys-color-secondary-container: #3f4759;
--md-sys-color-on-secondary-container: #dbe2f9;
--md-sys-color-tertiary: #debcdf;
--md-sys-color-on-tertiary: #402843;
--md-sys-color-tertiary-container: #583e5b;
--md-sys-color-on-tertiary-container: #fcd7fb;
--md-sys-color-error: #ffb4ab;
--md-sys-color-on-error: #690005;
--md-sys-color-error-container: #93000a;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-background: #1b1b1f;
--md-sys-color-on-background: #e3e2e6;
--md-sys-color-surface: #1b1b1f;
--md-sys-color-on-surface: #e3e2e6;
--md-sys-color-surface-variant: #44474f;
--md-sys-color-on-surface-variant: #c4c6d0;
--md-sys-color-outline: #8e9099;
--md-sys-color-outline-variant: #44474f;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #e3e2e6;
--md-sys-color-inverse-on-surface: #303034;
--md-sys-color-inverse-primary: #325da8;
--md-sys-color-surface-dim: #121316;
--md-sys-color-surface-bright: #38393c;
--md-sys-color-surface-container-lowest: #0d0e11;
--md-sys-color-surface-container-low: #1b1b1f;
--md-sys-color-surface-container: #1f1f23;
--md-sys-color-surface-container-high: #292a2d;
--md-sys-color-surface-container-highest: #343538
}
@media (prefers-color-scheme: light) {
:root {
--md-sys-color-primary: #325da8;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-primary-container: #d8e2ff;
--md-sys-color-on-primary-container: #001a42;
--md-sys-color-secondary: #575e71;
--md-sys-color-on-secondary: #ffffff;
--md-sys-color-secondary-container: #dbe2f9;
--md-sys-color-on-secondary-container: #141b2c;
--md-sys-color-tertiary: #715573;
--md-sys-color-on-tertiary: #ffffff;
--md-sys-color-tertiary-container: #fcd7fb;
--md-sys-color-on-tertiary-container: #29132d;
--md-sys-color-error: #ba1a1a;
--md-sys-color-on-error: #ffffff;
--md-sys-color-error-container: #ffdad6;
--md-sys-color-on-error-container: #410002;
--md-sys-color-background: #fefbff;
--md-sys-color-on-background: #1b1b1f;
--md-sys-color-surface: #fefbff;
--md-sys-color-on-surface: #1b1b1f;
--md-sys-color-surface-variant: #e1e2ec;
--md-sys-color-on-surface-variant: #44474f;
--md-sys-color-outline: #75777f;
--md-sys-color-outline-variant: #c4c6d0;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #303034;
--md-sys-color-inverse-on-surface: #f2f0f4;
--md-sys-color-inverse-primary: #adc6ff;
--md-sys-color-surface-dim: #dbd9dd;
--md-sys-color-surface-bright: #faf8fd;
--md-sys-color-surface-container-lowest: #ffffff;
--md-sys-color-surface-container-low: #f5f3f7;
--md-sys-color-surface-container: #efedf1;
--md-sys-color-surface-container-high: #e9e7ec;
--md-sys-color-surface-container-highest: #e3e2e6
}
}
:root[data-theme="light"] {
--md-sys-color-primary: #325da8;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-primary-container: #d8e2ff;
--md-sys-color-on-primary-container: #001a42;
--md-sys-color-secondary: #575e71;
--md-sys-color-on-secondary: #ffffff;
--md-sys-color-secondary-container: #dbe2f9;
--md-sys-color-on-secondary-container: #141b2c;
--md-sys-color-tertiary: #715573;
--md-sys-color-on-tertiary: #ffffff;
--md-sys-color-tertiary-container: #fcd7fb;
--md-sys-color-on-tertiary-container: #29132d;
--md-sys-color-error: #ba1a1a;
--md-sys-color-on-error: #ffffff;
--md-sys-color-error-container: #ffdad6;
--md-sys-color-on-error-container: #410002;
--md-sys-color-background: #fefbff;
--md-sys-color-on-background: #1b1b1f;
--md-sys-color-surface: #fefbff;
--md-sys-color-on-surface: #1b1b1f;
--md-sys-color-surface-variant: #e1e2ec;
--md-sys-color-on-surface-variant: #44474f;
--md-sys-color-outline: #75777f;
--md-sys-color-outline-variant: #c4c6d0;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #303034;
--md-sys-color-inverse-on-surface: #f2f0f4;
--md-sys-color-inverse-primary: #adc6ff;
--md-sys-color-surface-dim: #dbd9dd;
--md-sys-color-surface-bright: #faf8fd;
--md-sys-color-surface-container-lowest: #ffffff;
--md-sys-color-surface-container-low: #f5f3f7;
--md-sys-color-surface-container: #efedf1;
--md-sys-color-surface-container-high: #e9e7ec;
--md-sys-color-surface-container-highest: #e3e2e6
}
</style><link rel="stylesheet" href="../assets/material-style.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></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">onspring-api-sdk</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../modules.html">onspring-api-sdk</a></li><li><a href="Multiplicity.html">Multiplicity</a></li></ul><h1>Enumeration Multiplicity</h1></div><section class="tsd-panel tsd-comment"><div class="tsd-comment tsd-typography"><p>Multiplicity - The multiplicity type of the object.</p>
</div><div class="tsd-comment tsd-typography"></div></section><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/Multiplicity.ts#L4">enums/Multiplicity.ts:4</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Enumeration Members</h3><div class="tsd-index-list"><a href="Multiplicity.html#MultiSelect" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Multi<wbr/>Select</span></a>
<a href="Multiplicity.html#SingleSelect" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Single<wbr/>Select</span></a>
</div></section></div></details></section></section><section class="tsd-panel-group tsd-member-group"><h2>Enumeration Members</h2><section class="tsd-panel tsd-member"><a id="MultiSelect" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>Multi<wbr/>Select</span><a href="#MultiSelect" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">Multi<wbr/>Select</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;MultiSelect&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>MultiSelect - Multi select multiplicity.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/Multiplicity.ts#L15">enums/Multiplicity.ts:15</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="SingleSelect" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>Single<wbr/>Select</span><a href="#SingleSelect" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">Single<wbr/>Select</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;SingleSelect&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>SingleSelect - Single select multiplicity.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/Multiplicity.ts#L9">enums/Multiplicity.ts:9</a></li></ul></aside></section></section></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-index-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><h4 class="uppercase">Member Visibility</h4><form><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div><div class="tsd-theme-toggle"><h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><a href="#MultiSelect" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Multi<wbr/>Select</span></a><a href="#SingleSelect" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Single<wbr/>Select</span></a></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>onspring-api-sdk</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><div class="tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script>
try {
const generateLinkElement = document.querySelector(".tsd-generator a");
const link = document.createElement("a");
Object.assign(link, {
href: "https://github.com/dmnsgn/typedoc-material-theme",
target: "_blank",
rel: "noreferrer",
innerText: "typedoc-material-theme."
});
generateLinkElement.insertAdjacentElement("afterend", link);
generateLinkElement.insertAdjacentText("afterend", " with ");
} catch (error) {
}
</script></body></html>
File diff suppressed because one or more lines are too long
+179
View File
@@ -0,0 +1,179 @@
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ReportDataType | onspring-api-sdk</title><meta name="description" content="Documentation for onspring-api-sdk"/><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 defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><style>
@media (prefers-color-scheme: dark) {
:root {
--md-sys-color-primary: #adc6ff;
--md-sys-color-on-primary: #002e6a;
--md-sys-color-primary-container: #10448f;
--md-sys-color-on-primary-container: #d8e2ff;
--md-sys-color-secondary: #bfc6dc;
--md-sys-color-on-secondary: #293041;
--md-sys-color-secondary-container: #3f4759;
--md-sys-color-on-secondary-container: #dbe2f9;
--md-sys-color-tertiary: #debcdf;
--md-sys-color-on-tertiary: #402843;
--md-sys-color-tertiary-container: #583e5b;
--md-sys-color-on-tertiary-container: #fcd7fb;
--md-sys-color-error: #ffb4ab;
--md-sys-color-on-error: #690005;
--md-sys-color-error-container: #93000a;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-background: #1b1b1f;
--md-sys-color-on-background: #e3e2e6;
--md-sys-color-surface: #1b1b1f;
--md-sys-color-on-surface: #e3e2e6;
--md-sys-color-surface-variant: #44474f;
--md-sys-color-on-surface-variant: #c4c6d0;
--md-sys-color-outline: #8e9099;
--md-sys-color-outline-variant: #44474f;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #e3e2e6;
--md-sys-color-inverse-on-surface: #303034;
--md-sys-color-inverse-primary: #325da8;
--md-sys-color-surface-dim: #121316;
--md-sys-color-surface-bright: #38393c;
--md-sys-color-surface-container-lowest: #0d0e11;
--md-sys-color-surface-container-low: #1b1b1f;
--md-sys-color-surface-container: #1f1f23;
--md-sys-color-surface-container-high: #292a2d;
--md-sys-color-surface-container-highest: #343538
}
}
:root[data-theme="dark"] {
--md-sys-color-primary: #adc6ff;
--md-sys-color-on-primary: #002e6a;
--md-sys-color-primary-container: #10448f;
--md-sys-color-on-primary-container: #d8e2ff;
--md-sys-color-secondary: #bfc6dc;
--md-sys-color-on-secondary: #293041;
--md-sys-color-secondary-container: #3f4759;
--md-sys-color-on-secondary-container: #dbe2f9;
--md-sys-color-tertiary: #debcdf;
--md-sys-color-on-tertiary: #402843;
--md-sys-color-tertiary-container: #583e5b;
--md-sys-color-on-tertiary-container: #fcd7fb;
--md-sys-color-error: #ffb4ab;
--md-sys-color-on-error: #690005;
--md-sys-color-error-container: #93000a;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-background: #1b1b1f;
--md-sys-color-on-background: #e3e2e6;
--md-sys-color-surface: #1b1b1f;
--md-sys-color-on-surface: #e3e2e6;
--md-sys-color-surface-variant: #44474f;
--md-sys-color-on-surface-variant: #c4c6d0;
--md-sys-color-outline: #8e9099;
--md-sys-color-outline-variant: #44474f;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #e3e2e6;
--md-sys-color-inverse-on-surface: #303034;
--md-sys-color-inverse-primary: #325da8;
--md-sys-color-surface-dim: #121316;
--md-sys-color-surface-bright: #38393c;
--md-sys-color-surface-container-lowest: #0d0e11;
--md-sys-color-surface-container-low: #1b1b1f;
--md-sys-color-surface-container: #1f1f23;
--md-sys-color-surface-container-high: #292a2d;
--md-sys-color-surface-container-highest: #343538
}
@media (prefers-color-scheme: light) {
:root {
--md-sys-color-primary: #325da8;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-primary-container: #d8e2ff;
--md-sys-color-on-primary-container: #001a42;
--md-sys-color-secondary: #575e71;
--md-sys-color-on-secondary: #ffffff;
--md-sys-color-secondary-container: #dbe2f9;
--md-sys-color-on-secondary-container: #141b2c;
--md-sys-color-tertiary: #715573;
--md-sys-color-on-tertiary: #ffffff;
--md-sys-color-tertiary-container: #fcd7fb;
--md-sys-color-on-tertiary-container: #29132d;
--md-sys-color-error: #ba1a1a;
--md-sys-color-on-error: #ffffff;
--md-sys-color-error-container: #ffdad6;
--md-sys-color-on-error-container: #410002;
--md-sys-color-background: #fefbff;
--md-sys-color-on-background: #1b1b1f;
--md-sys-color-surface: #fefbff;
--md-sys-color-on-surface: #1b1b1f;
--md-sys-color-surface-variant: #e1e2ec;
--md-sys-color-on-surface-variant: #44474f;
--md-sys-color-outline: #75777f;
--md-sys-color-outline-variant: #c4c6d0;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #303034;
--md-sys-color-inverse-on-surface: #f2f0f4;
--md-sys-color-inverse-primary: #adc6ff;
--md-sys-color-surface-dim: #dbd9dd;
--md-sys-color-surface-bright: #faf8fd;
--md-sys-color-surface-container-lowest: #ffffff;
--md-sys-color-surface-container-low: #f5f3f7;
--md-sys-color-surface-container: #efedf1;
--md-sys-color-surface-container-high: #e9e7ec;
--md-sys-color-surface-container-highest: #e3e2e6
}
}
:root[data-theme="light"] {
--md-sys-color-primary: #325da8;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-primary-container: #d8e2ff;
--md-sys-color-on-primary-container: #001a42;
--md-sys-color-secondary: #575e71;
--md-sys-color-on-secondary: #ffffff;
--md-sys-color-secondary-container: #dbe2f9;
--md-sys-color-on-secondary-container: #141b2c;
--md-sys-color-tertiary: #715573;
--md-sys-color-on-tertiary: #ffffff;
--md-sys-color-tertiary-container: #fcd7fb;
--md-sys-color-on-tertiary-container: #29132d;
--md-sys-color-error: #ba1a1a;
--md-sys-color-on-error: #ffffff;
--md-sys-color-error-container: #ffdad6;
--md-sys-color-on-error-container: #410002;
--md-sys-color-background: #fefbff;
--md-sys-color-on-background: #1b1b1f;
--md-sys-color-surface: #fefbff;
--md-sys-color-on-surface: #1b1b1f;
--md-sys-color-surface-variant: #e1e2ec;
--md-sys-color-on-surface-variant: #44474f;
--md-sys-color-outline: #75777f;
--md-sys-color-outline-variant: #c4c6d0;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #303034;
--md-sys-color-inverse-on-surface: #f2f0f4;
--md-sys-color-inverse-primary: #adc6ff;
--md-sys-color-surface-dim: #dbd9dd;
--md-sys-color-surface-bright: #faf8fd;
--md-sys-color-surface-container-lowest: #ffffff;
--md-sys-color-surface-container-low: #f5f3f7;
--md-sys-color-surface-container: #efedf1;
--md-sys-color-surface-container-high: #e9e7ec;
--md-sys-color-surface-container-highest: #e3e2e6
}
</style><link rel="stylesheet" href="../assets/material-style.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></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">onspring-api-sdk</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../modules.html">onspring-api-sdk</a></li><li><a href="ReportDataType.html">ReportDataType</a></li></ul><h1>Enumeration ReportDataType</h1></div><section class="tsd-panel tsd-comment"><div class="tsd-comment tsd-typography"><p>ReportDataType - Enum for report data type</p>
</div><div class="tsd-comment tsd-typography"></div></section><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/ReportDataType.ts#L4">enums/ReportDataType.ts:4</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Enumeration Members</h3><div class="tsd-index-list"><a href="ReportDataType.html#ChartData" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Chart<wbr/>Data</span></a>
<a href="ReportDataType.html#ReportData" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Report<wbr/>Data</span></a>
</div></section></div></details></section></section><section class="tsd-panel-group tsd-member-group"><h2>Enumeration Members</h2><section class="tsd-panel tsd-member"><a id="ChartData" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>Chart<wbr/>Data</span><a href="#ChartData" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">Chart<wbr/>Data</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;ChartData&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>ChartData - Chart data</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/ReportDataType.ts#L14">enums/ReportDataType.ts:14</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="ReportData" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>Report<wbr/>Data</span><a href="#ReportData" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">Report<wbr/>Data</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;ReportData&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>ReportData - Report data</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/ReportDataType.ts#L9">enums/ReportDataType.ts:9</a></li></ul></aside></section></section></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-index-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><h4 class="uppercase">Member Visibility</h4><form><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div><div class="tsd-theme-toggle"><h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><a href="#ChartData" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Chart<wbr/>Data</span></a><a href="#ReportData" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Report<wbr/>Data</span></a></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>onspring-api-sdk</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><div class="tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script>
try {
const generateLinkElement = document.querySelector(".tsd-generator a");
const link = document.createElement("a");
Object.assign(link, {
href: "https://github.com/dmnsgn/typedoc-material-theme",
target: "_blank",
rel: "noreferrer",
innerText: "typedoc-material-theme."
});
generateLinkElement.insertAdjacentElement("afterend", link);
generateLinkElement.insertAdjacentText("afterend", " with ");
} catch (error) {
}
</script></body></html>
+189
View File
@@ -0,0 +1,189 @@
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>TimeSpanIncrement | onspring-api-sdk</title><meta name="description" content="Documentation for onspring-api-sdk"/><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 defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><style>
@media (prefers-color-scheme: dark) {
:root {
--md-sys-color-primary: #adc6ff;
--md-sys-color-on-primary: #002e6a;
--md-sys-color-primary-container: #10448f;
--md-sys-color-on-primary-container: #d8e2ff;
--md-sys-color-secondary: #bfc6dc;
--md-sys-color-on-secondary: #293041;
--md-sys-color-secondary-container: #3f4759;
--md-sys-color-on-secondary-container: #dbe2f9;
--md-sys-color-tertiary: #debcdf;
--md-sys-color-on-tertiary: #402843;
--md-sys-color-tertiary-container: #583e5b;
--md-sys-color-on-tertiary-container: #fcd7fb;
--md-sys-color-error: #ffb4ab;
--md-sys-color-on-error: #690005;
--md-sys-color-error-container: #93000a;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-background: #1b1b1f;
--md-sys-color-on-background: #e3e2e6;
--md-sys-color-surface: #1b1b1f;
--md-sys-color-on-surface: #e3e2e6;
--md-sys-color-surface-variant: #44474f;
--md-sys-color-on-surface-variant: #c4c6d0;
--md-sys-color-outline: #8e9099;
--md-sys-color-outline-variant: #44474f;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #e3e2e6;
--md-sys-color-inverse-on-surface: #303034;
--md-sys-color-inverse-primary: #325da8;
--md-sys-color-surface-dim: #121316;
--md-sys-color-surface-bright: #38393c;
--md-sys-color-surface-container-lowest: #0d0e11;
--md-sys-color-surface-container-low: #1b1b1f;
--md-sys-color-surface-container: #1f1f23;
--md-sys-color-surface-container-high: #292a2d;
--md-sys-color-surface-container-highest: #343538
}
}
:root[data-theme="dark"] {
--md-sys-color-primary: #adc6ff;
--md-sys-color-on-primary: #002e6a;
--md-sys-color-primary-container: #10448f;
--md-sys-color-on-primary-container: #d8e2ff;
--md-sys-color-secondary: #bfc6dc;
--md-sys-color-on-secondary: #293041;
--md-sys-color-secondary-container: #3f4759;
--md-sys-color-on-secondary-container: #dbe2f9;
--md-sys-color-tertiary: #debcdf;
--md-sys-color-on-tertiary: #402843;
--md-sys-color-tertiary-container: #583e5b;
--md-sys-color-on-tertiary-container: #fcd7fb;
--md-sys-color-error: #ffb4ab;
--md-sys-color-on-error: #690005;
--md-sys-color-error-container: #93000a;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-background: #1b1b1f;
--md-sys-color-on-background: #e3e2e6;
--md-sys-color-surface: #1b1b1f;
--md-sys-color-on-surface: #e3e2e6;
--md-sys-color-surface-variant: #44474f;
--md-sys-color-on-surface-variant: #c4c6d0;
--md-sys-color-outline: #8e9099;
--md-sys-color-outline-variant: #44474f;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #e3e2e6;
--md-sys-color-inverse-on-surface: #303034;
--md-sys-color-inverse-primary: #325da8;
--md-sys-color-surface-dim: #121316;
--md-sys-color-surface-bright: #38393c;
--md-sys-color-surface-container-lowest: #0d0e11;
--md-sys-color-surface-container-low: #1b1b1f;
--md-sys-color-surface-container: #1f1f23;
--md-sys-color-surface-container-high: #292a2d;
--md-sys-color-surface-container-highest: #343538
}
@media (prefers-color-scheme: light) {
:root {
--md-sys-color-primary: #325da8;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-primary-container: #d8e2ff;
--md-sys-color-on-primary-container: #001a42;
--md-sys-color-secondary: #575e71;
--md-sys-color-on-secondary: #ffffff;
--md-sys-color-secondary-container: #dbe2f9;
--md-sys-color-on-secondary-container: #141b2c;
--md-sys-color-tertiary: #715573;
--md-sys-color-on-tertiary: #ffffff;
--md-sys-color-tertiary-container: #fcd7fb;
--md-sys-color-on-tertiary-container: #29132d;
--md-sys-color-error: #ba1a1a;
--md-sys-color-on-error: #ffffff;
--md-sys-color-error-container: #ffdad6;
--md-sys-color-on-error-container: #410002;
--md-sys-color-background: #fefbff;
--md-sys-color-on-background: #1b1b1f;
--md-sys-color-surface: #fefbff;
--md-sys-color-on-surface: #1b1b1f;
--md-sys-color-surface-variant: #e1e2ec;
--md-sys-color-on-surface-variant: #44474f;
--md-sys-color-outline: #75777f;
--md-sys-color-outline-variant: #c4c6d0;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #303034;
--md-sys-color-inverse-on-surface: #f2f0f4;
--md-sys-color-inverse-primary: #adc6ff;
--md-sys-color-surface-dim: #dbd9dd;
--md-sys-color-surface-bright: #faf8fd;
--md-sys-color-surface-container-lowest: #ffffff;
--md-sys-color-surface-container-low: #f5f3f7;
--md-sys-color-surface-container: #efedf1;
--md-sys-color-surface-container-high: #e9e7ec;
--md-sys-color-surface-container-highest: #e3e2e6
}
}
:root[data-theme="light"] {
--md-sys-color-primary: #325da8;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-primary-container: #d8e2ff;
--md-sys-color-on-primary-container: #001a42;
--md-sys-color-secondary: #575e71;
--md-sys-color-on-secondary: #ffffff;
--md-sys-color-secondary-container: #dbe2f9;
--md-sys-color-on-secondary-container: #141b2c;
--md-sys-color-tertiary: #715573;
--md-sys-color-on-tertiary: #ffffff;
--md-sys-color-tertiary-container: #fcd7fb;
--md-sys-color-on-tertiary-container: #29132d;
--md-sys-color-error: #ba1a1a;
--md-sys-color-on-error: #ffffff;
--md-sys-color-error-container: #ffdad6;
--md-sys-color-on-error-container: #410002;
--md-sys-color-background: #fefbff;
--md-sys-color-on-background: #1b1b1f;
--md-sys-color-surface: #fefbff;
--md-sys-color-on-surface: #1b1b1f;
--md-sys-color-surface-variant: #e1e2ec;
--md-sys-color-on-surface-variant: #44474f;
--md-sys-color-outline: #75777f;
--md-sys-color-outline-variant: #c4c6d0;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #303034;
--md-sys-color-inverse-on-surface: #f2f0f4;
--md-sys-color-inverse-primary: #adc6ff;
--md-sys-color-surface-dim: #dbd9dd;
--md-sys-color-surface-bright: #faf8fd;
--md-sys-color-surface-container-lowest: #ffffff;
--md-sys-color-surface-container-low: #f5f3f7;
--md-sys-color-surface-container: #efedf1;
--md-sys-color-surface-container-high: #e9e7ec;
--md-sys-color-surface-container-highest: #e3e2e6
}
</style><link rel="stylesheet" href="../assets/material-style.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></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">onspring-api-sdk</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../modules.html">onspring-api-sdk</a></li><li><a href="TimeSpanIncrement.html">TimeSpanIncrement</a></li></ul><h1>Enumeration TimeSpanIncrement</h1></div><section class="tsd-panel tsd-comment"><div class="tsd-comment tsd-typography"><p>TimeSpanIncrement - The increment values for a time span field.</p>
</div><div class="tsd-comment tsd-typography"></div></section><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/TimeSpanIncrement.ts#L4">enums/TimeSpanIncrement.ts:4</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Enumeration Members</h3><div class="tsd-index-list"><a href="TimeSpanIncrement.html#Days" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Days</span></a>
<a href="TimeSpanIncrement.html#Hours" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Hours</span></a>
<a href="TimeSpanIncrement.html#Minutes" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Minutes</span></a>
<a href="TimeSpanIncrement.html#Months" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Months</span></a>
<a href="TimeSpanIncrement.html#Seconds" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Seconds</span></a>
<a href="TimeSpanIncrement.html#Weeks" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Weeks</span></a>
<a href="TimeSpanIncrement.html#Years" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Years</span></a>
</div></section></div></details></section></section><section class="tsd-panel-group tsd-member-group"><h2>Enumeration Members</h2><section class="tsd-panel tsd-member"><a id="Days" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>Days</span><a href="#Days" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">Days</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;Days&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>Days - The time span increment is days.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/TimeSpanIncrement.ts#L27">enums/TimeSpanIncrement.ts:27</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="Hours" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>Hours</span><a href="#Hours" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">Hours</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;Hours&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>Hours - The time span increment is hours.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/TimeSpanIncrement.ts#L21">enums/TimeSpanIncrement.ts:21</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="Minutes" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>Minutes</span><a href="#Minutes" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">Minutes</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;Minutes&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>Minutes - The time span increment is minutes.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/TimeSpanIncrement.ts#L15">enums/TimeSpanIncrement.ts:15</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="Months" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>Months</span><a href="#Months" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">Months</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;Months&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>Months - The time span increment is months.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/TimeSpanIncrement.ts#L39">enums/TimeSpanIncrement.ts:39</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="Seconds" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>Seconds</span><a href="#Seconds" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">Seconds</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;Seconds&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>Seconds - The time span increment is seconds.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/TimeSpanIncrement.ts#L9">enums/TimeSpanIncrement.ts:9</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="Weeks" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>Weeks</span><a href="#Weeks" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">Weeks</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;Weeks&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>Weeks - The time span increment is weeks.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/TimeSpanIncrement.ts#L33">enums/TimeSpanIncrement.ts:33</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="Years" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>Years</span><a href="#Years" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">Years</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;Years&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>Years - The time span increment is years.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/TimeSpanIncrement.ts#L45">enums/TimeSpanIncrement.ts:45</a></li></ul></aside></section></section></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-index-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><h4 class="uppercase">Member Visibility</h4><form><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div><div class="tsd-theme-toggle"><h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><a href="#Days" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Days</span></a><a href="#Hours" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Hours</span></a><a href="#Minutes" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Minutes</span></a><a href="#Months" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Months</span></a><a href="#Seconds" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Seconds</span></a><a href="#Weeks" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Weeks</span></a><a href="#Years" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>Years</span></a></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>onspring-api-sdk</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><div class="tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script>
try {
const generateLinkElement = document.querySelector(".tsd-generator a");
const link = document.createElement("a");
Object.assign(link, {
href: "https://github.com/dmnsgn/typedoc-material-theme",
target: "_blank",
rel: "noreferrer",
innerText: "typedoc-material-theme."
});
generateLinkElement.insertAdjacentElement("afterend", link);
generateLinkElement.insertAdjacentText("afterend", " with ");
} catch (error) {
}
</script></body></html>
+181
View File
@@ -0,0 +1,181 @@
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>TimeSpanRecurrenceType | onspring-api-sdk</title><meta name="description" content="Documentation for onspring-api-sdk"/><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 defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><style>
@media (prefers-color-scheme: dark) {
:root {
--md-sys-color-primary: #adc6ff;
--md-sys-color-on-primary: #002e6a;
--md-sys-color-primary-container: #10448f;
--md-sys-color-on-primary-container: #d8e2ff;
--md-sys-color-secondary: #bfc6dc;
--md-sys-color-on-secondary: #293041;
--md-sys-color-secondary-container: #3f4759;
--md-sys-color-on-secondary-container: #dbe2f9;
--md-sys-color-tertiary: #debcdf;
--md-sys-color-on-tertiary: #402843;
--md-sys-color-tertiary-container: #583e5b;
--md-sys-color-on-tertiary-container: #fcd7fb;
--md-sys-color-error: #ffb4ab;
--md-sys-color-on-error: #690005;
--md-sys-color-error-container: #93000a;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-background: #1b1b1f;
--md-sys-color-on-background: #e3e2e6;
--md-sys-color-surface: #1b1b1f;
--md-sys-color-on-surface: #e3e2e6;
--md-sys-color-surface-variant: #44474f;
--md-sys-color-on-surface-variant: #c4c6d0;
--md-sys-color-outline: #8e9099;
--md-sys-color-outline-variant: #44474f;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #e3e2e6;
--md-sys-color-inverse-on-surface: #303034;
--md-sys-color-inverse-primary: #325da8;
--md-sys-color-surface-dim: #121316;
--md-sys-color-surface-bright: #38393c;
--md-sys-color-surface-container-lowest: #0d0e11;
--md-sys-color-surface-container-low: #1b1b1f;
--md-sys-color-surface-container: #1f1f23;
--md-sys-color-surface-container-high: #292a2d;
--md-sys-color-surface-container-highest: #343538
}
}
:root[data-theme="dark"] {
--md-sys-color-primary: #adc6ff;
--md-sys-color-on-primary: #002e6a;
--md-sys-color-primary-container: #10448f;
--md-sys-color-on-primary-container: #d8e2ff;
--md-sys-color-secondary: #bfc6dc;
--md-sys-color-on-secondary: #293041;
--md-sys-color-secondary-container: #3f4759;
--md-sys-color-on-secondary-container: #dbe2f9;
--md-sys-color-tertiary: #debcdf;
--md-sys-color-on-tertiary: #402843;
--md-sys-color-tertiary-container: #583e5b;
--md-sys-color-on-tertiary-container: #fcd7fb;
--md-sys-color-error: #ffb4ab;
--md-sys-color-on-error: #690005;
--md-sys-color-error-container: #93000a;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-background: #1b1b1f;
--md-sys-color-on-background: #e3e2e6;
--md-sys-color-surface: #1b1b1f;
--md-sys-color-on-surface: #e3e2e6;
--md-sys-color-surface-variant: #44474f;
--md-sys-color-on-surface-variant: #c4c6d0;
--md-sys-color-outline: #8e9099;
--md-sys-color-outline-variant: #44474f;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #e3e2e6;
--md-sys-color-inverse-on-surface: #303034;
--md-sys-color-inverse-primary: #325da8;
--md-sys-color-surface-dim: #121316;
--md-sys-color-surface-bright: #38393c;
--md-sys-color-surface-container-lowest: #0d0e11;
--md-sys-color-surface-container-low: #1b1b1f;
--md-sys-color-surface-container: #1f1f23;
--md-sys-color-surface-container-high: #292a2d;
--md-sys-color-surface-container-highest: #343538
}
@media (prefers-color-scheme: light) {
:root {
--md-sys-color-primary: #325da8;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-primary-container: #d8e2ff;
--md-sys-color-on-primary-container: #001a42;
--md-sys-color-secondary: #575e71;
--md-sys-color-on-secondary: #ffffff;
--md-sys-color-secondary-container: #dbe2f9;
--md-sys-color-on-secondary-container: #141b2c;
--md-sys-color-tertiary: #715573;
--md-sys-color-on-tertiary: #ffffff;
--md-sys-color-tertiary-container: #fcd7fb;
--md-sys-color-on-tertiary-container: #29132d;
--md-sys-color-error: #ba1a1a;
--md-sys-color-on-error: #ffffff;
--md-sys-color-error-container: #ffdad6;
--md-sys-color-on-error-container: #410002;
--md-sys-color-background: #fefbff;
--md-sys-color-on-background: #1b1b1f;
--md-sys-color-surface: #fefbff;
--md-sys-color-on-surface: #1b1b1f;
--md-sys-color-surface-variant: #e1e2ec;
--md-sys-color-on-surface-variant: #44474f;
--md-sys-color-outline: #75777f;
--md-sys-color-outline-variant: #c4c6d0;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #303034;
--md-sys-color-inverse-on-surface: #f2f0f4;
--md-sys-color-inverse-primary: #adc6ff;
--md-sys-color-surface-dim: #dbd9dd;
--md-sys-color-surface-bright: #faf8fd;
--md-sys-color-surface-container-lowest: #ffffff;
--md-sys-color-surface-container-low: #f5f3f7;
--md-sys-color-surface-container: #efedf1;
--md-sys-color-surface-container-high: #e9e7ec;
--md-sys-color-surface-container-highest: #e3e2e6
}
}
:root[data-theme="light"] {
--md-sys-color-primary: #325da8;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-primary-container: #d8e2ff;
--md-sys-color-on-primary-container: #001a42;
--md-sys-color-secondary: #575e71;
--md-sys-color-on-secondary: #ffffff;
--md-sys-color-secondary-container: #dbe2f9;
--md-sys-color-on-secondary-container: #141b2c;
--md-sys-color-tertiary: #715573;
--md-sys-color-on-tertiary: #ffffff;
--md-sys-color-tertiary-container: #fcd7fb;
--md-sys-color-on-tertiary-container: #29132d;
--md-sys-color-error: #ba1a1a;
--md-sys-color-on-error: #ffffff;
--md-sys-color-error-container: #ffdad6;
--md-sys-color-on-error-container: #410002;
--md-sys-color-background: #fefbff;
--md-sys-color-on-background: #1b1b1f;
--md-sys-color-surface: #fefbff;
--md-sys-color-on-surface: #1b1b1f;
--md-sys-color-surface-variant: #e1e2ec;
--md-sys-color-on-surface-variant: #44474f;
--md-sys-color-outline: #75777f;
--md-sys-color-outline-variant: #c4c6d0;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #303034;
--md-sys-color-inverse-on-surface: #f2f0f4;
--md-sys-color-inverse-primary: #adc6ff;
--md-sys-color-surface-dim: #dbd9dd;
--md-sys-color-surface-bright: #faf8fd;
--md-sys-color-surface-container-lowest: #ffffff;
--md-sys-color-surface-container-low: #f5f3f7;
--md-sys-color-surface-container: #efedf1;
--md-sys-color-surface-container-high: #e9e7ec;
--md-sys-color-surface-container-highest: #e3e2e6
}
</style><link rel="stylesheet" href="../assets/material-style.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></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">onspring-api-sdk</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../modules.html">onspring-api-sdk</a></li><li><a href="TimeSpanRecurrenceType.html">TimeSpanRecurrenceType</a></li></ul><h1>Enumeration TimeSpanRecurrenceType</h1></div><section class="tsd-panel tsd-comment"><div class="tsd-comment tsd-typography"><p>TimeSpanRecurrenceType - The type of recurrence for a time span.</p>
</div><div class="tsd-comment tsd-typography"></div></section><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/TimeSpanRecurrenceType.ts#L5">enums/TimeSpanRecurrenceType.ts:5</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Enumeration Members</h3><div class="tsd-index-list"><a href="TimeSpanRecurrenceType.html#EndAfterOccurrences" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>End<wbr/>After<wbr/>Occurrences</span></a>
<a href="TimeSpanRecurrenceType.html#EndByDate" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>End<wbr/>By<wbr/>Date</span></a>
<a href="TimeSpanRecurrenceType.html#None" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>None</span></a>
</div></section></div></details></section></section><section class="tsd-panel-group tsd-member-group"><h2>Enumeration Members</h2><section class="tsd-panel tsd-member"><a id="EndAfterOccurrences" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>End<wbr/>After<wbr/>Occurrences</span><a href="#EndAfterOccurrences" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">End<wbr/>After<wbr/>Occurrences</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;EndAfterOccurrences&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>EndAfterOccurrences - The time span recurs for a specific number of occurrences.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/TimeSpanRecurrenceType.ts#L22">enums/TimeSpanRecurrenceType.ts:22</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="EndByDate" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>End<wbr/>By<wbr/>Date</span><a href="#EndByDate" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">End<wbr/>By<wbr/>Date</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;EndByDate&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>EndByDate - The time span recurs until a specific date.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/TimeSpanRecurrenceType.ts#L16">enums/TimeSpanRecurrenceType.ts:16</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="None" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>None</span><a href="#None" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-enum-member">None</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;None&quot;</span></div><div class="tsd-comment tsd-typography"><h4>Constant</h4><p>None - The time span does not recur.</p>
</div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/StevanFreeborn/onspring-api-sdk-javascript/blob/90a559a/src/enums/TimeSpanRecurrenceType.ts#L10">enums/TimeSpanRecurrenceType.ts:10</a></li></ul></aside></section></section></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-index-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><h4 class="uppercase">Member Visibility</h4><form><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div><div class="tsd-theme-toggle"><h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><a href="#EndAfterOccurrences" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>End<wbr/>After<wbr/>Occurrences</span></a><a href="#EndByDate" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>End<wbr/>By<wbr/>Date</span></a><a href="#None" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-16"></use></svg><span>None</span></a></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>onspring-api-sdk</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><div class="tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script>
try {
const generateLinkElement = document.querySelector(".tsd-generator a");
const link = document.createElement("a");
Object.assign(link, {
href: "https://github.com/dmnsgn/typedoc-material-theme",
target: "_blank",
rel: "noreferrer",
innerText: "typedoc-material-theme."
});
generateLinkElement.insertAdjacentElement("afterend", link);
generateLinkElement.insertAdjacentText("afterend", " with ");
} catch (error) {
}
</script></body></html>
+174
View File
File diff suppressed because one or more lines are too long
+331
View File
File diff suppressed because one or more lines are too long
+238
View File
@@ -0,0 +1,238 @@
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>onspring-api-sdk</title><meta name="description" content="Documentation for onspring-api-sdk"/><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 defer src="assets/main.js"></script><script async src="assets/icons.js" id="tsd-icons-script"></script><script async src="assets/search.js" id="tsd-search-script"></script><script async src="assets/navigation.js" id="tsd-nav-script"></script><style>
@media (prefers-color-scheme: dark) {
:root {
--md-sys-color-primary: #adc6ff;
--md-sys-color-on-primary: #002e6a;
--md-sys-color-primary-container: #10448f;
--md-sys-color-on-primary-container: #d8e2ff;
--md-sys-color-secondary: #bfc6dc;
--md-sys-color-on-secondary: #293041;
--md-sys-color-secondary-container: #3f4759;
--md-sys-color-on-secondary-container: #dbe2f9;
--md-sys-color-tertiary: #debcdf;
--md-sys-color-on-tertiary: #402843;
--md-sys-color-tertiary-container: #583e5b;
--md-sys-color-on-tertiary-container: #fcd7fb;
--md-sys-color-error: #ffb4ab;
--md-sys-color-on-error: #690005;
--md-sys-color-error-container: #93000a;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-background: #1b1b1f;
--md-sys-color-on-background: #e3e2e6;
--md-sys-color-surface: #1b1b1f;
--md-sys-color-on-surface: #e3e2e6;
--md-sys-color-surface-variant: #44474f;
--md-sys-color-on-surface-variant: #c4c6d0;
--md-sys-color-outline: #8e9099;
--md-sys-color-outline-variant: #44474f;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #e3e2e6;
--md-sys-color-inverse-on-surface: #303034;
--md-sys-color-inverse-primary: #325da8;
--md-sys-color-surface-dim: #121316;
--md-sys-color-surface-bright: #38393c;
--md-sys-color-surface-container-lowest: #0d0e11;
--md-sys-color-surface-container-low: #1b1b1f;
--md-sys-color-surface-container: #1f1f23;
--md-sys-color-surface-container-high: #292a2d;
--md-sys-color-surface-container-highest: #343538
}
}
:root[data-theme="dark"] {
--md-sys-color-primary: #adc6ff;
--md-sys-color-on-primary: #002e6a;
--md-sys-color-primary-container: #10448f;
--md-sys-color-on-primary-container: #d8e2ff;
--md-sys-color-secondary: #bfc6dc;
--md-sys-color-on-secondary: #293041;
--md-sys-color-secondary-container: #3f4759;
--md-sys-color-on-secondary-container: #dbe2f9;
--md-sys-color-tertiary: #debcdf;
--md-sys-color-on-tertiary: #402843;
--md-sys-color-tertiary-container: #583e5b;
--md-sys-color-on-tertiary-container: #fcd7fb;
--md-sys-color-error: #ffb4ab;
--md-sys-color-on-error: #690005;
--md-sys-color-error-container: #93000a;
--md-sys-color-on-error-container: #ffb4ab;
--md-sys-color-background: #1b1b1f;
--md-sys-color-on-background: #e3e2e6;
--md-sys-color-surface: #1b1b1f;
--md-sys-color-on-surface: #e3e2e6;
--md-sys-color-surface-variant: #44474f;
--md-sys-color-on-surface-variant: #c4c6d0;
--md-sys-color-outline: #8e9099;
--md-sys-color-outline-variant: #44474f;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #e3e2e6;
--md-sys-color-inverse-on-surface: #303034;
--md-sys-color-inverse-primary: #325da8;
--md-sys-color-surface-dim: #121316;
--md-sys-color-surface-bright: #38393c;
--md-sys-color-surface-container-lowest: #0d0e11;
--md-sys-color-surface-container-low: #1b1b1f;
--md-sys-color-surface-container: #1f1f23;
--md-sys-color-surface-container-high: #292a2d;
--md-sys-color-surface-container-highest: #343538
}
@media (prefers-color-scheme: light) {
:root {
--md-sys-color-primary: #325da8;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-primary-container: #d8e2ff;
--md-sys-color-on-primary-container: #001a42;
--md-sys-color-secondary: #575e71;
--md-sys-color-on-secondary: #ffffff;
--md-sys-color-secondary-container: #dbe2f9;
--md-sys-color-on-secondary-container: #141b2c;
--md-sys-color-tertiary: #715573;
--md-sys-color-on-tertiary: #ffffff;
--md-sys-color-tertiary-container: #fcd7fb;
--md-sys-color-on-tertiary-container: #29132d;
--md-sys-color-error: #ba1a1a;
--md-sys-color-on-error: #ffffff;
--md-sys-color-error-container: #ffdad6;
--md-sys-color-on-error-container: #410002;
--md-sys-color-background: #fefbff;
--md-sys-color-on-background: #1b1b1f;
--md-sys-color-surface: #fefbff;
--md-sys-color-on-surface: #1b1b1f;
--md-sys-color-surface-variant: #e1e2ec;
--md-sys-color-on-surface-variant: #44474f;
--md-sys-color-outline: #75777f;
--md-sys-color-outline-variant: #c4c6d0;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #303034;
--md-sys-color-inverse-on-surface: #f2f0f4;
--md-sys-color-inverse-primary: #adc6ff;
--md-sys-color-surface-dim: #dbd9dd;
--md-sys-color-surface-bright: #faf8fd;
--md-sys-color-surface-container-lowest: #ffffff;
--md-sys-color-surface-container-low: #f5f3f7;
--md-sys-color-surface-container: #efedf1;
--md-sys-color-surface-container-high: #e9e7ec;
--md-sys-color-surface-container-highest: #e3e2e6
}
}
:root[data-theme="light"] {
--md-sys-color-primary: #325da8;
--md-sys-color-on-primary: #ffffff;
--md-sys-color-primary-container: #d8e2ff;
--md-sys-color-on-primary-container: #001a42;
--md-sys-color-secondary: #575e71;
--md-sys-color-on-secondary: #ffffff;
--md-sys-color-secondary-container: #dbe2f9;
--md-sys-color-on-secondary-container: #141b2c;
--md-sys-color-tertiary: #715573;
--md-sys-color-on-tertiary: #ffffff;
--md-sys-color-tertiary-container: #fcd7fb;
--md-sys-color-on-tertiary-container: #29132d;
--md-sys-color-error: #ba1a1a;
--md-sys-color-on-error: #ffffff;
--md-sys-color-error-container: #ffdad6;
--md-sys-color-on-error-container: #410002;
--md-sys-color-background: #fefbff;
--md-sys-color-on-background: #1b1b1f;
--md-sys-color-surface: #fefbff;
--md-sys-color-on-surface: #1b1b1f;
--md-sys-color-surface-variant: #e1e2ec;
--md-sys-color-on-surface-variant: #44474f;
--md-sys-color-outline: #75777f;
--md-sys-color-outline-variant: #c4c6d0;
--md-sys-color-shadow: #000000;
--md-sys-color-scrim: #000000;
--md-sys-color-inverse-surface: #303034;
--md-sys-color-inverse-on-surface: #f2f0f4;
--md-sys-color-inverse-primary: #adc6ff;
--md-sys-color-surface-dim: #dbd9dd;
--md-sys-color-surface-bright: #faf8fd;
--md-sys-color-surface-container-lowest: #ffffff;
--md-sys-color-surface-container-low: #f5f3f7;
--md-sys-color-surface-container: #efedf1;
--md-sys-color-surface-container-high: #e9e7ec;
--md-sys-color-surface-container-highest: #e3e2e6
}
</style><link rel="stylesheet" href="assets/material-style.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base="."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></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">onspring-api-sdk</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><h2>onspring-api-sdk</h2></div><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><h3 class="tsd-index-heading uppercase">Index</h3><section class="tsd-index-section"><h3 class="tsd-index-heading">Enumerations</h3><div class="tsd-index-list"><a href="enums/DataFormat.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-8"></use></svg><span>Data<wbr/>Format</span></a>
<a href="enums/DelegateType.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-8"></use></svg><span>Delegate<wbr/>Type</span></a>
<a href="enums/FieldStatus.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-8"></use></svg><span>Field<wbr/>Status</span></a>
<a href="enums/FieldType.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-8"></use></svg><span>Field<wbr/>Type</span></a>
<a href="enums/FileStorageSite.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-8"></use></svg><span>File<wbr/>Storage<wbr/>Site</span></a>
<a href="enums/FilterOperators.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-8"></use></svg><span>Filter<wbr/>Operators</span></a>
<a href="enums/FormulaOutputType.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-8"></use></svg><span>Formula<wbr/>Output<wbr/>Type</span></a>
<a href="enums/HttpStatusCode.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-8"></use></svg><span>Http<wbr/>Status<wbr/>Code</span></a>
<a href="enums/Multiplicity.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-8"></use></svg><span>Multiplicity</span></a>
<a href="enums/RecordValueType.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-8"></use></svg><span>Record<wbr/>Value<wbr/>Type</span></a>
<a href="enums/ReportDataType.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-8"></use></svg><span>Report<wbr/>Data<wbr/>Type</span></a>
<a href="enums/TimeSpanIncrement.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-8"></use></svg><span>Time<wbr/>Span<wbr/>Increment</span></a>
<a href="enums/TimeSpanRecurrenceType.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-8"></use></svg><span>Time<wbr/>Span<wbr/>Recurrence<wbr/>Type</span></a>
</div></section><section class="tsd-index-section"><h3 class="tsd-index-heading">Classes</h3><div class="tsd-index-list"><a href="classes/ApiResponse.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Api<wbr/>Response</span></a>
<a href="classes/App.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>App</span></a>
<a href="classes/Attachment.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Attachment</span></a>
<a href="classes/AttachmentListRecordValue.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Attachment<wbr/>List<wbr/>Record<wbr/>Value</span></a>
<a href="classes/CollectionResponse.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Collection<wbr/>Response</span></a>
<a href="classes/CreatedWithIdResponse.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Created<wbr/>With<wbr/>Id<wbr/>Response</span></a>
<a href="classes/DateRecordValue.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Date<wbr/>Record<wbr/>Value</span></a>
<a href="classes/DecimalRecordValue.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Decimal<wbr/>Record<wbr/>Value</span></a>
<a href="classes/Delegate.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Delegate</span></a>
<a href="classes/DelegateListRecordValue.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Delegate<wbr/>List<wbr/>Record<wbr/>Value</span></a>
<a href="classes/EndpointFactory.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Endpoint<wbr/>Factory</span></a>
<a href="classes/Field.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Field</span></a>
<a href="classes/File.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>File</span></a>
<a href="classes/FileInfo.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>File<wbr/>Info</span></a>
<a href="classes/FileListRecordValue.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>File<wbr/>List<wbr/>Record<wbr/>Value</span></a>
<a href="classes/FormulaField.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Formula<wbr/>Field</span></a>
<a href="classes/GetPagedAppsResponse.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Get<wbr/>Paged<wbr/>Apps<wbr/>Response</span></a>
<a href="classes/GetPagedFieldsResponse.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Get<wbr/>Paged<wbr/>Fields<wbr/>Response</span></a>
<a href="classes/GetPagedRecordsResponse.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Get<wbr/>Paged<wbr/>Records<wbr/>Response</span></a>
<a href="classes/GetPagedReportsResponse.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Get<wbr/>Paged<wbr/>Reports<wbr/>Response</span></a>
<a href="classes/GetRecordRequest.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Get<wbr/>Record<wbr/>Request</span></a>
<a href="classes/GetRecordsByAppIdRequest.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Get<wbr/>Records<wbr/>By<wbr/>App<wbr/>Id<wbr/>Request</span></a>
<a href="classes/GetRecordsRequest.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Get<wbr/>Records<wbr/>Request</span></a>
<a href="classes/GuidListRecordValue.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Guid<wbr/>List<wbr/>Record<wbr/>Value</span></a>
<a href="classes/GuidRecordValue.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Guid<wbr/>Record<wbr/>Value</span></a>
<a href="classes/IntegerListRecordValue.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Integer<wbr/>List<wbr/>Record<wbr/>Value</span></a>
<a href="classes/IntegerRecordValue.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Integer<wbr/>Record<wbr/>Value</span></a>
<a href="classes/ListField.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>List<wbr/>Field</span></a>
<a href="classes/ListItemRequest.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>List<wbr/>Item<wbr/>Request</span></a>
<a href="classes/ListItemResponse.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>List<wbr/>Item<wbr/>Response</span></a>
<a href="classes/ListValue.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>List<wbr/>Value</span></a>
<a href="classes/OnspringClient.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Onspring<wbr/>Client</span></a>
<a href="classes/PagedResponse.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Paged<wbr/>Response</span></a>
<a href="classes/PagingRequest.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Paging<wbr/>Request</span></a>
<a href="classes/QueryFilter.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Query<wbr/>Filter</span></a>
<a href="classes/QueryRecordsRequest.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Query<wbr/>Records<wbr/>Request</span></a>
<a href="classes/Record.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Record</span></a>
<a href="classes/RecordValue.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Record<wbr/>Value</span></a>
<a href="classes/ReferenceField.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Reference<wbr/>Field</span></a>
<a href="classes/Report.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Report</span></a>
<a href="classes/ReportData.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Report<wbr/>Data</span></a>
<a href="classes/Row.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Row</span></a>
<a href="classes/SaveFileRequest.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Save<wbr/>File<wbr/>Request</span></a>
<a href="classes/SaveRecordRequest.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Save<wbr/>Record<wbr/>Request</span></a>
<a href="classes/SaveRecordResponse.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Save<wbr/>Record<wbr/>Response</span></a>
<a href="classes/ScoringGroup.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Scoring<wbr/>Group</span></a>
<a href="classes/ScoringGroupListRecordValue.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Scoring<wbr/>Group<wbr/>List<wbr/>Record<wbr/>Value</span></a>
<a href="classes/StringListRecordValue.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>String<wbr/>List<wbr/>Record<wbr/>Value</span></a>
<a href="classes/StringRecordValue.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>String<wbr/>Record<wbr/>Value</span></a>
<a href="classes/TimeSpanData.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Time<wbr/>Span<wbr/>Data</span></a>
<a href="classes/TimeSpanRecordValue.html" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-128"></use></svg><span>Time<wbr/>Span<wbr/>Record<wbr/>Value</span></a>
</div></section></section></section></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-index-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><h4 class="uppercase">Member Visibility</h4><form><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div><div class="tsd-theme-toggle"><h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div><div class="site-menu"><nav class="tsd-navigation"><a href="modules.html" class="current"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-1"></use></svg><span>onspring-api-sdk</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base="."><li>Loading...</li></ul></nav></div></div></div><div class="tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script>
try {
const generateLinkElement = document.querySelector(".tsd-generator a");
const link = document.createElement("a");
Object.assign(link, {
href: "https://github.com/dmnsgn/typedoc-material-theme",
target: "_blank",
rel: "noreferrer",
innerText: "typedoc-material-theme."
});
generateLinkElement.insertAdjacentElement("afterend", link);
generateLinkElement.insertAdjacentText("afterend", " with ");
} catch (error) {
}
</script></body></html>
+33
View File
@@ -39,6 +39,7 @@
"sinon": "^15.0.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.12",
"typedoc-material-theme": "^1.0.2",
"typescript": "^4.9.5"
},
"engines": {
@@ -1184,6 +1185,12 @@
"@jridgewell/sourcemap-codec": "^1.4.10"
}
},
"node_modules/@material/material-color-utilities": {
"version": "0.2.7",
"resolved": "https://registry.npmjs.org/@material/material-color-utilities/-/material-color-utilities-0.2.7.tgz",
"integrity": "sha512-0FCeqG6WvK4/Cc06F/xXMd/pv4FeisI0c1tUpBbfhA2n9Y8eZEv4Karjbmf2ZqQCPUWMrGp8A571tCjizxoTiQ==",
"dev": true
},
"node_modules/@nodelib/fs.scandir": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
@@ -6881,6 +6888,32 @@
"typescript": "4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x"
}
},
"node_modules/typedoc-material-theme": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/typedoc-material-theme/-/typedoc-material-theme-1.0.2.tgz",
"integrity": "sha512-/nH/twYeHrnz5sZaaXzYJ85EOgKqnbl1ivzBKmuEAga1dBsARttwQUTPKAT7XrCPD+rRcoqxuCOdXZ6EGiqRQA==",
"dev": true,
"funding": [
{
"type": "individual",
"url": "https://paypal.me/dmnsgn"
},
{
"type": "individual",
"url": "https://commerce.coinbase.com/checkout/56cbdf28-e323-48d8-9c98-7019e72c97f3"
}
],
"dependencies": {
"@material/material-color-utilities": "^0.2.7"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.6.0"
},
"peerDependencies": {
"typedoc": "^0.25.3"
}
},
"node_modules/typedoc/node_modules/minimatch": {
"version": "9.0.3",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz",
+3 -1
View File
@@ -43,6 +43,7 @@
}
},
"scripts": {
"generate-docs": "typedoc src/index.ts --plugin typedoc-material-theme --themeColor '#194488' --gitRemote github",
"clean": "rimraf dist",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"lint-fix": "eslint --fix --ignore-path .eslintignore --ext .js,.ts . --max-warnings=0",
@@ -85,10 +86,11 @@
"sinon": "^15.0.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.12",
"typedoc-material-theme": "^1.0.2",
"typescript": "^4.9.5"
},
"dependencies": {
"axios": "^1.2.4",
"form-data": "^4.0.0"
}
}
}