aquasis-fe-components 1.0.1-d → 1.0.1-e
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/aquasis-fe-components.js +5682 -5677
- package/dist/aquasis-fe-components.umd.cjs +94 -94
- package/dist/src/lib/ReleaseNote/CreateReleaseNote/index.d.ts +2 -0
- package/dist/src/lib/ReleaseNote/ReleaseNoteConnector.d.ts +1 -0
- package/dist/src/reactQuery/index.d.ts +2 -2
- package/dist/src/services/releaseNoteServices.d.ts +2 -2
- package/dist/src/types/releaseNotes.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import { IReleaseNote } from '../../../types/releaseNotes';
|
|
1
2
|
import { FC } from 'react';
|
|
2
3
|
export interface CreateReleaseNoteProps {
|
|
3
4
|
addBtnLabel?: string;
|
|
4
5
|
addBtnTooltipText?: string;
|
|
6
|
+
release2edit?: IReleaseNote;
|
|
5
7
|
}
|
|
6
8
|
export declare const CreateReleaseNote: FC<CreateReleaseNoteProps>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
declare const ReleaseNotesConnector: import('react-redux').ConnectedComponent<import('react').FC<import('.').ReleaseNoteProps>, {
|
|
2
2
|
addBtnLabel?: string | undefined;
|
|
3
3
|
addBtnTooltipText?: string | undefined;
|
|
4
|
+
release2edit?: import('../../types/releaseNotes').IReleaseNote | undefined;
|
|
4
5
|
showAddBtn?: boolean | undefined;
|
|
5
6
|
context?: import('react').Context<import('react-redux').ReactReduxContextValue<any, import('redux').UnknownAction> | null> | undefined;
|
|
6
7
|
store?: import('redux').Store | undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IApp } from '../types/app';
|
|
2
|
-
import { GetReleaseNotePayload,
|
|
2
|
+
import { GetReleaseNotePayload, IReleaseNote } from '../types/releaseNotes';
|
|
3
3
|
import { AxiosError } from 'axios';
|
|
4
4
|
export declare const useGetApps: () => import('react-query').UseQueryResult<IApp[], AxiosError<unknown, any>>;
|
|
5
|
-
export declare const useGetReleases: (payload: GetReleaseNotePayload) => import('react-query').UseQueryResult<
|
|
5
|
+
export declare const useGetReleases: (payload: GetReleaseNotePayload) => import('react-query').UseQueryResult<IReleaseNote[], AxiosError<unknown, any>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GetReleaseNotePayload,
|
|
2
|
-
export declare const getReleases: (payload: GetReleaseNotePayload) => Promise<
|
|
1
|
+
import { GetReleaseNotePayload, IReleaseNote, ReleaseNotesPayload } from '../types/releaseNotes';
|
|
2
|
+
export declare const getReleases: (payload: GetReleaseNotePayload) => Promise<IReleaseNote[]>;
|
|
3
3
|
export declare const maintainReleaseNote: (payload: ReleaseNotesPayload) => Promise<any>;
|
|
4
4
|
export declare const applyDoNotShowAgain: (idRelease: number, userId: string) => Promise<any>;
|
|
@@ -29,7 +29,7 @@ export interface ReleaseNotesPayload extends ReleaseNotesFormValues {
|
|
|
29
29
|
idRelease?: number;
|
|
30
30
|
isDeployed?: boolean;
|
|
31
31
|
}
|
|
32
|
-
export interface
|
|
32
|
+
export interface IReleaseNote extends ReleaseNotesPayload {
|
|
33
33
|
readRelease: boolean;
|
|
34
34
|
}
|
|
35
35
|
export interface MaintainReleaseNoteError {
|