@nirvana-labs/nirvana 1.32.0 → 1.33.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/CHANGELOG.md +8 -0
- package/package.json +1 -1
- package/resources/api-keys.d.mts +12 -12
- package/resources/api-keys.d.ts +12 -12
- package/src/resources/api-keys.ts +12 -12
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.33.0 (2025-12-27)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.32.0...v1.33.0](https://github.com/nirvana-labs/nirvana-typescript/compare/v1.32.0...v1.33.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([46b43fb](https://github.com/nirvana-labs/nirvana-typescript/commit/46b43fb39c21b2f5e12c0a174fc3e5b8284a15f5))
|
|
10
|
+
|
|
3
11
|
## 1.32.0 (2025-12-25)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.31.1...v1.32.0](https://github.com/nirvana-labs/nirvana-typescript/compare/v1.31.1...v1.32.0)
|
package/package.json
CHANGED
package/resources/api-keys.d.mts
CHANGED
|
@@ -78,7 +78,7 @@ export interface APIKey {
|
|
|
78
78
|
*/
|
|
79
79
|
name: string;
|
|
80
80
|
/**
|
|
81
|
-
* IP filter
|
|
81
|
+
* IP filter rules.
|
|
82
82
|
*/
|
|
83
83
|
source_ip_rule: APIKey.SourceIPRule;
|
|
84
84
|
/**
|
|
@@ -104,15 +104,15 @@ export interface APIKey {
|
|
|
104
104
|
}
|
|
105
105
|
export declare namespace APIKey {
|
|
106
106
|
/**
|
|
107
|
-
* IP filter
|
|
107
|
+
* IP filter rules.
|
|
108
108
|
*/
|
|
109
109
|
interface SourceIPRule {
|
|
110
110
|
/**
|
|
111
|
-
* List of IPv4
|
|
111
|
+
* List of IPv4 CIDR addresses to allow.
|
|
112
112
|
*/
|
|
113
113
|
allowed: Array<string>;
|
|
114
114
|
/**
|
|
115
|
-
* List of IPv4
|
|
115
|
+
* List of IPv4 CIDR addresses to deny.
|
|
116
116
|
*/
|
|
117
117
|
blocked: Array<string>;
|
|
118
118
|
}
|
|
@@ -134,7 +134,7 @@ export interface APIKeyCreateParams {
|
|
|
134
134
|
*/
|
|
135
135
|
name: string;
|
|
136
136
|
/**
|
|
137
|
-
* IP filter
|
|
137
|
+
* IP filter rules.
|
|
138
138
|
*/
|
|
139
139
|
source_ip_rule?: APIKeyCreateParams.SourceIPRule;
|
|
140
140
|
/**
|
|
@@ -148,15 +148,15 @@ export interface APIKeyCreateParams {
|
|
|
148
148
|
}
|
|
149
149
|
export declare namespace APIKeyCreateParams {
|
|
150
150
|
/**
|
|
151
|
-
* IP filter
|
|
151
|
+
* IP filter rules.
|
|
152
152
|
*/
|
|
153
153
|
interface SourceIPRule {
|
|
154
154
|
/**
|
|
155
|
-
* List of IPv4
|
|
155
|
+
* List of IPv4 CIDR addresses to allow.
|
|
156
156
|
*/
|
|
157
157
|
allowed?: Array<string>;
|
|
158
158
|
/**
|
|
159
|
-
* List of IPv4
|
|
159
|
+
* List of IPv4 CIDR addresses to deny.
|
|
160
160
|
*/
|
|
161
161
|
blocked?: Array<string>;
|
|
162
162
|
}
|
|
@@ -167,7 +167,7 @@ export interface APIKeyUpdateParams {
|
|
|
167
167
|
*/
|
|
168
168
|
name?: string;
|
|
169
169
|
/**
|
|
170
|
-
* IP filter
|
|
170
|
+
* IP filter rules.
|
|
171
171
|
*/
|
|
172
172
|
source_ip_rule?: APIKeyUpdateParams.SourceIPRule;
|
|
173
173
|
/**
|
|
@@ -177,15 +177,15 @@ export interface APIKeyUpdateParams {
|
|
|
177
177
|
}
|
|
178
178
|
export declare namespace APIKeyUpdateParams {
|
|
179
179
|
/**
|
|
180
|
-
* IP filter
|
|
180
|
+
* IP filter rules.
|
|
181
181
|
*/
|
|
182
182
|
interface SourceIPRule {
|
|
183
183
|
/**
|
|
184
|
-
* List of IPv4
|
|
184
|
+
* List of IPv4 CIDR addresses to allow.
|
|
185
185
|
*/
|
|
186
186
|
allowed?: Array<string>;
|
|
187
187
|
/**
|
|
188
|
-
* List of IPv4
|
|
188
|
+
* List of IPv4 CIDR addresses to deny.
|
|
189
189
|
*/
|
|
190
190
|
blocked?: Array<string>;
|
|
191
191
|
}
|
package/resources/api-keys.d.ts
CHANGED
|
@@ -78,7 +78,7 @@ export interface APIKey {
|
|
|
78
78
|
*/
|
|
79
79
|
name: string;
|
|
80
80
|
/**
|
|
81
|
-
* IP filter
|
|
81
|
+
* IP filter rules.
|
|
82
82
|
*/
|
|
83
83
|
source_ip_rule: APIKey.SourceIPRule;
|
|
84
84
|
/**
|
|
@@ -104,15 +104,15 @@ export interface APIKey {
|
|
|
104
104
|
}
|
|
105
105
|
export declare namespace APIKey {
|
|
106
106
|
/**
|
|
107
|
-
* IP filter
|
|
107
|
+
* IP filter rules.
|
|
108
108
|
*/
|
|
109
109
|
interface SourceIPRule {
|
|
110
110
|
/**
|
|
111
|
-
* List of IPv4
|
|
111
|
+
* List of IPv4 CIDR addresses to allow.
|
|
112
112
|
*/
|
|
113
113
|
allowed: Array<string>;
|
|
114
114
|
/**
|
|
115
|
-
* List of IPv4
|
|
115
|
+
* List of IPv4 CIDR addresses to deny.
|
|
116
116
|
*/
|
|
117
117
|
blocked: Array<string>;
|
|
118
118
|
}
|
|
@@ -134,7 +134,7 @@ export interface APIKeyCreateParams {
|
|
|
134
134
|
*/
|
|
135
135
|
name: string;
|
|
136
136
|
/**
|
|
137
|
-
* IP filter
|
|
137
|
+
* IP filter rules.
|
|
138
138
|
*/
|
|
139
139
|
source_ip_rule?: APIKeyCreateParams.SourceIPRule;
|
|
140
140
|
/**
|
|
@@ -148,15 +148,15 @@ export interface APIKeyCreateParams {
|
|
|
148
148
|
}
|
|
149
149
|
export declare namespace APIKeyCreateParams {
|
|
150
150
|
/**
|
|
151
|
-
* IP filter
|
|
151
|
+
* IP filter rules.
|
|
152
152
|
*/
|
|
153
153
|
interface SourceIPRule {
|
|
154
154
|
/**
|
|
155
|
-
* List of IPv4
|
|
155
|
+
* List of IPv4 CIDR addresses to allow.
|
|
156
156
|
*/
|
|
157
157
|
allowed?: Array<string>;
|
|
158
158
|
/**
|
|
159
|
-
* List of IPv4
|
|
159
|
+
* List of IPv4 CIDR addresses to deny.
|
|
160
160
|
*/
|
|
161
161
|
blocked?: Array<string>;
|
|
162
162
|
}
|
|
@@ -167,7 +167,7 @@ export interface APIKeyUpdateParams {
|
|
|
167
167
|
*/
|
|
168
168
|
name?: string;
|
|
169
169
|
/**
|
|
170
|
-
* IP filter
|
|
170
|
+
* IP filter rules.
|
|
171
171
|
*/
|
|
172
172
|
source_ip_rule?: APIKeyUpdateParams.SourceIPRule;
|
|
173
173
|
/**
|
|
@@ -177,15 +177,15 @@ export interface APIKeyUpdateParams {
|
|
|
177
177
|
}
|
|
178
178
|
export declare namespace APIKeyUpdateParams {
|
|
179
179
|
/**
|
|
180
|
-
* IP filter
|
|
180
|
+
* IP filter rules.
|
|
181
181
|
*/
|
|
182
182
|
interface SourceIPRule {
|
|
183
183
|
/**
|
|
184
|
-
* List of IPv4
|
|
184
|
+
* List of IPv4 CIDR addresses to allow.
|
|
185
185
|
*/
|
|
186
186
|
allowed?: Array<string>;
|
|
187
187
|
/**
|
|
188
|
-
* List of IPv4
|
|
188
|
+
* List of IPv4 CIDR addresses to deny.
|
|
189
189
|
*/
|
|
190
190
|
blocked?: Array<string>;
|
|
191
191
|
}
|
|
@@ -109,7 +109,7 @@ export interface APIKey {
|
|
|
109
109
|
name: string;
|
|
110
110
|
|
|
111
111
|
/**
|
|
112
|
-
* IP filter
|
|
112
|
+
* IP filter rules.
|
|
113
113
|
*/
|
|
114
114
|
source_ip_rule: APIKey.SourceIPRule;
|
|
115
115
|
|
|
@@ -141,16 +141,16 @@ export interface APIKey {
|
|
|
141
141
|
|
|
142
142
|
export namespace APIKey {
|
|
143
143
|
/**
|
|
144
|
-
* IP filter
|
|
144
|
+
* IP filter rules.
|
|
145
145
|
*/
|
|
146
146
|
export interface SourceIPRule {
|
|
147
147
|
/**
|
|
148
|
-
* List of IPv4
|
|
148
|
+
* List of IPv4 CIDR addresses to allow.
|
|
149
149
|
*/
|
|
150
150
|
allowed: Array<string>;
|
|
151
151
|
|
|
152
152
|
/**
|
|
153
|
-
* List of IPv4
|
|
153
|
+
* List of IPv4 CIDR addresses to deny.
|
|
154
154
|
*/
|
|
155
155
|
blocked: Array<string>;
|
|
156
156
|
}
|
|
@@ -177,7 +177,7 @@ export interface APIKeyCreateParams {
|
|
|
177
177
|
name: string;
|
|
178
178
|
|
|
179
179
|
/**
|
|
180
|
-
* IP filter
|
|
180
|
+
* IP filter rules.
|
|
181
181
|
*/
|
|
182
182
|
source_ip_rule?: APIKeyCreateParams.SourceIPRule;
|
|
183
183
|
|
|
@@ -194,16 +194,16 @@ export interface APIKeyCreateParams {
|
|
|
194
194
|
|
|
195
195
|
export namespace APIKeyCreateParams {
|
|
196
196
|
/**
|
|
197
|
-
* IP filter
|
|
197
|
+
* IP filter rules.
|
|
198
198
|
*/
|
|
199
199
|
export interface SourceIPRule {
|
|
200
200
|
/**
|
|
201
|
-
* List of IPv4
|
|
201
|
+
* List of IPv4 CIDR addresses to allow.
|
|
202
202
|
*/
|
|
203
203
|
allowed?: Array<string>;
|
|
204
204
|
|
|
205
205
|
/**
|
|
206
|
-
* List of IPv4
|
|
206
|
+
* List of IPv4 CIDR addresses to deny.
|
|
207
207
|
*/
|
|
208
208
|
blocked?: Array<string>;
|
|
209
209
|
}
|
|
@@ -216,7 +216,7 @@ export interface APIKeyUpdateParams {
|
|
|
216
216
|
name?: string;
|
|
217
217
|
|
|
218
218
|
/**
|
|
219
|
-
* IP filter
|
|
219
|
+
* IP filter rules.
|
|
220
220
|
*/
|
|
221
221
|
source_ip_rule?: APIKeyUpdateParams.SourceIPRule;
|
|
222
222
|
|
|
@@ -228,16 +228,16 @@ export interface APIKeyUpdateParams {
|
|
|
228
228
|
|
|
229
229
|
export namespace APIKeyUpdateParams {
|
|
230
230
|
/**
|
|
231
|
-
* IP filter
|
|
231
|
+
* IP filter rules.
|
|
232
232
|
*/
|
|
233
233
|
export interface SourceIPRule {
|
|
234
234
|
/**
|
|
235
|
-
* List of IPv4
|
|
235
|
+
* List of IPv4 CIDR addresses to allow.
|
|
236
236
|
*/
|
|
237
237
|
allowed?: Array<string>;
|
|
238
238
|
|
|
239
239
|
/**
|
|
240
|
-
* List of IPv4
|
|
240
|
+
* List of IPv4 CIDR addresses to deny.
|
|
241
241
|
*/
|
|
242
242
|
blocked?: Array<string>;
|
|
243
243
|
}
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '1.
|
|
1
|
+
export const VERSION = '1.33.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "1.
|
|
1
|
+
export declare const VERSION = "1.33.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "1.
|
|
1
|
+
export declare const VERSION = "1.33.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '1.
|
|
1
|
+
export const VERSION = '1.33.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|