skyflow-js 1.8.0 → 1.11.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/CHANGELOG.md +20 -0
- package/README.md +177 -2
- package/dist/sdkNodeBuild/index.js +1 -1
- package/dist/sdkNodeBuild/index.js.LICENSE.txt +27 -0
- package/dist/sdkNodeBuild/index.js.LICENSE.txt.gz +0 -0
- package/dist/sdkNodeBuild/index.js.gz +0 -0
- package/package.json +7 -4
- package/types/Skyflow.d.ts +6 -5
- package/types/{container → core}/constants.d.ts +13 -123
- package/types/{container/external/PureJsController.d.ts → core/external/SkyflowContainer.d.ts} +4 -3
- package/types/{container/external → core/external/collect}/CollectContainer.d.ts +7 -6
- package/types/{container/external/element/index.d.ts → core/external/collect/CollectElement.d.ts} +5 -3
- package/types/core/external/common/Container.d.ts +3 -0
- package/types/{container/external/element → core/external/common}/IFrame.d.ts +0 -0
- package/types/core/external/common/SkyflowElement.d.ts +9 -0
- package/types/core/external/reveal/RevealContainer.d.ts +23 -0
- package/types/{container → core}/external/reveal/RevealElement.d.ts +5 -3
- package/types/{container → core}/internal/FrameElements.d.ts +0 -0
- package/types/core/internal/SkyflowFrame/SkyflowFrameController.d.ts +10 -0
- package/types/{container → core}/internal/iFrameForm/index.d.ts +0 -0
- package/types/{container → core}/internal/index.d.ts +0 -0
- package/types/{container → core}/internal/reveal/RevealFrame.d.ts +0 -0
- package/types/{container → core}/internal/reveal/RevealFrameController.d.ts +0 -0
- package/types/{core → core-utils}/collect.d.ts +0 -0
- package/types/{core → core-utils}/reveal.d.ts +1 -0
- package/types/libs/element-options.d.ts +1 -1
- package/types/libs/objectParse.d.ts +5 -1
- package/types/utils/busEvents/index.d.ts +1 -1
- package/types/utils/common/index.d.ts +6 -0
- package/types/utils/constants.d.ts +84 -0
- package/types/utils/helpers/index.d.ts +5 -0
- package/types/utils/logs.d.ts +26 -0
- package/types/utils/validators/index.d.ts +9 -5
- package/types/container/external/RevealContainer.d.ts +0 -18
- package/types/container/internal/pureJs/PureJsFrameController.d.ts +0 -9
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import RevealElement from './reveal/RevealElement';
|
|
2
|
-
import { RedactionType } from '../../utils/common';
|
|
3
|
-
export interface IRevealElementInput {
|
|
4
|
-
token?: string;
|
|
5
|
-
redaction?: RedactionType;
|
|
6
|
-
inputStyles?: object;
|
|
7
|
-
label?: string;
|
|
8
|
-
labelStyles?: object;
|
|
9
|
-
altText?: string;
|
|
10
|
-
errorTextStyles?: object;
|
|
11
|
-
}
|
|
12
|
-
declare class RevealContainer {
|
|
13
|
-
#private;
|
|
14
|
-
constructor(metaData: any, context: any);
|
|
15
|
-
create(record: IRevealElementInput): RevealElement;
|
|
16
|
-
reveal(): Promise<unknown>;
|
|
17
|
-
}
|
|
18
|
-
export default RevealContainer;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { IConnectionConfig } from '../../../utils/common';
|
|
2
|
-
declare class PureJsFrameController {
|
|
3
|
-
#private;
|
|
4
|
-
constructor();
|
|
5
|
-
static init(): PureJsFrameController;
|
|
6
|
-
insertData(records: any, options: any): Promise<unknown>;
|
|
7
|
-
sendInvokeConnectionRequest(config: IConnectionConfig): Promise<unknown>;
|
|
8
|
-
}
|
|
9
|
-
export default PureJsFrameController;
|