@nirvana-labs/nirvana 1.54.1 → 1.55.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 +10 -0
- package/package.json +1 -1
- package/resources/organizations/organizations.d.mts +34 -8
- package/resources/organizations/organizations.d.mts.map +1 -1
- package/resources/organizations/organizations.d.ts +34 -8
- package/resources/organizations/organizations.d.ts.map +1 -1
- package/src/resources/organizations/api.md +1 -1
- package/src/resources/organizations/organizations.ts +42 -9
- 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,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.55.0 (2026-03-09)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.54.1...v1.55.0](https://github.com/nirvana-labs/nirvana-typescript/compare/v1.54.1...v1.55.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([9e083b5](https://github.com/nirvana-labs/nirvana-typescript/commit/9e083b5adc82bc8cd3018b17893b5b1d705ff904))
|
|
10
|
+
* **api:** api update ([e40bd67](https://github.com/nirvana-labs/nirvana-typescript/commit/e40bd67a1016febf72ae444df6af117cb6ffe5c0))
|
|
11
|
+
* **api:** api update ([748945c](https://github.com/nirvana-labs/nirvana-typescript/commit/748945c50bb50bd27d7110cce36f83f2385e11c9))
|
|
12
|
+
|
|
3
13
|
## 1.54.1 (2026-03-07)
|
|
4
14
|
|
|
5
15
|
Full Changelog: [v1.54.0...v1.54.1](https://github.com/nirvana-labs/nirvana-typescript/compare/v1.54.0...v1.54.1)
|
package/package.json
CHANGED
|
@@ -72,6 +72,10 @@ export interface Organization {
|
|
|
72
72
|
* When the Organization was created.
|
|
73
73
|
*/
|
|
74
74
|
created_at: string;
|
|
75
|
+
/**
|
|
76
|
+
* Domains associated with the organization.
|
|
77
|
+
*/
|
|
78
|
+
domains: Array<OrganizationDomain>;
|
|
75
79
|
/**
|
|
76
80
|
* Current user's membership details.
|
|
77
81
|
*/
|
|
@@ -87,7 +91,7 @@ export interface Organization {
|
|
|
87
91
|
/**
|
|
88
92
|
* Services that the Organization has access to.
|
|
89
93
|
*/
|
|
90
|
-
services: Services;
|
|
94
|
+
services: Organization.Services;
|
|
91
95
|
/**
|
|
92
96
|
* When the Organization was updated.
|
|
93
97
|
*/
|
|
@@ -97,6 +101,34 @@ export interface Organization {
|
|
|
97
101
|
*/
|
|
98
102
|
auth_id?: string;
|
|
99
103
|
}
|
|
104
|
+
export declare namespace Organization {
|
|
105
|
+
/**
|
|
106
|
+
* Services that the Organization has access to.
|
|
107
|
+
*/
|
|
108
|
+
interface Services {
|
|
109
|
+
cloud: boolean;
|
|
110
|
+
scim: boolean;
|
|
111
|
+
siem: boolean;
|
|
112
|
+
sso: boolean;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
/**
|
|
116
|
+
* Organization domain details.
|
|
117
|
+
*/
|
|
118
|
+
export interface OrganizationDomain {
|
|
119
|
+
/**
|
|
120
|
+
* Domain ID.
|
|
121
|
+
*/
|
|
122
|
+
id: string;
|
|
123
|
+
/**
|
|
124
|
+
* Domain name.
|
|
125
|
+
*/
|
|
126
|
+
domain: string;
|
|
127
|
+
/**
|
|
128
|
+
* Whether the domain has been verified.
|
|
129
|
+
*/
|
|
130
|
+
verified: boolean;
|
|
131
|
+
}
|
|
100
132
|
export interface OrganizationList {
|
|
101
133
|
items: Array<Organization>;
|
|
102
134
|
/**
|
|
@@ -117,12 +149,6 @@ export interface OrganizationMembership {
|
|
|
117
149
|
*/
|
|
118
150
|
role: 'owner' | 'member';
|
|
119
151
|
}
|
|
120
|
-
/**
|
|
121
|
-
* Services that the Organization has access to.
|
|
122
|
-
*/
|
|
123
|
-
export interface Services {
|
|
124
|
-
cloud?: boolean;
|
|
125
|
-
}
|
|
126
152
|
export interface OrganizationCreateParams {
|
|
127
153
|
/**
|
|
128
154
|
* Organization name.
|
|
@@ -138,6 +164,6 @@ export interface OrganizationUpdateParams {
|
|
|
138
164
|
export interface OrganizationListParams extends CursorParams {
|
|
139
165
|
}
|
|
140
166
|
export declare namespace Organizations {
|
|
141
|
-
export { type Organization as Organization, type
|
|
167
|
+
export { type Organization as Organization, type OrganizationDomain as OrganizationDomain, type OrganizationList as OrganizationList, type OrganizationMembership as OrganizationMembership, type OrganizationsCursor as OrganizationsCursor, type OrganizationCreateParams as OrganizationCreateParams, type OrganizationUpdateParams as OrganizationUpdateParams, type OrganizationListParams as OrganizationListParams, };
|
|
142
168
|
}
|
|
143
169
|
//# sourceMappingURL=organizations.d.mts.map
|
|
@@ -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,UAAU,EAAE,sBAAsB,CAAC;IAEnC;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,QAAQ,EAAE,OAAO,CAAC;IAElB;;OAEG;IACH,QAAQ,EAAE,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"organizations.d.mts","sourceRoot":"","sources":["../../src/resources/organizations/organizations.ts"],"names":[],"mappings":"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"}
|
|
@@ -72,6 +72,10 @@ export interface Organization {
|
|
|
72
72
|
* When the Organization was created.
|
|
73
73
|
*/
|
|
74
74
|
created_at: string;
|
|
75
|
+
/**
|
|
76
|
+
* Domains associated with the organization.
|
|
77
|
+
*/
|
|
78
|
+
domains: Array<OrganizationDomain>;
|
|
75
79
|
/**
|
|
76
80
|
* Current user's membership details.
|
|
77
81
|
*/
|
|
@@ -87,7 +91,7 @@ export interface Organization {
|
|
|
87
91
|
/**
|
|
88
92
|
* Services that the Organization has access to.
|
|
89
93
|
*/
|
|
90
|
-
services: Services;
|
|
94
|
+
services: Organization.Services;
|
|
91
95
|
/**
|
|
92
96
|
* When the Organization was updated.
|
|
93
97
|
*/
|
|
@@ -97,6 +101,34 @@ export interface Organization {
|
|
|
97
101
|
*/
|
|
98
102
|
auth_id?: string;
|
|
99
103
|
}
|
|
104
|
+
export declare namespace Organization {
|
|
105
|
+
/**
|
|
106
|
+
* Services that the Organization has access to.
|
|
107
|
+
*/
|
|
108
|
+
interface Services {
|
|
109
|
+
cloud: boolean;
|
|
110
|
+
scim: boolean;
|
|
111
|
+
siem: boolean;
|
|
112
|
+
sso: boolean;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
/**
|
|
116
|
+
* Organization domain details.
|
|
117
|
+
*/
|
|
118
|
+
export interface OrganizationDomain {
|
|
119
|
+
/**
|
|
120
|
+
* Domain ID.
|
|
121
|
+
*/
|
|
122
|
+
id: string;
|
|
123
|
+
/**
|
|
124
|
+
* Domain name.
|
|
125
|
+
*/
|
|
126
|
+
domain: string;
|
|
127
|
+
/**
|
|
128
|
+
* Whether the domain has been verified.
|
|
129
|
+
*/
|
|
130
|
+
verified: boolean;
|
|
131
|
+
}
|
|
100
132
|
export interface OrganizationList {
|
|
101
133
|
items: Array<Organization>;
|
|
102
134
|
/**
|
|
@@ -117,12 +149,6 @@ export interface OrganizationMembership {
|
|
|
117
149
|
*/
|
|
118
150
|
role: 'owner' | 'member';
|
|
119
151
|
}
|
|
120
|
-
/**
|
|
121
|
-
* Services that the Organization has access to.
|
|
122
|
-
*/
|
|
123
|
-
export interface Services {
|
|
124
|
-
cloud?: boolean;
|
|
125
|
-
}
|
|
126
152
|
export interface OrganizationCreateParams {
|
|
127
153
|
/**
|
|
128
154
|
* Organization name.
|
|
@@ -138,6 +164,6 @@ export interface OrganizationUpdateParams {
|
|
|
138
164
|
export interface OrganizationListParams extends CursorParams {
|
|
139
165
|
}
|
|
140
166
|
export declare namespace Organizations {
|
|
141
|
-
export { type Organization as Organization, type
|
|
167
|
+
export { type Organization as Organization, type OrganizationDomain as OrganizationDomain, type OrganizationList as OrganizationList, type OrganizationMembership as OrganizationMembership, type OrganizationsCursor as OrganizationsCursor, type OrganizationCreateParams as OrganizationCreateParams, type OrganizationUpdateParams as OrganizationUpdateParams, type OrganizationListParams as OrganizationListParams, };
|
|
142
168
|
}
|
|
143
169
|
//# sourceMappingURL=organizations.d.ts.map
|
|
@@ -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,UAAU,EAAE,sBAAsB,CAAC;IAEnC;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,QAAQ,EAAE,OAAO,CAAC;IAElB;;OAEG;IACH,QAAQ,EAAE,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"organizations.d.ts","sourceRoot":"","sources":["../../src/resources/organizations/organizations.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
Types:
|
|
4
4
|
|
|
5
5
|
- <code><a href="./src/resources/organizations.ts">Organization</a></code>
|
|
6
|
+
- <code><a href="./src/resources/organizations.ts">OrganizationDomain</a></code>
|
|
6
7
|
- <code><a href="./src/resources/organizations.ts">OrganizationList</a></code>
|
|
7
8
|
- <code><a href="./src/resources/organizations.ts">OrganizationMembership</a></code>
|
|
8
|
-
- <code><a href="./src/resources/organizations.ts">Services</a></code>
|
|
9
9
|
|
|
10
10
|
Methods:
|
|
11
11
|
|
|
@@ -105,6 +105,11 @@ export interface Organization {
|
|
|
105
105
|
*/
|
|
106
106
|
created_at: string;
|
|
107
107
|
|
|
108
|
+
/**
|
|
109
|
+
* Domains associated with the organization.
|
|
110
|
+
*/
|
|
111
|
+
domains: Array<OrganizationDomain>;
|
|
112
|
+
|
|
108
113
|
/**
|
|
109
114
|
* Current user's membership details.
|
|
110
115
|
*/
|
|
@@ -123,7 +128,7 @@ export interface Organization {
|
|
|
123
128
|
/**
|
|
124
129
|
* Services that the Organization has access to.
|
|
125
130
|
*/
|
|
126
|
-
services: Services;
|
|
131
|
+
services: Organization.Services;
|
|
127
132
|
|
|
128
133
|
/**
|
|
129
134
|
* When the Organization was updated.
|
|
@@ -136,6 +141,41 @@ export interface Organization {
|
|
|
136
141
|
auth_id?: string;
|
|
137
142
|
}
|
|
138
143
|
|
|
144
|
+
export namespace Organization {
|
|
145
|
+
/**
|
|
146
|
+
* Services that the Organization has access to.
|
|
147
|
+
*/
|
|
148
|
+
export interface Services {
|
|
149
|
+
cloud: boolean;
|
|
150
|
+
|
|
151
|
+
scim: boolean;
|
|
152
|
+
|
|
153
|
+
siem: boolean;
|
|
154
|
+
|
|
155
|
+
sso: boolean;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
/**
|
|
160
|
+
* Organization domain details.
|
|
161
|
+
*/
|
|
162
|
+
export interface OrganizationDomain {
|
|
163
|
+
/**
|
|
164
|
+
* Domain ID.
|
|
165
|
+
*/
|
|
166
|
+
id: string;
|
|
167
|
+
|
|
168
|
+
/**
|
|
169
|
+
* Domain name.
|
|
170
|
+
*/
|
|
171
|
+
domain: string;
|
|
172
|
+
|
|
173
|
+
/**
|
|
174
|
+
* Whether the domain has been verified.
|
|
175
|
+
*/
|
|
176
|
+
verified: boolean;
|
|
177
|
+
}
|
|
178
|
+
|
|
139
179
|
export interface OrganizationList {
|
|
140
180
|
items: Array<Organization>;
|
|
141
181
|
|
|
@@ -160,13 +200,6 @@ export interface OrganizationMembership {
|
|
|
160
200
|
role: 'owner' | 'member';
|
|
161
201
|
}
|
|
162
202
|
|
|
163
|
-
/**
|
|
164
|
-
* Services that the Organization has access to.
|
|
165
|
-
*/
|
|
166
|
-
export interface Services {
|
|
167
|
-
cloud?: boolean;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
203
|
export interface OrganizationCreateParams {
|
|
171
204
|
/**
|
|
172
205
|
* Organization name.
|
|
@@ -186,9 +219,9 @@ export interface OrganizationListParams extends CursorParams {}
|
|
|
186
219
|
export declare namespace Organizations {
|
|
187
220
|
export {
|
|
188
221
|
type Organization as Organization,
|
|
222
|
+
type OrganizationDomain as OrganizationDomain,
|
|
189
223
|
type OrganizationList as OrganizationList,
|
|
190
224
|
type OrganizationMembership as OrganizationMembership,
|
|
191
|
-
type Services as Services,
|
|
192
225
|
type OrganizationsCursor as OrganizationsCursor,
|
|
193
226
|
type OrganizationCreateParams as OrganizationCreateParams,
|
|
194
227
|
type OrganizationUpdateParams as OrganizationUpdateParams,
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '1.
|
|
1
|
+
export const VERSION = '1.55.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.55.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.55.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.55.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|