@pelican.ts/sdk 0.4.14 → 0.4.15

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/CHANGELOG.md ADDED
@@ -0,0 +1,127 @@
1
+ ## 0.4.15
2
+ ## What's Changed
3
+ ### 📦 Other changes
4
+ - (fix) Application API container docker_labels field
5
+
6
+ ## 0.4.14
7
+ ## What's Changed
8
+ ### 📦 Other changes
9
+ - (feat) BREAKING: Changed new Client API keys delete route
10
+ - (chore) fixed ci and autoreleaser
11
+
12
+
13
+ ## 0.4.13
14
+ ## What's Changed
15
+ ### 📦 Other changes
16
+ - (fix) Fixed migration endpoint types
17
+
18
+ ## 0.4.12
19
+ ## What's Changed
20
+ ### 📦 Other changes
21
+ - (chore) Fixed GitHub workflow
22
+ - (fix) Fixed IP Alias field
23
+
24
+ ## 0.4.11
25
+ ## What's Changed
26
+ ### 📦 Other changes
27
+ - (fix) Fixed UpdatedStartupSchema
28
+ - (fix) Fixed changeDockerImage
29
+
30
+ ## 0.4.9
31
+ ## What's Changed
32
+ ### 📦 Other changes
33
+ - (chore) Applied biome formatting for consistency
34
+ - (fix) Fixed files directory context
35
+
36
+ ## 0.4.8
37
+ ## What's Changed
38
+ ### 📦 Other changes
39
+ - (feat) BREAKING: Removed deprecated 2fa routes
40
+
41
+ ## 0.4.6
42
+
43
+ 0.4.1-0.4.5 were sacrificed to release gods
44
+
45
+ ## What's Changed
46
+ ### ✨ New Features
47
+ - (feat) Added server file bulk actions (compress, rename, delete)
48
+
49
+ ### 📦 Other changes
50
+ - (feat) Export humane classes
51
+ - (fix) Fixed file compress return
52
+ - (fix) Added missing methods from ServerBackup
53
+ - (chore) Updated README to add examples and description
54
+
55
+ ## 0.4.0
56
+ ## What's Changed
57
+ ### ✨ New Features
58
+ - (new) New stateful "humane client", api is moved into `@pelican.ts/sdk/api`
59
+ - (feat) Added support for editing Docker labels via application API (doesn't supported at upstream)
60
+ - (feat) Added support for editing user api keys via application API (doesn't supported at upstream)
61
+
62
+ ### 📦 Other changes
63
+ - (fix) Server subusers invalid types
64
+ - (fix) Fixed server environment type in CreateServerSchema
65
+ - (fix) User list servers endpoint is incorrect
66
+ - (fix) Fixed egg types and exported egg endpoint
67
+ - (chore) Added biome formatter/linter
68
+
69
+ ## 0.3.2
70
+
71
+ 0.3.1 was sacrificed to release gods
72
+
73
+ ## What's Changed
74
+ ### 📦 Other changes
75
+ - Fix typos
76
+ - Updated .npmignore
77
+
78
+ ## What's Changed
79
+ ### ✨ New Features
80
+ - Application API eggs endpoints
81
+ - Application API mounts endpoints
82
+
83
+ ## 0.3.0
84
+ ## What's Changed
85
+ ### ✨ New Features
86
+ - Application API eggs endpoints
87
+ - Application API mounts endpoints
88
+
89
+ ## 0.2.5
90
+ ## What's Changed
91
+ ### ✨ New Features
92
+ - Created `@pelican.ts/sdk/types` subpackage
93
+
94
+ ## 0.2.4
95
+ ## What's Changed
96
+ ### ✨ New Features
97
+ - Application API database host endpoints
98
+ - Application API roles endpoints
99
+
100
+ ### 📦 Other changes
101
+ - Fix typos
102
+
103
+ ## 0.2.3
104
+
105
+ 0.2.2 was sacrificed to release gods
106
+
107
+ ## What's Changed
108
+ ### ✨ New Features
109
+ - Application API account endpoints
110
+ - Application API nodes endpoints
111
+ - Application API allocations endpoints
112
+ - Application API servers endpoints
113
+ - Application API server databases endpoints
114
+
115
+ ### 📦 Other changes
116
+ - Fixed compatibility with Pelican (allocation and node types)
117
+
118
+ ## 0.2.1
119
+ ## What's Changed
120
+ ### 📦 Other changes
121
+ - Added MIT license
122
+ - Updated logo
123
+
124
+ ## 0.2.0
125
+ ## What's Changed
126
+ ### ✨ New Features
127
+ - Initial NPM release
@@ -559,6 +559,7 @@ type Container = {
559
559
  startup_command: string;
560
560
  image: string;
561
561
  installed: number;
562
+ docker_labels: Record<string, string>;
562
563
  environment: Record<string, string>;
563
564
  ports: number[];
564
565
  volumes: string[];
@@ -573,7 +574,6 @@ type ApplicationServer = {
573
574
  name: string;
574
575
  description: string;
575
576
  status: Nullable<unknown>;
576
- docker_labels: Record<string, string>;
577
577
  suspended: boolean;
578
578
  limits: ServerLimits;
579
579
  feature_limits: FeatureLimits;
@@ -559,6 +559,7 @@ type Container = {
559
559
  startup_command: string;
560
560
  image: string;
561
561
  installed: number;
562
+ docker_labels: Record<string, string>;
562
563
  environment: Record<string, string>;
563
564
  ports: number[];
564
565
  volumes: string[];
@@ -573,7 +574,6 @@ type ApplicationServer = {
573
574
  name: string;
574
575
  description: string;
575
576
  status: Nullable<unknown>;
576
- docker_labels: Record<string, string>;
577
577
  suspended: boolean;
578
578
  limits: ServerLimits;
579
579
  feature_limits: FeatureLimits;
package/dist/types.d.ts CHANGED
@@ -723,6 +723,7 @@ type Container = {
723
723
  startup_command: string;
724
724
  image: string;
725
725
  installed: number;
726
+ docker_labels: Record<string, string>;
726
727
  environment: Record<string, string>;
727
728
  ports: number[];
728
729
  volumes: string[];
@@ -737,7 +738,6 @@ type ApplicationServer = {
737
738
  name: string;
738
739
  description: string;
739
740
  status: Nullable<unknown>;
740
- docker_labels: Record<string, string>;
741
741
  suspended: boolean;
742
742
  limits: ServerLimits;
743
743
  feature_limits: FeatureLimits;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pelican.ts/sdk",
3
- "version": "0.4.14",
3
+ "version": "0.4.15",
4
4
  "description": "Pelican panel SDK for TypeScript",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",