apexify.js 3.0.2 → 3.1.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 (119) hide show
  1. package/.tsbuildinfo +1 -0
  2. package/README.md +190 -151
  3. package/dist/ai/ApexAI.d.ts +37 -0
  4. package/dist/ai/ApexAI.d.ts.map +1 -0
  5. package/dist/ai/ApexAI.js +258 -0
  6. package/dist/ai/ApexAI.js.map +1 -0
  7. package/dist/ai/buttons/drawMenu.d.ts +3 -0
  8. package/dist/ai/buttons/drawMenu.d.ts.map +1 -0
  9. package/dist/ai/buttons/drawMenu.js +271 -0
  10. package/dist/ai/buttons/drawMenu.js.map +1 -0
  11. package/dist/ai/buttons/tools.d.ts +3 -0
  12. package/dist/ai/buttons/tools.d.ts.map +1 -0
  13. package/dist/ai/buttons/tools.js +442 -0
  14. package/dist/ai/buttons/tools.js.map +1 -0
  15. package/dist/ai/functions/chunkString.d.ts +2 -0
  16. package/dist/ai/functions/chunkString.d.ts.map +1 -0
  17. package/{lib → dist}/ai/functions/chunkString.js +8 -8
  18. package/dist/ai/functions/chunkString.js.map +1 -0
  19. package/dist/ai/functions/draw.d.ts +3 -0
  20. package/dist/ai/functions/draw.d.ts.map +1 -0
  21. package/dist/ai/functions/draw.js +377 -0
  22. package/dist/ai/functions/draw.js.map +1 -0
  23. package/dist/ai/functions/generateVoiceResponse.d.ts +3 -0
  24. package/dist/ai/functions/generateVoiceResponse.d.ts.map +1 -0
  25. package/dist/ai/functions/generateVoiceResponse.js +158 -0
  26. package/dist/ai/functions/generateVoiceResponse.js.map +1 -0
  27. package/dist/ai/functions/imageReader.d.ts +3 -0
  28. package/dist/ai/functions/imageReader.d.ts.map +1 -0
  29. package/dist/ai/functions/imageReader.js +23 -0
  30. package/dist/ai/functions/imageReader.js.map +1 -0
  31. package/dist/ai/functions/readFiles.d.ts +3 -0
  32. package/dist/ai/functions/readFiles.d.ts.map +1 -0
  33. package/dist/ai/functions/readFiles.js +62 -0
  34. package/dist/ai/functions/readFiles.js.map +1 -0
  35. package/dist/ai/functions/shouldDrawImage.d.ts +2 -0
  36. package/dist/ai/functions/shouldDrawImage.d.ts.map +1 -0
  37. package/dist/ai/functions/shouldDrawImage.js +12 -0
  38. package/dist/ai/functions/shouldDrawImage.js.map +1 -0
  39. package/dist/ai/models.d.ts +9 -0
  40. package/dist/ai/models.d.ts.map +1 -0
  41. package/dist/ai/models.js +538 -0
  42. package/dist/ai/models.js.map +1 -0
  43. package/dist/ai/utils.d.ts +9 -0
  44. package/dist/ai/utils.d.ts.map +1 -0
  45. package/dist/ai/utils.js +20 -0
  46. package/dist/ai/utils.js.map +1 -0
  47. package/dist/canvas/ApexPainter.d.ts +26 -0
  48. package/dist/canvas/ApexPainter.d.ts.map +1 -0
  49. package/dist/canvas/ApexPainter.js +412 -0
  50. package/dist/canvas/ApexPainter.js.map +1 -0
  51. package/dist/canvas/utils/bg.d.ts +24 -0
  52. package/dist/canvas/utils/bg.d.ts.map +1 -0
  53. package/dist/canvas/utils/bg.js +77 -0
  54. package/dist/canvas/utils/bg.js.map +1 -0
  55. package/dist/canvas/utils/charts.d.ts +9 -0
  56. package/dist/canvas/utils/charts.d.ts.map +1 -0
  57. package/dist/canvas/utils/charts.js +453 -0
  58. package/dist/canvas/utils/charts.js.map +1 -0
  59. package/dist/canvas/utils/circular.d.ts +10 -0
  60. package/dist/canvas/utils/circular.d.ts.map +1 -0
  61. package/dist/canvas/utils/circular.js +22 -0
  62. package/dist/canvas/utils/circular.js.map +1 -0
  63. package/dist/canvas/utils/customLines.d.ts +2 -0
  64. package/dist/canvas/utils/customLines.d.ts.map +1 -0
  65. package/dist/canvas/utils/customLines.js +50 -0
  66. package/dist/canvas/utils/customLines.js.map +1 -0
  67. package/dist/canvas/utils/general functions.d.ts +8 -0
  68. package/dist/canvas/utils/general functions.d.ts.map +1 -0
  69. package/dist/canvas/utils/general functions.js +187 -0
  70. package/dist/canvas/utils/general functions.js.map +1 -0
  71. package/dist/canvas/utils/imageProperties.d.ts +60 -0
  72. package/dist/canvas/utils/imageProperties.d.ts.map +1 -0
  73. package/dist/canvas/utils/imageProperties.js +331 -0
  74. package/dist/canvas/utils/imageProperties.js.map +1 -0
  75. package/dist/canvas/utils/radius.d.ts +10 -0
  76. package/dist/canvas/utils/radius.d.ts.map +1 -0
  77. package/dist/canvas/utils/radius.js +31 -0
  78. package/dist/canvas/utils/radius.js.map +1 -0
  79. package/dist/canvas/utils/textProperties.d.ts +18 -0
  80. package/dist/canvas/utils/textProperties.d.ts.map +1 -0
  81. package/dist/canvas/utils/textProperties.js +67 -0
  82. package/dist/canvas/utils/textProperties.js.map +1 -0
  83. package/dist/canvas/utils/types.d.ts +389 -0
  84. package/dist/canvas/utils/types.d.ts.map +1 -0
  85. package/dist/canvas/utils/types.js +5 -0
  86. package/dist/canvas/utils/types.js.map +1 -0
  87. package/dist/canvas/utils/utils.d.ts +20 -0
  88. package/dist/canvas/utils/utils.d.ts.map +1 -0
  89. package/dist/canvas/utils/utils.js +43 -0
  90. package/dist/canvas/utils/utils.js.map +1 -0
  91. package/dist/index.d.ts +11 -0
  92. package/dist/index.d.ts.map +1 -0
  93. package/dist/index.js +66 -0
  94. package/dist/index.js.map +1 -0
  95. package/dist/utils.d.ts +12 -0
  96. package/dist/utils.d.ts.map +1 -0
  97. package/dist/utils.js +12 -0
  98. package/dist/utils.js.map +1 -0
  99. package/examples/barchart.txt +69 -0
  100. package/examples/linechart.txt +84 -0
  101. package/examples/piechart.txt +63 -0
  102. package/package.json +137 -78
  103. package/dataSQL/data.sql +0 -5
  104. package/dataSQL/dataName.sql +0 -0
  105. package/dataSQL/example_table.sql +0 -1
  106. package/index.js +0 -35
  107. package/lib/ai/apexAI.js +0 -446
  108. package/lib/ai/buttons/drawMenu.js +0 -351
  109. package/lib/ai/buttons/tools.js +0 -652
  110. package/lib/ai/functions/draw.js +0 -514
  111. package/lib/ai/functions/generateVoiceResponse.js +0 -239
  112. package/lib/ai/functions/processImageAttachments.js +0 -93
  113. package/lib/ai/functions/processMessageContent.js +0 -48
  114. package/lib/ai/functions/readFiles.js +0 -95
  115. package/lib/ai/functions/shouldDrawImage.js +0 -12
  116. package/lib/ai/models.js +0 -654
  117. package/lib/ai/utils.js +0 -21
  118. package/lib/canvas/ApexPainter.js +0 -1396
  119. package/lib/utils.js +0 -24
package/.tsbuildinfo ADDED
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es5.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2016.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.dom.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.scripthost.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.decorators.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../users/user/appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.full.d.ts","./node_modules/axios/index.d.ts","./node_modules/@napi-rs/canvas/index.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/assert/strict.d.ts","./node_modules/buffer/index.d.ts","./node_modules/undici-types/header.d.ts","./node_modules/undici-types/readable.d.ts","./node_modules/undici-types/file.d.ts","./node_modules/undici-types/fetch.d.ts","./node_modules/undici-types/formdata.d.ts","./node_modules/undici-types/connector.d.ts","./node_modules/undici-types/client.d.ts","./node_modules/undici-types/errors.d.ts","./node_modules/undici-types/dispatcher.d.ts","./node_modules/undici-types/global-dispatcher.d.ts","./node_modules/undici-types/global-origin.d.ts","./node_modules/undici-types/pool-stats.d.ts","./node_modules/undici-types/pool.d.ts","./node_modules/undici-types/handlers.d.ts","./node_modules/undici-types/balanced-pool.d.ts","./node_modules/undici-types/agent.d.ts","./node_modules/undici-types/mock-interceptor.d.ts","./node_modules/undici-types/mock-agent.d.ts","./node_modules/undici-types/mock-client.d.ts","./node_modules/undici-types/mock-pool.d.ts","./node_modules/undici-types/mock-errors.d.ts","./node_modules/undici-types/proxy-agent.d.ts","./node_modules/undici-types/api.d.ts","./node_modules/undici-types/cookies.d.ts","./node_modules/undici-types/patch.d.ts","./node_modules/undici-types/filereader.d.ts","./node_modules/undici-types/diagnostics-channel.d.ts","./node_modules/undici-types/websocket.d.ts","./node_modules/undici-types/content-type.d.ts","./node_modules/undici-types/cache.d.ts","./node_modules/undici-types/interceptors.d.ts","./node_modules/undici-types/index.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/diagnostics_channel.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/dns/promises.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/dom-events.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/readline/promises.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/stream/promises.d.ts","./node_modules/@types/node/stream/consumers.d.ts","./node_modules/@types/node/stream/web.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/test.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/timers/promises.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/globals.global.d.ts","./node_modules/@types/node/index.d.ts","./node_modules/@types/gifencoder/index.d.ts","./lib/canvas/utils/types.ts","./lib/canvas/utils/radius.ts","./lib/canvas/utils/circular.ts","./lib/canvas/utils/bg.ts","./lib/canvas/utils/imageproperties.ts","./lib/canvas/utils/textproperties.ts","./node_modules/sharp/lib/index.d.ts","./node_modules/@jimp/core/types/jimp.d.ts","./node_modules/@jimp/core/types/etc.d.ts","./node_modules/@jimp/core/types/functions.d.ts","./node_modules/@jimp/core/types/utils.d.ts","./node_modules/@jimp/core/types/plugins.d.ts","./node_modules/@jimp/core/types/index.d.ts","./node_modules/@jimp/jpeg/index.d.ts","./node_modules/@jimp/png/index.d.ts","./node_modules/@jimp/bmp/index.d.ts","./node_modules/@jimp/tiff/index.d.ts","./node_modules/@jimp/gif/index.d.ts","./node_modules/@jimp/types/index.d.ts","./node_modules/@jimp/plugin-blit/index.d.ts","./node_modules/@jimp/plugin-blur/index.d.ts","./node_modules/@jimp/plugin-circle/index.d.ts","./node_modules/@jimp/plugin-color/index.d.ts","./node_modules/@jimp/plugin-contain/index.d.ts","./node_modules/@jimp/plugin-cover/index.d.ts","./node_modules/@jimp/plugin-crop/index.d.ts","./node_modules/@jimp/plugin-displace/index.d.ts","./node_modules/@jimp/plugin-dither/index.d.ts","./node_modules/@jimp/plugin-fisheye/index.d.ts","./node_modules/@jimp/plugin-flip/index.d.ts","./node_modules/@jimp/plugin-gaussian/index.d.ts","./node_modules/@jimp/plugin-invert/index.d.ts","./node_modules/@jimp/plugin-mask/index.d.ts","./node_modules/@jimp/plugin-normalize/index.d.ts","./node_modules/@jimp/plugin-print/index.d.ts","./node_modules/@jimp/plugin-resize/index.d.ts","./node_modules/@jimp/plugin-rotate/index.d.ts","./node_modules/@jimp/plugin-scale/index.d.ts","./node_modules/@jimp/plugin-shadow/index.d.ts","./node_modules/@jimp/plugin-threshold/index.d.ts","./node_modules/@jimp/plugins/index.d.ts","./node_modules/jimp/types/index.d.ts","./lib/canvas/utils/general functions.ts","./lib/canvas/utils/customlines.ts","./lib/canvas/utils/charts.ts","./lib/canvas/utils/utils.ts","./lib/canvas/apexpainter.ts","./node_modules/hercai/types/src/hercai.d.ts","./node_modules/hercai/types/index.d.ts","./node_modules/tesseract.js/src/index.d.ts","./lib/ai/functions/imagereader.ts","./lib/ai/functions/chunkstring.ts","./lib/ai/functions/shoulddrawimage.ts","./node_modules/@iamtraction/google-translate/typings/index.d.ts","./node_modules/@sapphire/shapeshift/dist/cjs/index.d.cts","./node_modules/discord-api-types/globals.d.ts","./node_modules/discord-api-types/rest/common.d.ts","./node_modules/discord-api-types/payloads/common.d.ts","./node_modules/discord-api-types/payloads/v10/permissions.d.ts","./node_modules/discord-api-types/payloads/v10/user.d.ts","./node_modules/discord-api-types/payloads/v10/emoji.d.ts","./node_modules/discord-api-types/payloads/v10/oauth2.d.ts","./node_modules/discord-api-types/payloads/v10/sticker.d.ts","./node_modules/discord-api-types/payloads/v10/guild.d.ts","./node_modules/discord-api-types/payloads/v10/teams.d.ts","./node_modules/discord-api-types/payloads/v10/application.d.ts","./node_modules/discord-api-types/payloads/v10/automoderation.d.ts","./node_modules/discord-api-types/payloads/v10/guildscheduledevent.d.ts","./node_modules/discord-api-types/payloads/v10/stageinstance.d.ts","./node_modules/discord-api-types/payloads/v10/webhook.d.ts","./node_modules/discord-api-types/payloads/v10/auditlog.d.ts","./node_modules/discord-api-types/payloads/v10/invite.d.ts","./node_modules/discord-api-types/utils/internals.d.ts","./node_modules/discord-api-types/rest/v10/application.d.ts","./node_modules/discord-api-types/rest/v10/auditlog.d.ts","./node_modules/discord-api-types/rest/v10/automoderation.d.ts","./node_modules/discord-api-types/rest/v10/channel.d.ts","./node_modules/discord-api-types/rest/v10/emoji.d.ts","./node_modules/discord-api-types/rest/v10/gateway.d.ts","./node_modules/discord-api-types/rest/v10/guild.d.ts","./node_modules/discord-api-types/rest/v10/guildscheduledevent.d.ts","./node_modules/discord-api-types/rest/v10/webhook.d.ts","./node_modules/discord-api-types/rest/v10/interactions.d.ts","./node_modules/discord-api-types/rest/v10/invite.d.ts","./node_modules/discord-api-types/rest/v10/oauth2.d.ts","./node_modules/discord-api-types/rest/v10/stageinstance.d.ts","./node_modules/discord-api-types/rest/v10/sticker.d.ts","./node_modules/discord-api-types/rest/v10/template.d.ts","./node_modules/discord-api-types/rest/v10/user.d.ts","./node_modules/discord-api-types/rest/v10/voice.d.ts","./node_modules/discord-api-types/rest/v10/monetization.d.ts","./node_modules/discord-api-types/rest/v10/index.d.ts","./node_modules/discord-api-types/payloads/v10/template.d.ts","./node_modules/discord-api-types/payloads/v10/voice.d.ts","./node_modules/discord-api-types/payloads/v10/monetization.d.ts","./node_modules/discord-api-types/payloads/v10/index.d.ts","./node_modules/discord-api-types/payloads/v10/_interactions/responses.d.ts","./node_modules/discord-api-types/payloads/v10/_interactions/base.d.ts","./node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/_chatinput/shared.d.ts","./node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/_chatinput/base.d.ts","./node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/_chatinput/attachment.d.ts","./node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/_chatinput/boolean.d.ts","./node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/_chatinput/channel.d.ts","./node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/_chatinput/integer.d.ts","./node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/_chatinput/mentionable.d.ts","./node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/_chatinput/number.d.ts","./node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/_chatinput/role.d.ts","./node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/_chatinput/string.d.ts","./node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/_chatinput/subcommand.d.ts","./node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/_chatinput/subcommandgroup.d.ts","./node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/_chatinput/user.d.ts","./node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/internals.d.ts","./node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/chatinput.d.ts","./node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/contextmenu.d.ts","./node_modules/discord-api-types/payloads/v10/_interactions/_applicationcommands/permissions.d.ts","./node_modules/discord-api-types/payloads/v10/_interactions/applicationcommands.d.ts","./node_modules/discord-api-types/payloads/v10/_interactions/autocomplete.d.ts","./node_modules/discord-api-types/payloads/v10/_interactions/messagecomponents.d.ts","./node_modules/discord-api-types/payloads/v10/_interactions/modalsubmit.d.ts","./node_modules/discord-api-types/payloads/v10/_interactions/ping.d.ts","./node_modules/discord-api-types/payloads/v10/interactions.d.ts","./node_modules/discord-api-types/payloads/v10/channel.d.ts","./node_modules/discord-api-types/payloads/v10/gateway.d.ts","./node_modules/discord-api-types/gateway/common.d.ts","./node_modules/discord-api-types/gateway/v10.d.ts","./node_modules/discord-api-types/rpc/common.d.ts","./node_modules/discord-api-types/rpc/v10.d.ts","./node_modules/discord-api-types/utils/v10.d.ts","./node_modules/discord-api-types/v10.d.ts","./node_modules/@discordjs/formatters/dist/index.d.ts","./node_modules/@discordjs/util/dist/index.d.ts","./node_modules/@discordjs/builders/dist/index.d.ts","./node_modules/@discordjs/collection/dist/index.d.ts","./node_modules/@discordjs/rest/node_modules/@discordjs/collection/dist/index.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/header.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/readable.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/file.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/fetch.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/formdata.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/connector.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/client.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/errors.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/dispatcher.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/global-dispatcher.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/global-origin.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/pool-stats.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/pool.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/handlers.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/balanced-pool.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/agent.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/mock-interceptor.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/mock-agent.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/mock-client.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/mock-pool.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/mock-errors.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/proxy-agent.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/api.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/cookies.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/patch.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/filereader.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/diagnostics-channel.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/websocket.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/content-type.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/cache.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/interceptors.d.ts","./node_modules/@discordjs/rest/node_modules/undici/types/index.d.ts","./node_modules/@discordjs/rest/node_modules/undici/index.d.ts","./node_modules/@vladfrangu/async_event_emitter/dist/index.d.ts","./node_modules/@discordjs/rest/dist/index.d.ts","./node_modules/@discordjs/ws/node_modules/@discordjs/collection/dist/index.d.ts","./node_modules/@sapphire/async-queue/dist/cjs/index.d.cts","./node_modules/@discordjs/ws/dist/index.d.ts","./node_modules/@types/ws/index.d.ts","./node_modules/discord.js/typings/rawdatatypes.d.ts","./node_modules/@sapphire/snowflake/dist/index.d.ts","./node_modules/discord.js/typings/index.d.ts","./node_modules/@types/json-schema/index.d.ts","./node_modules/openapi-types/dist/index.d.ts","./node_modules/oas/dist/rmoas.types.d.ts","./node_modules/api/dist/index.d.ts","./lib/ai/functions/draw.ts","./lib/ai/functions/generatevoiceresponse.ts","./node_modules/@types/pdf-parse/index.d.ts","./lib/ai/functions/readfiles.ts","./lib/ai/models.ts","./lib/ai/utils.ts","./lib/ai/buttons/tools.ts","./lib/ai/buttons/drawmenu.ts","./lib/ai/apexai.ts","./lib/utils.ts","./lib/index.ts","./node_modules/@types/har-format/index.d.ts"],"fileInfos":[{"version":"f33e5332b24c3773e930e212cbb8b6867c8ba3ec4492064ea78e55a524d57450","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","26f2f787e82c4222710f3b676b4d83eb5ad0a72fa7b746f03449e7a026ce5073","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"21e41a76098aa7a191028256e52a726baafd45a925ea5cf0222eb430c96c1d83","affectsGlobalScope":true},{"version":"35299ae4a62086698444a5aaee27fc7aa377c68cbb90b441c9ace246ffd05c97","affectsGlobalScope":true},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"e0275cd0e42990dc3a16f0b7c8bca3efe87f1c8ad404f80c6db1c7c0b828c59f","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"acae90d417bee324b1372813b5a00829d31c7eb670d299cd7f8f9a648ac05688","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"f82c7e34ea3255fe90a48fc4e88b0602b483bba5ea5bcd7fd616d72ee93b1b1e","f64487e06875cfbe0cc854328920403df337dc6c1925070995653ac71c266c0e","2bd0359037ab64d85a06f788b61c83c373965da3c17f8597a65c9d417829ca29","efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"7fd7fcbf021a5845bdd9397d4649fcf2fe17152d2098140fc723099a215d19ad","affectsGlobalScope":true},"df3389f71a71a38bc931aaf1ef97a65fada98f0a27f19dd12f8b8de2b0f4e461","d69a3298a197fe5d59edba0ec23b4abf2c8e7b8c6718eac97833633cd664e4c9",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"8b809082dfeffc8cc4f3b9c59f55c0ff52ba12f5ae0766cb5c35deee83b8552e","affectsGlobalScope":true},"bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","d4f9d3ae2fe1ae199e1c832cca2c44f45e0b305dfa2808afdd51249b6f4a5163","7525257b4aa35efc7a1bbc00f205a9a96c4e4ab791da90db41b77938c4e0c18e","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"9c611eff81287837680c1f4496daf9e737d6f3a1ff17752207814b8f8e1265af","affectsGlobalScope":true},"fe1fd6afdfe77976d4c702f3746c05fb05a7e566845c890e0e970fe9376d6a90","b5d4e3e524f2eead4519c8e819eaf7fa44a27c22418eff1b7b2d0ebc5fdc510d","afb1701fd4be413a8a5a88df6befdd4510c30a31372c07a4138facf61594c66d","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"c07146dbbbd8b347241b5df250a51e48f2d7bef19b1e187b1a3f20c849988ff1","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true},{"version":"46755a4afc53df75f0bfce72259fb971daac826b0cdd8c4eaccad2755a817403","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","7fa32887f8a97909fca35ebba3740f8caf8df146618d8fff957a3f89f67a2f6a","9a9634296cca836c3308923ba7aa094fa6ed76bb1e366d8ddcf5c65888ab1024",{"version":"bddce945d552a963c9733db106b17a25474eefcab7fc990157a2134ef55d4954","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","4b55240c2a03b2c71e98a7fc528b16136faa762211c92e781a01c37821915ea6","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"94c086dff8dbc5998749326bc69b520e8e4273fb5b7b58b50e0210e0885dfcde","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"ebe5facd12fd7745cda5f4bc3319f91fb29dc1f96e57e9c6f8b260a7cc5b67ee","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","21c56c6e8eeacef15f63f373a29fab6a2b36e4705be7a528aae8c51469e2737b",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","b3d3cc9ca6e638af9182f3a1dcb1277841d61d93bd81930b2ff90bb050c1761f",{"version":"c60608d996317bf280d9acabe962c40e526315645e7b98f0d39f54a10257e5b9","signature":"52f656b66d2d1615d2bffd66d880183e2d54663a9ce29ef44b934df88fea44ce"},{"version":"87aa7a231f285c4ba1f8f91fe87551546b74cf98508984d15cb3fcc2c52e9dc0","signature":"9449406c19afd8a29d88556770014cc0f8cee3c765236ed1b6e454ea3a554f55"},{"version":"d7a6fd9e3354b66e88a1805c3653810143b155e997b60f10f2cd80741cd2b6f8","signature":"22e81f9ba56cfd42c309f14ab99d5ff0e95aa46bb7ebbaaf198a9ca41cc1aba0"},{"version":"5b5d4e095119536cf6d1cfb404cb6a545d423b57ff80a29e3bbca35f206251f0","signature":"5405aca25dfd612c5ad5c8e456c116d373d3d934761203d1842922835afec884"},{"version":"685a76f2de0d74c00235349db3837c4c5ef14355f3716c843189644e76cb8577","signature":"9321f79823d31489ef2908c92ad6ff3580c37ad5003d6fd0617f7b4fc2fe32b9"},{"version":"6115e7f08717df4a7064388c02fcda1f424935e4150b91b7be03743665ea0d28","signature":"543b9ffc5d2870b611c0fc2e65475c7beafd670a3f733d5fcf341e4ee9ae53e9"},"53f081658f2706f0e8ec3d40a3f44d83098c49c359206da3a7187efb7744a981","c0013c376418e142bc15ba5eb903573538c46c175cead033ed34d0b0ab416772","65a6b85a10d37363a07e7b79fd3d5de019993abecfbfb9b4ecc9c35f76c502e1","adac0202ae3923986928d6885ab06eecf91a46c81c96d78d8814dba067ac2b52","486b2476d3086e8c25c847903e1236366d8eded7a687dbb3fa45487f462465d6","25d99acf3f3f1581e1002bf05905c7901da327b51f650193f472fb6530464d0f","7905ffb71f33c946d5294f8911f6dcc0314606c9e43e55387e969df7537cc15a","4dd581c2c474a4b5b6436f453053fe936ca3e727062e1bcf28eff5a10832d434","7b55a0a088182b1bb9fc5b2a52c90e03f13392925735269ea099e2ceb0848e0a","3c48f932c0850a5d4bf34506d46758d2a07341d6497e2191d32dfab2986d69ca","e956cff95d4887ddc2bfe5de56be1a964bbbc55044beb9bfbd86692e08f2575e","059a9fc48a471243c6a27bebbe4121711f283d8671d5f8cbcfacdf341267118d","5c42430d6ec06c433e78ed3f6de4109a162c8b88b9e20b27999dc3d08cf41c6f","999dbc9d4027c2515ee119353331db232aed07eb06fce064cfe215397bb832b8","e915ce3f54434f4abed13be2211b7c1e5df7d93f54c5b1a40e83cc5c541c32a8","eca3455cce12798f49a1f55651eeccc63a46081538fa0a851609e194b8dcd2f1","fd18bab32e1cc613ef50a46be5436ddc3b3f01a7292a593952e185bec72b6905","d87b9d7c99097235af7a92011ba9092ac965bdcb3e886606067ecf6bf4ea8a46","c76b70ddfa133a75f60cf441b5a8d7a449bed5587136e9cb8430ae9563aa62f9","221db4c51457e07fc3e0b708310747b9ad53bef6ba225ffc8a0f62d57d0dc42d","c11e72fb48f6e128b5181bd7e11eac3f77534fe990088366ddd8af4ecfe6a650","edb7ba891a7daac6a3b3993fd7f03662fd8b70962eadff99e516296cb0be719d","e828b80e8eb11354504ac8849cd3e4618b82dec97749cc118a0282ef48421a95","c548eb1b257f3488aefd2788a4e2c021f6bcf43afaaa9c6b2141d43e1adfa3b8","5b256c4168688a7cdc8f0485583d9345ffebc7ed1d1a5dcd0dc6011e6033f458","5dd0bb4d935595c90ec5b5cda221b478dd453a3eb23be19ca749cc3ebc734ef1","2c25afaec68f36c9b25b329f193520033b9d6024e19dde18ba513fa08ede6cc6","9af74f9cd67f852881cb67a67d7e0ea997a6b7a89c5c57087dfa2a5324211b4d","0740d1bec19eb57922a51d82dbd26d6d84fdd0aa63082c3bb06338a570408ee2","e9a33a3158e0ab04dffb3a07f42cc83f84735a65f078996690c38ec336371f1c","8ba50abfb0822f68ce0427ee1ef921d81def4e76e119eefa27a8b8f28e7d6107","3f7f4ac460568ccf2392d898d6e63474206464488c1052152172a2fc598d96b4","347258aa990466cfa2e58b8fa358755b6a3ccc84414c9bdd15ef5acc65c82648","69d1893ab339971ba96785eac71dc803b0fcdbfb07592ead09f92ce301f7cff6","8ecfa4ac72e3a44a6621ac179c3a1fecc548cdbb3007b4ad71a6eb64195d48e6","d373ea9deeff9cdcdd821a3144b2c2765fb25b8d0fb84b427b79b6083a9d79c8",{"version":"d45dd2bbcead7fcd676f829c64cd87e9b033bb17102dd69d49124472d21c7edf","signature":"d97554d9d66cfe45ceda1e807e66c30d4476ada4b465512a6d8258ff812b169d"},{"version":"e9806fbda24d8b0bfe1b6789bc4e964666cbb7e063efeef5c6a1a1ee3eee7857","signature":"0a84e1ca9775030320a102bdd222881a2721f0b3dc7860c43009b22f97a7ee38"},{"version":"092286ede767e0ade48517a169729a605a231d38c371531d2dd3573a2ac73100","signature":"eb2e861c256d0e8deaaadcbe5202865d14b3384477827da56f9534474fbfaec4"},{"version":"9a259eb87b8811759a3cb963296a02e83a7e210fe9c44bfaeba7da32655b079e","signature":"2d98453f249f56e8608a0c3b02372d8bc2e059aeec1def9909e44cd626a02869"},{"version":"a9739cc5232054ab35e6bb3f57a14c2f3655b37bdc76c22df3e1cd9a97550c95","signature":"79d4f9e1c83a5a068cbb22a5b6db7d9bb9bae2a2f23b3f03002f19a4d0a32cc4"},"81b1cb2909b038bdfdedf89535113e6faa0ba3492b5ef529324dc6e6eb9fbd14","099b58c7dc1861bcd4942afae199edd26a755c98e54f97d235530cd14b956dcb","bf7de92f40eab16790b6527961b3cc1b89166c25e977cb32d105248447c75dde",{"version":"2f97358c09f26f37fc09e4f9c82bab8be6c3ebd3b79e32f89b33e1208cb1ed14","signature":"931f6c893c72ee5bfb31ac958fdf927731187247e75292c0e3fb19967c3ffef2"},{"version":"5f3c7aadd5b781bde706520e323a017cbd8078cf5f665c530b23a54bef27f66a","signature":"1896d0478721ae985e9daf00c354331cab0b2c9a95542a2e08aad7b50aa38ad0"},{"version":"57d5a97b2a030c7539ca8db38c24e9d6afb9b006bfaffa1069a46b0eda87b23d","signature":"6eacfb246599e18ad223adfa410df6b5a714d1a0f8f940a42b63829aa9eddda6"},"24c63cf496bbb9f4d0267f6a603109358081366a74f70d54e7b06e3de5117f65","41f15a491421b1b5deef0fb6c3a00243107fc0be02cb9ce7142a19015cc278af","b5557e20f64bcf823a12d8fc205dbc948f79300dcd5c58e9c2c41477cfb47046","776fbcf0281f1a5ad97e1e9b6ceeeaf03c9b30b6aad8dd88c602e7dab1c8167f","4e4d607daf1ac557a8cc2fd303d5585e219478ed146af5c9ade13509424ba427","005e759b6411813747f284a6dbd949ebdafafaf1e1ce0de0d65079980d4e4ac6","6cc3982ae5bda1e2b3ed3e1935dfaf410ee490cf5707ca35169b503d52de678e","d0863f81c9f2c13fca21445a0ae679e6f51b57283719f30c64d85a5d08a02a0c","7dcfa67ddc7767293a28ffad01f6af160b0f63c16637310bed5ab4989c5871cd","8864479bb11877b775da2b35e96464001e14beafdfd1d32330cfbd956419d95f","41fb977c8dc6c661dce34d476ce15d6c39840167d8de934a79d711eb820e1fdf","36dd9c9d9bf84b27500bfc23fed15dbd0b229b8a3a3a8008dd826f77cf2b8d8c","bab548a33f2e841b1678d7d858204f9632b62c2a1dfe6d5b9aab7c8b767f306b","75700defb2dd3a05768e05d996b520a7e061725dbbc48972f0445d594884856b","16385f7e0dc63990dc76518a746cf746d8995ee1c0baacb145008a7640a62ceb","3708bf2edecf61ca3952f98885467428610b34e299ec18a40644c2845bd0141f","5d310ff3cc8e4a88bc14327b847af9f2fe5cfea07a0d97c6569aba7e6b8bc85f","b7c0c105e7604f56292143531380285726a4bf3c1f512614bf47bfe81715a57f","94347fa94bb6b81dbb0ab2831440e5322da4343fba14f1cba655573b6919905e","73394ce9714812b221409a554bf0f9d22013e9ed3b57f62ad7297b1d96199159","25ca81f6e74f41096edd84050968e5f5b1531714d20f42914cfcb9f6d7ada335","d53bacf6bea149fd81f4c4812f7b3d28cf104697eb3e370aa6d7c1fd0b254535","4ef86f6b4715067fb89f82f5e2c04b7c6629adb80286fe9149b5a4cde1e69bba","22ad319c6de3c106c4032ca8684cedc85ce3f4e2f2c7bad70c1493e594533f74","6627b63f41c59d7186d5bfa8eea261e530d2d14a663284850dc51a7a6301f471","4236ff71b9fdc1b6441be8b98a8426f8bf5dabf775a72fdf53b459122d128b1c","83a012d1c6f26e4ac8aa0e235dee4eb3914dd07fed5fb362f7c3b644cbb7762d","cd798d80c4496e7ee3c328935869d5fca63f4bc38cf71889524c627c3e5e519d","7492eeee9e094e4375c43275b26b6cd24156defa970da5bdb2afc8e31438e45a","5eb2704e974336910e46374c9dadce7816ea8ceb8ff3853e534339abcba0e128","115e358a8ea88f92998a862985bbc766e4145ebd460cda1f3dc28f33567256b7","0f8a1ce795276f7e1c966625ab7ede9b9fa50c480c9e9db0b92dbb6dc9740c42","016d436b025cb2fb275ce4aee80af5f1c33d5183e38a8251a5f6ff5cde6e22f9","a893b6c1167c4bada6e1b8a8a015e0fdb2ce5e66479942a6149fb9fc202424f5","fe13392d4d214ceba1aea269cc2799f2d14ba553945738a3db25c2608f663a40","513a03462108ca41c6524d50d60bb09f5fbd1b2990679a15df994a61a26037a4","7254777d3c5c0b3678ee73417c361a90e68317beb4dd16cf5d02d88203cd1691","2ea9827f674c9a2effc3f089915abee2bcf5e90f9fa7d759dfa50d42abd90141","d3c32d1aa609e0712f785536c5907464287d66b49028a2efc2cbae37c459d069","98d5d5c53e7ee6b9a1e26d438869e40a35c4b29077e3517733152482ab290ac7","fec471dab196078c0805e766caee6f4f1d811e87d87afaed3f71550f2272e2f6","9193f7682392c0b0c356fc40d0f347c66d1dcd7594c6ee2240fb7b512470909b","9c39938bcb32c63864dc76abac6f9c5923a659be560df2779b5d65b6b0bc36c7","d5031ee2bf92f49b47c43ee66ae9062e6354407909727182ea90ceef45b4fcb9","bf42c2ee948a5b47789a52cd38b1e801d1f5eb7e3bf99a91d18721430e510379","c89df049268ebd41d0aaea665630468270c60fdf9c15a9f6b1ae1fdb371591f7","265a4739974854eb43539419a6c86faab7e161b1133496c62f8bf2725542244d","a1accfaac01020c1b866634f7a698fdd48612caccf305e16844665cb7ecac399","ec00441ae4838b8d595acfe3b2750750e4335802b06ba1f41fb03453c2c776b5","ac1689d264991e5f58deb5a82ee44940f091a709b8ca815b38d5a7cb1305ce9f","a6965d48ee610b134de51099ead16d6392545911b1be22a80333cc4ff3be912f","c548226db013facd262a4bc1c32c44a13eda7e1181aa6f569f9bdd531c95b0d5","208c6a8bd5529257694b07dc1f8ed085c89bd5e18134de61da4e95a1ec896461","543f461070fbd4b33bd05a5ba3e472e1297bb1db3c3101092bd69bfdddd3b1a1","8aa0740691fc5b898cc04641c3ecc589c297ac27337c3b8ec053f4f4cb11c253","32e0cd3a65bd475e955272ba0cc0fbaceac58de169baec25b3bb3f81234f6d4a","a73ba7d094b61e88566e3577166f63389a945f209a3ec20c6a151545f0d7544d","3745762b83e5d49983a4183821125e3417473f992c4bf1d6dd6cea91efb4166f","ade458e350eda79fa74ecb678d9c51cc17f592d56df3e47286ef28e71401a989","178ac9279c9101b9934ed75add06c199e69db64c610f5166c067da88899a3487","c1e3ec3c36609fe038069a4495d766c7d06632414b0f378e5c1cfb12968944e9","f1f09a4d4980fff269ef55be9859a8fdaf952d58ea6fd412d2c466136ca5a07d","934f0684c43ef4a99dcdb7681355e76059f1fcb1019a3a556be1831353ab8179","444b53f5769d9b2c284316f1b1fbaed64a75b0ccb6c3953861a9eaa3e38c5ed9","437dc010bb4d4825b745ef251582ead265e9ec29d9bb5abc83d7100320c91e2b","3dd3a106a9b038c53f8e16bdf8ea1b04f2236d576f982e91b59c9d0b22877eb0","4359e8ba73374bb7d25c0d4181c4e9f9fd6174569897788596feac600ec69639","9afe9aff95bec9e834df862ce3cdbc549e0afe6f1a31310b63ab064be70348d3","379b70569faec655461d2684f4910c172e1671edca821b17849988e31aea3375","f3719ae1c98c4abea9741b57513b1ee1c4e29ce4aaec08c124e58b24b7edd4e2","8aa0114b613291e78cb972962b83492aed92807fad0a316428258758952f7369","66b696fdbcf3a30c8b58517ece78cfa055f7eea150ec4a8182be5302ee66f30f","39a1119b0bc182c5ddbc82f945e18e944c898c95628d3294662c207d28b018ca","ea6af8604356c23c42ac3ac436f6b0d8300142e0f64573f8c3f67f259b8786cb","4d520fef6ce674f1cc21c5cd524e02d9ad45cd59051090b5d9a4986a36d41d2c","c2b976310a797531e7b098d4c615d36e68cf849f904bce95a40e1fc1f1e2fdb1","45b889d10fa6c667fcbcb589bcbb55d0258fb8e04034bb0ff34e43701249e772","1e66f412c0a468312eb42b5e34c9b4c1d156ee7f7755286536e15c016e30238c","77ceb5fd9154d797a12902910a649fa983253e6151f59d3f6a890799b59f92c3","66181539572954871da89df777217a2feb17640a32c993fd25f9a004ff4bd1b2","02c1ca6282a70299b159e352b8298ca32a0d82c36b07e9686f3759123a264489","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1","299fd0c281633d8dbfbe5f44c5f2850fe37392da6fd3b9cca3cb4e10cda16432","74514a00f41ee0d1e15946a2c23ad2ea585b781042652255b8c913eabeb031e8","a8b1e106289caf8fb3ef89a614e0f66d94d172c7b79395076c34649055b0f71b","02c1ca6282a70299b159e352b8298ca32a0d82c36b07e9686f3759123a264489","4018190f86d87a30be402cafe376e6e303410a5164cc4b48dc8d7831a753ee42","908688711bb3d64b3b2d13a8ec63b266a13e942cf45bbc6ecd6d7aeeedd08dd2","5562230b6ae4f2205fddf46ab28518d4b0a5727c1e04d4f568c76d0271ae3293","82937cfc984c10b156da863cc1ebe430101415462201a57cb4d351bd20699614","b230d46d743e02fd801601d3e067298edf85ced719d0e0096d2aae41429f8f6a","0220d2d546dd810a25eeef329d94ac6df6bd0fe086e4ddcf97e480f4112bf3fc","f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","2df62cd6db7d86f765cfc05606bbd27b38ed7bae502b5c4d927996bcf3638d64","3a8473bd1c82369b8c8112f0cdf78d99407f2aa3e8e5a51a8b11e195ecaefa98","bf322d8be8b01692f75d3b3e5e4bef265897b28c32f3574a0bb2be104c315948",{"version":"03c11ae72e4fc87eecdb9333515c1da83f30af6bec49f6aed3ed2c36f7ce2e38","signature":"e0f49231a680ec1f3933e8b2b6492328505fcff8572ff13ebda271a7a87e53ce"},{"version":"a02973a0688b397bd7fcd77f6f16989fbbcd64d4dc41adf4aa5f426515cb42be","signature":"2324413dc7a4b07d5e62ca8a8ba39b7957d694fdf15fdbde1c12eb2821415546"},"c846ed7b4f1558d798819bada21af103e43c3db60a2dd3c53d8942bfe3c0588a",{"version":"f13c566b005a510c205f6b71b326ac6d15a254f90417c9ca2ac8d6c6e9d89796","signature":"fed0a56aad3cfcc710190c5d61fee45249b55e7e7da74facfe89b5dfb5c70e85"},{"version":"77fa6ead180d2a5e11371c15876cced1a539ce80e64975a89fe4ab923cc47be6","signature":"5f9e2efa2b7c3bd686e1c5a939409c5dd69fb1b14fe09aa108ba5598e94d0e1d"},{"version":"77ef29284f08bdd6f83ce9790eda6e70856dd0c35c8ec29941617dbf906c2afc","signature":"8c83ed736893edd9d3a32f557a2857481ea404116477e74e524b1b7a02ce4bef"},{"version":"d53f2308828779cb1ece144e35ea7661f1724d5dd5f143a9afe7c4cc05c123b6","signature":"198596cff622e508b9c3f72822f63ddc5210179095d76cab2d57746f25f617f0"},{"version":"26023c9519ab89bee3a54008ca5115a3840bbe71444f303a0b8b2843a93e5e77","signature":"8f663d86b7b242fc3a261fe33941fc85b76e2d4585379ba2ce03a8cddc80a7d3"},{"version":"d1bf710bcdea154bb81733a8d0a4d3c0fde743ee3d90c60f04acb61a89f7f493","signature":"5f61f4827ad47bb857884e1460f9eaec5ae514b5b579ae0e52b649c817f548bf"},{"version":"dff7dff852ca3e0bd6b145a384e675be02ee996b0f30610cdbd7bb905ec49b24","signature":"f4a6d0898add83460321f52aa811517123e2b2dcf932ef12632ee8436bd6c507"},{"version":"69bedaa344f00ccb680b72037ac4a551e590b29fbaf2aeb785d12d2072f6640c","signature":"d88f4c5344f5d21fe9c84e4dd243da4c1b832626caf54331bd04a16724ca868d"},"9e4b070b543d91d0b321a481e1119e99bb8f136f4ef271d7b5ba264919fc32e2"],"root":[[140,145],[182,186],[190,192],320,321,[323,330]],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":1,"outDir":"./dist","rootDir":"./lib","skipLibCheck":true,"sourceMap":true,"strict":true,"target":5,"tsBuildInfoFile":"./.tsbuildinfo"},"fileIdsList":[[50,188,315,325,326,327],[329],[50,146,193,315,319],[50,102,188,189,191,193,320],[189],[102,106,322],[50,188,319,328],[190,191,192,320,321,323,324],[50,51,102,111,119,139,185],[50,51,102,111,140],[50,51,111,140],[50,111,146,181],[185],[140],[140,141,142,143,144,145,182,183,184],[50,102,111,329],[186,325,328],[194,268,269,270],[130,195],[119,122,130,268,270,273,306,307],[305],[130,282,286],[119,130,282],[277],[127,130,279,282],[109,127],[138],[138,277],[109,130,279,282],[89,101,119,130,274,275,278,281],[274,280],[89,122,130,138,278,282],[89,138],[89,138,298],[138,276,277],[282],[276,277,278,279,280,281,282,283,284,286,287,288,289,290,291,292,293,294,295,296,297,299,300,301,302,303,304],[282,289,290],[280,282,290,291],[281],[274,277,282],[282,286,290,291],[286],[130,280,282,285],[274,279,280,282,286,289],[89,119],[89,135,138,277,282,298],[268,270,273,307,308,310],[152],[147],[147,148,149,150,151],[148],[148,150],[151],[159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179],[153,154,155,156,157],[104,119],[131],[119,138],[52],[88],[89,94,122],[90,101,102,109,119,130],[90,91,101,109],[92,131],[93,94,102,110],[94,119,127],[95,97,101,109],[88,96],[97,98],[101],[99,101],[88,101],[101,102,103,119,130],[101,102,103,116,119,122],[86,89,135],[97,101,104,109,119,130],[101,102,104,105,109,119,127,130],[104,106,119,127,130],[52,53,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137],[101,107],[108,130,135],[97,101,109,119],[110],[111],[88,112],[113,129,135],[114],[115],[101,116,117],[116,118,131,133],[89,101,119,120,121,122],[89,119,121],[119,120],[122],[123],[88,119],[101,125,126],[125,126],[94,109,119,127],[128],[109,129],[89,104,115,130],[94,131],[119,132],[108,133],[134],[89,94,101,103,112,119,130,133,135],[119,136],[101,104,106,119,127,130,136,138],[318],[195,212,235,262,263],[196],[195,238,239],[238,268],[238,239],[195,238,239,261],[268],[238,239,252],[238,239,248],[235,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,255],[195,237,251,255,261],[195,255],[195],[195,236,237,252,253,254,268],[235],[195,199,203,234,236,261,268],[195,237,260,261],[235,261],[236,237],[235,255,261,268],[195,197,199,201,203,204],[195,198,199,202,203,206,207,208,209,260,261],[195,198,199,200,202,203,205,260],[195,198,199],[195,199,200,261],[195,198,199,200,201,202,262],[195,199,203],[197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,232,233,234,260,261,262],[236,237,255,256,257,258,259],[199,203,205,207,208,261],[195,203],[195,199],[195,199,231],[195,235],[205,212],[195,210],[195,212,235],[195,212,216,235],[195,212,268],[195,196,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230],[212,221,235],[195,268],[212,235],[265],[195,231,235,264,266,267],[90,101,119,135,268,269,270,271,272,308,311,312,313,314],[268,315],[187],[152,158,180],[316,317],[63,67,130],[63,119,130],[58],[60,63,127,130],[58,138],[60,63,109,130],[55,56,59,62,89,101,119,130],[55,61],[59,63,89,122,130,138],[79,89,138],[57,58,138],[63],[57,58,59,60,61,62,63,64,65,67,68,69,70,71,72,73,74,75,76,77,78,80,81,82,83,84,85],[63,70,71],[61,63,71,72],[62],[55,58,63],[63,67,71,72],[67],[61,63,66,130],[55,60,61,63,67,70],[58,63,79,89,135,138],[146]],"referencedMap":[[328,1],[326,2],[320,3],[321,4],[190,5],[323,6],[324,7],[325,8],[186,9],[143,10],[184,11],[182,12],[144,13],[145,14],[185,15],[330,16],[329,17],[271,18],[269,19],[308,20],[306,21],[289,22],[296,23],[288,22],[303,24],[280,25],[279,26],[302,27],[297,28],[300,29],[282,30],[281,31],[277,32],[276,33],[299,34],[278,35],[283,36],[287,36],[305,37],[304,36],[291,38],[292,39],[294,40],[290,41],[293,42],[298,27],[285,43],[286,44],[295,45],[275,46],[301,47],[311,48],[155,49],[148,50],[149,50],[152,51],[147,52],[151,53],[150,54],[157,49],[153,49],[159,49],[160,49],[161,49],[162,49],[163,49],[164,49],[165,49],[166,49],[167,49],[168,49],[169,49],[170,49],[171,49],[172,49],[173,49],[174,49],[175,49],[176,49],[177,49],[178,49],[179,49],[180,55],[154,49],[156,49],[158,56],[51,57],[194,58],[139,59],[52,60],[53,60],[88,61],[89,62],[90,63],[91,64],[92,65],[93,66],[94,67],[95,68],[96,69],[97,70],[98,70],[100,71],[99,72],[101,73],[102,74],[103,75],[87,76],[104,77],[105,78],[106,79],[138,80],[107,81],[108,82],[109,83],[110,84],[111,85],[112,86],[113,87],[114,88],[115,89],[116,90],[117,90],[118,91],[119,92],[121,93],[120,94],[122,95],[123,96],[124,97],[125,98],[126,99],[127,100],[128,101],[129,102],[130,103],[131,104],[132,105],[133,106],[134,107],[135,108],[136,109],[312,110],[319,111],[264,112],[197,113],[240,114],[239,115],[241,116],[242,117],[243,116],[244,114],[245,116],[246,114],[238,118],[247,116],[248,119],[249,120],[250,114],[252,121],[253,122],[251,123],[254,124],[255,125],[256,126],[237,127],[257,128],[258,129],[259,130],[236,131],[205,132],[210,133],[206,124],[261,134],[200,135],[262,136],[203,137],[207,138],[235,139],[260,140],[211,141],[234,124],[198,124],[208,142],[202,143],[204,143],[232,144],[199,142],[233,142],[209,145],[213,146],[214,147],[215,145],[216,148],[217,145],[218,126],[219,149],[220,150],[231,151],[222,152],[223,145],[230,153],[224,145],[225,145],[226,126],[227,154],[228,145],[229,126],[221,149],[266,155],[267,126],[268,156],[315,157],[313,158],[188,159],[181,160],[318,161],[146,59],[70,162],[77,163],[69,162],[84,164],[61,165],[60,26],[83,27],[78,166],[81,167],[63,168],[62,169],[58,170],[57,33],[80,171],[59,172],[64,173],[68,173],[86,174],[85,173],[72,175],[73,176],[75,177],[71,178],[74,179],[79,27],[66,180],[67,181],[76,182],[56,46],[82,183]],"exportedModulesMap":[[325,8],[186,13],[143,14],[184,14],[182,184],[144,13],[145,14],[185,15],[330,2],[329,17],[271,18],[269,19],[308,20],[306,21],[289,22],[296,23],[288,22],[303,24],[280,25],[279,26],[302,27],[297,28],[300,29],[282,30],[281,31],[277,32],[276,33],[299,34],[278,35],[283,36],[287,36],[305,37],[304,36],[291,38],[292,39],[294,40],[290,41],[293,42],[298,27],[285,43],[286,44],[295,45],[275,46],[301,47],[311,48],[155,49],[148,50],[149,50],[152,51],[147,52],[151,53],[150,54],[157,49],[153,49],[159,49],[160,49],[161,49],[162,49],[163,49],[164,49],[165,49],[166,49],[167,49],[168,49],[169,49],[170,49],[171,49],[172,49],[173,49],[174,49],[175,49],[176,49],[177,49],[178,49],[179,49],[180,55],[154,49],[156,49],[158,56],[51,57],[194,58],[139,59],[52,60],[53,60],[88,61],[89,62],[90,63],[91,64],[92,65],[93,66],[94,67],[95,68],[96,69],[97,70],[98,70],[100,71],[99,72],[101,73],[102,74],[103,75],[87,76],[104,77],[105,78],[106,79],[138,80],[107,81],[108,82],[109,83],[110,84],[111,85],[112,86],[113,87],[114,88],[115,89],[116,90],[117,90],[118,91],[119,92],[121,93],[120,94],[122,95],[123,96],[124,97],[125,98],[126,99],[127,100],[128,101],[129,102],[130,103],[131,104],[132,105],[133,106],[134,107],[135,108],[136,109],[312,110],[319,111],[264,112],[197,113],[240,114],[239,115],[241,116],[242,117],[243,116],[244,114],[245,116],[246,114],[238,118],[247,116],[248,119],[249,120],[250,114],[252,121],[253,122],[251,123],[254,124],[255,125],[256,126],[237,127],[257,128],[258,129],[259,130],[236,131],[205,132],[210,133],[206,124],[261,134],[200,135],[262,136],[203,137],[207,138],[235,139],[260,140],[211,141],[234,124],[198,124],[208,142],[202,143],[204,143],[232,144],[199,142],[233,142],[209,145],[213,146],[214,147],[215,145],[216,148],[217,145],[218,126],[219,149],[220,150],[231,151],[222,152],[223,145],[230,153],[224,145],[225,145],[226,126],[227,154],[228,145],[229,126],[221,149],[266,155],[267,126],[268,156],[315,157],[313,158],[188,159],[181,160],[318,161],[146,59],[70,162],[77,163],[69,162],[84,164],[61,165],[60,26],[83,27],[78,166],[81,167],[63,168],[62,169],[58,170],[57,33],[80,171],[59,172],[64,173],[68,173],[86,174],[85,173],[72,175],[73,176],[75,177],[71,178],[74,179],[79,27],[66,180],[67,181],[76,182],[56,46],[82,183]],"semanticDiagnosticsPerFile":[328,327,326,191,320,321,190,323,192,324,325,186,143,184,142,183,182,144,141,145,140,185,330,329,271,272,269,308,273,306,289,296,288,303,280,279,302,297,300,282,281,277,276,299,278,283,284,287,274,305,304,291,292,294,290,293,298,285,286,295,275,301,270,311,309,193,155,148,149,152,147,151,150,157,153,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,154,156,158,51,310,194,314,139,331,316,52,53,88,89,90,91,92,93,94,95,96,97,98,100,99,101,102,103,87,137,104,105,106,138,107,108,109,110,111,112,113,114,115,116,117,118,119,121,120,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,322,312,307,319,50,54,263,264,195,197,240,239,241,242,243,244,245,246,238,247,248,249,250,252,253,251,254,255,256,237,257,258,259,236,205,210,206,261,200,262,203,207,235,260,211,234,201,198,208,202,204,232,199,233,209,196,213,214,215,216,217,218,219,220,231,222,223,230,224,225,226,227,228,229,221,265,266,212,267,268,315,313,188,187,181,318,317,146,189,70,77,69,84,61,60,83,78,81,63,62,58,57,80,59,64,65,68,55,86,85,72,73,75,71,74,79,66,67,76,56,82,47,48,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,22,26,23,24,25,27,28,29,5,49,30,31,32,33,6,37,34,35,36,38,7,39,44,45,40,41,42,43,1,46,11,10],"latestChangedDtsFile":"./dist/index.d.ts"},"version":"5.3.3"}
package/README.md CHANGED
@@ -1,19 +1,13 @@
1
1
  ### Jedi-Studio Introduce
2
- Greetings everyone! 🌟 This marks the release of a beta version for our package. If you encounter any issues or need assistance, feel free to reach out. Direct message me on Discord at `jedi.79` (ID: 1130583393176920095).
2
+ Greetings everyone! 🌟 This marks the release of a beta version for our package. If you encounter any issues or need assistance, feel free to reach out. Direct message me on Discord at `jedi.jsx` (ID: 1130583393176920095).
3
3
 
4
4
 
5
5
  # Added new 🆕
6
6
 
7
- ### Check our server for info and help
8
- <details>
9
-
10
- - New chat models has been added (starChat, zephyr-beta, gemma-v and v4)
11
-
12
- - Our [Server Support](https://discord.gg/MbrvstwNjs)
13
- </details>
7
+ - Finally Supporting Ts and Js
14
8
 
15
9
 
16
- # 🚀 Usage Guidelines
10
+ ## 🚀 Usage Guidelines
17
11
 
18
12
  ### 🤖 Ai Chat & Imagine
19
13
  <details>
@@ -29,10 +23,10 @@ For a standard reply without AI images or voice messages, set both `draw` and `v
29
23
 
30
24
  ```javascript
31
25
  // Use this for js files (cjs modules)
32
- const { apexAI } = require('apexify.js');
26
+ const { ApexAI } = require('apexify.js');
33
27
 
34
28
  // For es module (.mjs/(.js if "type": "module" in package.json) or ts
35
- import { apexAI } from 'apexify.js';
29
+ import { ApexAI } from 'apexify.js';
36
30
 
37
31
  const allowedChannelId = 'Channel_ID'; // Whether to set a channel id or no
38
32
  client.on('messageCreate', async (message) => {
@@ -40,35 +34,46 @@ client.on('messageCreate', async (message) => {
40
34
 
41
35
  /////Note: voice message for premium is beta but way better than google in voice speechs
42
36
 
43
- const options = {
44
- // voice: false, // Whether to generate voice response (true/false)
45
- // voiceModel: "google", // Voice model to use ("google", (premium:"apexAI", "zenithAi") )
46
- // voice_code: "en-US-3", // Voice code (applicable only if voiceModel is "zenithAi")
47
- // apiKey: "", // API key (applicable only if voiceModel is "zenithAi" or "apexAI")
48
- // type: "b", // Type of voice model (applicable only if voiceModel is "apexAI")
49
- // Available types: "a", "b", "c", "d", "e", "f", "g", "h"
50
- draw: false, // Whether to draw image (true/false)
51
- drawTrigger: ["create", "رسم"], // Triggers to initiate image drawing
52
- imageModel: "prodia", // Image model to use ("prodia" or any other supported model)
53
- numOfImages: 2, // Number of images to draw (applicable only if draw is true)
54
- chatModel: "v3", // Chat model to use ("v3" or "apexChat")
55
- keywords: [], // Keywords to trigger specific responses
56
- keywordResponses: {}, // Responses corresponding to keywords
57
- loader: { // Loader settings (null to disable)
58
- loadingMessage: 'loading...', // Message to show while loading
59
- loadingTimer: 3000, // Loading timer (in milliseconds)
37
+ const aiOptions = {
38
+ voice: {
39
+ enable: true, // Enables voice processing
40
+ voiceModal: "google", // Specifies the voice processing service (e.g., "google", premium: "apexAi", "zenithAi")
41
+ voice_code: "en-US-3", // Specifies the voice code or language for voice processing
42
+ apiKey: "your-api-key", // API key required for accessing the voice processing service
43
+ type: "b" // Specifies the type of voice processing (e.g., "a" for automated, "b" for synthesized, etc.)
44
+ },
45
+ imagine: {
46
+ enable: true, // Enables image processing
47
+ drawTrigger: ["create", "رسم"], // Triggers for initiating image drawing (e.g., keywords or phrases)
48
+ imageModel: "prodia", // Specifies the image processing model or service (e.g., "prodia", "dalle", etc.)
49
+ numOfImages: 2, // Specifies the number of images to process
50
+ nsfw: false, // Disables to generate NSFW Images
51
+ enhancer: true // Enables image enhancement
52
+ },
53
+ chat: {
54
+ chatModel: "v3", // Specifies the chat model or service (e.g., "v3", "gemma-v3", "starChat", more models are down at the end of the page)
55
+ readFiles: true // Enables reading files for chat processing (e.g., PDF, TXT files)
56
+ },
57
+ others: {
58
+ keywords: ["help", "info"], // Specifies keywords for triggering specific responses
59
+ keywordResponses: {
60
+ help: "I'm here to assist you!", // Specifies responses for specific keywords
61
+ info: "Here is some information for you."
60
62
  },
61
- readFiles: false, // Whether to read attached files (true/false)
62
- enhancer: false, // Whether to enhance text before processing (true/false)
63
- nsfw: false, // Whether to prevent nsfw generated images (true/false)
63
+ loader: {
64
+ loadingMessage: "Please wait while I process your request...", // Loading message to display during processing
65
+ loadingTimer: 5000 // Specifies the duration (in milliseconds) for displaying the loading message
66
+ }
67
+ }
64
68
  };
65
69
 
66
- await apexAI(message, options)
70
+
71
+ ApexAI(message, aiOptions)
67
72
  });
68
73
  ```
69
74
  </details>
70
75
 
71
- ### Usage in slashcommand or outside discord.
76
+ ### Usage in slashcommand or outside discord
72
77
 
73
78
  <details>
74
79
 
@@ -177,151 +182,185 @@ module.exports = {
177
182
  ///Generating Ai chat
178
183
  const response = await ApexChat(model, prompt);/// returns a direct prompt
179
184
  ```
185
+
180
186
  </details>
187
+
181
188
  </details>
182
189
 
183
190
  ### 📸 Manipulating Images Using Canvas 🎨
191
+
192
+ - Canvas Background configuration.
193
+ - Canvas Images/shapes/custom drawing configuration.
194
+ - Canvas Text on background or image configuration.
195
+ - Canvas Filters: Color/Effects.
196
+ - Canvas Gif: Creating Gif from set of images.
197
+ - Canvas Resizing and Extention Converter for images.
198
+ - Canvas Charts: Creating piechart/barcharts/linecharts using the given set of data.
199
+
184
200
  <details>
185
- Add images, shapes, and effects to images with ease!
186
201
 
187
202
  ```js
188
- const { ApexPainter } = require('apexify.js');/// cjs module .js
189
-
190
- const paintImage = new ApexPainter();
191
-
192
-
193
- ///Creating a background
194
- const canvasOptions = {
195
- width: 1200,//background width
196
- height: 300,//background height
197
- customBg: '',/// it can be URL only for now and if used plz dont use bgColor or bgGradient
198
- backgroundColor: '#3498db', // Example color (blue) or use 'transparent' for no backgound color
199
- backgroundGradient: {////Adding a gradient instead of constant color
200
- type: 'linear',/// change to 'radial' if you want gradient start from middle
201
- startX: 0,
202
- startY: 0,
203
- startRadius: 0,///add if radial only!
204
- endRadius: 0,///add if radial only!
205
- endX: 100,
206
- endY: 0,
207
- colors: [
208
- { stop: 0, color: 'red' },
209
- { stop: 0.5, color: 'green' },
210
- { stop: 1, color: 'blue' },
211
- ///add more colors if needed
212
- ],
213
- },
214
- borderRadius: 0,///adding a radius to create a curvy edges or use 'circular' to make it a circle
203
+ const { ApexPainter } = require('apexify.js'); // cjs module .js
204
+
205
+ // OR
206
+
207
+ import { ApexPainter } from 'apexify.js'; // ES module .mjs or TS
208
+
209
+ const painter = new ApexPainter();
210
+
211
+ // Note: All the options below inside canvasBg, images, and text are optional and not required. Feel free to remove any option you won't use.
212
+
213
+ // Creating Background:
214
+
215
+ const canvasBg = {
216
+ width: 800, // Specifies the width of the background.
217
+ height: 600, // Specifies the height of the background.
218
+ x: 100, // Specifies the position of the background on the x-axis.
219
+ y: 50, // Specifies the position of the background on the y-axis.
220
+ customBg: 'https://example.com/image.jpg | ./image.png', // Specifies the URL or local path to the custom background image.
221
+ colorBg: 'blue', // Specifies the background color if no custom background image is provided.
222
+ gradientBg: {
223
+ type: 'linear', // Specifies the type of gradient ('radial' or 'linear').
224
+ startX: 0, // Starting coordinate on the x-axis for the gradient.
225
+ startY: 0, // Starting coordinate on the y-axis for the gradient.
226
+ endX: 800, // Ending coordinate on the x-axis for the gradient.
227
+ endY: 600, // Ending coordinate on the y-axis for the gradient.
228
+ colors: [ // Array of objects specifying color stops and corresponding colors for the gradient.
229
+ { stop: 0, color: 'red' }, // Red color at the beginning of the gradient (stop: 0).
230
+ { stop: 0.5, color: 'green' }, // Green color in the middle of the gradient (stop: 0.5).
231
+ { stop: 1, color: 'blue' } // Blue color at the end of the gradient (stop: 1).
232
+ ]
233
+ },
234
+ stroke: {
235
+ color: 'black', // Specifies the color of the stroke.
236
+ width: 2, // Specifies the thickness of the stroke.
237
+ position: 0.5, // Specifies the position of the stroke. As value increase the far it be from background.
238
+ borderRadius: 10 | 'circular' // Specifies the border radius of the stroke, or set it as 'circular' for circular stroke
239
+ },
240
+ shadow: {
241
+ color: 'rgba(0, 0, 0, 0.5)', // Specifies the color of the shadow.
242
+ offsetX: 2, // Specifies the horizontal offset of the shadow.
243
+ offsetY: 2, // Specifies the vertical offset of the shadow.
244
+ blur: 5, // Specifies the blur radius of the shadow.
245
+ opacity: 0.5 // Specifies the opacity of the shadow (0 to 1).
246
+ },
247
+ rotation: 45, // Specifies the rotation angle of the background.
248
+ borderRadius: 20 | 'circular' // Specifies the border radius of the background, or set it as 'circular' for make backgroudn as circle.
215
249
  };
216
250
 
251
+ const background = await painter.createCanvas(canvasBg, __dirname); // Add __dirname if using any local image.
252
+ console.log(background); // Returning a buffer image.
217
253
 
218
- ////
219
- const images = [
254
+
255
+
256
+ // Creating images on canvas:
257
+
258
+ const images = [
220
259
  {
221
- source: 'square',///drawing shapes as images. We only support those shapes ('square', 'triangle', 'circle', 'pentagon').
222
- x: 385,///positions on background horizontally.
223
- y: 225,///positions on background vertically.
224
- rotate: 0,//rotate only applyed for shapes.
225
- filled: true,///to fill the shape if true.
226
- width: 500,///shape width.
227
- height: 80,//shape height.
228
- borderRadius: 35,///adding a radius to create a curvy edges or use 'circular' to make it a circle.
229
- color: 'rgba(0, 0, 0, 0.4)',///only being applied for shapes (filling the shape with the provided color).
230
- gradient:, ////Adding a gradient instead of constant color (used same way as in canvas (only works with shapes).
231
- stroke: {//Adding stroke
232
- color: '#498afc',//color of the stroke
233
- width: 5,//size of the stroke.
234
- borderRadius: 35,///adding a radius to create a curvy edges or use 'circular' to make it a circle.
260
+ source: 'https://example.com/image.jpg | ./image.png | square', // Specifies your image either url image / local image / shape name. Valid Shape names are ['circle', 'square', 'triangle', 'pentagon', 'hexagon', 'heptagon', 'octagon', 'star', 'kite']. In future updates are shapes will be provided.
261
+
262
+ width: 300, // Specifies your image's width.
263
+ height: 200, // Specifies your image's height.
264
+ x: 30, // Specifies your image's position on x axis.
265
+ y: 50, // Specifies your image's position on y axis.
266
+ isFilled: true, // Whether filling your shape or no. Applied if source is a shape name.
267
+ color: '#2e2e2e', // Specifies your shape color. Applied if source is a shape name.
268
+ gradient: { // Specifies your shape gradient color. Applied if source is a shape name.
269
+ type: 'linear', // Specifies the type of gradient ('radial' or 'linear').
270
+ startX: 0, // Starting coordinate on the x-axis for the gradient.
271
+ startY: 0, // Starting coordinate on the y-axis for the gradient.
272
+ endX: 800, // Ending coordinate on the x-axis for the gradient.
273
+ endY: 600, // Ending coordinate on the y-axis for the gradient.
274
+ colors: [ // Array of objects specifying color stops and corresponding colors for the gradient.
275
+ { stop: 0, color: 'red' }, // Red color at the beginning of the gradient (stop: 0).
276
+ { stop: 0.5, color: 'green' }, // Green color in the middle of the gradient (stop: 0.5).
277
+ { stop: 1, color: 'blue' } // Blue color at the end of the gradient (stop: 1).
278
+ ]
279
+ },
280
+ rotation: 90, // Specifies whether to add rotation on image. Works in (degree)
281
+ borderRadius: 50 | "circular" , // Specifies your image's border. Either circular, radius border or none
282
+ stroke: {
283
+ color: 'green', // Specifies Stroke color.
284
+ width: 5, // Specifies thickness of the stroke.
285
+ position: 7, // Specifies the position of the stroke. As value increase the far it be from background.
286
+ borderRadius: 50 | "circular" // Specifies the border radius of the background, or set it as 'circular' for make backgroudn as circle.
235
287
  },
236
-
237
- },
238
- {
239
- source: 'square',
240
- x: 395,
241
- y: 235,
242
- rotate: 0,
243
- filled: true,
244
- width: 440,
245
- height: 60,
246
- borderRadius: 35,
247
- gradient: {
248
- type: 'linear',
249
- startX: 0,
250
- startY: 0,
251
- endX: 100,
252
- endY: 0,
253
- colors: [
254
- { stop: 0, color: 'red' },
255
- { stop: 0.5, color: 'green' },
256
- { stop: 1, color: 'blue' },
257
- ],
258
- },
259
- },
260
- {
261
- source: 'local/file/path || image url',//you can provide an image url or local path and for images styling you can use same as above in shapes except for rotate and gradient which won't work.
262
- x: 120,
263
- y: 120,
264
- width: 210,
265
- height: 210,
266
- borderRadius: 20,///adding a radius to create a curvy edges or use 'circular' to make it a circle.
267
288
  shadow: {
268
- color: null,//shadow color.
269
- offsetX: 0,///shadow position off from image horizontally.
270
- offsetY: 0,///shadow postion off from image vertically.
271
- opacity: 0,//shadow opacity.
272
- blur: 0,//shadow blur.
273
- borderRadius: null,///adding a radius to create a curvy edges or use 'circular' to make it a circle.
289
+ color: 'rgb(255, 34, 89, 0.6)', // Specifies color of the shadow.
290
+ offsetX: 10, // Specifies postion of the shadow on x axis.
291
+ offsetY: -10, // Specifies postion of the shadow on y axis.
292
+ blur: 10, // Specifies blur of the shadow.
293
+ opacity: 5, // Specifies opacity of the shadow.
294
+ borderRadius: 50 | "circular" // Specifies the border radius of the background, or set it as 'circular' for make backgroudn as circle.
274
295
  }
275
- },
296
+ },
297
+ {
298
+ // Add other images with its options here.
299
+ },
276
300
  ];
277
- ////image already got buffered you can send it directly or add text option
278
- const image = await paintImage.drawImages(images, canvasOptions, __dirname);
279
301
 
280
- const textOptionsArray = [
281
- {
282
- text: 'elias79. Rank',//adding a text.
283
- x: 440,//text horizontally positon .
284
- y: 145,//text vetically position.
285
- fontName: 'Wind',//name your font as you want or use default (Arial).
286
- fontPath: './wind.ttf',//font path for custom font.
287
- fontSize: 50,///size of the font.
288
- color: 'white',//font color.
302
+ // Note: You will need to provide a buffer to draw the images on. Since background returns buffer we use it in this example.
303
+ const image = await painter.createImage(images, background, __dirname); // Add __dirname if using any local image.
304
+
305
+
306
+
307
+ // Creating Text on canvas:
308
+
309
+ const text = [
310
+ {
311
+ text: 'Hello World', // Specifies your text to add.
312
+ x: 90, // Specifies position of the tex on the x-axis.
313
+ y: 20, // Specifies position of the tex on the y-axis.
314
+ fontPath: './fonts/customFont', // Use your custom fonts if you like.
315
+ fontName: 'fontName', // Add a name to your custom font || default is 'Arial'.
316
+ fontSize: 30, // Text size on image.
317
+ isBold: true, // Add Boldness into the text.
318
+ color: '#00ff00', // Specifies color of the text.
319
+ maxWidth: 30, // Specifies the max width of the text for wrapping.
320
+ lineHeight: 10, // Specifies line height for wrapped text.
321
+ textAlign: 'center', // Specifies text alignment ('center', 'left', 'right', 'start').
322
+ textBaseline: 'alphabatic', // Specifies basline for letter for example (p, y and q make them same y coordinate)
289
323
  shadow: {
290
- offsetX: 3,
291
- offsetY: 3,
292
- color: "rgba(0, 0, 0, 0.5)",
293
- blur: 5
294
- },
295
- stroke: {
296
- color: '#deff08',
297
- width: 1.2,
298
- },
299
- },
300
- {
301
- text: '95/100 XP',
302
- x: 530,
303
- y: 250,
304
- fontName: 'Arial',
305
- fontSize: 35,
306
- color: 'white',
324
+ color: 'white', // Specifies color of the shadow.
325
+ offsetX: 10, // Specifies postion of the shadow on x axis.
326
+ offsetY: -10, // Specifies postion of the shadow on y axis.
327
+ blur: 10, // Specifies blur of the shadow.
328
+ opacity: 5, // Specifies opacity of the shadow.
329
+ },
307
330
  stroke: {
308
- color: 'black',
309
- width: 0.5,
310
- },
331
+ color: 'black', // Specifies color of the stroke.
332
+ width: 1, // Specifies thickness of the stroke.
333
+ }
311
334
  },
335
+ {
336
+ // Add other texts and its options here.
337
+ }
312
338
  ];
313
- ///Adding the text on the drawn image before
314
- const buffer = await paintImage.addText(textOptionsArray, image, __dirname);
315
- console.log(buffer)
339
+
340
+ // Note: You will need to provide a buffer to draw the text on. Since image returns buffer we use it in this example.
341
+ const final = await painter.createText(text, image, __dirname); // Add __dirname if using any local custom fonts.
342
+ console.log(final); // Returns a buffer image.
343
+
344
+
345
+ // By that way we created firstly a canvas background, then an images on the canvas background to give us the results, then we used the results to draw text on.
346
+
347
+ // You can add any image ready you want just buffer it and put it in the constructor to use it.
316
348
  ```
317
349
  </details>
318
350
 
351
+ ## For Further Usage Of ApexPainter
319
352
 
353
+ - Further Usages: creating charts, custom drawing, and GIF creation using ApexPainter.
354
+
355
+ - Please refer to our documention website for further usages and better explainantions.
356
+
357
+ - Check exmaple folder for charts information and usage.
320
358
 
321
359
  ## 📚 More Info & Documentation 📖
322
360
  <details>
323
361
 
324
- - Explore a detailed list of apexify.js and their usage at our [Support Server](https://discord.gg/MbrvstwNjs).
362
+ - Explore a detailed list of apexify.js and their usage at our
363
+ [Support Server](https://discord.gg/mDyXV9hzXw) or at [jedi-studio](http://apexify.jedi-studio.com).
325
364
 
326
365
  ### 🚨 Important Notes 📌
327
366
 
@@ -777,4 +816,4 @@ Keep experimenting, and feel free to contact me for assistance! Suggestions and
777
816
  - Chinese (Taiwanese Mandarin) zh-TW zh-TW-6 Standard Male
778
817
  - Zulu (South Africa) zu-ZA zu-ZA-1 Neural Female
779
818
  - Zulu (South Africa) zu-ZA zu-ZA-2 Neural Male
780
- </details>
819
+ </details>
@@ -0,0 +1,37 @@
1
+ interface Options {
2
+ voice?: {
3
+ enable?: boolean;
4
+ voiceModal?: string;
5
+ voice_code?: string;
6
+ apiKey?: string;
7
+ type?: string;
8
+ };
9
+ imagine?: {
10
+ enable?: boolean;
11
+ drawTrigger?: string[];
12
+ imageModel?: string;
13
+ numOfImages?: number;
14
+ nsfw?: boolean;
15
+ enhancer?: boolean;
16
+ };
17
+ chat?: {
18
+ chatModel?: string;
19
+ readFiles?: boolean;
20
+ };
21
+ others?: {
22
+ keywords?: string[];
23
+ keywordResponses?: Record<string, string>;
24
+ loader?: {
25
+ loadingMessage: string;
26
+ loadingTimer: number;
27
+ };
28
+ };
29
+ }
30
+ export declare function ApexAI(message: any, aiOptions: Options): Promise<any>;
31
+ export declare function gemmaAi_4(prompt: string): Promise<any>;
32
+ export declare function gemmaAi_3(prompt: string): Promise<any>;
33
+ export declare function apexai(prompt: string): Promise<any>;
34
+ export declare function starChat(prompt: string): Promise<any>;
35
+ export declare function zephyr_beta(prompt: string): Promise<any>;
36
+ export {};
37
+ //# sourceMappingURL=ApexAI.d.ts.map