Skip to content

Commit cd00b24

Browse files
Merge pull request #571 from marisuch/master
SDCB-14134: Project model type update
2 parents 2a300c2 + 688afc4 commit cd00b24

8 files changed

Lines changed: 11 additions & 11 deletions

dist/api/models/Project.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export declare enum ArchivingStrategy {
66
RUNS = "RUNS"
77
}
88
export type Project = {
9-
archiveTime: number;
9+
archiveTime: number | null;
1010
archivingItemCount: number;
1111
archivingStrategy: ArchivingStrategy;
1212
common: 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: 2 additions & 2 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.7.0",
3+
"version": "1.7.1",
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/Project.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export enum ArchivingStrategy {
88
}
99

1010
export type Project = {
11-
archiveTime: number;
11+
archiveTime: number | null;
1212
archivingItemCount: number;
1313
archivingStrategy: ArchivingStrategy;
1414
common: boolean;

0 commit comments

Comments
 (0)