@mirantes-micro/foundation-design-system 1.2.76 → 1.2.78
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/index.d.ts +5 -5
- package/dist/index.js +58 -58
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1244,22 +1244,22 @@ interface AssetUploadBulkResponse {
|
|
|
1244
1244
|
|
|
1245
1245
|
/** POST /assets */
|
|
1246
1246
|
declare function useUploadAsset(): {
|
|
1247
|
-
uploadAssets: _tanstack_react_query.UseMutateFunction<AssetUploadResponse, Error, AssetUploadRequest, unknown>;
|
|
1247
|
+
uploadAssets: _tanstack_react_query.UseMutateFunction<AssetUploadResponse | null, Error, AssetUploadRequest, unknown>;
|
|
1248
1248
|
isUploadingAsset: boolean;
|
|
1249
1249
|
};
|
|
1250
1250
|
/** POST /assets/bulk */
|
|
1251
1251
|
declare function useUploadAssetsBulk(): {
|
|
1252
|
-
uploadAssetsBulk: _tanstack_react_query.UseMutateFunction<AssetUploadBulkResponse, Error, AssetUploadBulkRequest, unknown>;
|
|
1252
|
+
uploadAssetsBulk: _tanstack_react_query.UseMutateFunction<AssetUploadBulkResponse | null, Error, AssetUploadBulkRequest, unknown>;
|
|
1253
1253
|
isUploadingBulk: boolean;
|
|
1254
1254
|
};
|
|
1255
1255
|
/** POST /assets/signed-url */
|
|
1256
1256
|
declare function useSignedUrl(): {
|
|
1257
|
-
postSignedUrl: _tanstack_react_query.UseMutateFunction<SignedUrlResponse, Error, SignedUrlRequest, unknown>;
|
|
1257
|
+
postSignedUrl: _tanstack_react_query.UseMutateFunction<SignedUrlResponse | null, Error, SignedUrlRequest, unknown>;
|
|
1258
1258
|
isPostingSignedUrl: boolean;
|
|
1259
1259
|
};
|
|
1260
1260
|
/** GET /assets/:id/versions */
|
|
1261
1261
|
declare function useAssetVersions(assetId?: string): {
|
|
1262
|
-
assetVersions: AssetVersionsResponse | undefined;
|
|
1262
|
+
assetVersions: AssetVersionsResponse | null | undefined;
|
|
1263
1263
|
isGettingAssetVersions: boolean;
|
|
1264
1264
|
error: Error | null;
|
|
1265
1265
|
};
|
|
@@ -1267,7 +1267,7 @@ declare function useAssetVersions(assetId?: string): {
|
|
|
1267
1267
|
declare function useBestAssetVersion(assetId?: string): {
|
|
1268
1268
|
url: string | null | undefined;
|
|
1269
1269
|
isGettingUrl: boolean;
|
|
1270
|
-
error:
|
|
1270
|
+
error: any;
|
|
1271
1271
|
};
|
|
1272
1272
|
|
|
1273
1273
|
export { AddRating, AddressAutocompleteInput, AnimatedModal, AutoDownloadBanner, AvatarRatingBadge, BaseInput, Button, ChatContacts, ChatListWrapper, ChatView, ChatViewDesktopPage, CheckBoxInput, ContactsModal, CountryDisplay, CountryInput, CustomDateInput, CustomDrawer, CustomDropdown, CustomSelectInput, DateInput, DownloadMobileVersionBanner, DownloadModalTrigger, GradientModal, Header, MessageButton, MessagesButtonFromPage, MirantesButton, MirantesFoundationProvider, NoRecruitmentResponsiveIlustration, PageFloatFooter, PagesFeedTrigger, RadioButtonInput, RatingsCard, RattingSuggestionCard, ReactPostButton, ResponsiveDrawer, SalaryInputWithButton, Calendar as ScheduleCalendar, SharePostModal, ShareProfile, ShareProfileButton, ShareProfileModal, Spinner, WorkspacePanel, clearSettingsCookie, closeLogoutChannel, getInitials, getSettingsFromCookie, joinUrlWithPathAndQuery, onLogout, stringToObj, useApiGetPage, useAssetVersions, useBestAssetVersion, useCandidaciesTriggerStore, useCommunityTriggerStore, useJobTriggerStore, useLoadSettings, useMirantesFoundation, useModalStore, useOportunitiesStore, usePeriodicDownloadBanner, useRestorePendingChat, useSetChatVisibility, useSignedUrl, useUploadAsset, useUploadAssetsBulk };
|