@sprucelabs/spruce-calendar-components 28.2.42 → 28.3.1
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.
|
@@ -1003,117 +1003,6 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
1003
1003
|
interface CreateCalendarResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.CreateCalendarResponsePayloadSchema> {
|
|
1004
1004
|
}
|
|
1005
1005
|
}
|
|
1006
|
-
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1007
|
-
interface DidCancelCalendarEventEmitTarget {
|
|
1008
|
-
'locationId': string;
|
|
1009
|
-
'calendarEventId': string;
|
|
1010
|
-
}
|
|
1011
|
-
interface DidCancelCalendarEventEmitTargetSchema extends SpruceSchema.Schema {
|
|
1012
|
-
id: 'didCancelCalendarEventEmitTarget';
|
|
1013
|
-
version: 'v2021_05_19';
|
|
1014
|
-
namespace: 'Calendar';
|
|
1015
|
-
name: '';
|
|
1016
|
-
fields: {
|
|
1017
|
-
/** . */
|
|
1018
|
-
'locationId': {
|
|
1019
|
-
type: 'id';
|
|
1020
|
-
isRequired: true;
|
|
1021
|
-
options: undefined;
|
|
1022
|
-
};
|
|
1023
|
-
/** . */
|
|
1024
|
-
'calendarEventId': {
|
|
1025
|
-
type: 'id';
|
|
1026
|
-
isRequired: true;
|
|
1027
|
-
options: undefined;
|
|
1028
|
-
};
|
|
1029
|
-
};
|
|
1030
|
-
}
|
|
1031
|
-
interface DidCancelCalendarEventEmitTargetEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetSchema> {
|
|
1032
|
-
}
|
|
1033
|
-
}
|
|
1034
|
-
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1035
|
-
interface DidCancelCalendarEventEmitPayload {
|
|
1036
|
-
'cancelStrategy': ("only-this-one" | "all-going-forward" | "all");
|
|
1037
|
-
'calendarEvent': SpruceSchemas.CalendarUtils.v2021_05_19.CalendarEvent;
|
|
1038
|
-
}
|
|
1039
|
-
interface DidCancelCalendarEventEmitPayloadSchema extends SpruceSchema.Schema {
|
|
1040
|
-
id: 'didCancelCalendarEventEmitPayload';
|
|
1041
|
-
version: 'v2021_05_19';
|
|
1042
|
-
namespace: 'Calendar';
|
|
1043
|
-
name: '';
|
|
1044
|
-
fields: {
|
|
1045
|
-
/** . */
|
|
1046
|
-
'cancelStrategy': {
|
|
1047
|
-
type: 'select';
|
|
1048
|
-
isRequired: true;
|
|
1049
|
-
options: {
|
|
1050
|
-
choices: [{
|
|
1051
|
-
"value": "only-this-one";
|
|
1052
|
-
"label": "Specific dates";
|
|
1053
|
-
}, {
|
|
1054
|
-
"value": "all-going-forward";
|
|
1055
|
-
"label": "This and all going forward";
|
|
1056
|
-
}, {
|
|
1057
|
-
"value": "all";
|
|
1058
|
-
"label": "All";
|
|
1059
|
-
}];
|
|
1060
|
-
};
|
|
1061
|
-
};
|
|
1062
|
-
/** . */
|
|
1063
|
-
'calendarEvent': {
|
|
1064
|
-
type: 'schema';
|
|
1065
|
-
isRequired: true;
|
|
1066
|
-
options: {
|
|
1067
|
-
schema: SpruceSchemas.CalendarUtils.v2021_05_19.CalendarEventSchema;
|
|
1068
|
-
};
|
|
1069
|
-
};
|
|
1070
|
-
};
|
|
1071
|
-
}
|
|
1072
|
-
interface DidCancelCalendarEventEmitPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayloadSchema> {
|
|
1073
|
-
}
|
|
1074
|
-
}
|
|
1075
|
-
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1076
|
-
interface DidCancelCalendarEventEmitTargetAndPayload {
|
|
1077
|
-
/** Source. */
|
|
1078
|
-
'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
|
|
1079
|
-
'target': SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTarget;
|
|
1080
|
-
'payload': SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayload;
|
|
1081
|
-
}
|
|
1082
|
-
interface DidCancelCalendarEventEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
|
|
1083
|
-
id: 'didCancelCalendarEventEmitTargetAndPayload';
|
|
1084
|
-
version: 'v2021_05_19';
|
|
1085
|
-
namespace: 'Calendar';
|
|
1086
|
-
name: '';
|
|
1087
|
-
fields: {
|
|
1088
|
-
/** Source. */
|
|
1089
|
-
'source': {
|
|
1090
|
-
label: 'Source';
|
|
1091
|
-
type: 'schema';
|
|
1092
|
-
options: {
|
|
1093
|
-
schema: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSourceSchema;
|
|
1094
|
-
};
|
|
1095
|
-
};
|
|
1096
|
-
/** . */
|
|
1097
|
-
'target': {
|
|
1098
|
-
type: 'schema';
|
|
1099
|
-
isRequired: true;
|
|
1100
|
-
options: {
|
|
1101
|
-
schema: SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetSchema;
|
|
1102
|
-
};
|
|
1103
|
-
};
|
|
1104
|
-
/** . */
|
|
1105
|
-
'payload': {
|
|
1106
|
-
type: 'schema';
|
|
1107
|
-
isRequired: true;
|
|
1108
|
-
options: {
|
|
1109
|
-
schema: SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayloadSchema;
|
|
1110
|
-
};
|
|
1111
|
-
};
|
|
1112
|
-
};
|
|
1113
|
-
}
|
|
1114
|
-
interface DidCancelCalendarEventEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetAndPayloadSchema> {
|
|
1115
|
-
}
|
|
1116
|
-
}
|
|
1117
1006
|
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1118
1007
|
interface CreateCalendarEventTypeEmitPayload {
|
|
1119
1008
|
'name': string;
|
|
@@ -1704,6 +1593,117 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
1704
1593
|
interface DeleteCalendarResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DeleteCalendarResponsePayloadSchema> {
|
|
1705
1594
|
}
|
|
1706
1595
|
}
|
|
1596
|
+
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1597
|
+
interface DidCancelCalendarEventEmitTarget {
|
|
1598
|
+
'locationId': string;
|
|
1599
|
+
'calendarEventId': string;
|
|
1600
|
+
}
|
|
1601
|
+
interface DidCancelCalendarEventEmitTargetSchema extends SpruceSchema.Schema {
|
|
1602
|
+
id: 'didCancelCalendarEventEmitTarget';
|
|
1603
|
+
version: 'v2021_05_19';
|
|
1604
|
+
namespace: 'Calendar';
|
|
1605
|
+
name: '';
|
|
1606
|
+
fields: {
|
|
1607
|
+
/** . */
|
|
1608
|
+
'locationId': {
|
|
1609
|
+
type: 'id';
|
|
1610
|
+
isRequired: true;
|
|
1611
|
+
options: undefined;
|
|
1612
|
+
};
|
|
1613
|
+
/** . */
|
|
1614
|
+
'calendarEventId': {
|
|
1615
|
+
type: 'id';
|
|
1616
|
+
isRequired: true;
|
|
1617
|
+
options: undefined;
|
|
1618
|
+
};
|
|
1619
|
+
};
|
|
1620
|
+
}
|
|
1621
|
+
interface DidCancelCalendarEventEmitTargetEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetSchema> {
|
|
1622
|
+
}
|
|
1623
|
+
}
|
|
1624
|
+
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1625
|
+
interface DidCancelCalendarEventEmitPayload {
|
|
1626
|
+
'cancelStrategy': ("only-this-one" | "all-going-forward" | "all");
|
|
1627
|
+
'calendarEvent': SpruceSchemas.CalendarUtils.v2021_05_19.CalendarEvent;
|
|
1628
|
+
}
|
|
1629
|
+
interface DidCancelCalendarEventEmitPayloadSchema extends SpruceSchema.Schema {
|
|
1630
|
+
id: 'didCancelCalendarEventEmitPayload';
|
|
1631
|
+
version: 'v2021_05_19';
|
|
1632
|
+
namespace: 'Calendar';
|
|
1633
|
+
name: '';
|
|
1634
|
+
fields: {
|
|
1635
|
+
/** . */
|
|
1636
|
+
'cancelStrategy': {
|
|
1637
|
+
type: 'select';
|
|
1638
|
+
isRequired: true;
|
|
1639
|
+
options: {
|
|
1640
|
+
choices: [{
|
|
1641
|
+
"value": "only-this-one";
|
|
1642
|
+
"label": "Specific dates";
|
|
1643
|
+
}, {
|
|
1644
|
+
"value": "all-going-forward";
|
|
1645
|
+
"label": "This and all going forward";
|
|
1646
|
+
}, {
|
|
1647
|
+
"value": "all";
|
|
1648
|
+
"label": "All";
|
|
1649
|
+
}];
|
|
1650
|
+
};
|
|
1651
|
+
};
|
|
1652
|
+
/** . */
|
|
1653
|
+
'calendarEvent': {
|
|
1654
|
+
type: 'schema';
|
|
1655
|
+
isRequired: true;
|
|
1656
|
+
options: {
|
|
1657
|
+
schema: SpruceSchemas.CalendarUtils.v2021_05_19.CalendarEventSchema;
|
|
1658
|
+
};
|
|
1659
|
+
};
|
|
1660
|
+
};
|
|
1661
|
+
}
|
|
1662
|
+
interface DidCancelCalendarEventEmitPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayloadSchema> {
|
|
1663
|
+
}
|
|
1664
|
+
}
|
|
1665
|
+
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1666
|
+
interface DidCancelCalendarEventEmitTargetAndPayload {
|
|
1667
|
+
/** Source. */
|
|
1668
|
+
'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
|
|
1669
|
+
'target': SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTarget;
|
|
1670
|
+
'payload': SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayload;
|
|
1671
|
+
}
|
|
1672
|
+
interface DidCancelCalendarEventEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
|
|
1673
|
+
id: 'didCancelCalendarEventEmitTargetAndPayload';
|
|
1674
|
+
version: 'v2021_05_19';
|
|
1675
|
+
namespace: 'Calendar';
|
|
1676
|
+
name: '';
|
|
1677
|
+
fields: {
|
|
1678
|
+
/** Source. */
|
|
1679
|
+
'source': {
|
|
1680
|
+
label: 'Source';
|
|
1681
|
+
type: 'schema';
|
|
1682
|
+
options: {
|
|
1683
|
+
schema: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSourceSchema;
|
|
1684
|
+
};
|
|
1685
|
+
};
|
|
1686
|
+
/** . */
|
|
1687
|
+
'target': {
|
|
1688
|
+
type: 'schema';
|
|
1689
|
+
isRequired: true;
|
|
1690
|
+
options: {
|
|
1691
|
+
schema: SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetSchema;
|
|
1692
|
+
};
|
|
1693
|
+
};
|
|
1694
|
+
/** . */
|
|
1695
|
+
'payload': {
|
|
1696
|
+
type: 'schema';
|
|
1697
|
+
isRequired: true;
|
|
1698
|
+
options: {
|
|
1699
|
+
schema: SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayloadSchema;
|
|
1700
|
+
};
|
|
1701
|
+
};
|
|
1702
|
+
};
|
|
1703
|
+
}
|
|
1704
|
+
interface DidCancelCalendarEventEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetAndPayloadSchema> {
|
|
1705
|
+
}
|
|
1706
|
+
}
|
|
1707
1707
|
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1708
1708
|
interface DidUpdateCalendarEventEmitTarget {
|
|
1709
1709
|
'locationId': string;
|
|
@@ -1003,117 +1003,6 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
1003
1003
|
interface CreateCalendarResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.CreateCalendarResponsePayloadSchema> {
|
|
1004
1004
|
}
|
|
1005
1005
|
}
|
|
1006
|
-
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1007
|
-
interface DidCancelCalendarEventEmitTarget {
|
|
1008
|
-
'locationId': string;
|
|
1009
|
-
'calendarEventId': string;
|
|
1010
|
-
}
|
|
1011
|
-
interface DidCancelCalendarEventEmitTargetSchema extends SpruceSchema.Schema {
|
|
1012
|
-
id: 'didCancelCalendarEventEmitTarget';
|
|
1013
|
-
version: 'v2021_05_19';
|
|
1014
|
-
namespace: 'Calendar';
|
|
1015
|
-
name: '';
|
|
1016
|
-
fields: {
|
|
1017
|
-
/** . */
|
|
1018
|
-
'locationId': {
|
|
1019
|
-
type: 'id';
|
|
1020
|
-
isRequired: true;
|
|
1021
|
-
options: undefined;
|
|
1022
|
-
};
|
|
1023
|
-
/** . */
|
|
1024
|
-
'calendarEventId': {
|
|
1025
|
-
type: 'id';
|
|
1026
|
-
isRequired: true;
|
|
1027
|
-
options: undefined;
|
|
1028
|
-
};
|
|
1029
|
-
};
|
|
1030
|
-
}
|
|
1031
|
-
interface DidCancelCalendarEventEmitTargetEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetSchema> {
|
|
1032
|
-
}
|
|
1033
|
-
}
|
|
1034
|
-
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1035
|
-
interface DidCancelCalendarEventEmitPayload {
|
|
1036
|
-
'cancelStrategy': ("only-this-one" | "all-going-forward" | "all");
|
|
1037
|
-
'calendarEvent': SpruceSchemas.CalendarUtils.v2021_05_19.CalendarEvent;
|
|
1038
|
-
}
|
|
1039
|
-
interface DidCancelCalendarEventEmitPayloadSchema extends SpruceSchema.Schema {
|
|
1040
|
-
id: 'didCancelCalendarEventEmitPayload';
|
|
1041
|
-
version: 'v2021_05_19';
|
|
1042
|
-
namespace: 'Calendar';
|
|
1043
|
-
name: '';
|
|
1044
|
-
fields: {
|
|
1045
|
-
/** . */
|
|
1046
|
-
'cancelStrategy': {
|
|
1047
|
-
type: 'select';
|
|
1048
|
-
isRequired: true;
|
|
1049
|
-
options: {
|
|
1050
|
-
choices: [{
|
|
1051
|
-
"value": "only-this-one";
|
|
1052
|
-
"label": "Specific dates";
|
|
1053
|
-
}, {
|
|
1054
|
-
"value": "all-going-forward";
|
|
1055
|
-
"label": "This and all going forward";
|
|
1056
|
-
}, {
|
|
1057
|
-
"value": "all";
|
|
1058
|
-
"label": "All";
|
|
1059
|
-
}];
|
|
1060
|
-
};
|
|
1061
|
-
};
|
|
1062
|
-
/** . */
|
|
1063
|
-
'calendarEvent': {
|
|
1064
|
-
type: 'schema';
|
|
1065
|
-
isRequired: true;
|
|
1066
|
-
options: {
|
|
1067
|
-
schema: SpruceSchemas.CalendarUtils.v2021_05_19.CalendarEventSchema;
|
|
1068
|
-
};
|
|
1069
|
-
};
|
|
1070
|
-
};
|
|
1071
|
-
}
|
|
1072
|
-
interface DidCancelCalendarEventEmitPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayloadSchema> {
|
|
1073
|
-
}
|
|
1074
|
-
}
|
|
1075
|
-
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1076
|
-
interface DidCancelCalendarEventEmitTargetAndPayload {
|
|
1077
|
-
/** Source. */
|
|
1078
|
-
'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
|
|
1079
|
-
'target': SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTarget;
|
|
1080
|
-
'payload': SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayload;
|
|
1081
|
-
}
|
|
1082
|
-
interface DidCancelCalendarEventEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
|
|
1083
|
-
id: 'didCancelCalendarEventEmitTargetAndPayload';
|
|
1084
|
-
version: 'v2021_05_19';
|
|
1085
|
-
namespace: 'Calendar';
|
|
1086
|
-
name: '';
|
|
1087
|
-
fields: {
|
|
1088
|
-
/** Source. */
|
|
1089
|
-
'source': {
|
|
1090
|
-
label: 'Source';
|
|
1091
|
-
type: 'schema';
|
|
1092
|
-
options: {
|
|
1093
|
-
schema: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSourceSchema;
|
|
1094
|
-
};
|
|
1095
|
-
};
|
|
1096
|
-
/** . */
|
|
1097
|
-
'target': {
|
|
1098
|
-
type: 'schema';
|
|
1099
|
-
isRequired: true;
|
|
1100
|
-
options: {
|
|
1101
|
-
schema: SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetSchema;
|
|
1102
|
-
};
|
|
1103
|
-
};
|
|
1104
|
-
/** . */
|
|
1105
|
-
'payload': {
|
|
1106
|
-
type: 'schema';
|
|
1107
|
-
isRequired: true;
|
|
1108
|
-
options: {
|
|
1109
|
-
schema: SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayloadSchema;
|
|
1110
|
-
};
|
|
1111
|
-
};
|
|
1112
|
-
};
|
|
1113
|
-
}
|
|
1114
|
-
interface DidCancelCalendarEventEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetAndPayloadSchema> {
|
|
1115
|
-
}
|
|
1116
|
-
}
|
|
1117
1006
|
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1118
1007
|
interface CreateCalendarEventTypeEmitPayload {
|
|
1119
1008
|
'name': string;
|
|
@@ -1704,6 +1593,117 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
1704
1593
|
interface DeleteCalendarResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DeleteCalendarResponsePayloadSchema> {
|
|
1705
1594
|
}
|
|
1706
1595
|
}
|
|
1596
|
+
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1597
|
+
interface DidCancelCalendarEventEmitTarget {
|
|
1598
|
+
'locationId': string;
|
|
1599
|
+
'calendarEventId': string;
|
|
1600
|
+
}
|
|
1601
|
+
interface DidCancelCalendarEventEmitTargetSchema extends SpruceSchema.Schema {
|
|
1602
|
+
id: 'didCancelCalendarEventEmitTarget';
|
|
1603
|
+
version: 'v2021_05_19';
|
|
1604
|
+
namespace: 'Calendar';
|
|
1605
|
+
name: '';
|
|
1606
|
+
fields: {
|
|
1607
|
+
/** . */
|
|
1608
|
+
'locationId': {
|
|
1609
|
+
type: 'id';
|
|
1610
|
+
isRequired: true;
|
|
1611
|
+
options: undefined;
|
|
1612
|
+
};
|
|
1613
|
+
/** . */
|
|
1614
|
+
'calendarEventId': {
|
|
1615
|
+
type: 'id';
|
|
1616
|
+
isRequired: true;
|
|
1617
|
+
options: undefined;
|
|
1618
|
+
};
|
|
1619
|
+
};
|
|
1620
|
+
}
|
|
1621
|
+
interface DidCancelCalendarEventEmitTargetEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetSchema> {
|
|
1622
|
+
}
|
|
1623
|
+
}
|
|
1624
|
+
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1625
|
+
interface DidCancelCalendarEventEmitPayload {
|
|
1626
|
+
'cancelStrategy': ("only-this-one" | "all-going-forward" | "all");
|
|
1627
|
+
'calendarEvent': SpruceSchemas.CalendarUtils.v2021_05_19.CalendarEvent;
|
|
1628
|
+
}
|
|
1629
|
+
interface DidCancelCalendarEventEmitPayloadSchema extends SpruceSchema.Schema {
|
|
1630
|
+
id: 'didCancelCalendarEventEmitPayload';
|
|
1631
|
+
version: 'v2021_05_19';
|
|
1632
|
+
namespace: 'Calendar';
|
|
1633
|
+
name: '';
|
|
1634
|
+
fields: {
|
|
1635
|
+
/** . */
|
|
1636
|
+
'cancelStrategy': {
|
|
1637
|
+
type: 'select';
|
|
1638
|
+
isRequired: true;
|
|
1639
|
+
options: {
|
|
1640
|
+
choices: [{
|
|
1641
|
+
"value": "only-this-one";
|
|
1642
|
+
"label": "Specific dates";
|
|
1643
|
+
}, {
|
|
1644
|
+
"value": "all-going-forward";
|
|
1645
|
+
"label": "This and all going forward";
|
|
1646
|
+
}, {
|
|
1647
|
+
"value": "all";
|
|
1648
|
+
"label": "All";
|
|
1649
|
+
}];
|
|
1650
|
+
};
|
|
1651
|
+
};
|
|
1652
|
+
/** . */
|
|
1653
|
+
'calendarEvent': {
|
|
1654
|
+
type: 'schema';
|
|
1655
|
+
isRequired: true;
|
|
1656
|
+
options: {
|
|
1657
|
+
schema: SpruceSchemas.CalendarUtils.v2021_05_19.CalendarEventSchema;
|
|
1658
|
+
};
|
|
1659
|
+
};
|
|
1660
|
+
};
|
|
1661
|
+
}
|
|
1662
|
+
interface DidCancelCalendarEventEmitPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayloadSchema> {
|
|
1663
|
+
}
|
|
1664
|
+
}
|
|
1665
|
+
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1666
|
+
interface DidCancelCalendarEventEmitTargetAndPayload {
|
|
1667
|
+
/** Source. */
|
|
1668
|
+
'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
|
|
1669
|
+
'target': SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTarget;
|
|
1670
|
+
'payload': SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayload;
|
|
1671
|
+
}
|
|
1672
|
+
interface DidCancelCalendarEventEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
|
|
1673
|
+
id: 'didCancelCalendarEventEmitTargetAndPayload';
|
|
1674
|
+
version: 'v2021_05_19';
|
|
1675
|
+
namespace: 'Calendar';
|
|
1676
|
+
name: '';
|
|
1677
|
+
fields: {
|
|
1678
|
+
/** Source. */
|
|
1679
|
+
'source': {
|
|
1680
|
+
label: 'Source';
|
|
1681
|
+
type: 'schema';
|
|
1682
|
+
options: {
|
|
1683
|
+
schema: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSourceSchema;
|
|
1684
|
+
};
|
|
1685
|
+
};
|
|
1686
|
+
/** . */
|
|
1687
|
+
'target': {
|
|
1688
|
+
type: 'schema';
|
|
1689
|
+
isRequired: true;
|
|
1690
|
+
options: {
|
|
1691
|
+
schema: SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetSchema;
|
|
1692
|
+
};
|
|
1693
|
+
};
|
|
1694
|
+
/** . */
|
|
1695
|
+
'payload': {
|
|
1696
|
+
type: 'schema';
|
|
1697
|
+
isRequired: true;
|
|
1698
|
+
options: {
|
|
1699
|
+
schema: SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayloadSchema;
|
|
1700
|
+
};
|
|
1701
|
+
};
|
|
1702
|
+
};
|
|
1703
|
+
}
|
|
1704
|
+
interface DidCancelCalendarEventEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetAndPayloadSchema> {
|
|
1705
|
+
}
|
|
1706
|
+
}
|
|
1707
1707
|
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1708
1708
|
interface DidUpdateCalendarEventEmitTarget {
|
|
1709
1709
|
'locationId': string;
|