Skip to content

Commit c0d3304

Browse files
Merge pull request #523 from marisuch/master
SDCB-14886: Extend DeviceCleanupConfiguration model
2 parents 86b4a01 + 6b29aaa commit c0d3304

10 files changed

Lines changed: 44 additions & 47 deletions
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { DeviceCleanupConfiguration } from './Device';
2-
export type CleanupConfigurationData = Pick<DeviceCleanupConfiguration, 'content' | 'discriminator' | 'enabled' | 'osType'>;
2+
export type CleanupConfigurationData = Pick<DeviceCleanupConfiguration, 'content' | 'discriminator' | 'enabled' | 'osType' | 'description'>;
33
export interface SpecificCleanupConfigurationQueryParams {
44
serialId: string;
55
}

dist/api/models/Device.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ export type DeviceCleanupConfiguration = {
7373
createTime: number;
7474
createdByEmail: string;
7575
createdById: number;
76+
description: string;
7677
discriminator: string;
7778
enabled: boolean;
7879
global: boolean;

dist/bitbar-cloud-api-client.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/bitbar-cloud-api-client.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/bitbar-cloud-api-client.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/bitbar-cloud-api-client.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 33 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bitbar/cloud-api-client",
3-
"version": "1.4.4",
3+
"version": "1.4.5",
44
"description": "Bitbar Cloud API Client for JavaScript",
55
"main": "dist/bitbar-cloud-api-client.min.js",
66
"types": "dist/index.d.ts",

src/api/models/CleanupConfiguration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {DeviceCleanupConfiguration} from './Device';
22

33

4-
export type CleanupConfigurationData = Pick<DeviceCleanupConfiguration, 'content' | 'discriminator' | 'enabled' | 'osType'>;
4+
export type CleanupConfigurationData = Pick<DeviceCleanupConfiguration, 'content' | 'discriminator' | 'enabled' | 'osType' | 'description'>;
55

66
export interface SpecificCleanupConfigurationQueryParams {
77
serialId: string;

src/api/models/Device.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ export type DeviceCleanupConfiguration = {
8282
createTime: number;
8383
createdByEmail: string;
8484
createdById: number;
85+
description: string;
8586
discriminator: string;
8687
enabled: boolean;
8788
global: boolean;

0 commit comments

Comments
 (0)