fansunited-management-components 1.26.2 → 1.27.0-RC1
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/index.es.js +12033 -16446
- package/index.umd.js +187 -1192
- package/package.json +1 -1
- package/src/components/Exports/ExportUsersLeads.d.ts +18 -0
- package/src/services/https/HttpsService.d.ts +2 -0
package/package.json
CHANGED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
|
|
3
|
+
type ExportUsersLeadsProps = {
|
|
4
|
+
entityId: string;
|
|
5
|
+
entityType: string;
|
|
6
|
+
entityName: string;
|
|
7
|
+
labels: {
|
|
8
|
+
exportUsersLeads: string;
|
|
9
|
+
category: string;
|
|
10
|
+
action: string;
|
|
11
|
+
exportAllUsersLeads: string;
|
|
12
|
+
exportAllUsersLeadsDescription: string;
|
|
13
|
+
usersLeadsExportMessage: string;
|
|
14
|
+
usersLeadsExportErrorMessage: string;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
declare const ExportUsersLeads: React.FC<ExportUsersLeadsProps>;
|
|
18
|
+
export default ExportUsersLeads;
|
|
@@ -16,6 +16,7 @@ export default class HttpsService extends Https {
|
|
|
16
16
|
private miniGamesApiBaseUrl;
|
|
17
17
|
private reportingApiBaseUrl;
|
|
18
18
|
private votingApiBaseUrl;
|
|
19
|
+
private profileApiBaseUrl;
|
|
19
20
|
private customResolverUrl;
|
|
20
21
|
constructor(config: SDKConfigurationModel, sportal365Config: Sportal365Config | null);
|
|
21
22
|
getClientById: () => Promise<Response>;
|
|
@@ -56,4 +57,5 @@ export default class HttpsService extends Https {
|
|
|
56
57
|
createBracketGame: (requestBody: BracketGameRequestBody) => Promise<Response>;
|
|
57
58
|
updateBracketGame: (id: string, requestBody: BracketGameRequestBody) => Promise<Response>;
|
|
58
59
|
resolvePredictions: (gameId: string) => Promise<Response>;
|
|
60
|
+
exportLeadsPerEntity: (entityId: string) => Promise<Response>;
|
|
59
61
|
}
|