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