fansunited-management-components 1.56.0-RC4 → 1.56.0-RC6
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/dev/App.d.ts.map +1 -1
- package/index.es.js +10984 -10176
- package/index.umd.js +192 -192
- package/package.json +1 -1
- package/src/components/Buttons/HeaderButtons.d.ts +4 -1
- package/src/components/Buttons/HeaderButtons.d.ts.map +1 -1
- package/src/components/Modals/AIGeneration/FootballPostMatch/GenerateFootballPostMatchModal.d.ts +53 -0
- package/src/components/Modals/AIGeneration/FootballPostMatch/GenerateFootballPostMatchModal.d.ts.map +1 -0
- package/src/components/Modals/AIGeneration/FootballPostMatch/MainSheet.d.ts +60 -0
- package/src/components/Modals/AIGeneration/FootballPostMatch/MainSheet.d.ts.map +1 -0
- package/src/components/Modals/AIGeneration/Formula1PostEvent/Formula1PostEvent.d.ts +6 -0
- package/src/components/Modals/AIGeneration/Formula1PostEvent/Formula1PostEvent.d.ts.map +1 -0
- package/src/components/Select/SearchSelect/TeamsSearchSelect.d.ts +4 -1
- package/src/components/Select/SearchSelect/TeamsSearchSelect.d.ts.map +1 -1
- package/src/constants/components.d.ts +50 -2
- package/src/constants/components.d.ts.map +1 -1
- package/src/context/ComponentContext.d.ts +42 -2
- package/src/context/ComponentContext.d.ts.map +1 -1
- package/src/hooks/useMatches.d.ts +23 -0
- package/src/hooks/useMatches.d.ts.map +1 -0
- package/src/models/ai/AiPostMatchQuizParams.d.ts.map +1 -1
- package/src/models/voting/AIPollGenerated.d.ts +15 -0
- package/src/models/voting/AIPollGenerated.d.ts.map +1 -0
- package/src/services/https/HttpsService.d.ts.map +1 -1
- package/src/types/types.d.ts +1 -1
- package/src/types/types.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
import { AIGenerateIdType } from '../../types/types';
|
|
2
|
+
import { EntityType } from '../../models/related/RelatedEntityRelationship';
|
|
2
3
|
|
|
3
4
|
type HeaderButtonsProps = {
|
|
4
5
|
createLabel: string;
|
|
5
6
|
createFromTemplateLabel?: string;
|
|
6
7
|
signOutLabel: string;
|
|
8
|
+
entityType: EntityType;
|
|
7
9
|
generateLabels?: {
|
|
8
10
|
generateAIEntityLabel: string;
|
|
9
|
-
|
|
11
|
+
generateFootballPostMatchLabel: string;
|
|
12
|
+
generateFormula1PostEventLabel: string;
|
|
10
13
|
generateFootballQuizLabel: string;
|
|
11
14
|
generateFormula1QuizLabel: string;
|
|
12
15
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HeaderButtons.d.ts","sourceRoot":"","sources":["../../../../src/components/Buttons/HeaderButtons.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"HeaderButtons.d.ts","sourceRoot":"","sources":["../../../../src/components/Buttons/HeaderButtons.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AACrD,OAAO,EAAE,UAAU,EAAE,MAAM,gDAAgD,CAAC;AAsB5E,KAAK,kBAAkB,GAAG;IACzB,WAAW,EAAE,MAAM,CAAC;IACpB,uBAAuB,CAAC,EAAE,MAAM,CAAC;IACjC,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,UAAU,CAAC;IACvB,cAAc,CAAC,EAAE;QAChB,qBAAqB,EAAE,MAAM,CAAC;QAC9B,8BAA8B,EAAE,MAAM,CAAC;QACvC,8BAA8B,EAAE,MAAM,CAAC;QACvC,yBAAyB,EAAE,MAAM,CAAC;QAClC,yBAAyB,EAAE,MAAM,CAAC;KAClC,CAAC;IACF,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,MAAM,IAAI,CAAC;IAC1B,yBAAyB,CAAC,EAAE,MAAM,IAAI,CAAC;IACvC,eAAe,CAAC,EAAE,CAAC,UAAU,EAAE,gBAAgB,KAAK,IAAI,CAAC;CACzD,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,QAAA,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CA+F/C,CAAC;AAEF,eAAe,aAAa,CAAC"}
|
package/src/components/Modals/AIGeneration/FootballPostMatch/GenerateFootballPostMatchModal.d.ts
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { EntityType } from '../../../../models/related/RelatedEntityRelationship';
|
|
2
|
+
import { default as React } from 'react';
|
|
3
|
+
|
|
4
|
+
type GeneratePostMatchEntityModalProps = {
|
|
5
|
+
entityType: EntityType;
|
|
6
|
+
isOpen: boolean;
|
|
7
|
+
toggleModal: () => void;
|
|
8
|
+
defaultLanguage: string | null;
|
|
9
|
+
competitionsScope: string[];
|
|
10
|
+
labels: {
|
|
11
|
+
generateFootballPostMatchModalTitle: string;
|
|
12
|
+
generateFormulaOnePostEventModalTitle: string;
|
|
13
|
+
close: string;
|
|
14
|
+
fromDate: string;
|
|
15
|
+
toDate: string;
|
|
16
|
+
teamsSelectionPlaceholder?: string;
|
|
17
|
+
searchTeamsErrorMessage: string;
|
|
18
|
+
language: string;
|
|
19
|
+
targetLanguageDescription: string;
|
|
20
|
+
searchMatch: string;
|
|
21
|
+
preview: string;
|
|
22
|
+
create: string;
|
|
23
|
+
useFramingGuidelinesLabel: string;
|
|
24
|
+
onEntityGenerateErrorMessage: string;
|
|
25
|
+
onEntityCreateMessage: string;
|
|
26
|
+
onEntityCreateErrorMessage: string;
|
|
27
|
+
noPreviewAvailable: string;
|
|
28
|
+
questions: string;
|
|
29
|
+
engagementScore: string;
|
|
30
|
+
notAvailableLabel: string;
|
|
31
|
+
expand: string;
|
|
32
|
+
noMatchesFound: string;
|
|
33
|
+
page: string;
|
|
34
|
+
of: string;
|
|
35
|
+
total: string;
|
|
36
|
+
generate: string;
|
|
37
|
+
regenerate: string;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
/**
|
|
41
|
+
* Modal for generating AI-powered content (quizzes or polls) based on football post-match data.
|
|
42
|
+
* Provides a two-step workflow: match search/filtering and content preview/generation.
|
|
43
|
+
*
|
|
44
|
+
* @property {EntityType} entityType - Type of entity to generate ('classic_quiz' or 'poll').
|
|
45
|
+
* @property {boolean} isOpen - Controls modal visibility.
|
|
46
|
+
* @property {() => void} toggleModal - Function to toggle modal open/closed state.
|
|
47
|
+
* @property {string | null} defaultLanguage - Default language code for content generation.
|
|
48
|
+
* @property {string[]} competitionsScope - Array of competition IDs for filtering matches.
|
|
49
|
+
* @property {object} labels - Localized text labels for all UI elements.
|
|
50
|
+
*/
|
|
51
|
+
declare const GenerateFootballPostMatchModal: React.FC<GeneratePostMatchEntityModalProps>;
|
|
52
|
+
export default GenerateFootballPostMatchModal;
|
|
53
|
+
//# sourceMappingURL=GenerateFootballPostMatchModal.d.ts.map
|
package/src/components/Modals/AIGeneration/FootballPostMatch/GenerateFootballPostMatchModal.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GenerateFootballPostMatchModal.d.ts","sourceRoot":"","sources":["../../../../../../src/components/Modals/AIGeneration/FootballPostMatch/GenerateFootballPostMatchModal.tsx"],"names":[],"mappings":"AAwBA,OAAO,EAAE,UAAU,EAAE,MAAM,sDAAsD,CAAC;AAClF,OAAO,KAAK,MAAM,OAAO,CAAC;AAuH1B,KAAK,iCAAiC,GAAG;IACxC,UAAU,EAAE,UAAU,CAAC;IACvB,MAAM,EAAE,OAAO,CAAC;IAChB,WAAW,EAAE,MAAM,IAAI,CAAC;IACxB,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B,iBAAiB,EAAE,MAAM,EAAE,CAAC;IAC5B,MAAM,EAAE;QACP,mCAAmC,EAAE,MAAM,CAAC;QAC5C,qCAAqC,EAAE,MAAM,CAAC;QAC9C,KAAK,EAAE,MAAM,CAAC;QACd,QAAQ,EAAE,MAAM,CAAC;QACjB,MAAM,EAAE,MAAM,CAAC;QACf,yBAAyB,CAAC,EAAE,MAAM,CAAC;QACnC,uBAAuB,EAAE,MAAM,CAAC;QAChC,QAAQ,EAAE,MAAM,CAAC;QACjB,yBAAyB,EAAE,MAAM,CAAC;QAClC,WAAW,EAAE,MAAM,CAAC;QACpB,OAAO,EAAE,MAAM,CAAC;QAChB,MAAM,EAAE,MAAM,CAAC;QACf,yBAAyB,EAAE,MAAM,CAAC;QAClC,4BAA4B,EAAE,MAAM,CAAC;QACrC,qBAAqB,EAAE,MAAM,CAAC;QAC9B,0BAA0B,EAAE,MAAM,CAAC;QAEnC,kBAAkB,EAAE,MAAM,CAAC;QAC3B,SAAS,EAAE,MAAM,CAAC;QAClB,eAAe,EAAE,MAAM,CAAC;QACxB,iBAAiB,EAAE,MAAM,CAAC;QAC1B,MAAM,EAAE,MAAM,CAAC;QACf,cAAc,EAAE,MAAM,CAAC;QACvB,IAAI,EAAE,MAAM,CAAC;QACb,EAAE,EAAE,MAAM,CAAC;QACX,KAAK,EAAE,MAAM,CAAC;QACd,QAAQ,EAAE,MAAM,CAAC;QACjB,UAAU,EAAE,MAAM,CAAC;KACnB,CAAC;CACF,CAAC;AAEF;;;;;;;;;;GAUG;AACH,QAAA,MAAM,8BAA8B,EAAE,KAAK,CAAC,EAAE,CAAC,iCAAiC,CAyb/E,CAAC;AAEF,eAAe,8BAA8B,CAAC"}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { default as React, Dispatch, SetStateAction } from 'react';
|
|
2
|
+
import { MatchBasicModel } from 'fansunited-sdk-esm';
|
|
3
|
+
import { default as ClassicQuizRequestBody } from '../../../../models/minigames/classicquizzes/ClassicQuizRequestBody';
|
|
4
|
+
import { default as PollRequestBody } from '../../../../models/voting/PollRequestBody';
|
|
5
|
+
import { PaginationMeta } from '../../../../hooks/useMatches';
|
|
6
|
+
import { EntityType } from '../../../../models/related/RelatedEntityRelationship';
|
|
7
|
+
import { default as AIPollGenerated } from '../../../../models/voting/AIPollGenerated';
|
|
8
|
+
|
|
9
|
+
type MainSheetLabels = {
|
|
10
|
+
noPreviewAvailable: string;
|
|
11
|
+
questions: string;
|
|
12
|
+
engagementScore: string;
|
|
13
|
+
notAvailableLabel: string;
|
|
14
|
+
expand: string;
|
|
15
|
+
noMatchesFound: string;
|
|
16
|
+
page: string;
|
|
17
|
+
of: string;
|
|
18
|
+
total: string;
|
|
19
|
+
generate: string;
|
|
20
|
+
regenerate: string;
|
|
21
|
+
};
|
|
22
|
+
type MainSheetProps = {
|
|
23
|
+
step: 'search' | 'preview';
|
|
24
|
+
loading: boolean;
|
|
25
|
+
matches: MatchBasicModel[] | null;
|
|
26
|
+
selectedMatchId: string;
|
|
27
|
+
generatedEntity: ClassicQuizRequestBody | AIPollGenerated | null;
|
|
28
|
+
pagination: PaginationMeta;
|
|
29
|
+
entityType: EntityType;
|
|
30
|
+
teamIdsFilter: string[] | undefined;
|
|
31
|
+
labels: MainSheetLabels;
|
|
32
|
+
setPage: Dispatch<SetStateAction<number>>;
|
|
33
|
+
setSelectedMatchId: Dispatch<SetStateAction<string>>;
|
|
34
|
+
onGenerate: () => void;
|
|
35
|
+
setGeneratedEntity: Dispatch<SetStateAction<ClassicQuizRequestBody | AIPollGenerated | null>>;
|
|
36
|
+
setPollRequestBody: Dispatch<SetStateAction<PollRequestBody | null>>;
|
|
37
|
+
};
|
|
38
|
+
/**
|
|
39
|
+
* Main content area for the GenerateFootballPostMatchModal that displays either match search results
|
|
40
|
+
* or generated content preview based on the current step. Handles match selection, pagination,
|
|
41
|
+
* and content generation/regeneration.
|
|
42
|
+
*
|
|
43
|
+
* @property {'search' | 'preview'} step - Current workflow step (search matches or preview generated content).
|
|
44
|
+
* @property {boolean} loading - Loading state for matches or content generation.
|
|
45
|
+
* @property {MatchBasicModel[] | null} matches - Array of football matches to display.
|
|
46
|
+
* @property {string} selectedMatchId - ID of the currently selected match.
|
|
47
|
+
* @property {ClassicQuizRequestBody | AIPollGenerated | null} generatedEntity - Generated quiz or poll content.
|
|
48
|
+
* @property {PaginationMeta} pagination - Pagination metadata for match results.
|
|
49
|
+
* @property {EntityType} entityType - Type of entity being generated ('classic_quiz' or 'poll').
|
|
50
|
+
* @property {string[] | undefined} teamIdsFilter - Array of team IDs used for filtering matches.
|
|
51
|
+
* @property {MainSheetLabels} labels - Localized text labels for UI elements.
|
|
52
|
+
* @property {Dispatch<SetStateAction<number>>} setPage - Function to update current page.
|
|
53
|
+
* @property {Dispatch<SetStateAction<string>>} setSelectedMatchId - Function to update selected match.
|
|
54
|
+
* @property {() => void} onGenerate - Function to trigger content generation.
|
|
55
|
+
* @property {Dispatch<SetStateAction<ClassicQuizRequestBody | AIPollGenerated | null>>} setGeneratedEntity - Function to update generated content.
|
|
56
|
+
* @property {Dispatch<SetStateAction<PollRequestBody | null>>} setPollRequestBody - Function to update poll request body.
|
|
57
|
+
*/
|
|
58
|
+
declare const MainSheet: React.FC<MainSheetProps>;
|
|
59
|
+
export default MainSheet;
|
|
60
|
+
//# sourceMappingURL=MainSheet.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MainSheet.d.ts","sourceRoot":"","sources":["../../../../../../src/components/Modals/AIGeneration/FootballPostMatch/MainSheet.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,EAAE,QAAQ,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAKxD,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,sBAAsB,MAAM,oEAAoE,CAAC;AACxG,OAAO,eAAe,MAAM,2CAA2C,CAAC;AACxE,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAC9D,OAAO,EAAE,UAAU,EAAE,MAAM,sDAAsD,CAAC;AAClF,OAAO,eAAe,MAAM,iCAAiC,CAAC;AAE9D,KAAK,eAAe,GAAG;IACtB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,SAAS,EAAE,MAAM,CAAC;IAClB,eAAe,EAAE,MAAM,CAAC;IACxB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,MAAM,EAAE,MAAM,CAAC;IACf,cAAc,EAAE,MAAM,CAAC;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,KAAK,cAAc,GAAG;IACrB,IAAI,EAAE,QAAQ,GAAG,SAAS,CAAC;IAC3B,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,eAAe,EAAE,GAAG,IAAI,CAAC;IAClC,eAAe,EAAE,MAAM,CAAC;IACxB,eAAe,EAAE,sBAAsB,GAAG,eAAe,GAAG,IAAI,CAAC;IACjE,UAAU,EAAE,cAAc,CAAC;IAC3B,UAAU,EAAE,UAAU,CAAC;IACvB,aAAa,EAAE,MAAM,EAAE,GAAG,SAAS,CAAC;IACpC,MAAM,EAAE,eAAe,CAAC;IACxB,OAAO,EAAE,QAAQ,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,CAAC;IAC1C,kBAAkB,EAAE,QAAQ,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,CAAC;IACrD,UAAU,EAAE,MAAM,IAAI,CAAC;IACvB,kBAAkB,EAAE,QAAQ,CAAC,cAAc,CAAC,sBAAsB,GAAG,eAAe,GAAG,IAAI,CAAC,CAAC,CAAC;IAC9F,kBAAkB,EAAE,QAAQ,CAAC,cAAc,CAAC,eAAe,GAAG,IAAI,CAAC,CAAC,CAAC;CACrE,CAAC;AAEF;;;;;;;;;;;;;;;;;;;GAmBG;AACH,QAAA,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,cAAc,CAgavC,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Formula1PostEvent.d.ts","sourceRoot":"","sources":["../../../../../../src/components/Modals/AIGeneration/Formula1PostEvent/Formula1PostEvent.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,KAAK,wBAAwB,GAAG,EAAE,CAAC;AAEnC,QAAA,MAAM,mBAAmB,EAAE,KAAK,CAAC,EAAE,CAAC,wBAAwB,CAE3D,CAAC;AAEF,eAAe,mBAAmB,CAAC"}
|
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
+
import { default as EntitySelectOption } from '../../../models/select/EntitySelectOption';
|
|
2
3
|
|
|
3
4
|
type TeamsSearchSelectProps = {
|
|
4
5
|
labels: any;
|
|
5
6
|
ids: string[];
|
|
6
7
|
scope: string[] | undefined;
|
|
7
|
-
|
|
8
|
+
readOnly?: boolean;
|
|
9
|
+
AdditionalCheckbox?: React.ReactElement;
|
|
10
|
+
onChange: (selectedOptions: EntitySelectOption[]) => void;
|
|
8
11
|
};
|
|
9
12
|
/**
|
|
10
13
|
* Multi-select teams search with optional competitions scope.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TeamsSearchSelect.d.ts","sourceRoot":"","sources":["../../../../../src/components/Select/SearchSelect/TeamsSearchSelect.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAuC,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"TeamsSearchSelect.d.ts","sourceRoot":"","sources":["../../../../../src/components/Select/SearchSelect/TeamsSearchSelect.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAuC,MAAM,OAAO,CAAC;AAM5D,OAAO,kBAAkB,MAAM,2CAA2C,CAAC;AAoB3E,KAAK,sBAAsB,GAAG;IAC7B,MAAM,EAAE,GAAG,CAAC;IACZ,GAAG,EAAE,MAAM,EAAE,CAAC;IACd,KAAK,EAAE,MAAM,EAAE,GAAG,SAAS,CAAC;IAC5B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,kBAAkB,CAAC,EAAE,KAAK,CAAC,YAAY,CAAC;IACxC,QAAQ,EAAE,CAAC,eAAe,EAAE,kBAAkB,EAAE,KAAK,IAAI,CAAC;CAC1D,CAAC;AAEF;;;;;;;GAOG;AACH,QAAA,MAAM,iBAAiB,EAAE,KAAK,CAAC,EAAE,CAAC,sBAAsB,CAiIvD,CAAC;AAEF,eAAe,iBAAiB,CAAC"}
|
|
@@ -45,9 +45,11 @@ export declare const components: {
|
|
|
45
45
|
createLabel: string;
|
|
46
46
|
createFromTemplateLabel?: string;
|
|
47
47
|
signOutLabel: string;
|
|
48
|
+
entityType: import('../models/related/RelatedEntityRelationship').EntityType;
|
|
48
49
|
generateLabels?: {
|
|
49
50
|
generateAIEntityLabel: string;
|
|
50
|
-
|
|
51
|
+
generateFootballPostMatchLabel: string;
|
|
52
|
+
generateFormula1PostEventLabel: string;
|
|
51
53
|
generateFootballQuizLabel: string;
|
|
52
54
|
generateFormula1QuizLabel: string;
|
|
53
55
|
};
|
|
@@ -253,7 +255,9 @@ export declare const components: {
|
|
|
253
255
|
labels: any;
|
|
254
256
|
ids: string[];
|
|
255
257
|
scope: string[] | undefined;
|
|
256
|
-
|
|
258
|
+
readOnly?: boolean;
|
|
259
|
+
AdditionalCheckbox?: import('react').ReactElement;
|
|
260
|
+
onChange: (selectedOptions: import('../models/select/EntitySelectOption').default[]) => void;
|
|
257
261
|
}>;
|
|
258
262
|
/**
|
|
259
263
|
* Select with avatar/icon and clear button, suitable for selecting an entity (competition, etc.).
|
|
@@ -514,6 +518,50 @@ export declare const components: {
|
|
|
514
518
|
}>;
|
|
515
519
|
}[]) => void;
|
|
516
520
|
}>;
|
|
521
|
+
/**
|
|
522
|
+
* Modal for generating AI-powered content (quizzes or polls) based on football post-match data.
|
|
523
|
+
* Provides a two-step workflow: match search/filtering and content preview/generation.
|
|
524
|
+
*
|
|
525
|
+
* The main content area for the GenerateFootballPostMatchModal displays either match search results
|
|
526
|
+
* or generated content preview based on the current step. Handles match selection, pagination,
|
|
527
|
+
* and content generation/regeneration.
|
|
528
|
+
*/
|
|
529
|
+
readonly GenerateFootballPostMatchModal: import('react').FC<{
|
|
530
|
+
entityType: import('../models/related/RelatedEntityRelationship').EntityType;
|
|
531
|
+
isOpen: boolean;
|
|
532
|
+
toggleModal: () => void;
|
|
533
|
+
defaultLanguage: string | null;
|
|
534
|
+
competitionsScope: string[];
|
|
535
|
+
labels: {
|
|
536
|
+
generateFootballPostMatchModalTitle: string;
|
|
537
|
+
generateFormulaOnePostEventModalTitle: string;
|
|
538
|
+
close: string;
|
|
539
|
+
fromDate: string;
|
|
540
|
+
toDate: string;
|
|
541
|
+
teamsSelectionPlaceholder?: string;
|
|
542
|
+
searchTeamsErrorMessage: string;
|
|
543
|
+
language: string;
|
|
544
|
+
targetLanguageDescription: string;
|
|
545
|
+
searchMatch: string;
|
|
546
|
+
preview: string;
|
|
547
|
+
create: string;
|
|
548
|
+
useFramingGuidelinesLabel: string;
|
|
549
|
+
onEntityGenerateErrorMessage: string;
|
|
550
|
+
onEntityCreateMessage: string;
|
|
551
|
+
onEntityCreateErrorMessage: string;
|
|
552
|
+
noPreviewAvailable: string;
|
|
553
|
+
questions: string;
|
|
554
|
+
engagementScore: string;
|
|
555
|
+
notAvailableLabel: string;
|
|
556
|
+
expand: string;
|
|
557
|
+
noMatchesFound: string;
|
|
558
|
+
page: string;
|
|
559
|
+
of: string;
|
|
560
|
+
total: string;
|
|
561
|
+
generate: string;
|
|
562
|
+
regenerate: string;
|
|
563
|
+
};
|
|
564
|
+
}>;
|
|
517
565
|
};
|
|
518
566
|
export type ComponentsMap = typeof components;
|
|
519
567
|
//# sourceMappingURL=components.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"components.d.ts","sourceRoot":"","sources":["../../../src/constants/components.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"components.d.ts","sourceRoot":"","sources":["../../../src/constants/components.ts"],"names":[],"mappings":"AAmDA,eAAO,MAAM,UAAU;IACtB;;OAEG;;;;;IAEH;;OAEG;;;;;;;;;;;;IAEH;;OAEG;;;;;;;;;;IAEH;;;;;;;;OAQG;;;;;;;;;;;;;;;;;;IAEH;;OAEG;;;;;;;IAEH;;OAEG;;;;;;;IAEH;;OAEG;;;;;;;IAEH;;OAEG;;;;;;;;IAEH;;OAEG;;;;;;;;;kBArEwF,CAAC;qBAC/E,CAAC;iBAAiB,CAAA;;;;IAsE/B;;OAEG;;;;;;IAEH;;OAEG;;;;;;IAEH;;OAEG;;;;;;;IAEH;;OAEG;;;;;;;;IAEH;;OAEG;;;;;;IAEH;;OAEG;;;;;;IAEH;;OAEG;;;;;;;;IAEH;;OAEG;;;;;;;IAEH;;OAEG;;;;;;;IAEH;;OAEG;;;;IAEH;;OAEG;;;;;;IAEH;;OAEG;;;;;;;IAEH;;OAEG;;;;;;IAEH;;OAEG;;;;;IAEH;;OAEG;;;;;;;;IAEH;;OAEG;;;;;;;IAEH;;OAEG;;;;;;;;;IAEH;;OAEG;;;;;;;;IAEH;;OAEG;;;;;;;IAEH;;OAEG;;;;;;IAEH;;OAEG;;;;;;;;IAEH;;OAEG;;;;;;;;IAEH;;;;OAIG;;;;;;;;;;;IAEH;;OAEG;;;;;;IAEH;;OAEG;;;;;;IAEH;;OAEG;;;;;;;IAEH;;;;;;;;OAQG;;;;;;;;IAEH;;OAEG;;;;;;;;;;IAEH;;OAEG;;;;;;;;IAEH;;OAEG;;;;;;;;;;;;;IAEH;;OAEG;;;;;;;;;;;;;;;IAEH;;OAEG;;;;;IAEH;;;;;OAKG;;;;;;;;;IAEH;;OAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEH;;OAEG;;;;;IAEH;;OAEG;;;;;;IAEH;;OAEG;;;;;;IAEH;;;;;OAKG;;;oCArP8B,CAAC;;;;;;;;;;;;;;;;;;IAuPlC;;;;;;;OAOG;;;;;;;;;;;;;qCAjMF,CAAC;;;;;;;;;;;;;;;;;;;;;;;;CAmMO,CAAC;AAEX,MAAM,MAAM,aAAa,GAAG,OAAO,UAAU,CAAC"}
|
|
@@ -33,9 +33,11 @@ declare const ComponentContext: React.Context<{
|
|
|
33
33
|
createLabel: string;
|
|
34
34
|
createFromTemplateLabel?: string;
|
|
35
35
|
signOutLabel: string;
|
|
36
|
+
entityType: import('../models/related/RelatedEntityRelationship').EntityType;
|
|
36
37
|
generateLabels?: {
|
|
37
38
|
generateAIEntityLabel: string;
|
|
38
|
-
|
|
39
|
+
generateFootballPostMatchLabel: string;
|
|
40
|
+
generateFormula1PostEventLabel: string;
|
|
39
41
|
generateFootballQuizLabel: string;
|
|
40
42
|
generateFormula1QuizLabel: string;
|
|
41
43
|
};
|
|
@@ -175,7 +177,9 @@ declare const ComponentContext: React.Context<{
|
|
|
175
177
|
labels: any;
|
|
176
178
|
ids: string[];
|
|
177
179
|
scope: string[] | undefined;
|
|
178
|
-
|
|
180
|
+
readOnly?: boolean;
|
|
181
|
+
AdditionalCheckbox?: React.ReactElement;
|
|
182
|
+
onChange: (selectedOptions: import('../models/select/EntitySelectOption').default[]) => void;
|
|
179
183
|
}>;
|
|
180
184
|
readonly CustomSelect: React.FC<{
|
|
181
185
|
label: string;
|
|
@@ -359,6 +363,42 @@ declare const ComponentContext: React.Context<{
|
|
|
359
363
|
}>;
|
|
360
364
|
}[]) => void;
|
|
361
365
|
}>;
|
|
366
|
+
readonly GenerateFootballPostMatchModal: React.FC<{
|
|
367
|
+
entityType: import('../models/related/RelatedEntityRelationship').EntityType;
|
|
368
|
+
isOpen: boolean;
|
|
369
|
+
toggleModal: () => void;
|
|
370
|
+
defaultLanguage: string | null;
|
|
371
|
+
competitionsScope: string[];
|
|
372
|
+
labels: {
|
|
373
|
+
generateFootballPostMatchModalTitle: string;
|
|
374
|
+
generateFormulaOnePostEventModalTitle: string;
|
|
375
|
+
close: string;
|
|
376
|
+
fromDate: string;
|
|
377
|
+
toDate: string;
|
|
378
|
+
teamsSelectionPlaceholder?: string;
|
|
379
|
+
searchTeamsErrorMessage: string;
|
|
380
|
+
language: string;
|
|
381
|
+
targetLanguageDescription: string;
|
|
382
|
+
searchMatch: string;
|
|
383
|
+
preview: string;
|
|
384
|
+
create: string;
|
|
385
|
+
useFramingGuidelinesLabel: string;
|
|
386
|
+
onEntityGenerateErrorMessage: string;
|
|
387
|
+
onEntityCreateMessage: string;
|
|
388
|
+
onEntityCreateErrorMessage: string;
|
|
389
|
+
noPreviewAvailable: string;
|
|
390
|
+
questions: string;
|
|
391
|
+
engagementScore: string;
|
|
392
|
+
notAvailableLabel: string;
|
|
393
|
+
expand: string;
|
|
394
|
+
noMatchesFound: string;
|
|
395
|
+
page: string;
|
|
396
|
+
of: string;
|
|
397
|
+
total: string;
|
|
398
|
+
generate: string;
|
|
399
|
+
regenerate: string;
|
|
400
|
+
};
|
|
401
|
+
}>;
|
|
362
402
|
} | null>;
|
|
363
403
|
/**
|
|
364
404
|
* Provider that exposes the components registry to descendants with preserved types.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ComponentContext.d.ts","sourceRoot":"","sources":["../../../src/context/ComponentContext.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAiB,iBAAiB,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAG3E,KAAK,sBAAsB,GAAG;IAC7B,MAAM,CAAC,EAAE,GAAG,CAAC;IACb,QAAQ,CAAC,EAAE,SAAS,CAAC;CACrB,CAAC;AAEF,QAAA,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"ComponentContext.d.ts","sourceRoot":"","sources":["../../../src/context/ComponentContext.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAiB,iBAAiB,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAG3E,KAAK,sBAAsB,GAAG;IAC7B,MAAM,CAAC,EAAE,GAAG,CAAC;IACb,QAAQ,CAAC,EAAE,SAAS,CAAC;CACrB,CAAC;AAEF,QAAA,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAamzB,CAAC;qBAAoB,CAAC;iBAAgB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAAztB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qCAAsgH,CAAC;;;;;;;;;;;;;;;;;;;;;;;;SAbzlH,CAAC;AAEvE;;;;;GAKG;AACH,QAAA,MAAM,iBAAiB,EAAE,KAAK,CAAC,EAAE,CAAC,sBAAsB,GAAG,iBAAiB,CAE3E,CAAC;AAEF,OAAO,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { default as MatchBasicModel } from 'fansunited-sdk-esm/Core/Namespaces/Football/Models/Match/MatchBasicModel';
|
|
2
|
+
import { FootballPaginationModel, MatchFilters } from 'fansunited-sdk-esm';
|
|
3
|
+
|
|
4
|
+
export type PaginationMeta = FootballPaginationModel['meta']['pagination'] | null;
|
|
5
|
+
export type UseMatchesResult = {
|
|
6
|
+
matches: MatchBasicModel[] | null;
|
|
7
|
+
loading: boolean;
|
|
8
|
+
error: unknown;
|
|
9
|
+
meta: PaginationMeta;
|
|
10
|
+
refetch: () => Promise<void>;
|
|
11
|
+
};
|
|
12
|
+
export type UseMatchesOptions = {
|
|
13
|
+
/** When false, the hook will not fetch on mount or on filter change. */
|
|
14
|
+
enabled?: boolean;
|
|
15
|
+
};
|
|
16
|
+
/**
|
|
17
|
+
* Fetch football matches using Fans United SDK based on the provided filters.
|
|
18
|
+
*
|
|
19
|
+
* Example:
|
|
20
|
+
* const { matches, loading, error, meta, refetch } = useMatches({ fromDate, toDate, teamIds, page: 1, limit: 20 });
|
|
21
|
+
*/
|
|
22
|
+
export declare const useMatches: (filters: MatchFilters, options?: UseMatchesOptions) => UseMatchesResult;
|
|
23
|
+
//# sourceMappingURL=useMatches.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useMatches.d.ts","sourceRoot":"","sources":["../../../src/hooks/useMatches.ts"],"names":[],"mappings":"AACA,OAAO,eAAe,MAAM,0EAA0E,CAAC;AACvG,OAAO,EAAE,uBAAuB,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAG3E,MAAM,MAAM,cAAc,GAAG,uBAAuB,CAAC,MAAM,CAAC,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC;AAElF,MAAM,MAAM,gBAAgB,GAAG;IAC9B,OAAO,EAAE,eAAe,EAAE,GAAG,IAAI,CAAC;IAClC,OAAO,EAAE,OAAO,CAAC;IACjB,KAAK,EAAE,OAAO,CAAC;IACf,IAAI,EAAE,cAAc,CAAC;IACrB,OAAO,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAC;CAC7B,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG;IAC/B,wEAAwE;IACxE,OAAO,CAAC,EAAE,OAAO,CAAC;CAClB,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,UAAU,YAAa,YAAY,YAAW,iBAAiB,KAAQ,gBAiCnF,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AiPostMatchQuizParams.d.ts","sourceRoot":"","sources":["../../../../src/models/ai/AiPostMatchQuizParams.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,OAAO,OAAO,qBAAqB;
|
|
1
|
+
{"version":3,"file":"AiPostMatchQuizParams.d.ts","sourceRoot":"","sources":["../../../../src/models/ai/AiPostMatchQuizParams.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,OAAO,OAAO,qBAAqB;IAClC,SAAS,EAAE,MAAM,CAAM;IACvB,OAAO,EAAE,MAAM,CAAM;IACrB,IAAI,EAAE,MAAM,CAAM;CACzB"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export interface AIQuestion {
|
|
2
|
+
id: string;
|
|
3
|
+
category_name: string;
|
|
4
|
+
question: string;
|
|
5
|
+
options: string[];
|
|
6
|
+
engagement_score: number;
|
|
7
|
+
}
|
|
8
|
+
export default class AIPollGenerated {
|
|
9
|
+
match_id: string;
|
|
10
|
+
home_team: string;
|
|
11
|
+
away_team: string;
|
|
12
|
+
final_score: string;
|
|
13
|
+
questions: AIQuestion[];
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=AIPollGenerated.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AIPollGenerated.d.ts","sourceRoot":"","sources":["../../../../src/models/voting/AIPollGenerated.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,UAAU;IAC1B,EAAE,EAAE,MAAM,CAAC;IACX,aAAa,EAAE,MAAM,CAAC;IACtB,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,gBAAgB,EAAE,MAAM,CAAC;CACzB;AAED,MAAM,CAAC,OAAO,OAAO,eAAe;IACnC,QAAQ,EAAE,MAAM,CAAM;IACtB,SAAS,EAAE,MAAM,CAAM;IACvB,SAAS,EAAE,MAAM,CAAM;IACvB,WAAW,EAAE,MAAM,CAAM;IACzB,SAAS,EAAE,UAAU,EAAE,CAAM;CAC7B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HttpsService.d.ts","sourceRoot":"","sources":["../../../../src/services/https/HttpsService.ts"],"names":[],"mappings":"AAAA,OAAO,qBAAqB,MAAM,mEAAmE,CAAC;AACtG,OAAO,mBAAmB,MAAM,4CAA4C,CAAC;AAC7E,OAAO,KAAK,MAAM,SAAS,CAAC;AAC5B,OAAO,gBAAgB,MAAM,0CAA0C,CAAC;AACxE,OAAO,eAAe,MAAM,oCAAoC,CAAC;AACjE,OAAO,sBAAsB,MAAM,8DAA8D,CAAC;AAClG,OAAO,eAAe,MAAM,oCAAoC,CAAC;AACjE,OAAO,mBAAmB,MAAM,yCAAyC,CAAC;AAC1E,OAAO,eAAe,MAAM,qCAAqC,CAAC;AAClE,OAAO,mBAAmB,MAAM,sDAAsD,CAAC;AACvF,OAAO,sBAAsB,MAAM,mDAAmD,CAAC;AACvF,OAAO,uBAAuB,MAAM,qDAAqD,CAAC;AAC1F,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,qBAAqB,MAAM,gDAAgD,CAAC;AACnF,OAAO,0BAA0B,MAAM,sEAAsE,CAAC;AAC9G,OAAO,qBAAqB,MAAM,uCAAuC,CAAC;AAC1E,OAAO,qBAAqB,MAAM,uCAAuC,CAAC;AA2F1E,MAAM,CAAC,OAAO,OAAO,YAAa,SAAQ,KAAK;IAC9C,OAAO,CAAC,cAAc,CAAc;IACpC,OAAO,CAAC,iBAAiB,CAAc;IACvC,OAAO,CAAC,mBAAmB,CAAc;IACzC,OAAO,CAAC,mBAAmB,CAAc;IACzC,OAAO,CAAC,gBAAgB,CAAc;IACtC,OAAO,CAAC,iBAAiB,CAAc;IACvC,OAAO,CAAC,iBAAiB,CAAc;IACvC,OAAO,CAAC,qBAAqB,CAAc;IAC3C,OAAO,CAAC,gBAAgB,CAAc;gBAE1B,MAAM,EAAE,qBAAqB,EAAE,gBAAgB,EAAE,gBAAgB,GAAG,IAAI;IAa7E,aAAa,0BAOlB;IAEK,cAAc,gBAAuB,mBAAmB,uBAQ7D;IAEK,YAAY,eAAsB,MAAM,eAAe,mBAAmB,uBAQ/E;IAEK,cAAc,eAAsB,MAAM,uBAO/C;IAEK,UAAU,gBAAuB,GAAG,uBAQzC;IAEK,yBAAyB,eAAsB,MAAM,WAAW,MAAM,SAAS,MAAM,uBAY1F;IAEK,6BAA6B,WAAkB,MAAM,SAAS,MAAM,uBAMzE;IAEK,UAAU,gBAAuB,eAAe,uBAQrD;IAEK,QAAQ,WAAkB,MAAM,eAAe,eAAe,uBAQnE;IAEK,gBAAgB,eAAsB,WAAW,iBAAiB,OAAO,uBAS9E;IAEK,iBAAiB,kBAAyB,OAAO,YAAW,MAAM,uBAWvE;IAEK,oBAAoB,eAAsB,WAAW,eAAe,GAAG,uBAS5E;IAEK,qBAAqB,0BAI1B;IAEK,kBAAkB,0BAIvB;IAEK,cAAc,0BAInB;IAEK,iBAAiB,gBAAuB,sBAAsB,uBAQnE;IAEK,iBAAiB,OAAc,MAAM,eAAe,sBAAsB,uBAQ/E;IAEK,kBAAkB,kBAAyB,MAAM,uBAMtD;IAEK,iBAAiB,kBAAyB,MAAM,uBAQrD;IAEK,wBAAwB,kBAAyB,MAAM,uBAQ5D;IAEK,WAAW,gBAAuB,GAAG,uBAS1C;IAEK,4BAA4B,kBAAyB,MAAM,YAAY,MAAM,UAAU,MAAM,WAAW,MAAM,uBAanH;IAEK,uBAAuB,aAAoB,MAAM,YAAY,MAAM,UAAU,MAAM,uBAWxF;IAEK,UAAU,gBAAuB,eAAe,uBAQrD;IAEK,UAAU,OAAc,MAAM,eAAe,eAAe,uBAQjE;IAEK,UAAU,WAAkB,MAAM,uBAQvC;IAEK,eAAe,OAAc,MAAM,aAAa,MAAM,uBAY3D;IAEK,6BAA6B,OAAc,MAAM,OAAO,MAAM,kBAAkB,MAAM,uBAS3F;IAEK,cAAc,gBAAuB,mBAAmB,uBAQ7D;IAEK,cAAc,OAAc,MAAM,eAAe,mBAAmB,uBAQzE;IAEK,cAAc,eAAsB,MAAM,uBAO/C;IAEK,QAAQ,UAAiB,MAAM,cAAc,MAAM,cAAa,KAAK,GAAG,MAAM,uBAUnF;IAEK,WAAW,WAAkB,MAAM,uBAOxC;IAEK,cAAc,WAAkB,MAAM,SAAS,MAAM,cAAa,KAAK,GAAG,MAAM,SAAkB,MAAM,uBAU7G;IAEK,UAAU,gBAAuB,eAAe,uBASrD;IAEK,UAAU,WAAkB,MAAM,eAAe,eAAe,uBASrE;IAEK,UAAU,WAAkB,MAAM,uBAQvC;IAEK,iBAAiB,0BAOtB;IAEK,oBAAoB,gBAAuB,mBAAmB,uBASnE;IAEK,iBAAiB,gBAAuB,sBAAsB,uBAQnE;IAEK,iBAAiB,OAAc,MAAM,eAAe,sBAAsB,uBAQ/E;IAEK,kBAAkB,WAAkB,MAAM,uBAQ/C;IAEK,oBAAoB,aAAoB,MAAM,uBAOnD;IAEK,iBAAiB,gBAAuB,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,IAAI,uBAc1E;IAEK,WAAW,gBAAuB,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,IAAI,uBAepE;IAEK,kBAAkB,gBAAuB,uBAAuB,uBAQrE;IAEK,kBAAkB,OAAc,MAAM,eAAe,uBAAuB,uBAQjF;IAEK,0BAA0B,WAAkB,MAAM,uBAQvD;IAEK,iBAAiB,WAAkB,MAAM,UAAU,MAAM,uBAc9D;IAEK,gBAAgB,WAAkB,MAAM,uBAM7C;IAEK,OAAO,WAAkB,MAAM,UAAU,MAAM,UAAU,MAAM,uBAWpE;IAEK,SAAS,WAAkB,MAAM,UAAU,MAAM,uBAWtD;IAEK,UAAU,WAAkB,MAAM,UAAU,QAAQ,GAAG,qBAAqB,SAAS,OAAO,uBAWjG;IAEK,iBAAiB,WAAkB,MAAM,uBAO9C;IAEK,gBAAgB,gBAAuB,qBAAqB,uBAQjE;IAEK,gBAAgB,iBAAwB,MAAM,uBAOnD;IAEK,aAAa,iBAAwB,MAAM,uBAAgB,MAAM,EAAE,sBAAe,MAAM,uBAiB7F;IAEK,kBAAkB,iBAAwB,MAAM,WAAW,MAAM,EAAE,uBAUxE;IAEK,oBAAoB,iBAAwB,MAAM,WAAW,MAAM,EAAE,uBAU1E;IAEK,qBAAqB,gBAAuB,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,uBAOpE;IAEK,gBAAgB,gBAAuB,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,uBAO/D;IAEK,wBAAwB,gBAAuB,GAAG,uBASvD;IAEK,wBAAwB,gBAAuB,GAAG,uBASvD;IAEK,eAAe,0BAQpB;IAEK,kBAAkB,gBAAuB,GAAG,uBASjD;IAEK,qCAAqC,SACrC,KAAK,GAAG,QAAQ,GAAG,YAAY,GAAG,OAAO,GAAG,OAAO,GAAG,KAAK,YACvD,MAAM,UACR,MAAM,uBAcb;IAEK,qBAAqB,gBAAuB,0BAA0B,uBAQ3E;IAEK,qBAAqB,OAAc,MAAM,eAAe,0BAA0B,uBAQvF;IAEK,qBAAqB,sBAA6B,MAAM,uBAQ7D;IAEK,qBAAqB,WAAkB,qBAAqB,uBAYjE;IAEK,qBAAqB,WAAkB,qBAAqB,
|
|
1
|
+
{"version":3,"file":"HttpsService.d.ts","sourceRoot":"","sources":["../../../../src/services/https/HttpsService.ts"],"names":[],"mappings":"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"}
|
package/src/types/types.d.ts
CHANGED
|
@@ -2,5 +2,5 @@ export type CommonProps = {
|
|
|
2
2
|
label: string;
|
|
3
3
|
};
|
|
4
4
|
export type FeatureType = 'predictor' | 'top_x' | 'match_quiz' | 'loyalty' | 'discussions' | 'classic_quiz' | 'either_or' | 'poll' | 'profile_preferences';
|
|
5
|
-
export type AIGenerateIdType = '
|
|
5
|
+
export type AIGenerateIdType = 'football_post_match' | 'formula1_post_event';
|
|
6
6
|
//# sourceMappingURL=types.d.ts.map
|
package/src/types/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/types/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,WAAW,GAAG;IACzB,KAAK,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,MAAM,MAAM,WAAW,GACpB,WAAW,GACX,OAAO,GACP,YAAY,GACZ,SAAS,GACT,aAAa,GACb,cAAc,GACd,WAAW,GACX,MAAM,GACN,qBAAqB,CAAC;AAEzB,MAAM,MAAM,gBAAgB,GAAG,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/types/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,WAAW,GAAG;IACzB,KAAK,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,MAAM,MAAM,WAAW,GACpB,WAAW,GACX,OAAO,GACP,YAAY,GACZ,SAAS,GACT,aAAa,GACb,cAAc,GACd,WAAW,GACX,MAAM,GACN,qBAAqB,CAAC;AAEzB,MAAM,MAAM,gBAAgB,GAAG,qBAAqB,GAAG,qBAAqB,CAAC"}
|