@sprucelabs/spruce-calendar-components 22.10.65 → 22.10.66
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.
|
@@ -1074,108 +1074,6 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
1074
1074
|
interface DeleteCalendarResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DeleteCalendarResponsePayloadSchema> {
|
|
1075
1075
|
}
|
|
1076
1076
|
}
|
|
1077
|
-
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1078
|
-
interface DidCancelCalendarEventEmitTarget {
|
|
1079
|
-
'locationId': string;
|
|
1080
|
-
'calendarEventId': string;
|
|
1081
|
-
}
|
|
1082
|
-
interface DidCancelCalendarEventEmitTargetSchema extends SpruceSchema.Schema {
|
|
1083
|
-
id: 'didCancelCalendarEventEmitTarget';
|
|
1084
|
-
version: 'v2021_05_19';
|
|
1085
|
-
namespace: 'Calendar';
|
|
1086
|
-
name: '';
|
|
1087
|
-
fields: {
|
|
1088
|
-
/** . */
|
|
1089
|
-
'locationId': {
|
|
1090
|
-
type: 'id';
|
|
1091
|
-
isRequired: true;
|
|
1092
|
-
options: undefined;
|
|
1093
|
-
};
|
|
1094
|
-
/** . */
|
|
1095
|
-
'calendarEventId': {
|
|
1096
|
-
type: 'id';
|
|
1097
|
-
isRequired: true;
|
|
1098
|
-
options: undefined;
|
|
1099
|
-
};
|
|
1100
|
-
};
|
|
1101
|
-
}
|
|
1102
|
-
interface DidCancelCalendarEventEmitTargetEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetSchema> {
|
|
1103
|
-
}
|
|
1104
|
-
}
|
|
1105
|
-
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1106
|
-
interface DidCancelCalendarEventEmitPayload {
|
|
1107
|
-
'cancelStrategy': ("only-this-one" | "all-going-forward" | "all");
|
|
1108
|
-
}
|
|
1109
|
-
interface DidCancelCalendarEventEmitPayloadSchema extends SpruceSchema.Schema {
|
|
1110
|
-
id: 'didCancelCalendarEventEmitPayload';
|
|
1111
|
-
version: 'v2021_05_19';
|
|
1112
|
-
namespace: 'Calendar';
|
|
1113
|
-
name: '';
|
|
1114
|
-
fields: {
|
|
1115
|
-
/** . */
|
|
1116
|
-
'cancelStrategy': {
|
|
1117
|
-
type: 'select';
|
|
1118
|
-
isRequired: true;
|
|
1119
|
-
options: {
|
|
1120
|
-
choices: [{
|
|
1121
|
-
"value": "only-this-one";
|
|
1122
|
-
"label": "Specific dates";
|
|
1123
|
-
}, {
|
|
1124
|
-
"value": "all-going-forward";
|
|
1125
|
-
"label": "This and all going forward";
|
|
1126
|
-
}, {
|
|
1127
|
-
"value": "all";
|
|
1128
|
-
"label": "All";
|
|
1129
|
-
}];
|
|
1130
|
-
};
|
|
1131
|
-
};
|
|
1132
|
-
};
|
|
1133
|
-
}
|
|
1134
|
-
interface DidCancelCalendarEventEmitPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayloadSchema> {
|
|
1135
|
-
}
|
|
1136
|
-
}
|
|
1137
|
-
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1138
|
-
interface DidCancelCalendarEventEmitTargetAndPayload {
|
|
1139
|
-
/** Source. */
|
|
1140
|
-
'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
|
|
1141
|
-
'target': SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTarget;
|
|
1142
|
-
'payload': SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayload;
|
|
1143
|
-
}
|
|
1144
|
-
interface DidCancelCalendarEventEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
|
|
1145
|
-
id: 'didCancelCalendarEventEmitTargetAndPayload';
|
|
1146
|
-
version: 'v2021_05_19';
|
|
1147
|
-
namespace: 'Calendar';
|
|
1148
|
-
name: '';
|
|
1149
|
-
fields: {
|
|
1150
|
-
/** Source. */
|
|
1151
|
-
'source': {
|
|
1152
|
-
label: 'Source';
|
|
1153
|
-
type: 'schema';
|
|
1154
|
-
options: {
|
|
1155
|
-
schema: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSourceSchema;
|
|
1156
|
-
};
|
|
1157
|
-
};
|
|
1158
|
-
/** . */
|
|
1159
|
-
'target': {
|
|
1160
|
-
type: 'schema';
|
|
1161
|
-
isRequired: true;
|
|
1162
|
-
options: {
|
|
1163
|
-
schema: SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetSchema;
|
|
1164
|
-
};
|
|
1165
|
-
};
|
|
1166
|
-
/** . */
|
|
1167
|
-
'payload': {
|
|
1168
|
-
type: 'schema';
|
|
1169
|
-
isRequired: true;
|
|
1170
|
-
options: {
|
|
1171
|
-
schema: SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayloadSchema;
|
|
1172
|
-
};
|
|
1173
|
-
};
|
|
1174
|
-
};
|
|
1175
|
-
}
|
|
1176
|
-
interface DidCancelCalendarEventEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetAndPayloadSchema> {
|
|
1177
|
-
}
|
|
1178
|
-
}
|
|
1179
1077
|
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1180
1078
|
interface CreateCalendarEventTypeEmitPayload {
|
|
1181
1079
|
'name': string;
|
|
@@ -1685,6 +1583,108 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
1685
1583
|
interface CreateCalendarEventTypeResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.CreateCalendarEventTypeResponsePayloadSchema> {
|
|
1686
1584
|
}
|
|
1687
1585
|
}
|
|
1586
|
+
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1587
|
+
interface DidCancelCalendarEventEmitTarget {
|
|
1588
|
+
'locationId': string;
|
|
1589
|
+
'calendarEventId': string;
|
|
1590
|
+
}
|
|
1591
|
+
interface DidCancelCalendarEventEmitTargetSchema extends SpruceSchema.Schema {
|
|
1592
|
+
id: 'didCancelCalendarEventEmitTarget';
|
|
1593
|
+
version: 'v2021_05_19';
|
|
1594
|
+
namespace: 'Calendar';
|
|
1595
|
+
name: '';
|
|
1596
|
+
fields: {
|
|
1597
|
+
/** . */
|
|
1598
|
+
'locationId': {
|
|
1599
|
+
type: 'id';
|
|
1600
|
+
isRequired: true;
|
|
1601
|
+
options: undefined;
|
|
1602
|
+
};
|
|
1603
|
+
/** . */
|
|
1604
|
+
'calendarEventId': {
|
|
1605
|
+
type: 'id';
|
|
1606
|
+
isRequired: true;
|
|
1607
|
+
options: undefined;
|
|
1608
|
+
};
|
|
1609
|
+
};
|
|
1610
|
+
}
|
|
1611
|
+
interface DidCancelCalendarEventEmitTargetEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetSchema> {
|
|
1612
|
+
}
|
|
1613
|
+
}
|
|
1614
|
+
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1615
|
+
interface DidCancelCalendarEventEmitPayload {
|
|
1616
|
+
'cancelStrategy': ("only-this-one" | "all-going-forward" | "all");
|
|
1617
|
+
}
|
|
1618
|
+
interface DidCancelCalendarEventEmitPayloadSchema extends SpruceSchema.Schema {
|
|
1619
|
+
id: 'didCancelCalendarEventEmitPayload';
|
|
1620
|
+
version: 'v2021_05_19';
|
|
1621
|
+
namespace: 'Calendar';
|
|
1622
|
+
name: '';
|
|
1623
|
+
fields: {
|
|
1624
|
+
/** . */
|
|
1625
|
+
'cancelStrategy': {
|
|
1626
|
+
type: 'select';
|
|
1627
|
+
isRequired: true;
|
|
1628
|
+
options: {
|
|
1629
|
+
choices: [{
|
|
1630
|
+
"value": "only-this-one";
|
|
1631
|
+
"label": "Specific dates";
|
|
1632
|
+
}, {
|
|
1633
|
+
"value": "all-going-forward";
|
|
1634
|
+
"label": "This and all going forward";
|
|
1635
|
+
}, {
|
|
1636
|
+
"value": "all";
|
|
1637
|
+
"label": "All";
|
|
1638
|
+
}];
|
|
1639
|
+
};
|
|
1640
|
+
};
|
|
1641
|
+
};
|
|
1642
|
+
}
|
|
1643
|
+
interface DidCancelCalendarEventEmitPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayloadSchema> {
|
|
1644
|
+
}
|
|
1645
|
+
}
|
|
1646
|
+
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1647
|
+
interface DidCancelCalendarEventEmitTargetAndPayload {
|
|
1648
|
+
/** Source. */
|
|
1649
|
+
'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
|
|
1650
|
+
'target': SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTarget;
|
|
1651
|
+
'payload': SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayload;
|
|
1652
|
+
}
|
|
1653
|
+
interface DidCancelCalendarEventEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
|
|
1654
|
+
id: 'didCancelCalendarEventEmitTargetAndPayload';
|
|
1655
|
+
version: 'v2021_05_19';
|
|
1656
|
+
namespace: 'Calendar';
|
|
1657
|
+
name: '';
|
|
1658
|
+
fields: {
|
|
1659
|
+
/** Source. */
|
|
1660
|
+
'source': {
|
|
1661
|
+
label: 'Source';
|
|
1662
|
+
type: 'schema';
|
|
1663
|
+
options: {
|
|
1664
|
+
schema: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSourceSchema;
|
|
1665
|
+
};
|
|
1666
|
+
};
|
|
1667
|
+
/** . */
|
|
1668
|
+
'target': {
|
|
1669
|
+
type: 'schema';
|
|
1670
|
+
isRequired: true;
|
|
1671
|
+
options: {
|
|
1672
|
+
schema: SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetSchema;
|
|
1673
|
+
};
|
|
1674
|
+
};
|
|
1675
|
+
/** . */
|
|
1676
|
+
'payload': {
|
|
1677
|
+
type: 'schema';
|
|
1678
|
+
isRequired: true;
|
|
1679
|
+
options: {
|
|
1680
|
+
schema: SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayloadSchema;
|
|
1681
|
+
};
|
|
1682
|
+
};
|
|
1683
|
+
};
|
|
1684
|
+
}
|
|
1685
|
+
interface DidCancelCalendarEventEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetAndPayloadSchema> {
|
|
1686
|
+
}
|
|
1687
|
+
}
|
|
1688
1688
|
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1689
1689
|
interface DidUpdateCalendarEventEmitTarget {
|
|
1690
1690
|
'locationId': string;
|
|
@@ -1074,108 +1074,6 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
1074
1074
|
interface DeleteCalendarResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DeleteCalendarResponsePayloadSchema> {
|
|
1075
1075
|
}
|
|
1076
1076
|
}
|
|
1077
|
-
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1078
|
-
interface DidCancelCalendarEventEmitTarget {
|
|
1079
|
-
'locationId': string;
|
|
1080
|
-
'calendarEventId': string;
|
|
1081
|
-
}
|
|
1082
|
-
interface DidCancelCalendarEventEmitTargetSchema extends SpruceSchema.Schema {
|
|
1083
|
-
id: 'didCancelCalendarEventEmitTarget';
|
|
1084
|
-
version: 'v2021_05_19';
|
|
1085
|
-
namespace: 'Calendar';
|
|
1086
|
-
name: '';
|
|
1087
|
-
fields: {
|
|
1088
|
-
/** . */
|
|
1089
|
-
'locationId': {
|
|
1090
|
-
type: 'id';
|
|
1091
|
-
isRequired: true;
|
|
1092
|
-
options: undefined;
|
|
1093
|
-
};
|
|
1094
|
-
/** . */
|
|
1095
|
-
'calendarEventId': {
|
|
1096
|
-
type: 'id';
|
|
1097
|
-
isRequired: true;
|
|
1098
|
-
options: undefined;
|
|
1099
|
-
};
|
|
1100
|
-
};
|
|
1101
|
-
}
|
|
1102
|
-
interface DidCancelCalendarEventEmitTargetEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetSchema> {
|
|
1103
|
-
}
|
|
1104
|
-
}
|
|
1105
|
-
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1106
|
-
interface DidCancelCalendarEventEmitPayload {
|
|
1107
|
-
'cancelStrategy': ("only-this-one" | "all-going-forward" | "all");
|
|
1108
|
-
}
|
|
1109
|
-
interface DidCancelCalendarEventEmitPayloadSchema extends SpruceSchema.Schema {
|
|
1110
|
-
id: 'didCancelCalendarEventEmitPayload';
|
|
1111
|
-
version: 'v2021_05_19';
|
|
1112
|
-
namespace: 'Calendar';
|
|
1113
|
-
name: '';
|
|
1114
|
-
fields: {
|
|
1115
|
-
/** . */
|
|
1116
|
-
'cancelStrategy': {
|
|
1117
|
-
type: 'select';
|
|
1118
|
-
isRequired: true;
|
|
1119
|
-
options: {
|
|
1120
|
-
choices: [{
|
|
1121
|
-
"value": "only-this-one";
|
|
1122
|
-
"label": "Specific dates";
|
|
1123
|
-
}, {
|
|
1124
|
-
"value": "all-going-forward";
|
|
1125
|
-
"label": "This and all going forward";
|
|
1126
|
-
}, {
|
|
1127
|
-
"value": "all";
|
|
1128
|
-
"label": "All";
|
|
1129
|
-
}];
|
|
1130
|
-
};
|
|
1131
|
-
};
|
|
1132
|
-
};
|
|
1133
|
-
}
|
|
1134
|
-
interface DidCancelCalendarEventEmitPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayloadSchema> {
|
|
1135
|
-
}
|
|
1136
|
-
}
|
|
1137
|
-
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1138
|
-
interface DidCancelCalendarEventEmitTargetAndPayload {
|
|
1139
|
-
/** Source. */
|
|
1140
|
-
'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
|
|
1141
|
-
'target': SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTarget;
|
|
1142
|
-
'payload': SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayload;
|
|
1143
|
-
}
|
|
1144
|
-
interface DidCancelCalendarEventEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
|
|
1145
|
-
id: 'didCancelCalendarEventEmitTargetAndPayload';
|
|
1146
|
-
version: 'v2021_05_19';
|
|
1147
|
-
namespace: 'Calendar';
|
|
1148
|
-
name: '';
|
|
1149
|
-
fields: {
|
|
1150
|
-
/** Source. */
|
|
1151
|
-
'source': {
|
|
1152
|
-
label: 'Source';
|
|
1153
|
-
type: 'schema';
|
|
1154
|
-
options: {
|
|
1155
|
-
schema: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSourceSchema;
|
|
1156
|
-
};
|
|
1157
|
-
};
|
|
1158
|
-
/** . */
|
|
1159
|
-
'target': {
|
|
1160
|
-
type: 'schema';
|
|
1161
|
-
isRequired: true;
|
|
1162
|
-
options: {
|
|
1163
|
-
schema: SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetSchema;
|
|
1164
|
-
};
|
|
1165
|
-
};
|
|
1166
|
-
/** . */
|
|
1167
|
-
'payload': {
|
|
1168
|
-
type: 'schema';
|
|
1169
|
-
isRequired: true;
|
|
1170
|
-
options: {
|
|
1171
|
-
schema: SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayloadSchema;
|
|
1172
|
-
};
|
|
1173
|
-
};
|
|
1174
|
-
};
|
|
1175
|
-
}
|
|
1176
|
-
interface DidCancelCalendarEventEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetAndPayloadSchema> {
|
|
1177
|
-
}
|
|
1178
|
-
}
|
|
1179
1077
|
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1180
1078
|
interface CreateCalendarEventTypeEmitPayload {
|
|
1181
1079
|
'name': string;
|
|
@@ -1685,6 +1583,108 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
1685
1583
|
interface CreateCalendarEventTypeResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.CreateCalendarEventTypeResponsePayloadSchema> {
|
|
1686
1584
|
}
|
|
1687
1585
|
}
|
|
1586
|
+
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1587
|
+
interface DidCancelCalendarEventEmitTarget {
|
|
1588
|
+
'locationId': string;
|
|
1589
|
+
'calendarEventId': string;
|
|
1590
|
+
}
|
|
1591
|
+
interface DidCancelCalendarEventEmitTargetSchema extends SpruceSchema.Schema {
|
|
1592
|
+
id: 'didCancelCalendarEventEmitTarget';
|
|
1593
|
+
version: 'v2021_05_19';
|
|
1594
|
+
namespace: 'Calendar';
|
|
1595
|
+
name: '';
|
|
1596
|
+
fields: {
|
|
1597
|
+
/** . */
|
|
1598
|
+
'locationId': {
|
|
1599
|
+
type: 'id';
|
|
1600
|
+
isRequired: true;
|
|
1601
|
+
options: undefined;
|
|
1602
|
+
};
|
|
1603
|
+
/** . */
|
|
1604
|
+
'calendarEventId': {
|
|
1605
|
+
type: 'id';
|
|
1606
|
+
isRequired: true;
|
|
1607
|
+
options: undefined;
|
|
1608
|
+
};
|
|
1609
|
+
};
|
|
1610
|
+
}
|
|
1611
|
+
interface DidCancelCalendarEventEmitTargetEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetSchema> {
|
|
1612
|
+
}
|
|
1613
|
+
}
|
|
1614
|
+
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1615
|
+
interface DidCancelCalendarEventEmitPayload {
|
|
1616
|
+
'cancelStrategy': ("only-this-one" | "all-going-forward" | "all");
|
|
1617
|
+
}
|
|
1618
|
+
interface DidCancelCalendarEventEmitPayloadSchema extends SpruceSchema.Schema {
|
|
1619
|
+
id: 'didCancelCalendarEventEmitPayload';
|
|
1620
|
+
version: 'v2021_05_19';
|
|
1621
|
+
namespace: 'Calendar';
|
|
1622
|
+
name: '';
|
|
1623
|
+
fields: {
|
|
1624
|
+
/** . */
|
|
1625
|
+
'cancelStrategy': {
|
|
1626
|
+
type: 'select';
|
|
1627
|
+
isRequired: true;
|
|
1628
|
+
options: {
|
|
1629
|
+
choices: [{
|
|
1630
|
+
"value": "only-this-one";
|
|
1631
|
+
"label": "Specific dates";
|
|
1632
|
+
}, {
|
|
1633
|
+
"value": "all-going-forward";
|
|
1634
|
+
"label": "This and all going forward";
|
|
1635
|
+
}, {
|
|
1636
|
+
"value": "all";
|
|
1637
|
+
"label": "All";
|
|
1638
|
+
}];
|
|
1639
|
+
};
|
|
1640
|
+
};
|
|
1641
|
+
};
|
|
1642
|
+
}
|
|
1643
|
+
interface DidCancelCalendarEventEmitPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayloadSchema> {
|
|
1644
|
+
}
|
|
1645
|
+
}
|
|
1646
|
+
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1647
|
+
interface DidCancelCalendarEventEmitTargetAndPayload {
|
|
1648
|
+
/** Source. */
|
|
1649
|
+
'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
|
|
1650
|
+
'target': SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTarget;
|
|
1651
|
+
'payload': SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayload;
|
|
1652
|
+
}
|
|
1653
|
+
interface DidCancelCalendarEventEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
|
|
1654
|
+
id: 'didCancelCalendarEventEmitTargetAndPayload';
|
|
1655
|
+
version: 'v2021_05_19';
|
|
1656
|
+
namespace: 'Calendar';
|
|
1657
|
+
name: '';
|
|
1658
|
+
fields: {
|
|
1659
|
+
/** Source. */
|
|
1660
|
+
'source': {
|
|
1661
|
+
label: 'Source';
|
|
1662
|
+
type: 'schema';
|
|
1663
|
+
options: {
|
|
1664
|
+
schema: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSourceSchema;
|
|
1665
|
+
};
|
|
1666
|
+
};
|
|
1667
|
+
/** . */
|
|
1668
|
+
'target': {
|
|
1669
|
+
type: 'schema';
|
|
1670
|
+
isRequired: true;
|
|
1671
|
+
options: {
|
|
1672
|
+
schema: SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetSchema;
|
|
1673
|
+
};
|
|
1674
|
+
};
|
|
1675
|
+
/** . */
|
|
1676
|
+
'payload': {
|
|
1677
|
+
type: 'schema';
|
|
1678
|
+
isRequired: true;
|
|
1679
|
+
options: {
|
|
1680
|
+
schema: SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayloadSchema;
|
|
1681
|
+
};
|
|
1682
|
+
};
|
|
1683
|
+
};
|
|
1684
|
+
}
|
|
1685
|
+
interface DidCancelCalendarEventEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetAndPayloadSchema> {
|
|
1686
|
+
}
|
|
1687
|
+
}
|
|
1688
1688
|
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
1689
1689
|
interface DidUpdateCalendarEventEmitTarget {
|
|
1690
1690
|
'locationId': string;
|