@harnessio/react-sei-panorama-service-client 0.25.0 → 0.25.2
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/sei-panorama-service/src/services/hooks/{useAiInsightsControllerGetDailyActiveUsersDrilldownMutation.d.ts → useAiInsightsControllerGetDailyActiveUsersDrilldownQuery.d.ts} +5 -5
- package/dist/sei-panorama-service/src/services/hooks/{useAiInsightsControllerGetDailyActiveUsersDrilldownMutation.js → useAiInsightsControllerGetDailyActiveUsersDrilldownQuery.js} +3 -3
- package/dist/sei-panorama-service/src/services/hooks/{useAiSummaryControllerGenerateSummaryMutation.d.ts → useAiSummaryControllerGenerateSummaryQuery.d.ts} +5 -5
- package/dist/sei-panorama-service/src/services/hooks/{useAiSummaryControllerGenerateSummaryMutation.js → useAiSummaryControllerGenerateSummaryQuery.js} +3 -3
- package/dist/sei-panorama-service/src/services/hooks/useDeveloperControllerUpsertDeveloperIdentitiesMutation.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/index.d.ts +6 -4
- package/dist/sei-panorama-service/src/services/index.js +2 -2
- package/dist/sei-panorama-service/src/services/schemas/AiDailyActiveUsersDrilldownResponseDto.d.ts +2 -3
- package/dist/sei-panorama-service/src/services/schemas/CursorDrilldownDataDto.d.ts +27 -0
- package/dist/sei-panorama-service/src/services/schemas/CursorDrilldownDataDto.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/CursorDrilldownOptions.d.ts +4 -4
- package/dist/sei-panorama-service/src/services/schemas/CursorDrilldownUserDto.d.ts +52 -0
- package/dist/sei-panorama-service/src/services/schemas/CursorDrilldownUserDto.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/OrgTreeCreateRequestDto.d.ts +4 -0
- package/dist/sei-panorama-service/src/services/schemas/OrgTreeResponseDto.d.ts +1 -0
- package/dist/sei-panorama-service/src/services/schemas/OrgTreeUpdateRequestDto.d.ts +4 -0
- package/package.json +1 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
2
|
import type { AiDailyActiveUsersDrilldownResponseDto } from '../schemas/AiDailyActiveUsersDrilldownResponseDto';
|
|
3
3
|
import type { AiDailyActiveUsersDrilldownRequestDto } from '../schemas/AiDailyActiveUsersDrilldownRequestDto';
|
|
4
4
|
import type { ResponseWithPagination } from '../helpers';
|
|
5
5
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
|
-
export interface
|
|
6
|
+
export interface AiInsightsControllerGetDailyActiveUsersDrilldownQueryQueryParams {
|
|
7
7
|
account: string;
|
|
8
8
|
projectIdentifier: string;
|
|
9
9
|
orgIdentifier: string;
|
|
@@ -11,12 +11,12 @@ export interface AiInsightsControllerGetDailyActiveUsersDrilldownMutationQueryPa
|
|
|
11
11
|
export type AiInsightsControllerGetDailyActiveUsersDrilldownRequestBody = AiDailyActiveUsersDrilldownRequestDto;
|
|
12
12
|
export type AiInsightsControllerGetDailyActiveUsersDrilldownOkResponse = ResponseWithPagination<AiDailyActiveUsersDrilldownResponseDto>;
|
|
13
13
|
export type AiInsightsControllerGetDailyActiveUsersDrilldownErrorResponse = string;
|
|
14
|
-
export interface AiInsightsControllerGetDailyActiveUsersDrilldownProps extends Omit<FetcherOptions<
|
|
15
|
-
queryParams:
|
|
14
|
+
export interface AiInsightsControllerGetDailyActiveUsersDrilldownProps extends Omit<FetcherOptions<AiInsightsControllerGetDailyActiveUsersDrilldownQueryQueryParams, AiInsightsControllerGetDailyActiveUsersDrilldownRequestBody>, 'url'> {
|
|
15
|
+
queryParams: AiInsightsControllerGetDailyActiveUsersDrilldownQueryQueryParams;
|
|
16
16
|
body: AiInsightsControllerGetDailyActiveUsersDrilldownRequestBody;
|
|
17
17
|
}
|
|
18
18
|
export declare function aiInsightsControllerGetDailyActiveUsersDrilldown(props: AiInsightsControllerGetDailyActiveUsersDrilldownProps): Promise<AiInsightsControllerGetDailyActiveUsersDrilldownOkResponse>;
|
|
19
19
|
/**
|
|
20
20
|
* Retrieves detailed user-level data for daily active users with pagination and sorting support. Supports both Windsurf and Cursor integrations through tool-specific request options.
|
|
21
21
|
*/
|
|
22
|
-
export declare function
|
|
22
|
+
export declare function useAiInsightsControllerGetDailyActiveUsersDrilldownQuery(props: AiInsightsControllerGetDailyActiveUsersDrilldownProps, options?: Omit<UseQueryOptions<AiInsightsControllerGetDailyActiveUsersDrilldownOkResponse, AiInsightsControllerGetDailyActiveUsersDrilldownErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<AiInsightsControllerGetDailyActiveUsersDrilldownOkResponse, string>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
2
|
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
3
|
// Please do not modify this code directly.
|
|
4
|
-
import {
|
|
4
|
+
import { useQuery } from '@tanstack/react-query';
|
|
5
5
|
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
6
|
export function aiInsightsControllerGetDailyActiveUsersDrilldown(props) {
|
|
7
7
|
return fetcher(Object.assign({ url: `/v2/insights/ai/daily_active_users/drilldown`, method: 'POST' }, props));
|
|
@@ -9,6 +9,6 @@ export function aiInsightsControllerGetDailyActiveUsersDrilldown(props) {
|
|
|
9
9
|
/**
|
|
10
10
|
* Retrieves detailed user-level data for daily active users with pagination and sorting support. Supports both Windsurf and Cursor integrations through tool-specific request options.
|
|
11
11
|
*/
|
|
12
|
-
export function
|
|
13
|
-
return
|
|
12
|
+
export function useAiInsightsControllerGetDailyActiveUsersDrilldownQuery(props, options) {
|
|
13
|
+
return useQuery(['AIInsightsControllerGetDailyActiveUsersDrilldown', props.queryParams, props.body], ({ signal }) => aiInsightsControllerGetDailyActiveUsersDrilldown(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
14
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
2
|
import type { AiSummaryResponseDto } from '../schemas/AiSummaryResponseDto';
|
|
3
3
|
import type { ErrorResponse } from '../schemas/ErrorResponse';
|
|
4
4
|
import type { AiSummaryRequestDto } from '../schemas/AiSummaryRequestDto';
|
|
5
5
|
import type { ResponseWithPagination } from '../helpers';
|
|
6
6
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
7
|
-
export interface
|
|
7
|
+
export interface AiSummaryControllerGenerateSummaryQueryQueryParams {
|
|
8
8
|
account: string;
|
|
9
9
|
projectIdentifier: string;
|
|
10
10
|
orgIdentifier: string;
|
|
@@ -12,12 +12,12 @@ export interface AiSummaryControllerGenerateSummaryMutationQueryParams {
|
|
|
12
12
|
export type AiSummaryControllerGenerateSummaryRequestBody = AiSummaryRequestDto;
|
|
13
13
|
export type AiSummaryControllerGenerateSummaryOkResponse = ResponseWithPagination<AiSummaryResponseDto>;
|
|
14
14
|
export type AiSummaryControllerGenerateSummaryErrorResponse = ErrorResponse;
|
|
15
|
-
export interface AiSummaryControllerGenerateSummaryProps extends Omit<FetcherOptions<
|
|
16
|
-
queryParams:
|
|
15
|
+
export interface AiSummaryControllerGenerateSummaryProps extends Omit<FetcherOptions<AiSummaryControllerGenerateSummaryQueryQueryParams, AiSummaryControllerGenerateSummaryRequestBody>, 'url'> {
|
|
16
|
+
queryParams: AiSummaryControllerGenerateSummaryQueryQueryParams;
|
|
17
17
|
body: AiSummaryControllerGenerateSummaryRequestBody;
|
|
18
18
|
}
|
|
19
19
|
export declare function aiSummaryControllerGenerateSummary(props: AiSummaryControllerGenerateSummaryProps): Promise<AiSummaryControllerGenerateSummaryOkResponse>;
|
|
20
20
|
/**
|
|
21
21
|
* Generate an AI-powered summary with insights, root cause analysis, and actionable recommendations based on team metrics for the specified category (Efficiency, Productivity, Business Alignment, or Sprint Insights).
|
|
22
22
|
*/
|
|
23
|
-
export declare function
|
|
23
|
+
export declare function useAiSummaryControllerGenerateSummaryQuery(props: AiSummaryControllerGenerateSummaryProps, options?: Omit<UseQueryOptions<AiSummaryControllerGenerateSummaryOkResponse, AiSummaryControllerGenerateSummaryErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<AiSummaryControllerGenerateSummaryOkResponse, ErrorResponse>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
2
|
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
3
|
// Please do not modify this code directly.
|
|
4
|
-
import {
|
|
4
|
+
import { useQuery } from '@tanstack/react-query';
|
|
5
5
|
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
6
|
export function aiSummaryControllerGenerateSummary(props) {
|
|
7
7
|
return fetcher(Object.assign({ url: `/v2/insights/ai-summary`, method: 'POST' }, props));
|
|
@@ -9,6 +9,6 @@ export function aiSummaryControllerGenerateSummary(props) {
|
|
|
9
9
|
/**
|
|
10
10
|
* Generate an AI-powered summary with insights, root cause analysis, and actionable recommendations based on team metrics for the specified category (Efficiency, Productivity, Business Alignment, or Sprint Insights).
|
|
11
11
|
*/
|
|
12
|
-
export function
|
|
13
|
-
return
|
|
12
|
+
export function useAiSummaryControllerGenerateSummaryQuery(props, options) {
|
|
13
|
+
return useQuery(['AISummaryControllerGenerateSummary', props.queryParams, props.body], ({ signal }) => aiSummaryControllerGenerateSummary(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
14
|
}
|
|
@@ -7,7 +7,7 @@ import type { ResponseWithPagination } from '../helpers';
|
|
|
7
7
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
8
8
|
export type DeveloperControllerUpsertDeveloperIdentitiesRequestBody = DeveloperIdentity[];
|
|
9
9
|
export type DeveloperControllerUpsertDeveloperIdentitiesOkResponse = ResponseWithPagination<DeveloperIdentityUpsertResponse>;
|
|
10
|
-
export type DeveloperControllerUpsertDeveloperIdentitiesErrorResponse = DeveloperIdentityUpsertFailureResponse | ErrorResponse;
|
|
10
|
+
export type DeveloperControllerUpsertDeveloperIdentitiesErrorResponse = (DeveloperIdentityUpsertFailureResponse & ErrorResponse) | ErrorResponse;
|
|
11
11
|
export interface DeveloperControllerUpsertDeveloperIdentitiesProps extends Omit<FetcherOptions<unknown, DeveloperControllerUpsertDeveloperIdentitiesRequestBody>, 'url'> {
|
|
12
12
|
body: DeveloperControllerUpsertDeveloperIdentitiesRequestBody;
|
|
13
13
|
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
export type { GetPathParamsType, ResponseWithPagination } from './helpers';
|
|
2
|
-
export type { AiInsightsControllerGetDailyActiveUsersDrilldownErrorResponse,
|
|
3
|
-
export { aiInsightsControllerGetDailyActiveUsersDrilldown,
|
|
2
|
+
export type { AiInsightsControllerGetDailyActiveUsersDrilldownErrorResponse, AiInsightsControllerGetDailyActiveUsersDrilldownOkResponse, AiInsightsControllerGetDailyActiveUsersDrilldownProps, AiInsightsControllerGetDailyActiveUsersDrilldownQueryQueryParams, AiInsightsControllerGetDailyActiveUsersDrilldownRequestBody, } from './hooks/useAiInsightsControllerGetDailyActiveUsersDrilldownQuery';
|
|
3
|
+
export { aiInsightsControllerGetDailyActiveUsersDrilldown, useAiInsightsControllerGetDailyActiveUsersDrilldownQuery, } from './hooks/useAiInsightsControllerGetDailyActiveUsersDrilldownQuery';
|
|
4
4
|
export type { AiInsightsControllerGetFeatureMetricsErrorResponse, AiInsightsControllerGetFeatureMetricsOkResponse, AiInsightsControllerGetFeatureMetricsProps, AiInsightsControllerGetFeatureMetricsQueryQueryParams, AiInsightsControllerGetFeatureMetricsRequestBody, } from './hooks/useAiInsightsControllerGetFeatureMetricsQuery';
|
|
5
5
|
export { aiInsightsControllerGetFeatureMetrics, useAiInsightsControllerGetFeatureMetricsQuery, } from './hooks/useAiInsightsControllerGetFeatureMetricsQuery';
|
|
6
6
|
export type { AiInsightsControllerGetTeamAdoptionErrorResponse, AiInsightsControllerGetTeamAdoptionOkResponse, AiInsightsControllerGetTeamAdoptionProps, AiInsightsControllerGetTeamAdoptionQueryQueryParams, AiInsightsControllerGetTeamAdoptionRequestBody, } from './hooks/useAiInsightsControllerGetTeamAdoptionQuery';
|
|
7
7
|
export { aiInsightsControllerGetTeamAdoption, useAiInsightsControllerGetTeamAdoptionQuery, } from './hooks/useAiInsightsControllerGetTeamAdoptionQuery';
|
|
8
8
|
export type { AiInsightsControllerGetTopLanguagesErrorResponse, AiInsightsControllerGetTopLanguagesOkResponse, AiInsightsControllerGetTopLanguagesProps, AiInsightsControllerGetTopLanguagesQueryQueryParams, AiInsightsControllerGetTopLanguagesRequestBody, } from './hooks/useAiInsightsControllerGetTopLanguagesQuery';
|
|
9
9
|
export { aiInsightsControllerGetTopLanguages, useAiInsightsControllerGetTopLanguagesQuery, } from './hooks/useAiInsightsControllerGetTopLanguagesQuery';
|
|
10
|
-
export type { AiSummaryControllerGenerateSummaryErrorResponse,
|
|
11
|
-
export { aiSummaryControllerGenerateSummary,
|
|
10
|
+
export type { AiSummaryControllerGenerateSummaryErrorResponse, AiSummaryControllerGenerateSummaryOkResponse, AiSummaryControllerGenerateSummaryProps, AiSummaryControllerGenerateSummaryQueryQueryParams, AiSummaryControllerGenerateSummaryRequestBody, } from './hooks/useAiSummaryControllerGenerateSummaryQuery';
|
|
11
|
+
export { aiSummaryControllerGenerateSummary, useAiSummaryControllerGenerateSummaryQuery, } from './hooks/useAiSummaryControllerGenerateSummaryQuery';
|
|
12
12
|
export type { AsyncExportControllerDownloadExportErrorResponse, AsyncExportControllerDownloadExportOkResponse, AsyncExportControllerDownloadExportProps, AsyncExportControllerDownloadExportQueryPathParams, AsyncExportControllerDownloadExportQueryQueryParams, } from './hooks/useAsyncExportControllerDownloadExportQuery';
|
|
13
13
|
export { asyncExportControllerDownloadExport, useAsyncExportControllerDownloadExportQuery, } from './hooks/useAsyncExportControllerDownloadExportQuery';
|
|
14
14
|
export type { AsyncExportControllerGetJobStatusErrorResponse, AsyncExportControllerGetJobStatusOkResponse, AsyncExportControllerGetJobStatusProps, AsyncExportControllerGetJobStatusQueryPathParams, AsyncExportControllerGetJobStatusQueryQueryParams, } from './hooks/useAsyncExportControllerGetJobStatusQuery';
|
|
@@ -407,7 +407,9 @@ export type { CollectionEnriched } from './schemas/CollectionEnriched';
|
|
|
407
407
|
export type { CollectionFilter } from './schemas/CollectionFilter';
|
|
408
408
|
export type { CollectionTree } from './schemas/CollectionTree';
|
|
409
409
|
export type { CommitInfo } from './schemas/CommitInfo';
|
|
410
|
+
export type { CursorDrilldownDataDto } from './schemas/CursorDrilldownDataDto';
|
|
410
411
|
export type { CursorDrilldownOptions } from './schemas/CursorDrilldownOptions';
|
|
412
|
+
export type { CursorDrilldownUserDto } from './schemas/CursorDrilldownUserDto';
|
|
411
413
|
export type { DailyCountDataPoint } from './schemas/DailyCountDataPoint';
|
|
412
414
|
export type { DailyLicenseUsageResponseDto } from './schemas/DailyLicenseUsageResponseDto';
|
|
413
415
|
export type { DataPoint } from './schemas/DataPoint';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export { aiInsightsControllerGetDailyActiveUsersDrilldown,
|
|
1
|
+
export { aiInsightsControllerGetDailyActiveUsersDrilldown, useAiInsightsControllerGetDailyActiveUsersDrilldownQuery, } from './hooks/useAiInsightsControllerGetDailyActiveUsersDrilldownQuery';
|
|
2
2
|
export { aiInsightsControllerGetFeatureMetrics, useAiInsightsControllerGetFeatureMetricsQuery, } from './hooks/useAiInsightsControllerGetFeatureMetricsQuery';
|
|
3
3
|
export { aiInsightsControllerGetTeamAdoption, useAiInsightsControllerGetTeamAdoptionQuery, } from './hooks/useAiInsightsControllerGetTeamAdoptionQuery';
|
|
4
4
|
export { aiInsightsControllerGetTopLanguages, useAiInsightsControllerGetTopLanguagesQuery, } from './hooks/useAiInsightsControllerGetTopLanguagesQuery';
|
|
5
|
-
export { aiSummaryControllerGenerateSummary,
|
|
5
|
+
export { aiSummaryControllerGenerateSummary, useAiSummaryControllerGenerateSummaryQuery, } from './hooks/useAiSummaryControllerGenerateSummaryQuery';
|
|
6
6
|
export { asyncExportControllerDownloadExport, useAsyncExportControllerDownloadExportQuery, } from './hooks/useAsyncExportControllerDownloadExportQuery';
|
|
7
7
|
export { asyncExportControllerGetJobStatus, useAsyncExportControllerGetJobStatusQuery, } from './hooks/useAsyncExportControllerGetJobStatusQuery';
|
|
8
8
|
export { asyncExportControllerInitiateExport, useAsyncExportControllerInitiateExportMutation, } from './hooks/useAsyncExportControllerInitiateExportMutation';
|
package/dist/sei-panorama-service/src/services/schemas/AiDailyActiveUsersDrilldownResponseDto.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { CursorDrilldownDataDto } from '../schemas/CursorDrilldownDataDto';
|
|
1
2
|
import type { WindsurfDrilldownDataDto } from '../schemas/WindsurfDrilldownDataDto';
|
|
2
3
|
export interface AiDailyActiveUsersDrilldownResponseDto {
|
|
3
4
|
/**
|
|
@@ -9,9 +10,7 @@ export interface AiDailyActiveUsersDrilldownResponseDto {
|
|
|
9
10
|
/**
|
|
10
11
|
* Cursor-specific drilldown data (only present when integrationType='cursor')
|
|
11
12
|
*/
|
|
12
|
-
cursorData?:
|
|
13
|
-
[key: string]: any;
|
|
14
|
-
};
|
|
13
|
+
cursorData?: CursorDrilldownDataDto;
|
|
15
14
|
/**
|
|
16
15
|
* End date of the period
|
|
17
16
|
* @format date-time
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { CursorDrilldownUserDto } from '../schemas/CursorDrilldownUserDto';
|
|
2
|
+
export interface CursorDrilldownDataDto {
|
|
3
|
+
/**
|
|
4
|
+
* Column used for sorting
|
|
5
|
+
* @example "TOTAL_ACCEPTS"
|
|
6
|
+
*/
|
|
7
|
+
sortBy?: 'email' | 'line_accept_percent' | 'lines_accepted' | 'lines_suggested' | 'primary_language' | 'rank' | 'total_accepts' | 'username';
|
|
8
|
+
/**
|
|
9
|
+
* Sort order (ASC/DESC)
|
|
10
|
+
* @example "DESC"
|
|
11
|
+
*/
|
|
12
|
+
sortByCriteria?: 'ASC' | 'DESC';
|
|
13
|
+
/**
|
|
14
|
+
* Total number of active users
|
|
15
|
+
* @format int32
|
|
16
|
+
*/
|
|
17
|
+
totalActiveUsers?: number;
|
|
18
|
+
/**
|
|
19
|
+
* Total number of users in the team
|
|
20
|
+
* @format int32
|
|
21
|
+
*/
|
|
22
|
+
totalUsers?: number;
|
|
23
|
+
/**
|
|
24
|
+
* List of users with their metrics
|
|
25
|
+
*/
|
|
26
|
+
users?: CursorDrilldownUserDto[];
|
|
27
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
export interface CursorDrilldownOptions {
|
|
2
2
|
/**
|
|
3
|
-
* Column to sort by
|
|
3
|
+
* Column to sort by (case-insensitive)
|
|
4
4
|
* @example "total_accepts"
|
|
5
5
|
*/
|
|
6
|
-
sortBy?:
|
|
6
|
+
sortBy?: 'email' | 'line_accept_percent' | 'lines_accepted' | 'lines_suggested' | 'primary_language' | 'rank' | 'total_accepts' | 'username';
|
|
7
7
|
/**
|
|
8
|
-
* Sort order (ASC/DESC)
|
|
8
|
+
* Sort order (ASC/DESC, case-insensitive)
|
|
9
9
|
* @example "DESC"
|
|
10
10
|
*/
|
|
11
|
-
sortByCriteria?:
|
|
11
|
+
sortByCriteria?: 'ASC' | 'DESC';
|
|
12
12
|
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
export interface CursorDrilldownUserDto {
|
|
2
|
+
/**
|
|
3
|
+
* Acceptance rate percentage
|
|
4
|
+
* @format double
|
|
5
|
+
* @example 75
|
|
6
|
+
*/
|
|
7
|
+
acceptanceRate?: number;
|
|
8
|
+
/**
|
|
9
|
+
* Last active date
|
|
10
|
+
* @format date-time
|
|
11
|
+
*/
|
|
12
|
+
lastActiveDate?: string;
|
|
13
|
+
/**
|
|
14
|
+
* Primary programming language
|
|
15
|
+
* @example "Java"
|
|
16
|
+
*/
|
|
17
|
+
primaryLanguage?: string;
|
|
18
|
+
/**
|
|
19
|
+
* User's rank
|
|
20
|
+
* @format int32
|
|
21
|
+
* @example 1
|
|
22
|
+
*/
|
|
23
|
+
rank?: number;
|
|
24
|
+
/**
|
|
25
|
+
* Total accepts
|
|
26
|
+
* @format int64
|
|
27
|
+
* @example 150
|
|
28
|
+
*/
|
|
29
|
+
totalAccepts?: number;
|
|
30
|
+
/**
|
|
31
|
+
* Total number of active days
|
|
32
|
+
* @format int64
|
|
33
|
+
* @example 20
|
|
34
|
+
*/
|
|
35
|
+
totalActiveDays?: number;
|
|
36
|
+
/**
|
|
37
|
+
* Total suggestions
|
|
38
|
+
* @format int64
|
|
39
|
+
* @example 200
|
|
40
|
+
*/
|
|
41
|
+
totalSuggestions?: number;
|
|
42
|
+
/**
|
|
43
|
+
* User email
|
|
44
|
+
* @example "john.doe@example.com"
|
|
45
|
+
*/
|
|
46
|
+
userEmail?: string;
|
|
47
|
+
/**
|
|
48
|
+
* Username
|
|
49
|
+
* @example "john.doe"
|
|
50
|
+
*/
|
|
51
|
+
username?: string;
|
|
52
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harnessio/react-sei-panorama-service-client",
|
|
3
|
-
"version": "0.25.
|
|
3
|
+
"version": "0.25.2",
|
|
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",
|