apexify.js 3.0.1 → 3.1.0
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/.tsbuildinfo +1 -0
- package/README.md +158 -130
- package/dist/ai/ApexAI.d.ts +37 -0
- package/dist/ai/ApexAI.d.ts.map +1 -0
- package/dist/ai/ApexAI.js +258 -0
- package/dist/ai/ApexAI.js.map +1 -0
- package/dist/ai/buttons/drawMenu.d.ts +3 -0
- package/dist/ai/buttons/drawMenu.d.ts.map +1 -0
- package/dist/ai/buttons/drawMenu.js +271 -0
- package/dist/ai/buttons/drawMenu.js.map +1 -0
- package/dist/ai/buttons/tools.d.ts +3 -0
- package/dist/ai/buttons/tools.d.ts.map +1 -0
- package/dist/ai/buttons/tools.js +442 -0
- package/dist/ai/buttons/tools.js.map +1 -0
- package/dist/ai/functions/chunkString.d.ts +2 -0
- package/dist/ai/functions/chunkString.d.ts.map +1 -0
- package/{lib → dist}/ai/functions/chunkString.js +8 -8
- package/dist/ai/functions/chunkString.js.map +1 -0
- package/dist/ai/functions/draw.d.ts +3 -0
- package/dist/ai/functions/draw.d.ts.map +1 -0
- package/dist/ai/functions/draw.js +377 -0
- package/dist/ai/functions/draw.js.map +1 -0
- package/dist/ai/functions/generateVoiceResponse.d.ts +3 -0
- package/dist/ai/functions/generateVoiceResponse.d.ts.map +1 -0
- package/dist/ai/functions/generateVoiceResponse.js +158 -0
- package/dist/ai/functions/generateVoiceResponse.js.map +1 -0
- package/dist/ai/functions/imageReader.d.ts +3 -0
- package/dist/ai/functions/imageReader.d.ts.map +1 -0
- package/dist/ai/functions/imageReader.js +23 -0
- package/dist/ai/functions/imageReader.js.map +1 -0
- package/dist/ai/functions/readFiles.d.ts +3 -0
- package/dist/ai/functions/readFiles.d.ts.map +1 -0
- package/dist/ai/functions/readFiles.js +62 -0
- package/dist/ai/functions/readFiles.js.map +1 -0
- package/dist/ai/functions/shouldDrawImage.d.ts +2 -0
- package/dist/ai/functions/shouldDrawImage.d.ts.map +1 -0
- package/dist/ai/functions/shouldDrawImage.js +12 -0
- package/dist/ai/functions/shouldDrawImage.js.map +1 -0
- package/dist/ai/models.d.ts +9 -0
- package/dist/ai/models.d.ts.map +1 -0
- package/dist/ai/models.js +538 -0
- package/dist/ai/models.js.map +1 -0
- package/dist/ai/utils.d.ts +9 -0
- package/dist/ai/utils.d.ts.map +1 -0
- package/dist/ai/utils.js +20 -0
- package/dist/ai/utils.js.map +1 -0
- package/dist/canvas/ApexPainter.d.ts +26 -0
- package/dist/canvas/ApexPainter.d.ts.map +1 -0
- package/dist/canvas/ApexPainter.js +411 -0
- package/dist/canvas/ApexPainter.js.map +1 -0
- package/dist/canvas/utils/bg.d.ts +24 -0
- package/dist/canvas/utils/bg.d.ts.map +1 -0
- package/dist/canvas/utils/bg.js +77 -0
- package/dist/canvas/utils/bg.js.map +1 -0
- package/dist/canvas/utils/charts.d.ts +9 -0
- package/dist/canvas/utils/charts.d.ts.map +1 -0
- package/dist/canvas/utils/charts.js +453 -0
- package/dist/canvas/utils/charts.js.map +1 -0
- package/dist/canvas/utils/circular.d.ts +10 -0
- package/dist/canvas/utils/circular.d.ts.map +1 -0
- package/dist/canvas/utils/circular.js +22 -0
- package/dist/canvas/utils/circular.js.map +1 -0
- package/dist/canvas/utils/customLines.d.ts +2 -0
- package/dist/canvas/utils/customLines.d.ts.map +1 -0
- package/dist/canvas/utils/customLines.js +50 -0
- package/dist/canvas/utils/customLines.js.map +1 -0
- package/dist/canvas/utils/general functions.d.ts +8 -0
- package/dist/canvas/utils/general functions.d.ts.map +1 -0
- package/dist/canvas/utils/general functions.js +187 -0
- package/dist/canvas/utils/general functions.js.map +1 -0
- package/dist/canvas/utils/imageProperties.d.ts +60 -0
- package/dist/canvas/utils/imageProperties.d.ts.map +1 -0
- package/dist/canvas/utils/imageProperties.js +331 -0
- package/dist/canvas/utils/imageProperties.js.map +1 -0
- package/dist/canvas/utils/radius.d.ts +10 -0
- package/dist/canvas/utils/radius.d.ts.map +1 -0
- package/dist/canvas/utils/radius.js +31 -0
- package/dist/canvas/utils/radius.js.map +1 -0
- package/dist/canvas/utils/textProperties.d.ts +18 -0
- package/dist/canvas/utils/textProperties.d.ts.map +1 -0
- package/dist/canvas/utils/textProperties.js +67 -0
- package/dist/canvas/utils/textProperties.js.map +1 -0
- package/dist/canvas/utils/types.d.ts +389 -0
- package/dist/canvas/utils/types.d.ts.map +1 -0
- package/dist/canvas/utils/types.js +5 -0
- package/dist/canvas/utils/types.js.map +1 -0
- package/dist/canvas/utils/utils.d.ts +20 -0
- package/dist/canvas/utils/utils.d.ts.map +1 -0
- package/dist/canvas/utils/utils.js +43 -0
- package/dist/canvas/utils/utils.js.map +1 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +61 -0
- package/dist/index.js.map +1 -0
- package/dist/utils.d.ts +12 -0
- package/dist/utils.d.ts.map +1 -0
- package/dist/utils.js +12 -0
- package/dist/utils.js.map +1 -0
- package/example/barChartType1.txt +69 -0
- package/example/lineChart.txt +84 -0
- package/example/piechartUsagetyp1.txt +63 -0
- package/package.json +136 -78
- package/dataSQL/data.sql +0 -5
- package/dataSQL/dataName.sql +0 -0
- package/dataSQL/example_table.sql +0 -1
- package/index.js +0 -35
- package/lib/ai/apexAI.js +0 -446
- package/lib/ai/buttons/drawMenu.js +0 -351
- package/lib/ai/buttons/tools.js +0 -652
- package/lib/ai/functions/draw.js +0 -514
- package/lib/ai/functions/generateVoiceResponse.js +0 -239
- package/lib/ai/functions/processImageAttachments.js +0 -93
- package/lib/ai/functions/processMessageContent.js +0 -48
- package/lib/ai/functions/readFiles.js +0 -95
- package/lib/ai/functions/shouldDrawImage.js +0 -12
- package/lib/ai/models.js +0 -654
- package/lib/ai/utils.js +0 -21
- package/lib/canvas/ApexPainter.js +0 -1396
- package/lib/utils.js +0 -24
package/.tsbuildinfo
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../../appdata/roaming/npm/node_modules/typescript/lib/lib.es5.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2016.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.dom.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.scripthost.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.core.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.date.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.object.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.string.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.array.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.object.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.string.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.date.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.string.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.number.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.decorators.d.ts","../../appdata/roaming/npm/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../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/buffer/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/@babel/types/lib/index.d.ts","./node_modules/@types/babel__generator/index.d.ts","./node_modules/@babel/parser/typings/babel-parser.d.ts","./node_modules/@types/babel__template/index.d.ts","./node_modules/@types/babel__traverse/index.d.ts","./node_modules/@types/babel__core/index.d.ts","./node_modules/@types/graceful-fs/index.d.ts","./node_modules/@types/har-format/index.d.ts","./node_modules/@types/istanbul-lib-coverage/index.d.ts","./node_modules/@types/istanbul-lib-report/index.d.ts","./node_modules/@types/istanbul-reports/index.d.ts","./node_modules/@jest/expect-utils/build/index.d.ts","./node_modules/chalk/index.d.ts","./node_modules/@sinclair/typebox/typebox.d.ts","./node_modules/@jest/schemas/build/index.d.ts","./node_modules/pretty-format/build/index.d.ts","./node_modules/jest-diff/build/index.d.ts","./node_modules/jest-matcher-utils/build/index.d.ts","./node_modules/expect/build/index.d.ts","./node_modules/@types/jest/index.d.ts","./node_modules/@types/stack-utils/index.d.ts","./node_modules/@types/yargs-parser/index.d.ts","./node_modules/@types/yargs/index.d.ts","../../node_modules/@types/webidl-conversions/index.d.ts","../../node_modules/@types/whatwg-url/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":"c21565d0ee3d71a57175a81fe65a980cd2be9cb0c6ed1c85b878169362266e25","signature":"30b2b3c4d5977d3c038eca1738ede0fe01ee90372927a185039b0c2281220344"},{"version":"87aa7a231f285c4ba1f8f91fe87551546b74cf98508984d15cb3fcc2c52e9dc0","signature":"9449406c19afd8a29d88556770014cc0f8cee3c765236ed1b6e454ea3a554f55"},{"version":"d7a6fd9e3354b66e88a1805c3653810143b155e997b60f10f2cd80741cd2b6f8","signature":"22e81f9ba56cfd42c309f14ab99d5ff0e95aa46bb7ebbaaf198a9ca41cc1aba0"},{"version":"5b5d4e095119536cf6d1cfb404cb6a545d423b57ff80a29e3bbca35f206251f0","signature":"5405aca25dfd612c5ad5c8e456c116d373d3d934761203d1842922835afec884"},{"version":"685a76f2de0d74c00235349db3837c4c5ef14355f3716c843189644e76cb8577","signature":"9321f79823d31489ef2908c92ad6ff3580c37ad5003d6fd0617f7b4fc2fe32b9"},{"version":"ff6fa7541ac4bb16c52b4cac4d0d0fafa707e0c3132ef7aca97cdf54a5528dd5","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","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","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":"629234dc3e4342f30f649e863baa9b4b42a22de87768f543f61b9a7762955636","signature":"5f61f4827ad47bb857884e1460f9eaec5ae514b5b579ae0e52b649c817f548bf"},{"version":"dff7dff852ca3e0bd6b145a384e675be02ee996b0f30610cdbd7bb905ec49b24","signature":"f4a6d0898add83460321f52aa811517123e2b2dcf932ef12632ee8436bd6c507"},{"version":"7a658bc8b59bb88972e224969425142ab8476b02394d0b12a9e87c87e2b57349","signature":"7a1db2326014820158cde5fa6f26c9490de87e22d01916d42ae43f0851a038de"},"4489c6a9fde8934733aa7df6f7911461ee6e9e4ad092736bd416f6b2cc20b2c6","2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","8041cfce439ff29d339742389de04c136e3029d6b1817f07b2d7fcbfb7534990","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","9d38964b57191567a14b396422c87488cecd48f405c642daa734159875ee81d9","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","9e4b070b543d91d0b321a481e1119e99bb8f136f4ef271d7b5ba264919fc32e2","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec",{"version":"5ab630d466ac55baa6d32820378098404fc18ba9da6f7bc5df30c5dbb1cffae8","affectsGlobalScope":true},"ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","5d30d04a14ed8527ac5d654dc345a4db11b593334c11a65efb6e4facc5484a0e","f2f23fe34b735887db1d5597714ae37a6ffae530cafd6908c9d79d485667c956","7fae4b2bc906f3e6840725cc24affaa4e684e6c9cc20254242c5df4bede5b6f6"],"root":[[140,145],[182,186],[190,192],321,322,[324,331]],"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,316,326,327,328],[330],[50,146,193,316,320],[50,102,188,189,191,193,321],[189],[102,106,323],[50,188,320,329],[190,191,192,321,322,324,325],[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,330],[186,326,329],[332],[345],[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],[332,333,334,335,336],[332,334],[119,138],[102,138],[340],[341],[347,350],[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],[353],[319],[343,349],[187],[347],[344,348],[152,158,180],[317,318],[346],[63,67,130],[63,119,130],[58],[60,63,127,130],[109,127],[138],[58,138],[60,63,109,130],[55,56,59,62,89,101,119,130],[55,61],[59,63,89,122,130,138],[89,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],[89,119],[58,63,79,89,135,138],[194,268,269,270],[130,195],[119,122,130,268,270,273,307,308],[306],[130,283,287],[119,130,283],[278],[127,130,280,283],[138,278],[109,130,280,283],[89,101,119,130,275,276,279,282],[275,281],[89,122,130,138,279,283],[89,138,299],[138,277,278],[283],[277,278,279,280,281,282,283,284,285,287,288,289,290,291,292,293,294,295,296,297,298,300,301,302,303,304,305],[283,290,291],[281,283,291,292],[282],[275,278,283],[283,287,291,292],[287],[130,281,283,286],[275,280,281,283,287,290],[89,135,138,278,283,299],[268,270,273,308,309,311],[131],[101,104,106,119,127,130,136,138],[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,309,312,313,314,315],[268,316],[146]],"referencedMap":[[329,1],[327,2],[321,3],[322,4],[190,5],[324,6],[325,7],[326,8],[186,9],[143,10],[184,11],[182,12],[144,13],[145,14],[185,15],[331,16],[330,17],[334,18],[346,19],[155,20],[148,21],[149,21],[152,22],[147,23],[151,24],[150,25],[157,20],[153,20],[159,20],[160,20],[161,20],[162,20],[163,20],[164,20],[165,20],[166,20],[167,20],[168,20],[169,20],[170,20],[171,20],[172,20],[173,20],[174,20],[175,20],[176,20],[177,20],[178,20],[179,20],[180,26],[154,20],[156,20],[158,27],[51,28],[337,29],[333,18],[335,30],[336,18],[139,31],[338,32],[341,33],[342,34],[351,35],[52,36],[53,36],[88,37],[89,38],[90,39],[91,40],[92,41],[93,42],[94,43],[95,44],[96,45],[97,46],[98,46],[100,47],[99,48],[101,49],[102,50],[103,51],[87,52],[104,53],[105,54],[106,55],[138,56],[107,57],[108,58],[109,59],[110,60],[111,61],[112,62],[113,63],[114,64],[115,65],[116,66],[117,66],[118,67],[119,68],[121,69],[120,70],[122,71],[123,72],[124,73],[125,74],[126,75],[127,76],[128,77],[129,78],[130,79],[131,80],[132,81],[133,82],[134,83],[135,84],[136,85],[354,86],[320,87],[350,88],[188,89],[348,90],[349,91],[181,92],[319,93],[347,94],[146,31],[70,95],[77,96],[69,95],[84,97],[61,98],[60,99],[83,100],[78,101],[81,102],[63,103],[62,104],[58,105],[57,106],[80,107],[59,108],[64,109],[68,109],[86,110],[85,109],[72,111],[73,112],[75,113],[71,114],[74,115],[79,100],[66,116],[67,117],[76,118],[56,119],[82,120],[271,121],[269,122],[309,123],[307,124],[290,125],[297,126],[289,125],[304,127],[281,128],[280,99],[303,100],[298,129],[301,130],[283,131],[282,132],[278,133],[277,106],[300,134],[279,135],[284,136],[288,136],[306,137],[305,136],[292,138],[293,139],[295,140],[291,141],[294,142],[299,100],[286,143],[287,144],[296,145],[276,119],[302,146],[312,147],[194,148],[313,149],[264,150],[197,151],[240,152],[239,153],[241,154],[242,155],[243,154],[244,152],[245,154],[246,152],[238,156],[247,154],[248,157],[249,158],[250,152],[252,159],[253,160],[251,161],[254,162],[255,163],[256,164],[237,165],[257,166],[258,167],[259,168],[236,169],[205,170],[210,171],[206,162],[261,172],[200,173],[262,174],[203,175],[207,176],[235,177],[260,178],[211,179],[234,162],[198,162],[208,180],[202,181],[204,181],[232,182],[199,180],[233,180],[209,183],[213,184],[214,185],[215,183],[216,186],[217,183],[218,164],[219,187],[220,188],[231,189],[222,190],[223,183],[230,191],[224,183],[225,183],[226,164],[227,192],[228,183],[229,164],[221,187],[266,193],[267,164],[268,194],[316,195],[314,196]],"exportedModulesMap":[[326,8],[186,13],[143,14],[184,14],[182,197],[144,13],[145,14],[185,15],[331,2],[330,17],[334,18],[346,19],[155,20],[148,21],[149,21],[152,22],[147,23],[151,24],[150,25],[157,20],[153,20],[159,20],[160,20],[161,20],[162,20],[163,20],[164,20],[165,20],[166,20],[167,20],[168,20],[169,20],[170,20],[171,20],[172,20],[173,20],[174,20],[175,20],[176,20],[177,20],[178,20],[179,20],[180,26],[154,20],[156,20],[158,27],[51,28],[337,29],[333,18],[335,30],[336,18],[139,31],[338,32],[341,33],[342,34],[351,35],[52,36],[53,36],[88,37],[89,38],[90,39],[91,40],[92,41],[93,42],[94,43],[95,44],[96,45],[97,46],[98,46],[100,47],[99,48],[101,49],[102,50],[103,51],[87,52],[104,53],[105,54],[106,55],[138,56],[107,57],[108,58],[109,59],[110,60],[111,61],[112,62],[113,63],[114,64],[115,65],[116,66],[117,66],[118,67],[119,68],[121,69],[120,70],[122,71],[123,72],[124,73],[125,74],[126,75],[127,76],[128,77],[129,78],[130,79],[131,80],[132,81],[133,82],[134,83],[135,84],[136,85],[354,86],[320,87],[350,88],[188,89],[348,90],[349,91],[181,92],[319,93],[347,94],[146,31],[70,95],[77,96],[69,95],[84,97],[61,98],[60,99],[83,100],[78,101],[81,102],[63,103],[62,104],[58,105],[57,106],[80,107],[59,108],[64,109],[68,109],[86,110],[85,109],[72,111],[73,112],[75,113],[71,114],[74,115],[79,100],[66,116],[67,117],[76,118],[56,119],[82,120],[271,121],[269,122],[309,123],[307,124],[290,125],[297,126],[289,125],[304,127],[281,128],[280,99],[303,100],[298,129],[301,130],[283,131],[282,132],[278,133],[277,106],[300,134],[279,135],[284,136],[288,136],[306,137],[305,136],[292,138],[293,139],[295,140],[291,141],[294,142],[299,100],[286,143],[287,144],[296,145],[276,119],[302,146],[312,147],[194,148],[313,149],[264,150],[197,151],[240,152],[239,153],[241,154],[242,155],[243,154],[244,152],[245,154],[246,152],[238,156],[247,154],[248,157],[249,158],[250,152],[252,159],[253,160],[251,161],[254,162],[255,163],[256,164],[237,165],[257,166],[258,167],[259,168],[236,169],[205,170],[210,171],[206,162],[261,172],[200,173],[262,174],[203,175],[207,176],[235,177],[260,178],[211,179],[234,162],[198,162],[208,180],[202,181],[204,181],[232,182],[199,180],[233,180],[209,183],[213,184],[214,185],[215,183],[216,186],[217,183],[218,164],[219,187],[220,188],[231,189],[222,190],[223,183],[230,191],[224,183],[225,183],[226,164],[227,192],[228,183],[229,164],[221,187],[266,193],[267,164],[268,194],[316,195],[314,196]],"semanticDiagnosticsPerFile":[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,329,328,327,191,321,322,190,324,192,325,326,186,143,184,142,183,182,144,141,145,140,185,331,330,334,332,193,343,346,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,345,337,333,335,336,139,338,339,340,341,342,351,317,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,323,352,353,354,320,50,54,344,350,188,187,348,349,181,319,318,347,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,271,272,269,309,273,307,290,297,289,304,281,280,303,298,301,283,282,278,277,300,279,284,285,288,275,306,305,292,293,295,291,294,299,286,287,296,276,302,270,312,310,311,194,315,355,356,313,308,274,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,316,314],"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.
|
|
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
|
-
|
|
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
|
+
- Supporting Ts and Js for ApexPainter and ApexAI
|
|
14
8
|
|
|
15
9
|
|
|
16
|
-
|
|
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 {
|
|
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 {
|
|
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) => {
|
|
@@ -63,12 +57,12 @@ const options = {
|
|
|
63
57
|
nsfw: false, // Whether to prevent nsfw generated images (true/false)
|
|
64
58
|
};
|
|
65
59
|
|
|
66
|
-
await
|
|
60
|
+
await ApexAI(message, options)
|
|
67
61
|
});
|
|
68
62
|
```
|
|
69
63
|
</details>
|
|
70
64
|
|
|
71
|
-
### Usage in slashcommand or outside discord
|
|
65
|
+
### Usage in slashcommand or outside discord
|
|
72
66
|
|
|
73
67
|
<details>
|
|
74
68
|
|
|
@@ -177,151 +171,185 @@ module.exports = {
|
|
|
177
171
|
///Generating Ai chat
|
|
178
172
|
const response = await ApexChat(model, prompt);/// returns a direct prompt
|
|
179
173
|
```
|
|
174
|
+
|
|
180
175
|
</details>
|
|
176
|
+
|
|
181
177
|
</details>
|
|
182
178
|
|
|
183
179
|
### 📸 Manipulating Images Using Canvas 🎨
|
|
180
|
+
|
|
181
|
+
- Canvas Background configuration.
|
|
182
|
+
- Canvas Images/shapes/custom drawing configuration.
|
|
183
|
+
- Canvas Text on background or image configuration.
|
|
184
|
+
- Canvas Filters: Color/Effects.
|
|
185
|
+
- Canvas Gif: Creating Gif from set of images.
|
|
186
|
+
- Canvas Resizing and Extention Converter for images.
|
|
187
|
+
- Canvas Charts: Creating piechart/barcharts/linecharts using the given set of data.
|
|
188
|
+
|
|
184
189
|
<details>
|
|
185
|
-
Add images, shapes, and effects to images with ease!
|
|
186
190
|
|
|
187
191
|
```js
|
|
188
|
-
const { ApexPainter } = require('apexify.js')
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
const
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
192
|
+
const { ApexPainter } = require('apexify.js'); // cjs module .js
|
|
193
|
+
|
|
194
|
+
// OR
|
|
195
|
+
|
|
196
|
+
import { ApexPainter } from 'apexify.js'; // ES module .mjs or TS
|
|
197
|
+
|
|
198
|
+
const painter = new ApexPainter();
|
|
199
|
+
|
|
200
|
+
// 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.
|
|
201
|
+
|
|
202
|
+
// Creating Background:
|
|
203
|
+
|
|
204
|
+
const canvasBg = {
|
|
205
|
+
width: 800, // Specifies the width of the background.
|
|
206
|
+
height: 600, // Specifies the height of the background.
|
|
207
|
+
x: 100, // Specifies the position of the background on the x-axis.
|
|
208
|
+
y: 50, // Specifies the position of the background on the y-axis.
|
|
209
|
+
customBg: 'https://example.com/image.jpg | ./image.png', // Specifies the URL or local path to the custom background image.
|
|
210
|
+
colorBg: 'blue', // Specifies the background color if no custom background image is provided.
|
|
211
|
+
gradientBg: {
|
|
212
|
+
type: 'linear', // Specifies the type of gradient ('radial' or 'linear').
|
|
213
|
+
startX: 0, // Starting coordinate on the x-axis for the gradient.
|
|
214
|
+
startY: 0, // Starting coordinate on the y-axis for the gradient.
|
|
215
|
+
endX: 800, // Ending coordinate on the x-axis for the gradient.
|
|
216
|
+
endY: 600, // Ending coordinate on the y-axis for the gradient.
|
|
217
|
+
colors: [ // Array of objects specifying color stops and corresponding colors for the gradient.
|
|
218
|
+
{ stop: 0, color: 'red' }, // Red color at the beginning of the gradient (stop: 0).
|
|
219
|
+
{ stop: 0.5, color: 'green' }, // Green color in the middle of the gradient (stop: 0.5).
|
|
220
|
+
{ stop: 1, color: 'blue' } // Blue color at the end of the gradient (stop: 1).
|
|
221
|
+
]
|
|
222
|
+
},
|
|
223
|
+
stroke: {
|
|
224
|
+
color: 'black', // Specifies the color of the stroke.
|
|
225
|
+
width: 2, // Specifies the thickness of the stroke.
|
|
226
|
+
position: 0.5, // Specifies the position of the stroke. As value increase the far it be from background.
|
|
227
|
+
borderRadius: 10 | 'circular' // Specifies the border radius of the stroke, or set it as 'circular' for circular stroke
|
|
228
|
+
},
|
|
229
|
+
shadow: {
|
|
230
|
+
color: 'rgba(0, 0, 0, 0.5)', // Specifies the color of the shadow.
|
|
231
|
+
offsetX: 2, // Specifies the horizontal offset of the shadow.
|
|
232
|
+
offsetY: 2, // Specifies the vertical offset of the shadow.
|
|
233
|
+
blur: 5, // Specifies the blur radius of the shadow.
|
|
234
|
+
opacity: 0.5 // Specifies the opacity of the shadow (0 to 1).
|
|
235
|
+
},
|
|
236
|
+
rotation: 45, // Specifies the rotation angle of the background.
|
|
237
|
+
borderRadius: 20 | 'circular' // Specifies the border radius of the background, or set it as 'circular' for make backgroudn as circle.
|
|
215
238
|
};
|
|
216
239
|
|
|
240
|
+
const background = await painter.createCanvas(canvasBg, __dirname); // Add __dirname if using any local image.
|
|
241
|
+
console.log(background); // Returning a buffer image.
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
// Creating images on canvas:
|
|
217
246
|
|
|
218
|
-
|
|
219
|
-
const images = [
|
|
247
|
+
const images = [
|
|
220
248
|
{
|
|
221
|
-
source: 'square'
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
249
|
+
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.
|
|
250
|
+
|
|
251
|
+
width: 300, // Specifies your image's width.
|
|
252
|
+
height: 200, // Specifies your image's height.
|
|
253
|
+
x: 30, // Specifies your image's position on x axis.
|
|
254
|
+
y: 50, // Specifies your image's position on y axis.
|
|
255
|
+
isFilled: true, // Whether filling your shape or no. Applied if source is a shape name.
|
|
256
|
+
color: '#2e2e2e', // Specifies your shape color. Applied if source is a shape name.
|
|
257
|
+
gradient: { // Specifies your shape gradient color. Applied if source is a shape name.
|
|
258
|
+
type: 'linear', // Specifies the type of gradient ('radial' or 'linear').
|
|
259
|
+
startX: 0, // Starting coordinate on the x-axis for the gradient.
|
|
260
|
+
startY: 0, // Starting coordinate on the y-axis for the gradient.
|
|
261
|
+
endX: 800, // Ending coordinate on the x-axis for the gradient.
|
|
262
|
+
endY: 600, // Ending coordinate on the y-axis for the gradient.
|
|
263
|
+
colors: [ // Array of objects specifying color stops and corresponding colors for the gradient.
|
|
264
|
+
{ stop: 0, color: 'red' }, // Red color at the beginning of the gradient (stop: 0).
|
|
265
|
+
{ stop: 0.5, color: 'green' }, // Green color in the middle of the gradient (stop: 0.5).
|
|
266
|
+
{ stop: 1, color: 'blue' } // Blue color at the end of the gradient (stop: 1).
|
|
267
|
+
]
|
|
268
|
+
},
|
|
269
|
+
rotation: 90, // Specifies whether to add rotation on image. Works in (degree)
|
|
270
|
+
borderRadius: 50 | "circular" , // Specifies your image's border. Either circular, radius border or none
|
|
271
|
+
stroke: {
|
|
272
|
+
color: 'green', // Specifies Stroke color.
|
|
273
|
+
width: 5, // Specifies thickness of the stroke.
|
|
274
|
+
position: 7, // Specifies the position of the stroke. As value increase the far it be from background.
|
|
275
|
+
borderRadius: 50 | "circular" // Specifies the border radius of the background, or set it as 'circular' for make backgroudn as circle.
|
|
235
276
|
},
|
|
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
277
|
shadow: {
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
278
|
+
color: 'rgb(255, 34, 89, 0.6)', // Specifies color of the shadow.
|
|
279
|
+
offsetX: 10, // Specifies postion of the shadow on x axis.
|
|
280
|
+
offsetY: -10, // Specifies postion of the shadow on y axis.
|
|
281
|
+
blur: 10, // Specifies blur of the shadow.
|
|
282
|
+
opacity: 5, // Specifies opacity of the shadow.
|
|
283
|
+
borderRadius: 50 | "circular" // Specifies the border radius of the background, or set it as 'circular' for make backgroudn as circle.
|
|
274
284
|
}
|
|
275
|
-
},
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
// Add other images with its options here.
|
|
288
|
+
},
|
|
276
289
|
];
|
|
277
|
-
////image already got buffered you can send it directly or add text option
|
|
278
|
-
const image = await paintImage.drawImages(images, canvasOptions, __dirname);
|
|
279
290
|
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
291
|
+
// Note: You will need to provide a buffer to draw the images on. Since background returns buffer we use it in this example.
|
|
292
|
+
const image = await painter.createImage(images, background, __dirname); // Add __dirname if using any local image.
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
// Creating Text on canvas:
|
|
297
|
+
|
|
298
|
+
const text = [
|
|
299
|
+
{
|
|
300
|
+
text: 'Hello World', // Specifies your text to add.
|
|
301
|
+
x: 90, // Specifies position of the tex on the x-axis.
|
|
302
|
+
y: 20, // Specifies position of the tex on the y-axis.
|
|
303
|
+
fontPath: './fonts/customFont', // Use your custom fonts if you like.
|
|
304
|
+
fontName: 'fontName', // Add a name to your custom font || default is 'Arial'.
|
|
305
|
+
fontSize: 30, // Text size on image.
|
|
306
|
+
isBold: true, // Add Boldness into the text.
|
|
307
|
+
color: '#00ff00', // Specifies color of the text.
|
|
308
|
+
maxWidth: 30, // Specifies the max width of the text for wrapping.
|
|
309
|
+
lineHeight: 10, // Specifies line height for wrapped text.
|
|
310
|
+
textAlign: 'center', // Specifies text alignment ('center', 'left', 'right', 'start').
|
|
311
|
+
textBaseline: 'alphabatic', // Specifies basline for letter for example (p, y and q make them same y coordinate)
|
|
289
312
|
shadow: {
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
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',
|
|
313
|
+
color: 'white', // Specifies color of the shadow.
|
|
314
|
+
offsetX: 10, // Specifies postion of the shadow on x axis.
|
|
315
|
+
offsetY: -10, // Specifies postion of the shadow on y axis.
|
|
316
|
+
blur: 10, // Specifies blur of the shadow.
|
|
317
|
+
opacity: 5, // Specifies opacity of the shadow.
|
|
318
|
+
},
|
|
307
319
|
stroke: {
|
|
308
|
-
color: 'black',
|
|
309
|
-
width:
|
|
310
|
-
|
|
320
|
+
color: 'black', // Specifies color of the stroke.
|
|
321
|
+
width: 1, // Specifies thickness of the stroke.
|
|
322
|
+
}
|
|
311
323
|
},
|
|
324
|
+
{
|
|
325
|
+
// Add other texts and its options here.
|
|
326
|
+
}
|
|
312
327
|
];
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
328
|
+
|
|
329
|
+
// Note: You will need to provide a buffer to draw the text on. Since image returns buffer we use it in this example.
|
|
330
|
+
const final = await painter.createText(text, image, __dirname); // Add __dirname if using any local custom fonts.
|
|
331
|
+
console.log(final); // Returns a buffer image.
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
// 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.
|
|
335
|
+
|
|
336
|
+
// You can add any image ready you want just buffer it and put it in the constructor to use it.
|
|
316
337
|
```
|
|
317
338
|
</details>
|
|
318
339
|
|
|
340
|
+
## For Further Usage Of ApexPainter
|
|
341
|
+
|
|
342
|
+
- Further Usages: creating charts, custom drawing, and GIF creation using ApexPainter.
|
|
343
|
+
|
|
344
|
+
- Please refer to our documention website for further usages and better explainantions.
|
|
319
345
|
|
|
346
|
+
- Check exmaple folder for charts information and usage.
|
|
320
347
|
|
|
321
348
|
## 📚 More Info & Documentation 📖
|
|
322
349
|
<details>
|
|
323
350
|
|
|
324
|
-
- Explore a detailed list of apexify.js and their usage at our
|
|
351
|
+
- Explore a detailed list of apexify.js and their usage at our
|
|
352
|
+
[Support Server](https://discord.gg/mDyXV9hzXw) or at [jedi-studio](http://apexify.jedi-studio.com).
|
|
325
353
|
|
|
326
354
|
### 🚨 Important Notes 📌
|
|
327
355
|
|
|
@@ -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
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ApexAI.d.ts","sourceRoot":"","sources":["../../lib/ai/ApexAI.ts"],"names":[],"mappings":"AAqBA,UAAU,OAAO;IACb,KAAK,CAAC,EAAE;QACJ,MAAM,CAAC,EAAE,OAAO,CAAC;QACjB,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,MAAM,CAAC,EAAE,MAAM,CAAC;QAChB,IAAI,CAAC,EAAE,MAAM,CAAC;KACjB,CAAC;IACF,OAAO,CAAC,EAAE;QACN,MAAM,CAAC,EAAE,OAAO,CAAC;QACjB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;QACvB,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,WAAW,CAAC,EAAE,MAAM,CAAC;QACrB,IAAI,CAAC,EAAE,OAAO,CAAC;QACf,QAAQ,CAAC,EAAE,OAAO,CAAC;KACtB,CAAC;IACF,IAAI,CAAC,EAAE;QACH,SAAS,CAAC,EAAE,MAAM,CAAC;QACnB,SAAS,CAAC,EAAE,OAAO,CAAC;KACvB,CAAC;IACF,MAAM,CAAC,EAAE;QACL,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;QACpB,gBAAgB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;QAC1C,MAAM,CAAC,EAAE;YACL,cAAc,EAAE,MAAM,CAAC;YACvB,YAAY,EAAE,MAAM,CAAC;SACxB,CAAC;KACL,CAAC;CACL;AAOD,wBAAsB,MAAM,CAAE,OAAO,EAAE,GAAG,EAAE,SAAS,EAAE,OAAO,gBA8M7D;AAED,wBAAsB,SAAS,CAAC,MAAM,EAAE,MAAM,gBAU7C;AAED,wBAAsB,SAAS,CAAC,MAAM,EAAE,MAAM,gBAU7C;AAED,wBAAsB,MAAM,CAAC,MAAM,EAAE,MAAM,gBA2B1C;AAED,wBAAsB,QAAQ,CAAC,MAAM,EAAE,MAAM,gBAsB5C;AAED,wBAAsB,WAAW,CAAC,MAAM,EAAE,MAAM,gBA0B/C"}
|