@bodhiapp/ts-client 0.1.18 → 0.1.19

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.
@@ -1585,6 +1585,7 @@ export interface components {
1585
1585
  * "commit_sha": "abc1234",
1586
1586
  * "deployment": "standalone",
1587
1587
  * "status": "ready",
1588
+ * "url": "https://example.com",
1588
1589
  * "version": "0.1.0"
1589
1590
  * }
1590
1591
  */
@@ -1608,6 +1609,11 @@ export interface components {
1608
1609
  * @example my-client-id
1609
1610
  */
1610
1611
  client_id?: string | null;
1612
+ /**
1613
+ * @description Public URL of the server
1614
+ * @example https://example.com
1615
+ */
1616
+ url: string;
1611
1617
  };
1612
1618
  AppRole: components["schemas"]["ResourceRole"] | components["schemas"]["TokenScope"] | components["schemas"]["UserScope"];
1613
1619
  /**
@@ -3493,6 +3499,7 @@ export interface components {
3493
3499
  client_id: string;
3494
3500
  name: string;
3495
3501
  description?: string | null;
3502
+ status: components["schemas"]["AppStatus"];
3496
3503
  is_active: boolean;
3497
3504
  logged_in: boolean;
3498
3505
  };
@@ -5820,6 +5827,7 @@ export interface operations {
5820
5827
  * "commit_sha": "abc1234",
5821
5828
  * "deployment": "standalone",
5822
5829
  * "status": "ready",
5830
+ * "url": "https://example.com",
5823
5831
  * "version": "0.1.0"
5824
5832
  * } */
5825
5833
  "application/json": components["schemas"]["AppInfo"];
@@ -1586,6 +1586,7 @@ export interface components {
1586
1586
  * "commit_sha": "abc1234",
1587
1587
  * "deployment": "standalone",
1588
1588
  * "status": "ready",
1589
+ * "url": "https://example.com",
1589
1590
  * "version": "0.1.0"
1590
1591
  * }
1591
1592
  */
@@ -1609,6 +1610,11 @@ export interface components {
1609
1610
  * @example my-client-id
1610
1611
  */
1611
1612
  client_id?: string | null;
1613
+ /**
1614
+ * @description Public URL of the server
1615
+ * @example https://example.com
1616
+ */
1617
+ url: string;
1612
1618
  };
1613
1619
  AppRole: components["schemas"]["ResourceRole"] | components["schemas"]["TokenScope"] | components["schemas"]["UserScope"];
1614
1620
  /**
@@ -3494,6 +3500,7 @@ export interface components {
3494
3500
  client_id: string;
3495
3501
  name: string;
3496
3502
  description?: string | null;
3503
+ status: components["schemas"]["AppStatus"];
3497
3504
  is_active: boolean;
3498
3505
  logged_in: boolean;
3499
3506
  };
@@ -5821,6 +5828,7 @@ export interface operations {
5821
5828
  * "commit_sha": "abc1234",
5822
5829
  * "deployment": "standalone",
5823
5830
  * "status": "ready",
5831
+ * "url": "https://example.com",
5824
5832
  * "version": "0.1.0"
5825
5833
  * } */
5826
5834
  "application/json": components["schemas"]["AppInfo"];
@@ -215,6 +215,10 @@ export type AppInfo = {
215
215
  * Active tenant's OAuth client_id (present when authenticated with an active tenant)
216
216
  */
217
217
  client_id?: string | null;
218
+ /**
219
+ * Public URL of the server
220
+ */
221
+ url: string;
218
222
  };
219
223
  export type AppRole = ResourceRole | TokenScope | UserScope;
220
224
  export type AppStatus = 'setup' | 'ready' | 'resource_admin' | 'tenant_selection';
@@ -2217,6 +2221,7 @@ export type TenantListItem = {
2217
2221
  client_id: string;
2218
2222
  name: string;
2219
2223
  description?: string | null;
2224
+ status: AppStatus;
2220
2225
  is_active: boolean;
2221
2226
  logged_in: boolean;
2222
2227
  };
@@ -231,6 +231,10 @@ export type AppInfo = {
231
231
  * Active tenant's OAuth client_id (present when authenticated with an active tenant)
232
232
  */
233
233
  client_id?: string | null;
234
+ /**
235
+ * Public URL of the server
236
+ */
237
+ url: string;
234
238
  };
235
239
 
236
240
  export type AppRole = ResourceRole | TokenScope | UserScope;
@@ -2428,6 +2432,7 @@ export type TenantListItem = {
2428
2432
  client_id: string;
2429
2433
  name: string;
2430
2434
  description?: string | null;
2435
+ status: AppStatus;
2431
2436
  is_active: boolean;
2432
2437
  logged_in: boolean;
2433
2438
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bodhiapp/ts-client",
3
- "version": "0.1.18",
3
+ "version": "0.1.19",
4
4
  "description": "TypeScript types for Bodhi API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",