@bitbar/cloud-api-client 1.0.22 → 1.0.23
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/dist/api/APIResourceUser.d.ts +1 -1
- package/dist/api/admin.d.ts +44 -0
- package/dist/api/index.d.ts +6 -0
- package/dist/api/lists.d.ts +22 -0
- package/dist/api/resources.d.ts +46 -0
- package/dist/bitbar-cloud-api-client.js +2 -2
- package/dist/bitbar-cloud-api-client.js.map +1 -1
- package/dist/bitbar-cloud-api-client.min.js +2 -2
- package/dist/bitbar-cloud-api-client.min.js.map +1 -1
- package/dist/index.d.ts +2 -8
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,11 +1,5 @@
|
|
|
1
1
|
import CloudAPIClient from './CloudAPIClient';
|
|
2
|
-
import { APIResource as OriginAPIResource } from './api/APIResource';
|
|
3
|
-
import { APIList as OriginAPIList } from './api/APIList';
|
|
4
|
-
import { APIEntity as OriginAPIEntity } from './api/APIEntity';
|
|
5
|
-
export * from './models';
|
|
6
|
-
export * from './api/class';
|
|
7
2
|
export * from './CloudAPIClient';
|
|
8
|
-
export
|
|
9
|
-
export
|
|
10
|
-
export declare type APIList = InstanceType<typeof OriginAPIList>;
|
|
3
|
+
export * from './api/index';
|
|
4
|
+
export * from './models';
|
|
11
5
|
export default CloudAPIClient;
|