@wix/events 1.0.258 → 1.0.259
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/events",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.259",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@wix/events_categories": "1.0.38",
|
|
22
22
|
"@wix/events_forms": "1.0.39",
|
|
23
23
|
"@wix/events_guests": "1.0.51",
|
|
24
|
-
"@wix/events_notifications": "1.0.
|
|
24
|
+
"@wix/events_notifications": "1.0.22",
|
|
25
25
|
"@wix/events_orders": "1.0.39",
|
|
26
26
|
"@wix/events_policies": "1.0.37",
|
|
27
27
|
"@wix/events_ricos": "1.0.0",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"fqdn": ""
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
|
-
"falconPackageHash": "
|
|
60
|
+
"falconPackageHash": "e74c0fd71ee49b9e98265794bcea1f7f0b6f0dfab7a7471cfb4bc1b0"
|
|
61
61
|
}
|
|
@@ -1399,6 +1399,357 @@ declare enum EmailNotificationReminderTime {
|
|
|
1399
1399
|
/** 30 minutes prior */
|
|
1400
1400
|
BEFORE_30_MINUTES = "BEFORE_30_MINUTES"
|
|
1401
1401
|
}
|
|
1402
|
+
interface UpdatedWithPreviousEntity {
|
|
1403
|
+
/** previous automation */
|
|
1404
|
+
previousAutomation?: Automation;
|
|
1405
|
+
/** updated automation */
|
|
1406
|
+
currentAutomation?: Automation;
|
|
1407
|
+
}
|
|
1408
|
+
interface Automation extends AutomationOriginInfoOneOf {
|
|
1409
|
+
/** Application info */
|
|
1410
|
+
applicationInfo?: ApplicationOrigin;
|
|
1411
|
+
/** Preinstalled info */
|
|
1412
|
+
preinstalledInfo?: PreinstalledOrigin;
|
|
1413
|
+
/**
|
|
1414
|
+
* Automation ID.
|
|
1415
|
+
* @readonly
|
|
1416
|
+
*/
|
|
1417
|
+
_id?: string | null;
|
|
1418
|
+
/**
|
|
1419
|
+
* Revision number, which increments by 1 each time the automation is updated.
|
|
1420
|
+
* To prevent conflicting changes,
|
|
1421
|
+
* the current revision must be passed when updating the automation.
|
|
1422
|
+
*
|
|
1423
|
+
* Ignored when creating an automation.
|
|
1424
|
+
* @readonly
|
|
1425
|
+
*/
|
|
1426
|
+
revision?: string | null;
|
|
1427
|
+
/**
|
|
1428
|
+
* Information about the creator of the automation.
|
|
1429
|
+
* @readonly
|
|
1430
|
+
*/
|
|
1431
|
+
createdBy?: AuditInfo;
|
|
1432
|
+
/**
|
|
1433
|
+
* Date and time the automation was created.
|
|
1434
|
+
* @readonly
|
|
1435
|
+
*/
|
|
1436
|
+
_createdDate?: Date;
|
|
1437
|
+
/**
|
|
1438
|
+
* The entity that last updated the automation.
|
|
1439
|
+
* @readonly
|
|
1440
|
+
*/
|
|
1441
|
+
updatedBy?: AuditInfo;
|
|
1442
|
+
/**
|
|
1443
|
+
* Date and time the automation was last updated.
|
|
1444
|
+
* @readonly
|
|
1445
|
+
*/
|
|
1446
|
+
_updatedDate?: Date;
|
|
1447
|
+
/** Automation name that is displayed on the user's site. */
|
|
1448
|
+
name?: string;
|
|
1449
|
+
/** Automation description. */
|
|
1450
|
+
description?: string | null;
|
|
1451
|
+
/** Object that defines the automation's trigger, actions, and activation status. */
|
|
1452
|
+
configuration?: AutomationConfiguration;
|
|
1453
|
+
/** Defines how the automation was added to the site. */
|
|
1454
|
+
origin?: Origin;
|
|
1455
|
+
/** Automation settings. */
|
|
1456
|
+
settings?: AutomationSettings;
|
|
1457
|
+
/**
|
|
1458
|
+
* Draft info (optional - only if the automation is a draft)
|
|
1459
|
+
* @readonly
|
|
1460
|
+
*/
|
|
1461
|
+
draftInfo?: DraftInfo;
|
|
1462
|
+
}
|
|
1463
|
+
/** @oneof */
|
|
1464
|
+
interface AutomationOriginInfoOneOf {
|
|
1465
|
+
/** Application info */
|
|
1466
|
+
applicationInfo?: ApplicationOrigin;
|
|
1467
|
+
/** Preinstalled info */
|
|
1468
|
+
preinstalledInfo?: PreinstalledOrigin;
|
|
1469
|
+
}
|
|
1470
|
+
interface ActionSettings {
|
|
1471
|
+
/**
|
|
1472
|
+
* List of actions that cannot be deleted.
|
|
1473
|
+
* Default: Empty. All actions are deletable by default.
|
|
1474
|
+
*/
|
|
1475
|
+
permanentActionIds?: string[];
|
|
1476
|
+
/**
|
|
1477
|
+
* List of actions that cannot be edited.
|
|
1478
|
+
* Default: Empty. All actions are editable by default.
|
|
1479
|
+
*/
|
|
1480
|
+
readonlyActionIds?: string[];
|
|
1481
|
+
/** Whether the option to add a delay is disabled for the automation. */
|
|
1482
|
+
disableDelayAddition?: boolean;
|
|
1483
|
+
/** Whether the option to add a condition is disabled for the automation. */
|
|
1484
|
+
disableConditionAddition?: boolean;
|
|
1485
|
+
}
|
|
1486
|
+
interface AuditInfo extends AuditInfoIdOneOf {
|
|
1487
|
+
/** User ID. */
|
|
1488
|
+
userId?: string;
|
|
1489
|
+
/** Application ID. */
|
|
1490
|
+
appId?: string;
|
|
1491
|
+
}
|
|
1492
|
+
/** @oneof */
|
|
1493
|
+
interface AuditInfoIdOneOf {
|
|
1494
|
+
/** User ID. */
|
|
1495
|
+
userId?: string;
|
|
1496
|
+
/** Application ID. */
|
|
1497
|
+
appId?: string;
|
|
1498
|
+
}
|
|
1499
|
+
/** Automation runtime configuration */
|
|
1500
|
+
interface AutomationConfiguration {
|
|
1501
|
+
/** Status of the automation on the site. */
|
|
1502
|
+
status?: Status$6;
|
|
1503
|
+
/** Automation trigger configuration. */
|
|
1504
|
+
trigger?: Trigger;
|
|
1505
|
+
/** List of IDs of root actions. Root actions are the first actions to run after the trigger. The actions in the list run in parallel. */
|
|
1506
|
+
rootActionIds?: string[];
|
|
1507
|
+
/**
|
|
1508
|
+
* Map of all actions that the automation may execute.
|
|
1509
|
+
* The key is the action ID, and the value is the action configuration.
|
|
1510
|
+
*/
|
|
1511
|
+
actions?: Record<string, Action>;
|
|
1512
|
+
}
|
|
1513
|
+
declare enum TimeUnit {
|
|
1514
|
+
UNKNOWN_TIME_UNIT = "UNKNOWN_TIME_UNIT",
|
|
1515
|
+
MINUTES = "MINUTES",
|
|
1516
|
+
HOURS = "HOURS",
|
|
1517
|
+
DAYS = "DAYS",
|
|
1518
|
+
WEEKS = "WEEKS",
|
|
1519
|
+
MONTHS = "MONTHS"
|
|
1520
|
+
}
|
|
1521
|
+
interface Filter {
|
|
1522
|
+
/** Filter ID. */
|
|
1523
|
+
_id?: string;
|
|
1524
|
+
/** Field key from the payload schema, for example "formId". */
|
|
1525
|
+
fieldKey?: string;
|
|
1526
|
+
/** Filter expression that evaluates to a boolean. */
|
|
1527
|
+
filterExpression?: string;
|
|
1528
|
+
}
|
|
1529
|
+
interface FutureDateActivationOffset {
|
|
1530
|
+
/**
|
|
1531
|
+
* The offset value. The value is always taken as negative, so that the automation runs before the trigger date.
|
|
1532
|
+
* To create an offset that causes the automation to run after the trigger date, use a delay action.
|
|
1533
|
+
*/
|
|
1534
|
+
preScheduledEventOffsetExpression?: string;
|
|
1535
|
+
/** Time unit for the scheduled event offset. */
|
|
1536
|
+
scheduledEventOffsetTimeUnit?: TimeUnit;
|
|
1537
|
+
}
|
|
1538
|
+
interface RateLimit {
|
|
1539
|
+
/** Value expressing the maximum number of times the trigger can be activated. */
|
|
1540
|
+
maxActivationsExpression?: string;
|
|
1541
|
+
/** Duration of the rate limiting window in the selected time unit. If no value is set, the rate limit is permanent. */
|
|
1542
|
+
durationExpression?: string | null;
|
|
1543
|
+
/** Time unit for the rate limit duration. */
|
|
1544
|
+
durationTimeUnit?: TimeUnit;
|
|
1545
|
+
/** Unique identifier of each activation, by which rate limiter will count activations. */
|
|
1546
|
+
uniqueIdentifierExpression?: string | null;
|
|
1547
|
+
}
|
|
1548
|
+
interface ConditionExpressionGroup {
|
|
1549
|
+
/** Expression group operator. */
|
|
1550
|
+
operator?: Operator;
|
|
1551
|
+
/** List of boolean expressions to be evaluated with the given operator. */
|
|
1552
|
+
booleanExpressions?: string[];
|
|
1553
|
+
}
|
|
1554
|
+
declare enum Operator {
|
|
1555
|
+
UNKNOWN_OPERATOR = "UNKNOWN_OPERATOR",
|
|
1556
|
+
OR = "OR",
|
|
1557
|
+
AND = "AND"
|
|
1558
|
+
}
|
|
1559
|
+
declare enum Type$5 {
|
|
1560
|
+
/** Automation will be triggered according to the trigger configuration */
|
|
1561
|
+
UNKNOWN_ACTION_TYPE = "UNKNOWN_ACTION_TYPE",
|
|
1562
|
+
/** App defined Action */
|
|
1563
|
+
APP_DEFINED = "APP_DEFINED",
|
|
1564
|
+
/** Condition Action */
|
|
1565
|
+
CONDITION = "CONDITION",
|
|
1566
|
+
/** Delay Action */
|
|
1567
|
+
DELAY = "DELAY",
|
|
1568
|
+
/** RateLimit Action */
|
|
1569
|
+
RATE_LIMIT = "RATE_LIMIT",
|
|
1570
|
+
/** Output Action */
|
|
1571
|
+
OUTPUT = "OUTPUT"
|
|
1572
|
+
}
|
|
1573
|
+
interface AppDefinedAction {
|
|
1574
|
+
/** ID of the app that defines the action. */
|
|
1575
|
+
appId?: string;
|
|
1576
|
+
/** Action key. */
|
|
1577
|
+
actionKey?: string;
|
|
1578
|
+
/** Action input mapping. */
|
|
1579
|
+
inputMapping?: Record<string, any> | null;
|
|
1580
|
+
/**
|
|
1581
|
+
* Array of conditions determining whether to skip the action in the automation flow.
|
|
1582
|
+
* The action will be skipped if any of the expression groups evaluate to `true`.
|
|
1583
|
+
* Actions following a skipped action will still run.
|
|
1584
|
+
*/
|
|
1585
|
+
skipConditionOrExpressionGroups?: ConditionExpressionGroup[];
|
|
1586
|
+
/** List of IDs of actions to run in parallel once the action completes. */
|
|
1587
|
+
postActionIds?: string[];
|
|
1588
|
+
}
|
|
1589
|
+
interface ConditionAction {
|
|
1590
|
+
/** The condition evaluates to `true` if either of the expression groups evaluate to `true`. */
|
|
1591
|
+
orExpressionGroups?: ConditionExpressionGroup[];
|
|
1592
|
+
/** List of IDs of actions to run when the entire condition is evaluated to `true`. */
|
|
1593
|
+
truePostActionIds?: string[];
|
|
1594
|
+
/** List of IDs of actions to run when the entire condition is evaluated to `false`. */
|
|
1595
|
+
falsePostActionIds?: string[];
|
|
1596
|
+
}
|
|
1597
|
+
interface DelayAction {
|
|
1598
|
+
/** Value expressing the amount of time to wait from a specific date or from the time the action is executed. */
|
|
1599
|
+
offsetExpression?: string | null;
|
|
1600
|
+
/** Time unit for delay offset. */
|
|
1601
|
+
offsetTimeUnit?: TimeUnit;
|
|
1602
|
+
/**
|
|
1603
|
+
* The action due date. If defined without an offset, the automation will wait until this date to execute the next step.
|
|
1604
|
+
* If an offset is defined, it's calculated from this date.
|
|
1605
|
+
* The date is expressed in the number of milliseconds since the Unix Epoch (1 January, 1970 UTC).
|
|
1606
|
+
*/
|
|
1607
|
+
dueDateEpochExpression?: string | null;
|
|
1608
|
+
/** List of IDs of actions to run in parallel after the delay. */
|
|
1609
|
+
postActionIds?: string[];
|
|
1610
|
+
}
|
|
1611
|
+
interface RateLimitAction {
|
|
1612
|
+
/** The maximum number of activations allowed for the action. */
|
|
1613
|
+
maxActivationsExpression?: string;
|
|
1614
|
+
/**
|
|
1615
|
+
* Duration of the rate limiting window, expressed in selected time unit.
|
|
1616
|
+
* If no value is set, then there is no time limit on the rate limiter.
|
|
1617
|
+
*/
|
|
1618
|
+
rateLimitDurationExpression?: string | null;
|
|
1619
|
+
/** Time unit for the rate limit duration. */
|
|
1620
|
+
rateLimitDurationTimeUnit?: TimeUnit;
|
|
1621
|
+
/** Unique identifier of each activation by which rate limiter counts activations. */
|
|
1622
|
+
uniqueIdentifierExpression?: string | null;
|
|
1623
|
+
/** List of IDs of actions to run in parallel once the action completes. */
|
|
1624
|
+
postActionIds?: string[];
|
|
1625
|
+
}
|
|
1626
|
+
interface OutputAction {
|
|
1627
|
+
/** Output action output mapping. */
|
|
1628
|
+
outputMapping?: Record<string, any> | null;
|
|
1629
|
+
}
|
|
1630
|
+
declare enum Status$6 {
|
|
1631
|
+
/** unused */
|
|
1632
|
+
UNKNOWN_STATUS = "UNKNOWN_STATUS",
|
|
1633
|
+
/** Automation will be triggered according to the trigger configuration */
|
|
1634
|
+
ACTIVE = "ACTIVE",
|
|
1635
|
+
/** Automation will not be triggered */
|
|
1636
|
+
INACTIVE = "INACTIVE"
|
|
1637
|
+
}
|
|
1638
|
+
interface Trigger {
|
|
1639
|
+
/** ID of the app that defines the trigger. */
|
|
1640
|
+
appId?: string;
|
|
1641
|
+
/** Trigger key. */
|
|
1642
|
+
triggerKey?: string;
|
|
1643
|
+
/**
|
|
1644
|
+
* List of filters on schema fields.
|
|
1645
|
+
* In order for the automation to run, all filter expressions must evaluate to `true` for a given payload.
|
|
1646
|
+
*/
|
|
1647
|
+
filters?: Filter[];
|
|
1648
|
+
/** Defines the time offset between the trigger date and when the automation runs. */
|
|
1649
|
+
scheduledEventOffset?: FutureDateActivationOffset;
|
|
1650
|
+
/** Limits the number of times an automation can be triggered. */
|
|
1651
|
+
rateLimit?: RateLimit;
|
|
1652
|
+
automationConfigMapping?: Record<string, any> | null;
|
|
1653
|
+
}
|
|
1654
|
+
interface Action extends ActionInfoOneOf {
|
|
1655
|
+
/** Action defined by an app (via RPC, HTTP or Velo). */
|
|
1656
|
+
appDefinedInfo?: AppDefinedAction;
|
|
1657
|
+
/** Condition action. */
|
|
1658
|
+
conditionInfo?: ConditionAction;
|
|
1659
|
+
/** Delay action. */
|
|
1660
|
+
delayInfo?: DelayAction;
|
|
1661
|
+
/** Rate-limiting action. */
|
|
1662
|
+
rateLimitInfo?: RateLimitAction;
|
|
1663
|
+
/** Action ID. If not specified, a new ID is generated. */
|
|
1664
|
+
_id?: string | null;
|
|
1665
|
+
/** Action type. */
|
|
1666
|
+
type?: Type$5;
|
|
1667
|
+
/**
|
|
1668
|
+
* Human-readable name to differentiate the action from other actions of the same type.
|
|
1669
|
+
* The name can contain only alphanumeric characters and underscores. If not provided, a namespace in the form `actionkey-indexOfAction` is
|
|
1670
|
+
* generated automatically.
|
|
1671
|
+
* If the action has output, the output will be available in the payload under this name.
|
|
1672
|
+
* If the user has multiple actions with the same appId and actionKey, previous action output will be overwritten.
|
|
1673
|
+
*/
|
|
1674
|
+
namespace?: string | null;
|
|
1675
|
+
}
|
|
1676
|
+
/** @oneof */
|
|
1677
|
+
interface ActionInfoOneOf {
|
|
1678
|
+
/** Action defined by an app (via RPC, HTTP or Velo). */
|
|
1679
|
+
appDefinedInfo?: AppDefinedAction;
|
|
1680
|
+
/** Condition action. */
|
|
1681
|
+
conditionInfo?: ConditionAction;
|
|
1682
|
+
/** Delay action. */
|
|
1683
|
+
delayInfo?: DelayAction;
|
|
1684
|
+
/** Rate-limiting action. */
|
|
1685
|
+
rateLimitInfo?: RateLimitAction;
|
|
1686
|
+
}
|
|
1687
|
+
declare enum Origin {
|
|
1688
|
+
/** default value. this is unused */
|
|
1689
|
+
UNKNOWN_ORIGIN = "UNKNOWN_ORIGIN",
|
|
1690
|
+
/** user created automation */
|
|
1691
|
+
USER = "USER",
|
|
1692
|
+
/** automation created by application (site specific) */
|
|
1693
|
+
APPLICATION = "APPLICATION",
|
|
1694
|
+
/** preinstalled application automation */
|
|
1695
|
+
PREINSTALLED = "PREINSTALLED"
|
|
1696
|
+
}
|
|
1697
|
+
interface ApplicationOrigin {
|
|
1698
|
+
/** Application ID. */
|
|
1699
|
+
appId?: string;
|
|
1700
|
+
}
|
|
1701
|
+
interface PreinstalledOrigin {
|
|
1702
|
+
/** ID of the app that defines the preinstalled automation. */
|
|
1703
|
+
appId?: string;
|
|
1704
|
+
/** Application component ID. */
|
|
1705
|
+
componentId?: string;
|
|
1706
|
+
/** Application component version. */
|
|
1707
|
+
componentVersion?: number;
|
|
1708
|
+
/**
|
|
1709
|
+
* Whether the automation is an override automation. If the user modifies the preinstalled automation installed on their site, a site-specific
|
|
1710
|
+
* automation is created that overrides the original one. If the user makes no modifications this boolean is set to `false` and the original
|
|
1711
|
+
* preinstalled automation is used.
|
|
1712
|
+
*
|
|
1713
|
+
* Default: `false`
|
|
1714
|
+
* @readonly
|
|
1715
|
+
*/
|
|
1716
|
+
override?: boolean | null;
|
|
1717
|
+
}
|
|
1718
|
+
interface AutomationSettings {
|
|
1719
|
+
/**
|
|
1720
|
+
* Whether the automation is hidden from users.
|
|
1721
|
+
* Default: `false`
|
|
1722
|
+
*/
|
|
1723
|
+
hidden?: boolean;
|
|
1724
|
+
/**
|
|
1725
|
+
* Whether the automation is read-only.
|
|
1726
|
+
* Default: `false`
|
|
1727
|
+
*/
|
|
1728
|
+
readonly?: boolean;
|
|
1729
|
+
/**
|
|
1730
|
+
* Whether the option to delete the automation from the site is disabled.
|
|
1731
|
+
* Default: `false`
|
|
1732
|
+
*/
|
|
1733
|
+
disableDelete?: boolean;
|
|
1734
|
+
/**
|
|
1735
|
+
* Whether the option to change the automation status (from active to inactive and vice versa) is disabled.
|
|
1736
|
+
* Default: `false`
|
|
1737
|
+
*/
|
|
1738
|
+
disableStatusChange?: boolean;
|
|
1739
|
+
/** Automation action settings. */
|
|
1740
|
+
actionSettings?: ActionSettings;
|
|
1741
|
+
}
|
|
1742
|
+
interface DraftInfo {
|
|
1743
|
+
/**
|
|
1744
|
+
* optional - automationId of the original automation
|
|
1745
|
+
* @readonly
|
|
1746
|
+
*/
|
|
1747
|
+
originalAutomationId?: string | null;
|
|
1748
|
+
}
|
|
1749
|
+
interface DeletedWithEntity {
|
|
1750
|
+
/** Deleted automation */
|
|
1751
|
+
automation?: Automation;
|
|
1752
|
+
}
|
|
1402
1753
|
interface GuestCountUpdated {
|
|
1403
1754
|
/** Guest. */
|
|
1404
1755
|
guest?: EventGuest;
|
|
@@ -1998,7 +2349,7 @@ interface Recurrences$5 {
|
|
|
1998
2349
|
* Recurrence status.
|
|
1999
2350
|
* @readonly
|
|
2000
2351
|
*/
|
|
2001
|
-
status?:
|
|
2352
|
+
status?: RecurrenceStatusStatus$1;
|
|
2002
2353
|
}
|
|
2003
2354
|
interface Occurrence$5 {
|
|
2004
2355
|
/** Event start timestamp. */
|
|
@@ -2010,7 +2361,7 @@ interface Occurrence$5 {
|
|
|
2010
2361
|
/** Whether time zone is displayed in formatted schedule. */
|
|
2011
2362
|
showTimeZone?: boolean;
|
|
2012
2363
|
}
|
|
2013
|
-
declare enum
|
|
2364
|
+
declare enum RecurrenceStatusStatus$1 {
|
|
2014
2365
|
/** Event occurs only once. */
|
|
2015
2366
|
ONE_TIME = "ONE_TIME",
|
|
2016
2367
|
/** Event is recurring. */
|
|
@@ -3492,11 +3843,27 @@ type _publicOnNotificationConfigDeletedType = typeof onNotificationConfigDeleted
|
|
|
3492
3843
|
/** */
|
|
3493
3844
|
declare const onNotificationConfigDeleted: ReturnType<typeof createEventModule$a<_publicOnNotificationConfigDeletedType>>;
|
|
3494
3845
|
|
|
3846
|
+
type context$d_Action = Action;
|
|
3847
|
+
type context$d_ActionInfoOneOf = ActionInfoOneOf;
|
|
3848
|
+
type context$d_ActionSettings = ActionSettings;
|
|
3849
|
+
type context$d_AppDefinedAction = AppDefinedAction;
|
|
3850
|
+
type context$d_ApplicationOrigin = ApplicationOrigin;
|
|
3495
3851
|
type context$d_AttendanceStatus = AttendanceStatus;
|
|
3496
3852
|
declare const context$d_AttendanceStatus: typeof AttendanceStatus;
|
|
3853
|
+
type context$d_AuditInfo = AuditInfo;
|
|
3854
|
+
type context$d_AuditInfoIdOneOf = AuditInfoIdOneOf;
|
|
3855
|
+
type context$d_Automation = Automation;
|
|
3856
|
+
type context$d_AutomationConfiguration = AutomationConfiguration;
|
|
3857
|
+
type context$d_AutomationOriginInfoOneOf = AutomationOriginInfoOneOf;
|
|
3858
|
+
type context$d_AutomationSettings = AutomationSettings;
|
|
3859
|
+
type context$d_ConditionAction = ConditionAction;
|
|
3860
|
+
type context$d_ConditionExpressionGroup = ConditionExpressionGroup;
|
|
3497
3861
|
type context$d_ContactEventStatusUpdated = ContactEventStatusUpdated;
|
|
3498
3862
|
type context$d_ContactEventStatusUpdatedEventType = ContactEventStatusUpdatedEventType;
|
|
3499
3863
|
declare const context$d_ContactEventStatusUpdatedEventType: typeof ContactEventStatusUpdatedEventType;
|
|
3864
|
+
type context$d_DelayAction = DelayAction;
|
|
3865
|
+
type context$d_DeletedWithEntity = DeletedWithEntity;
|
|
3866
|
+
type context$d_DraftInfo = DraftInfo;
|
|
3500
3867
|
type context$d_EmailNotificationConfig = EmailNotificationConfig;
|
|
3501
3868
|
type context$d_EmailNotificationReminderTime = EmailNotificationReminderTime;
|
|
3502
3869
|
declare const context$d_EmailNotificationReminderTime: typeof EmailNotificationReminderTime;
|
|
@@ -3505,6 +3872,8 @@ declare const context$d_EmailNotificationType: typeof EmailNotificationType;
|
|
|
3505
3872
|
type context$d_EmailTemplate = EmailTemplate;
|
|
3506
3873
|
type context$d_EventGuest = EventGuest;
|
|
3507
3874
|
type context$d_EventGuests = EventGuests;
|
|
3875
|
+
type context$d_Filter = Filter;
|
|
3876
|
+
type context$d_FutureDateActivationOffset = FutureDateActivationOffset;
|
|
3508
3877
|
type context$d_GuestCountUpdate = GuestCountUpdate;
|
|
3509
3878
|
type context$d_GuestCountUpdated = GuestCountUpdated;
|
|
3510
3879
|
type context$d_GuestType = GuestType;
|
|
@@ -3519,10 +3888,18 @@ type context$d_NotificationConfigUpdatedEnvelope = NotificationConfigUpdatedEnve
|
|
|
3519
3888
|
type context$d_NotifyActionType = NotifyActionType;
|
|
3520
3889
|
declare const context$d_NotifyActionType: typeof NotifyActionType;
|
|
3521
3890
|
type context$d_NotifyGuestAction = NotifyGuestAction;
|
|
3891
|
+
type context$d_Operator = Operator;
|
|
3892
|
+
declare const context$d_Operator: typeof Operator;
|
|
3522
3893
|
type context$d_OrderEmailAdded = OrderEmailAdded;
|
|
3523
3894
|
type context$d_OrderGuest = OrderGuest;
|
|
3895
|
+
type context$d_Origin = Origin;
|
|
3896
|
+
declare const context$d_Origin: typeof Origin;
|
|
3897
|
+
type context$d_OutputAction = OutputAction;
|
|
3898
|
+
type context$d_PreinstalledOrigin = PreinstalledOrigin;
|
|
3524
3899
|
type context$d_PushNotificationType = PushNotificationType;
|
|
3525
3900
|
declare const context$d_PushNotificationType: typeof PushNotificationType;
|
|
3901
|
+
type context$d_RateLimit = RateLimit;
|
|
3902
|
+
type context$d_RateLimitAction = RateLimitAction;
|
|
3526
3903
|
type context$d_ResolveEmailNotificationConfigRequest = ResolveEmailNotificationConfigRequest;
|
|
3527
3904
|
type context$d_ResolveEmailNotificationConfigResponse = ResolveEmailNotificationConfigResponse;
|
|
3528
3905
|
type context$d_ResolveNotificationConfigRequest = ResolveNotificationConfigRequest;
|
|
@@ -3536,12 +3913,16 @@ type context$d_TicketGuest = TicketGuest;
|
|
|
3536
3913
|
type context$d_TicketGuestDetails = TicketGuestDetails;
|
|
3537
3914
|
type context$d_TicketPdfResolveDelayed = TicketPdfResolveDelayed;
|
|
3538
3915
|
type context$d_TicketPdfResolved = TicketPdfResolved;
|
|
3916
|
+
type context$d_TimeUnit = TimeUnit;
|
|
3917
|
+
declare const context$d_TimeUnit: typeof TimeUnit;
|
|
3918
|
+
type context$d_Trigger = Trigger;
|
|
3539
3919
|
type context$d_TriggerNotificationOptions = TriggerNotificationOptions;
|
|
3540
3920
|
type context$d_TriggerNotificationRequest = TriggerNotificationRequest;
|
|
3541
3921
|
type context$d_TriggerNotificationRequestGuestsOneOf = TriggerNotificationRequestGuestsOneOf;
|
|
3542
3922
|
type context$d_TriggerNotificationRequestNotificationOneOf = TriggerNotificationRequestNotificationOneOf;
|
|
3543
3923
|
type context$d_TriggerNotificationResponse = TriggerNotificationResponse;
|
|
3544
3924
|
type context$d_UnprocessedTargetEvent = UnprocessedTargetEvent;
|
|
3925
|
+
type context$d_UpdatedWithPreviousEntity = UpdatedWithPreviousEntity;
|
|
3545
3926
|
type context$d_UpsertNotificationConfig = UpsertNotificationConfig;
|
|
3546
3927
|
type context$d_UpsertNotificationConfigRequest = UpsertNotificationConfigRequest;
|
|
3547
3928
|
type context$d_UpsertNotificationConfigResponse = UpsertNotificationConfigResponse;
|
|
@@ -3559,7 +3940,7 @@ declare const context$d_resolveNotificationConfig: typeof resolveNotificationCon
|
|
|
3559
3940
|
declare const context$d_triggerNotification: typeof triggerNotification;
|
|
3560
3941
|
declare const context$d_upsertNotificationConfig: typeof upsertNotificationConfig;
|
|
3561
3942
|
declare namespace context$d {
|
|
3562
|
-
export { type ActionEvent$7 as ActionEvent, type Address$8 as Address, type AddressLocation$8 as AddressLocation, type AddressStreetOneOf$8 as AddressStreetOneOf, type Agenda$3 as Agenda, context$d_AttendanceStatus as AttendanceStatus, type BaseEventMetadata$a as BaseEventMetadata, type CalendarLinks$5 as CalendarLinks, type Category$4 as Category, type CategoryCounts$4 as CategoryCounts, type CheckIn$3 as CheckIn, type CheckoutFormMessages$3 as CheckoutFormMessages, type CommonAddress$1 as CommonAddress, type CommonAddressLocation$1 as CommonAddressLocation, type CommonAddressStreetOneOf$1 as CommonAddressStreetOneOf, type CommonStreetAddress$1 as CommonStreetAddress, type CommonSubdivision$1 as CommonSubdivision, ConferenceType$3 as ConferenceType, type context$d_ContactEventStatusUpdated as ContactEventStatusUpdated, context$d_ContactEventStatusUpdatedEventType as ContactEventStatusUpdatedEventType, type CouponDiscount$1 as CouponDiscount, type Dashboard$5 as Dashboard, type Discount$1 as Discount, type DiscountItem$1 as DiscountItem, type DiscountItemDiscountOneOf$1 as DiscountItemDiscountOneOf, type DomainEvent$7 as DomainEvent, type DomainEventBodyOneOf$7 as DomainEventBodyOneOf, type context$d_EmailNotificationConfig as EmailNotificationConfig, context$d_EmailNotificationReminderTime as EmailNotificationReminderTime, context$d_EmailNotificationType as EmailNotificationType, type context$d_EmailTemplate as EmailTemplate, type Empty$4 as Empty, type EntityCreatedEvent$7 as EntityCreatedEvent, type EntityDeletedEvent$7 as EntityDeletedEvent, type EntityUpdatedEvent$7 as EntityUpdatedEvent, type Event$3 as Event, type EventCanceled$2 as EventCanceled, type EventCopied$3 as EventCopied, type EventDeleted$2 as EventDeleted, type EventDisplaySettings$3 as EventDisplaySettings, type EventEnded$2 as EventEnded, type context$d_EventGuest as EventGuest, type context$d_EventGuests as EventGuests, type EventMetadata$5 as EventMetadata, type EventReminder$1 as EventReminder, EventStatus$5 as EventStatus, EventType$3 as EventType, type EventUpdated$3 as EventUpdated, type ExternalEvent$3 as ExternalEvent, type Fee$1 as Fee, FeeName$1 as FeeName, FeeType$2 as FeeType, type Feed$3 as Feed, type File$1 as File, type Form$3 as Form, type FormMessages$3 as FormMessages, type FormResponse$3 as FormResponse, type FormattedAddress$3 as FormattedAddress, type Guest$2 as Guest, type context$d_GuestCountUpdate as GuestCountUpdate, type context$d_GuestCountUpdated as GuestCountUpdated, type GuestDetails$2 as GuestDetails, type GuestListConfig$3 as GuestListConfig, context$d_GuestType as GuestType, type IdentificationData$b as IdentificationData, type IdentificationDataIdOneOf$b as IdentificationDataIdOneOf, type Input$3 as Input, type InputControl$3 as InputControl, InputControlType$3 as InputControlType, type InputValue$3 as InputValue, type Invoice$1 as Invoice, type Item$2 as Item, type Keyword$3 as Keyword, type Label$3 as Label, type LabellingSettings$3 as LabellingSettings, type Link$1 as Link, type Location$5 as Location, LocationType$5 as LocationType, type MapCoordinates$5 as MapCoordinates, type context$d_MemberEventStatusUpdated as MemberEventStatusUpdated, context$d_MemberEventStatusUpdatedEventType as MemberEventStatusUpdatedEventType, type MessageEnvelope$b as MessageEnvelope, type Money$6 as Money, type Negative$3 as Negative, type NegativeResponseConfirmation$3 as NegativeResponseConfirmation, type context$d_NotificationConfig as NotificationConfig, type context$d_NotificationConfigCreatedEnvelope as NotificationConfigCreatedEnvelope, type context$d_NotificationConfigDeletedEnvelope as NotificationConfigDeletedEnvelope, type context$d_NotificationConfigUpdatedEnvelope as NotificationConfigUpdatedEnvelope, context$d_NotifyActionType as NotifyActionType, type context$d_NotifyGuestAction as NotifyGuestAction, type Occurrence$5 as Occurrence, type OnlineConferencing$3 as OnlineConferencing, type OnlineConferencingConfig$3 as OnlineConferencingConfig, type OnlineConferencingLogin$3 as OnlineConferencingLogin, type OnlineConferencingSession$3 as OnlineConferencingSession, type OptionSelection$3 as OptionSelection, type OptionSelectionSelectedOptionOneOf$3 as OptionSelectionSelectedOptionOneOf, type OrderConfirmed$1 as OrderConfirmed, type context$d_OrderEmailAdded as OrderEmailAdded, type context$d_OrderGuest as OrderGuest, type OrderPaid$1 as OrderPaid, OrderStatus$2 as OrderStatus, type PaidPlanDiscount$1 as PaidPlanDiscount, type PaidPlanDiscountDiscountOneOf$1 as PaidPlanDiscountDiscountOneOf, type PercentDiscount$1 as PercentDiscount, type Positive$3 as Positive, type PositiveResponseConfirmation$3 as PositiveResponseConfirmation, context$d_PushNotificationType as PushNotificationType, type Recurrences$5 as Recurrences, type Registration$3 as Registration, type RegistrationClosedMessages$3 as RegistrationClosedMessages, RegistrationStatus$3 as RegistrationStatus, type context$d_ResolveEmailNotificationConfigRequest as ResolveEmailNotificationConfigRequest, type context$d_ResolveEmailNotificationConfigResponse as ResolveEmailNotificationConfigResponse, type context$d_ResolveNotificationConfigRequest as ResolveNotificationConfigRequest, type context$d_ResolveNotificationConfigResponse as ResolveNotificationConfigResponse, type context$d_ResolveNotificationConfigResponseNonNullableFields as ResolveNotificationConfigResponseNonNullableFields, type ResponseConfirmation$3 as ResponseConfirmation, type RestoreInfo$5 as RestoreInfo, type RsvpCollection$3 as RsvpCollection, type RsvpCollectionConfig$3 as RsvpCollectionConfig, type RsvpCreated$1 as RsvpCreated, type RsvpFormMessages$3 as RsvpFormMessages, type context$d_RsvpGuest as RsvpGuest, RsvpStatus$1 as RsvpStatus, RsvpStatusOptions$3 as RsvpStatusOptions, type RsvpSummary$4 as RsvpSummary, type RsvpUpdated$1 as RsvpUpdated, type ScheduleConfig$5 as ScheduleConfig, type Scheduling$3 as Scheduling, type SeoSchema$3 as SeoSchema, type SeoSettings$3 as SeoSettings, type Settings$4 as Settings, type SiteUrl$3 as SiteUrl, type StandardDetails$3 as StandardDetails, State$7 as State, Status$6 as Status, type StreetAddress$8 as StreetAddress, type Subdivision$8 as Subdivision, SubdivisionType$8 as SubdivisionType, type Tag$3 as Tag, type Target$1 as Target, context$d_TargetType as TargetType, type context$d_TaskContext as TaskContext, type Tax$1 as Tax, type TaxConfig$3 as TaxConfig, TaxType$4 as TaxType, type Ticket$2 as Ticket, type TicketDetails$2 as TicketDetails, type context$d_TicketGuest as TicketGuest, type context$d_TicketGuestDetails as TicketGuestDetails, type context$d_TicketPdfResolveDelayed as TicketPdfResolveDelayed, type context$d_TicketPdfResolved as TicketPdfResolved, type Ticketing$3 as Ticketing, type TicketingConfig$3 as TicketingConfig, type TicketingSummary$3 as TicketingSummary, type TicketsUnavailableMessages$3 as TicketsUnavailableMessages, type TimeDuration$1 as TimeDuration, type context$d_TriggerNotificationOptions as TriggerNotificationOptions, type context$d_TriggerNotificationRequest as TriggerNotificationRequest, type context$d_TriggerNotificationRequestGuestsOneOf as TriggerNotificationRequestGuestsOneOf, type context$d_TriggerNotificationRequestNotificationOneOf as TriggerNotificationRequestNotificationOneOf, type context$d_TriggerNotificationResponse as TriggerNotificationResponse, type context$d_UnprocessedTargetEvent as UnprocessedTargetEvent, type context$d_UpsertNotificationConfig as UpsertNotificationConfig, type context$d_UpsertNotificationConfigRequest as UpsertNotificationConfigRequest, type context$d_UpsertNotificationConfigResponse as UpsertNotificationConfigResponse, type context$d_UpsertNotificationConfigResponseNonNullableFields as UpsertNotificationConfigResponseNonNullableFields, ValueType$3 as ValueType, VisitorType$3 as VisitorType, WebhookIdentityType$b as WebhookIdentityType, type context$d__publicOnNotificationConfigCreatedType as _publicOnNotificationConfigCreatedType, type context$d__publicOnNotificationConfigDeletedType as _publicOnNotificationConfigDeletedType, type context$d__publicOnNotificationConfigUpdatedType as _publicOnNotificationConfigUpdatedType, type context$d__publicResolveNotificationConfigType as _publicResolveNotificationConfigType, type context$d__publicTriggerNotificationType as _publicTriggerNotificationType, type context$d__publicUpsertNotificationConfigType as _publicUpsertNotificationConfigType, context$d_onNotificationConfigCreated as onNotificationConfigCreated, context$d_onNotificationConfigDeleted as onNotificationConfigDeleted, context$d_onNotificationConfigUpdated as onNotificationConfigUpdated, onNotificationConfigCreated$1 as publicOnNotificationConfigCreated, onNotificationConfigDeleted$1 as publicOnNotificationConfigDeleted, onNotificationConfigUpdated$1 as publicOnNotificationConfigUpdated, context$d_resolveNotificationConfig as resolveNotificationConfig, context$d_triggerNotification as triggerNotification, context$d_upsertNotificationConfig as upsertNotificationConfig };
|
|
3943
|
+
export { type context$d_Action as Action, type ActionEvent$7 as ActionEvent, type context$d_ActionInfoOneOf as ActionInfoOneOf, type context$d_ActionSettings as ActionSettings, type Address$8 as Address, type AddressLocation$8 as AddressLocation, type AddressStreetOneOf$8 as AddressStreetOneOf, type Agenda$3 as Agenda, type context$d_AppDefinedAction as AppDefinedAction, type context$d_ApplicationOrigin as ApplicationOrigin, context$d_AttendanceStatus as AttendanceStatus, type context$d_AuditInfo as AuditInfo, type context$d_AuditInfoIdOneOf as AuditInfoIdOneOf, type context$d_Automation as Automation, type context$d_AutomationConfiguration as AutomationConfiguration, type context$d_AutomationOriginInfoOneOf as AutomationOriginInfoOneOf, type context$d_AutomationSettings as AutomationSettings, type BaseEventMetadata$a as BaseEventMetadata, type CalendarLinks$5 as CalendarLinks, type Category$4 as Category, type CategoryCounts$4 as CategoryCounts, type CheckIn$3 as CheckIn, type CheckoutFormMessages$3 as CheckoutFormMessages, type CommonAddress$1 as CommonAddress, type CommonAddressLocation$1 as CommonAddressLocation, type CommonAddressStreetOneOf$1 as CommonAddressStreetOneOf, type CommonStreetAddress$1 as CommonStreetAddress, type CommonSubdivision$1 as CommonSubdivision, type context$d_ConditionAction as ConditionAction, type context$d_ConditionExpressionGroup as ConditionExpressionGroup, ConferenceType$3 as ConferenceType, type context$d_ContactEventStatusUpdated as ContactEventStatusUpdated, context$d_ContactEventStatusUpdatedEventType as ContactEventStatusUpdatedEventType, type CouponDiscount$1 as CouponDiscount, type Dashboard$5 as Dashboard, type context$d_DelayAction as DelayAction, type context$d_DeletedWithEntity as DeletedWithEntity, type Discount$1 as Discount, type DiscountItem$1 as DiscountItem, type DiscountItemDiscountOneOf$1 as DiscountItemDiscountOneOf, type DomainEvent$7 as DomainEvent, type DomainEventBodyOneOf$7 as DomainEventBodyOneOf, type context$d_DraftInfo as DraftInfo, type context$d_EmailNotificationConfig as EmailNotificationConfig, context$d_EmailNotificationReminderTime as EmailNotificationReminderTime, context$d_EmailNotificationType as EmailNotificationType, type context$d_EmailTemplate as EmailTemplate, type Empty$4 as Empty, type EntityCreatedEvent$7 as EntityCreatedEvent, type EntityDeletedEvent$7 as EntityDeletedEvent, type EntityUpdatedEvent$7 as EntityUpdatedEvent, type Event$3 as Event, type EventCanceled$2 as EventCanceled, type EventCopied$3 as EventCopied, type EventDeleted$2 as EventDeleted, type EventDisplaySettings$3 as EventDisplaySettings, type EventEnded$2 as EventEnded, type context$d_EventGuest as EventGuest, type context$d_EventGuests as EventGuests, type EventMetadata$5 as EventMetadata, type EventReminder$1 as EventReminder, EventStatus$5 as EventStatus, EventType$3 as EventType, type EventUpdated$3 as EventUpdated, type ExternalEvent$3 as ExternalEvent, type Fee$1 as Fee, FeeName$1 as FeeName, FeeType$2 as FeeType, type Feed$3 as Feed, type File$1 as File, type context$d_Filter as Filter, type Form$3 as Form, type FormMessages$3 as FormMessages, type FormResponse$3 as FormResponse, type FormattedAddress$3 as FormattedAddress, type context$d_FutureDateActivationOffset as FutureDateActivationOffset, type Guest$2 as Guest, type context$d_GuestCountUpdate as GuestCountUpdate, type context$d_GuestCountUpdated as GuestCountUpdated, type GuestDetails$2 as GuestDetails, type GuestListConfig$3 as GuestListConfig, context$d_GuestType as GuestType, type IdentificationData$b as IdentificationData, type IdentificationDataIdOneOf$b as IdentificationDataIdOneOf, type Input$3 as Input, type InputControl$3 as InputControl, InputControlType$3 as InputControlType, type InputValue$3 as InputValue, type Invoice$1 as Invoice, type Item$2 as Item, type Keyword$3 as Keyword, type Label$3 as Label, type LabellingSettings$3 as LabellingSettings, type Link$1 as Link, type Location$5 as Location, LocationType$5 as LocationType, type MapCoordinates$5 as MapCoordinates, type context$d_MemberEventStatusUpdated as MemberEventStatusUpdated, context$d_MemberEventStatusUpdatedEventType as MemberEventStatusUpdatedEventType, type MessageEnvelope$b as MessageEnvelope, type Money$6 as Money, type Negative$3 as Negative, type NegativeResponseConfirmation$3 as NegativeResponseConfirmation, type context$d_NotificationConfig as NotificationConfig, type context$d_NotificationConfigCreatedEnvelope as NotificationConfigCreatedEnvelope, type context$d_NotificationConfigDeletedEnvelope as NotificationConfigDeletedEnvelope, type context$d_NotificationConfigUpdatedEnvelope as NotificationConfigUpdatedEnvelope, context$d_NotifyActionType as NotifyActionType, type context$d_NotifyGuestAction as NotifyGuestAction, type Occurrence$5 as Occurrence, type OnlineConferencing$3 as OnlineConferencing, type OnlineConferencingConfig$3 as OnlineConferencingConfig, type OnlineConferencingLogin$3 as OnlineConferencingLogin, type OnlineConferencingSession$3 as OnlineConferencingSession, context$d_Operator as Operator, type OptionSelection$3 as OptionSelection, type OptionSelectionSelectedOptionOneOf$3 as OptionSelectionSelectedOptionOneOf, type OrderConfirmed$1 as OrderConfirmed, type context$d_OrderEmailAdded as OrderEmailAdded, type context$d_OrderGuest as OrderGuest, type OrderPaid$1 as OrderPaid, OrderStatus$2 as OrderStatus, context$d_Origin as Origin, type context$d_OutputAction as OutputAction, type PaidPlanDiscount$1 as PaidPlanDiscount, type PaidPlanDiscountDiscountOneOf$1 as PaidPlanDiscountDiscountOneOf, type PercentDiscount$1 as PercentDiscount, type Positive$3 as Positive, type PositiveResponseConfirmation$3 as PositiveResponseConfirmation, type context$d_PreinstalledOrigin as PreinstalledOrigin, context$d_PushNotificationType as PushNotificationType, type context$d_RateLimit as RateLimit, type context$d_RateLimitAction as RateLimitAction, RecurrenceStatusStatus$1 as RecurrenceStatusStatus, type Recurrences$5 as Recurrences, type Registration$3 as Registration, type RegistrationClosedMessages$3 as RegistrationClosedMessages, RegistrationStatus$3 as RegistrationStatus, type context$d_ResolveEmailNotificationConfigRequest as ResolveEmailNotificationConfigRequest, type context$d_ResolveEmailNotificationConfigResponse as ResolveEmailNotificationConfigResponse, type context$d_ResolveNotificationConfigRequest as ResolveNotificationConfigRequest, type context$d_ResolveNotificationConfigResponse as ResolveNotificationConfigResponse, type context$d_ResolveNotificationConfigResponseNonNullableFields as ResolveNotificationConfigResponseNonNullableFields, type ResponseConfirmation$3 as ResponseConfirmation, type RestoreInfo$5 as RestoreInfo, type RsvpCollection$3 as RsvpCollection, type RsvpCollectionConfig$3 as RsvpCollectionConfig, type RsvpCreated$1 as RsvpCreated, type RsvpFormMessages$3 as RsvpFormMessages, type context$d_RsvpGuest as RsvpGuest, RsvpStatus$1 as RsvpStatus, RsvpStatusOptions$3 as RsvpStatusOptions, type RsvpSummary$4 as RsvpSummary, type RsvpUpdated$1 as RsvpUpdated, type ScheduleConfig$5 as ScheduleConfig, type Scheduling$3 as Scheduling, type SeoSchema$3 as SeoSchema, type SeoSettings$3 as SeoSettings, type Settings$4 as Settings, type SiteUrl$3 as SiteUrl, type StandardDetails$3 as StandardDetails, State$7 as State, Status$6 as Status, type StreetAddress$8 as StreetAddress, type Subdivision$8 as Subdivision, SubdivisionType$8 as SubdivisionType, type Tag$3 as Tag, type Target$1 as Target, context$d_TargetType as TargetType, type context$d_TaskContext as TaskContext, type Tax$1 as Tax, type TaxConfig$3 as TaxConfig, TaxType$4 as TaxType, type Ticket$2 as Ticket, type TicketDetails$2 as TicketDetails, type context$d_TicketGuest as TicketGuest, type context$d_TicketGuestDetails as TicketGuestDetails, type context$d_TicketPdfResolveDelayed as TicketPdfResolveDelayed, type context$d_TicketPdfResolved as TicketPdfResolved, type Ticketing$3 as Ticketing, type TicketingConfig$3 as TicketingConfig, type TicketingSummary$3 as TicketingSummary, type TicketsUnavailableMessages$3 as TicketsUnavailableMessages, type TimeDuration$1 as TimeDuration, context$d_TimeUnit as TimeUnit, type context$d_Trigger as Trigger, type context$d_TriggerNotificationOptions as TriggerNotificationOptions, type context$d_TriggerNotificationRequest as TriggerNotificationRequest, type context$d_TriggerNotificationRequestGuestsOneOf as TriggerNotificationRequestGuestsOneOf, type context$d_TriggerNotificationRequestNotificationOneOf as TriggerNotificationRequestNotificationOneOf, type context$d_TriggerNotificationResponse as TriggerNotificationResponse, Type$5 as Type, type context$d_UnprocessedTargetEvent as UnprocessedTargetEvent, type context$d_UpdatedWithPreviousEntity as UpdatedWithPreviousEntity, type context$d_UpsertNotificationConfig as UpsertNotificationConfig, type context$d_UpsertNotificationConfigRequest as UpsertNotificationConfigRequest, type context$d_UpsertNotificationConfigResponse as UpsertNotificationConfigResponse, type context$d_UpsertNotificationConfigResponseNonNullableFields as UpsertNotificationConfigResponseNonNullableFields, ValueType$3 as ValueType, VisitorType$3 as VisitorType, WebhookIdentityType$b as WebhookIdentityType, type context$d__publicOnNotificationConfigCreatedType as _publicOnNotificationConfigCreatedType, type context$d__publicOnNotificationConfigDeletedType as _publicOnNotificationConfigDeletedType, type context$d__publicOnNotificationConfigUpdatedType as _publicOnNotificationConfigUpdatedType, type context$d__publicResolveNotificationConfigType as _publicResolveNotificationConfigType, type context$d__publicTriggerNotificationType as _publicTriggerNotificationType, type context$d__publicUpsertNotificationConfigType as _publicUpsertNotificationConfigType, context$d_onNotificationConfigCreated as onNotificationConfigCreated, context$d_onNotificationConfigDeleted as onNotificationConfigDeleted, context$d_onNotificationConfigUpdated as onNotificationConfigUpdated, onNotificationConfigCreated$1 as publicOnNotificationConfigCreated, onNotificationConfigDeleted$1 as publicOnNotificationConfigDeleted, onNotificationConfigUpdated$1 as publicOnNotificationConfigUpdated, context$d_resolveNotificationConfig as resolveNotificationConfig, context$d_triggerNotification as triggerNotification, context$d_upsertNotificationConfig as upsertNotificationConfig };
|
|
3563
3944
|
}
|
|
3564
3945
|
|
|
3565
3946
|
/** Schedule item describes the schedule within an event. Each event may contain multiple schedule items. */
|
|
@@ -1399,6 +1399,357 @@ declare enum EmailNotificationReminderTime {
|
|
|
1399
1399
|
/** 30 minutes prior */
|
|
1400
1400
|
BEFORE_30_MINUTES = "BEFORE_30_MINUTES"
|
|
1401
1401
|
}
|
|
1402
|
+
interface UpdatedWithPreviousEntity {
|
|
1403
|
+
/** previous automation */
|
|
1404
|
+
previousAutomation?: Automation;
|
|
1405
|
+
/** updated automation */
|
|
1406
|
+
currentAutomation?: Automation;
|
|
1407
|
+
}
|
|
1408
|
+
interface Automation extends AutomationOriginInfoOneOf {
|
|
1409
|
+
/** Application info */
|
|
1410
|
+
applicationInfo?: ApplicationOrigin;
|
|
1411
|
+
/** Preinstalled info */
|
|
1412
|
+
preinstalledInfo?: PreinstalledOrigin;
|
|
1413
|
+
/**
|
|
1414
|
+
* Automation ID.
|
|
1415
|
+
* @readonly
|
|
1416
|
+
*/
|
|
1417
|
+
_id?: string | null;
|
|
1418
|
+
/**
|
|
1419
|
+
* Revision number, which increments by 1 each time the automation is updated.
|
|
1420
|
+
* To prevent conflicting changes,
|
|
1421
|
+
* the current revision must be passed when updating the automation.
|
|
1422
|
+
*
|
|
1423
|
+
* Ignored when creating an automation.
|
|
1424
|
+
* @readonly
|
|
1425
|
+
*/
|
|
1426
|
+
revision?: string | null;
|
|
1427
|
+
/**
|
|
1428
|
+
* Information about the creator of the automation.
|
|
1429
|
+
* @readonly
|
|
1430
|
+
*/
|
|
1431
|
+
createdBy?: AuditInfo;
|
|
1432
|
+
/**
|
|
1433
|
+
* Date and time the automation was created.
|
|
1434
|
+
* @readonly
|
|
1435
|
+
*/
|
|
1436
|
+
_createdDate?: Date;
|
|
1437
|
+
/**
|
|
1438
|
+
* The entity that last updated the automation.
|
|
1439
|
+
* @readonly
|
|
1440
|
+
*/
|
|
1441
|
+
updatedBy?: AuditInfo;
|
|
1442
|
+
/**
|
|
1443
|
+
* Date and time the automation was last updated.
|
|
1444
|
+
* @readonly
|
|
1445
|
+
*/
|
|
1446
|
+
_updatedDate?: Date;
|
|
1447
|
+
/** Automation name that is displayed on the user's site. */
|
|
1448
|
+
name?: string;
|
|
1449
|
+
/** Automation description. */
|
|
1450
|
+
description?: string | null;
|
|
1451
|
+
/** Object that defines the automation's trigger, actions, and activation status. */
|
|
1452
|
+
configuration?: AutomationConfiguration;
|
|
1453
|
+
/** Defines how the automation was added to the site. */
|
|
1454
|
+
origin?: Origin;
|
|
1455
|
+
/** Automation settings. */
|
|
1456
|
+
settings?: AutomationSettings;
|
|
1457
|
+
/**
|
|
1458
|
+
* Draft info (optional - only if the automation is a draft)
|
|
1459
|
+
* @readonly
|
|
1460
|
+
*/
|
|
1461
|
+
draftInfo?: DraftInfo;
|
|
1462
|
+
}
|
|
1463
|
+
/** @oneof */
|
|
1464
|
+
interface AutomationOriginInfoOneOf {
|
|
1465
|
+
/** Application info */
|
|
1466
|
+
applicationInfo?: ApplicationOrigin;
|
|
1467
|
+
/** Preinstalled info */
|
|
1468
|
+
preinstalledInfo?: PreinstalledOrigin;
|
|
1469
|
+
}
|
|
1470
|
+
interface ActionSettings {
|
|
1471
|
+
/**
|
|
1472
|
+
* List of actions that cannot be deleted.
|
|
1473
|
+
* Default: Empty. All actions are deletable by default.
|
|
1474
|
+
*/
|
|
1475
|
+
permanentActionIds?: string[];
|
|
1476
|
+
/**
|
|
1477
|
+
* List of actions that cannot be edited.
|
|
1478
|
+
* Default: Empty. All actions are editable by default.
|
|
1479
|
+
*/
|
|
1480
|
+
readonlyActionIds?: string[];
|
|
1481
|
+
/** Whether the option to add a delay is disabled for the automation. */
|
|
1482
|
+
disableDelayAddition?: boolean;
|
|
1483
|
+
/** Whether the option to add a condition is disabled for the automation. */
|
|
1484
|
+
disableConditionAddition?: boolean;
|
|
1485
|
+
}
|
|
1486
|
+
interface AuditInfo extends AuditInfoIdOneOf {
|
|
1487
|
+
/** User ID. */
|
|
1488
|
+
userId?: string;
|
|
1489
|
+
/** Application ID. */
|
|
1490
|
+
appId?: string;
|
|
1491
|
+
}
|
|
1492
|
+
/** @oneof */
|
|
1493
|
+
interface AuditInfoIdOneOf {
|
|
1494
|
+
/** User ID. */
|
|
1495
|
+
userId?: string;
|
|
1496
|
+
/** Application ID. */
|
|
1497
|
+
appId?: string;
|
|
1498
|
+
}
|
|
1499
|
+
/** Automation runtime configuration */
|
|
1500
|
+
interface AutomationConfiguration {
|
|
1501
|
+
/** Status of the automation on the site. */
|
|
1502
|
+
status?: Status$6;
|
|
1503
|
+
/** Automation trigger configuration. */
|
|
1504
|
+
trigger?: Trigger;
|
|
1505
|
+
/** List of IDs of root actions. Root actions are the first actions to run after the trigger. The actions in the list run in parallel. */
|
|
1506
|
+
rootActionIds?: string[];
|
|
1507
|
+
/**
|
|
1508
|
+
* Map of all actions that the automation may execute.
|
|
1509
|
+
* The key is the action ID, and the value is the action configuration.
|
|
1510
|
+
*/
|
|
1511
|
+
actions?: Record<string, Action>;
|
|
1512
|
+
}
|
|
1513
|
+
declare enum TimeUnit {
|
|
1514
|
+
UNKNOWN_TIME_UNIT = "UNKNOWN_TIME_UNIT",
|
|
1515
|
+
MINUTES = "MINUTES",
|
|
1516
|
+
HOURS = "HOURS",
|
|
1517
|
+
DAYS = "DAYS",
|
|
1518
|
+
WEEKS = "WEEKS",
|
|
1519
|
+
MONTHS = "MONTHS"
|
|
1520
|
+
}
|
|
1521
|
+
interface Filter {
|
|
1522
|
+
/** Filter ID. */
|
|
1523
|
+
_id?: string;
|
|
1524
|
+
/** Field key from the payload schema, for example "formId". */
|
|
1525
|
+
fieldKey?: string;
|
|
1526
|
+
/** Filter expression that evaluates to a boolean. */
|
|
1527
|
+
filterExpression?: string;
|
|
1528
|
+
}
|
|
1529
|
+
interface FutureDateActivationOffset {
|
|
1530
|
+
/**
|
|
1531
|
+
* The offset value. The value is always taken as negative, so that the automation runs before the trigger date.
|
|
1532
|
+
* To create an offset that causes the automation to run after the trigger date, use a delay action.
|
|
1533
|
+
*/
|
|
1534
|
+
preScheduledEventOffsetExpression?: string;
|
|
1535
|
+
/** Time unit for the scheduled event offset. */
|
|
1536
|
+
scheduledEventOffsetTimeUnit?: TimeUnit;
|
|
1537
|
+
}
|
|
1538
|
+
interface RateLimit {
|
|
1539
|
+
/** Value expressing the maximum number of times the trigger can be activated. */
|
|
1540
|
+
maxActivationsExpression?: string;
|
|
1541
|
+
/** Duration of the rate limiting window in the selected time unit. If no value is set, the rate limit is permanent. */
|
|
1542
|
+
durationExpression?: string | null;
|
|
1543
|
+
/** Time unit for the rate limit duration. */
|
|
1544
|
+
durationTimeUnit?: TimeUnit;
|
|
1545
|
+
/** Unique identifier of each activation, by which rate limiter will count activations. */
|
|
1546
|
+
uniqueIdentifierExpression?: string | null;
|
|
1547
|
+
}
|
|
1548
|
+
interface ConditionExpressionGroup {
|
|
1549
|
+
/** Expression group operator. */
|
|
1550
|
+
operator?: Operator;
|
|
1551
|
+
/** List of boolean expressions to be evaluated with the given operator. */
|
|
1552
|
+
booleanExpressions?: string[];
|
|
1553
|
+
}
|
|
1554
|
+
declare enum Operator {
|
|
1555
|
+
UNKNOWN_OPERATOR = "UNKNOWN_OPERATOR",
|
|
1556
|
+
OR = "OR",
|
|
1557
|
+
AND = "AND"
|
|
1558
|
+
}
|
|
1559
|
+
declare enum Type$5 {
|
|
1560
|
+
/** Automation will be triggered according to the trigger configuration */
|
|
1561
|
+
UNKNOWN_ACTION_TYPE = "UNKNOWN_ACTION_TYPE",
|
|
1562
|
+
/** App defined Action */
|
|
1563
|
+
APP_DEFINED = "APP_DEFINED",
|
|
1564
|
+
/** Condition Action */
|
|
1565
|
+
CONDITION = "CONDITION",
|
|
1566
|
+
/** Delay Action */
|
|
1567
|
+
DELAY = "DELAY",
|
|
1568
|
+
/** RateLimit Action */
|
|
1569
|
+
RATE_LIMIT = "RATE_LIMIT",
|
|
1570
|
+
/** Output Action */
|
|
1571
|
+
OUTPUT = "OUTPUT"
|
|
1572
|
+
}
|
|
1573
|
+
interface AppDefinedAction {
|
|
1574
|
+
/** ID of the app that defines the action. */
|
|
1575
|
+
appId?: string;
|
|
1576
|
+
/** Action key. */
|
|
1577
|
+
actionKey?: string;
|
|
1578
|
+
/** Action input mapping. */
|
|
1579
|
+
inputMapping?: Record<string, any> | null;
|
|
1580
|
+
/**
|
|
1581
|
+
* Array of conditions determining whether to skip the action in the automation flow.
|
|
1582
|
+
* The action will be skipped if any of the expression groups evaluate to `true`.
|
|
1583
|
+
* Actions following a skipped action will still run.
|
|
1584
|
+
*/
|
|
1585
|
+
skipConditionOrExpressionGroups?: ConditionExpressionGroup[];
|
|
1586
|
+
/** List of IDs of actions to run in parallel once the action completes. */
|
|
1587
|
+
postActionIds?: string[];
|
|
1588
|
+
}
|
|
1589
|
+
interface ConditionAction {
|
|
1590
|
+
/** The condition evaluates to `true` if either of the expression groups evaluate to `true`. */
|
|
1591
|
+
orExpressionGroups?: ConditionExpressionGroup[];
|
|
1592
|
+
/** List of IDs of actions to run when the entire condition is evaluated to `true`. */
|
|
1593
|
+
truePostActionIds?: string[];
|
|
1594
|
+
/** List of IDs of actions to run when the entire condition is evaluated to `false`. */
|
|
1595
|
+
falsePostActionIds?: string[];
|
|
1596
|
+
}
|
|
1597
|
+
interface DelayAction {
|
|
1598
|
+
/** Value expressing the amount of time to wait from a specific date or from the time the action is executed. */
|
|
1599
|
+
offsetExpression?: string | null;
|
|
1600
|
+
/** Time unit for delay offset. */
|
|
1601
|
+
offsetTimeUnit?: TimeUnit;
|
|
1602
|
+
/**
|
|
1603
|
+
* The action due date. If defined without an offset, the automation will wait until this date to execute the next step.
|
|
1604
|
+
* If an offset is defined, it's calculated from this date.
|
|
1605
|
+
* The date is expressed in the number of milliseconds since the Unix Epoch (1 January, 1970 UTC).
|
|
1606
|
+
*/
|
|
1607
|
+
dueDateEpochExpression?: string | null;
|
|
1608
|
+
/** List of IDs of actions to run in parallel after the delay. */
|
|
1609
|
+
postActionIds?: string[];
|
|
1610
|
+
}
|
|
1611
|
+
interface RateLimitAction {
|
|
1612
|
+
/** The maximum number of activations allowed for the action. */
|
|
1613
|
+
maxActivationsExpression?: string;
|
|
1614
|
+
/**
|
|
1615
|
+
* Duration of the rate limiting window, expressed in selected time unit.
|
|
1616
|
+
* If no value is set, then there is no time limit on the rate limiter.
|
|
1617
|
+
*/
|
|
1618
|
+
rateLimitDurationExpression?: string | null;
|
|
1619
|
+
/** Time unit for the rate limit duration. */
|
|
1620
|
+
rateLimitDurationTimeUnit?: TimeUnit;
|
|
1621
|
+
/** Unique identifier of each activation by which rate limiter counts activations. */
|
|
1622
|
+
uniqueIdentifierExpression?: string | null;
|
|
1623
|
+
/** List of IDs of actions to run in parallel once the action completes. */
|
|
1624
|
+
postActionIds?: string[];
|
|
1625
|
+
}
|
|
1626
|
+
interface OutputAction {
|
|
1627
|
+
/** Output action output mapping. */
|
|
1628
|
+
outputMapping?: Record<string, any> | null;
|
|
1629
|
+
}
|
|
1630
|
+
declare enum Status$6 {
|
|
1631
|
+
/** unused */
|
|
1632
|
+
UNKNOWN_STATUS = "UNKNOWN_STATUS",
|
|
1633
|
+
/** Automation will be triggered according to the trigger configuration */
|
|
1634
|
+
ACTIVE = "ACTIVE",
|
|
1635
|
+
/** Automation will not be triggered */
|
|
1636
|
+
INACTIVE = "INACTIVE"
|
|
1637
|
+
}
|
|
1638
|
+
interface Trigger {
|
|
1639
|
+
/** ID of the app that defines the trigger. */
|
|
1640
|
+
appId?: string;
|
|
1641
|
+
/** Trigger key. */
|
|
1642
|
+
triggerKey?: string;
|
|
1643
|
+
/**
|
|
1644
|
+
* List of filters on schema fields.
|
|
1645
|
+
* In order for the automation to run, all filter expressions must evaluate to `true` for a given payload.
|
|
1646
|
+
*/
|
|
1647
|
+
filters?: Filter[];
|
|
1648
|
+
/** Defines the time offset between the trigger date and when the automation runs. */
|
|
1649
|
+
scheduledEventOffset?: FutureDateActivationOffset;
|
|
1650
|
+
/** Limits the number of times an automation can be triggered. */
|
|
1651
|
+
rateLimit?: RateLimit;
|
|
1652
|
+
automationConfigMapping?: Record<string, any> | null;
|
|
1653
|
+
}
|
|
1654
|
+
interface Action extends ActionInfoOneOf {
|
|
1655
|
+
/** Action defined by an app (via RPC, HTTP or Velo). */
|
|
1656
|
+
appDefinedInfo?: AppDefinedAction;
|
|
1657
|
+
/** Condition action. */
|
|
1658
|
+
conditionInfo?: ConditionAction;
|
|
1659
|
+
/** Delay action. */
|
|
1660
|
+
delayInfo?: DelayAction;
|
|
1661
|
+
/** Rate-limiting action. */
|
|
1662
|
+
rateLimitInfo?: RateLimitAction;
|
|
1663
|
+
/** Action ID. If not specified, a new ID is generated. */
|
|
1664
|
+
_id?: string | null;
|
|
1665
|
+
/** Action type. */
|
|
1666
|
+
type?: Type$5;
|
|
1667
|
+
/**
|
|
1668
|
+
* Human-readable name to differentiate the action from other actions of the same type.
|
|
1669
|
+
* The name can contain only alphanumeric characters and underscores. If not provided, a namespace in the form `actionkey-indexOfAction` is
|
|
1670
|
+
* generated automatically.
|
|
1671
|
+
* If the action has output, the output will be available in the payload under this name.
|
|
1672
|
+
* If the user has multiple actions with the same appId and actionKey, previous action output will be overwritten.
|
|
1673
|
+
*/
|
|
1674
|
+
namespace?: string | null;
|
|
1675
|
+
}
|
|
1676
|
+
/** @oneof */
|
|
1677
|
+
interface ActionInfoOneOf {
|
|
1678
|
+
/** Action defined by an app (via RPC, HTTP or Velo). */
|
|
1679
|
+
appDefinedInfo?: AppDefinedAction;
|
|
1680
|
+
/** Condition action. */
|
|
1681
|
+
conditionInfo?: ConditionAction;
|
|
1682
|
+
/** Delay action. */
|
|
1683
|
+
delayInfo?: DelayAction;
|
|
1684
|
+
/** Rate-limiting action. */
|
|
1685
|
+
rateLimitInfo?: RateLimitAction;
|
|
1686
|
+
}
|
|
1687
|
+
declare enum Origin {
|
|
1688
|
+
/** default value. this is unused */
|
|
1689
|
+
UNKNOWN_ORIGIN = "UNKNOWN_ORIGIN",
|
|
1690
|
+
/** user created automation */
|
|
1691
|
+
USER = "USER",
|
|
1692
|
+
/** automation created by application (site specific) */
|
|
1693
|
+
APPLICATION = "APPLICATION",
|
|
1694
|
+
/** preinstalled application automation */
|
|
1695
|
+
PREINSTALLED = "PREINSTALLED"
|
|
1696
|
+
}
|
|
1697
|
+
interface ApplicationOrigin {
|
|
1698
|
+
/** Application ID. */
|
|
1699
|
+
appId?: string;
|
|
1700
|
+
}
|
|
1701
|
+
interface PreinstalledOrigin {
|
|
1702
|
+
/** ID of the app that defines the preinstalled automation. */
|
|
1703
|
+
appId?: string;
|
|
1704
|
+
/** Application component ID. */
|
|
1705
|
+
componentId?: string;
|
|
1706
|
+
/** Application component version. */
|
|
1707
|
+
componentVersion?: number;
|
|
1708
|
+
/**
|
|
1709
|
+
* Whether the automation is an override automation. If the user modifies the preinstalled automation installed on their site, a site-specific
|
|
1710
|
+
* automation is created that overrides the original one. If the user makes no modifications this boolean is set to `false` and the original
|
|
1711
|
+
* preinstalled automation is used.
|
|
1712
|
+
*
|
|
1713
|
+
* Default: `false`
|
|
1714
|
+
* @readonly
|
|
1715
|
+
*/
|
|
1716
|
+
override?: boolean | null;
|
|
1717
|
+
}
|
|
1718
|
+
interface AutomationSettings {
|
|
1719
|
+
/**
|
|
1720
|
+
* Whether the automation is hidden from users.
|
|
1721
|
+
* Default: `false`
|
|
1722
|
+
*/
|
|
1723
|
+
hidden?: boolean;
|
|
1724
|
+
/**
|
|
1725
|
+
* Whether the automation is read-only.
|
|
1726
|
+
* Default: `false`
|
|
1727
|
+
*/
|
|
1728
|
+
readonly?: boolean;
|
|
1729
|
+
/**
|
|
1730
|
+
* Whether the option to delete the automation from the site is disabled.
|
|
1731
|
+
* Default: `false`
|
|
1732
|
+
*/
|
|
1733
|
+
disableDelete?: boolean;
|
|
1734
|
+
/**
|
|
1735
|
+
* Whether the option to change the automation status (from active to inactive and vice versa) is disabled.
|
|
1736
|
+
* Default: `false`
|
|
1737
|
+
*/
|
|
1738
|
+
disableStatusChange?: boolean;
|
|
1739
|
+
/** Automation action settings. */
|
|
1740
|
+
actionSettings?: ActionSettings;
|
|
1741
|
+
}
|
|
1742
|
+
interface DraftInfo {
|
|
1743
|
+
/**
|
|
1744
|
+
* optional - automationId of the original automation
|
|
1745
|
+
* @readonly
|
|
1746
|
+
*/
|
|
1747
|
+
originalAutomationId?: string | null;
|
|
1748
|
+
}
|
|
1749
|
+
interface DeletedWithEntity {
|
|
1750
|
+
/** Deleted automation */
|
|
1751
|
+
automation?: Automation;
|
|
1752
|
+
}
|
|
1402
1753
|
interface GuestCountUpdated {
|
|
1403
1754
|
/** Guest. */
|
|
1404
1755
|
guest?: EventGuest;
|
|
@@ -1998,7 +2349,7 @@ interface Recurrences$5 {
|
|
|
1998
2349
|
* Recurrence status.
|
|
1999
2350
|
* @readonly
|
|
2000
2351
|
*/
|
|
2001
|
-
status?:
|
|
2352
|
+
status?: RecurrenceStatusStatus$1;
|
|
2002
2353
|
}
|
|
2003
2354
|
interface Occurrence$5 {
|
|
2004
2355
|
/** Event start timestamp. */
|
|
@@ -2010,7 +2361,7 @@ interface Occurrence$5 {
|
|
|
2010
2361
|
/** Whether time zone is displayed in formatted schedule. */
|
|
2011
2362
|
showTimeZone?: boolean;
|
|
2012
2363
|
}
|
|
2013
|
-
declare enum
|
|
2364
|
+
declare enum RecurrenceStatusStatus$1 {
|
|
2014
2365
|
/** Event occurs only once. */
|
|
2015
2366
|
ONE_TIME = "ONE_TIME",
|
|
2016
2367
|
/** Event is recurring. */
|
|
@@ -3492,11 +3843,27 @@ type _publicOnNotificationConfigDeletedType = typeof onNotificationConfigDeleted
|
|
|
3492
3843
|
/** */
|
|
3493
3844
|
declare const onNotificationConfigDeleted: ReturnType<typeof createEventModule$a<_publicOnNotificationConfigDeletedType>>;
|
|
3494
3845
|
|
|
3846
|
+
type index_d$d_Action = Action;
|
|
3847
|
+
type index_d$d_ActionInfoOneOf = ActionInfoOneOf;
|
|
3848
|
+
type index_d$d_ActionSettings = ActionSettings;
|
|
3849
|
+
type index_d$d_AppDefinedAction = AppDefinedAction;
|
|
3850
|
+
type index_d$d_ApplicationOrigin = ApplicationOrigin;
|
|
3495
3851
|
type index_d$d_AttendanceStatus = AttendanceStatus;
|
|
3496
3852
|
declare const index_d$d_AttendanceStatus: typeof AttendanceStatus;
|
|
3853
|
+
type index_d$d_AuditInfo = AuditInfo;
|
|
3854
|
+
type index_d$d_AuditInfoIdOneOf = AuditInfoIdOneOf;
|
|
3855
|
+
type index_d$d_Automation = Automation;
|
|
3856
|
+
type index_d$d_AutomationConfiguration = AutomationConfiguration;
|
|
3857
|
+
type index_d$d_AutomationOriginInfoOneOf = AutomationOriginInfoOneOf;
|
|
3858
|
+
type index_d$d_AutomationSettings = AutomationSettings;
|
|
3859
|
+
type index_d$d_ConditionAction = ConditionAction;
|
|
3860
|
+
type index_d$d_ConditionExpressionGroup = ConditionExpressionGroup;
|
|
3497
3861
|
type index_d$d_ContactEventStatusUpdated = ContactEventStatusUpdated;
|
|
3498
3862
|
type index_d$d_ContactEventStatusUpdatedEventType = ContactEventStatusUpdatedEventType;
|
|
3499
3863
|
declare const index_d$d_ContactEventStatusUpdatedEventType: typeof ContactEventStatusUpdatedEventType;
|
|
3864
|
+
type index_d$d_DelayAction = DelayAction;
|
|
3865
|
+
type index_d$d_DeletedWithEntity = DeletedWithEntity;
|
|
3866
|
+
type index_d$d_DraftInfo = DraftInfo;
|
|
3500
3867
|
type index_d$d_EmailNotificationConfig = EmailNotificationConfig;
|
|
3501
3868
|
type index_d$d_EmailNotificationReminderTime = EmailNotificationReminderTime;
|
|
3502
3869
|
declare const index_d$d_EmailNotificationReminderTime: typeof EmailNotificationReminderTime;
|
|
@@ -3505,6 +3872,8 @@ declare const index_d$d_EmailNotificationType: typeof EmailNotificationType;
|
|
|
3505
3872
|
type index_d$d_EmailTemplate = EmailTemplate;
|
|
3506
3873
|
type index_d$d_EventGuest = EventGuest;
|
|
3507
3874
|
type index_d$d_EventGuests = EventGuests;
|
|
3875
|
+
type index_d$d_Filter = Filter;
|
|
3876
|
+
type index_d$d_FutureDateActivationOffset = FutureDateActivationOffset;
|
|
3508
3877
|
type index_d$d_GuestCountUpdate = GuestCountUpdate;
|
|
3509
3878
|
type index_d$d_GuestCountUpdated = GuestCountUpdated;
|
|
3510
3879
|
type index_d$d_GuestType = GuestType;
|
|
@@ -3519,10 +3888,18 @@ type index_d$d_NotificationConfigUpdatedEnvelope = NotificationConfigUpdatedEnve
|
|
|
3519
3888
|
type index_d$d_NotifyActionType = NotifyActionType;
|
|
3520
3889
|
declare const index_d$d_NotifyActionType: typeof NotifyActionType;
|
|
3521
3890
|
type index_d$d_NotifyGuestAction = NotifyGuestAction;
|
|
3891
|
+
type index_d$d_Operator = Operator;
|
|
3892
|
+
declare const index_d$d_Operator: typeof Operator;
|
|
3522
3893
|
type index_d$d_OrderEmailAdded = OrderEmailAdded;
|
|
3523
3894
|
type index_d$d_OrderGuest = OrderGuest;
|
|
3895
|
+
type index_d$d_Origin = Origin;
|
|
3896
|
+
declare const index_d$d_Origin: typeof Origin;
|
|
3897
|
+
type index_d$d_OutputAction = OutputAction;
|
|
3898
|
+
type index_d$d_PreinstalledOrigin = PreinstalledOrigin;
|
|
3524
3899
|
type index_d$d_PushNotificationType = PushNotificationType;
|
|
3525
3900
|
declare const index_d$d_PushNotificationType: typeof PushNotificationType;
|
|
3901
|
+
type index_d$d_RateLimit = RateLimit;
|
|
3902
|
+
type index_d$d_RateLimitAction = RateLimitAction;
|
|
3526
3903
|
type index_d$d_ResolveEmailNotificationConfigRequest = ResolveEmailNotificationConfigRequest;
|
|
3527
3904
|
type index_d$d_ResolveEmailNotificationConfigResponse = ResolveEmailNotificationConfigResponse;
|
|
3528
3905
|
type index_d$d_ResolveNotificationConfigRequest = ResolveNotificationConfigRequest;
|
|
@@ -3536,12 +3913,16 @@ type index_d$d_TicketGuest = TicketGuest;
|
|
|
3536
3913
|
type index_d$d_TicketGuestDetails = TicketGuestDetails;
|
|
3537
3914
|
type index_d$d_TicketPdfResolveDelayed = TicketPdfResolveDelayed;
|
|
3538
3915
|
type index_d$d_TicketPdfResolved = TicketPdfResolved;
|
|
3916
|
+
type index_d$d_TimeUnit = TimeUnit;
|
|
3917
|
+
declare const index_d$d_TimeUnit: typeof TimeUnit;
|
|
3918
|
+
type index_d$d_Trigger = Trigger;
|
|
3539
3919
|
type index_d$d_TriggerNotificationOptions = TriggerNotificationOptions;
|
|
3540
3920
|
type index_d$d_TriggerNotificationRequest = TriggerNotificationRequest;
|
|
3541
3921
|
type index_d$d_TriggerNotificationRequestGuestsOneOf = TriggerNotificationRequestGuestsOneOf;
|
|
3542
3922
|
type index_d$d_TriggerNotificationRequestNotificationOneOf = TriggerNotificationRequestNotificationOneOf;
|
|
3543
3923
|
type index_d$d_TriggerNotificationResponse = TriggerNotificationResponse;
|
|
3544
3924
|
type index_d$d_UnprocessedTargetEvent = UnprocessedTargetEvent;
|
|
3925
|
+
type index_d$d_UpdatedWithPreviousEntity = UpdatedWithPreviousEntity;
|
|
3545
3926
|
type index_d$d_UpsertNotificationConfig = UpsertNotificationConfig;
|
|
3546
3927
|
type index_d$d_UpsertNotificationConfigRequest = UpsertNotificationConfigRequest;
|
|
3547
3928
|
type index_d$d_UpsertNotificationConfigResponse = UpsertNotificationConfigResponse;
|
|
@@ -3559,7 +3940,7 @@ declare const index_d$d_resolveNotificationConfig: typeof resolveNotificationCon
|
|
|
3559
3940
|
declare const index_d$d_triggerNotification: typeof triggerNotification;
|
|
3560
3941
|
declare const index_d$d_upsertNotificationConfig: typeof upsertNotificationConfig;
|
|
3561
3942
|
declare namespace index_d$d {
|
|
3562
|
-
export { type ActionEvent$7 as ActionEvent, type Address$8 as Address, type AddressLocation$8 as AddressLocation, type AddressStreetOneOf$8 as AddressStreetOneOf, type Agenda$3 as Agenda, index_d$d_AttendanceStatus as AttendanceStatus, type BaseEventMetadata$a as BaseEventMetadata, type CalendarLinks$5 as CalendarLinks, type Category$4 as Category, type CategoryCounts$4 as CategoryCounts, type CheckIn$3 as CheckIn, type CheckoutFormMessages$3 as CheckoutFormMessages, type CommonAddress$1 as CommonAddress, type CommonAddressLocation$1 as CommonAddressLocation, type CommonAddressStreetOneOf$1 as CommonAddressStreetOneOf, type CommonStreetAddress$1 as CommonStreetAddress, type CommonSubdivision$1 as CommonSubdivision, ConferenceType$3 as ConferenceType, type index_d$d_ContactEventStatusUpdated as ContactEventStatusUpdated, index_d$d_ContactEventStatusUpdatedEventType as ContactEventStatusUpdatedEventType, type CouponDiscount$1 as CouponDiscount, type Dashboard$5 as Dashboard, type Discount$1 as Discount, type DiscountItem$1 as DiscountItem, type DiscountItemDiscountOneOf$1 as DiscountItemDiscountOneOf, type DomainEvent$7 as DomainEvent, type DomainEventBodyOneOf$7 as DomainEventBodyOneOf, type index_d$d_EmailNotificationConfig as EmailNotificationConfig, index_d$d_EmailNotificationReminderTime as EmailNotificationReminderTime, index_d$d_EmailNotificationType as EmailNotificationType, type index_d$d_EmailTemplate as EmailTemplate, type Empty$4 as Empty, type EntityCreatedEvent$7 as EntityCreatedEvent, type EntityDeletedEvent$7 as EntityDeletedEvent, type EntityUpdatedEvent$7 as EntityUpdatedEvent, type Event$3 as Event, type EventCanceled$2 as EventCanceled, type EventCopied$3 as EventCopied, type EventDeleted$2 as EventDeleted, type EventDisplaySettings$3 as EventDisplaySettings, type EventEnded$2 as EventEnded, type index_d$d_EventGuest as EventGuest, type index_d$d_EventGuests as EventGuests, type EventMetadata$5 as EventMetadata, type EventReminder$1 as EventReminder, EventStatus$5 as EventStatus, EventType$3 as EventType, type EventUpdated$3 as EventUpdated, type ExternalEvent$3 as ExternalEvent, type Fee$1 as Fee, FeeName$1 as FeeName, FeeType$2 as FeeType, type Feed$3 as Feed, type File$1 as File, type Form$3 as Form, type FormMessages$3 as FormMessages, type FormResponse$3 as FormResponse, type FormattedAddress$3 as FormattedAddress, type Guest$2 as Guest, type index_d$d_GuestCountUpdate as GuestCountUpdate, type index_d$d_GuestCountUpdated as GuestCountUpdated, type GuestDetails$2 as GuestDetails, type GuestListConfig$3 as GuestListConfig, index_d$d_GuestType as GuestType, type IdentificationData$b as IdentificationData, type IdentificationDataIdOneOf$b as IdentificationDataIdOneOf, type Input$3 as Input, type InputControl$3 as InputControl, InputControlType$3 as InputControlType, type InputValue$3 as InputValue, type Invoice$1 as Invoice, type Item$2 as Item, type Keyword$3 as Keyword, type Label$3 as Label, type LabellingSettings$3 as LabellingSettings, type Link$1 as Link, type Location$5 as Location, LocationType$5 as LocationType, type MapCoordinates$5 as MapCoordinates, type index_d$d_MemberEventStatusUpdated as MemberEventStatusUpdated, index_d$d_MemberEventStatusUpdatedEventType as MemberEventStatusUpdatedEventType, type MessageEnvelope$b as MessageEnvelope, type Money$6 as Money, type Negative$3 as Negative, type NegativeResponseConfirmation$3 as NegativeResponseConfirmation, type index_d$d_NotificationConfig as NotificationConfig, type index_d$d_NotificationConfigCreatedEnvelope as NotificationConfigCreatedEnvelope, type index_d$d_NotificationConfigDeletedEnvelope as NotificationConfigDeletedEnvelope, type index_d$d_NotificationConfigUpdatedEnvelope as NotificationConfigUpdatedEnvelope, index_d$d_NotifyActionType as NotifyActionType, type index_d$d_NotifyGuestAction as NotifyGuestAction, type Occurrence$5 as Occurrence, type OnlineConferencing$3 as OnlineConferencing, type OnlineConferencingConfig$3 as OnlineConferencingConfig, type OnlineConferencingLogin$3 as OnlineConferencingLogin, type OnlineConferencingSession$3 as OnlineConferencingSession, type OptionSelection$3 as OptionSelection, type OptionSelectionSelectedOptionOneOf$3 as OptionSelectionSelectedOptionOneOf, type OrderConfirmed$1 as OrderConfirmed, type index_d$d_OrderEmailAdded as OrderEmailAdded, type index_d$d_OrderGuest as OrderGuest, type OrderPaid$1 as OrderPaid, OrderStatus$2 as OrderStatus, type PaidPlanDiscount$1 as PaidPlanDiscount, type PaidPlanDiscountDiscountOneOf$1 as PaidPlanDiscountDiscountOneOf, type PercentDiscount$1 as PercentDiscount, type Positive$3 as Positive, type PositiveResponseConfirmation$3 as PositiveResponseConfirmation, index_d$d_PushNotificationType as PushNotificationType, type Recurrences$5 as Recurrences, type Registration$3 as Registration, type RegistrationClosedMessages$3 as RegistrationClosedMessages, RegistrationStatus$3 as RegistrationStatus, type index_d$d_ResolveEmailNotificationConfigRequest as ResolveEmailNotificationConfigRequest, type index_d$d_ResolveEmailNotificationConfigResponse as ResolveEmailNotificationConfigResponse, type index_d$d_ResolveNotificationConfigRequest as ResolveNotificationConfigRequest, type index_d$d_ResolveNotificationConfigResponse as ResolveNotificationConfigResponse, type index_d$d_ResolveNotificationConfigResponseNonNullableFields as ResolveNotificationConfigResponseNonNullableFields, type ResponseConfirmation$3 as ResponseConfirmation, type RestoreInfo$5 as RestoreInfo, type RsvpCollection$3 as RsvpCollection, type RsvpCollectionConfig$3 as RsvpCollectionConfig, type RsvpCreated$1 as RsvpCreated, type RsvpFormMessages$3 as RsvpFormMessages, type index_d$d_RsvpGuest as RsvpGuest, RsvpStatus$1 as RsvpStatus, RsvpStatusOptions$3 as RsvpStatusOptions, type RsvpSummary$4 as RsvpSummary, type RsvpUpdated$1 as RsvpUpdated, type ScheduleConfig$5 as ScheduleConfig, type Scheduling$3 as Scheduling, type SeoSchema$3 as SeoSchema, type SeoSettings$3 as SeoSettings, type Settings$4 as Settings, type SiteUrl$3 as SiteUrl, type StandardDetails$3 as StandardDetails, State$7 as State, Status$6 as Status, type StreetAddress$8 as StreetAddress, type Subdivision$8 as Subdivision, SubdivisionType$8 as SubdivisionType, type Tag$3 as Tag, type Target$1 as Target, index_d$d_TargetType as TargetType, type index_d$d_TaskContext as TaskContext, type Tax$1 as Tax, type TaxConfig$3 as TaxConfig, TaxType$4 as TaxType, type Ticket$2 as Ticket, type TicketDetails$2 as TicketDetails, type index_d$d_TicketGuest as TicketGuest, type index_d$d_TicketGuestDetails as TicketGuestDetails, type index_d$d_TicketPdfResolveDelayed as TicketPdfResolveDelayed, type index_d$d_TicketPdfResolved as TicketPdfResolved, type Ticketing$3 as Ticketing, type TicketingConfig$3 as TicketingConfig, type TicketingSummary$3 as TicketingSummary, type TicketsUnavailableMessages$3 as TicketsUnavailableMessages, type TimeDuration$1 as TimeDuration, type index_d$d_TriggerNotificationOptions as TriggerNotificationOptions, type index_d$d_TriggerNotificationRequest as TriggerNotificationRequest, type index_d$d_TriggerNotificationRequestGuestsOneOf as TriggerNotificationRequestGuestsOneOf, type index_d$d_TriggerNotificationRequestNotificationOneOf as TriggerNotificationRequestNotificationOneOf, type index_d$d_TriggerNotificationResponse as TriggerNotificationResponse, type index_d$d_UnprocessedTargetEvent as UnprocessedTargetEvent, type index_d$d_UpsertNotificationConfig as UpsertNotificationConfig, type index_d$d_UpsertNotificationConfigRequest as UpsertNotificationConfigRequest, type index_d$d_UpsertNotificationConfigResponse as UpsertNotificationConfigResponse, type index_d$d_UpsertNotificationConfigResponseNonNullableFields as UpsertNotificationConfigResponseNonNullableFields, ValueType$3 as ValueType, VisitorType$3 as VisitorType, WebhookIdentityType$b as WebhookIdentityType, type index_d$d__publicOnNotificationConfigCreatedType as _publicOnNotificationConfigCreatedType, type index_d$d__publicOnNotificationConfigDeletedType as _publicOnNotificationConfigDeletedType, type index_d$d__publicOnNotificationConfigUpdatedType as _publicOnNotificationConfigUpdatedType, type index_d$d__publicResolveNotificationConfigType as _publicResolveNotificationConfigType, type index_d$d__publicTriggerNotificationType as _publicTriggerNotificationType, type index_d$d__publicUpsertNotificationConfigType as _publicUpsertNotificationConfigType, index_d$d_onNotificationConfigCreated as onNotificationConfigCreated, index_d$d_onNotificationConfigDeleted as onNotificationConfigDeleted, index_d$d_onNotificationConfigUpdated as onNotificationConfigUpdated, onNotificationConfigCreated$1 as publicOnNotificationConfigCreated, onNotificationConfigDeleted$1 as publicOnNotificationConfigDeleted, onNotificationConfigUpdated$1 as publicOnNotificationConfigUpdated, index_d$d_resolveNotificationConfig as resolveNotificationConfig, index_d$d_triggerNotification as triggerNotification, index_d$d_upsertNotificationConfig as upsertNotificationConfig };
|
|
3943
|
+
export { type index_d$d_Action as Action, type ActionEvent$7 as ActionEvent, type index_d$d_ActionInfoOneOf as ActionInfoOneOf, type index_d$d_ActionSettings as ActionSettings, type Address$8 as Address, type AddressLocation$8 as AddressLocation, type AddressStreetOneOf$8 as AddressStreetOneOf, type Agenda$3 as Agenda, type index_d$d_AppDefinedAction as AppDefinedAction, type index_d$d_ApplicationOrigin as ApplicationOrigin, index_d$d_AttendanceStatus as AttendanceStatus, type index_d$d_AuditInfo as AuditInfo, type index_d$d_AuditInfoIdOneOf as AuditInfoIdOneOf, type index_d$d_Automation as Automation, type index_d$d_AutomationConfiguration as AutomationConfiguration, type index_d$d_AutomationOriginInfoOneOf as AutomationOriginInfoOneOf, type index_d$d_AutomationSettings as AutomationSettings, type BaseEventMetadata$a as BaseEventMetadata, type CalendarLinks$5 as CalendarLinks, type Category$4 as Category, type CategoryCounts$4 as CategoryCounts, type CheckIn$3 as CheckIn, type CheckoutFormMessages$3 as CheckoutFormMessages, type CommonAddress$1 as CommonAddress, type CommonAddressLocation$1 as CommonAddressLocation, type CommonAddressStreetOneOf$1 as CommonAddressStreetOneOf, type CommonStreetAddress$1 as CommonStreetAddress, type CommonSubdivision$1 as CommonSubdivision, type index_d$d_ConditionAction as ConditionAction, type index_d$d_ConditionExpressionGroup as ConditionExpressionGroup, ConferenceType$3 as ConferenceType, type index_d$d_ContactEventStatusUpdated as ContactEventStatusUpdated, index_d$d_ContactEventStatusUpdatedEventType as ContactEventStatusUpdatedEventType, type CouponDiscount$1 as CouponDiscount, type Dashboard$5 as Dashboard, type index_d$d_DelayAction as DelayAction, type index_d$d_DeletedWithEntity as DeletedWithEntity, type Discount$1 as Discount, type DiscountItem$1 as DiscountItem, type DiscountItemDiscountOneOf$1 as DiscountItemDiscountOneOf, type DomainEvent$7 as DomainEvent, type DomainEventBodyOneOf$7 as DomainEventBodyOneOf, type index_d$d_DraftInfo as DraftInfo, type index_d$d_EmailNotificationConfig as EmailNotificationConfig, index_d$d_EmailNotificationReminderTime as EmailNotificationReminderTime, index_d$d_EmailNotificationType as EmailNotificationType, type index_d$d_EmailTemplate as EmailTemplate, type Empty$4 as Empty, type EntityCreatedEvent$7 as EntityCreatedEvent, type EntityDeletedEvent$7 as EntityDeletedEvent, type EntityUpdatedEvent$7 as EntityUpdatedEvent, type Event$3 as Event, type EventCanceled$2 as EventCanceled, type EventCopied$3 as EventCopied, type EventDeleted$2 as EventDeleted, type EventDisplaySettings$3 as EventDisplaySettings, type EventEnded$2 as EventEnded, type index_d$d_EventGuest as EventGuest, type index_d$d_EventGuests as EventGuests, type EventMetadata$5 as EventMetadata, type EventReminder$1 as EventReminder, EventStatus$5 as EventStatus, EventType$3 as EventType, type EventUpdated$3 as EventUpdated, type ExternalEvent$3 as ExternalEvent, type Fee$1 as Fee, FeeName$1 as FeeName, FeeType$2 as FeeType, type Feed$3 as Feed, type File$1 as File, type index_d$d_Filter as Filter, type Form$3 as Form, type FormMessages$3 as FormMessages, type FormResponse$3 as FormResponse, type FormattedAddress$3 as FormattedAddress, type index_d$d_FutureDateActivationOffset as FutureDateActivationOffset, type Guest$2 as Guest, type index_d$d_GuestCountUpdate as GuestCountUpdate, type index_d$d_GuestCountUpdated as GuestCountUpdated, type GuestDetails$2 as GuestDetails, type GuestListConfig$3 as GuestListConfig, index_d$d_GuestType as GuestType, type IdentificationData$b as IdentificationData, type IdentificationDataIdOneOf$b as IdentificationDataIdOneOf, type Input$3 as Input, type InputControl$3 as InputControl, InputControlType$3 as InputControlType, type InputValue$3 as InputValue, type Invoice$1 as Invoice, type Item$2 as Item, type Keyword$3 as Keyword, type Label$3 as Label, type LabellingSettings$3 as LabellingSettings, type Link$1 as Link, type Location$5 as Location, LocationType$5 as LocationType, type MapCoordinates$5 as MapCoordinates, type index_d$d_MemberEventStatusUpdated as MemberEventStatusUpdated, index_d$d_MemberEventStatusUpdatedEventType as MemberEventStatusUpdatedEventType, type MessageEnvelope$b as MessageEnvelope, type Money$6 as Money, type Negative$3 as Negative, type NegativeResponseConfirmation$3 as NegativeResponseConfirmation, type index_d$d_NotificationConfig as NotificationConfig, type index_d$d_NotificationConfigCreatedEnvelope as NotificationConfigCreatedEnvelope, type index_d$d_NotificationConfigDeletedEnvelope as NotificationConfigDeletedEnvelope, type index_d$d_NotificationConfigUpdatedEnvelope as NotificationConfigUpdatedEnvelope, index_d$d_NotifyActionType as NotifyActionType, type index_d$d_NotifyGuestAction as NotifyGuestAction, type Occurrence$5 as Occurrence, type OnlineConferencing$3 as OnlineConferencing, type OnlineConferencingConfig$3 as OnlineConferencingConfig, type OnlineConferencingLogin$3 as OnlineConferencingLogin, type OnlineConferencingSession$3 as OnlineConferencingSession, index_d$d_Operator as Operator, type OptionSelection$3 as OptionSelection, type OptionSelectionSelectedOptionOneOf$3 as OptionSelectionSelectedOptionOneOf, type OrderConfirmed$1 as OrderConfirmed, type index_d$d_OrderEmailAdded as OrderEmailAdded, type index_d$d_OrderGuest as OrderGuest, type OrderPaid$1 as OrderPaid, OrderStatus$2 as OrderStatus, index_d$d_Origin as Origin, type index_d$d_OutputAction as OutputAction, type PaidPlanDiscount$1 as PaidPlanDiscount, type PaidPlanDiscountDiscountOneOf$1 as PaidPlanDiscountDiscountOneOf, type PercentDiscount$1 as PercentDiscount, type Positive$3 as Positive, type PositiveResponseConfirmation$3 as PositiveResponseConfirmation, type index_d$d_PreinstalledOrigin as PreinstalledOrigin, index_d$d_PushNotificationType as PushNotificationType, type index_d$d_RateLimit as RateLimit, type index_d$d_RateLimitAction as RateLimitAction, RecurrenceStatusStatus$1 as RecurrenceStatusStatus, type Recurrences$5 as Recurrences, type Registration$3 as Registration, type RegistrationClosedMessages$3 as RegistrationClosedMessages, RegistrationStatus$3 as RegistrationStatus, type index_d$d_ResolveEmailNotificationConfigRequest as ResolveEmailNotificationConfigRequest, type index_d$d_ResolveEmailNotificationConfigResponse as ResolveEmailNotificationConfigResponse, type index_d$d_ResolveNotificationConfigRequest as ResolveNotificationConfigRequest, type index_d$d_ResolveNotificationConfigResponse as ResolveNotificationConfigResponse, type index_d$d_ResolveNotificationConfigResponseNonNullableFields as ResolveNotificationConfigResponseNonNullableFields, type ResponseConfirmation$3 as ResponseConfirmation, type RestoreInfo$5 as RestoreInfo, type RsvpCollection$3 as RsvpCollection, type RsvpCollectionConfig$3 as RsvpCollectionConfig, type RsvpCreated$1 as RsvpCreated, type RsvpFormMessages$3 as RsvpFormMessages, type index_d$d_RsvpGuest as RsvpGuest, RsvpStatus$1 as RsvpStatus, RsvpStatusOptions$3 as RsvpStatusOptions, type RsvpSummary$4 as RsvpSummary, type RsvpUpdated$1 as RsvpUpdated, type ScheduleConfig$5 as ScheduleConfig, type Scheduling$3 as Scheduling, type SeoSchema$3 as SeoSchema, type SeoSettings$3 as SeoSettings, type Settings$4 as Settings, type SiteUrl$3 as SiteUrl, type StandardDetails$3 as StandardDetails, State$7 as State, Status$6 as Status, type StreetAddress$8 as StreetAddress, type Subdivision$8 as Subdivision, SubdivisionType$8 as SubdivisionType, type Tag$3 as Tag, type Target$1 as Target, index_d$d_TargetType as TargetType, type index_d$d_TaskContext as TaskContext, type Tax$1 as Tax, type TaxConfig$3 as TaxConfig, TaxType$4 as TaxType, type Ticket$2 as Ticket, type TicketDetails$2 as TicketDetails, type index_d$d_TicketGuest as TicketGuest, type index_d$d_TicketGuestDetails as TicketGuestDetails, type index_d$d_TicketPdfResolveDelayed as TicketPdfResolveDelayed, type index_d$d_TicketPdfResolved as TicketPdfResolved, type Ticketing$3 as Ticketing, type TicketingConfig$3 as TicketingConfig, type TicketingSummary$3 as TicketingSummary, type TicketsUnavailableMessages$3 as TicketsUnavailableMessages, type TimeDuration$1 as TimeDuration, index_d$d_TimeUnit as TimeUnit, type index_d$d_Trigger as Trigger, type index_d$d_TriggerNotificationOptions as TriggerNotificationOptions, type index_d$d_TriggerNotificationRequest as TriggerNotificationRequest, type index_d$d_TriggerNotificationRequestGuestsOneOf as TriggerNotificationRequestGuestsOneOf, type index_d$d_TriggerNotificationRequestNotificationOneOf as TriggerNotificationRequestNotificationOneOf, type index_d$d_TriggerNotificationResponse as TriggerNotificationResponse, Type$5 as Type, type index_d$d_UnprocessedTargetEvent as UnprocessedTargetEvent, type index_d$d_UpdatedWithPreviousEntity as UpdatedWithPreviousEntity, type index_d$d_UpsertNotificationConfig as UpsertNotificationConfig, type index_d$d_UpsertNotificationConfigRequest as UpsertNotificationConfigRequest, type index_d$d_UpsertNotificationConfigResponse as UpsertNotificationConfigResponse, type index_d$d_UpsertNotificationConfigResponseNonNullableFields as UpsertNotificationConfigResponseNonNullableFields, ValueType$3 as ValueType, VisitorType$3 as VisitorType, WebhookIdentityType$b as WebhookIdentityType, type index_d$d__publicOnNotificationConfigCreatedType as _publicOnNotificationConfigCreatedType, type index_d$d__publicOnNotificationConfigDeletedType as _publicOnNotificationConfigDeletedType, type index_d$d__publicOnNotificationConfigUpdatedType as _publicOnNotificationConfigUpdatedType, type index_d$d__publicResolveNotificationConfigType as _publicResolveNotificationConfigType, type index_d$d__publicTriggerNotificationType as _publicTriggerNotificationType, type index_d$d__publicUpsertNotificationConfigType as _publicUpsertNotificationConfigType, index_d$d_onNotificationConfigCreated as onNotificationConfigCreated, index_d$d_onNotificationConfigDeleted as onNotificationConfigDeleted, index_d$d_onNotificationConfigUpdated as onNotificationConfigUpdated, onNotificationConfigCreated$1 as publicOnNotificationConfigCreated, onNotificationConfigDeleted$1 as publicOnNotificationConfigDeleted, onNotificationConfigUpdated$1 as publicOnNotificationConfigUpdated, index_d$d_resolveNotificationConfig as resolveNotificationConfig, index_d$d_triggerNotification as triggerNotification, index_d$d_upsertNotificationConfig as upsertNotificationConfig };
|
|
3563
3944
|
}
|
|
3564
3945
|
|
|
3565
3946
|
/** Schedule item describes the schedule within an event. Each event may contain multiple schedule items. */
|