@joeygrable94/utm-src-pub-validators 0.0.62 → 0.0.64
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.cjs +390 -437
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +400 -512
- package/dist/index.d.ts +400 -512
- package/dist/index.js +385 -418
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -632,10 +632,6 @@ var SCreateGroupUserAssignMultipleUsers = v36__namespace.object({
|
|
|
632
632
|
),
|
|
633
633
|
scopes: IsValidGroupUserScopes
|
|
634
634
|
});
|
|
635
|
-
var SCreateGroupUserDocumentRequest = v36__namespace.object({
|
|
636
|
-
documentId: IsValidReferenceDocumentId,
|
|
637
|
-
data: SCreateGroupUserDocument
|
|
638
|
-
});
|
|
639
635
|
var SReadGroupUserDocumentById = v36__namespace.object({
|
|
640
636
|
id: IsValidReferenceId
|
|
641
637
|
});
|
|
@@ -707,8 +703,8 @@ var SUpdateAsInvitedGroupDocumentRequest = v36__namespace.object({
|
|
|
707
703
|
data: SUpdateAsInvitedGroupDocument
|
|
708
704
|
});
|
|
709
705
|
var SUpdateGroupDocumentRequest = v36__namespace.union([
|
|
710
|
-
|
|
711
|
-
|
|
706
|
+
SUpdateAsCreatorGroupDocument,
|
|
707
|
+
SUpdateAsInvitedGroupDocument
|
|
712
708
|
]);
|
|
713
709
|
var SDeleteGroupDocument = v36__namespace.object({
|
|
714
710
|
documentId: IsValidReferenceDocumentId
|
|
@@ -1311,6 +1307,7 @@ var SQueryListTrackingLinkDocuments = v36__namespace.object({
|
|
|
1311
1307
|
creator: v36__namespace.optional(IsValidReferenceDocumentId)
|
|
1312
1308
|
});
|
|
1313
1309
|
var SCreateTrackingLinkDocument = v36__namespace.object({
|
|
1310
|
+
group: IsValidReferenceDocumentId,
|
|
1314
1311
|
is_active: IsValidIsActive,
|
|
1315
1312
|
destination: IsValidUrlDestination,
|
|
1316
1313
|
protocol: IsValidUrlProtocol,
|
|
@@ -1332,10 +1329,6 @@ var SCreateMultipleTrackingLinkDocuments = v36__namespace.object({
|
|
|
1332
1329
|
v36__namespace.minLength(1, "Please create at least one tracking link")
|
|
1333
1330
|
)
|
|
1334
1331
|
});
|
|
1335
|
-
var SCreateTrackingLinkDocumentRequest = v36__namespace.object({
|
|
1336
|
-
documentId: IsValidReferenceDocumentId,
|
|
1337
|
-
data: SCreateTrackingLinkDocument
|
|
1338
|
-
});
|
|
1339
1332
|
var SReadTrackingLinkDocumentById = v36__namespace.object({
|
|
1340
1333
|
id: IsValidReferenceId
|
|
1341
1334
|
});
|
|
@@ -1553,6 +1546,7 @@ var SQueryListCampaignIdDocuments = v36__namespace.object({
|
|
|
1553
1546
|
creator: v36__namespace.optional(IsValidReferenceDocumentId)
|
|
1554
1547
|
});
|
|
1555
1548
|
var SCreateCampaignIdDocument = v36__namespace.object({
|
|
1549
|
+
group: IsValidReferenceDocumentId,
|
|
1556
1550
|
cost: IsValidCost,
|
|
1557
1551
|
label: IsValidLabel,
|
|
1558
1552
|
value: IsValidValue,
|
|
@@ -1565,10 +1559,6 @@ var SCreateMultipleCampaignIdDocuments = v36__namespace.object({
|
|
|
1565
1559
|
v36__namespace.minLength(1, "At least one campaign ID is required")
|
|
1566
1560
|
)
|
|
1567
1561
|
});
|
|
1568
|
-
var SCreateCampaignIdDocumentRequest = v36__namespace.object({
|
|
1569
|
-
documentId: IsValidReferenceDocumentId,
|
|
1570
|
-
data: SCreateCampaignIdDocument
|
|
1571
|
-
});
|
|
1572
1562
|
var SReadCampaignIdDocumentById = v36__namespace.object({
|
|
1573
1563
|
id: IsValidReferenceId
|
|
1574
1564
|
});
|
|
@@ -1623,6 +1613,7 @@ var SQueryListCampaignKeyDocuments = v36__namespace.object({
|
|
|
1623
1613
|
creator: v36__namespace.optional(IsValidReferenceDocumentId)
|
|
1624
1614
|
});
|
|
1625
1615
|
var SCreateCampaignKeyDocument = v36__namespace.object({
|
|
1616
|
+
group: IsValidReferenceDocumentId,
|
|
1626
1617
|
label: IsValidLabel,
|
|
1627
1618
|
value: IsValidValue,
|
|
1628
1619
|
description: IsValidDescription,
|
|
@@ -1634,10 +1625,6 @@ var SCreateMultipleCampaignKeyDocuments = v36__namespace.object({
|
|
|
1634
1625
|
v36__namespace.minLength(1, "At least one campaign key is required")
|
|
1635
1626
|
)
|
|
1636
1627
|
});
|
|
1637
|
-
var SCreateCampaignKeyDocumentRequest = v36__namespace.object({
|
|
1638
|
-
documentId: IsValidReferenceDocumentId,
|
|
1639
|
-
data: SCreateCampaignKeyDocument
|
|
1640
|
-
});
|
|
1641
1628
|
var SReadCampaignKeyDocumentById = v36__namespace.object({
|
|
1642
1629
|
id: IsValidReferenceId
|
|
1643
1630
|
});
|
|
@@ -1691,6 +1678,7 @@ var SQueryListCampaignPhaseDocuments = v36__namespace.object({
|
|
|
1691
1678
|
creator: v36__namespace.optional(IsValidReferenceDocumentId)
|
|
1692
1679
|
});
|
|
1693
1680
|
var SCreateCampaignPhaseDocument = v36__namespace.object({
|
|
1681
|
+
group: IsValidReferenceDocumentId,
|
|
1694
1682
|
label: IsValidLabel,
|
|
1695
1683
|
value: IsValidValue,
|
|
1696
1684
|
description: IsValidDescription,
|
|
@@ -1702,10 +1690,6 @@ var SCreateMultipleCampaignPhaseDocuments = v36__namespace.object({
|
|
|
1702
1690
|
v36__namespace.minLength(1, "At least one campaign phase is required")
|
|
1703
1691
|
)
|
|
1704
1692
|
});
|
|
1705
|
-
var SCreateCampaignPhaseDocumentRequest = v36__namespace.object({
|
|
1706
|
-
documentId: IsValidReferenceDocumentId,
|
|
1707
|
-
data: SCreateCampaignPhaseDocument
|
|
1708
|
-
});
|
|
1709
1693
|
var SReadCampaignPhaseDocumentById = v36__namespace.object({
|
|
1710
1694
|
id: IsValidReferenceId
|
|
1711
1695
|
});
|
|
@@ -1759,6 +1743,7 @@ var SQueryListCampaignProductDocuments = v36__namespace.object({
|
|
|
1759
1743
|
creator: v36__namespace.optional(IsValidReferenceDocumentId)
|
|
1760
1744
|
});
|
|
1761
1745
|
var SCreateCampaignProductDocument = v36__namespace.object({
|
|
1746
|
+
group: IsValidReferenceDocumentId,
|
|
1762
1747
|
label: IsValidLabel,
|
|
1763
1748
|
value: IsValidValue,
|
|
1764
1749
|
description: IsValidDescription,
|
|
@@ -1770,10 +1755,6 @@ var SCreateMultipleCampaignProductDocuments = v36__namespace.object({
|
|
|
1770
1755
|
v36__namespace.minLength(1, "At least one campaign product is required")
|
|
1771
1756
|
)
|
|
1772
1757
|
});
|
|
1773
|
-
var SCreateCampaignProductDocumentRequest = v36__namespace.object({
|
|
1774
|
-
documentId: IsValidReferenceDocumentId,
|
|
1775
|
-
data: SCreateCampaignProductDocument
|
|
1776
|
-
});
|
|
1777
1758
|
var SReadCampaignProductDocumentById = v36__namespace.object({
|
|
1778
1759
|
id: IsValidReferenceId
|
|
1779
1760
|
});
|
|
@@ -1827,6 +1808,7 @@ var SQueryListCampaignTargetDocuments = v36__namespace.object({
|
|
|
1827
1808
|
creator: v36__namespace.optional(IsValidReferenceDocumentId)
|
|
1828
1809
|
});
|
|
1829
1810
|
var SCreateCampaignTargetDocument = v36__namespace.object({
|
|
1811
|
+
group: IsValidReferenceDocumentId,
|
|
1830
1812
|
label: IsValidLabel,
|
|
1831
1813
|
value: IsValidValue,
|
|
1832
1814
|
description: IsValidDescription,
|
|
@@ -1838,10 +1820,6 @@ var SCreateMultipleCampaignTargetDocuments = v36__namespace.object({
|
|
|
1838
1820
|
v36__namespace.minLength(1, "At least one campaign target is required")
|
|
1839
1821
|
)
|
|
1840
1822
|
});
|
|
1841
|
-
var SCreateCampaignTargetDocumentRequest = v36__namespace.object({
|
|
1842
|
-
documentId: IsValidReferenceDocumentId,
|
|
1843
|
-
data: SCreateCampaignTargetDocument
|
|
1844
|
-
});
|
|
1845
1823
|
var SReadCampaignTargetDocumentById = v36__namespace.object({
|
|
1846
1824
|
id: IsValidReferenceId
|
|
1847
1825
|
});
|
|
@@ -1895,6 +1873,7 @@ var SQueryListContentDocuments = v36__namespace.object({
|
|
|
1895
1873
|
creator: v36__namespace.optional(IsValidReferenceDocumentId)
|
|
1896
1874
|
});
|
|
1897
1875
|
var SCreateContentDocument = v36__namespace.object({
|
|
1876
|
+
group: IsValidReferenceDocumentId,
|
|
1898
1877
|
label: IsValidLabel,
|
|
1899
1878
|
value: IsValidValue,
|
|
1900
1879
|
description: IsValidDescription,
|
|
@@ -1906,10 +1885,6 @@ var SCreateMultipleContentDocuments = v36__namespace.object({
|
|
|
1906
1885
|
v36__namespace.minLength(1, "At least one term is required")
|
|
1907
1886
|
)
|
|
1908
1887
|
});
|
|
1909
|
-
var SCreateContentDocumentRequest = v36__namespace.object({
|
|
1910
|
-
documentId: IsValidReferenceDocumentId,
|
|
1911
|
-
data: SCreateContentDocument
|
|
1912
|
-
});
|
|
1913
1888
|
var SReadContentDocumentById = v36__namespace.object({
|
|
1914
1889
|
id: IsValidReferenceId
|
|
1915
1890
|
});
|
|
@@ -1963,6 +1938,7 @@ var SQueryListCreativeFormatVariantDocuments = v36__namespace.object({
|
|
|
1963
1938
|
creator: v36__namespace.optional(IsValidReferenceDocumentId)
|
|
1964
1939
|
});
|
|
1965
1940
|
var SCreateCreativeFormatVariantDocument = v36__namespace.object({
|
|
1941
|
+
group: IsValidReferenceDocumentId,
|
|
1966
1942
|
label: IsValidLabel,
|
|
1967
1943
|
value: IsValidValue,
|
|
1968
1944
|
description: IsValidDescription,
|
|
@@ -1974,10 +1950,6 @@ var SCreateMultipleCreativeFormatVariantDocuments = v36__namespace.object({
|
|
|
1974
1950
|
v36__namespace.minLength(1, "At least one term is required")
|
|
1975
1951
|
)
|
|
1976
1952
|
});
|
|
1977
|
-
var SCreateCreativeFormatVariantDocumentRequest = v36__namespace.object({
|
|
1978
|
-
documentId: IsValidReferenceDocumentId,
|
|
1979
|
-
data: SCreateCreativeFormatVariantDocument
|
|
1980
|
-
});
|
|
1981
1953
|
var SReadCreativeFormatVariantDocumentById = v36__namespace.object({
|
|
1982
1954
|
id: IsValidReferenceId
|
|
1983
1955
|
});
|
|
@@ -2031,6 +2003,7 @@ var SQueryListCreativeFormatDocuments = v36__namespace.object({
|
|
|
2031
2003
|
creator: v36__namespace.optional(IsValidReferenceDocumentId)
|
|
2032
2004
|
});
|
|
2033
2005
|
var SCreateCreativeFormatDocument = v36__namespace.object({
|
|
2006
|
+
group: IsValidReferenceDocumentId,
|
|
2034
2007
|
label: IsValidLabel,
|
|
2035
2008
|
value: IsValidValue,
|
|
2036
2009
|
description: IsValidDescription,
|
|
@@ -2042,10 +2015,6 @@ var SCreateMultipleCreativeFormatDocuments = v36__namespace.object({
|
|
|
2042
2015
|
v36__namespace.minLength(1, "At least one creative format is required")
|
|
2043
2016
|
)
|
|
2044
2017
|
});
|
|
2045
|
-
var SCreateCreativeFormatDocumentRequest = v36__namespace.object({
|
|
2046
|
-
documentId: IsValidReferenceDocumentId,
|
|
2047
|
-
data: SCreateCreativeFormatDocument
|
|
2048
|
-
});
|
|
2049
2018
|
var SReadCreativeFormatDocumentById = v36__namespace.object({
|
|
2050
2019
|
id: IsValidReferenceId
|
|
2051
2020
|
});
|
|
@@ -2099,6 +2068,7 @@ var SQueryListMediumDocuments = v36__namespace.object({
|
|
|
2099
2068
|
creator: v36__namespace.optional(IsValidReferenceDocumentId)
|
|
2100
2069
|
});
|
|
2101
2070
|
var SCreateMediumDocument = v36__namespace.object({
|
|
2071
|
+
group: IsValidReferenceDocumentId,
|
|
2102
2072
|
label: IsValidLabel,
|
|
2103
2073
|
value: IsValidValue,
|
|
2104
2074
|
description: IsValidDescription,
|
|
@@ -2110,10 +2080,6 @@ var SCreateMultipleMediumDocuments = v36__namespace.object({
|
|
|
2110
2080
|
v36__namespace.minLength(1, "At least one medium is required")
|
|
2111
2081
|
)
|
|
2112
2082
|
});
|
|
2113
|
-
var SCreateMediumDocumentRequest = v36__namespace.object({
|
|
2114
|
-
documentId: IsValidReferenceDocumentId,
|
|
2115
|
-
data: SCreateMediumDocument
|
|
2116
|
-
});
|
|
2117
2083
|
var SReadMediumDocumentById = v36__namespace.object({
|
|
2118
2084
|
id: IsValidReferenceId
|
|
2119
2085
|
});
|
|
@@ -2167,6 +2133,7 @@ var SQueryListSourceDocuments = v36__namespace.object({
|
|
|
2167
2133
|
creator: v36__namespace.optional(IsValidReferenceDocumentId)
|
|
2168
2134
|
});
|
|
2169
2135
|
var SCreateSourceDocument = v36__namespace.object({
|
|
2136
|
+
group: IsValidReferenceDocumentId,
|
|
2170
2137
|
label: IsValidLabel,
|
|
2171
2138
|
value: IsValidValue,
|
|
2172
2139
|
description: IsValidDescription,
|
|
@@ -2178,10 +2145,6 @@ var SCreateMultipleSourceDocuments = v36__namespace.object({
|
|
|
2178
2145
|
v36__namespace.minLength(1, "At least one source is required")
|
|
2179
2146
|
)
|
|
2180
2147
|
});
|
|
2181
|
-
var SCreateSourceDocumentRequest = v36__namespace.object({
|
|
2182
|
-
documentId: IsValidReferenceDocumentId,
|
|
2183
|
-
data: SCreateSourceDocument
|
|
2184
|
-
});
|
|
2185
2148
|
var SReadSourceDocumentById = v36__namespace.object({
|
|
2186
2149
|
id: IsValidReferenceId
|
|
2187
2150
|
});
|
|
@@ -2235,6 +2198,7 @@ var SQueryListTermDocuments = v36__namespace.object({
|
|
|
2235
2198
|
creator: v36__namespace.optional(IsValidReferenceDocumentId)
|
|
2236
2199
|
});
|
|
2237
2200
|
var SCreateTermDocument = v36__namespace.object({
|
|
2201
|
+
group: IsValidReferenceDocumentId,
|
|
2238
2202
|
label: IsValidLabel,
|
|
2239
2203
|
value: IsValidValue,
|
|
2240
2204
|
description: IsValidDescription,
|
|
@@ -2246,10 +2210,6 @@ var SCreateMultipleTermDocuments = v36__namespace.object({
|
|
|
2246
2210
|
v36__namespace.minLength(1, "At least one term is required")
|
|
2247
2211
|
)
|
|
2248
2212
|
});
|
|
2249
|
-
var SCreateTermDocumentRequest = v36__namespace.object({
|
|
2250
|
-
documentId: IsValidReferenceDocumentId,
|
|
2251
|
-
data: SCreateTermDocument
|
|
2252
|
-
});
|
|
2253
2213
|
var SReadTermDocumentById = v36__namespace.object({
|
|
2254
2214
|
id: IsValidReferenceId
|
|
2255
2215
|
});
|
|
@@ -2303,6 +2263,7 @@ var SQueryListWebsiteDocuments = v36__namespace.object({
|
|
|
2303
2263
|
creator: v36__namespace.optional(IsValidReferenceDocumentId)
|
|
2304
2264
|
});
|
|
2305
2265
|
var SCreateWebsiteDocument = v36__namespace.object({
|
|
2266
|
+
group: IsValidReferenceDocumentId,
|
|
2306
2267
|
domain: IsValidUrlDomain,
|
|
2307
2268
|
description: IsValidOrUndefinedDescription,
|
|
2308
2269
|
is_secure: IsValidIsSecure,
|
|
@@ -2314,10 +2275,6 @@ var SCreateMultipleWebsiteDocuments = v36__namespace.object({
|
|
|
2314
2275
|
v36__namespace.minLength(1, "At least one website is required")
|
|
2315
2276
|
)
|
|
2316
2277
|
});
|
|
2317
|
-
var SCreateWebsiteDocumentRequest = v36__namespace.object({
|
|
2318
|
-
documentId: IsValidReferenceDocumentId,
|
|
2319
|
-
data: SCreateWebsiteDocument
|
|
2320
|
-
});
|
|
2321
2278
|
var SReadWebsiteDocumentById = v36__namespace.object({
|
|
2322
2279
|
id: IsValidReferenceId
|
|
2323
2280
|
});
|
|
@@ -2469,376 +2426,272 @@ var SWebsiteDocumentWithRelations = v36__namespace.object({
|
|
|
2469
2426
|
...SWebsiteRelationsDocument.entries
|
|
2470
2427
|
});
|
|
2471
2428
|
|
|
2472
|
-
// src/templates/utm-
|
|
2473
|
-
var
|
|
2474
|
-
|
|
2475
|
-
label: "
|
|
2476
|
-
value: "
|
|
2477
|
-
description: "
|
|
2429
|
+
// src/templates/utm-campaign-phase.defaults.ts
|
|
2430
|
+
var DEFAULT_CAMPAIGN_PHASES = {
|
|
2431
|
+
brand: {
|
|
2432
|
+
label: "Brand",
|
|
2433
|
+
value: "brand",
|
|
2434
|
+
description: "Company branded content",
|
|
2478
2435
|
is_active: true
|
|
2479
2436
|
},
|
|
2480
|
-
|
|
2481
|
-
label: "
|
|
2482
|
-
value: "
|
|
2483
|
-
description: "
|
|
2437
|
+
p1: {
|
|
2438
|
+
label: "Phase 1",
|
|
2439
|
+
value: "p1",
|
|
2440
|
+
description: "Interest list building",
|
|
2484
2441
|
is_active: true
|
|
2485
2442
|
},
|
|
2486
|
-
|
|
2487
|
-
label: "
|
|
2488
|
-
value: "
|
|
2489
|
-
description: "
|
|
2443
|
+
p2: {
|
|
2444
|
+
label: "Phase 2",
|
|
2445
|
+
value: "p2",
|
|
2446
|
+
description: "Pre-qual/pre-sale",
|
|
2490
2447
|
is_active: true
|
|
2491
2448
|
},
|
|
2492
|
-
|
|
2493
|
-
label: "
|
|
2494
|
-
value: "
|
|
2495
|
-
description: "
|
|
2449
|
+
p3: {
|
|
2450
|
+
label: "Phase 3",
|
|
2451
|
+
value: "p3",
|
|
2452
|
+
description: "Grand opening/now available",
|
|
2496
2453
|
is_active: true
|
|
2497
2454
|
},
|
|
2498
|
-
|
|
2499
|
-
label: "
|
|
2500
|
-
value: "
|
|
2501
|
-
description: "
|
|
2455
|
+
p4: {
|
|
2456
|
+
label: "Phase 4",
|
|
2457
|
+
value: "p4",
|
|
2458
|
+
description: "For sale/maintenance period",
|
|
2502
2459
|
is_active: true
|
|
2503
2460
|
},
|
|
2504
|
-
|
|
2505
|
-
label: "
|
|
2506
|
-
value: "
|
|
2507
|
-
description: "
|
|
2461
|
+
p5: {
|
|
2462
|
+
label: "Phase 5",
|
|
2463
|
+
value: "p5",
|
|
2464
|
+
description: "Final sale",
|
|
2465
|
+
is_active: true
|
|
2466
|
+
}
|
|
2467
|
+
};
|
|
2468
|
+
|
|
2469
|
+
// src/templates/utm-content.defaults.ts
|
|
2470
|
+
var DEFAULT_CONTENTS = {
|
|
2471
|
+
testimonial: {
|
|
2472
|
+
label: "Testimonial",
|
|
2473
|
+
value: "testimonial",
|
|
2474
|
+
description: "Buyer telling story about their purchase experience",
|
|
2508
2475
|
is_active: true
|
|
2509
2476
|
},
|
|
2510
|
-
|
|
2511
|
-
label: "
|
|
2512
|
-
value: "
|
|
2513
|
-
description: "
|
|
2477
|
+
agent: {
|
|
2478
|
+
label: "Agent",
|
|
2479
|
+
value: "agent",
|
|
2480
|
+
description: "Salespeople on camera marketing their neighborhood",
|
|
2514
2481
|
is_active: true
|
|
2515
2482
|
},
|
|
2516
|
-
|
|
2517
|
-
label: "
|
|
2518
|
-
value: "
|
|
2519
|
-
description: "Content
|
|
2483
|
+
education: {
|
|
2484
|
+
label: "Education",
|
|
2485
|
+
value: "education",
|
|
2486
|
+
description: "Content that is to educate buyers on any variety of home buying process",
|
|
2520
2487
|
is_active: true
|
|
2521
2488
|
},
|
|
2522
|
-
|
|
2523
|
-
label: "
|
|
2524
|
-
value: "
|
|
2525
|
-
description: "Content
|
|
2489
|
+
charity: {
|
|
2490
|
+
label: "Charity",
|
|
2491
|
+
value: "charity",
|
|
2492
|
+
description: "Content related to any charitable efforts on behalf of builder",
|
|
2526
2493
|
is_active: true
|
|
2527
2494
|
},
|
|
2528
|
-
|
|
2529
|
-
label: "
|
|
2530
|
-
value: "
|
|
2531
|
-
description: "Content
|
|
2495
|
+
recruitment: {
|
|
2496
|
+
label: "Recruitment",
|
|
2497
|
+
value: "recruitment",
|
|
2498
|
+
description: "Content showcasing staff and culture to recruit future employees",
|
|
2532
2499
|
is_active: true
|
|
2533
2500
|
},
|
|
2534
|
-
|
|
2535
|
-
label: "
|
|
2536
|
-
value: "
|
|
2537
|
-
description: "Content
|
|
2501
|
+
lifestyle: {
|
|
2502
|
+
label: "Lifestyle",
|
|
2503
|
+
value: "lifestyle",
|
|
2504
|
+
description: "Content about the surrounding area and what it\u2019s like to live in a place",
|
|
2538
2505
|
is_active: true
|
|
2539
2506
|
},
|
|
2540
|
-
|
|
2541
|
-
label: "
|
|
2542
|
-
value: "
|
|
2543
|
-
description: "
|
|
2507
|
+
milestone: {
|
|
2508
|
+
label: "Milestone",
|
|
2509
|
+
value: "milestone",
|
|
2510
|
+
description: "Benchmarks in the building process and life of a community",
|
|
2544
2511
|
is_active: true
|
|
2545
2512
|
},
|
|
2546
|
-
|
|
2547
|
-
label: "
|
|
2548
|
-
value: "
|
|
2549
|
-
description: "Content
|
|
2513
|
+
trends: {
|
|
2514
|
+
label: "Trends",
|
|
2515
|
+
value: "trends",
|
|
2516
|
+
description: "Content that is trending on social media",
|
|
2550
2517
|
is_active: true
|
|
2551
2518
|
},
|
|
2552
|
-
|
|
2553
|
-
label: "
|
|
2554
|
-
value: "
|
|
2555
|
-
description: "Content
|
|
2519
|
+
brand: {
|
|
2520
|
+
label: "Brand",
|
|
2521
|
+
value: "brand",
|
|
2522
|
+
description: "Content focused on client culture and mission and who they are",
|
|
2556
2523
|
is_active: true
|
|
2557
2524
|
},
|
|
2558
|
-
|
|
2559
|
-
label: "
|
|
2560
|
-
value: "
|
|
2561
|
-
description: "Content
|
|
2525
|
+
events: {
|
|
2526
|
+
label: "Events",
|
|
2527
|
+
value: "events",
|
|
2528
|
+
description: "Content about events like grand openings, phase releases, tours, parties, etc",
|
|
2562
2529
|
is_active: true
|
|
2563
2530
|
},
|
|
2564
|
-
|
|
2565
|
-
label: "
|
|
2566
|
-
value: "
|
|
2567
|
-
description: "
|
|
2531
|
+
personalization: {
|
|
2532
|
+
label: "Personalization",
|
|
2533
|
+
value: "personalization",
|
|
2534
|
+
description: "For personalized content",
|
|
2568
2535
|
is_active: true
|
|
2569
2536
|
},
|
|
2570
|
-
|
|
2571
|
-
label: "
|
|
2572
|
-
value: "
|
|
2573
|
-
description: "
|
|
2537
|
+
tour_guide: {
|
|
2538
|
+
label: "Tour Guide",
|
|
2539
|
+
value: "tour_guide",
|
|
2540
|
+
description: "Used for content that promotes touring a physical space",
|
|
2574
2541
|
is_active: true
|
|
2575
2542
|
},
|
|
2576
|
-
|
|
2577
|
-
label: "
|
|
2578
|
-
value: "
|
|
2579
|
-
description: "
|
|
2543
|
+
product: {
|
|
2544
|
+
label: "Product",
|
|
2545
|
+
value: "product",
|
|
2546
|
+
description: "Any content specifically about a product or sale item",
|
|
2580
2547
|
is_active: true
|
|
2581
2548
|
},
|
|
2582
|
-
|
|
2583
|
-
label: "
|
|
2584
|
-
value: "
|
|
2585
|
-
description: "Content
|
|
2549
|
+
recipes: {
|
|
2550
|
+
label: "Recipes",
|
|
2551
|
+
value: "recipes",
|
|
2552
|
+
description: "Content featuring recipes and cooking tips",
|
|
2586
2553
|
is_active: true
|
|
2587
2554
|
},
|
|
2588
|
-
|
|
2589
|
-
label: "
|
|
2590
|
-
value: "
|
|
2591
|
-
description: "Content
|
|
2555
|
+
holiday: {
|
|
2556
|
+
label: "Holiday",
|
|
2557
|
+
value: "holiday",
|
|
2558
|
+
description: "Content about national holidays",
|
|
2592
2559
|
is_active: true
|
|
2593
2560
|
},
|
|
2594
|
-
|
|
2595
|
-
label: "
|
|
2596
|
-
value: "
|
|
2597
|
-
description: "Content
|
|
2561
|
+
culture: {
|
|
2562
|
+
label: "Culture",
|
|
2563
|
+
value: "culture",
|
|
2564
|
+
description: "Content about our team, things we do, how we work together, our values",
|
|
2565
|
+
is_active: true
|
|
2566
|
+
},
|
|
2567
|
+
our_work: {
|
|
2568
|
+
label: "Our Work",
|
|
2569
|
+
value: "our_work",
|
|
2570
|
+
description: "Content about the work we do for our clients or ourselves, our thought process",
|
|
2571
|
+
is_active: true
|
|
2572
|
+
},
|
|
2573
|
+
other: {
|
|
2574
|
+
label: "Other",
|
|
2575
|
+
value: "other",
|
|
2576
|
+
description: "For other content not defined in by a specific content pillar",
|
|
2598
2577
|
is_active: true
|
|
2599
2578
|
}
|
|
2600
2579
|
};
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2580
|
+
|
|
2581
|
+
// src/templates/utm-creative-format-variant.defaults.ts
|
|
2582
|
+
var DEFAULT_CREATIVE_FORMAT_VARIANTS = {
|
|
2583
|
+
short_form: {
|
|
2584
|
+
label: "Short Form Video",
|
|
2585
|
+
value: "short_form",
|
|
2586
|
+
description: "Short form video content",
|
|
2606
2587
|
is_active: true
|
|
2607
2588
|
},
|
|
2608
|
-
|
|
2609
|
-
label: "
|
|
2610
|
-
value: "
|
|
2611
|
-
description: "
|
|
2589
|
+
long_form: {
|
|
2590
|
+
label: "Long Form Video",
|
|
2591
|
+
value: "long_form",
|
|
2592
|
+
description: "Long form video content",
|
|
2612
2593
|
is_active: true
|
|
2613
2594
|
},
|
|
2614
|
-
|
|
2615
|
-
label: "
|
|
2616
|
-
value: "
|
|
2617
|
-
description: "
|
|
2595
|
+
image: {
|
|
2596
|
+
label: "Image",
|
|
2597
|
+
value: "image",
|
|
2598
|
+
description: "Content that rely on photography to convey a message",
|
|
2618
2599
|
is_active: true
|
|
2619
2600
|
},
|
|
2620
|
-
|
|
2621
|
-
label: "
|
|
2622
|
-
value: "
|
|
2623
|
-
description: "
|
|
2624
|
-
is_active: true
|
|
2625
|
-
},
|
|
2626
|
-
paid_video: {
|
|
2627
|
-
label: "Paid Video",
|
|
2628
|
-
value: "paid_video",
|
|
2629
|
-
description: "Any video-based ads through a paid media buying platform (excluding social)",
|
|
2630
|
-
is_active: true
|
|
2631
|
-
},
|
|
2632
|
-
paid_listing: {
|
|
2633
|
-
label: "Paid Listing",
|
|
2634
|
-
value: "paid_listing",
|
|
2635
|
-
description: "Paid product listing on a ad/partner/affiliated website",
|
|
2636
|
-
is_active: true
|
|
2637
|
-
},
|
|
2638
|
-
paid: {
|
|
2639
|
-
label: "Paid",
|
|
2640
|
-
value: "paid",
|
|
2641
|
-
description: "Reserved for any other paid promotions that do not fit into the other categories",
|
|
2642
|
-
is_active: true
|
|
2643
|
-
},
|
|
2644
|
-
blast: {
|
|
2645
|
-
label: "Blast",
|
|
2646
|
-
value: "blast",
|
|
2647
|
-
description: "Used when sending a piece of content through an OWNED media source (such as email or text) to an entire group of people all at once",
|
|
2648
|
-
is_active: true
|
|
2649
|
-
},
|
|
2650
|
-
paid_blast: {
|
|
2651
|
-
label: "Paid Blast",
|
|
2652
|
-
value: "paid_blast",
|
|
2653
|
-
description: "Used when sending a piece of content through a PAID media source (such as paid email lists or third-party text referral) to an entire group of people all at once",
|
|
2601
|
+
gif: {
|
|
2602
|
+
label: "GIF",
|
|
2603
|
+
value: "gif",
|
|
2604
|
+
description: "Content using an animated GIF",
|
|
2654
2605
|
is_active: true
|
|
2655
2606
|
},
|
|
2656
|
-
|
|
2657
|
-
label: "
|
|
2658
|
-
value: "
|
|
2659
|
-
description: "
|
|
2607
|
+
text: {
|
|
2608
|
+
label: "Text",
|
|
2609
|
+
value: "text",
|
|
2610
|
+
description: "Content that rely on typography/text to convey a message",
|
|
2660
2611
|
is_active: true
|
|
2661
2612
|
},
|
|
2662
|
-
|
|
2663
|
-
label: "
|
|
2664
|
-
value: "
|
|
2665
|
-
description: "
|
|
2613
|
+
carousel: {
|
|
2614
|
+
label: "Carousel",
|
|
2615
|
+
value: "carousel",
|
|
2616
|
+
description: "Content in a carousel or slideshow format",
|
|
2666
2617
|
is_active: true
|
|
2667
2618
|
},
|
|
2668
|
-
|
|
2669
|
-
label: "
|
|
2670
|
-
value: "
|
|
2671
|
-
description: "
|
|
2619
|
+
people: {
|
|
2620
|
+
label: "People",
|
|
2621
|
+
value: "people",
|
|
2622
|
+
description: "Content that uses humans/actors to convey a message",
|
|
2672
2623
|
is_active: true
|
|
2673
2624
|
},
|
|
2674
|
-
|
|
2675
|
-
label: "
|
|
2676
|
-
value: "
|
|
2677
|
-
description: "
|
|
2625
|
+
faceless: {
|
|
2626
|
+
label: "Faceless (No People)",
|
|
2627
|
+
value: "faceless",
|
|
2628
|
+
description: "Content with no people/human faces depicted",
|
|
2678
2629
|
is_active: true
|
|
2679
2630
|
},
|
|
2680
2631
|
popup: {
|
|
2681
|
-
label: "
|
|
2632
|
+
label: "Pop Up",
|
|
2682
2633
|
value: "popup",
|
|
2683
|
-
description: "
|
|
2684
|
-
is_active: true
|
|
2685
|
-
},
|
|
2686
|
-
press_release: {
|
|
2687
|
-
label: "Press Release",
|
|
2688
|
-
value: "press_release",
|
|
2689
|
-
description: "Used for content related to a press release",
|
|
2690
|
-
is_active: true
|
|
2691
|
-
}
|
|
2692
|
-
};
|
|
2693
|
-
var default_campaign_phases = {
|
|
2694
|
-
brand: {
|
|
2695
|
-
label: "Brand",
|
|
2696
|
-
value: "brand",
|
|
2697
|
-
description: "Company branded content",
|
|
2698
|
-
is_active: true
|
|
2699
|
-
},
|
|
2700
|
-
p1: {
|
|
2701
|
-
label: "Phase 1",
|
|
2702
|
-
value: "p1",
|
|
2703
|
-
description: "Interest list building",
|
|
2704
|
-
is_active: true
|
|
2705
|
-
},
|
|
2706
|
-
p2: {
|
|
2707
|
-
label: "Phase 2",
|
|
2708
|
-
value: "p2",
|
|
2709
|
-
description: "Pre-qual/pre-sale",
|
|
2710
|
-
is_active: true
|
|
2711
|
-
},
|
|
2712
|
-
p3: {
|
|
2713
|
-
label: "Phase 3",
|
|
2714
|
-
value: "p3",
|
|
2715
|
-
description: "Grand opening/now available",
|
|
2716
|
-
is_active: true
|
|
2717
|
-
},
|
|
2718
|
-
p4: {
|
|
2719
|
-
label: "Phase 4",
|
|
2720
|
-
value: "p4",
|
|
2721
|
-
description: "For sale/maintenance period",
|
|
2722
|
-
is_active: true
|
|
2723
|
-
},
|
|
2724
|
-
p5: {
|
|
2725
|
-
label: "Phase 5",
|
|
2726
|
-
value: "p5",
|
|
2727
|
-
description: "Final sale",
|
|
2728
|
-
is_active: true
|
|
2729
|
-
}
|
|
2730
|
-
};
|
|
2731
|
-
var default_contents = {
|
|
2732
|
-
testimonial: {
|
|
2733
|
-
label: "Testimonial",
|
|
2734
|
-
value: "testimonial",
|
|
2735
|
-
description: "Buyer telling story about their purchase experience",
|
|
2736
|
-
is_active: true
|
|
2737
|
-
},
|
|
2738
|
-
agent: {
|
|
2739
|
-
label: "Agent",
|
|
2740
|
-
value: "agent",
|
|
2741
|
-
description: "Salespeople on camera marketing their neighborhood",
|
|
2742
|
-
is_active: true
|
|
2743
|
-
},
|
|
2744
|
-
education: {
|
|
2745
|
-
label: "Education",
|
|
2746
|
-
value: "education",
|
|
2747
|
-
description: "Content that is to educate buyers on any variety of home buying process",
|
|
2748
|
-
is_active: true
|
|
2749
|
-
},
|
|
2750
|
-
charity: {
|
|
2751
|
-
label: "Charity",
|
|
2752
|
-
value: "charity",
|
|
2753
|
-
description: "Content related to any charitable efforts on behalf of builder",
|
|
2754
|
-
is_active: true
|
|
2755
|
-
},
|
|
2756
|
-
recruitment: {
|
|
2757
|
-
label: "Recruitment",
|
|
2758
|
-
value: "recruitment",
|
|
2759
|
-
description: "Content showcasing staff and culture to recruit future employees",
|
|
2760
|
-
is_active: true
|
|
2761
|
-
},
|
|
2762
|
-
lifestyle: {
|
|
2763
|
-
label: "Lifestyle",
|
|
2764
|
-
value: "lifestyle",
|
|
2765
|
-
description: "Content about the surrounding area and what it\u2019s like to live in a place",
|
|
2766
|
-
is_active: true
|
|
2767
|
-
},
|
|
2768
|
-
milestone: {
|
|
2769
|
-
label: "Milestone",
|
|
2770
|
-
value: "milestone",
|
|
2771
|
-
description: "Benchmarks in the building process and life of a community",
|
|
2772
|
-
is_active: true
|
|
2773
|
-
},
|
|
2774
|
-
trends: {
|
|
2775
|
-
label: "Trends",
|
|
2776
|
-
value: "trends",
|
|
2777
|
-
description: "Content that is trending on social media",
|
|
2778
|
-
is_active: true
|
|
2779
|
-
},
|
|
2780
|
-
brand: {
|
|
2781
|
-
label: "Brand",
|
|
2782
|
-
value: "brand",
|
|
2783
|
-
description: "Content focused on client culture and mission and who they are",
|
|
2634
|
+
description: "Website pop up content",
|
|
2784
2635
|
is_active: true
|
|
2785
2636
|
},
|
|
2786
|
-
|
|
2787
|
-
label: "
|
|
2788
|
-
value: "
|
|
2789
|
-
description: "
|
|
2637
|
+
banner: {
|
|
2638
|
+
label: "Banner",
|
|
2639
|
+
value: "banner",
|
|
2640
|
+
description: "Banner content on a website",
|
|
2790
2641
|
is_active: true
|
|
2791
2642
|
},
|
|
2792
|
-
|
|
2793
|
-
label: "
|
|
2794
|
-
value: "
|
|
2795
|
-
description: "
|
|
2643
|
+
broker: {
|
|
2644
|
+
label: "Broker",
|
|
2645
|
+
value: "broker",
|
|
2646
|
+
description: "Content created for brokers",
|
|
2796
2647
|
is_active: true
|
|
2797
2648
|
},
|
|
2798
|
-
|
|
2799
|
-
label: "
|
|
2800
|
-
value: "
|
|
2801
|
-
description: "
|
|
2649
|
+
consumer: {
|
|
2650
|
+
label: "Consumer",
|
|
2651
|
+
value: "consumer",
|
|
2652
|
+
description: "Content created for consumers",
|
|
2802
2653
|
is_active: true
|
|
2803
2654
|
},
|
|
2804
|
-
|
|
2805
|
-
label: "
|
|
2806
|
-
value: "
|
|
2807
|
-
description: "
|
|
2655
|
+
redrop: {
|
|
2656
|
+
label: "Redrop",
|
|
2657
|
+
value: "redrop",
|
|
2658
|
+
description: "Content that is re-dropped to the same audience",
|
|
2808
2659
|
is_active: true
|
|
2809
2660
|
},
|
|
2810
|
-
|
|
2811
|
-
label: "
|
|
2812
|
-
value: "
|
|
2813
|
-
description: "
|
|
2661
|
+
variant_a: {
|
|
2662
|
+
label: "Variant A",
|
|
2663
|
+
value: "variant_a",
|
|
2664
|
+
description: "Used for a/b testing and/or ad variant names.",
|
|
2814
2665
|
is_active: true
|
|
2815
2666
|
},
|
|
2816
|
-
|
|
2817
|
-
label: "
|
|
2818
|
-
value: "
|
|
2819
|
-
description: "
|
|
2667
|
+
variant_b: {
|
|
2668
|
+
label: "Variant B",
|
|
2669
|
+
value: "variant_b",
|
|
2670
|
+
description: "Used for a/b testing and/or ad variant names.",
|
|
2820
2671
|
is_active: true
|
|
2821
2672
|
},
|
|
2822
|
-
|
|
2823
|
-
label: "
|
|
2824
|
-
value: "
|
|
2825
|
-
description: "
|
|
2673
|
+
variant_c: {
|
|
2674
|
+
label: "Variant C",
|
|
2675
|
+
value: "variant_c",
|
|
2676
|
+
description: "Used for a/b testing and/or ad variant names.",
|
|
2826
2677
|
is_active: true
|
|
2827
2678
|
},
|
|
2828
|
-
|
|
2829
|
-
label: "
|
|
2830
|
-
value: "
|
|
2831
|
-
description: "
|
|
2679
|
+
variant_d: {
|
|
2680
|
+
label: "Variant D",
|
|
2681
|
+
value: "variant_d",
|
|
2682
|
+
description: "Used for a/b testing and/or ad variant names.",
|
|
2832
2683
|
is_active: true
|
|
2833
2684
|
},
|
|
2834
|
-
|
|
2835
|
-
label: "
|
|
2836
|
-
value: "
|
|
2837
|
-
description: "
|
|
2685
|
+
client_creative: {
|
|
2686
|
+
label: "Client Creative",
|
|
2687
|
+
value: "client_creative",
|
|
2688
|
+
description: "Creative content was provided by the client to use\u2014not GC designed content.",
|
|
2838
2689
|
is_active: true
|
|
2839
2690
|
}
|
|
2840
2691
|
};
|
|
2841
|
-
|
|
2692
|
+
|
|
2693
|
+
// src/templates/utm-creative-format.defaults.ts
|
|
2694
|
+
var DEFAULT_CREATIVE_FORMATS = {
|
|
2842
2695
|
post: {
|
|
2843
2696
|
label: "Post",
|
|
2844
2697
|
value: "post",
|
|
@@ -2954,113 +2807,227 @@ var default_creative_formats = {
|
|
|
2954
2807
|
is_active: true
|
|
2955
2808
|
}
|
|
2956
2809
|
};
|
|
2957
|
-
|
|
2958
|
-
|
|
2959
|
-
|
|
2960
|
-
|
|
2961
|
-
|
|
2810
|
+
|
|
2811
|
+
// src/templates/utm-medium.defaults.ts
|
|
2812
|
+
var DEFAULT_MEDIUMS = {
|
|
2813
|
+
social: {
|
|
2814
|
+
label: "Organic Social",
|
|
2815
|
+
value: "social",
|
|
2816
|
+
description: "Organic social posts across all platforms",
|
|
2962
2817
|
is_active: true
|
|
2963
2818
|
},
|
|
2964
|
-
|
|
2965
|
-
label: "
|
|
2966
|
-
value: "
|
|
2967
|
-
description: "
|
|
2819
|
+
paid_social: {
|
|
2820
|
+
label: "Paid Social",
|
|
2821
|
+
value: "paid_social",
|
|
2822
|
+
description: "Any paid media on social platforms",
|
|
2968
2823
|
is_active: true
|
|
2969
2824
|
},
|
|
2970
|
-
|
|
2971
|
-
label: "
|
|
2972
|
-
value: "
|
|
2973
|
-
description: "
|
|
2825
|
+
paid_search: {
|
|
2826
|
+
label: "Paid Search",
|
|
2827
|
+
value: "paid_search",
|
|
2828
|
+
description: "Reserved for text-based ads on search platforms (google, bing, etc)",
|
|
2974
2829
|
is_active: true
|
|
2975
2830
|
},
|
|
2976
|
-
|
|
2977
|
-
label: "
|
|
2978
|
-
value: "
|
|
2979
|
-
description: "
|
|
2831
|
+
paid_display: {
|
|
2832
|
+
label: "Paid Display",
|
|
2833
|
+
value: "paid_display",
|
|
2834
|
+
description: "Any image-based ads through a paid media buying platform (excluding social)",
|
|
2980
2835
|
is_active: true
|
|
2981
2836
|
},
|
|
2982
|
-
|
|
2983
|
-
label: "
|
|
2984
|
-
value: "
|
|
2985
|
-
description: "
|
|
2837
|
+
paid_video: {
|
|
2838
|
+
label: "Paid Video",
|
|
2839
|
+
value: "paid_video",
|
|
2840
|
+
description: "Any video-based ads through a paid media buying platform (excluding social)",
|
|
2986
2841
|
is_active: true
|
|
2987
2842
|
},
|
|
2988
|
-
|
|
2989
|
-
label: "
|
|
2990
|
-
value: "
|
|
2991
|
-
description: "
|
|
2843
|
+
paid_listing: {
|
|
2844
|
+
label: "Paid Listing",
|
|
2845
|
+
value: "paid_listing",
|
|
2846
|
+
description: "Paid product listing on a ad/partner/affiliated website",
|
|
2992
2847
|
is_active: true
|
|
2993
2848
|
},
|
|
2994
|
-
|
|
2995
|
-
label: "
|
|
2996
|
-
value: "
|
|
2997
|
-
description: "
|
|
2849
|
+
paid: {
|
|
2850
|
+
label: "Paid",
|
|
2851
|
+
value: "paid",
|
|
2852
|
+
description: "Reserved for any other paid promotions that do not fit into the other categories",
|
|
2998
2853
|
is_active: true
|
|
2999
2854
|
},
|
|
3000
|
-
|
|
3001
|
-
label: "
|
|
3002
|
-
value: "
|
|
3003
|
-
description: "
|
|
2855
|
+
blast: {
|
|
2856
|
+
label: "Blast",
|
|
2857
|
+
value: "blast",
|
|
2858
|
+
description: "Used when sending a piece of content through an OWNED media source (such as email or text) to an entire group of people all at once",
|
|
2859
|
+
is_active: true
|
|
2860
|
+
},
|
|
2861
|
+
paid_blast: {
|
|
2862
|
+
label: "Paid Blast",
|
|
2863
|
+
value: "paid_blast",
|
|
2864
|
+
description: "Used when sending a piece of content through a PAID media source (such as paid email lists or third-party text referral) to an entire group of people all at once",
|
|
2865
|
+
is_active: true
|
|
2866
|
+
},
|
|
2867
|
+
flow: {
|
|
2868
|
+
label: "Flow",
|
|
2869
|
+
value: "flow",
|
|
2870
|
+
description: "Used when sending a piece of content through an OWNED media source (such as email or text) to a single user as a part of a multi-touch drip campaign",
|
|
2871
|
+
is_active: true
|
|
2872
|
+
},
|
|
2873
|
+
signage: {
|
|
2874
|
+
label: "Signage",
|
|
2875
|
+
value: "signage",
|
|
2876
|
+
description: "Used when a user scans a QR code off of a sign, can add others here if we use QR codes on other content.",
|
|
2877
|
+
is_active: true
|
|
2878
|
+
},
|
|
2879
|
+
content: {
|
|
2880
|
+
label: "Content",
|
|
2881
|
+
value: "content",
|
|
2882
|
+
description: "Used for generic content mediums other than the mediums listed",
|
|
2883
|
+
is_active: true
|
|
2884
|
+
},
|
|
2885
|
+
paid_ctv: {
|
|
2886
|
+
label: "Connected TV",
|
|
2887
|
+
value: "paid_ctv",
|
|
2888
|
+
description: "Used for paid ads on TV, Streaming Providers or other Connected TV sources",
|
|
3004
2889
|
is_active: true
|
|
3005
2890
|
},
|
|
3006
2891
|
popup: {
|
|
3007
|
-
label: "
|
|
2892
|
+
label: "Popup",
|
|
3008
2893
|
value: "popup",
|
|
3009
|
-
description: "
|
|
2894
|
+
description: "Used only for popup content embedded on a website (owned or third party)",
|
|
3010
2895
|
is_active: true
|
|
3011
2896
|
},
|
|
3012
|
-
|
|
3013
|
-
label: "
|
|
3014
|
-
value: "
|
|
3015
|
-
description: "
|
|
2897
|
+
press_release: {
|
|
2898
|
+
label: "Press Release",
|
|
2899
|
+
value: "press_release",
|
|
2900
|
+
description: "Used for content related to a press release",
|
|
2901
|
+
is_active: true
|
|
2902
|
+
}
|
|
2903
|
+
};
|
|
2904
|
+
|
|
2905
|
+
// src/templates/utm-source.defaults.ts
|
|
2906
|
+
var DEFAULT_SOURCES = {
|
|
2907
|
+
meta: {
|
|
2908
|
+
label: "Meta (FB/IG)",
|
|
2909
|
+
value: "meta",
|
|
2910
|
+
description: "Content published to all Meta platforms: Facebook, Instagram",
|
|
3016
2911
|
is_active: true
|
|
3017
2912
|
},
|
|
3018
|
-
|
|
3019
|
-
label: "
|
|
3020
|
-
value: "
|
|
3021
|
-
description: "Content
|
|
2913
|
+
facebook: {
|
|
2914
|
+
label: "Facebook",
|
|
2915
|
+
value: "meta_facebook",
|
|
2916
|
+
description: "Content published exclusively on Facebook",
|
|
3022
2917
|
is_active: true
|
|
3023
2918
|
},
|
|
3024
|
-
|
|
3025
|
-
label: "
|
|
3026
|
-
value: "
|
|
3027
|
-
description: "Content
|
|
2919
|
+
instagram: {
|
|
2920
|
+
label: "Instagram",
|
|
2921
|
+
value: "meta_instagram",
|
|
2922
|
+
description: "Content published exclusively on Instagram",
|
|
3028
2923
|
is_active: true
|
|
3029
2924
|
},
|
|
3030
|
-
|
|
3031
|
-
label: "
|
|
3032
|
-
value: "
|
|
3033
|
-
description: "Content
|
|
2925
|
+
tiktok: {
|
|
2926
|
+
label: "TikTok",
|
|
2927
|
+
value: "tiktok",
|
|
2928
|
+
description: "Content published exclusively on TikTok",
|
|
3034
2929
|
is_active: true
|
|
3035
2930
|
},
|
|
3036
|
-
|
|
3037
|
-
label: "
|
|
3038
|
-
value: "
|
|
3039
|
-
description: "
|
|
2931
|
+
twitter: {
|
|
2932
|
+
label: "X/Twitter",
|
|
2933
|
+
value: "twitter",
|
|
2934
|
+
description: "Content for X.com formerly known as Twitter",
|
|
3040
2935
|
is_active: true
|
|
3041
2936
|
},
|
|
3042
|
-
|
|
3043
|
-
label: "
|
|
3044
|
-
value: "
|
|
3045
|
-
description: "
|
|
2937
|
+
xcom: {
|
|
2938
|
+
label: "X.com",
|
|
2939
|
+
value: "x_twitter",
|
|
2940
|
+
description: "Content published exclusively on X.com",
|
|
3046
2941
|
is_active: true
|
|
3047
2942
|
},
|
|
3048
|
-
|
|
3049
|
-
label: "
|
|
3050
|
-
value: "
|
|
3051
|
-
description: "
|
|
2943
|
+
linkedin: {
|
|
2944
|
+
label: "LinkedIn",
|
|
2945
|
+
value: "linkedin",
|
|
2946
|
+
description: "Content published exclusively on LinkedIn",
|
|
3052
2947
|
is_active: true
|
|
3053
2948
|
},
|
|
3054
|
-
|
|
3055
|
-
label: "
|
|
3056
|
-
value: "
|
|
3057
|
-
description: "
|
|
2949
|
+
pinterest: {
|
|
2950
|
+
label: "Pinterest",
|
|
2951
|
+
value: "pinterest",
|
|
2952
|
+
description: "Content published exclusively on Pinterest",
|
|
3058
2953
|
is_active: true
|
|
3059
2954
|
},
|
|
3060
|
-
|
|
3061
|
-
label: "
|
|
3062
|
-
value: "
|
|
3063
|
-
description: "
|
|
2955
|
+
youtube: {
|
|
2956
|
+
label: "YouTube",
|
|
2957
|
+
value: "youtube",
|
|
2958
|
+
description: "Content published exclusively on YouTube",
|
|
2959
|
+
is_active: true
|
|
2960
|
+
},
|
|
2961
|
+
sms: {
|
|
2962
|
+
label: "Text Message (SMS)",
|
|
2963
|
+
value: "sms",
|
|
2964
|
+
description: "Content published exclusively via Text Message (SMS)",
|
|
2965
|
+
is_active: true
|
|
2966
|
+
},
|
|
2967
|
+
email: {
|
|
2968
|
+
label: "Email",
|
|
2969
|
+
value: "email",
|
|
2970
|
+
description: "Content published exclusively via Email",
|
|
2971
|
+
is_active: true
|
|
2972
|
+
},
|
|
2973
|
+
google: {
|
|
2974
|
+
label: "Google Ads",
|
|
2975
|
+
value: "google",
|
|
2976
|
+
description: "Content published exclusively via Google Ads",
|
|
2977
|
+
is_active: true
|
|
2978
|
+
},
|
|
2979
|
+
realtorcom: {
|
|
2980
|
+
label: "Realtor.com",
|
|
2981
|
+
value: "rdc",
|
|
2982
|
+
description: "Content published exclusively on Realtor.com (RDC)",
|
|
2983
|
+
is_active: true
|
|
2984
|
+
},
|
|
2985
|
+
zillow: {
|
|
2986
|
+
label: "Zillow",
|
|
2987
|
+
value: "zillow",
|
|
2988
|
+
description: "Content published exclusively on Zillow",
|
|
2989
|
+
is_active: true
|
|
2990
|
+
},
|
|
2991
|
+
bdx_nhs: {
|
|
2992
|
+
label: "New Home Source (Zonda)",
|
|
2993
|
+
value: "bdx_nhs",
|
|
2994
|
+
description: "Content published exclusively on New Home Source",
|
|
2995
|
+
is_active: true
|
|
2996
|
+
},
|
|
2997
|
+
yelp: {
|
|
2998
|
+
label: "Yelp",
|
|
2999
|
+
value: "yelp",
|
|
3000
|
+
description: "Content published exclusively on Yelp",
|
|
3001
|
+
is_active: true
|
|
3002
|
+
},
|
|
3003
|
+
qr_code: {
|
|
3004
|
+
label: "QR Code",
|
|
3005
|
+
value: "qr_code",
|
|
3006
|
+
description: "Content published exclusively via a QR Code",
|
|
3007
|
+
is_active: true
|
|
3008
|
+
},
|
|
3009
|
+
stackadapt: {
|
|
3010
|
+
label: "StackAdapt",
|
|
3011
|
+
value: "stackadapt",
|
|
3012
|
+
description: "Content published exclusively via StackAdapt",
|
|
3013
|
+
is_active: true
|
|
3014
|
+
},
|
|
3015
|
+
newswire: {
|
|
3016
|
+
label: "Newswire",
|
|
3017
|
+
value: "newswire",
|
|
3018
|
+
description: "Content published exclusively via Newswire",
|
|
3019
|
+
is_active: true
|
|
3020
|
+
},
|
|
3021
|
+
mobile_app: {
|
|
3022
|
+
label: "Mobile App",
|
|
3023
|
+
value: "mobile_app",
|
|
3024
|
+
description: "Content published exclusively via a Mobile App",
|
|
3025
|
+
is_active: true
|
|
3026
|
+
},
|
|
3027
|
+
referral: {
|
|
3028
|
+
label: "Referral",
|
|
3029
|
+
value: "referral",
|
|
3030
|
+
description: "Content published exclusively via a Referral source",
|
|
3064
3031
|
is_active: true
|
|
3065
3032
|
}
|
|
3066
3033
|
};
|
|
@@ -3130,6 +3097,12 @@ exports.CREATIVE_FORMAT_PAGINATION_DEFAULT_SIZE_LIMIT = CREATIVE_FORMAT_PAGINATI
|
|
|
3130
3097
|
exports.CREATIVE_FORMAT_PAGINATION_MAX_SIZE_LIMIT = CREATIVE_FORMAT_PAGINATION_MAX_SIZE_LIMIT;
|
|
3131
3098
|
exports.CREATIVE_FORMAT_VARIANT_PAGINATION_DEFAULT_SIZE_LIMIT = CREATIVE_FORMAT_VARIANT_PAGINATION_DEFAULT_SIZE_LIMIT;
|
|
3132
3099
|
exports.CREATIVE_FORMAT_VARIANT_PAGINATION_MAX_SIZE_LIMIT = CREATIVE_FORMAT_VARIANT_PAGINATION_MAX_SIZE_LIMIT;
|
|
3100
|
+
exports.DEFAULT_CAMPAIGN_PHASES = DEFAULT_CAMPAIGN_PHASES;
|
|
3101
|
+
exports.DEFAULT_CONTENTS = DEFAULT_CONTENTS;
|
|
3102
|
+
exports.DEFAULT_CREATIVE_FORMATS = DEFAULT_CREATIVE_FORMATS;
|
|
3103
|
+
exports.DEFAULT_CREATIVE_FORMAT_VARIANTS = DEFAULT_CREATIVE_FORMAT_VARIANTS;
|
|
3104
|
+
exports.DEFAULT_MEDIUMS = DEFAULT_MEDIUMS;
|
|
3105
|
+
exports.DEFAULT_SOURCES = DEFAULT_SOURCES;
|
|
3133
3106
|
exports.ERROR_MESSAGE_REGEX_DOMAIN = ERROR_MESSAGE_REGEX_DOMAIN;
|
|
3134
3107
|
exports.ERROR_MESSAGE_REGEX_VALUE = ERROR_MESSAGE_REGEX_VALUE;
|
|
3135
3108
|
exports.GROUP_ENTITY_KEYS = GROUP_ENTITY_KEYS;
|
|
@@ -3315,27 +3288,17 @@ exports.SContentDocument = SContentDocument;
|
|
|
3315
3288
|
exports.SContentDocumentWithRelations = SContentDocumentWithRelations;
|
|
3316
3289
|
exports.SContentRelationsDocument = SContentRelationsDocument;
|
|
3317
3290
|
exports.SCreateCampaignIdDocument = SCreateCampaignIdDocument;
|
|
3318
|
-
exports.SCreateCampaignIdDocumentRequest = SCreateCampaignIdDocumentRequest;
|
|
3319
3291
|
exports.SCreateCampaignKeyDocument = SCreateCampaignKeyDocument;
|
|
3320
|
-
exports.SCreateCampaignKeyDocumentRequest = SCreateCampaignKeyDocumentRequest;
|
|
3321
3292
|
exports.SCreateCampaignPhaseDocument = SCreateCampaignPhaseDocument;
|
|
3322
|
-
exports.SCreateCampaignPhaseDocumentRequest = SCreateCampaignPhaseDocumentRequest;
|
|
3323
3293
|
exports.SCreateCampaignProductDocument = SCreateCampaignProductDocument;
|
|
3324
|
-
exports.SCreateCampaignProductDocumentRequest = SCreateCampaignProductDocumentRequest;
|
|
3325
3294
|
exports.SCreateCampaignTargetDocument = SCreateCampaignTargetDocument;
|
|
3326
|
-
exports.SCreateCampaignTargetDocumentRequest = SCreateCampaignTargetDocumentRequest;
|
|
3327
3295
|
exports.SCreateContentDocument = SCreateContentDocument;
|
|
3328
|
-
exports.SCreateContentDocumentRequest = SCreateContentDocumentRequest;
|
|
3329
3296
|
exports.SCreateCreativeFormatDocument = SCreateCreativeFormatDocument;
|
|
3330
|
-
exports.SCreateCreativeFormatDocumentRequest = SCreateCreativeFormatDocumentRequest;
|
|
3331
3297
|
exports.SCreateCreativeFormatVariantDocument = SCreateCreativeFormatVariantDocument;
|
|
3332
|
-
exports.SCreateCreativeFormatVariantDocumentRequest = SCreateCreativeFormatVariantDocumentRequest;
|
|
3333
3298
|
exports.SCreateGroupDocument = SCreateGroupDocument;
|
|
3334
3299
|
exports.SCreateGroupUserAssignMultipleUsers = SCreateGroupUserAssignMultipleUsers;
|
|
3335
3300
|
exports.SCreateGroupUserDocument = SCreateGroupUserDocument;
|
|
3336
|
-
exports.SCreateGroupUserDocumentRequest = SCreateGroupUserDocumentRequest;
|
|
3337
3301
|
exports.SCreateMediumDocument = SCreateMediumDocument;
|
|
3338
|
-
exports.SCreateMediumDocumentRequest = SCreateMediumDocumentRequest;
|
|
3339
3302
|
exports.SCreateMultipleCampaignIdDocuments = SCreateMultipleCampaignIdDocuments;
|
|
3340
3303
|
exports.SCreateMultipleCampaignKeyDocuments = SCreateMultipleCampaignKeyDocuments;
|
|
3341
3304
|
exports.SCreateMultipleCampaignPhaseDocuments = SCreateMultipleCampaignPhaseDocuments;
|
|
@@ -3350,15 +3313,11 @@ exports.SCreateMultipleTermDocuments = SCreateMultipleTermDocuments;
|
|
|
3350
3313
|
exports.SCreateMultipleTrackingLinkDocuments = SCreateMultipleTrackingLinkDocuments;
|
|
3351
3314
|
exports.SCreateMultipleWebsiteDocuments = SCreateMultipleWebsiteDocuments;
|
|
3352
3315
|
exports.SCreateSourceDocument = SCreateSourceDocument;
|
|
3353
|
-
exports.SCreateSourceDocumentRequest = SCreateSourceDocumentRequest;
|
|
3354
3316
|
exports.SCreateTermDocument = SCreateTermDocument;
|
|
3355
|
-
exports.SCreateTermDocumentRequest = SCreateTermDocumentRequest;
|
|
3356
3317
|
exports.SCreateTrackingLinkDocument = SCreateTrackingLinkDocument;
|
|
3357
|
-
exports.SCreateTrackingLinkDocumentRequest = SCreateTrackingLinkDocumentRequest;
|
|
3358
3318
|
exports.SCreateUserAccountDocument = SCreateUserAccountDocument;
|
|
3359
3319
|
exports.SCreateUserLimitationsDocument = SCreateUserLimitationsDocument;
|
|
3360
3320
|
exports.SCreateWebsiteDocument = SCreateWebsiteDocument;
|
|
3361
|
-
exports.SCreateWebsiteDocumentRequest = SCreateWebsiteDocumentRequest;
|
|
3362
3321
|
exports.SCreativeFormatDocument = SCreativeFormatDocument;
|
|
3363
3322
|
exports.SCreativeFormatDocumentWithRelations = SCreativeFormatDocumentWithRelations;
|
|
3364
3323
|
exports.SCreativeFormatRelationsDocument = SCreativeFormatRelationsDocument;
|
|
@@ -3612,12 +3571,6 @@ exports.WEBSITE_PAGINATION_DEFAULT_SIZE_LIMIT = WEBSITE_PAGINATION_DEFAULT_SIZE_
|
|
|
3612
3571
|
exports.WEBSITE_PAGINATION_MAX_SIZE_LIMIT = WEBSITE_PAGINATION_MAX_SIZE_LIMIT;
|
|
3613
3572
|
exports.datePlusDays = datePlusDays;
|
|
3614
3573
|
exports.dateToday = dateToday;
|
|
3615
|
-
exports.default_campaign_phases = default_campaign_phases;
|
|
3616
|
-
exports.default_contents = default_contents;
|
|
3617
|
-
exports.default_creative_format_variants = default_creative_format_variants;
|
|
3618
|
-
exports.default_creative_formats = default_creative_formats;
|
|
3619
|
-
exports.default_mediums = default_mediums;
|
|
3620
|
-
exports.default_sources = default_sources;
|
|
3621
3574
|
exports.isValidationFailure = isValidationFailure;
|
|
3622
3575
|
exports.isValidationSuccess = isValidationSuccess;
|
|
3623
3576
|
exports.omitUndefined = omitUndefined;
|