@bitbar/cloud-api-client 1.5.4 → 1.5.5

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.
@@ -1,12 +1,12 @@
1
1
  import { APIAdminResource } from './APIAdminResource';
2
2
  import { APIList } from './APIList';
3
3
  import { APIResource } from './APIResource';
4
- import { Account, AccountUsage, AccountUsageParams, AccountUsageSummary, AccountUsageSummaryParams } from './models/Account';
5
- import { NoData, NoQueryParams, SimpleCollectionResponse } from './models/HTTP';
4
+ import { Account, AccountData, AccountUsage, AccountUsageParams, AccountUsageSummary, AccountUsageSummaryParams } from './models/Account';
5
+ import { NoQueryParams, SimpleCollectionResponse } from './models/HTTP';
6
6
  import { Role, RoleData, RoleParams } from './models/Role';
7
7
  import { AccountService } from './models/AccountService';
8
8
  import { AccountPreferences } from './models/AccountPreference';
9
- export declare class APIAdminResourceAccount extends APIResource<Account, NoQueryParams, NoData> {
9
+ export declare class APIAdminResourceAccount extends APIResource<Account, NoQueryParams, AccountData> {
10
10
  constructor(parent: APIAdminResource, id: number);
11
11
  roles(): APIList<Role, RoleParams, RoleData>;
12
12
  role(id: number): APIResource<Role, RoleParams, void>;
@@ -52,7 +52,9 @@ export type AccountUsage = {
52
52
  };
53
53
  export type AccountSessionUsage = {
54
54
  createTime: number;
55
+ deviceModelName: string;
55
56
  duration: number;
57
+ osVersion: string;
56
58
  type: SessionUsageType;
57
59
  userId: number;
58
60
  userName: string;
@@ -1,11 +1,11 @@
1
- /* @bitbar/cloud-api-client v1.5.4 | Copyright 2025 (c) SmartBear Software and contributors | .git/blob/master/LICENSE */
1
+ /* @bitbar/cloud-api-client v1.5.5 | Copyright 2025 (c) SmartBear Software and contributors | .git/blob/master/LICENSE */
2
2
  (function (global, factory) {
3
3
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@bitbar/finka'), require('qs'), require('node-abort-controller')) :
4
4
  typeof define === 'function' && define.amd ? define(['exports', '@bitbar/finka', 'qs', 'node-abort-controller'], factory) :
5
5
  (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["bitbar-cloud-api-client"] = {}, global["@bitbar/finka"], global.qs, global["node-abort-controller"]));
6
6
  })(this, (function (exports, finka, qs, nodeAbortController) { 'use strict';
7
7
 
8
- var version = "1.5.4";
8
+ var version = "1.5.5";
9
9
 
10
10
  /******************************************************************************
11
11
  Copyright (c) Microsoft Corporation.