@bitbar/cloud-api-client 1.4.7 → 1.4.8

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.
@@ -7,7 +7,6 @@ export declare class APIResourceUserSession extends APIResource {
7
7
  login(data: LoginData): APIResource<User, NoQueryParams, LoginData>;
8
8
  logout(): APIResource<any, import("./models/HTTP").QueryParams, import("./models/HTTP").QueryParams>;
9
9
  sso(name: string): APIResource<any, import("./models/HTTP").QueryParams, import("./models/HTTP").QueryParams>;
10
- portalLogin(): APIResource<any, import("./models/HTTP").QueryParams, import("./models/HTTP").QueryParams>;
11
10
  sbidCallbackUrl(): string;
12
11
  }
13
12
  export default APIResourceUserSession;
@@ -1,11 +1,11 @@
1
- /* @bitbar/cloud-api-client v1.4.7 | Copyright 2025 (c) SmartBear Software and contributors | .git/blob/master/LICENSE */
1
+ /* @bitbar/cloud-api-client v1.4.8 | 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.4.7";
8
+ var version = "1.4.8";
9
9
 
10
10
  /******************************************************************************
11
11
  Copyright (c) Microsoft Corporation.
@@ -1784,9 +1784,6 @@
1784
1784
  sso(name) {
1785
1785
  return new APIResource(this).push('oauth', 'authorize', name + '-login');
1786
1786
  }
1787
- portalLogin() {
1788
- return new APIResource(this).push('portal-login').post();
1789
- }
1790
1787
  sbidCallbackUrl() {
1791
1788
  return new APIResource(this).push('oauth', 'authorize', 'sbid-login').toUrl(true);
1792
1789
  }