@mirantes-micro/foundation-design-system 1.0.87 → 1.0.88

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 CHANGED
@@ -34,7 +34,7 @@ interface IMirantesFoundationProviderProps {
34
34
  profileApiUrl?: string;
35
35
  billingApiUrl?: string;
36
36
  multicaixaExpressUrl?: string;
37
- multicaixaApiUrl?: string;
37
+ stripeKey?: string;
38
38
  socketApiUrl?: string;
39
39
  chatApiUrl?: string;
40
40
  chatForPage?: boolean;
@@ -61,7 +61,7 @@ interface IMirantesFoundationContext {
61
61
  chatApiUrl?: string;
62
62
  billingApiUrl?: string;
63
63
  multicaixaExpressUrl?: string;
64
- multicaixaApiUrl?: string;
64
+ stripeKey?: string;
65
65
  chatForPage?: boolean;
66
66
  environment?: string;
67
67
  socketApiUrl?: string;
@@ -101,6 +101,7 @@ type User = {
101
101
  name: string;
102
102
  email: string;
103
103
  phone: string;
104
+ currentCompany?: string;
104
105
  isOpenToWork: boolean;
105
106
  avatar: string;
106
107
  accessToken: string;
@@ -116,7 +117,7 @@ type User = {
116
117
  type LinkComponent = (props: CommonLinkProps) => any;
117
118
  type UsePathname = () => string;
118
119
 
119
- declare function MirantesFoundationProvider({ children, Notification, queryClient, onOpenCreatePostModal, values: { chatApiUrl, chatForPage, locale, Link, usePathname, user, isGettingUser, mirantesDomain, environment, feedApi, widgetsApi, hostUrl, isDev, profileApiUrl, isGettingStats, openCageApiKey, pageId, authedApi, authApiUrl, socketApiUrl, uploadFilesApi, page, ocpSubscriptionKey, billingApiUrl, multicaixaExpressUrl }, }: IMirantesFoundationProviderProps): React__default.JSX.Element;
120
+ declare function MirantesFoundationProvider({ children, Notification, queryClient, onOpenCreatePostModal, values: { chatApiUrl, chatForPage, locale, Link, usePathname, user, isGettingUser, mirantesDomain, environment, feedApi, widgetsApi, hostUrl, isDev, profileApiUrl, isGettingStats, openCageApiKey, pageId, authedApi, authApiUrl, socketApiUrl, uploadFilesApi, page, ocpSubscriptionKey, billingApiUrl, multicaixaExpressUrl, stripeKey }, }: IMirantesFoundationProviderProps): React__default.JSX.Element;
120
121
 
121
122
  declare function WorkspacePanel(): React__default.JSX.Element;
122
123