@harnessio/react-sei-panorama-service-client 0.21.0 → 0.21.1

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,24 +1,13 @@
1
- /**
2
- * Response containing daily license usage counts for a specific month
3
- */
4
1
  export interface DailyLicenseUsageResponseDto {
5
- /**
6
- * A mapping of date strings (YYYY-MM-DD) to license counts for each day
7
- * @example {"2025-07-01":42,"2025-07-02":45,"2025-07-03":48,"2025-07-04":41,"2025-07-05":40,"2025-07-06":39,"2025-07-07":50,"2025-07-08":53,"2025-07-09":54}
8
- */
9
2
  dailyCounts?: {
10
3
  [key: string]: number;
11
4
  };
12
5
  /**
13
- * The month for which daily data is provided
14
6
  * @format int32
15
- * @example 7
16
7
  */
17
8
  month?: number;
18
9
  /**
19
- * The year for which daily data is provided
20
10
  * @format int32
21
- * @example 2025
22
11
  */
23
12
  year?: number;
24
13
  }
@@ -1,6 +1,7 @@
1
1
  import type { DataPoint } from '../schemas/DataPoint';
2
2
  import type { Stage } from '../schemas/Stage';
3
3
  export interface DoraLttcMttrMetric {
4
+ basedOn?: 'CD' | 'CI' | 'IM' | 'ITSM' | 'SCM';
4
5
  dataPoints?: DataPoint[];
5
6
  /**
6
7
  * @format date-time
@@ -8,14 +8,6 @@ export interface DrillDownRequest {
8
8
  * @format date-time
9
9
  */
10
10
  dateStart: string;
11
- /**
12
- * @format date-time
13
- */
14
- drillDownEndDate?: string;
15
- /**
16
- * @format date-time
17
- */
18
- drillDownStartDate?: string;
19
11
  /**
20
12
  * @format int32
21
13
  */
@@ -22,6 +22,12 @@ export interface MinimalTeamHierarchyResponseDto {
22
22
  groupedFilters?: {
23
23
  [key: string]: TeamFilter[];
24
24
  };
25
+ /**
26
+ * Count of cloud IDs associated with Developers in the team for IM integration mapped to team
27
+ * @format int32
28
+ * @example []
29
+ */
30
+ imCloudIdCount?: number;
25
31
  /**
26
32
  * List of integrations associated with the team
27
33
  * @example []
@@ -48,4 +54,10 @@ export interface MinimalTeamHierarchyResponseDto {
48
54
  * @example 1073741824
49
55
  */
50
56
  refId?: number;
57
+ /**
58
+ * Count of cloud IDs associated with Developers in the team for SCM integration mapped to team
59
+ * @format int32
60
+ * @example []
61
+ */
62
+ scmCloudIdCount?: number;
51
63
  }
@@ -1,11 +1,4 @@
1
- /**
2
- * Response containing monthly license usage counts
3
- */
4
1
  export interface MonthlyLicenseUsageResponseDto {
5
- /**
6
- * A mapping of month strings (YYYY-MM) to maximum license counts for each month
7
- * @example {"2024-08":45,"2024-09":52,"2024-10":53,"2024-11":48,"2024-12":50,"2025-01":55,"2025-02":58,"2025-03":60,"2025-04":62,"2025-05":63,"2025-06":65,"2025-07":67}
8
- */
9
2
  monthlyCounts?: {
10
3
  [key: string]: number;
11
4
  };
@@ -1,5 +1,6 @@
1
1
  import type { MttrDataPoint } from '../schemas/MttrDataPoint';
2
2
  export interface MttrMetric {
3
+ basedOn?: 'CD' | 'CI' | 'IM' | 'ITSM' | 'SCM';
3
4
  dataPoints?: MttrDataPoint[];
4
5
  /**
5
6
  * @format date-time
@@ -1,5 +1,5 @@
1
1
  export interface TeamFilter {
2
- applicableMetrics?: Array<'CFR' | 'DF' | 'LTTC' | 'MTTR' | 'PRODUCTIVITY'>;
2
+ applicableMetrics?: Array<'BA' | 'CFR' | 'DF' | 'LTTC' | 'MTTR' | 'PRODUCTIVITY'>;
3
3
  filterKey?: 'CODE_AREA' | 'DEPLOYMENT_TYPE' | 'ENV_ID' | 'INFRA_ID' | 'ISSUE_PRIORITY' | 'ISSUE_STATUS' | 'ISSUE_TYPE' | 'LABEL' | 'PIPELINE_NAME' | 'PIPELINE_STATUS' | 'PROJECT' | 'REPO' | 'ROLLBACK' | 'SCM_LABEL' | 'SCM_PROJECT' | 'SERVICE_NAME' | 'SOURCE_BRANCH' | 'SPRINT_NAME' | 'STAGE_NAME' | 'STATUS' | 'TAGS' | 'TARGET_BRANCH' | 'TEAM';
4
4
  /**
5
5
  * @format int32
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-sei-panorama-service-client",
3
- "version": "0.21.0",
3
+ "version": "0.21.1",
4
4
  "description": "Harness React sei panorama service client - SEI Panorama APIs integrated with react hooks for Panorama project",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",