fansunited-widget-either-or 2.8.1 → 2.10.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/README.md +44 -3
- package/components/EitherOrs/ActionsMenu.d.ts +1 -1
- package/components/Filters/Filters.d.ts +3 -3
- package/components/Modals/CloneMiniGameModal.d.ts +10 -0
- package/components/Modals/ImportTemplateModal.d.ts +0 -1
- package/either-or-manager.es.js +19209 -18408
- package/either-or-manager.umd.js +241 -233
- package/models/Labels/LabelsModel.d.ts +13 -0
- package/models/RequestBody/RequestBody.d.ts +4 -3
- package/package.json +1 -1
|
@@ -177,6 +177,7 @@ export default class LabelsModel {
|
|
|
177
177
|
free: string;
|
|
178
178
|
lead: string;
|
|
179
179
|
registered: string;
|
|
180
|
+
paid: string;
|
|
180
181
|
language: string;
|
|
181
182
|
languageDescription: string;
|
|
182
183
|
addOption: string;
|
|
@@ -240,5 +241,17 @@ export default class LabelsModel {
|
|
|
240
241
|
copyToClipboard: string;
|
|
241
242
|
divElementTextInfo: string;
|
|
242
243
|
widgetEmbedCodeNotAvailable: string;
|
|
244
|
+
signInLabel: string;
|
|
245
|
+
signInLabelInfoMessage: string;
|
|
246
|
+
authenticationHandler: string;
|
|
247
|
+
authenticationHandlerInfoMessage: string;
|
|
248
|
+
configureSignIn: string;
|
|
249
|
+
configureSignInDisabledMessage: string;
|
|
250
|
+
translationOptions: string;
|
|
251
|
+
cloneMiniGameTitle: string;
|
|
252
|
+
clone: string;
|
|
253
|
+
cloneEitherOrMessage: string;
|
|
254
|
+
cloneEitherOrErrorMessage: string;
|
|
255
|
+
translationErrorMessage: string;
|
|
243
256
|
constructor(labels?: LabelsModel);
|
|
244
257
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { IBranding } from 'fansunited-management-components/src/models/IBranding';
|
|
2
2
|
import { IEitherOrOption, IEitherOrPoints } from 'fansunited-management-components/src/models/minigames/eitherors/EitherOrRequestBody';
|
|
3
|
+
import { default as RelatedRelationshipRequest } from 'fansunited-management-components/src/models/related/RelatedEntityRelationship';
|
|
3
4
|
import { ContextModel, ImagesModel } from 'fansunited-sdk-esm';
|
|
4
5
|
export interface IRelation {
|
|
5
6
|
entity_id: string;
|
|
@@ -21,12 +22,12 @@ export default class RequestBody {
|
|
|
21
22
|
rules: string;
|
|
22
23
|
ad_content: string;
|
|
23
24
|
branding: IBranding;
|
|
24
|
-
labels:
|
|
25
|
-
custom_fields:
|
|
25
|
+
labels: Record<string, string>;
|
|
26
|
+
custom_fields: Record<string, string>;
|
|
26
27
|
images: ImagesModel;
|
|
27
28
|
status: string;
|
|
28
29
|
flags: string[];
|
|
29
30
|
options: IEitherOrOption[];
|
|
30
|
-
related:
|
|
31
|
+
related: RelatedRelationshipRequest[];
|
|
31
32
|
context: ContextModel;
|
|
32
33
|
}
|