@coveo/push-api-client 2.8.13 → 3.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (135) hide show
  1. package/README.md +7 -6
  2. package/dist/APICore.js +18 -13
  3. package/dist/APICore.js.map +1 -1
  4. package/dist/definitions/APICore.d.ts +12 -5
  5. package/dist/definitions/document.d.ts +2 -45
  6. package/dist/definitions/documentBuilder.d.ts +32 -59
  7. package/dist/definitions/errors/validatorErrors.d.ts +2 -1
  8. package/dist/definitions/help/fileConsumer.d.ts +3 -3
  9. package/dist/definitions/help/fileContainer.d.ts +2 -3
  10. package/dist/definitions/help/fileContainer.spec.d.ts +1 -1
  11. package/dist/definitions/index.d.ts +1 -1
  12. package/dist/definitions/interfaces.d.ts +3 -3
  13. package/dist/definitions/permissionSetBuilder.d.ts +34 -0
  14. package/dist/definitions/permissionSetBuilder.spec.d.ts +1 -0
  15. package/dist/definitions/securityIdentityBuilder.d.ts +33 -24
  16. package/dist/definitions/securityIdentityBuilder.spec.d.ts +1 -0
  17. package/dist/definitions/source/catalog.d.ts +2 -1
  18. package/dist/definitions/source/documentUploader.d.ts +3 -3
  19. package/dist/definitions/source/push.d.ts +8 -37
  20. package/dist/definitions/source/securityIdenty.d.ts +1 -0
  21. package/dist/definitions/uploadStrategy/fileContainerStrategy.d.ts +1 -1
  22. package/dist/definitions/uploadStrategy/strategy.d.ts +2 -2
  23. package/dist/definitions/uploadStrategy/streamChunkStrategy.d.ts +1 -1
  24. package/dist/definitions/validation/caseInsensitiveDocument.d.ts +10 -1
  25. package/dist/definitions/validation/knownKey.d.ts +2 -1
  26. package/dist/definitions/validation/parsePermissions.d.ts +5 -0
  27. package/dist/definitions/validation/parsePermissions.spec.d.ts +1 -0
  28. package/dist/documentBuilder.js +28 -46
  29. package/dist/documentBuilder.js.map +1 -1
  30. package/dist/documentBuilder.spec.js +55 -74
  31. package/dist/documentBuilder.spec.js.map +1 -1
  32. package/dist/errors/validatorErrors.js +4 -1
  33. package/dist/errors/validatorErrors.js.map +1 -1
  34. package/dist/help/fileConsumer.js +1 -1
  35. package/dist/help/fileConsumer.js.map +1 -1
  36. package/dist/help/fileConsumer.spec.js +2 -3
  37. package/dist/help/fileConsumer.spec.js.map +1 -1
  38. package/dist/help/fileContainer.js +41 -24
  39. package/dist/help/fileContainer.js.map +1 -1
  40. package/dist/help/fileContainer.spec.js +38 -33
  41. package/dist/help/fileContainer.spec.js.map +1 -1
  42. package/dist/index.js +3 -3
  43. package/dist/index.js.map +1 -1
  44. package/dist/localtest.js +10 -8
  45. package/dist/localtest.js.map +1 -1
  46. package/dist/permissionSetBuilder.js +59 -0
  47. package/dist/permissionSetBuilder.js.map +1 -0
  48. package/dist/permissionSetBuilder.spec.js +69 -0
  49. package/dist/permissionSetBuilder.spec.js.map +1 -0
  50. package/dist/securityIdentityBuilder.js +34 -27
  51. package/dist/securityIdentityBuilder.js.map +1 -1
  52. package/dist/securityIdentityBuilder.spec.js +51 -0
  53. package/dist/securityIdentityBuilder.spec.js.map +1 -0
  54. package/dist/source/catalog.js +1 -2
  55. package/dist/source/catalog.js.map +1 -1
  56. package/dist/source/documentUploader.js +1 -1
  57. package/dist/source/documentUploader.js.map +1 -1
  58. package/dist/source/documentUploader.spec.js +5 -5
  59. package/dist/source/documentUploader.spec.js.map +1 -1
  60. package/dist/source/push.js +6 -47
  61. package/dist/source/push.js.map +1 -1
  62. package/dist/source/push.spec.js +3 -3
  63. package/dist/source/push.spec.js.map +1 -1
  64. package/dist/source/securityIdenty.js +1 -2
  65. package/dist/source/securityIdenty.js.map +1 -1
  66. package/dist/uploadStrategy/fileContainerStrategy.js +2 -2
  67. package/dist/uploadStrategy/fileContainerStrategy.js.map +1 -1
  68. package/dist/uploadStrategy/fileContainerStrategy.spec.js +2 -2
  69. package/dist/uploadStrategy/fileContainerStrategy.spec.js.map +1 -1
  70. package/dist/uploadStrategy/streamChunkStrategy.js +4 -4
  71. package/dist/uploadStrategy/streamChunkStrategy.js.map +1 -1
  72. package/dist/uploadStrategy/streamChunkStrategy.spec.js +8 -12
  73. package/dist/uploadStrategy/streamChunkStrategy.spec.js.map +1 -1
  74. package/dist/validation/caseInsensitiveDocument.js +21 -2
  75. package/dist/validation/caseInsensitiveDocument.js.map +1 -1
  76. package/dist/validation/knownKey.js +13 -4
  77. package/dist/validation/knownKey.js.map +1 -1
  78. package/dist/validation/parseFile.js +14 -60
  79. package/dist/validation/parseFile.js.map +1 -1
  80. package/dist/validation/parseFile.spec.js +42 -3
  81. package/dist/validation/parseFile.spec.js.map +1 -1
  82. package/dist/validation/parsePermissions.js +119 -0
  83. package/dist/validation/parsePermissions.js.map +1 -0
  84. package/dist/validation/parsePermissions.spec.js +87 -0
  85. package/dist/validation/parsePermissions.spec.js.map +1 -0
  86. package/dist/validation/requiredKeyValidator.js +1 -1
  87. package/dist/validation/requiredKeyValidator.js.map +1 -1
  88. package/package.json +24 -18
  89. package/dist/definitions/source/source.d.ts +0 -5
  90. package/dist/docs/.nojekyll +0 -1
  91. package/dist/docs/assets/highlight.css +0 -71
  92. package/dist/docs/assets/main.js +0 -58
  93. package/dist/docs/assets/search.js +0 -1
  94. package/dist/docs/assets/style.css +0 -1280
  95. package/dist/docs/classes/AnySecurityIdentityBuilder.html +0 -125
  96. package/dist/docs/classes/CatalogSource.html +0 -327
  97. package/dist/docs/classes/DocumentBuilder.html +0 -509
  98. package/dist/docs/classes/FieldAnalyser.html +0 -203
  99. package/dist/docs/classes/GroupSecurityIdentityBuilder.html +0 -128
  100. package/dist/docs/classes/PushSource.html +0 -465
  101. package/dist/docs/classes/UserSecurityIdentityBuilder.html +0 -128
  102. package/dist/docs/classes/VirtualGroupSecurityIdentityBuilder.html +0 -128
  103. package/dist/docs/classes/errors.FieldTypeInconsistencyError.html +0 -170
  104. package/dist/docs/classes/errors.InvalidDocument.html +0 -172
  105. package/dist/docs/classes/errors.InvalidPermanentId.html +0 -170
  106. package/dist/docs/classes/errors.NotAFileError.html +0 -170
  107. package/dist/docs/classes/errors.NotAJsonFileError.html +0 -170
  108. package/dist/docs/classes/errors.PrivilegeError.html +0 -170
  109. package/dist/docs/classes/errors.UnsupportedAttribute.html +0 -172
  110. package/dist/docs/classes/errors.UnsupportedFieldError.html +0 -199
  111. package/dist/docs/enums/PlatformEnvironment.html +0 -86
  112. package/dist/docs/enums/Region.html +0 -79
  113. package/dist/docs/enums/SourceVisibility.html +0 -79
  114. package/dist/docs/functions/parseAndGetDocumentBuilderFromJSONDocument.html +0 -86
  115. package/dist/docs/index.html +0 -121
  116. package/dist/docs/interfaces/BatchUpdateDocuments.html +0 -76
  117. package/dist/docs/interfaces/Document.html +0 -236
  118. package/dist/docs/interfaces/SecurityIdentity.html +0 -105
  119. package/dist/docs/interfaces/SecurityIdentityBuilder.html +0 -82
  120. package/dist/docs/interfaces/UploadBatchCallbackData.html +0 -100
  121. package/dist/docs/modules/errors.html +0 -68
  122. package/dist/docs/modules.html +0 -122
  123. package/dist/docs/types/BatchUpdateDocumentsFromFiles.html +0 -75
  124. package/dist/docs/types/CompressionType.html +0 -77
  125. package/dist/docs/types/FailedUploadCallback.html +0 -90
  126. package/dist/docs/types/Metadata.html +0 -75
  127. package/dist/docs/types/MetadataValue.html +0 -75
  128. package/dist/docs/types/PlatformUrlOptions.html +0 -82
  129. package/dist/docs/types/SecurityIdentityType.html +0 -75
  130. package/dist/docs/types/SuccessfulUploadCallback.html +0 -88
  131. package/dist/docs/types/Transformer.html +0 -88
  132. package/dist/docs/variables/BuiltInTransformers.html +0 -75
  133. package/dist/docs/variables/Source.html +0 -78
  134. package/dist/source/source.js +0 -9
  135. package/dist/source/source.js.map +0 -1
@@ -1,236 +0,0 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Document | @coveo/push-api-client</title><meta name="description" content="Documentation for @coveo/push-api-client"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
- <div class="tsd-toolbar-contents container">
3
- <div class="table-cell" id="tsd-search" data-base="..">
4
- <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"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
5
- <div class="field">
6
- <div id="tsd-toolbar-links"></div></div>
7
- <ul class="results">
8
- <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@coveo/push-api-client</a></div>
10
- <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"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
- <div class="container container-main">
12
- <div class="col-8 col-content">
13
- <div class="tsd-page-title">
14
- <ul class="tsd-breadcrumb">
15
- <li><a href="../modules.html">@coveo/push-api-client</a></li>
16
- <li><a href="Document.html">Document</a></li></ul>
17
- <h1>Interface Document</h1></div>
18
- <section class="tsd-panel tsd-comment">
19
- <div class="tsd-comment tsd-typography"><p>A Coveo document.</p>
20
- </div></section>
21
- <section class="tsd-panel tsd-hierarchy">
22
- <h4>Hierarchy</h4>
23
- <ul class="tsd-hierarchy">
24
- <li><span class="target">Document</span></li></ul></section><aside class="tsd-sources">
25
- <ul>
26
- <li>Defined in <a href="https://github.com/coveo/push-api-client.js/blob/ea4d2df/src/document.ts#L54">src/document.ts:54</a></li></ul></aside>
27
- <section class="tsd-panel-group tsd-index-group">
28
- <section class="tsd-panel tsd-index-panel">
29
- <details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
30
- <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"><path d="M1.5 5.50969L8 11.6609L14.5 5.50969L12.5466 3.66086L8 7.96494L3.45341 3.66086L1.5 5.50969Z" fill="var(--color-text)"></path></svg> Index</h5></summary>
31
- <div class="tsd-accordion-details">
32
- <section class="tsd-index-section">
33
- <h3 class="tsd-index-heading">Properties</h3>
34
- <div class="tsd-index-list"><a href="Document.html#author" class="tsd-index-link tsd-kind-property tsd-parent-kind-interface"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="#FF984D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12" id="icon-1024-path"></rect><path d="M9.354 16V7.24H12.174C12.99 7.24 13.638 7.476 14.118 7.948C14.606 8.412 14.85 9.036 14.85 9.82C14.85 10.604 14.606 11.232 14.118 11.704C13.638 12.168 12.99 12.4 12.174 12.4H10.434V16H9.354ZM10.434 11.428H12.174C12.646 11.428 13.022 11.284 13.302 10.996C13.59 10.7 13.734 10.308 13.734 9.82C13.734 9.324 13.59 8.932 13.302 8.644C13.022 8.356 12.646 8.212 12.174 8.212H10.434V11.428Z" fill="var(--color-text)" id="icon-1024-text"></path></svg><span>author?</span></a>
35
- <a href="Document.html#clickableUri" class="tsd-index-link tsd-kind-property tsd-parent-kind-interface"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>clickable<wbr/>Uri?</span></a>
36
- <a href="Document.html#compressedBinaryData" class="tsd-index-link tsd-kind-property tsd-parent-kind-interface"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>compressed<wbr/>Binary<wbr/>Data?</span></a>
37
- <a href="Document.html#data-1" class="tsd-index-link tsd-kind-property tsd-parent-kind-interface"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>data?</span></a>
38
- <a href="Document.html#date" class="tsd-index-link tsd-kind-property tsd-parent-kind-interface"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>date?</span></a>
39
- <a href="Document.html#fileExtension" class="tsd-index-link tsd-kind-property tsd-parent-kind-interface"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>file<wbr/>Extension?</span></a>
40
- <a href="Document.html#metadata" class="tsd-index-link tsd-kind-property tsd-parent-kind-interface"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>metadata?</span></a>
41
- <a href="Document.html#modifiedDate" class="tsd-index-link tsd-kind-property tsd-parent-kind-interface"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>modified<wbr/>Date?</span></a>
42
- <a href="Document.html#parentId" class="tsd-index-link tsd-kind-property tsd-parent-kind-interface"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>parent<wbr/>Id?</span></a>
43
- <a href="Document.html#permanentId" class="tsd-index-link tsd-kind-property tsd-parent-kind-interface"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>permanent<wbr/>Id?</span></a>
44
- <a href="Document.html#permissions" class="tsd-index-link tsd-kind-property tsd-parent-kind-interface"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>permissions?</span></a>
45
- <a href="Document.html#title" class="tsd-index-link tsd-kind-property tsd-parent-kind-interface"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>title</span></a>
46
- <a href="Document.html#uri" class="tsd-index-link tsd-kind-property tsd-parent-kind-interface"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>uri</span></a>
47
- </div></section></div></details></section></section>
48
- <section class="tsd-panel-group tsd-member-group">
49
- <h2>Properties</h2>
50
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a id="author" class="tsd-anchor"></a>
51
- <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>author</span><a href="#author" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none" id="icon-anchor-a"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5" id="icon-anchor-b"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5" id="icon-anchor-c"></path></svg></a></h3>
52
- <div class="tsd-signature">author<span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div>
53
- <div class="tsd-comment tsd-typography"><p>The author of the document.</p>
54
- </div><aside class="tsd-sources">
55
- <ul>
56
- <li>Defined in <a href="https://github.com/coveo/push-api-client.js/blob/ea4d2df/src/document.ts#L74">src/document.ts:74</a></li></ul></aside></section>
57
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a id="clickableUri" class="tsd-anchor"></a>
58
- <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>clickable<wbr/>Uri</span><a href="#clickableUri" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
59
- <div class="tsd-signature">clickable<wbr/>Uri<span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div>
60
- <div class="tsd-comment tsd-typography"><p>The clickable URI associated with the document.</p>
61
- </div><aside class="tsd-sources">
62
- <ul>
63
- <li>Defined in <a href="https://github.com/coveo/push-api-client.js/blob/ea4d2df/src/document.ts#L70">src/document.ts:70</a></li></ul></aside></section>
64
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a id="compressedBinaryData" class="tsd-anchor"></a>
65
- <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>compressed<wbr/>Binary<wbr/>Data</span><a href="#compressedBinaryData" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
66
- <div class="tsd-signature">compressed<wbr/>Binary<wbr/>Data<span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-symbol">{ </span><br/><span>    </span>compressionType<span class="tsd-signature-symbol">: </span><a href="../types/CompressionType.html" class="tsd-signature-type" data-tsd-kind="Type alias">CompressionType</a><span class="tsd-signature-symbol">; </span><br/><span>    </span>data<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span></div>
67
- <div class="tsd-comment tsd-typography"><p>The original binary item content, compressed using one of the supported compression types (Deflate, GZip, LZMA, Uncompressed, or ZLib), and then Base64 encoded.</p>
68
- <p>You can use this parameter when you&#39;re pushing a compressed binary item (such as XML/HTML, PDF, Word, or binary) whose size is less than 5 MB.</p>
69
- <p>Whenever you&#39;re pushing an item whose size is 5 MB or more, use the CompressedBinaryDataFileIdproperty instead.</p>
70
- <p>If you&#39;re pushing less than 5 MB of textual (non-binary) content, you can use the data property instead.</p>
71
- <p>See <a href="https://docs.coveo.com/en/73">https://docs.coveo.com/en/73</a> for more information.</p>
72
- </div>
73
- <div class="tsd-type-declaration">
74
- <h4>Type declaration</h4>
75
- <ul class="tsd-parameters">
76
- <li class="tsd-parameter">
77
- <h5>compression<wbr/>Type<span class="tsd-signature-symbol">: </span><a href="../types/CompressionType.html" class="tsd-signature-type" data-tsd-kind="Type alias">CompressionType</a></h5>
78
- <div class="tsd-comment tsd-typography"><p>The compression type that was applied to your document.</p>
79
- </div></li>
80
- <li class="tsd-parameter">
81
- <h5>data<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></h5>
82
- <div class="tsd-comment tsd-typography"><p>The base64 encoded binary data.</p>
83
- <p>Example: <code>eJxzrUjMLchJBQAK4ALN</code></p>
84
- </div></li></ul></div><aside class="tsd-sources">
85
- <ul>
86
- <li>Defined in <a href="https://github.com/coveo/push-api-client.js/blob/ea4d2df/src/document.ts#L124">src/document.ts:124</a></li></ul></aside></section>
87
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a id="data-1" class="tsd-anchor"></a>
88
- <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>data</span><a href="#data-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
89
- <div class="tsd-signature">data<span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div>
90
- <div class="tsd-comment tsd-typography"><p>The textual (non-binary) content of the item.</p>
91
- <p>Whenever you&#39;re pushing a compressed binary item (such as XML/HTML, PDF, Word, or binary), you should use the CompressedBinaryData or CompressedBinaryDataFileId attribute instead, depending on the content size.</p>
92
- <p>Accepts 5 MB or less of uncompressed textual data.</p>
93
- <p>See <a href="https://docs.coveo.com/en/73">https://docs.coveo.com/en/73</a> for more information.</p>
94
- <p>Example: <code>This is a simple string that will be used for searchability as well as to generate excerpt and summaries for the document.</code></p>
95
- </div><aside class="tsd-sources">
96
- <ul>
97
- <li>Defined in <a href="https://github.com/coveo/push-api-client.js/blob/ea4d2df/src/document.ts#L112">src/document.ts:112</a></li></ul></aside></section>
98
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a id="date" class="tsd-anchor"></a>
99
- <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>date</span><a href="#date" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
100
- <div class="tsd-signature">date<span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div>
101
- <div class="tsd-comment tsd-typography"><p>The date of the document, represented as an ISO string.</p>
102
- <p>Optional, will default to indexation date.</p>
103
- </div><aside class="tsd-sources">
104
- <ul>
105
- <li>Defined in <a href="https://github.com/coveo/push-api-client.js/blob/ea4d2df/src/document.ts#L80">src/document.ts:80</a></li></ul></aside></section>
106
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a id="fileExtension" class="tsd-anchor"></a>
107
- <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>file<wbr/>Extension</span><a href="#fileExtension" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
108
- <div class="tsd-signature">file<wbr/>Extension<span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div>
109
- <div class="tsd-comment tsd-typography"><p>The file extension of the data you&#39;re pushing.</p>
110
- <p>This is useful when pushing a compressed item. The converter uses this information to identify how to correctly process the item.</p>
111
- <p>Values must include the preceding . character.</p>
112
- <p>Example: <code>.html</code></p>
113
- </div><aside class="tsd-sources">
114
- <ul>
115
- <li>Defined in <a href="https://github.com/coveo/push-api-client.js/blob/ea4d2df/src/document.ts#L178">src/document.ts:178</a></li></ul></aside></section>
116
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a id="metadata" class="tsd-anchor"></a>
117
- <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>metadata</span><a href="#metadata" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
118
- <div class="tsd-signature">metadata<span class="tsd-signature-symbol">?:</span> <a href="../types/Metadata.html" class="tsd-signature-type" data-tsd-kind="Type alias">Metadata</a></div>
119
- <div class="tsd-comment tsd-typography"><p>The metadata key-value pairs for a given document.</p>
120
- <p>Each metadata in the document must be unique.</p>
121
- <p>Metadata are case-insensitive (e.g., the Push API considers mykey, MyKey, myKey, MYKEY, etc. as identical).</p>
122
- <p>See <a href="https://docs.coveo.com/en/115">https://docs.coveo.com/en/115</a> for more information.</p>
123
- </div><aside class="tsd-sources">
124
- <ul>
125
- <li>Defined in <a href="https://github.com/coveo/push-api-client.js/blob/ea4d2df/src/document.ts#L145">src/document.ts:145</a></li></ul></aside></section>
126
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a id="modifiedDate" class="tsd-anchor"></a>
127
- <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>modified<wbr/>Date</span><a href="#modifiedDate" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
128
- <div class="tsd-signature">modified<wbr/>Date<span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div>
129
- <div class="tsd-comment tsd-typography"><p>The modified date of the document, represented as an ISO string.</p>
130
- <p>Optional, will default to indexation date.</p>
131
- </div><aside class="tsd-sources">
132
- <ul>
133
- <li>Defined in <a href="https://github.com/coveo/push-api-client.js/blob/ea4d2df/src/document.ts#L86">src/document.ts:86</a></li></ul></aside></section>
134
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a id="parentId" class="tsd-anchor"></a>
135
- <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>parent<wbr/>Id</span><a href="#parentId" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
136
- <div class="tsd-signature">parent<wbr/>Id<span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div>
137
- <div class="tsd-comment tsd-typography"><p>The unique identifier (URI) of the parent item.</p>
138
- <p>Specifying a value for this key creates a relationship between the attachment item (child) and its parent item.</p>
139
- <p>This value also ensures that a parent and all of its attachments will be routed in the same index slice.</p>
140
- </div><aside class="tsd-sources">
141
- <ul>
142
- <li>Defined in <a href="https://github.com/coveo/push-api-client.js/blob/ea4d2df/src/document.ts#L100">src/document.ts:100</a></li></ul></aside></section>
143
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a id="permanentId" class="tsd-anchor"></a>
144
- <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>permanent<wbr/>Id</span><a href="#permanentId" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
145
- <div class="tsd-signature">permanent<wbr/>Id<span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div>
146
- <div class="tsd-comment tsd-typography"><p>The permanent identifier of a document that does not change over time.</p>
147
- <p>Optional, will be derived from the document URI.</p>
148
- </div><aside class="tsd-sources">
149
- <ul>
150
- <li>Defined in <a href="https://github.com/coveo/push-api-client.js/blob/ea4d2df/src/document.ts#L92">src/document.ts:92</a></li></ul></aside></section>
151
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a id="permissions" class="tsd-anchor"></a>
152
- <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>permissions</span><a href="#permissions" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
153
- <div class="tsd-signature">permissions<span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-symbol">{ </span><br/><span>    </span>allowAnonymous<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">; </span><br/><span>    </span>allowedPermissions<span class="tsd-signature-symbol">?: </span><a href="SecurityIdentity.html" class="tsd-signature-type" data-tsd-kind="Interface">SecurityIdentity</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span>    </span>deniedPermissions<span class="tsd-signature-symbol">?: </span><a href="SecurityIdentity.html" class="tsd-signature-type" data-tsd-kind="Interface">SecurityIdentity</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span></div>
154
- <div class="tsd-comment tsd-typography"><p>The list of permission sets for this item.</p>
155
- <p>This is useful when item based security is required (i.e., when security isn&#39;t configured at the source level).</p>
156
- <p>See <a href="https://docs.coveo.com/en/107">https://docs.coveo.com/en/107</a> for more information.</p>
157
- </div>
158
- <div class="tsd-type-declaration">
159
- <h4>Type declaration</h4>
160
- <ul class="tsd-parameters">
161
- <li class="tsd-parameter">
162
- <h5>allow<wbr/>Anonymous<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></h5>
163
- <div class="tsd-comment tsd-typography"><p>Whether to allow anonymous users in this permission set.</p>
164
- <p>Default value is false.</p>
165
- </div></li>
166
- <li class="tsd-parameter">
167
- <h5><code class="tsd-tag ts-flagOptional">Optional</code> allowed<wbr/>Permissions<span class="tsd-signature-symbol">?: </span><a href="SecurityIdentity.html" class="tsd-signature-type" data-tsd-kind="Interface">SecurityIdentity</a><span class="tsd-signature-symbol">[]</span></h5>
168
- <div class="tsd-comment tsd-typography"><p>The list of allowed permissions for this permission set.</p>
169
- </div></li>
170
- <li class="tsd-parameter">
171
- <h5><code class="tsd-tag ts-flagOptional">Optional</code> denied<wbr/>Permissions<span class="tsd-signature-symbol">?: </span><a href="SecurityIdentity.html" class="tsd-signature-type" data-tsd-kind="Interface">SecurityIdentity</a><span class="tsd-signature-symbol">[]</span></h5>
172
- <div class="tsd-comment tsd-typography"><p>The list of denied permissions for this permission set.</p>
173
- </div></li></ul></div><aside class="tsd-sources">
174
- <ul>
175
- <li>Defined in <a href="https://github.com/coveo/push-api-client.js/blob/ea4d2df/src/document.ts#L153">src/document.ts:153</a></li></ul></aside></section>
176
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a id="title" class="tsd-anchor"></a>
177
- <h3 class="tsd-anchor-link"><span>title</span><a href="#title" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
178
- <div class="tsd-signature">title<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
179
- <div class="tsd-comment tsd-typography"><p>The title of the document.</p>
180
- </div><aside class="tsd-sources">
181
- <ul>
182
- <li>Defined in <a href="https://github.com/coveo/push-api-client.js/blob/ea4d2df/src/document.ts#L66">src/document.ts:66</a></li></ul></aside></section>
183
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a id="uri" class="tsd-anchor"></a>
184
- <h3 class="tsd-anchor-link"><span>uri</span><a href="#uri" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
185
- <div class="tsd-signature">uri<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
186
- <div class="tsd-comment tsd-typography"><p>The Uniform Resource Identifier (URI) that uniquely identifies the document in a Coveo index.</p>
187
- <p>Examples:</p>
188
- <ul>
189
- <li><code>http://www.example.com/</code></li>
190
- <li><code>file://folder/text.txt</code></li>
191
- </ul>
192
- </div><aside class="tsd-sources">
193
- <ul>
194
- <li>Defined in <a href="https://github.com/coveo/push-api-client.js/blob/ea4d2df/src/document.ts#L62">src/document.ts:62</a></li></ul></aside></section></section></div>
195
- <div class="col-4 col-menu menu-sticky-wrap menu-highlight">
196
- <div class="tsd-navigation settings">
197
- <details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
198
- <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Settings</h3></summary>
199
- <div class="tsd-accordion-details">
200
- <div class="tsd-filter-visibility">
201
- <h4 class="uppercase">Member Visibility</h4><form>
202
- <ul id="tsd-filter-options">
203
- <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>
204
- <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>
205
- <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>
206
- <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>
207
- <div class="tsd-theme-toggle">
208
- <h4 class="uppercase">Theme</h4><select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div>
209
- <nav class="tsd-navigation primary">
210
- <details class="tsd-index-accordion" open><summary class="tsd-accordion-summary">
211
- <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
212
- <div class="tsd-accordion-details">
213
- <ul>
214
- <li><a href="../modules.html">@coveo/push-<wbr/>api-<wbr/>client</a>
215
- <ul>
216
- <li class="tsd-kind-namespace"><a href="../modules/errors.html">errors</a></li></ul></li></ul></div></details></nav>
217
- <nav class="tsd-navigation secondary menu-sticky">
218
- <ul>
219
- <li class="current tsd-kind-interface"><a href="Document.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-256-path"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)" id="icon-256-text"></path></svg><span>Document</span></a>
220
- <ul>
221
- <li class="tsd-kind-property tsd-parent-kind-interface"><a href="Document.html#author" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>author?</a></li>
222
- <li class="tsd-kind-property tsd-parent-kind-interface"><a href="Document.html#clickableUri" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>clickable<wbr/>Uri?</a></li>
223
- <li class="tsd-kind-property tsd-parent-kind-interface"><a href="Document.html#compressedBinaryData" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>compressed<wbr/>Binary<wbr/>Data?</a></li>
224
- <li class="tsd-kind-property tsd-parent-kind-interface"><a href="Document.html#data-1" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>data?</a></li>
225
- <li class="tsd-kind-property tsd-parent-kind-interface"><a href="Document.html#date" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>date?</a></li>
226
- <li class="tsd-kind-property tsd-parent-kind-interface"><a href="Document.html#fileExtension" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>file<wbr/>Extension?</a></li>
227
- <li class="tsd-kind-property tsd-parent-kind-interface"><a href="Document.html#metadata" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>metadata?</a></li>
228
- <li class="tsd-kind-property tsd-parent-kind-interface"><a href="Document.html#modifiedDate" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>modified<wbr/>Date?</a></li>
229
- <li class="tsd-kind-property tsd-parent-kind-interface"><a href="Document.html#parentId" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>parent<wbr/>Id?</a></li>
230
- <li class="tsd-kind-property tsd-parent-kind-interface"><a href="Document.html#permanentId" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>permanent<wbr/>Id?</a></li>
231
- <li class="tsd-kind-property tsd-parent-kind-interface"><a href="Document.html#permissions" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>permissions?</a></li>
232
- <li class="tsd-kind-property tsd-parent-kind-interface"><a href="Document.html#title" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>title</a></li>
233
- <li class="tsd-kind-property tsd-parent-kind-interface"><a href="Document.html#uri" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>uri</a></li></ul></li></ul></nav></div></div>
234
- <div class="container tsd-generator">
235
- <p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
236
- <div class="overlay"></div><script src="../assets/main.js"></script></body></html>
@@ -1,105 +0,0 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>SecurityIdentity | @coveo/push-api-client</title><meta name="description" content="Documentation for @coveo/push-api-client"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
- <div class="tsd-toolbar-contents container">
3
- <div class="table-cell" id="tsd-search" data-base="..">
4
- <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"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
5
- <div class="field">
6
- <div id="tsd-toolbar-links"></div></div>
7
- <ul class="results">
8
- <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@coveo/push-api-client</a></div>
10
- <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"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
- <div class="container container-main">
12
- <div class="col-8 col-content">
13
- <div class="tsd-page-title">
14
- <ul class="tsd-breadcrumb">
15
- <li><a href="../modules.html">@coveo/push-api-client</a></li>
16
- <li><a href="SecurityIdentity.html">SecurityIdentity</a></li></ul>
17
- <h1>Interface SecurityIdentity</h1></div>
18
- <section class="tsd-panel tsd-comment">
19
- <div class="tsd-comment tsd-typography"><p>A security identity. See <a href="https://docs.coveo.com/en/1719">https://docs.coveo.com/en/1719</a> for more information.</p>
20
- </div></section>
21
- <section class="tsd-panel tsd-hierarchy">
22
- <h4>Hierarchy</h4>
23
- <ul class="tsd-hierarchy">
24
- <li><span class="target">SecurityIdentity</span></li></ul></section><aside class="tsd-sources">
25
- <ul>
26
- <li>Defined in <a href="https://github.com/coveo/push-api-client.js/blob/ea4d2df/src/document.ts#L10">src/document.ts:10</a></li></ul></aside>
27
- <section class="tsd-panel-group tsd-index-group">
28
- <section class="tsd-panel tsd-index-panel">
29
- <details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
30
- <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"><path d="M1.5 5.50969L8 11.6609L14.5 5.50969L12.5466 3.66086L8 7.96494L3.45341 3.66086L1.5 5.50969Z" fill="var(--color-text)"></path></svg> Index</h5></summary>
31
- <div class="tsd-accordion-details">
32
- <section class="tsd-index-section">
33
- <h3 class="tsd-index-heading">Properties</h3>
34
- <div class="tsd-index-list"><a href="SecurityIdentity.html#identity" class="tsd-index-link tsd-kind-property tsd-parent-kind-interface"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="#FF984D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12" id="icon-1024-path"></rect><path d="M9.354 16V7.24H12.174C12.99 7.24 13.638 7.476 14.118 7.948C14.606 8.412 14.85 9.036 14.85 9.82C14.85 10.604 14.606 11.232 14.118 11.704C13.638 12.168 12.99 12.4 12.174 12.4H10.434V16H9.354ZM10.434 11.428H12.174C12.646 11.428 13.022 11.284 13.302 10.996C13.59 10.7 13.734 10.308 13.734 9.82C13.734 9.324 13.59 8.932 13.302 8.644C13.022 8.356 12.646 8.212 12.174 8.212H10.434V11.428Z" fill="var(--color-text)" id="icon-1024-text"></path></svg><span>identity</span></a>
35
- <a href="SecurityIdentity.html#identityType" class="tsd-index-link tsd-kind-property tsd-parent-kind-interface"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>identity<wbr/>Type</span></a>
36
- <a href="SecurityIdentity.html#securityProvider" class="tsd-index-link tsd-kind-property tsd-parent-kind-interface"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>security<wbr/>Provider?</span></a>
37
- </div></section></div></details></section></section>
38
- <section class="tsd-panel-group tsd-member-group">
39
- <h2>Properties</h2>
40
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a id="identity" class="tsd-anchor"></a>
41
- <h3 class="tsd-anchor-link"><span>identity</span><a href="#identity" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none" id="icon-anchor-a"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5" id="icon-anchor-b"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5" id="icon-anchor-c"></path></svg></a></h3>
42
- <div class="tsd-signature">identity<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
43
- <div class="tsd-comment tsd-typography"><p>The name of the security identity.</p>
44
- <p>Examples:</p>
45
- <ul>
46
- <li><code>asmith@example.com</code></li>
47
- <li><code>SampleTeam2</code></li>
48
- </ul>
49
- </div><aside class="tsd-sources">
50
- <ul>
51
- <li>Defined in <a href="https://github.com/coveo/push-api-client.js/blob/ea4d2df/src/document.ts#L18">src/document.ts:18</a></li></ul></aside></section>
52
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a id="identityType" class="tsd-anchor"></a>
53
- <h3 class="tsd-anchor-link"><span>identity<wbr/>Type</span><a href="#identityType" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
54
- <div class="tsd-signature">identity<wbr/>Type<span class="tsd-signature-symbol">:</span> <a href="../types/SecurityIdentityType.html" class="tsd-signature-type" data-tsd-kind="Type alias">SecurityIdentityType</a></div>
55
- <div class="tsd-comment tsd-typography"><p>The type of the identity.
56
- Valid values:</p>
57
- <ul>
58
- <li><code>UNKNOWN</code></li>
59
- <li><code>USER</code> : Defines a single user.</li>
60
- <li><code>GROUP</code> : Defines an existing group of identities within the indexed system. Individual members of this group can be of any valid identity Type (USER, GROUP, or VIRTUAL_GROUP).</li>
61
- <li><code>VIRTUAL_GROUP</code> : Defines a group that doesn&#39;t exist within the indexed system. Mechanically, a <code>VIRTUAL_GROUP</code> is identical to a <code>GROUP</code>.</li>
62
- </ul>
63
- </div><aside class="tsd-sources">
64
- <ul>
65
- <li>Defined in <a href="https://github.com/coveo/push-api-client.js/blob/ea4d2df/src/document.ts#L27">src/document.ts:27</a></li></ul></aside></section>
66
- <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"><a id="securityProvider" class="tsd-anchor"></a>
67
- <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>security<wbr/>Provider</span><a href="#securityProvider" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
68
- <div class="tsd-signature">security<wbr/>Provider<span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div>
69
- <div class="tsd-comment tsd-typography"><p>The security identity provider through which the security identity is updated.</p>
70
- <p>Defaults to the first security identity provider associated with the target Push source.</p>
71
- </div><aside class="tsd-sources">
72
- <ul>
73
- <li>Defined in <a href="https://github.com/coveo/push-api-client.js/blob/ea4d2df/src/document.ts#L33">src/document.ts:33</a></li></ul></aside></section></section></div>
74
- <div class="col-4 col-menu menu-sticky-wrap menu-highlight">
75
- <div class="tsd-navigation settings">
76
- <details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
77
- <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Settings</h3></summary>
78
- <div class="tsd-accordion-details">
79
- <div class="tsd-filter-visibility">
80
- <h4 class="uppercase">Member Visibility</h4><form>
81
- <ul id="tsd-filter-options">
82
- <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>
83
- <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>
84
- <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>
85
- <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>
86
- <div class="tsd-theme-toggle">
87
- <h4 class="uppercase">Theme</h4><select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div>
88
- <nav class="tsd-navigation primary">
89
- <details class="tsd-index-accordion" open><summary class="tsd-accordion-summary">
90
- <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
91
- <div class="tsd-accordion-details">
92
- <ul>
93
- <li><a href="../modules.html">@coveo/push-<wbr/>api-<wbr/>client</a>
94
- <ul>
95
- <li class="tsd-kind-namespace"><a href="../modules/errors.html">errors</a></li></ul></li></ul></div></details></nav>
96
- <nav class="tsd-navigation secondary menu-sticky">
97
- <ul>
98
- <li class="current tsd-kind-interface"><a href="SecurityIdentity.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-256-path"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)" id="icon-256-text"></path></svg><span>Security<wbr/>Identity</span></a>
99
- <ul>
100
- <li class="tsd-kind-property tsd-parent-kind-interface"><a href="SecurityIdentity.html#identity" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>identity</a></li>
101
- <li class="tsd-kind-property tsd-parent-kind-interface"><a href="SecurityIdentity.html#identityType" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>identity<wbr/>Type</a></li>
102
- <li class="tsd-kind-property tsd-parent-kind-interface"><a href="SecurityIdentity.html#securityProvider" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>security<wbr/>Provider?</a></li></ul></li></ul></nav></div></div>
103
- <div class="container tsd-generator">
104
- <p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
105
- <div class="overlay"></div><script src="../assets/main.js"></script></body></html>
@@ -1,82 +0,0 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>SecurityIdentityBuilder | @coveo/push-api-client</title><meta name="description" content="Documentation for @coveo/push-api-client"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
- <div class="tsd-toolbar-contents container">
3
- <div class="table-cell" id="tsd-search" data-base="..">
4
- <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"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
5
- <div class="field">
6
- <div id="tsd-toolbar-links"></div></div>
7
- <ul class="results">
8
- <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@coveo/push-api-client</a></div>
10
- <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"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
- <div class="container container-main">
12
- <div class="col-8 col-content">
13
- <div class="tsd-page-title">
14
- <ul class="tsd-breadcrumb">
15
- <li><a href="../modules.html">@coveo/push-api-client</a></li>
16
- <li><a href="SecurityIdentityBuilder.html">SecurityIdentityBuilder</a></li></ul>
17
- <h1>Interface SecurityIdentityBuilder</h1></div>
18
- <section class="tsd-panel tsd-comment">
19
- <div class="tsd-comment tsd-typography"><p>Build a security identity. See <a href="SecurityIdentity.html">SecurityIdentity</a>.</p>
20
- </div></section>
21
- <section class="tsd-panel tsd-hierarchy">
22
- <h4>Hierarchy</h4>
23
- <ul class="tsd-hierarchy">
24
- <li><span class="target">SecurityIdentityBuilder</span></li></ul></section>
25
- <section class="tsd-panel">
26
- <h4>Implemented by</h4>
27
- <ul class="tsd-hierarchy">
28
- <li><a href="../classes/AnySecurityIdentityBuilder.html" class="tsd-signature-type" data-tsd-kind="Class">AnySecurityIdentityBuilder</a></li>
29
- <li><a href="../classes/GroupSecurityIdentityBuilder.html" class="tsd-signature-type" data-tsd-kind="Class">GroupSecurityIdentityBuilder</a></li>
30
- <li><a href="../classes/UserSecurityIdentityBuilder.html" class="tsd-signature-type" data-tsd-kind="Class">UserSecurityIdentityBuilder</a></li>
31
- <li><a href="../classes/VirtualGroupSecurityIdentityBuilder.html" class="tsd-signature-type" data-tsd-kind="Class">VirtualGroupSecurityIdentityBuilder</a></li></ul></section><aside class="tsd-sources">
32
- <ul>
33
- <li>Defined in <a href="https://github.com/coveo/push-api-client.js/blob/ea4d2df/src/securityIdentityBuilder.ts#L6">src/securityIdentityBuilder.ts:6</a></li></ul></aside>
34
- <section class="tsd-panel-group tsd-index-group">
35
- <section class="tsd-panel tsd-index-panel">
36
- <details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
37
- <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"><path d="M1.5 5.50969L8 11.6609L14.5 5.50969L12.5466 3.66086L8 7.96494L3.45341 3.66086L1.5 5.50969Z" fill="var(--color-text)"></path></svg> Index</h5></summary>
38
- <div class="tsd-accordion-details">
39
- <section class="tsd-index-section">
40
- <h3 class="tsd-index-heading">Methods</h3>
41
- <div class="tsd-index-list"><a href="SecurityIdentityBuilder.html#build" class="tsd-index-link tsd-kind-method tsd-parent-kind-interface"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="#FF4DB8" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12" id="icon-2048-path"></rect><path d="M9.162 16V7.24H10.578L11.514 10.072C11.602 10.328 11.674 10.584 11.73 10.84C11.794 11.088 11.842 11.28 11.874 11.416C11.906 11.28 11.954 11.088 12.018 10.84C12.082 10.584 12.154 10.324 12.234 10.06L13.122 7.24H14.538V16H13.482V12.82C13.482 12.468 13.49 12.068 13.506 11.62C13.53 11.172 13.558 10.716 13.59 10.252C13.622 9.78 13.654 9.332 13.686 8.908C13.726 8.476 13.762 8.1 13.794 7.78L12.366 12.16H11.334L9.894 7.78C9.934 8.092 9.97 8.456 10.002 8.872C10.042 9.28 10.078 9.716 10.11 10.18C10.142 10.636 10.166 11.092 10.182 11.548C10.206 12.004 10.218 12.428 10.218 12.82V16H9.162Z" fill="var(--color-text)" id="icon-2048-text"></path></svg><span>build</span></a>
42
- </div></section></div></details></section></section>
43
- <section class="tsd-panel-group tsd-member-group">
44
- <h2>Methods</h2>
45
- <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface"><a id="build" class="tsd-anchor"></a>
46
- <h3 class="tsd-anchor-link"><span>build</span><a href="#build" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none" id="icon-anchor-a"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5" id="icon-anchor-b"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5" id="icon-anchor-c"></path></svg></a></h3>
47
- <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface">
48
- <li class="tsd-signature tsd-anchor-link" id="build.build-1">build<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="SecurityIdentity.html" class="tsd-signature-type" data-tsd-kind="Interface">SecurityIdentity</a><span class="tsd-signature-symbol"> | </span><a href="SecurityIdentity.html" class="tsd-signature-type" data-tsd-kind="Interface">SecurityIdentity</a><span class="tsd-signature-symbol">[]</span><a href="#build.build-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
49
- <li class="tsd-description">
50
- <h4 class="tsd-returns-title">Returns <a href="SecurityIdentity.html" class="tsd-signature-type" data-tsd-kind="Interface">SecurityIdentity</a><span class="tsd-signature-symbol"> | </span><a href="SecurityIdentity.html" class="tsd-signature-type" data-tsd-kind="Interface">SecurityIdentity</a><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
51
- <ul>
52
- <li>Defined in <a href="https://github.com/coveo/push-api-client.js/blob/ea4d2df/src/securityIdentityBuilder.ts#L7">src/securityIdentityBuilder.ts:7</a></li></ul></aside></li></ul></section></section></div>
53
- <div class="col-4 col-menu menu-sticky-wrap menu-highlight">
54
- <div class="tsd-navigation settings">
55
- <details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
56
- <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Settings</h3></summary>
57
- <div class="tsd-accordion-details">
58
- <div class="tsd-filter-visibility">
59
- <h4 class="uppercase">Member Visibility</h4><form>
60
- <ul id="tsd-filter-options">
61
- <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>
62
- <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>
63
- <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>
64
- <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>
65
- <div class="tsd-theme-toggle">
66
- <h4 class="uppercase">Theme</h4><select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div>
67
- <nav class="tsd-navigation primary">
68
- <details class="tsd-index-accordion" open><summary class="tsd-accordion-summary">
69
- <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
70
- <div class="tsd-accordion-details">
71
- <ul>
72
- <li><a href="../modules.html">@coveo/push-<wbr/>api-<wbr/>client</a>
73
- <ul>
74
- <li class="tsd-kind-namespace"><a href="../modules/errors.html">errors</a></li></ul></li></ul></div></details></nav>
75
- <nav class="tsd-navigation secondary menu-sticky">
76
- <ul>
77
- <li class="current tsd-kind-interface"><a href="SecurityIdentityBuilder.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-256-path"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)" id="icon-256-text"></path></svg><span>Security<wbr/>Identity<wbr/>Builder</span></a>
78
- <ul>
79
- <li class="tsd-kind-method tsd-parent-kind-interface"><a href="SecurityIdentityBuilder.html#build" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>build</a></li></ul></li></ul></nav></div></div>
80
- <div class="container tsd-generator">
81
- <p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
82
- <div class="overlay"></div><script src="../assets/main.js"></script></body></html>