@pelican.ts/sdk 0.2.1 → 0.2.3
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/.github/logo.png +0 -0
- package/.idea/Pterodactyl.ts.iml +12 -0
- package/.idea/discord.xml +14 -0
- package/.idea/modules.xml +8 -0
- package/.idea/vcs.xml +6 -0
- package/README.md +1 -1
- package/dist/index.d.mts +661 -0
- package/dist/index.d.ts +661 -0
- package/dist/index.js +1055 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +1017 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +3 -3
- package/bun.lock +0 -159
package/.github/logo.png
CHANGED
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="WEB_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager">
|
|
4
|
+
<content url="file://$MODULE_DIR$">
|
|
5
|
+
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
|
|
6
|
+
<excludeFolder url="file://$MODULE_DIR$/temp" />
|
|
7
|
+
<excludeFolder url="file://$MODULE_DIR$/tmp" />
|
|
8
|
+
</content>
|
|
9
|
+
<orderEntry type="inheritedJdk" />
|
|
10
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
11
|
+
</component>
|
|
12
|
+
</module>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="DiscordProjectSettings">
|
|
4
|
+
<option name="show" value="ASK" />
|
|
5
|
+
<option name="description" value="" />
|
|
6
|
+
<option name="applicationTheme" value="default" />
|
|
7
|
+
<option name="iconsTheme" value="default" />
|
|
8
|
+
<option name="button1Title" value="" />
|
|
9
|
+
<option name="button1Url" value="" />
|
|
10
|
+
<option name="button2Title" value="" />
|
|
11
|
+
<option name="button2Url" value="" />
|
|
12
|
+
<option name="customApplicationId" value="" />
|
|
13
|
+
</component>
|
|
14
|
+
</project>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ProjectModuleManager">
|
|
4
|
+
<modules>
|
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/Pterodactyl.ts.iml" filepath="$PROJECT_DIR$/.idea/Pterodactyl.ts.iml" />
|
|
6
|
+
</modules>
|
|
7
|
+
</component>
|
|
8
|
+
</project>
|
package/.idea/vcs.xml
ADDED
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ npm install @pelican.ts/sdk
|
|
|
12
12
|
## Usage
|
|
13
13
|
```ts
|
|
14
14
|
import { PelicanClient } from "@pelican.ts/sdk"
|
|
15
|
-
const client = new PelicanClient("https://
|
|
15
|
+
const client = new PelicanClient("https://demo.pelican.dev", "token")
|
|
16
16
|
|
|
17
17
|
const main = async () => {
|
|
18
18
|
const servers = await client.listServers()
|