@harnessio/react-idp-service-client 0.51.5 → 0.52.0
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/idp-service/src/services/hooks/useCreatePluginRequestV2Mutation.d.ts +18 -0
- package/dist/idp-service/src/services/hooks/useCreatePluginRequestV2Mutation.js +14 -0
- package/dist/idp-service/src/services/hooks/useGetPluginRequestV2Query.d.ts +21 -0
- package/dist/idp-service/src/services/hooks/useGetPluginRequestV2Query.js +14 -0
- package/dist/idp-service/src/services/hooks/useUpdatePluginRequestV2Mutation.d.ts +22 -0
- package/dist/idp-service/src/services/hooks/useUpdatePluginRequestV2Mutation.js +14 -0
- package/dist/idp-service/src/services/index.d.ts +16 -0
- package/dist/idp-service/src/services/index.js +3 -0
- package/dist/idp-service/src/services/requestBodies/RequestPluginRequestStatusV2RequestBody.d.ts +2 -0
- package/dist/idp-service/src/services/requestBodies/RequestPluginRequestStatusV2RequestBody.js +1 -0
- package/dist/idp-service/src/services/requestBodies/RequestPluginRequestV2RequestBody.d.ts +2 -0
- package/dist/idp-service/src/services/requestBodies/RequestPluginRequestV2RequestBody.js +1 -0
- package/dist/idp-service/src/services/responses/PluginRequestResponseListV2Response.d.ts +2 -0
- package/dist/idp-service/src/services/responses/PluginRequestResponseListV2Response.js +1 -0
- package/dist/idp-service/src/services/responses/PluginRequestResponseV2Response.d.ts +2 -0
- package/dist/idp-service/src/services/responses/PluginRequestResponseV2Response.js +1 -0
- package/dist/idp-service/src/services/schemas/PluginRequestResponseListV2.d.ts +7 -0
- package/dist/idp-service/src/services/schemas/PluginRequestResponseListV2.js +1 -0
- package/dist/idp-service/src/services/schemas/PluginRequestResponseV2.d.ts +7 -0
- package/dist/idp-service/src/services/schemas/PluginRequestResponseV2.js +1 -0
- package/dist/idp-service/src/services/schemas/PluginRequestStatus.d.ts +1 -0
- package/dist/idp-service/src/services/schemas/PluginRequestStatus.js +4 -0
- package/dist/idp-service/src/services/schemas/RequestPluginByIdAndStatus.d.ts +5 -0
- package/dist/idp-service/src/services/schemas/RequestPluginByIdAndStatus.js +1 -0
- package/dist/idp-service/src/services/schemas/RequestPluginByStatus.d.ts +4 -0
- package/dist/idp-service/src/services/schemas/RequestPluginByStatus.js +1 -0
- package/dist/idp-service/src/services/schemas/RequestPluginV2.d.ts +12 -0
- package/dist/idp-service/src/services/schemas/RequestPluginV2.js +1 -0
- package/dist/idp-service/src/services/schemas/WorkflowsInfo.d.ts +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { RequestPluginRequestV2RequestBody } from '../requestBodies/RequestPluginRequestV2RequestBody';
|
|
3
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
4
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
|
+
export interface CreatePluginRequestV2MutationHeaderParams {
|
|
6
|
+
'Harness-Account'?: string;
|
|
7
|
+
}
|
|
8
|
+
export type CreatePluginRequestV2RequestBody = RequestPluginRequestV2RequestBody;
|
|
9
|
+
export type CreatePluginRequestV2OkResponse = ResponseWithPagination<unknown>;
|
|
10
|
+
export type CreatePluginRequestV2ErrorResponse = unknown;
|
|
11
|
+
export interface CreatePluginRequestV2Props extends Omit<FetcherOptions<unknown, CreatePluginRequestV2RequestBody, CreatePluginRequestV2MutationHeaderParams>, 'url'> {
|
|
12
|
+
body: CreatePluginRequestV2RequestBody;
|
|
13
|
+
}
|
|
14
|
+
export declare function createPluginRequestV2(props: CreatePluginRequestV2Props): Promise<CreatePluginRequestV2OkResponse>;
|
|
15
|
+
/**
|
|
16
|
+
* Request for a Plugin V2
|
|
17
|
+
*/
|
|
18
|
+
export declare function useCreatePluginRequestV2Mutation(options?: Omit<UseMutationOptions<CreatePluginRequestV2OkResponse, CreatePluginRequestV2ErrorResponse, CreatePluginRequestV2Props>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<CreatePluginRequestV2OkResponse, unknown, CreatePluginRequestV2Props, unknown>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useMutation } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
+
export function createPluginRequestV2(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/plugin/request`, method: 'POST' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Request for a Plugin V2
|
|
11
|
+
*/
|
|
12
|
+
export function useCreatePluginRequestV2Mutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => createPluginRequestV2(mutateProps), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { PluginRequestResponseListV2Response } from '../responses/PluginRequestResponseListV2Response';
|
|
3
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
4
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
|
+
export interface GetPluginRequestV2QueryQueryParams {
|
|
6
|
+
page?: number;
|
|
7
|
+
limit?: number;
|
|
8
|
+
}
|
|
9
|
+
export interface GetPluginRequestV2QueryHeaderParams {
|
|
10
|
+
'Harness-Account'?: string;
|
|
11
|
+
}
|
|
12
|
+
export type GetPluginRequestV2OkResponse = ResponseWithPagination<PluginRequestResponseListV2Response>;
|
|
13
|
+
export type GetPluginRequestV2ErrorResponse = unknown;
|
|
14
|
+
export interface GetPluginRequestV2Props extends Omit<FetcherOptions<GetPluginRequestV2QueryQueryParams, unknown, GetPluginRequestV2QueryHeaderParams>, 'url'> {
|
|
15
|
+
queryParams: GetPluginRequestV2QueryQueryParams;
|
|
16
|
+
}
|
|
17
|
+
export declare function getPluginRequestV2(props: GetPluginRequestV2Props): Promise<GetPluginRequestV2OkResponse>;
|
|
18
|
+
/**
|
|
19
|
+
* Get all plugin requests for an account V2
|
|
20
|
+
*/
|
|
21
|
+
export declare function useGetPluginRequestV2Query(props: GetPluginRequestV2Props, options?: Omit<UseQueryOptions<GetPluginRequestV2OkResponse, GetPluginRequestV2ErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<GetPluginRequestV2OkResponse, unknown>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useQuery } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
+
export function getPluginRequestV2(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/plugin/request`, method: 'GET' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Get all plugin requests for an account V2
|
|
11
|
+
*/
|
|
12
|
+
export function useGetPluginRequestV2Query(props, options) {
|
|
13
|
+
return useQuery(['get-plugin-request-v2', props.queryParams], ({ signal }) => getPluginRequestV2(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { PluginRequestResponseV2Response } from '../responses/PluginRequestResponseV2Response';
|
|
3
|
+
import type { RequestPluginRequestStatusV2RequestBody } from '../requestBodies/RequestPluginRequestStatusV2RequestBody';
|
|
4
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
5
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
|
+
export interface UpdatePluginRequestV2MutationPathParams {
|
|
7
|
+
'plugin-id': string;
|
|
8
|
+
}
|
|
9
|
+
export interface UpdatePluginRequestV2MutationHeaderParams {
|
|
10
|
+
'Harness-Account'?: string;
|
|
11
|
+
}
|
|
12
|
+
export type UpdatePluginRequestV2RequestBody = RequestPluginRequestStatusV2RequestBody;
|
|
13
|
+
export type UpdatePluginRequestV2OkResponse = ResponseWithPagination<PluginRequestResponseV2Response>;
|
|
14
|
+
export type UpdatePluginRequestV2ErrorResponse = unknown;
|
|
15
|
+
export interface UpdatePluginRequestV2Props extends UpdatePluginRequestV2MutationPathParams, Omit<FetcherOptions<unknown, UpdatePluginRequestV2RequestBody, UpdatePluginRequestV2MutationHeaderParams>, 'url'> {
|
|
16
|
+
body: UpdatePluginRequestV2RequestBody;
|
|
17
|
+
}
|
|
18
|
+
export declare function updatePluginRequestV2(props: UpdatePluginRequestV2Props): Promise<UpdatePluginRequestV2OkResponse>;
|
|
19
|
+
/**
|
|
20
|
+
* Update a plugin request status for an account V2
|
|
21
|
+
*/
|
|
22
|
+
export declare function useUpdatePluginRequestV2Mutation(options?: Omit<UseMutationOptions<UpdatePluginRequestV2OkResponse, UpdatePluginRequestV2ErrorResponse, UpdatePluginRequestV2Props>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<UpdatePluginRequestV2OkResponse, unknown, UpdatePluginRequestV2Props, unknown>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useMutation } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
+
export function updatePluginRequestV2(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/plugin/request/${props['plugin-id']}`, method: 'PUT' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Update a plugin request status for an account V2
|
|
11
|
+
*/
|
|
12
|
+
export function useUpdatePluginRequestV2Mutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => updatePluginRequestV2(mutateProps), options);
|
|
14
|
+
}
|
|
@@ -13,6 +13,8 @@ export type { CreateIntegrationErrorResponse, CreateIntegrationMutationPathParam
|
|
|
13
13
|
export { createIntegration, useCreateIntegrationMutation, } from './hooks/useCreateIntegrationMutation';
|
|
14
14
|
export type { CreateLayoutErrorResponse, CreateLayoutOkResponse, CreateLayoutProps, CreateLayoutRequestBody, } from './hooks/useCreateLayoutMutation';
|
|
15
15
|
export { createLayout, useCreateLayoutMutation } from './hooks/useCreateLayoutMutation';
|
|
16
|
+
export type { CreatePluginRequestV2ErrorResponse, CreatePluginRequestV2OkResponse, CreatePluginRequestV2Props, CreatePluginRequestV2RequestBody, } from './hooks/useCreatePluginRequestV2Mutation';
|
|
17
|
+
export { createPluginRequestV2, useCreatePluginRequestV2Mutation, } from './hooks/useCreatePluginRequestV2Mutation';
|
|
16
18
|
export type { CreateScorecardErrorResponse, CreateScorecardOkResponse, CreateScorecardProps, CreateScorecardRequestBody, } from './hooks/useCreateScorecardMutation';
|
|
17
19
|
export { createScorecard, useCreateScorecardMutation } from './hooks/useCreateScorecardMutation';
|
|
18
20
|
export type { CustomPluginsTriggerErrorResponse, CustomPluginsTriggerMutationPathParams, CustomPluginsTriggerOkResponse, CustomPluginsTriggerProps, } from './hooks/useCustomPluginsTriggerMutation';
|
|
@@ -89,6 +91,8 @@ export type { GetMergedPluginsConfigErrorResponse, GetMergedPluginsConfigOkRespo
|
|
|
89
91
|
export { getMergedPluginsConfig, useGetMergedPluginsConfigQuery, } from './hooks/useGetMergedPluginsConfigQuery';
|
|
90
92
|
export type { GetOnboardingStatusErrorResponse, GetOnboardingStatusOkResponse, GetOnboardingStatusProps, } from './hooks/useGetOnboardingStatusQuery';
|
|
91
93
|
export { getOnboardingStatus, useGetOnboardingStatusQuery, } from './hooks/useGetOnboardingStatusQuery';
|
|
94
|
+
export type { GetPluginRequestV2ErrorResponse, GetPluginRequestV2OkResponse, GetPluginRequestV2Props, GetPluginRequestV2QueryQueryParams, } from './hooks/useGetPluginRequestV2Query';
|
|
95
|
+
export { getPluginRequestV2, useGetPluginRequestV2Query } from './hooks/useGetPluginRequestV2Query';
|
|
92
96
|
export type { GetPluginsInfoPluginIdErrorResponse, GetPluginsInfoPluginIdOkResponse, GetPluginsInfoPluginIdProps, GetPluginsInfoPluginIdQueryPathParams, GetPluginsInfoPluginIdQueryQueryParams, } from './hooks/useGetPluginsInfoPluginIdQuery';
|
|
93
97
|
export { getPluginsInfoPluginId, useGetPluginsInfoPluginIdQuery, } from './hooks/useGetPluginsInfoPluginIdQuery';
|
|
94
98
|
export type { GetPluginsErrorResponse, GetPluginsOkResponse, GetPluginsProps, } from './hooks/useGetPluginsQuery';
|
|
@@ -147,6 +151,8 @@ export type { UpdateGroupsErrorResponse, UpdateGroupsOkResponse, UpdateGroupsPro
|
|
|
147
151
|
export { updateGroups, useUpdateGroupsMutation } from './hooks/useUpdateGroupsMutation';
|
|
148
152
|
export type { UpdateIntegrationErrorResponse, UpdateIntegrationMutationPathParams, UpdateIntegrationMutationQueryParams, UpdateIntegrationOkResponse, UpdateIntegrationProps, UpdateIntegrationRequestBody, } from './hooks/useUpdateIntegrationMutation';
|
|
149
153
|
export { updateIntegration, useUpdateIntegrationMutation, } from './hooks/useUpdateIntegrationMutation';
|
|
154
|
+
export type { UpdatePluginRequestV2ErrorResponse, UpdatePluginRequestV2MutationPathParams, UpdatePluginRequestV2OkResponse, UpdatePluginRequestV2Props, UpdatePluginRequestV2RequestBody, } from './hooks/useUpdatePluginRequestV2Mutation';
|
|
155
|
+
export { updatePluginRequestV2, useUpdatePluginRequestV2Mutation, } from './hooks/useUpdatePluginRequestV2Mutation';
|
|
150
156
|
export type { UpdateScorecardErrorResponse, UpdateScorecardMutationPathParams, UpdateScorecardOkResponse, UpdateScorecardProps, UpdateScorecardRequestBody, } from './hooks/useUpdateScorecardMutation';
|
|
151
157
|
export { updateScorecard, useUpdateScorecardMutation } from './hooks/useUpdateScorecardMutation';
|
|
152
158
|
export type { AppConfigRequestRequestBody } from './requestBodies/AppConfigRequestRequestBody';
|
|
@@ -167,6 +173,8 @@ export type { OnboardingGenerateYamlDefRequestRequestBody } from './requestBodie
|
|
|
167
173
|
export type { OnboardingImportCdEntitiesRequestRequestBody } from './requestBodies/OnboardingImportCdEntitiesRequestRequestBody';
|
|
168
174
|
export type { OnboardingSkipRequestRequestBody } from './requestBodies/OnboardingSkipRequestRequestBody';
|
|
169
175
|
export type { RequestPluginRequestRequestBody } from './requestBodies/RequestPluginRequestRequestBody';
|
|
176
|
+
export type { RequestPluginRequestStatusV2RequestBody } from './requestBodies/RequestPluginRequestStatusV2RequestBody';
|
|
177
|
+
export type { RequestPluginRequestV2RequestBody } from './requestBodies/RequestPluginRequestV2RequestBody';
|
|
170
178
|
export type { ScorecardRecalibrateRequestRequestBody } from './requestBodies/ScorecardRecalibrateRequestRequestBody';
|
|
171
179
|
export type { AllowListResponseResponse } from './responses/AllowListResponseResponse';
|
|
172
180
|
export type { AppConfigResponseResponse } from './responses/AppConfigResponseResponse';
|
|
@@ -206,6 +214,8 @@ export type { OnboardingSkipResponseResponse } from './responses/OnboardingSkipR
|
|
|
206
214
|
export type { OnboardingStatusResponseResponse } from './responses/OnboardingStatusResponseResponse';
|
|
207
215
|
export type { PluginDetailedInfoResponseResponse } from './responses/PluginDetailedInfoResponseResponse';
|
|
208
216
|
export type { PluginInfoResponseListResponse } from './responses/PluginInfoResponseListResponse';
|
|
217
|
+
export type { PluginRequestResponseListV2Response } from './responses/PluginRequestResponseListV2Response';
|
|
218
|
+
export type { PluginRequestResponseV2Response } from './responses/PluginRequestResponseV2Response';
|
|
209
219
|
export type { ScorecardDetailsResponseResponse } from './responses/ScorecardDetailsResponseResponse';
|
|
210
220
|
export type { ScorecardRecalibrateResponseResponse } from './responses/ScorecardRecalibrateResponseResponse';
|
|
211
221
|
export type { ScorecardResponseListResponse } from './responses/ScorecardResponseListResponse';
|
|
@@ -306,9 +316,15 @@ export type { PluginDetailedInfoResponse } from './schemas/PluginDetailedInfoRes
|
|
|
306
316
|
export type { PluginDetails } from './schemas/PluginDetails';
|
|
307
317
|
export type { PluginInfo } from './schemas/PluginInfo';
|
|
308
318
|
export type { PluginInfoResponse } from './schemas/PluginInfoResponse';
|
|
319
|
+
export type { PluginRequestResponseListV2 } from './schemas/PluginRequestResponseListV2';
|
|
320
|
+
export type { PluginRequestResponseV2 } from './schemas/PluginRequestResponseV2';
|
|
321
|
+
export type { PluginRequestStatus } from './schemas/PluginRequestStatus';
|
|
309
322
|
export type { ProxyHostDetail } from './schemas/ProxyHostDetail';
|
|
310
323
|
export type { ReadValidationDetails } from './schemas/ReadValidationDetails';
|
|
311
324
|
export type { RequestPlugin } from './schemas/RequestPlugin';
|
|
325
|
+
export type { RequestPluginByIdAndStatus } from './schemas/RequestPluginByIdAndStatus';
|
|
326
|
+
export type { RequestPluginByStatus } from './schemas/RequestPluginByStatus';
|
|
327
|
+
export type { RequestPluginV2 } from './schemas/RequestPluginV2';
|
|
312
328
|
export type { Rule } from './schemas/Rule';
|
|
313
329
|
export type { Scorecard } from './schemas/Scorecard';
|
|
314
330
|
export type { ScorecardChecks } from './schemas/ScorecardChecks';
|
|
@@ -5,6 +5,7 @@ export { createBackstagePermissions, useCreateBackstagePermissionsMutation, } fr
|
|
|
5
5
|
export { createCheck, useCreateCheckMutation } from './hooks/useCreateCheckMutation';
|
|
6
6
|
export { createIntegration, useCreateIntegrationMutation, } from './hooks/useCreateIntegrationMutation';
|
|
7
7
|
export { createLayout, useCreateLayoutMutation } from './hooks/useCreateLayoutMutation';
|
|
8
|
+
export { createPluginRequestV2, useCreatePluginRequestV2Mutation, } from './hooks/useCreatePluginRequestV2Mutation';
|
|
8
9
|
export { createScorecard, useCreateScorecardMutation } from './hooks/useCreateScorecardMutation';
|
|
9
10
|
export { customPluginsTrigger, useCustomPluginsTriggerMutation, } from './hooks/useCustomPluginsTriggerMutation';
|
|
10
11
|
export { deleteCheck, useDeleteCheckMutation } from './hooks/useDeleteCheckMutation';
|
|
@@ -43,6 +44,7 @@ export { getIntegrations, useGetIntegrationsQuery } from './hooks/useGetIntegrat
|
|
|
43
44
|
export { getLayout, useGetLayoutQuery } from './hooks/useGetLayoutQuery';
|
|
44
45
|
export { getMergedPluginsConfig, useGetMergedPluginsConfigQuery, } from './hooks/useGetMergedPluginsConfigQuery';
|
|
45
46
|
export { getOnboardingStatus, useGetOnboardingStatusQuery, } from './hooks/useGetOnboardingStatusQuery';
|
|
47
|
+
export { getPluginRequestV2, useGetPluginRequestV2Query } from './hooks/useGetPluginRequestV2Query';
|
|
46
48
|
export { getPluginsInfoPluginId, useGetPluginsInfoPluginIdQuery, } from './hooks/useGetPluginsInfoPluginIdQuery';
|
|
47
49
|
export { getPlugins, useGetPluginsQuery } from './hooks/useGetPluginsQuery';
|
|
48
50
|
export { getScorecard, useGetScorecardQuery } from './hooks/useGetScorecardQuery';
|
|
@@ -72,4 +74,5 @@ export { updateConfigurationEntities, useUpdateConfigurationEntitiesMutation, }
|
|
|
72
74
|
export { updateCustomPluginsInfo, useUpdateCustomPluginsInfoMutation, } from './hooks/useUpdateCustomPluginsInfoMutation';
|
|
73
75
|
export { updateGroups, useUpdateGroupsMutation } from './hooks/useUpdateGroupsMutation';
|
|
74
76
|
export { updateIntegration, useUpdateIntegrationMutation, } from './hooks/useUpdateIntegrationMutation';
|
|
77
|
+
export { updatePluginRequestV2, useUpdatePluginRequestV2Mutation, } from './hooks/useUpdatePluginRequestV2Mutation';
|
|
75
78
|
export { updateScorecard, useUpdateScorecardMutation } from './hooks/useUpdateScorecardMutation';
|
package/dist/idp-service/src/services/requestBodies/RequestPluginRequestStatusV2RequestBody.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type PluginRequestStatus = 'CANCELLED' | 'FULFILLED' | 'IN_PROGRESS';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { PluginRequestStatus } from '../schemas/PluginRequestStatus';
|
|
2
|
+
/**
|
|
3
|
+
* Details of the plugin being requested for V2
|
|
4
|
+
*/
|
|
5
|
+
export interface RequestPluginV2 {
|
|
6
|
+
creator: string;
|
|
7
|
+
doc_link: string;
|
|
8
|
+
identifier: string;
|
|
9
|
+
name: string;
|
|
10
|
+
package_link: string;
|
|
11
|
+
status: PluginRequestStatus;
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
* Model for storing the workflows info
|
|
3
3
|
*/
|
|
4
4
|
export interface WorkflowsInfo {
|
|
5
|
-
description
|
|
5
|
+
description?: string;
|
|
6
6
|
icon?: string;
|
|
7
7
|
kind: string;
|
|
8
8
|
name: string;
|
|
9
9
|
owner: string;
|
|
10
|
-
title
|
|
10
|
+
title?: string;
|
|
11
11
|
type: string;
|
|
12
12
|
uid: string;
|
|
13
13
|
}
|