@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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nirvana-labs/nirvana",
3
- "version": "1.32.0",
3
+ "version": "1.33.0",
4
4
  "description": "The official TypeScript library for the Nirvana Labs API",
5
5
  "author": "Nirvana Labs <engineering@nirvanalabs.io>",
6
6
  "types": "./index.d.ts",
@@ -78,7 +78,7 @@ export interface APIKey {
78
78
  */
79
79
  name: string;
80
80
  /**
81
- * IP filter configuration for the API Key.
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 configuration for the API Key.
107
+ * IP filter rules.
108
108
  */
109
109
  interface SourceIPRule {
110
110
  /**
111
- * List of IPv4/IPv6 CIDR addresses to allow.
111
+ * List of IPv4 CIDR addresses to allow.
112
112
  */
113
113
  allowed: Array<string>;
114
114
  /**
115
- * List of IPv4/IPv6 CIDR addresses to deny.
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 configuration for the API Key.
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 configuration for the API Key.
151
+ * IP filter rules.
152
152
  */
153
153
  interface SourceIPRule {
154
154
  /**
155
- * List of IPv4/IPv6 CIDR addresses to allow.
155
+ * List of IPv4 CIDR addresses to allow.
156
156
  */
157
157
  allowed?: Array<string>;
158
158
  /**
159
- * List of IPv4/IPv6 CIDR addresses to deny.
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 configuration for the API Key.
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 configuration for the API Key.
180
+ * IP filter rules.
181
181
  */
182
182
  interface SourceIPRule {
183
183
  /**
184
- * List of IPv4/IPv6 CIDR addresses to allow.
184
+ * List of IPv4 CIDR addresses to allow.
185
185
  */
186
186
  allowed?: Array<string>;
187
187
  /**
188
- * List of IPv4/IPv6 CIDR addresses to deny.
188
+ * List of IPv4 CIDR addresses to deny.
189
189
  */
190
190
  blocked?: Array<string>;
191
191
  }
@@ -78,7 +78,7 @@ export interface APIKey {
78
78
  */
79
79
  name: string;
80
80
  /**
81
- * IP filter configuration for the API Key.
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 configuration for the API Key.
107
+ * IP filter rules.
108
108
  */
109
109
  interface SourceIPRule {
110
110
  /**
111
- * List of IPv4/IPv6 CIDR addresses to allow.
111
+ * List of IPv4 CIDR addresses to allow.
112
112
  */
113
113
  allowed: Array<string>;
114
114
  /**
115
- * List of IPv4/IPv6 CIDR addresses to deny.
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 configuration for the API Key.
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 configuration for the API Key.
151
+ * IP filter rules.
152
152
  */
153
153
  interface SourceIPRule {
154
154
  /**
155
- * List of IPv4/IPv6 CIDR addresses to allow.
155
+ * List of IPv4 CIDR addresses to allow.
156
156
  */
157
157
  allowed?: Array<string>;
158
158
  /**
159
- * List of IPv4/IPv6 CIDR addresses to deny.
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 configuration for the API Key.
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 configuration for the API Key.
180
+ * IP filter rules.
181
181
  */
182
182
  interface SourceIPRule {
183
183
  /**
184
- * List of IPv4/IPv6 CIDR addresses to allow.
184
+ * List of IPv4 CIDR addresses to allow.
185
185
  */
186
186
  allowed?: Array<string>;
187
187
  /**
188
- * List of IPv4/IPv6 CIDR addresses to deny.
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 configuration for the API Key.
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 configuration for the API Key.
144
+ * IP filter rules.
145
145
  */
146
146
  export interface SourceIPRule {
147
147
  /**
148
- * List of IPv4/IPv6 CIDR addresses to allow.
148
+ * List of IPv4 CIDR addresses to allow.
149
149
  */
150
150
  allowed: Array<string>;
151
151
 
152
152
  /**
153
- * List of IPv4/IPv6 CIDR addresses to deny.
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 configuration for the API Key.
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 configuration for the API Key.
197
+ * IP filter rules.
198
198
  */
199
199
  export interface SourceIPRule {
200
200
  /**
201
- * List of IPv4/IPv6 CIDR addresses to allow.
201
+ * List of IPv4 CIDR addresses to allow.
202
202
  */
203
203
  allowed?: Array<string>;
204
204
 
205
205
  /**
206
- * List of IPv4/IPv6 CIDR addresses to deny.
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 configuration for the API Key.
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 configuration for the API Key.
231
+ * IP filter rules.
232
232
  */
233
233
  export interface SourceIPRule {
234
234
  /**
235
- * List of IPv4/IPv6 CIDR addresses to allow.
235
+ * List of IPv4 CIDR addresses to allow.
236
236
  */
237
237
  allowed?: Array<string>;
238
238
 
239
239
  /**
240
- * List of IPv4/IPv6 CIDR addresses to deny.
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.32.0'; // x-release-please-version
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.32.0";
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.32.0";
1
+ export declare const VERSION = "1.33.0";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '1.32.0'; // x-release-please-version
4
+ exports.VERSION = '1.33.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '1.32.0'; // x-release-please-version
1
+ export const VERSION = '1.33.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map