@webitel/ui-sdk 24.4.19 → 24.4.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/img/sprite/custom-chat-gateway.svg +5 -0
- package/dist/img/sprite/index.js +1 -0
- package/dist/ui-sdk.mjs +1069 -1069
- package/dist/ui-sdk.umd.js +9 -9
- package/package.json +3 -2
- package/src/api/clients/agents/agents.js +292 -0
- package/src/api/clients/buckets/buckets.js +138 -0
- package/src/api/clients/calendars/calendars.js +248 -0
- package/src/api/clients/chatGateways/chatGateways.js +309 -0
- package/src/api/clients/chatGateways/defaults/defaultChatGateway.js +18 -0
- package/src/api/clients/chatGateways/defaults/webChatGateway.js +73 -0
- package/src/api/clients/chatGateways/enums/WebchatAlternativeChannel.enum.js +14 -0
- package/src/api/clients/chatGateways/scripts/generateUri.js +9 -0
- package/src/api/clients/communications/communications.js +162 -0
- package/src/api/clients/flows/flow.js +256 -0
- package/src/api/clients/gateways/defaults/defaultGateway.js +9 -0
- package/src/api/clients/gateways/defaults/registerGateway.js +12 -0
- package/src/api/clients/gateways/defaults/trunkingGateway.js +16 -0
- package/src/api/clients/gateways/gateways.js +204 -0
- package/src/api/clients/index.js +27 -0
- package/src/api/clients/lists/blacklists.js +144 -0
- package/src/api/clients/media/media.js +136 -0
- package/src/api/clients/queues/defaults/processing.js +10 -0
- package/src/api/clients/queues/queues.js +275 -0
- package/src/api/clients/roles/roles.js +213 -0
- package/src/api/clients/users/__tests__/users.spec.js +200 -0
- package/src/api/clients/users/users.js +254 -0
- package/src/api/defaults/getDefaultInstance/getDefaultInstance.js +14 -0
- package/src/api/defaults/getDefaultOpenAPIConfig/getDefaultOpenAPIConfig.js +9 -0
- package/src/api/defaults/index.js +4 -0
- package/src/enums/ChatGatewayProvider/ChatGatewayProvider.enum.js +1 -0
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M13 12C13 12.5523 12.5523 13 12 13C11.4477 13 11 12.5523 11 12C11 11.4477 11.4477 11 12 11C12.5523 11 13 11.4477 13 12Z" fill="#556AF6"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 18.3678L9.80276 16.1706H7.78495C7.40439 16.1706 7.09091 15.8571 7.09091 15.4765V8C7.09091 7.61945 7.40439 7.30596 7.78495 7.30596H16.2151C16.5956 7.30596 16.9091 7.61945 16.9091 8V15.4765C16.9091 15.8571 16.5956 16.1706 16.2151 16.1706H14.1972L12 18.3678ZM11.5 8H12.5L12.6795 9.07729C13.0051 9.15269 13.3104 9.2811 13.5858 9.45293L14.4749 8.81791L15.182 9.52502L14.547 10.414C14.7189 10.6895 14.8473 10.9948 14.9227 11.3205L16 11.5V12.5L14.9227 12.6795C14.8473 13.0051 14.7189 13.3104 14.5471 13.5858L15.182 14.4746L14.4749 15.1818L13.5861 14.5469C13.3106 14.7188 13.0052 14.8473 12.6795 14.9227L12.5 16H11.5L11.3205 14.9227C10.9948 14.8473 10.6894 14.7188 10.4139 14.5469L9.52512 15.1818L8.81802 14.4746L9.45291 13.5858C9.28109 13.3104 9.15269 13.0051 9.07729 12.6795L8 12.5V11.5L9.07729 11.3205C9.15271 10.9948 9.28115 10.6895 9.45302 10.414L8.81802 9.52502L9.52512 8.81791L10.4142 9.45293C10.6896 9.2811 10.9949 9.15269 11.3205 9.07729L11.5 8Z" fill="#556AF6"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M22 12C22 17.5228 17.5229 22 12 22C6.47718 22 2.00003 17.5228 2.00003 12C2.00003 6.47715 6.47718 2 12 2C17.5229 2 22 6.47715 22 12ZM9.35089 17.2615L11.5894 19.5C11.8162 19.7268 12.1838 19.7268 12.4106 19.5L14.6491 17.2615H16.2151C17.1981 17.2615 18 16.4596 18 15.4765V8C18 7.01695 17.1981 6.21505 16.2151 6.21505H7.78495C6.8019 6.21505 6 7.01695 6 8V15.4765C6 16.4596 6.8019 17.2615 7.78495 17.2615H9.35089Z" fill="#556AF6"/>
|
|
5
|
+
</svg>
|
package/dist/img/sprite/index.js
CHANGED