@twotaps/site-utils-base 0.1.17 → 0.1.18
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/.tsbuildInfo +1 -1
- package/dist/types.d.ts +67 -11
- package/dist/types.js +15 -0
- package/dist/types.js.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -41,19 +41,28 @@ export type Scalars = {
|
|
|
41
41
|
input: number;
|
|
42
42
|
output: number;
|
|
43
43
|
};
|
|
44
|
+
/** A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format. */
|
|
44
45
|
DateTime: {
|
|
45
46
|
input: any;
|
|
46
47
|
output: any;
|
|
47
48
|
};
|
|
49
|
+
/** The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). */
|
|
48
50
|
JSON: {
|
|
49
51
|
input: any;
|
|
50
52
|
output: any;
|
|
51
53
|
};
|
|
54
|
+
/** The `JSONObject` scalar type represents JSON objects as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). */
|
|
52
55
|
JSONObject: {
|
|
53
56
|
input: any;
|
|
54
57
|
output: any;
|
|
55
58
|
};
|
|
56
59
|
};
|
|
60
|
+
export declare enum AccessLevel {
|
|
61
|
+
BrandWide = "BrandWide",
|
|
62
|
+
Private = "Private",
|
|
63
|
+
Restricted = "Restricted",
|
|
64
|
+
SiteWide = "SiteWide"
|
|
65
|
+
}
|
|
57
66
|
export type AnnounceCampaignDto = {
|
|
58
67
|
campaignId: Scalars['Int']['input'];
|
|
59
68
|
notify?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -114,6 +123,13 @@ export declare enum CampaignType {
|
|
|
114
123
|
Block = "Block",
|
|
115
124
|
Page = "Page"
|
|
116
125
|
}
|
|
126
|
+
export type ClonePagesInput = {
|
|
127
|
+
schemaMappings: Array<SchemaMappingInput>;
|
|
128
|
+
sourcePageIds: Array<Scalars['Int']['input']>;
|
|
129
|
+
targetParentPageId?: InputMaybe<Scalars['Int']['input']>;
|
|
130
|
+
targetSiteId: Scalars['Int']['input'];
|
|
131
|
+
templateMappings?: InputMaybe<Array<TemplateMappingInput>>;
|
|
132
|
+
};
|
|
117
133
|
export type CloneTemplateInput = {
|
|
118
134
|
campaign?: InputMaybe<Scalars['Boolean']['input']>;
|
|
119
135
|
existingTemplateId: Scalars['Int']['input'];
|
|
@@ -220,9 +236,9 @@ export type CreatePageDto = {
|
|
|
220
236
|
customScriptHead?: InputMaybe<Scalars['String']['input']>;
|
|
221
237
|
draftRevisionId?: InputMaybe<Scalars['Int']['input']>;
|
|
222
238
|
lang?: InputMaybe<Scalars['String']['input']>;
|
|
223
|
-
metaDescription
|
|
239
|
+
metaDescription?: InputMaybe<Scalars['String']['input']>;
|
|
224
240
|
metaTags?: InputMaybe<Scalars['String']['input']>;
|
|
225
|
-
metaTitle
|
|
241
|
+
metaTitle?: InputMaybe<Scalars['String']['input']>;
|
|
226
242
|
name: Scalars['String']['input'];
|
|
227
243
|
parentId?: InputMaybe<Scalars['Int']['input']>;
|
|
228
244
|
properties?: InputMaybe<Array<CustomPagePropertiesInput>>;
|
|
@@ -236,9 +252,10 @@ export type CreatePageDto = {
|
|
|
236
252
|
export type CreatePageRevisionInput = {
|
|
237
253
|
pageId?: InputMaybe<Scalars['Int']['input']>;
|
|
238
254
|
publish: Scalars['Boolean']['input'];
|
|
239
|
-
references
|
|
255
|
+
references: Scalars['JSON']['input'];
|
|
256
|
+
revisionSchemas: Array<PageRevisionSchemaInput>;
|
|
240
257
|
scheduledAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
241
|
-
|
|
258
|
+
schemaDefinition?: InputMaybe<RevisionSchemaSchemaDefinitionDto>;
|
|
242
259
|
templateId?: InputMaybe<Scalars['Int']['input']>;
|
|
243
260
|
type: PageRevisionType;
|
|
244
261
|
};
|
|
@@ -345,6 +362,7 @@ export type FormFieldConfigInput = {
|
|
|
345
362
|
info?: InputMaybe<Scalars['String']['input']>;
|
|
346
363
|
inputType?: InputMaybe<FormFieldInputType>;
|
|
347
364
|
options?: InputMaybe<Array<KeyValueInput>>;
|
|
365
|
+
presentation?: InputMaybe<PresentationType>;
|
|
348
366
|
validation?: InputMaybe<FormFieldValidationConfigInput>;
|
|
349
367
|
};
|
|
350
368
|
export declare enum FormFieldConstraintType {
|
|
@@ -426,6 +444,7 @@ export declare enum IntegrationType {
|
|
|
426
444
|
Clubwise = "Clubwise",
|
|
427
445
|
GloFox = "GloFox",
|
|
428
446
|
GymSales = "GymSales",
|
|
447
|
+
KeepMe = "KeepMe",
|
|
429
448
|
RecaptchaV3 = "RecaptchaV3",
|
|
430
449
|
Sendgrid = "Sendgrid",
|
|
431
450
|
ZapierWebhook = "ZapierWebhook"
|
|
@@ -519,6 +538,11 @@ export type PaginationParam = {
|
|
|
519
538
|
sortColumn?: InputMaybe<Scalars['String']['input']>;
|
|
520
539
|
sortDirection?: InputMaybe<SortDirection>;
|
|
521
540
|
};
|
|
541
|
+
export declare enum PresentationType {
|
|
542
|
+
CheckboxGroup = "CheckboxGroup",
|
|
543
|
+
Dropdown = "Dropdown",
|
|
544
|
+
RadioButtonGroup = "RadioButtonGroup"
|
|
545
|
+
}
|
|
522
546
|
export type PublicPagesOrderByDto = {
|
|
523
547
|
direction?: InputMaybe<Scalars['String']['input']>;
|
|
524
548
|
field: Scalars['String']['input'];
|
|
@@ -568,6 +592,21 @@ export declare enum ReportStatType {
|
|
|
568
592
|
export type ResetPasswordInputDto = {
|
|
569
593
|
password: Scalars['String']['input'];
|
|
570
594
|
};
|
|
595
|
+
export type RevisionSchemaSchemaDefinitionDto = {
|
|
596
|
+
fields: Array<RevisionSchemaSchemaFieldDto>;
|
|
597
|
+
schemas: Array<RevisionSchemaSchemaDto>;
|
|
598
|
+
};
|
|
599
|
+
export type RevisionSchemaSchemaDto = {
|
|
600
|
+
id: Scalars['Int']['input'];
|
|
601
|
+
type: TtSchemaType;
|
|
602
|
+
};
|
|
603
|
+
export type RevisionSchemaSchemaFieldDto = {
|
|
604
|
+
hasMultipleValues: Scalars['Boolean']['input'];
|
|
605
|
+
id: Scalars['Int']['input'];
|
|
606
|
+
schemaId: Scalars['Int']['input'];
|
|
607
|
+
schemaTypeId?: InputMaybe<Scalars['Int']['input']>;
|
|
608
|
+
type: TtSchemaFieldType;
|
|
609
|
+
};
|
|
571
610
|
export declare enum Role {
|
|
572
611
|
Admin = "ADMIN",
|
|
573
612
|
Editor = "EDITOR",
|
|
@@ -576,11 +615,20 @@ export declare enum Role {
|
|
|
576
615
|
PowerEditor = "POWER_EDITOR",
|
|
577
616
|
Viewer = "VIEWER"
|
|
578
617
|
}
|
|
618
|
+
export type SchemaFieldMappingInput = {
|
|
619
|
+
sourceFieldId: Scalars['Int']['input'];
|
|
620
|
+
targetFieldId: Scalars['Int']['input'];
|
|
621
|
+
};
|
|
622
|
+
export type SchemaMappingInput = {
|
|
623
|
+
fieldPathMappings: Array<SchemaFieldMappingInput>;
|
|
624
|
+
sourceSchemaId: Scalars['Int']['input'];
|
|
625
|
+
targetSchemaId: Scalars['Int']['input'];
|
|
626
|
+
};
|
|
579
627
|
export type SiteReportRequestDto = {
|
|
580
|
-
month
|
|
628
|
+
month?: Scalars['String']['input'];
|
|
581
629
|
pageIds?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
582
630
|
siteId?: InputMaybe<Scalars['Int']['input']>;
|
|
583
|
-
stats
|
|
631
|
+
stats?: Array<ReportStatRequest>;
|
|
584
632
|
};
|
|
585
633
|
export declare enum SortDirection {
|
|
586
634
|
Ascending = "ASCENDING",
|
|
@@ -604,6 +652,7 @@ export declare enum TtSchemaFieldType {
|
|
|
604
652
|
Form = "Form",
|
|
605
653
|
GmbLocation = "GmbLocation",
|
|
606
654
|
Image = "Image",
|
|
655
|
+
Instagram = "Instagram",
|
|
607
656
|
Link = "Link",
|
|
608
657
|
Page = "Page",
|
|
609
658
|
RichText = "RichText",
|
|
@@ -634,6 +683,10 @@ export type TtSchemaWrapperInput = {
|
|
|
634
683
|
name: Scalars['String']['input'];
|
|
635
684
|
organisationId: Scalars['Int']['input'];
|
|
636
685
|
};
|
|
686
|
+
export type TemplateMappingInput = {
|
|
687
|
+
sourceTemplateId: Scalars['Int']['input'];
|
|
688
|
+
targetTemplateId: Scalars['Int']['input'];
|
|
689
|
+
};
|
|
637
690
|
export declare enum TemplateOrder {
|
|
638
691
|
Name = "NAME",
|
|
639
692
|
UpdatedAt = "UPDATED_AT"
|
|
@@ -714,16 +767,12 @@ export type UpdateIntegrationDto = {
|
|
|
714
767
|
type?: InputMaybe<IntegrationType>;
|
|
715
768
|
};
|
|
716
769
|
export type UpdatePageDto = {
|
|
717
|
-
allowCrawling?: InputMaybe<Scalars['Boolean']['input']>;
|
|
718
770
|
customScriptBody?: InputMaybe<Scalars['String']['input']>;
|
|
719
771
|
customScriptHead?: InputMaybe<Scalars['String']['input']>;
|
|
720
772
|
draftCustomFieldsId?: InputMaybe<Scalars['Int']['input']>;
|
|
721
773
|
draftRevisionId?: InputMaybe<Scalars['Int']['input']>;
|
|
722
774
|
id: Scalars['Int']['input'];
|
|
723
775
|
lang?: InputMaybe<Scalars['String']['input']>;
|
|
724
|
-
metaDescription?: InputMaybe<Scalars['String']['input']>;
|
|
725
|
-
metaTags?: InputMaybe<Scalars['String']['input']>;
|
|
726
|
-
metaTitle?: InputMaybe<Scalars['String']['input']>;
|
|
727
776
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
728
777
|
parentId?: InputMaybe<Scalars['Int']['input']>;
|
|
729
778
|
properties?: InputMaybe<Array<CustomPagePropertiesInput>>;
|
|
@@ -734,6 +783,13 @@ export type UpdatePageDto = {
|
|
|
734
783
|
ttschemaId?: InputMaybe<Scalars['Int']['input']>;
|
|
735
784
|
urlSegment?: InputMaybe<Scalars['String']['input']>;
|
|
736
785
|
};
|
|
786
|
+
export type UpdatePageSeoSettingsDto = {
|
|
787
|
+
allowCrawling?: InputMaybe<Scalars['Boolean']['input']>;
|
|
788
|
+
id: Scalars['Int']['input'];
|
|
789
|
+
metaDescription?: InputMaybe<Scalars['String']['input']>;
|
|
790
|
+
metaTags?: InputMaybe<Scalars['String']['input']>;
|
|
791
|
+
metaTitle?: InputMaybe<Scalars['String']['input']>;
|
|
792
|
+
};
|
|
737
793
|
export type UpdateRedirectEntityDto = {
|
|
738
794
|
fromPath?: InputMaybe<Scalars['String']['input']>;
|
|
739
795
|
id: Scalars['Int']['input'];
|
|
@@ -1798,7 +1854,7 @@ export type AssetListQuery = {
|
|
|
1798
1854
|
id: number;
|
|
1799
1855
|
url: string;
|
|
1800
1856
|
altText?: string | null;
|
|
1801
|
-
accessLevel?:
|
|
1857
|
+
accessLevel?: AccessLevel | null;
|
|
1802
1858
|
}>;
|
|
1803
1859
|
};
|
|
1804
1860
|
export type DomainWithSitemapQueryVariables = Exact<{
|
package/dist/types.js
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
export var AccessLevel;
|
|
2
|
+
(function (AccessLevel) {
|
|
3
|
+
AccessLevel["BrandWide"] = "BrandWide";
|
|
4
|
+
AccessLevel["Private"] = "Private";
|
|
5
|
+
AccessLevel["Restricted"] = "Restricted";
|
|
6
|
+
AccessLevel["SiteWide"] = "SiteWide";
|
|
7
|
+
})(AccessLevel || (AccessLevel = {}));
|
|
1
8
|
export var AssetType;
|
|
2
9
|
(function (AssetType) {
|
|
3
10
|
AssetType["Archive"] = "Archive";
|
|
@@ -97,6 +104,7 @@ export var IntegrationType;
|
|
|
97
104
|
IntegrationType["Clubwise"] = "Clubwise";
|
|
98
105
|
IntegrationType["GloFox"] = "GloFox";
|
|
99
106
|
IntegrationType["GymSales"] = "GymSales";
|
|
107
|
+
IntegrationType["KeepMe"] = "KeepMe";
|
|
100
108
|
IntegrationType["RecaptchaV3"] = "RecaptchaV3";
|
|
101
109
|
IntegrationType["Sendgrid"] = "Sendgrid";
|
|
102
110
|
IntegrationType["ZapierWebhook"] = "ZapierWebhook";
|
|
@@ -117,6 +125,12 @@ export var PageRevisionType;
|
|
|
117
125
|
PageRevisionType["Page"] = "Page";
|
|
118
126
|
PageRevisionType["Template"] = "Template";
|
|
119
127
|
})(PageRevisionType || (PageRevisionType = {}));
|
|
128
|
+
export var PresentationType;
|
|
129
|
+
(function (PresentationType) {
|
|
130
|
+
PresentationType["CheckboxGroup"] = "CheckboxGroup";
|
|
131
|
+
PresentationType["Dropdown"] = "Dropdown";
|
|
132
|
+
PresentationType["RadioButtonGroup"] = "RadioButtonGroup";
|
|
133
|
+
})(PresentationType || (PresentationType = {}));
|
|
120
134
|
export var RedirectStatus;
|
|
121
135
|
(function (RedirectStatus) {
|
|
122
136
|
RedirectStatus["Active"] = "Active";
|
|
@@ -187,6 +201,7 @@ export var TtSchemaFieldType;
|
|
|
187
201
|
TtSchemaFieldType["Form"] = "Form";
|
|
188
202
|
TtSchemaFieldType["GmbLocation"] = "GmbLocation";
|
|
189
203
|
TtSchemaFieldType["Image"] = "Image";
|
|
204
|
+
TtSchemaFieldType["Instagram"] = "Instagram";
|
|
190
205
|
TtSchemaFieldType["Link"] = "Link";
|
|
191
206
|
TtSchemaFieldType["Page"] = "Page";
|
|
192
207
|
TtSchemaFieldType["RichText"] = "RichText";
|
package/dist/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|