@nirvana-labs/nirvana 1.62.0 → 1.63.1
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 +18 -0
- package/package.json +1 -1
- package/resources/organizations/organizations.d.mts +16 -32
- package/resources/organizations/organizations.d.mts.map +1 -1
- package/resources/organizations/organizations.d.ts +16 -32
- package/resources/organizations/organizations.d.ts.map +1 -1
- package/src/resources/organizations/organizations.ts +17 -36
- 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,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.63.1 (2026-03-28)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.63.0...v1.63.1](https://github.com/nirvana-labs/nirvana-typescript/compare/v1.63.0...v1.63.1)
|
|
6
|
+
|
|
7
|
+
### Chores
|
|
8
|
+
|
|
9
|
+
* **ci:** escape input path in publish-npm workflow ([e0312ae](https://github.com/nirvana-labs/nirvana-typescript/commit/e0312aead23824cbdf7545b54fff9cf44d31c79f))
|
|
10
|
+
* **internal:** support local docs search in MCP servers ([2201cc9](https://github.com/nirvana-labs/nirvana-typescript/commit/2201cc9a9975d0eb5af5c64baf710a2177fea2fd))
|
|
11
|
+
* remove custom code ([98c2c4e](https://github.com/nirvana-labs/nirvana-typescript/commit/98c2c4e30441c5560d4ea8dc299fd5376756f9e3))
|
|
12
|
+
|
|
13
|
+
## 1.63.0 (2026-03-27)
|
|
14
|
+
|
|
15
|
+
Full Changelog: [v1.62.0...v1.63.0](https://github.com/nirvana-labs/nirvana-typescript/compare/v1.62.0...v1.63.0)
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **api:** api update ([5ae485e](https://github.com/nirvana-labs/nirvana-typescript/commit/5ae485e42e8636ced54f522964175c45ead3c9f7))
|
|
20
|
+
|
|
3
21
|
## 1.62.0 (2026-03-27)
|
|
4
22
|
|
|
5
23
|
Full Changelog: [v1.61.0...v1.62.0](https://github.com/nirvana-labs/nirvana-typescript/compare/v1.61.0...v1.62.0)
|
package/package.json
CHANGED
|
@@ -92,10 +92,6 @@ export interface Organization {
|
|
|
92
92
|
* Services that the Organization has access to.
|
|
93
93
|
*/
|
|
94
94
|
services: OrganizationServices;
|
|
95
|
-
/**
|
|
96
|
-
* Organization settings.
|
|
97
|
-
*/
|
|
98
|
-
settings: Organization.Settings;
|
|
99
95
|
/**
|
|
100
96
|
* When the Organization was updated.
|
|
101
97
|
*/
|
|
@@ -105,17 +101,6 @@ export interface Organization {
|
|
|
105
101
|
*/
|
|
106
102
|
auth_id?: string;
|
|
107
103
|
}
|
|
108
|
-
export declare namespace Organization {
|
|
109
|
-
/**
|
|
110
|
-
* Organization settings.
|
|
111
|
-
*/
|
|
112
|
-
interface Settings {
|
|
113
|
-
/**
|
|
114
|
-
* Whether just-in-time provisioning is enabled for the organization.
|
|
115
|
-
*/
|
|
116
|
-
jit_provisioning: boolean;
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
104
|
/**
|
|
120
105
|
* Organization domain details.
|
|
121
106
|
*/
|
|
@@ -157,9 +142,25 @@ export interface OrganizationMembership {
|
|
|
157
142
|
* Services that the Organization has access to.
|
|
158
143
|
*/
|
|
159
144
|
export interface OrganizationServices {
|
|
145
|
+
/**
|
|
146
|
+
* Whether cloud services are enabled for the organization.
|
|
147
|
+
*/
|
|
160
148
|
cloud: boolean;
|
|
149
|
+
/**
|
|
150
|
+
* Whether just-in-time provisioning is enabled for the organization.
|
|
151
|
+
*/
|
|
152
|
+
jit_provisioning: boolean;
|
|
153
|
+
/**
|
|
154
|
+
* Whether SCIM provisioning is enabled for the organization.
|
|
155
|
+
*/
|
|
161
156
|
scim: boolean;
|
|
157
|
+
/**
|
|
158
|
+
* Whether SIEM integration is enabled for the organization.
|
|
159
|
+
*/
|
|
162
160
|
siem: boolean;
|
|
161
|
+
/**
|
|
162
|
+
* Whether single sign-on is enabled for the organization.
|
|
163
|
+
*/
|
|
163
164
|
sso: boolean;
|
|
164
165
|
}
|
|
165
166
|
export interface OrganizationCreateParams {
|
|
@@ -173,23 +174,6 @@ export interface OrganizationUpdateParams {
|
|
|
173
174
|
* Organization name.
|
|
174
175
|
*/
|
|
175
176
|
name?: string;
|
|
176
|
-
/**
|
|
177
|
-
* Organization settings.
|
|
178
|
-
*/
|
|
179
|
-
settings?: OrganizationUpdateParams.Settings;
|
|
180
|
-
}
|
|
181
|
-
export declare namespace OrganizationUpdateParams {
|
|
182
|
-
/**
|
|
183
|
-
* Organization settings.
|
|
184
|
-
*/
|
|
185
|
-
interface Settings {
|
|
186
|
-
/**
|
|
187
|
-
* Whether JIT provisioning is enabled. When enabled, users with SSO access are
|
|
188
|
-
* automatically added to the organization on first login. When disabled, users
|
|
189
|
-
* must be invited.
|
|
190
|
-
*/
|
|
191
|
-
jit_provisioning?: boolean;
|
|
192
|
-
}
|
|
193
177
|
}
|
|
194
178
|
export interface OrganizationListParams extends CursorParams {
|
|
195
179
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"organizations.d.mts","sourceRoot":"","sources":["../../src/resources/organizations/organizations.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,KAAK,MAAM;OACX,EAAE,UAAU,EAAE;OACd,EAAE,MAAM,EAAE,KAAK,YAAY,EAAE,WAAW,EAAE;OAE1C,EAAE,cAAc,EAAE;AAGzB,qBAAa,aAAc,SAAQ,WAAW;IAC5C;;;;;;;;;OASG;IACH,MAAM,CAAC,IAAI,EAAE,wBAAwB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,YAAY,CAAC;IAI1F;;;;;;;;;OASG;IACH,MAAM,CACJ,cAAc,EAAE,MAAM,EACtB,IAAI,EAAE,wBAAwB,EAC9B,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,YAAY,CAAC;IAI3B;;;;;;;;;;OAUG;IACH,IAAI,CACF,KAAK,GAAE,sBAAsB,GAAG,IAAI,GAAG,SAAc,EACrD,OAAO,CAAC,EAAE,cAAc,GACvB,WAAW,CAAC,mBAAmB,EAAE,YAAY,CAAC;IAIjD;;;;;;;;;OASG;IACH,GAAG,CAAC,cAAc,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,YAAY,CAAC;IAI/E;;;;;;;OAOG;IACH,KAAK,CAAC,cAAc,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,IAAI,CAAC;CAM1E;AAED,MAAM,MAAM,mBAAmB,GAAG,MAAM,CAAC,YAAY,CAAC,CAAC;AAEvD;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,OAAO,EAAE,KAAK,CAAC,kBAAkB,CAAC,CAAC;IAEnC;;OAEG;IACH,UAAU,EAAE,sBAAsB,CAAC;IAEnC;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,QAAQ,EAAE,OAAO,CAAC;IAElB;;OAEG;IACH,QAAQ,EAAE,oBAAoB,CAAC;IAE/B;;OAEG;IACH,
|
|
1
|
+
{"version":3,"file":"organizations.d.mts","sourceRoot":"","sources":["../../src/resources/organizations/organizations.ts"],"names":[],"mappings":"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"}
|
|
@@ -92,10 +92,6 @@ export interface Organization {
|
|
|
92
92
|
* Services that the Organization has access to.
|
|
93
93
|
*/
|
|
94
94
|
services: OrganizationServices;
|
|
95
|
-
/**
|
|
96
|
-
* Organization settings.
|
|
97
|
-
*/
|
|
98
|
-
settings: Organization.Settings;
|
|
99
95
|
/**
|
|
100
96
|
* When the Organization was updated.
|
|
101
97
|
*/
|
|
@@ -105,17 +101,6 @@ export interface Organization {
|
|
|
105
101
|
*/
|
|
106
102
|
auth_id?: string;
|
|
107
103
|
}
|
|
108
|
-
export declare namespace Organization {
|
|
109
|
-
/**
|
|
110
|
-
* Organization settings.
|
|
111
|
-
*/
|
|
112
|
-
interface Settings {
|
|
113
|
-
/**
|
|
114
|
-
* Whether just-in-time provisioning is enabled for the organization.
|
|
115
|
-
*/
|
|
116
|
-
jit_provisioning: boolean;
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
104
|
/**
|
|
120
105
|
* Organization domain details.
|
|
121
106
|
*/
|
|
@@ -157,9 +142,25 @@ export interface OrganizationMembership {
|
|
|
157
142
|
* Services that the Organization has access to.
|
|
158
143
|
*/
|
|
159
144
|
export interface OrganizationServices {
|
|
145
|
+
/**
|
|
146
|
+
* Whether cloud services are enabled for the organization.
|
|
147
|
+
*/
|
|
160
148
|
cloud: boolean;
|
|
149
|
+
/**
|
|
150
|
+
* Whether just-in-time provisioning is enabled for the organization.
|
|
151
|
+
*/
|
|
152
|
+
jit_provisioning: boolean;
|
|
153
|
+
/**
|
|
154
|
+
* Whether SCIM provisioning is enabled for the organization.
|
|
155
|
+
*/
|
|
161
156
|
scim: boolean;
|
|
157
|
+
/**
|
|
158
|
+
* Whether SIEM integration is enabled for the organization.
|
|
159
|
+
*/
|
|
162
160
|
siem: boolean;
|
|
161
|
+
/**
|
|
162
|
+
* Whether single sign-on is enabled for the organization.
|
|
163
|
+
*/
|
|
163
164
|
sso: boolean;
|
|
164
165
|
}
|
|
165
166
|
export interface OrganizationCreateParams {
|
|
@@ -173,23 +174,6 @@ export interface OrganizationUpdateParams {
|
|
|
173
174
|
* Organization name.
|
|
174
175
|
*/
|
|
175
176
|
name?: string;
|
|
176
|
-
/**
|
|
177
|
-
* Organization settings.
|
|
178
|
-
*/
|
|
179
|
-
settings?: OrganizationUpdateParams.Settings;
|
|
180
|
-
}
|
|
181
|
-
export declare namespace OrganizationUpdateParams {
|
|
182
|
-
/**
|
|
183
|
-
* Organization settings.
|
|
184
|
-
*/
|
|
185
|
-
interface Settings {
|
|
186
|
-
/**
|
|
187
|
-
* Whether JIT provisioning is enabled. When enabled, users with SSO access are
|
|
188
|
-
* automatically added to the organization on first login. When disabled, users
|
|
189
|
-
* must be invited.
|
|
190
|
-
*/
|
|
191
|
-
jit_provisioning?: boolean;
|
|
192
|
-
}
|
|
193
177
|
}
|
|
194
178
|
export interface OrganizationListParams extends CursorParams {
|
|
195
179
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"organizations.d.ts","sourceRoot":"","sources":["../../src/resources/organizations/organizations.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,KAAK,MAAM;OACX,EAAE,UAAU,EAAE;OACd,EAAE,MAAM,EAAE,KAAK,YAAY,EAAE,WAAW,EAAE;OAE1C,EAAE,cAAc,EAAE;AAGzB,qBAAa,aAAc,SAAQ,WAAW;IAC5C;;;;;;;;;OASG;IACH,MAAM,CAAC,IAAI,EAAE,wBAAwB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,YAAY,CAAC;IAI1F;;;;;;;;;OASG;IACH,MAAM,CACJ,cAAc,EAAE,MAAM,EACtB,IAAI,EAAE,wBAAwB,EAC9B,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,YAAY,CAAC;IAI3B;;;;;;;;;;OAUG;IACH,IAAI,CACF,KAAK,GAAE,sBAAsB,GAAG,IAAI,GAAG,SAAc,EACrD,OAAO,CAAC,EAAE,cAAc,GACvB,WAAW,CAAC,mBAAmB,EAAE,YAAY,CAAC;IAIjD;;;;;;;;;OASG;IACH,GAAG,CAAC,cAAc,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,YAAY,CAAC;IAI/E;;;;;;;OAOG;IACH,KAAK,CAAC,cAAc,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,IAAI,CAAC;CAM1E;AAED,MAAM,MAAM,mBAAmB,GAAG,MAAM,CAAC,YAAY,CAAC,CAAC;AAEvD;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,OAAO,EAAE,KAAK,CAAC,kBAAkB,CAAC,CAAC;IAEnC;;OAEG;IACH,UAAU,EAAE,sBAAsB,CAAC;IAEnC;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,QAAQ,EAAE,OAAO,CAAC;IAElB;;OAEG;IACH,QAAQ,EAAE,oBAAoB,CAAC;IAE/B;;OAEG;IACH,
|
|
1
|
+
{"version":3,"file":"organizations.d.ts","sourceRoot":"","sources":["../../src/resources/organizations/organizations.ts"],"names":[],"mappings":"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"}
|
|
@@ -130,11 +130,6 @@ export interface Organization {
|
|
|
130
130
|
*/
|
|
131
131
|
services: OrganizationServices;
|
|
132
132
|
|
|
133
|
-
/**
|
|
134
|
-
* Organization settings.
|
|
135
|
-
*/
|
|
136
|
-
settings: Organization.Settings;
|
|
137
|
-
|
|
138
133
|
/**
|
|
139
134
|
* When the Organization was updated.
|
|
140
135
|
*/
|
|
@@ -146,18 +141,6 @@ export interface Organization {
|
|
|
146
141
|
auth_id?: string;
|
|
147
142
|
}
|
|
148
143
|
|
|
149
|
-
export namespace Organization {
|
|
150
|
-
/**
|
|
151
|
-
* Organization settings.
|
|
152
|
-
*/
|
|
153
|
-
export interface Settings {
|
|
154
|
-
/**
|
|
155
|
-
* Whether just-in-time provisioning is enabled for the organization.
|
|
156
|
-
*/
|
|
157
|
-
jit_provisioning: boolean;
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
|
|
161
144
|
/**
|
|
162
145
|
* Organization domain details.
|
|
163
146
|
*/
|
|
@@ -206,12 +189,29 @@ export interface OrganizationMembership {
|
|
|
206
189
|
* Services that the Organization has access to.
|
|
207
190
|
*/
|
|
208
191
|
export interface OrganizationServices {
|
|
192
|
+
/**
|
|
193
|
+
* Whether cloud services are enabled for the organization.
|
|
194
|
+
*/
|
|
209
195
|
cloud: boolean;
|
|
210
196
|
|
|
197
|
+
/**
|
|
198
|
+
* Whether just-in-time provisioning is enabled for the organization.
|
|
199
|
+
*/
|
|
200
|
+
jit_provisioning: boolean;
|
|
201
|
+
|
|
202
|
+
/**
|
|
203
|
+
* Whether SCIM provisioning is enabled for the organization.
|
|
204
|
+
*/
|
|
211
205
|
scim: boolean;
|
|
212
206
|
|
|
207
|
+
/**
|
|
208
|
+
* Whether SIEM integration is enabled for the organization.
|
|
209
|
+
*/
|
|
213
210
|
siem: boolean;
|
|
214
211
|
|
|
212
|
+
/**
|
|
213
|
+
* Whether single sign-on is enabled for the organization.
|
|
214
|
+
*/
|
|
215
215
|
sso: boolean;
|
|
216
216
|
}
|
|
217
217
|
|
|
@@ -227,25 +227,6 @@ export interface OrganizationUpdateParams {
|
|
|
227
227
|
* Organization name.
|
|
228
228
|
*/
|
|
229
229
|
name?: string;
|
|
230
|
-
|
|
231
|
-
/**
|
|
232
|
-
* Organization settings.
|
|
233
|
-
*/
|
|
234
|
-
settings?: OrganizationUpdateParams.Settings;
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
export namespace OrganizationUpdateParams {
|
|
238
|
-
/**
|
|
239
|
-
* Organization settings.
|
|
240
|
-
*/
|
|
241
|
-
export interface Settings {
|
|
242
|
-
/**
|
|
243
|
-
* Whether JIT provisioning is enabled. When enabled, users with SSO access are
|
|
244
|
-
* automatically added to the organization on first login. When disabled, users
|
|
245
|
-
* must be invited.
|
|
246
|
-
*/
|
|
247
|
-
jit_provisioning?: boolean;
|
|
248
|
-
}
|
|
249
230
|
}
|
|
250
231
|
|
|
251
232
|
export interface OrganizationListParams extends CursorParams {}
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '1.
|
|
1
|
+
export const VERSION = '1.63.1'; // 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.63.1";
|
|
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.63.1";
|
|
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.63.1'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|