@aws-sdk/client-amplifyuibuilder 3.296.0 → 3.298.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-cjs/commands/CreateComponentCommand.js +2 -3
- package/dist-cjs/commands/CreateFormCommand.js +2 -3
- package/dist-cjs/commands/CreateThemeCommand.js +2 -3
- package/dist-cjs/commands/DeleteComponentCommand.js +2 -3
- package/dist-cjs/commands/DeleteFormCommand.js +2 -3
- package/dist-cjs/commands/DeleteThemeCommand.js +2 -3
- package/dist-cjs/commands/ExportComponentsCommand.js +2 -3
- package/dist-cjs/commands/ExportFormsCommand.js +2 -3
- package/dist-cjs/commands/ExportThemesCommand.js +2 -3
- package/dist-cjs/commands/GetComponentCommand.js +2 -3
- package/dist-cjs/commands/GetFormCommand.js +2 -3
- package/dist-cjs/commands/GetMetadataCommand.js +2 -3
- package/dist-cjs/commands/GetThemeCommand.js +2 -3
- package/dist-cjs/commands/ListComponentsCommand.js +2 -3
- package/dist-cjs/commands/ListFormsCommand.js +2 -3
- package/dist-cjs/commands/ListThemesCommand.js +2 -3
- package/dist-cjs/commands/PutMetadataFlagCommand.js +2 -3
- package/dist-cjs/commands/UpdateComponentCommand.js +2 -3
- package/dist-cjs/commands/UpdateFormCommand.js +2 -3
- package/dist-cjs/commands/UpdateThemeCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -365
- package/dist-es/commands/CreateComponentCommand.js +2 -3
- package/dist-es/commands/CreateFormCommand.js +2 -3
- package/dist-es/commands/CreateThemeCommand.js +2 -3
- package/dist-es/commands/DeleteComponentCommand.js +2 -3
- package/dist-es/commands/DeleteFormCommand.js +2 -3
- package/dist-es/commands/DeleteThemeCommand.js +2 -3
- package/dist-es/commands/ExportComponentsCommand.js +2 -3
- package/dist-es/commands/ExportFormsCommand.js +2 -3
- package/dist-es/commands/ExportThemesCommand.js +2 -3
- package/dist-es/commands/GetComponentCommand.js +2 -3
- package/dist-es/commands/GetFormCommand.js +2 -3
- package/dist-es/commands/GetMetadataCommand.js +2 -3
- package/dist-es/commands/GetThemeCommand.js +2 -3
- package/dist-es/commands/ListComponentsCommand.js +2 -3
- package/dist-es/commands/ListFormsCommand.js +2 -3
- package/dist-es/commands/ListThemesCommand.js +2 -3
- package/dist-es/commands/PutMetadataFlagCommand.js +2 -3
- package/dist-es/commands/UpdateComponentCommand.js +2 -3
- package/dist-es/commands/UpdateFormCommand.js +2 -3
- package/dist-es/commands/UpdateThemeCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -285
- package/dist-types/AmplifyUIBuilder.d.ts +23 -0
- package/dist-types/AmplifyUIBuilderClient.d.ts +24 -4
- package/dist-types/commands/CreateComponentCommand.d.ts +16 -0
- package/dist-types/commands/CreateFormCommand.d.ts +16 -0
- package/dist-types/commands/CreateThemeCommand.d.ts +16 -0
- package/dist-types/commands/DeleteComponentCommand.d.ts +16 -0
- package/dist-types/commands/DeleteFormCommand.d.ts +16 -0
- package/dist-types/commands/DeleteThemeCommand.d.ts +16 -0
- package/dist-types/commands/ExchangeCodeForTokenCommand.d.ts +16 -0
- package/dist-types/commands/ExportComponentsCommand.d.ts +16 -0
- package/dist-types/commands/ExportFormsCommand.d.ts +16 -0
- package/dist-types/commands/ExportThemesCommand.d.ts +16 -0
- package/dist-types/commands/GetComponentCommand.d.ts +16 -0
- package/dist-types/commands/GetFormCommand.d.ts +16 -0
- package/dist-types/commands/GetMetadataCommand.d.ts +16 -0
- package/dist-types/commands/GetThemeCommand.d.ts +16 -0
- package/dist-types/commands/ListComponentsCommand.d.ts +16 -0
- package/dist-types/commands/ListFormsCommand.d.ts +16 -0
- package/dist-types/commands/ListThemesCommand.d.ts +16 -0
- package/dist-types/commands/PutMetadataFlagCommand.d.ts +16 -0
- package/dist-types/commands/RefreshTokenCommand.d.ts +16 -0
- package/dist-types/commands/UpdateComponentCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFormCommand.d.ts +16 -0
- package/dist-types/commands/UpdateThemeCommand.d.ts +16 -0
- package/dist-types/models/AmplifyUIBuilderServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +194 -312
- package/dist-types/pagination/ExportComponentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ExportFormsPaginator.d.ts +3 -0
- package/dist-types/pagination/ExportThemesPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListComponentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListFormsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListThemesPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -206
- package/package.json +4 -3
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ExportComponentsCommandInput, ExportComponentsCommandOutput } from "../commands/ExportComponentsCommand";
|
|
3
3
|
import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateExportComponents(config: AmplifyUIBuilderPaginationConfiguration, input: ExportComponentsCommandInput, ...additionalArguments: any): Paginator<ExportComponentsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ExportFormsCommandInput, ExportFormsCommandOutput } from "../commands/ExportFormsCommand";
|
|
3
3
|
import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateExportForms(config: AmplifyUIBuilderPaginationConfiguration, input: ExportFormsCommandInput, ...additionalArguments: any): Paginator<ExportFormsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ExportThemesCommandInput, ExportThemesCommandOutput } from "../commands/ExportThemesCommand";
|
|
3
3
|
import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateExportThemes(config: AmplifyUIBuilderPaginationConfiguration, input: ExportThemesCommandInput, ...additionalArguments: any): Paginator<ExportThemesCommandOutput>;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
2
|
import { AmplifyUIBuilderClient } from "../AmplifyUIBuilderClient";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export interface AmplifyUIBuilderPaginationConfiguration extends PaginationConfiguration {
|
|
4
7
|
client: AmplifyUIBuilderClient;
|
|
5
8
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListComponentsCommandInput, ListComponentsCommandOutput } from "../commands/ListComponentsCommand";
|
|
3
3
|
import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListComponents(config: AmplifyUIBuilderPaginationConfiguration, input: ListComponentsCommandInput, ...additionalArguments: any): Paginator<ListComponentsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListFormsCommandInput, ListFormsCommandOutput } from "../commands/ListFormsCommand";
|
|
3
3
|
import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListForms(config: AmplifyUIBuilderPaginationConfiguration, input: ListFormsCommandInput, ...additionalArguments: any): Paginator<ListFormsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListThemesCommandInput, ListThemesCommandOutput } from "../commands/ListThemesCommand";
|
|
3
3
|
import { AmplifyUIBuilderPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListThemes(config: AmplifyUIBuilderPaginationConfiguration, input: ListThemesCommandInput, ...additionalArguments: any): Paginator<ListThemesCommandOutput>;
|
|
@@ -624,34 +624,6 @@ export interface ExportComponentsResponse {
|
|
|
624
624
|
entities: Component[] | undefined;
|
|
625
625
|
nextToken?: string;
|
|
626
626
|
}
|
|
627
|
-
export declare const ComponentPropertyBindingPropertiesFilterSensitiveLog: (
|
|
628
|
-
obj: ComponentPropertyBindingProperties
|
|
629
|
-
) => any;
|
|
630
|
-
export declare const FormBindingElementFilterSensitiveLog: (
|
|
631
|
-
obj: FormBindingElement
|
|
632
|
-
) => any;
|
|
633
|
-
export declare const SortPropertyFilterSensitiveLog: (obj: SortProperty) => any;
|
|
634
|
-
export declare const ComponentVariantFilterSensitiveLog: (
|
|
635
|
-
obj: ComponentVariant
|
|
636
|
-
) => any;
|
|
637
|
-
export declare const DeleteComponentRequestFilterSensitiveLog: (
|
|
638
|
-
obj: DeleteComponentRequest
|
|
639
|
-
) => any;
|
|
640
|
-
export declare const ExportComponentsRequestFilterSensitiveLog: (
|
|
641
|
-
obj: ExportComponentsRequest
|
|
642
|
-
) => any;
|
|
643
|
-
export declare const GetComponentRequestFilterSensitiveLog: (
|
|
644
|
-
obj: GetComponentRequest
|
|
645
|
-
) => any;
|
|
646
|
-
export declare const ListComponentsRequestFilterSensitiveLog: (
|
|
647
|
-
obj: ListComponentsRequest
|
|
648
|
-
) => any;
|
|
649
|
-
export declare const ComponentSummaryFilterSensitiveLog: (
|
|
650
|
-
obj: ComponentSummary
|
|
651
|
-
) => any;
|
|
652
|
-
export declare const ListComponentsResponseFilterSensitiveLog: (
|
|
653
|
-
obj: ListComponentsResponse
|
|
654
|
-
) => any;
|
|
655
627
|
export declare const ExchangeCodeForTokenRequestBodyFilterSensitiveLog: (
|
|
656
628
|
obj: ExchangeCodeForTokenRequestBody
|
|
657
629
|
) => any;
|
|
@@ -661,88 +633,6 @@ export declare const ExchangeCodeForTokenRequestFilterSensitiveLog: (
|
|
|
661
633
|
export declare const ExchangeCodeForTokenResponseFilterSensitiveLog: (
|
|
662
634
|
obj: ExchangeCodeForTokenResponse
|
|
663
635
|
) => any;
|
|
664
|
-
export declare const FieldPositionFilterSensitiveLog: (
|
|
665
|
-
obj: FieldPosition
|
|
666
|
-
) => any;
|
|
667
|
-
export declare const FormButtonFilterSensitiveLog: (obj: FormButton) => any;
|
|
668
|
-
export declare const FormCTAFilterSensitiveLog: (obj: FormCTA) => any;
|
|
669
|
-
export declare const FormDataTypeConfigFilterSensitiveLog: (
|
|
670
|
-
obj: FormDataTypeConfig
|
|
671
|
-
) => any;
|
|
672
|
-
export declare const FormInputValuePropertyFilterSensitiveLog: (
|
|
673
|
-
obj: FormInputValueProperty
|
|
674
|
-
) => any;
|
|
675
|
-
export declare const ValueMappingFilterSensitiveLog: (obj: ValueMapping) => any;
|
|
676
|
-
export declare const ValueMappingsFilterSensitiveLog: (
|
|
677
|
-
obj: ValueMappings
|
|
678
|
-
) => any;
|
|
679
|
-
export declare const FieldInputConfigFilterSensitiveLog: (
|
|
680
|
-
obj: FieldInputConfig
|
|
681
|
-
) => any;
|
|
682
|
-
export declare const FieldValidationConfigurationFilterSensitiveLog: (
|
|
683
|
-
obj: FieldValidationConfiguration
|
|
684
|
-
) => any;
|
|
685
|
-
export declare const FieldConfigFilterSensitiveLog: (obj: FieldConfig) => any;
|
|
686
|
-
export declare const SectionalElementFilterSensitiveLog: (
|
|
687
|
-
obj: SectionalElement
|
|
688
|
-
) => any;
|
|
689
|
-
export declare const FormStyleConfigFilterSensitiveLog: (
|
|
690
|
-
obj: FormStyleConfig
|
|
691
|
-
) => any;
|
|
692
|
-
export declare const FormStyleFilterSensitiveLog: (obj: FormStyle) => any;
|
|
693
|
-
export declare const CreateFormDataFilterSensitiveLog: (
|
|
694
|
-
obj: CreateFormData
|
|
695
|
-
) => any;
|
|
696
|
-
export declare const CreateFormRequestFilterSensitiveLog: (
|
|
697
|
-
obj: CreateFormRequest
|
|
698
|
-
) => any;
|
|
699
|
-
export declare const FormFilterSensitiveLog: (obj: Form) => any;
|
|
700
|
-
export declare const CreateFormResponseFilterSensitiveLog: (
|
|
701
|
-
obj: CreateFormResponse
|
|
702
|
-
) => any;
|
|
703
|
-
export declare const DeleteFormRequestFilterSensitiveLog: (
|
|
704
|
-
obj: DeleteFormRequest
|
|
705
|
-
) => any;
|
|
706
|
-
export declare const ExportFormsRequestFilterSensitiveLog: (
|
|
707
|
-
obj: ExportFormsRequest
|
|
708
|
-
) => any;
|
|
709
|
-
export declare const ExportFormsResponseFilterSensitiveLog: (
|
|
710
|
-
obj: ExportFormsResponse
|
|
711
|
-
) => any;
|
|
712
|
-
export declare const GetFormRequestFilterSensitiveLog: (
|
|
713
|
-
obj: GetFormRequest
|
|
714
|
-
) => any;
|
|
715
|
-
export declare const GetFormResponseFilterSensitiveLog: (
|
|
716
|
-
obj: GetFormResponse
|
|
717
|
-
) => any;
|
|
718
|
-
export declare const ListFormsRequestFilterSensitiveLog: (
|
|
719
|
-
obj: ListFormsRequest
|
|
720
|
-
) => any;
|
|
721
|
-
export declare const FormSummaryFilterSensitiveLog: (obj: FormSummary) => any;
|
|
722
|
-
export declare const ListFormsResponseFilterSensitiveLog: (
|
|
723
|
-
obj: ListFormsResponse
|
|
724
|
-
) => any;
|
|
725
|
-
export declare const UpdateFormDataFilterSensitiveLog: (
|
|
726
|
-
obj: UpdateFormData
|
|
727
|
-
) => any;
|
|
728
|
-
export declare const UpdateFormRequestFilterSensitiveLog: (
|
|
729
|
-
obj: UpdateFormRequest
|
|
730
|
-
) => any;
|
|
731
|
-
export declare const UpdateFormResponseFilterSensitiveLog: (
|
|
732
|
-
obj: UpdateFormResponse
|
|
733
|
-
) => any;
|
|
734
|
-
export declare const GetMetadataRequestFilterSensitiveLog: (
|
|
735
|
-
obj: GetMetadataRequest
|
|
736
|
-
) => any;
|
|
737
|
-
export declare const GetMetadataResponseFilterSensitiveLog: (
|
|
738
|
-
obj: GetMetadataResponse
|
|
739
|
-
) => any;
|
|
740
|
-
export declare const PutMetadataFlagBodyFilterSensitiveLog: (
|
|
741
|
-
obj: PutMetadataFlagBody
|
|
742
|
-
) => any;
|
|
743
|
-
export declare const PutMetadataFlagRequestFilterSensitiveLog: (
|
|
744
|
-
obj: PutMetadataFlagRequest
|
|
745
|
-
) => any;
|
|
746
636
|
export declare const RefreshTokenRequestBodyFilterSensitiveLog: (
|
|
747
637
|
obj: RefreshTokenRequestBody
|
|
748
638
|
) => any;
|
|
@@ -752,99 +642,3 @@ export declare const RefreshTokenRequestFilterSensitiveLog: (
|
|
|
752
642
|
export declare const RefreshTokenResponseFilterSensitiveLog: (
|
|
753
643
|
obj: RefreshTokenResponse
|
|
754
644
|
) => any;
|
|
755
|
-
export declare const DeleteThemeRequestFilterSensitiveLog: (
|
|
756
|
-
obj: DeleteThemeRequest
|
|
757
|
-
) => any;
|
|
758
|
-
export declare const ExportThemesRequestFilterSensitiveLog: (
|
|
759
|
-
obj: ExportThemesRequest
|
|
760
|
-
) => any;
|
|
761
|
-
export declare const GetThemeRequestFilterSensitiveLog: (
|
|
762
|
-
obj: GetThemeRequest
|
|
763
|
-
) => any;
|
|
764
|
-
export declare const ListThemesRequestFilterSensitiveLog: (
|
|
765
|
-
obj: ListThemesRequest
|
|
766
|
-
) => any;
|
|
767
|
-
export declare const ThemeSummaryFilterSensitiveLog: (obj: ThemeSummary) => any;
|
|
768
|
-
export declare const ListThemesResponseFilterSensitiveLog: (
|
|
769
|
-
obj: ListThemesResponse
|
|
770
|
-
) => any;
|
|
771
|
-
export declare const ThemeValueFilterSensitiveLog: (obj: ThemeValue) => any;
|
|
772
|
-
export declare const ThemeValuesFilterSensitiveLog: (obj: ThemeValues) => any;
|
|
773
|
-
export declare const PredicateFilterSensitiveLog: (obj: Predicate) => any;
|
|
774
|
-
export declare const ComponentBindingPropertiesValuePropertiesFilterSensitiveLog: (
|
|
775
|
-
obj: ComponentBindingPropertiesValueProperties
|
|
776
|
-
) => any;
|
|
777
|
-
export declare const ComponentDataConfigurationFilterSensitiveLog: (
|
|
778
|
-
obj: ComponentDataConfiguration
|
|
779
|
-
) => any;
|
|
780
|
-
export declare const ComponentPropertyFilterSensitiveLog: (
|
|
781
|
-
obj: ComponentProperty
|
|
782
|
-
) => any;
|
|
783
|
-
export declare const ComponentBindingPropertiesValueFilterSensitiveLog: (
|
|
784
|
-
obj: ComponentBindingPropertiesValue
|
|
785
|
-
) => any;
|
|
786
|
-
export declare const CreateThemeDataFilterSensitiveLog: (
|
|
787
|
-
obj: CreateThemeData
|
|
788
|
-
) => any;
|
|
789
|
-
export declare const ThemeFilterSensitiveLog: (obj: Theme) => any;
|
|
790
|
-
export declare const UpdateThemeDataFilterSensitiveLog: (
|
|
791
|
-
obj: UpdateThemeData
|
|
792
|
-
) => any;
|
|
793
|
-
export declare const MutationActionSetStateParameterFilterSensitiveLog: (
|
|
794
|
-
obj: MutationActionSetStateParameter
|
|
795
|
-
) => any;
|
|
796
|
-
export declare const ComponentConditionPropertyFilterSensitiveLog: (
|
|
797
|
-
obj: ComponentConditionProperty
|
|
798
|
-
) => any;
|
|
799
|
-
export declare const CreateThemeRequestFilterSensitiveLog: (
|
|
800
|
-
obj: CreateThemeRequest
|
|
801
|
-
) => any;
|
|
802
|
-
export declare const CreateThemeResponseFilterSensitiveLog: (
|
|
803
|
-
obj: CreateThemeResponse
|
|
804
|
-
) => any;
|
|
805
|
-
export declare const GetThemeResponseFilterSensitiveLog: (
|
|
806
|
-
obj: GetThemeResponse
|
|
807
|
-
) => any;
|
|
808
|
-
export declare const UpdateThemeRequestFilterSensitiveLog: (
|
|
809
|
-
obj: UpdateThemeRequest
|
|
810
|
-
) => any;
|
|
811
|
-
export declare const UpdateThemeResponseFilterSensitiveLog: (
|
|
812
|
-
obj: UpdateThemeResponse
|
|
813
|
-
) => any;
|
|
814
|
-
export declare const ExportThemesResponseFilterSensitiveLog: (
|
|
815
|
-
obj: ExportThemesResponse
|
|
816
|
-
) => any;
|
|
817
|
-
export declare const ActionParametersFilterSensitiveLog: (
|
|
818
|
-
obj: ActionParameters
|
|
819
|
-
) => any;
|
|
820
|
-
export declare const ComponentEventFilterSensitiveLog: (
|
|
821
|
-
obj: ComponentEvent
|
|
822
|
-
) => any;
|
|
823
|
-
export declare const ComponentChildFilterSensitiveLog: (
|
|
824
|
-
obj: ComponentChild
|
|
825
|
-
) => any;
|
|
826
|
-
export declare const ComponentFilterSensitiveLog: (obj: Component) => any;
|
|
827
|
-
export declare const CreateComponentDataFilterSensitiveLog: (
|
|
828
|
-
obj: CreateComponentData
|
|
829
|
-
) => any;
|
|
830
|
-
export declare const UpdateComponentDataFilterSensitiveLog: (
|
|
831
|
-
obj: UpdateComponentData
|
|
832
|
-
) => any;
|
|
833
|
-
export declare const CreateComponentRequestFilterSensitiveLog: (
|
|
834
|
-
obj: CreateComponentRequest
|
|
835
|
-
) => any;
|
|
836
|
-
export declare const CreateComponentResponseFilterSensitiveLog: (
|
|
837
|
-
obj: CreateComponentResponse
|
|
838
|
-
) => any;
|
|
839
|
-
export declare const GetComponentResponseFilterSensitiveLog: (
|
|
840
|
-
obj: GetComponentResponse
|
|
841
|
-
) => any;
|
|
842
|
-
export declare const UpdateComponentRequestFilterSensitiveLog: (
|
|
843
|
-
obj: UpdateComponentRequest
|
|
844
|
-
) => any;
|
|
845
|
-
export declare const UpdateComponentResponseFilterSensitiveLog: (
|
|
846
|
-
obj: UpdateComponentResponse
|
|
847
|
-
) => any;
|
|
848
|
-
export declare const ExportComponentsResponseFilterSensitiveLog: (
|
|
849
|
-
obj: ExportComponentsResponse
|
|
850
|
-
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-amplifyuibuilder",
|
|
3
3
|
"description": "AWS SDK for JavaScript Amplifyuibuilder Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.298.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"build:types": "tsc -p tsconfig.types.json",
|
|
12
12
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
13
13
|
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
|
|
14
|
+
"extract:docs": "api-extractor run --local",
|
|
14
15
|
"generate:client": "node ../../scripts/generate-clients/single-service --solo amplifyuibuilder"
|
|
15
16
|
},
|
|
16
17
|
"main": "./dist-cjs/index.js",
|
|
@@ -20,9 +21,9 @@
|
|
|
20
21
|
"dependencies": {
|
|
21
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.298.0",
|
|
24
25
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.298.0",
|
|
26
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|