@sprucelabs/spruce-calendar-components 29.0.71 → 29.0.73

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.
@@ -868,809 +868,880 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
868
868
  }
869
869
  }
870
870
  namespace SpruceSchemas.Calendar.v2021_05_19 {
871
- interface CreateCalendarEventTypeEmitPayload {
872
- 'name': string;
873
- 'slug': string;
874
- 'viewControllerId'?: string | undefined | null;
875
- 'lineIcon'?: ("sprucebot" | "add-circle" | "chevron-left" | "document-text" | "link-angle" | "play-circle" | "star" | "add-square" | "chevron-right" | "download-cloud" | "link-flat" | "present" | "sun" | "add" | "chevron-up" | "download" | "loader" | "refresh-circle" | "tag" | "alarm" | "clipboard" | "edit-box" | "location-pin" | "refresh" | "time" | "arrow-back" | "clock" | "edit-line" | "lock" | "repeat" | "tool" | "arrow-down-circle" | "close-circle" | "email" | "map" | "restricted" | "trending-down" | "arrow-down" | "close-square" | "emoji-happy" | "message-circle" | "rotate" | "trending-up" | "arrow-next" | "close" | "emoji-sad" | "message-square" | "search-no" | "triangle" | "arrow-up-circle" | "code" | "external-link" | "mic-off" | "search" | "unlock" | "arrow-up" | "coffee" | "fav-heart" | "mic-on" | "selector-checked" | "upload-cloud" | "attachment" | "command" | "flag" | "minus-circle" | "selector-circle-filled" | "upload" | "award-badge" | "corner-down-left" | "flip-01" | "minus-square" | "selector-circle" | "user-add" | "binoculars" | "corner-down-right" | "flip-02" | "money-sign" | "send" | "user-delete" | "bolt" | "corner-left-down" | "folder" | "more-horizontal" | "settings-filled" | "user" | "book-open" | "corner-left-up" | "globe" | "more-vertical" | "settings" | "users" | "book" | "corner-right-down" | "hash-tag" | "notification-off" | "share" | "video-off" | "bookmark" | "corner-right-up" | "headphones" | "notification-on" | "shopping-bag" | "video" | "calendar-add" | "corner-up-left" | "help-buoy" | "object" | "shopping-cart" | "warning" | "calendar" | "corner-up-right" | "help-circle" | "pause-circle" | "sort-filter-down" | "wifi" | "camera" | "crop" | "home" | "phone-unavailable" | "sort-filter-up" | "zoom-in" | "cellphone" | "delete" | "info" | "phone" | "sound-off" | "zoom-out" | "checkmark" | "document-blank" | "jump" | "photo" | "sound-on" | "chevron-down" | "document-new" | "layers" | "picked" | "star-filled") | undefined | null;
871
+ interface DeleteCalendarEmitTarget {
872
+ 'organizationId': string;
873
+ 'calendarId': string;
876
874
  }
877
- interface CreateCalendarEventTypeEmitPayloadSchema extends SpruceSchema.Schema {
878
- id: 'createCalendarEventTypeEmitPayload';
875
+ interface DeleteCalendarEmitTargetSchema extends SpruceSchema.Schema {
876
+ id: 'deleteCalendarEmitTarget';
879
877
  version: 'v2021_05_19';
880
878
  namespace: 'Calendar';
881
879
  name: '';
882
880
  fields: {
883
881
  /** . */
884
- 'name': {
885
- type: 'text';
882
+ 'organizationId': {
883
+ type: 'id';
886
884
  isRequired: true;
887
885
  options: undefined;
888
886
  };
889
887
  /** . */
890
- 'slug': {
891
- type: 'text';
888
+ 'calendarId': {
889
+ type: 'id';
892
890
  isRequired: true;
893
891
  options: undefined;
894
892
  };
893
+ };
894
+ }
895
+ interface DeleteCalendarEmitTargetEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DeleteCalendarEmitTargetSchema> {
896
+ }
897
+ }
898
+ namespace SpruceSchemas.Calendar.v2021_05_19 {
899
+ interface DeleteCalendarEmitTargetAndPayload {
900
+ /** Source. */
901
+ 'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
902
+ 'target': SpruceSchemas.Calendar.v2021_05_19.DeleteCalendarEmitTarget;
903
+ }
904
+ interface DeleteCalendarEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
905
+ id: 'deleteCalendarEmitTargetAndPayload';
906
+ version: 'v2021_05_19';
907
+ namespace: 'Calendar';
908
+ name: '';
909
+ fields: {
910
+ /** Source. */
911
+ 'source': {
912
+ label: 'Source';
913
+ type: 'schema';
914
+ options: {
915
+ schema: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSourceSchema;
916
+ };
917
+ };
895
918
  /** . */
896
- 'viewControllerId': {
919
+ 'target': {
920
+ type: 'schema';
921
+ isRequired: true;
922
+ options: {
923
+ schema: SpruceSchemas.Calendar.v2021_05_19.DeleteCalendarEmitTargetSchema;
924
+ };
925
+ };
926
+ };
927
+ }
928
+ interface DeleteCalendarEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DeleteCalendarEmitTargetAndPayloadSchema> {
929
+ }
930
+ }
931
+ namespace SpruceSchemas.Calendar.v2021_05_19 {
932
+ interface DeleteCalendarResponsePayload {
933
+ 'totalDeleted'?: number | undefined | null;
934
+ }
935
+ interface DeleteCalendarResponsePayloadSchema extends SpruceSchema.Schema {
936
+ id: 'deleteCalendarResponsePayload';
937
+ version: 'v2021_05_19';
938
+ namespace: 'Calendar';
939
+ name: '';
940
+ fields: {
941
+ /** . */
942
+ 'totalDeleted': {
943
+ type: 'number';
944
+ options: undefined;
945
+ };
946
+ };
947
+ }
948
+ interface DeleteCalendarResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DeleteCalendarResponsePayloadSchema> {
949
+ }
950
+ }
951
+ namespace SpruceSchemas.Calendar.v2021_05_19 {
952
+ interface DidCancelCalendarEventEmitTarget {
953
+ 'locationId': string;
954
+ 'calendarEventId': string;
955
+ }
956
+ interface DidCancelCalendarEventEmitTargetSchema extends SpruceSchema.Schema {
957
+ id: 'didCancelCalendarEventEmitTarget';
958
+ version: 'v2021_05_19';
959
+ namespace: 'Calendar';
960
+ name: '';
961
+ fields: {
962
+ /** . */
963
+ 'locationId': {
897
964
  type: 'id';
965
+ isRequired: true;
898
966
  options: undefined;
899
967
  };
900
968
  /** . */
901
- 'lineIcon': {
969
+ 'calendarEventId': {
970
+ type: 'id';
971
+ isRequired: true;
972
+ options: undefined;
973
+ };
974
+ };
975
+ }
976
+ interface DidCancelCalendarEventEmitTargetEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetSchema> {
977
+ }
978
+ }
979
+ namespace SpruceSchemas.Calendar.v2021_05_19 {
980
+ interface DidCancelCalendarEventEmitPayload {
981
+ 'cancelStrategy': ("only-this-one" | "all-going-forward" | "all");
982
+ 'calendarEvent': SpruceSchemas.CalendarUtils.v2021_05_19.CalendarEvent;
983
+ }
984
+ interface DidCancelCalendarEventEmitPayloadSchema extends SpruceSchema.Schema {
985
+ id: 'didCancelCalendarEventEmitPayload';
986
+ version: 'v2021_05_19';
987
+ namespace: 'Calendar';
988
+ name: '';
989
+ fields: {
990
+ /** . */
991
+ 'cancelStrategy': {
902
992
  type: 'select';
993
+ isRequired: true;
903
994
  options: {
904
995
  choices: [{
905
- "value": "sprucebot";
906
- "label": "sprucebot";
907
- }, {
908
- "value": "add-circle";
909
- "label": "add-circle";
910
- }, {
911
- "value": "chevron-left";
912
- "label": "chevron-left";
913
- }, {
914
- "value": "document-text";
915
- "label": "document-text";
916
- }, {
917
- "value": "link-angle";
918
- "label": "link-angle";
919
- }, {
920
- "value": "play-circle";
921
- "label": "play-circle";
922
- }, {
923
- "value": "star";
924
- "label": "star";
925
- }, {
926
- "value": "add-square";
927
- "label": "add-square";
928
- }, {
929
- "value": "chevron-right";
930
- "label": "chevron-right";
931
- }, {
932
- "value": "download-cloud";
933
- "label": "download-cloud";
934
- }, {
935
- "value": "link-flat";
936
- "label": "link-flat";
937
- }, {
938
- "value": "present";
939
- "label": "present";
940
- }, {
941
- "value": "sun";
942
- "label": "sun";
943
- }, {
944
- "value": "add";
945
- "label": "add";
946
- }, {
947
- "value": "chevron-up";
948
- "label": "chevron-up";
949
- }, {
950
- "value": "download";
951
- "label": "download";
952
- }, {
953
- "value": "loader";
954
- "label": "loader";
955
- }, {
956
- "value": "refresh-circle";
957
- "label": "refresh-circle";
958
- }, {
959
- "value": "tag";
960
- "label": "tag";
961
- }, {
962
- "value": "alarm";
963
- "label": "alarm";
964
- }, {
965
- "value": "clipboard";
966
- "label": "clipboard";
967
- }, {
968
- "value": "edit-box";
969
- "label": "edit-box";
970
- }, {
971
- "value": "location-pin";
972
- "label": "location-pin";
973
- }, {
974
- "value": "refresh";
975
- "label": "refresh";
976
- }, {
977
- "value": "time";
978
- "label": "time";
979
- }, {
980
- "value": "arrow-back";
981
- "label": "arrow-back";
982
- }, {
983
- "value": "clock";
984
- "label": "clock";
985
- }, {
986
- "value": "edit-line";
987
- "label": "edit-line";
988
- }, {
989
- "value": "lock";
990
- "label": "lock";
991
- }, {
992
- "value": "repeat";
993
- "label": "repeat";
994
- }, {
995
- "value": "tool";
996
- "label": "tool";
997
- }, {
998
- "value": "arrow-down-circle";
999
- "label": "arrow-down-circle";
1000
- }, {
1001
- "value": "close-circle";
1002
- "label": "close-circle";
1003
- }, {
1004
- "value": "email";
1005
- "label": "email";
1006
- }, {
1007
- "value": "map";
1008
- "label": "map";
1009
- }, {
1010
- "value": "restricted";
1011
- "label": "restricted";
1012
- }, {
1013
- "value": "trending-down";
1014
- "label": "trending-down";
1015
- }, {
1016
- "value": "arrow-down";
1017
- "label": "arrow-down";
1018
- }, {
1019
- "value": "close-square";
1020
- "label": "close-square";
1021
- }, {
1022
- "value": "emoji-happy";
1023
- "label": "emoji-happy";
1024
- }, {
1025
- "value": "message-circle";
1026
- "label": "message-circle";
1027
- }, {
1028
- "value": "rotate";
1029
- "label": "rotate";
1030
- }, {
1031
- "value": "trending-up";
1032
- "label": "trending-up";
1033
- }, {
1034
- "value": "arrow-next";
1035
- "label": "arrow-next";
1036
- }, {
1037
- "value": "close";
1038
- "label": "close";
996
+ "value": "only-this-one";
997
+ "label": "Specific dates";
1039
998
  }, {
1040
- "value": "emoji-sad";
1041
- "label": "emoji-sad";
999
+ "value": "all-going-forward";
1000
+ "label": "This and all going forward";
1042
1001
  }, {
1043
- "value": "message-square";
1044
- "label": "message-square";
1002
+ "value": "all";
1003
+ "label": "All";
1004
+ }];
1005
+ };
1006
+ };
1007
+ /** . */
1008
+ 'calendarEvent': {
1009
+ type: 'schema';
1010
+ isRequired: true;
1011
+ options: {
1012
+ schema: SpruceSchemas.CalendarUtils.v2021_05_19.CalendarEventSchema;
1013
+ };
1014
+ };
1015
+ };
1016
+ }
1017
+ interface DidCancelCalendarEventEmitPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayloadSchema> {
1018
+ }
1019
+ }
1020
+ namespace SpruceSchemas.Calendar.v2021_05_19 {
1021
+ interface DidCancelCalendarEventEmitTargetAndPayload {
1022
+ /** Source. */
1023
+ 'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
1024
+ 'target': SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTarget;
1025
+ 'payload': SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayload;
1026
+ }
1027
+ interface DidCancelCalendarEventEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
1028
+ id: 'didCancelCalendarEventEmitTargetAndPayload';
1029
+ version: 'v2021_05_19';
1030
+ namespace: 'Calendar';
1031
+ name: '';
1032
+ fields: {
1033
+ /** Source. */
1034
+ 'source': {
1035
+ label: 'Source';
1036
+ type: 'schema';
1037
+ options: {
1038
+ schema: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSourceSchema;
1039
+ };
1040
+ };
1041
+ /** . */
1042
+ 'target': {
1043
+ type: 'schema';
1044
+ isRequired: true;
1045
+ options: {
1046
+ schema: SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetSchema;
1047
+ };
1048
+ };
1049
+ /** . */
1050
+ 'payload': {
1051
+ type: 'schema';
1052
+ isRequired: true;
1053
+ options: {
1054
+ schema: SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayloadSchema;
1055
+ };
1056
+ };
1057
+ };
1058
+ }
1059
+ interface DidCancelCalendarEventEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetAndPayloadSchema> {
1060
+ }
1061
+ }
1062
+ namespace SpruceSchemas.Calendar.v2021_05_19 {
1063
+ interface DidUpdateCalendarEventEmitTarget {
1064
+ 'locationId': string;
1065
+ }
1066
+ interface DidUpdateCalendarEventEmitTargetSchema extends SpruceSchema.Schema {
1067
+ id: 'didUpdateCalendarEventEmitTarget';
1068
+ version: 'v2021_05_19';
1069
+ namespace: 'Calendar';
1070
+ name: '';
1071
+ fields: {
1072
+ /** . */
1073
+ 'locationId': {
1074
+ type: 'id';
1075
+ isRequired: true;
1076
+ options: undefined;
1077
+ };
1078
+ };
1079
+ }
1080
+ interface DidUpdateCalendarEventEmitTargetEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidUpdateCalendarEventEmitTargetSchema> {
1081
+ }
1082
+ }
1083
+ namespace SpruceSchemas.Calendar.v2021_05_19 {
1084
+ interface DidUpdateCalendarEventEmitPayload {
1085
+ 'calendarEvent': SpruceSchemas.CalendarUtils.v2021_05_19.CalendarEvent;
1086
+ }
1087
+ interface DidUpdateCalendarEventEmitPayloadSchema extends SpruceSchema.Schema {
1088
+ id: 'didUpdateCalendarEventEmitPayload';
1089
+ version: 'v2021_05_19';
1090
+ namespace: 'Calendar';
1091
+ name: '';
1092
+ fields: {
1093
+ /** . */
1094
+ 'calendarEvent': {
1095
+ type: 'schema';
1096
+ isRequired: true;
1097
+ options: {
1098
+ schema: SpruceSchemas.CalendarUtils.v2021_05_19.CalendarEventSchema;
1099
+ };
1100
+ };
1101
+ };
1102
+ }
1103
+ interface DidUpdateCalendarEventEmitPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidUpdateCalendarEventEmitPayloadSchema> {
1104
+ }
1105
+ }
1106
+ namespace SpruceSchemas.Calendar.v2021_05_19 {
1107
+ interface DidUpdateCalendarEventEmitTargetAndPayload {
1108
+ /** Source. */
1109
+ 'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
1110
+ 'target': SpruceSchemas.Calendar.v2021_05_19.DidUpdateCalendarEventEmitTarget;
1111
+ 'payload': SpruceSchemas.Calendar.v2021_05_19.DidUpdateCalendarEventEmitPayload;
1112
+ }
1113
+ interface DidUpdateCalendarEventEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
1114
+ id: 'didUpdateCalendarEventEmitTargetAndPayload';
1115
+ version: 'v2021_05_19';
1116
+ namespace: 'Calendar';
1117
+ name: '';
1118
+ fields: {
1119
+ /** Source. */
1120
+ 'source': {
1121
+ label: 'Source';
1122
+ type: 'schema';
1123
+ options: {
1124
+ schema: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSourceSchema;
1125
+ };
1126
+ };
1127
+ /** . */
1128
+ 'target': {
1129
+ type: 'schema';
1130
+ isRequired: true;
1131
+ options: {
1132
+ schema: SpruceSchemas.Calendar.v2021_05_19.DidUpdateCalendarEventEmitTargetSchema;
1133
+ };
1134
+ };
1135
+ /** . */
1136
+ 'payload': {
1137
+ type: 'schema';
1138
+ isRequired: true;
1139
+ options: {
1140
+ schema: SpruceSchemas.Calendar.v2021_05_19.DidUpdateCalendarEventEmitPayloadSchema;
1141
+ };
1142
+ };
1143
+ };
1144
+ }
1145
+ interface DidUpdateCalendarEventEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidUpdateCalendarEventEmitTargetAndPayloadSchema> {
1146
+ }
1147
+ }
1148
+ namespace SpruceSchemas.Calendar.v2021_05_19 {
1149
+ interface CreateCalendarEmitTarget {
1150
+ 'organizationId': string;
1151
+ }
1152
+ interface CreateCalendarEmitTargetSchema extends SpruceSchema.Schema {
1153
+ id: 'createCalendarEmitTarget';
1154
+ version: 'v2021_05_19';
1155
+ namespace: 'Calendar';
1156
+ name: '';
1157
+ fields: {
1158
+ /** . */
1159
+ 'organizationId': {
1160
+ type: 'id';
1161
+ isRequired: true;
1162
+ options: undefined;
1163
+ };
1164
+ };
1165
+ }
1166
+ interface CreateCalendarEmitTargetEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.CreateCalendarEmitTargetSchema> {
1167
+ }
1168
+ }
1169
+ namespace SpruceSchemas.Calendar.v2021_05_19 {
1170
+ interface CreateCalendarEmitPayload {
1171
+ 'slug': string;
1172
+ 'title': string;
1173
+ 'eventTypes'?: string[] | undefined | null;
1174
+ 'availableTimeSlotBehavior'?: ("include" | "exclude") | undefined | null;
1175
+ }
1176
+ interface CreateCalendarEmitPayloadSchema extends SpruceSchema.Schema {
1177
+ id: 'createCalendarEmitPayload';
1178
+ version: 'v2021_05_19';
1179
+ namespace: 'Calendar';
1180
+ name: '';
1181
+ fields: {
1182
+ /** . */
1183
+ 'slug': {
1184
+ type: 'id';
1185
+ isRequired: true;
1186
+ options: undefined;
1187
+ };
1188
+ /** . */
1189
+ 'title': {
1190
+ type: 'text';
1191
+ isRequired: true;
1192
+ options: undefined;
1193
+ };
1194
+ /** . */
1195
+ 'eventTypes': {
1196
+ type: 'text';
1197
+ isArray: true;
1198
+ minArrayLength: 0;
1199
+ options: undefined;
1200
+ };
1201
+ /** . */
1202
+ 'availableTimeSlotBehavior': {
1203
+ type: 'select';
1204
+ options: {
1205
+ choices: [{
1206
+ "value": "include";
1207
+ "label": "Include";
1208
+ }, {
1209
+ "value": "exclude";
1210
+ "label": "Exclude";
1211
+ }];
1212
+ };
1213
+ };
1214
+ };
1215
+ }
1216
+ interface CreateCalendarEmitPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.CreateCalendarEmitPayloadSchema> {
1217
+ }
1218
+ }
1219
+ namespace SpruceSchemas.Calendar.v2021_05_19 {
1220
+ interface CreateCalendarEmitTargetAndPayload {
1221
+ /** Source. */
1222
+ 'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
1223
+ 'target': SpruceSchemas.Calendar.v2021_05_19.CreateCalendarEmitTarget;
1224
+ 'payload': SpruceSchemas.Calendar.v2021_05_19.CreateCalendarEmitPayload;
1225
+ }
1226
+ interface CreateCalendarEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
1227
+ id: 'createCalendarEmitTargetAndPayload';
1228
+ version: 'v2021_05_19';
1229
+ namespace: 'Calendar';
1230
+ name: '';
1231
+ fields: {
1232
+ /** Source. */
1233
+ 'source': {
1234
+ label: 'Source';
1235
+ type: 'schema';
1236
+ options: {
1237
+ schema: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSourceSchema;
1238
+ };
1239
+ };
1240
+ /** . */
1241
+ 'target': {
1242
+ type: 'schema';
1243
+ isRequired: true;
1244
+ options: {
1245
+ schema: SpruceSchemas.Calendar.v2021_05_19.CreateCalendarEmitTargetSchema;
1246
+ };
1247
+ };
1248
+ /** . */
1249
+ 'payload': {
1250
+ type: 'schema';
1251
+ isRequired: true;
1252
+ options: {
1253
+ schema: SpruceSchemas.Calendar.v2021_05_19.CreateCalendarEmitPayloadSchema;
1254
+ };
1255
+ };
1256
+ };
1257
+ }
1258
+ interface CreateCalendarEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.CreateCalendarEmitTargetAndPayloadSchema> {
1259
+ }
1260
+ }
1261
+ namespace SpruceSchemas.Calendar.v2021_05_19 {
1262
+ interface CreateCalendarResponsePayload {
1263
+ 'calendar': SpruceSchemas.Calendar.v2021_05_19.Calendar;
1264
+ }
1265
+ interface CreateCalendarResponsePayloadSchema extends SpruceSchema.Schema {
1266
+ id: 'createCalendarResponsePayload';
1267
+ version: 'v2021_05_19';
1268
+ namespace: 'Calendar';
1269
+ name: '';
1270
+ fields: {
1271
+ /** . */
1272
+ 'calendar': {
1273
+ type: 'schema';
1274
+ isRequired: true;
1275
+ options: {
1276
+ schema: SpruceSchemas.Calendar.v2021_05_19.CalendarSchema;
1277
+ };
1278
+ };
1279
+ };
1280
+ }
1281
+ interface CreateCalendarResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.CreateCalendarResponsePayloadSchema> {
1282
+ }
1283
+ }
1284
+ namespace SpruceSchemas.Calendar.v2021_05_19 {
1285
+ interface CreateCalendarEventTypeEmitPayload {
1286
+ 'name': string;
1287
+ 'slug': string;
1288
+ 'viewControllerId'?: string | undefined | null;
1289
+ 'lineIcon'?: ("add-circle" | "add-square" | "add" | "alarm" | "arrow-back" | "arrow-down-circle" | "arrow-down" | "arrow-next" | "arrow-up-circle" | "arrow-up" | "attachment" | "award-badge" | "binoculars" | "bolt" | "book-open" | "book" | "bookmark" | "calendar-add" | "calendar" | "camera" | "cellphone" | "checkmark" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clipboard" | "clock" | "close-circle" | "close-square" | "close" | "code" | "coffee" | "command" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "crop" | "delete" | "document-blank" | "document-new" | "document-text" | "download-cloud" | "download" | "edit-box" | "edit-line" | "email" | "emoji-happy" | "emoji-sad" | "external-link" | "fav-heart" | "flag" | "flip-01" | "flip-02" | "folder" | "globe" | "hash-tag" | "headphones" | "help-buoy" | "help-circle" | "home" | "info" | "jump" | "layers" | "link-angle" | "link-flat" | "loader" | "location-pin" | "lock" | "map" | "message-circle" | "message-square" | "mic-off" | "mic-on" | "minus-circle" | "minus-square" | "money-sign" | "more-horizontal" | "more-vertical" | "notification-off" | "notification-on" | "object" | "pause-circle" | "phone-unavailable" | "phone" | "photo" | "picked" | "play-circle" | "present" | "refresh-circle" | "refresh" | "repeat" | "restricted" | "rotate" | "search-no" | "search" | "selector-checked" | "selector-circle-filled" | "selector-circle" | "send" | "settings-filled" | "settings" | "share" | "shopping-bag" | "shopping-cart" | "sort-filter-down" | "sort-filter-up" | "sound-off" | "sound-on" | "sprucebot" | "star-filled" | "star" | "sun" | "tag" | "time" | "tool" | "trending-down" | "trending-up" | "triangle" | "unlock" | "upload-cloud" | "upload" | "user-add" | "user-delete" | "user" | "users" | "video-off" | "video" | "warning" | "wifi" | "zoom-in" | "zoom-out") | undefined | null;
1290
+ }
1291
+ interface CreateCalendarEventTypeEmitPayloadSchema extends SpruceSchema.Schema {
1292
+ id: 'createCalendarEventTypeEmitPayload';
1293
+ version: 'v2021_05_19';
1294
+ namespace: 'Calendar';
1295
+ name: '';
1296
+ fields: {
1297
+ /** . */
1298
+ 'name': {
1299
+ type: 'text';
1300
+ isRequired: true;
1301
+ options: undefined;
1302
+ };
1303
+ /** . */
1304
+ 'slug': {
1305
+ type: 'text';
1306
+ isRequired: true;
1307
+ options: undefined;
1308
+ };
1309
+ /** . */
1310
+ 'viewControllerId': {
1311
+ type: 'id';
1312
+ options: undefined;
1313
+ };
1314
+ /** . */
1315
+ 'lineIcon': {
1316
+ type: 'select';
1317
+ options: {
1318
+ choices: [{
1319
+ "value": "add-circle";
1320
+ "label": "add-circle";
1045
1321
  }, {
1046
- "value": "search-no";
1047
- "label": "search-no";
1322
+ "value": "add-square";
1323
+ "label": "add-square";
1048
1324
  }, {
1049
- "value": "triangle";
1050
- "label": "triangle";
1325
+ "value": "add";
1326
+ "label": "add";
1051
1327
  }, {
1052
- "value": "arrow-up-circle";
1053
- "label": "arrow-up-circle";
1328
+ "value": "alarm";
1329
+ "label": "alarm";
1054
1330
  }, {
1055
- "value": "code";
1056
- "label": "code";
1331
+ "value": "arrow-back";
1332
+ "label": "arrow-back";
1057
1333
  }, {
1058
- "value": "external-link";
1059
- "label": "external-link";
1334
+ "value": "arrow-down-circle";
1335
+ "label": "arrow-down-circle";
1060
1336
  }, {
1061
- "value": "mic-off";
1062
- "label": "mic-off";
1337
+ "value": "arrow-down";
1338
+ "label": "arrow-down";
1063
1339
  }, {
1064
- "value": "search";
1065
- "label": "search";
1340
+ "value": "arrow-next";
1341
+ "label": "arrow-next";
1066
1342
  }, {
1067
- "value": "unlock";
1068
- "label": "unlock";
1343
+ "value": "arrow-up-circle";
1344
+ "label": "arrow-up-circle";
1069
1345
  }, {
1070
1346
  "value": "arrow-up";
1071
1347
  "label": "arrow-up";
1072
- }, {
1073
- "value": "coffee";
1074
- "label": "coffee";
1075
- }, {
1076
- "value": "fav-heart";
1077
- "label": "fav-heart";
1078
- }, {
1079
- "value": "mic-on";
1080
- "label": "mic-on";
1081
- }, {
1082
- "value": "selector-checked";
1083
- "label": "selector-checked";
1084
- }, {
1085
- "value": "upload-cloud";
1086
- "label": "upload-cloud";
1087
1348
  }, {
1088
1349
  "value": "attachment";
1089
1350
  "label": "attachment";
1090
1351
  }, {
1091
- "value": "command";
1092
- "label": "command";
1352
+ "value": "award-badge";
1353
+ "label": "award-badge";
1093
1354
  }, {
1094
- "value": "flag";
1095
- "label": "flag";
1355
+ "value": "binoculars";
1356
+ "label": "binoculars";
1096
1357
  }, {
1097
- "value": "minus-circle";
1098
- "label": "minus-circle";
1358
+ "value": "bolt";
1359
+ "label": "bolt";
1099
1360
  }, {
1100
- "value": "selector-circle-filled";
1101
- "label": "selector-circle-filled";
1361
+ "value": "book-open";
1362
+ "label": "book-open";
1102
1363
  }, {
1103
- "value": "upload";
1104
- "label": "upload";
1364
+ "value": "book";
1365
+ "label": "book";
1105
1366
  }, {
1106
- "value": "award-badge";
1107
- "label": "award-badge";
1367
+ "value": "bookmark";
1368
+ "label": "bookmark";
1108
1369
  }, {
1109
- "value": "corner-down-left";
1110
- "label": "corner-down-left";
1370
+ "value": "calendar-add";
1371
+ "label": "calendar-add";
1111
1372
  }, {
1112
- "value": "flip-01";
1113
- "label": "flip-01";
1373
+ "value": "calendar";
1374
+ "label": "calendar";
1114
1375
  }, {
1115
- "value": "minus-square";
1116
- "label": "minus-square";
1376
+ "value": "camera";
1377
+ "label": "camera";
1117
1378
  }, {
1118
- "value": "selector-circle";
1119
- "label": "selector-circle";
1379
+ "value": "cellphone";
1380
+ "label": "cellphone";
1120
1381
  }, {
1121
- "value": "user-add";
1122
- "label": "user-add";
1382
+ "value": "checkmark";
1383
+ "label": "checkmark";
1123
1384
  }, {
1124
- "value": "binoculars";
1125
- "label": "binoculars";
1385
+ "value": "chevron-down";
1386
+ "label": "chevron-down";
1126
1387
  }, {
1127
- "value": "corner-down-right";
1128
- "label": "corner-down-right";
1388
+ "value": "chevron-left";
1389
+ "label": "chevron-left";
1129
1390
  }, {
1130
- "value": "flip-02";
1131
- "label": "flip-02";
1391
+ "value": "chevron-right";
1392
+ "label": "chevron-right";
1132
1393
  }, {
1133
- "value": "money-sign";
1134
- "label": "money-sign";
1394
+ "value": "chevron-up";
1395
+ "label": "chevron-up";
1135
1396
  }, {
1136
- "value": "send";
1137
- "label": "send";
1397
+ "value": "clipboard";
1398
+ "label": "clipboard";
1138
1399
  }, {
1139
- "value": "user-delete";
1140
- "label": "user-delete";
1400
+ "value": "clock";
1401
+ "label": "clock";
1141
1402
  }, {
1142
- "value": "bolt";
1143
- "label": "bolt";
1403
+ "value": "close-circle";
1404
+ "label": "close-circle";
1144
1405
  }, {
1145
- "value": "corner-left-down";
1146
- "label": "corner-left-down";
1406
+ "value": "close-square";
1407
+ "label": "close-square";
1147
1408
  }, {
1148
- "value": "folder";
1149
- "label": "folder";
1409
+ "value": "close";
1410
+ "label": "close";
1150
1411
  }, {
1151
- "value": "more-horizontal";
1152
- "label": "more-horizontal";
1412
+ "value": "code";
1413
+ "label": "code";
1153
1414
  }, {
1154
- "value": "settings-filled";
1155
- "label": "settings-filled";
1415
+ "value": "coffee";
1416
+ "label": "coffee";
1156
1417
  }, {
1157
- "value": "user";
1158
- "label": "user";
1418
+ "value": "command";
1419
+ "label": "command";
1159
1420
  }, {
1160
- "value": "book-open";
1161
- "label": "book-open";
1421
+ "value": "corner-down-left";
1422
+ "label": "corner-down-left";
1423
+ }, {
1424
+ "value": "corner-down-right";
1425
+ "label": "corner-down-right";
1426
+ }, {
1427
+ "value": "corner-left-down";
1428
+ "label": "corner-left-down";
1162
1429
  }, {
1163
1430
  "value": "corner-left-up";
1164
1431
  "label": "corner-left-up";
1165
1432
  }, {
1166
- "value": "globe";
1167
- "label": "globe";
1433
+ "value": "corner-right-down";
1434
+ "label": "corner-right-down";
1168
1435
  }, {
1169
- "value": "more-vertical";
1170
- "label": "more-vertical";
1436
+ "value": "corner-right-up";
1437
+ "label": "corner-right-up";
1171
1438
  }, {
1172
- "value": "settings";
1173
- "label": "settings";
1439
+ "value": "corner-up-left";
1440
+ "label": "corner-up-left";
1174
1441
  }, {
1175
- "value": "users";
1176
- "label": "users";
1442
+ "value": "corner-up-right";
1443
+ "label": "corner-up-right";
1177
1444
  }, {
1178
- "value": "book";
1179
- "label": "book";
1445
+ "value": "crop";
1446
+ "label": "crop";
1180
1447
  }, {
1181
- "value": "corner-right-down";
1182
- "label": "corner-right-down";
1448
+ "value": "delete";
1449
+ "label": "delete";
1183
1450
  }, {
1184
- "value": "hash-tag";
1185
- "label": "hash-tag";
1451
+ "value": "document-blank";
1452
+ "label": "document-blank";
1186
1453
  }, {
1187
- "value": "notification-off";
1188
- "label": "notification-off";
1454
+ "value": "document-new";
1455
+ "label": "document-new";
1189
1456
  }, {
1190
- "value": "share";
1191
- "label": "share";
1457
+ "value": "document-text";
1458
+ "label": "document-text";
1192
1459
  }, {
1193
- "value": "video-off";
1194
- "label": "video-off";
1460
+ "value": "download-cloud";
1461
+ "label": "download-cloud";
1195
1462
  }, {
1196
- "value": "bookmark";
1197
- "label": "bookmark";
1463
+ "value": "download";
1464
+ "label": "download";
1198
1465
  }, {
1199
- "value": "corner-right-up";
1200
- "label": "corner-right-up";
1466
+ "value": "edit-box";
1467
+ "label": "edit-box";
1201
1468
  }, {
1202
- "value": "headphones";
1203
- "label": "headphones";
1469
+ "value": "edit-line";
1470
+ "label": "edit-line";
1204
1471
  }, {
1205
- "value": "notification-on";
1206
- "label": "notification-on";
1472
+ "value": "email";
1473
+ "label": "email";
1207
1474
  }, {
1208
- "value": "shopping-bag";
1209
- "label": "shopping-bag";
1475
+ "value": "emoji-happy";
1476
+ "label": "emoji-happy";
1210
1477
  }, {
1211
- "value": "video";
1212
- "label": "video";
1478
+ "value": "emoji-sad";
1479
+ "label": "emoji-sad";
1480
+ }, {
1481
+ "value": "external-link";
1482
+ "label": "external-link";
1483
+ }, {
1484
+ "value": "fav-heart";
1485
+ "label": "fav-heart";
1213
1486
  }, {
1214
- "value": "calendar-add";
1215
- "label": "calendar-add";
1487
+ "value": "flag";
1488
+ "label": "flag";
1216
1489
  }, {
1217
- "value": "corner-up-left";
1218
- "label": "corner-up-left";
1490
+ "value": "flip-01";
1491
+ "label": "flip-01";
1219
1492
  }, {
1220
- "value": "help-buoy";
1221
- "label": "help-buoy";
1493
+ "value": "flip-02";
1494
+ "label": "flip-02";
1222
1495
  }, {
1223
- "value": "object";
1224
- "label": "object";
1496
+ "value": "folder";
1497
+ "label": "folder";
1225
1498
  }, {
1226
- "value": "shopping-cart";
1227
- "label": "shopping-cart";
1499
+ "value": "globe";
1500
+ "label": "globe";
1228
1501
  }, {
1229
- "value": "warning";
1230
- "label": "warning";
1502
+ "value": "hash-tag";
1503
+ "label": "hash-tag";
1231
1504
  }, {
1232
- "value": "calendar";
1233
- "label": "calendar";
1505
+ "value": "headphones";
1506
+ "label": "headphones";
1234
1507
  }, {
1235
- "value": "corner-up-right";
1236
- "label": "corner-up-right";
1508
+ "value": "help-buoy";
1509
+ "label": "help-buoy";
1237
1510
  }, {
1238
1511
  "value": "help-circle";
1239
1512
  "label": "help-circle";
1240
1513
  }, {
1241
- "value": "pause-circle";
1242
- "label": "pause-circle";
1243
- }, {
1244
- "value": "sort-filter-down";
1245
- "label": "sort-filter-down";
1514
+ "value": "home";
1515
+ "label": "home";
1246
1516
  }, {
1247
- "value": "wifi";
1248
- "label": "wifi";
1517
+ "value": "info";
1518
+ "label": "info";
1249
1519
  }, {
1250
- "value": "camera";
1251
- "label": "camera";
1520
+ "value": "jump";
1521
+ "label": "jump";
1252
1522
  }, {
1253
- "value": "crop";
1254
- "label": "crop";
1523
+ "value": "layers";
1524
+ "label": "layers";
1255
1525
  }, {
1256
- "value": "home";
1257
- "label": "home";
1526
+ "value": "link-angle";
1527
+ "label": "link-angle";
1258
1528
  }, {
1259
- "value": "phone-unavailable";
1260
- "label": "phone-unavailable";
1529
+ "value": "link-flat";
1530
+ "label": "link-flat";
1261
1531
  }, {
1262
- "value": "sort-filter-up";
1263
- "label": "sort-filter-up";
1532
+ "value": "loader";
1533
+ "label": "loader";
1264
1534
  }, {
1265
- "value": "zoom-in";
1266
- "label": "zoom-in";
1535
+ "value": "location-pin";
1536
+ "label": "location-pin";
1267
1537
  }, {
1268
- "value": "cellphone";
1269
- "label": "cellphone";
1538
+ "value": "lock";
1539
+ "label": "lock";
1270
1540
  }, {
1271
- "value": "delete";
1272
- "label": "delete";
1541
+ "value": "map";
1542
+ "label": "map";
1273
1543
  }, {
1274
- "value": "info";
1275
- "label": "info";
1544
+ "value": "message-circle";
1545
+ "label": "message-circle";
1276
1546
  }, {
1277
- "value": "phone";
1278
- "label": "phone";
1547
+ "value": "message-square";
1548
+ "label": "message-square";
1279
1549
  }, {
1280
- "value": "sound-off";
1281
- "label": "sound-off";
1550
+ "value": "mic-off";
1551
+ "label": "mic-off";
1282
1552
  }, {
1283
- "value": "zoom-out";
1284
- "label": "zoom-out";
1553
+ "value": "mic-on";
1554
+ "label": "mic-on";
1285
1555
  }, {
1286
- "value": "checkmark";
1287
- "label": "checkmark";
1556
+ "value": "minus-circle";
1557
+ "label": "minus-circle";
1288
1558
  }, {
1289
- "value": "document-blank";
1290
- "label": "document-blank";
1559
+ "value": "minus-square";
1560
+ "label": "minus-square";
1291
1561
  }, {
1292
- "value": "jump";
1293
- "label": "jump";
1562
+ "value": "money-sign";
1563
+ "label": "money-sign";
1294
1564
  }, {
1295
- "value": "photo";
1296
- "label": "photo";
1565
+ "value": "more-horizontal";
1566
+ "label": "more-horizontal";
1297
1567
  }, {
1298
- "value": "sound-on";
1299
- "label": "sound-on";
1568
+ "value": "more-vertical";
1569
+ "label": "more-vertical";
1300
1570
  }, {
1301
- "value": "chevron-down";
1302
- "label": "chevron-down";
1571
+ "value": "notification-off";
1572
+ "label": "notification-off";
1303
1573
  }, {
1304
- "value": "document-new";
1305
- "label": "document-new";
1574
+ "value": "notification-on";
1575
+ "label": "notification-on";
1306
1576
  }, {
1307
- "value": "layers";
1308
- "label": "layers";
1577
+ "value": "object";
1578
+ "label": "object";
1309
1579
  }, {
1310
- "value": "picked";
1311
- "label": "picked";
1580
+ "value": "pause-circle";
1581
+ "label": "pause-circle";
1312
1582
  }, {
1313
- "value": "star-filled";
1314
- "label": "star-filled";
1315
- }];
1316
- };
1317
- };
1318
- };
1319
- }
1320
- interface CreateCalendarEventTypeEmitPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.CreateCalendarEventTypeEmitPayloadSchema> {
1321
- }
1322
- }
1323
- namespace SpruceSchemas.Calendar.v2021_05_19 {
1324
- interface CreateCalendarEventTypeEmitTargetAndPayload {
1325
- /** Source. */
1326
- 'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
1327
- 'payload': SpruceSchemas.Calendar.v2021_05_19.CreateCalendarEventTypeEmitPayload;
1328
- }
1329
- interface CreateCalendarEventTypeEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
1330
- id: 'createCalendarEventTypeEmitTargetAndPayload';
1331
- version: 'v2021_05_19';
1332
- namespace: 'Calendar';
1333
- name: '';
1334
- fields: {
1335
- /** Source. */
1336
- 'source': {
1337
- label: 'Source';
1338
- type: 'schema';
1339
- options: {
1340
- schema: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSourceSchema;
1341
- };
1342
- };
1343
- /** . */
1344
- 'payload': {
1345
- type: 'schema';
1346
- isRequired: true;
1347
- options: {
1348
- schema: SpruceSchemas.Calendar.v2021_05_19.CreateCalendarEventTypeEmitPayloadSchema;
1349
- };
1350
- };
1351
- };
1352
- }
1353
- interface CreateCalendarEventTypeEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.CreateCalendarEventTypeEmitTargetAndPayloadSchema> {
1354
- }
1355
- }
1356
- namespace SpruceSchemas.Calendar.v2021_05_19 {
1357
- interface CreateCalendarEventTypeResponsePayload {
1358
- 'calendarEventType': SpruceSchemas.Calendar.v2021_05_19.CalendarEventType;
1359
- }
1360
- interface CreateCalendarEventTypeResponsePayloadSchema extends SpruceSchema.Schema {
1361
- id: 'createCalendarEventTypeResponsePayload';
1362
- version: 'v2021_05_19';
1363
- namespace: 'Calendar';
1364
- name: '';
1365
- fields: {
1366
- /** . */
1367
- 'calendarEventType': {
1368
- type: 'schema';
1369
- isRequired: true;
1370
- options: {
1371
- schema: SpruceSchemas.Calendar.v2021_05_19.CalendarEventTypeSchema;
1372
- };
1373
- };
1374
- };
1375
- }
1376
- interface CreateCalendarEventTypeResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.CreateCalendarEventTypeResponsePayloadSchema> {
1377
- }
1378
- }
1379
- namespace SpruceSchemas.Calendar.v2021_05_19 {
1380
- interface CreateCalendarEmitTarget {
1381
- 'organizationId': string;
1382
- }
1383
- interface CreateCalendarEmitTargetSchema extends SpruceSchema.Schema {
1384
- id: 'createCalendarEmitTarget';
1385
- version: 'v2021_05_19';
1386
- namespace: 'Calendar';
1387
- name: '';
1388
- fields: {
1389
- /** . */
1390
- 'organizationId': {
1391
- type: 'id';
1392
- isRequired: true;
1393
- options: undefined;
1394
- };
1395
- };
1396
- }
1397
- interface CreateCalendarEmitTargetEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.CreateCalendarEmitTargetSchema> {
1398
- }
1399
- }
1400
- namespace SpruceSchemas.Calendar.v2021_05_19 {
1401
- interface CreateCalendarEmitPayload {
1402
- 'slug': string;
1403
- 'title': string;
1404
- 'eventTypes'?: string[] | undefined | null;
1405
- 'availableTimeSlotBehavior'?: ("include" | "exclude") | undefined | null;
1406
- }
1407
- interface CreateCalendarEmitPayloadSchema extends SpruceSchema.Schema {
1408
- id: 'createCalendarEmitPayload';
1409
- version: 'v2021_05_19';
1410
- namespace: 'Calendar';
1411
- name: '';
1412
- fields: {
1413
- /** . */
1414
- 'slug': {
1415
- type: 'id';
1416
- isRequired: true;
1417
- options: undefined;
1418
- };
1419
- /** . */
1420
- 'title': {
1421
- type: 'text';
1422
- isRequired: true;
1423
- options: undefined;
1424
- };
1425
- /** . */
1426
- 'eventTypes': {
1427
- type: 'text';
1428
- isArray: true;
1429
- minArrayLength: 0;
1430
- options: undefined;
1431
- };
1432
- /** . */
1433
- 'availableTimeSlotBehavior': {
1434
- type: 'select';
1435
- options: {
1436
- choices: [{
1437
- "value": "include";
1438
- "label": "Include";
1583
+ "value": "phone-unavailable";
1584
+ "label": "phone-unavailable";
1439
1585
  }, {
1440
- "value": "exclude";
1441
- "label": "Exclude";
1442
- }];
1443
- };
1444
- };
1445
- };
1446
- }
1447
- interface CreateCalendarEmitPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.CreateCalendarEmitPayloadSchema> {
1448
- }
1449
- }
1450
- namespace SpruceSchemas.Calendar.v2021_05_19 {
1451
- interface CreateCalendarEmitTargetAndPayload {
1452
- /** Source. */
1453
- 'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
1454
- 'target': SpruceSchemas.Calendar.v2021_05_19.CreateCalendarEmitTarget;
1455
- 'payload': SpruceSchemas.Calendar.v2021_05_19.CreateCalendarEmitPayload;
1456
- }
1457
- interface CreateCalendarEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
1458
- id: 'createCalendarEmitTargetAndPayload';
1459
- version: 'v2021_05_19';
1460
- namespace: 'Calendar';
1461
- name: '';
1462
- fields: {
1463
- /** Source. */
1464
- 'source': {
1465
- label: 'Source';
1466
- type: 'schema';
1467
- options: {
1468
- schema: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSourceSchema;
1469
- };
1470
- };
1471
- /** . */
1472
- 'target': {
1473
- type: 'schema';
1474
- isRequired: true;
1475
- options: {
1476
- schema: SpruceSchemas.Calendar.v2021_05_19.CreateCalendarEmitTargetSchema;
1477
- };
1478
- };
1479
- /** . */
1480
- 'payload': {
1481
- type: 'schema';
1482
- isRequired: true;
1483
- options: {
1484
- schema: SpruceSchemas.Calendar.v2021_05_19.CreateCalendarEmitPayloadSchema;
1485
- };
1486
- };
1487
- };
1488
- }
1489
- interface CreateCalendarEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.CreateCalendarEmitTargetAndPayloadSchema> {
1490
- }
1491
- }
1492
- namespace SpruceSchemas.Calendar.v2021_05_19 {
1493
- interface CreateCalendarResponsePayload {
1494
- 'calendar': SpruceSchemas.Calendar.v2021_05_19.Calendar;
1495
- }
1496
- interface CreateCalendarResponsePayloadSchema extends SpruceSchema.Schema {
1497
- id: 'createCalendarResponsePayload';
1498
- version: 'v2021_05_19';
1499
- namespace: 'Calendar';
1500
- name: '';
1501
- fields: {
1502
- /** . */
1503
- 'calendar': {
1504
- type: 'schema';
1505
- isRequired: true;
1506
- options: {
1507
- schema: SpruceSchemas.Calendar.v2021_05_19.CalendarSchema;
1508
- };
1509
- };
1510
- };
1511
- }
1512
- interface CreateCalendarResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.CreateCalendarResponsePayloadSchema> {
1513
- }
1514
- }
1515
- namespace SpruceSchemas.Calendar.v2021_05_19 {
1516
- interface DeleteCalendarEmitTarget {
1517
- 'organizationId': string;
1518
- 'calendarId': string;
1519
- }
1520
- interface DeleteCalendarEmitTargetSchema extends SpruceSchema.Schema {
1521
- id: 'deleteCalendarEmitTarget';
1522
- version: 'v2021_05_19';
1523
- namespace: 'Calendar';
1524
- name: '';
1525
- fields: {
1526
- /** . */
1527
- 'organizationId': {
1528
- type: 'id';
1529
- isRequired: true;
1530
- options: undefined;
1531
- };
1532
- /** . */
1533
- 'calendarId': {
1534
- type: 'id';
1535
- isRequired: true;
1536
- options: undefined;
1537
- };
1538
- };
1539
- }
1540
- interface DeleteCalendarEmitTargetEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DeleteCalendarEmitTargetSchema> {
1541
- }
1542
- }
1543
- namespace SpruceSchemas.Calendar.v2021_05_19 {
1544
- interface DeleteCalendarEmitTargetAndPayload {
1545
- /** Source. */
1546
- 'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
1547
- 'target': SpruceSchemas.Calendar.v2021_05_19.DeleteCalendarEmitTarget;
1548
- }
1549
- interface DeleteCalendarEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
1550
- id: 'deleteCalendarEmitTargetAndPayload';
1551
- version: 'v2021_05_19';
1552
- namespace: 'Calendar';
1553
- name: '';
1554
- fields: {
1555
- /** Source. */
1556
- 'source': {
1557
- label: 'Source';
1558
- type: 'schema';
1559
- options: {
1560
- schema: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSourceSchema;
1561
- };
1562
- };
1563
- /** . */
1564
- 'target': {
1565
- type: 'schema';
1566
- isRequired: true;
1567
- options: {
1568
- schema: SpruceSchemas.Calendar.v2021_05_19.DeleteCalendarEmitTargetSchema;
1569
- };
1570
- };
1571
- };
1572
- }
1573
- interface DeleteCalendarEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DeleteCalendarEmitTargetAndPayloadSchema> {
1574
- }
1575
- }
1576
- namespace SpruceSchemas.Calendar.v2021_05_19 {
1577
- interface DeleteCalendarResponsePayload {
1578
- 'totalDeleted'?: number | undefined | null;
1579
- }
1580
- interface DeleteCalendarResponsePayloadSchema extends SpruceSchema.Schema {
1581
- id: 'deleteCalendarResponsePayload';
1582
- version: 'v2021_05_19';
1583
- namespace: 'Calendar';
1584
- name: '';
1585
- fields: {
1586
- /** . */
1587
- 'totalDeleted': {
1588
- type: 'number';
1589
- options: undefined;
1590
- };
1591
- };
1592
- }
1593
- interface DeleteCalendarResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DeleteCalendarResponsePayloadSchema> {
1594
- }
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";
1586
+ "value": "phone";
1587
+ "label": "phone";
1588
+ }, {
1589
+ "value": "photo";
1590
+ "label": "photo";
1591
+ }, {
1592
+ "value": "picked";
1593
+ "label": "picked";
1594
+ }, {
1595
+ "value": "play-circle";
1596
+ "label": "play-circle";
1597
+ }, {
1598
+ "value": "present";
1599
+ "label": "present";
1600
+ }, {
1601
+ "value": "refresh-circle";
1602
+ "label": "refresh-circle";
1603
+ }, {
1604
+ "value": "refresh";
1605
+ "label": "refresh";
1606
+ }, {
1607
+ "value": "repeat";
1608
+ "label": "repeat";
1609
+ }, {
1610
+ "value": "restricted";
1611
+ "label": "restricted";
1612
+ }, {
1613
+ "value": "rotate";
1614
+ "label": "rotate";
1615
+ }, {
1616
+ "value": "search-no";
1617
+ "label": "search-no";
1618
+ }, {
1619
+ "value": "search";
1620
+ "label": "search";
1621
+ }, {
1622
+ "value": "selector-checked";
1623
+ "label": "selector-checked";
1624
+ }, {
1625
+ "value": "selector-circle-filled";
1626
+ "label": "selector-circle-filled";
1627
+ }, {
1628
+ "value": "selector-circle";
1629
+ "label": "selector-circle";
1630
+ }, {
1631
+ "value": "send";
1632
+ "label": "send";
1633
+ }, {
1634
+ "value": "settings-filled";
1635
+ "label": "settings-filled";
1636
+ }, {
1637
+ "value": "settings";
1638
+ "label": "settings";
1643
1639
  }, {
1644
- "value": "all-going-forward";
1645
- "label": "This and all going forward";
1640
+ "value": "share";
1641
+ "label": "share";
1646
1642
  }, {
1647
- "value": "all";
1648
- "label": "All";
1643
+ "value": "shopping-bag";
1644
+ "label": "shopping-bag";
1645
+ }, {
1646
+ "value": "shopping-cart";
1647
+ "label": "shopping-cart";
1648
+ }, {
1649
+ "value": "sort-filter-down";
1650
+ "label": "sort-filter-down";
1651
+ }, {
1652
+ "value": "sort-filter-up";
1653
+ "label": "sort-filter-up";
1654
+ }, {
1655
+ "value": "sound-off";
1656
+ "label": "sound-off";
1657
+ }, {
1658
+ "value": "sound-on";
1659
+ "label": "sound-on";
1660
+ }, {
1661
+ "value": "sprucebot";
1662
+ "label": "sprucebot";
1663
+ }, {
1664
+ "value": "star-filled";
1665
+ "label": "star-filled";
1666
+ }, {
1667
+ "value": "star";
1668
+ "label": "star";
1669
+ }, {
1670
+ "value": "sun";
1671
+ "label": "sun";
1672
+ }, {
1673
+ "value": "tag";
1674
+ "label": "tag";
1675
+ }, {
1676
+ "value": "time";
1677
+ "label": "time";
1678
+ }, {
1679
+ "value": "tool";
1680
+ "label": "tool";
1681
+ }, {
1682
+ "value": "trending-down";
1683
+ "label": "trending-down";
1684
+ }, {
1685
+ "value": "trending-up";
1686
+ "label": "trending-up";
1687
+ }, {
1688
+ "value": "triangle";
1689
+ "label": "triangle";
1690
+ }, {
1691
+ "value": "unlock";
1692
+ "label": "unlock";
1693
+ }, {
1694
+ "value": "upload-cloud";
1695
+ "label": "upload-cloud";
1696
+ }, {
1697
+ "value": "upload";
1698
+ "label": "upload";
1699
+ }, {
1700
+ "value": "user-add";
1701
+ "label": "user-add";
1702
+ }, {
1703
+ "value": "user-delete";
1704
+ "label": "user-delete";
1705
+ }, {
1706
+ "value": "user";
1707
+ "label": "user";
1708
+ }, {
1709
+ "value": "users";
1710
+ "label": "users";
1711
+ }, {
1712
+ "value": "video-off";
1713
+ "label": "video-off";
1714
+ }, {
1715
+ "value": "video";
1716
+ "label": "video";
1717
+ }, {
1718
+ "value": "warning";
1719
+ "label": "warning";
1720
+ }, {
1721
+ "value": "wifi";
1722
+ "label": "wifi";
1723
+ }, {
1724
+ "value": "zoom-in";
1725
+ "label": "zoom-in";
1726
+ }, {
1727
+ "value": "zoom-out";
1728
+ "label": "zoom-out";
1649
1729
  }];
1650
1730
  };
1651
1731
  };
1652
- /** . */
1653
- 'calendarEvent': {
1654
- type: 'schema';
1655
- isRequired: true;
1656
- options: {
1657
- schema: SpruceSchemas.CalendarUtils.v2021_05_19.CalendarEventSchema;
1658
- };
1659
- };
1660
1732
  };
1661
1733
  }
1662
- interface DidCancelCalendarEventEmitPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitPayloadSchema> {
1734
+ interface CreateCalendarEventTypeEmitPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.CreateCalendarEventTypeEmitPayloadSchema> {
1663
1735
  }
1664
1736
  }
1665
1737
  namespace SpruceSchemas.Calendar.v2021_05_19 {
1666
- interface DidCancelCalendarEventEmitTargetAndPayload {
1738
+ interface CreateCalendarEventTypeEmitTargetAndPayload {
1667
1739
  /** Source. */
1668
1740
  '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;
1741
+ 'payload': SpruceSchemas.Calendar.v2021_05_19.CreateCalendarEventTypeEmitPayload;
1671
1742
  }
1672
- interface DidCancelCalendarEventEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
1673
- id: 'didCancelCalendarEventEmitTargetAndPayload';
1743
+ interface CreateCalendarEventTypeEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
1744
+ id: 'createCalendarEventTypeEmitTargetAndPayload';
1674
1745
  version: 'v2021_05_19';
1675
1746
  namespace: 'Calendar';
1676
1747
  name: '';
@@ -1684,110 +1755,39 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1684
1755
  };
1685
1756
  };
1686
1757
  /** . */
1687
- 'target': {
1688
- type: 'schema';
1689
- isRequired: true;
1690
- options: {
1691
- schema: SpruceSchemas.Calendar.v2021_05_19.DidCancelCalendarEventEmitTargetSchema;
1692
- };
1693
- };
1694
- /** . */
1695
1758
  'payload': {
1696
1759
  type: 'schema';
1697
1760
  isRequired: true;
1698
1761
  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
- namespace SpruceSchemas.Calendar.v2021_05_19 {
1708
- interface DidUpdateCalendarEventEmitTarget {
1709
- 'locationId': string;
1710
- }
1711
- interface DidUpdateCalendarEventEmitTargetSchema extends SpruceSchema.Schema {
1712
- id: 'didUpdateCalendarEventEmitTarget';
1713
- version: 'v2021_05_19';
1714
- namespace: 'Calendar';
1715
- name: '';
1716
- fields: {
1717
- /** . */
1718
- 'locationId': {
1719
- type: 'id';
1720
- isRequired: true;
1721
- options: undefined;
1722
- };
1723
- };
1724
- }
1725
- interface DidUpdateCalendarEventEmitTargetEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidUpdateCalendarEventEmitTargetSchema> {
1726
- }
1727
- }
1728
- namespace SpruceSchemas.Calendar.v2021_05_19 {
1729
- interface DidUpdateCalendarEventEmitPayload {
1730
- 'calendarEvent': SpruceSchemas.CalendarUtils.v2021_05_19.CalendarEvent;
1731
- }
1732
- interface DidUpdateCalendarEventEmitPayloadSchema extends SpruceSchema.Schema {
1733
- id: 'didUpdateCalendarEventEmitPayload';
1734
- version: 'v2021_05_19';
1735
- namespace: 'Calendar';
1736
- name: '';
1737
- fields: {
1738
- /** . */
1739
- 'calendarEvent': {
1740
- type: 'schema';
1741
- isRequired: true;
1742
- options: {
1743
- schema: SpruceSchemas.CalendarUtils.v2021_05_19.CalendarEventSchema;
1762
+ schema: SpruceSchemas.Calendar.v2021_05_19.CreateCalendarEventTypeEmitPayloadSchema;
1744
1763
  };
1745
1764
  };
1746
1765
  };
1747
1766
  }
1748
- interface DidUpdateCalendarEventEmitPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidUpdateCalendarEventEmitPayloadSchema> {
1767
+ interface CreateCalendarEventTypeEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.CreateCalendarEventTypeEmitTargetAndPayloadSchema> {
1749
1768
  }
1750
1769
  }
1751
1770
  namespace SpruceSchemas.Calendar.v2021_05_19 {
1752
- interface DidUpdateCalendarEventEmitTargetAndPayload {
1753
- /** Source. */
1754
- 'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
1755
- 'target': SpruceSchemas.Calendar.v2021_05_19.DidUpdateCalendarEventEmitTarget;
1756
- 'payload': SpruceSchemas.Calendar.v2021_05_19.DidUpdateCalendarEventEmitPayload;
1771
+ interface CreateCalendarEventTypeResponsePayload {
1772
+ 'calendarEventType': SpruceSchemas.Calendar.v2021_05_19.CalendarEventType;
1757
1773
  }
1758
- interface DidUpdateCalendarEventEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
1759
- id: 'didUpdateCalendarEventEmitTargetAndPayload';
1774
+ interface CreateCalendarEventTypeResponsePayloadSchema extends SpruceSchema.Schema {
1775
+ id: 'createCalendarEventTypeResponsePayload';
1760
1776
  version: 'v2021_05_19';
1761
1777
  namespace: 'Calendar';
1762
1778
  name: '';
1763
1779
  fields: {
1764
- /** Source. */
1765
- 'source': {
1766
- label: 'Source';
1767
- type: 'schema';
1768
- options: {
1769
- schema: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSourceSchema;
1770
- };
1771
- };
1772
- /** . */
1773
- 'target': {
1774
- type: 'schema';
1775
- isRequired: true;
1776
- options: {
1777
- schema: SpruceSchemas.Calendar.v2021_05_19.DidUpdateCalendarEventEmitTargetSchema;
1778
- };
1779
- };
1780
1780
  /** . */
1781
- 'payload': {
1781
+ 'calendarEventType': {
1782
1782
  type: 'schema';
1783
1783
  isRequired: true;
1784
1784
  options: {
1785
- schema: SpruceSchemas.Calendar.v2021_05_19.DidUpdateCalendarEventEmitPayloadSchema;
1785
+ schema: SpruceSchemas.Calendar.v2021_05_19.CalendarEventTypeSchema;
1786
1786
  };
1787
1787
  };
1788
1788
  };
1789
1789
  }
1790
- interface DidUpdateCalendarEventEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.DidUpdateCalendarEventEmitTargetAndPayloadSchema> {
1790
+ interface CreateCalendarEventTypeResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.CreateCalendarEventTypeResponsePayloadSchema> {
1791
1791
  }
1792
1792
  }
1793
1793
  namespace SpruceSchemas.Calendar.v2021_05_19 {
@@ -3740,7 +3740,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
3740
3740
  'name'?: string | undefined | null;
3741
3741
  'slug'?: string | undefined | null;
3742
3742
  'viewControllerId'?: string | undefined | null;
3743
- 'lineIcon'?: ("sprucebot" | "add-circle" | "chevron-left" | "document-text" | "link-angle" | "play-circle" | "star" | "add-square" | "chevron-right" | "download-cloud" | "link-flat" | "present" | "sun" | "add" | "chevron-up" | "download" | "loader" | "refresh-circle" | "tag" | "alarm" | "clipboard" | "edit-box" | "location-pin" | "refresh" | "time" | "arrow-back" | "clock" | "edit-line" | "lock" | "repeat" | "tool" | "arrow-down-circle" | "close-circle" | "email" | "map" | "restricted" | "trending-down" | "arrow-down" | "close-square" | "emoji-happy" | "message-circle" | "rotate" | "trending-up" | "arrow-next" | "close" | "emoji-sad" | "message-square" | "search-no" | "triangle" | "arrow-up-circle" | "code" | "external-link" | "mic-off" | "search" | "unlock" | "arrow-up" | "coffee" | "fav-heart" | "mic-on" | "selector-checked" | "upload-cloud" | "attachment" | "command" | "flag" | "minus-circle" | "selector-circle-filled" | "upload" | "award-badge" | "corner-down-left" | "flip-01" | "minus-square" | "selector-circle" | "user-add" | "binoculars" | "corner-down-right" | "flip-02" | "money-sign" | "send" | "user-delete" | "bolt" | "corner-left-down" | "folder" | "more-horizontal" | "settings-filled" | "user" | "book-open" | "corner-left-up" | "globe" | "more-vertical" | "settings" | "users" | "book" | "corner-right-down" | "hash-tag" | "notification-off" | "share" | "video-off" | "bookmark" | "corner-right-up" | "headphones" | "notification-on" | "shopping-bag" | "video" | "calendar-add" | "corner-up-left" | "help-buoy" | "object" | "shopping-cart" | "warning" | "calendar" | "corner-up-right" | "help-circle" | "pause-circle" | "sort-filter-down" | "wifi" | "camera" | "crop" | "home" | "phone-unavailable" | "sort-filter-up" | "zoom-in" | "cellphone" | "delete" | "info" | "phone" | "sound-off" | "zoom-out" | "checkmark" | "document-blank" | "jump" | "photo" | "sound-on" | "chevron-down" | "document-new" | "layers" | "picked" | "star-filled") | undefined | null;
3743
+ 'lineIcon'?: ("add-circle" | "add-square" | "add" | "alarm" | "arrow-back" | "arrow-down-circle" | "arrow-down" | "arrow-next" | "arrow-up-circle" | "arrow-up" | "attachment" | "award-badge" | "binoculars" | "bolt" | "book-open" | "book" | "bookmark" | "calendar-add" | "calendar" | "camera" | "cellphone" | "checkmark" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clipboard" | "clock" | "close-circle" | "close-square" | "close" | "code" | "coffee" | "command" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "crop" | "delete" | "document-blank" | "document-new" | "document-text" | "download-cloud" | "download" | "edit-box" | "edit-line" | "email" | "emoji-happy" | "emoji-sad" | "external-link" | "fav-heart" | "flag" | "flip-01" | "flip-02" | "folder" | "globe" | "hash-tag" | "headphones" | "help-buoy" | "help-circle" | "home" | "info" | "jump" | "layers" | "link-angle" | "link-flat" | "loader" | "location-pin" | "lock" | "map" | "message-circle" | "message-square" | "mic-off" | "mic-on" | "minus-circle" | "minus-square" | "money-sign" | "more-horizontal" | "more-vertical" | "notification-off" | "notification-on" | "object" | "pause-circle" | "phone-unavailable" | "phone" | "photo" | "picked" | "play-circle" | "present" | "refresh-circle" | "refresh" | "repeat" | "restricted" | "rotate" | "search-no" | "search" | "selector-checked" | "selector-circle-filled" | "selector-circle" | "send" | "settings-filled" | "settings" | "share" | "shopping-bag" | "shopping-cart" | "sort-filter-down" | "sort-filter-up" | "sound-off" | "sound-on" | "sprucebot" | "star-filled" | "star" | "sun" | "tag" | "time" | "tool" | "trending-down" | "trending-up" | "triangle" | "unlock" | "upload-cloud" | "upload" | "user-add" | "user-delete" | "user" | "users" | "video-off" | "video" | "warning" | "wifi" | "zoom-in" | "zoom-out") | undefined | null;
3744
3744
  }
3745
3745
  interface UpsertCalendarEventTypeEmitPayloadSchema extends SpruceSchema.Schema {
3746
3746
  id: 'upsertCalendarEventTypeEmitPayload';
@@ -3768,416 +3768,416 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
3768
3768
  type: 'select';
3769
3769
  options: {
3770
3770
  choices: [{
3771
- "value": "sprucebot";
3772
- "label": "sprucebot";
3773
- }, {
3774
3771
  "value": "add-circle";
3775
3772
  "label": "add-circle";
3776
- }, {
3777
- "value": "chevron-left";
3778
- "label": "chevron-left";
3779
- }, {
3780
- "value": "document-text";
3781
- "label": "document-text";
3782
- }, {
3783
- "value": "link-angle";
3784
- "label": "link-angle";
3785
- }, {
3786
- "value": "play-circle";
3787
- "label": "play-circle";
3788
- }, {
3789
- "value": "star";
3790
- "label": "star";
3791
3773
  }, {
3792
3774
  "value": "add-square";
3793
3775
  "label": "add-square";
3794
3776
  }, {
3795
- "value": "chevron-right";
3796
- "label": "chevron-right";
3777
+ "value": "add";
3778
+ "label": "add";
3797
3779
  }, {
3798
- "value": "download-cloud";
3799
- "label": "download-cloud";
3780
+ "value": "alarm";
3781
+ "label": "alarm";
3800
3782
  }, {
3801
- "value": "link-flat";
3802
- "label": "link-flat";
3783
+ "value": "arrow-back";
3784
+ "label": "arrow-back";
3803
3785
  }, {
3804
- "value": "present";
3805
- "label": "present";
3786
+ "value": "arrow-down-circle";
3787
+ "label": "arrow-down-circle";
3806
3788
  }, {
3807
- "value": "sun";
3808
- "label": "sun";
3789
+ "value": "arrow-down";
3790
+ "label": "arrow-down";
3809
3791
  }, {
3810
- "value": "add";
3811
- "label": "add";
3792
+ "value": "arrow-next";
3793
+ "label": "arrow-next";
3812
3794
  }, {
3813
- "value": "chevron-up";
3814
- "label": "chevron-up";
3795
+ "value": "arrow-up-circle";
3796
+ "label": "arrow-up-circle";
3815
3797
  }, {
3816
- "value": "download";
3817
- "label": "download";
3798
+ "value": "arrow-up";
3799
+ "label": "arrow-up";
3800
+ }, {
3801
+ "value": "attachment";
3802
+ "label": "attachment";
3803
+ }, {
3804
+ "value": "award-badge";
3805
+ "label": "award-badge";
3818
3806
  }, {
3819
- "value": "loader";
3820
- "label": "loader";
3807
+ "value": "binoculars";
3808
+ "label": "binoculars";
3821
3809
  }, {
3822
- "value": "refresh-circle";
3823
- "label": "refresh-circle";
3810
+ "value": "bolt";
3811
+ "label": "bolt";
3824
3812
  }, {
3825
- "value": "tag";
3826
- "label": "tag";
3813
+ "value": "book-open";
3814
+ "label": "book-open";
3827
3815
  }, {
3828
- "value": "alarm";
3829
- "label": "alarm";
3816
+ "value": "book";
3817
+ "label": "book";
3830
3818
  }, {
3831
- "value": "clipboard";
3832
- "label": "clipboard";
3819
+ "value": "bookmark";
3820
+ "label": "bookmark";
3833
3821
  }, {
3834
- "value": "edit-box";
3835
- "label": "edit-box";
3822
+ "value": "calendar-add";
3823
+ "label": "calendar-add";
3836
3824
  }, {
3837
- "value": "location-pin";
3838
- "label": "location-pin";
3825
+ "value": "calendar";
3826
+ "label": "calendar";
3839
3827
  }, {
3840
- "value": "refresh";
3841
- "label": "refresh";
3828
+ "value": "camera";
3829
+ "label": "camera";
3842
3830
  }, {
3843
- "value": "time";
3844
- "label": "time";
3831
+ "value": "cellphone";
3832
+ "label": "cellphone";
3845
3833
  }, {
3846
- "value": "arrow-back";
3847
- "label": "arrow-back";
3834
+ "value": "checkmark";
3835
+ "label": "checkmark";
3848
3836
  }, {
3849
- "value": "clock";
3850
- "label": "clock";
3837
+ "value": "chevron-down";
3838
+ "label": "chevron-down";
3851
3839
  }, {
3852
- "value": "edit-line";
3853
- "label": "edit-line";
3840
+ "value": "chevron-left";
3841
+ "label": "chevron-left";
3854
3842
  }, {
3855
- "value": "lock";
3856
- "label": "lock";
3843
+ "value": "chevron-right";
3844
+ "label": "chevron-right";
3857
3845
  }, {
3858
- "value": "repeat";
3859
- "label": "repeat";
3846
+ "value": "chevron-up";
3847
+ "label": "chevron-up";
3860
3848
  }, {
3861
- "value": "tool";
3862
- "label": "tool";
3849
+ "value": "clipboard";
3850
+ "label": "clipboard";
3863
3851
  }, {
3864
- "value": "arrow-down-circle";
3865
- "label": "arrow-down-circle";
3852
+ "value": "clock";
3853
+ "label": "clock";
3866
3854
  }, {
3867
3855
  "value": "close-circle";
3868
3856
  "label": "close-circle";
3869
3857
  }, {
3870
- "value": "email";
3871
- "label": "email";
3858
+ "value": "close-square";
3859
+ "label": "close-square";
3872
3860
  }, {
3873
- "value": "map";
3874
- "label": "map";
3861
+ "value": "close";
3862
+ "label": "close";
3875
3863
  }, {
3876
- "value": "restricted";
3877
- "label": "restricted";
3864
+ "value": "code";
3865
+ "label": "code";
3878
3866
  }, {
3879
- "value": "trending-down";
3880
- "label": "trending-down";
3867
+ "value": "coffee";
3868
+ "label": "coffee";
3881
3869
  }, {
3882
- "value": "arrow-down";
3883
- "label": "arrow-down";
3870
+ "value": "command";
3871
+ "label": "command";
3884
3872
  }, {
3885
- "value": "close-square";
3886
- "label": "close-square";
3873
+ "value": "corner-down-left";
3874
+ "label": "corner-down-left";
3887
3875
  }, {
3888
- "value": "emoji-happy";
3889
- "label": "emoji-happy";
3876
+ "value": "corner-down-right";
3877
+ "label": "corner-down-right";
3890
3878
  }, {
3891
- "value": "message-circle";
3892
- "label": "message-circle";
3879
+ "value": "corner-left-down";
3880
+ "label": "corner-left-down";
3893
3881
  }, {
3894
- "value": "rotate";
3895
- "label": "rotate";
3882
+ "value": "corner-left-up";
3883
+ "label": "corner-left-up";
3896
3884
  }, {
3897
- "value": "trending-up";
3898
- "label": "trending-up";
3885
+ "value": "corner-right-down";
3886
+ "label": "corner-right-down";
3899
3887
  }, {
3900
- "value": "arrow-next";
3901
- "label": "arrow-next";
3888
+ "value": "corner-right-up";
3889
+ "label": "corner-right-up";
3902
3890
  }, {
3903
- "value": "close";
3904
- "label": "close";
3891
+ "value": "corner-up-left";
3892
+ "label": "corner-up-left";
3905
3893
  }, {
3906
- "value": "emoji-sad";
3907
- "label": "emoji-sad";
3894
+ "value": "corner-up-right";
3895
+ "label": "corner-up-right";
3908
3896
  }, {
3909
- "value": "message-square";
3910
- "label": "message-square";
3897
+ "value": "crop";
3898
+ "label": "crop";
3911
3899
  }, {
3912
- "value": "search-no";
3913
- "label": "search-no";
3900
+ "value": "delete";
3901
+ "label": "delete";
3914
3902
  }, {
3915
- "value": "triangle";
3916
- "label": "triangle";
3903
+ "value": "document-blank";
3904
+ "label": "document-blank";
3917
3905
  }, {
3918
- "value": "arrow-up-circle";
3919
- "label": "arrow-up-circle";
3906
+ "value": "document-new";
3907
+ "label": "document-new";
3920
3908
  }, {
3921
- "value": "code";
3922
- "label": "code";
3909
+ "value": "document-text";
3910
+ "label": "document-text";
3923
3911
  }, {
3924
- "value": "external-link";
3925
- "label": "external-link";
3912
+ "value": "download-cloud";
3913
+ "label": "download-cloud";
3926
3914
  }, {
3927
- "value": "mic-off";
3928
- "label": "mic-off";
3915
+ "value": "download";
3916
+ "label": "download";
3929
3917
  }, {
3930
- "value": "search";
3931
- "label": "search";
3918
+ "value": "edit-box";
3919
+ "label": "edit-box";
3932
3920
  }, {
3933
- "value": "unlock";
3934
- "label": "unlock";
3921
+ "value": "edit-line";
3922
+ "label": "edit-line";
3935
3923
  }, {
3936
- "value": "arrow-up";
3937
- "label": "arrow-up";
3924
+ "value": "email";
3925
+ "label": "email";
3938
3926
  }, {
3939
- "value": "coffee";
3940
- "label": "coffee";
3927
+ "value": "emoji-happy";
3928
+ "label": "emoji-happy";
3929
+ }, {
3930
+ "value": "emoji-sad";
3931
+ "label": "emoji-sad";
3932
+ }, {
3933
+ "value": "external-link";
3934
+ "label": "external-link";
3941
3935
  }, {
3942
3936
  "value": "fav-heart";
3943
3937
  "label": "fav-heart";
3944
3938
  }, {
3945
- "value": "mic-on";
3946
- "label": "mic-on";
3939
+ "value": "flag";
3940
+ "label": "flag";
3947
3941
  }, {
3948
- "value": "selector-checked";
3949
- "label": "selector-checked";
3942
+ "value": "flip-01";
3943
+ "label": "flip-01";
3950
3944
  }, {
3951
- "value": "upload-cloud";
3952
- "label": "upload-cloud";
3945
+ "value": "flip-02";
3946
+ "label": "flip-02";
3953
3947
  }, {
3954
- "value": "attachment";
3955
- "label": "attachment";
3948
+ "value": "folder";
3949
+ "label": "folder";
3956
3950
  }, {
3957
- "value": "command";
3958
- "label": "command";
3951
+ "value": "globe";
3952
+ "label": "globe";
3959
3953
  }, {
3960
- "value": "flag";
3961
- "label": "flag";
3954
+ "value": "hash-tag";
3955
+ "label": "hash-tag";
3962
3956
  }, {
3963
- "value": "minus-circle";
3964
- "label": "minus-circle";
3957
+ "value": "headphones";
3958
+ "label": "headphones";
3965
3959
  }, {
3966
- "value": "selector-circle-filled";
3967
- "label": "selector-circle-filled";
3960
+ "value": "help-buoy";
3961
+ "label": "help-buoy";
3968
3962
  }, {
3969
- "value": "upload";
3970
- "label": "upload";
3963
+ "value": "help-circle";
3964
+ "label": "help-circle";
3971
3965
  }, {
3972
- "value": "award-badge";
3973
- "label": "award-badge";
3966
+ "value": "home";
3967
+ "label": "home";
3974
3968
  }, {
3975
- "value": "corner-down-left";
3976
- "label": "corner-down-left";
3969
+ "value": "info";
3970
+ "label": "info";
3977
3971
  }, {
3978
- "value": "flip-01";
3979
- "label": "flip-01";
3972
+ "value": "jump";
3973
+ "label": "jump";
3980
3974
  }, {
3981
- "value": "minus-square";
3982
- "label": "minus-square";
3975
+ "value": "layers";
3976
+ "label": "layers";
3983
3977
  }, {
3984
- "value": "selector-circle";
3985
- "label": "selector-circle";
3978
+ "value": "link-angle";
3979
+ "label": "link-angle";
3986
3980
  }, {
3987
- "value": "user-add";
3988
- "label": "user-add";
3981
+ "value": "link-flat";
3982
+ "label": "link-flat";
3989
3983
  }, {
3990
- "value": "binoculars";
3991
- "label": "binoculars";
3984
+ "value": "loader";
3985
+ "label": "loader";
3992
3986
  }, {
3993
- "value": "corner-down-right";
3994
- "label": "corner-down-right";
3987
+ "value": "location-pin";
3988
+ "label": "location-pin";
3995
3989
  }, {
3996
- "value": "flip-02";
3997
- "label": "flip-02";
3990
+ "value": "lock";
3991
+ "label": "lock";
3998
3992
  }, {
3999
- "value": "money-sign";
4000
- "label": "money-sign";
3993
+ "value": "map";
3994
+ "label": "map";
4001
3995
  }, {
4002
- "value": "send";
4003
- "label": "send";
3996
+ "value": "message-circle";
3997
+ "label": "message-circle";
4004
3998
  }, {
4005
- "value": "user-delete";
4006
- "label": "user-delete";
3999
+ "value": "message-square";
4000
+ "label": "message-square";
4001
+ }, {
4002
+ "value": "mic-off";
4003
+ "label": "mic-off";
4004
+ }, {
4005
+ "value": "mic-on";
4006
+ "label": "mic-on";
4007
4007
  }, {
4008
- "value": "bolt";
4009
- "label": "bolt";
4008
+ "value": "minus-circle";
4009
+ "label": "minus-circle";
4010
4010
  }, {
4011
- "value": "corner-left-down";
4012
- "label": "corner-left-down";
4011
+ "value": "minus-square";
4012
+ "label": "minus-square";
4013
4013
  }, {
4014
- "value": "folder";
4015
- "label": "folder";
4014
+ "value": "money-sign";
4015
+ "label": "money-sign";
4016
4016
  }, {
4017
4017
  "value": "more-horizontal";
4018
4018
  "label": "more-horizontal";
4019
4019
  }, {
4020
- "value": "settings-filled";
4021
- "label": "settings-filled";
4020
+ "value": "more-vertical";
4021
+ "label": "more-vertical";
4022
4022
  }, {
4023
- "value": "user";
4024
- "label": "user";
4023
+ "value": "notification-off";
4024
+ "label": "notification-off";
4025
4025
  }, {
4026
- "value": "book-open";
4027
- "label": "book-open";
4026
+ "value": "notification-on";
4027
+ "label": "notification-on";
4028
4028
  }, {
4029
- "value": "corner-left-up";
4030
- "label": "corner-left-up";
4029
+ "value": "object";
4030
+ "label": "object";
4031
4031
  }, {
4032
- "value": "globe";
4033
- "label": "globe";
4032
+ "value": "pause-circle";
4033
+ "label": "pause-circle";
4034
4034
  }, {
4035
- "value": "more-vertical";
4036
- "label": "more-vertical";
4035
+ "value": "phone-unavailable";
4036
+ "label": "phone-unavailable";
4037
4037
  }, {
4038
- "value": "settings";
4039
- "label": "settings";
4038
+ "value": "phone";
4039
+ "label": "phone";
4040
4040
  }, {
4041
- "value": "users";
4042
- "label": "users";
4041
+ "value": "photo";
4042
+ "label": "photo";
4043
4043
  }, {
4044
- "value": "book";
4045
- "label": "book";
4044
+ "value": "picked";
4045
+ "label": "picked";
4046
4046
  }, {
4047
- "value": "corner-right-down";
4048
- "label": "corner-right-down";
4047
+ "value": "play-circle";
4048
+ "label": "play-circle";
4049
4049
  }, {
4050
- "value": "hash-tag";
4051
- "label": "hash-tag";
4050
+ "value": "present";
4051
+ "label": "present";
4052
4052
  }, {
4053
- "value": "notification-off";
4054
- "label": "notification-off";
4053
+ "value": "refresh-circle";
4054
+ "label": "refresh-circle";
4055
4055
  }, {
4056
- "value": "share";
4057
- "label": "share";
4056
+ "value": "refresh";
4057
+ "label": "refresh";
4058
4058
  }, {
4059
- "value": "video-off";
4060
- "label": "video-off";
4059
+ "value": "repeat";
4060
+ "label": "repeat";
4061
4061
  }, {
4062
- "value": "bookmark";
4063
- "label": "bookmark";
4062
+ "value": "restricted";
4063
+ "label": "restricted";
4064
4064
  }, {
4065
- "value": "corner-right-up";
4066
- "label": "corner-right-up";
4065
+ "value": "rotate";
4066
+ "label": "rotate";
4067
4067
  }, {
4068
- "value": "headphones";
4069
- "label": "headphones";
4068
+ "value": "search-no";
4069
+ "label": "search-no";
4070
4070
  }, {
4071
- "value": "notification-on";
4072
- "label": "notification-on";
4071
+ "value": "search";
4072
+ "label": "search";
4073
4073
  }, {
4074
- "value": "shopping-bag";
4075
- "label": "shopping-bag";
4074
+ "value": "selector-checked";
4075
+ "label": "selector-checked";
4076
4076
  }, {
4077
- "value": "video";
4078
- "label": "video";
4077
+ "value": "selector-circle-filled";
4078
+ "label": "selector-circle-filled";
4079
4079
  }, {
4080
- "value": "calendar-add";
4081
- "label": "calendar-add";
4080
+ "value": "selector-circle";
4081
+ "label": "selector-circle";
4082
4082
  }, {
4083
- "value": "corner-up-left";
4084
- "label": "corner-up-left";
4083
+ "value": "send";
4084
+ "label": "send";
4085
4085
  }, {
4086
- "value": "help-buoy";
4087
- "label": "help-buoy";
4086
+ "value": "settings-filled";
4087
+ "label": "settings-filled";
4088
4088
  }, {
4089
- "value": "object";
4090
- "label": "object";
4089
+ "value": "settings";
4090
+ "label": "settings";
4091
4091
  }, {
4092
- "value": "shopping-cart";
4093
- "label": "shopping-cart";
4092
+ "value": "share";
4093
+ "label": "share";
4094
4094
  }, {
4095
- "value": "warning";
4096
- "label": "warning";
4095
+ "value": "shopping-bag";
4096
+ "label": "shopping-bag";
4097
4097
  }, {
4098
- "value": "calendar";
4099
- "label": "calendar";
4098
+ "value": "shopping-cart";
4099
+ "label": "shopping-cart";
4100
4100
  }, {
4101
- "value": "corner-up-right";
4102
- "label": "corner-up-right";
4101
+ "value": "sort-filter-down";
4102
+ "label": "sort-filter-down";
4103
4103
  }, {
4104
- "value": "help-circle";
4105
- "label": "help-circle";
4104
+ "value": "sort-filter-up";
4105
+ "label": "sort-filter-up";
4106
4106
  }, {
4107
- "value": "pause-circle";
4108
- "label": "pause-circle";
4107
+ "value": "sound-off";
4108
+ "label": "sound-off";
4109
4109
  }, {
4110
- "value": "sort-filter-down";
4111
- "label": "sort-filter-down";
4110
+ "value": "sound-on";
4111
+ "label": "sound-on";
4112
4112
  }, {
4113
- "value": "wifi";
4114
- "label": "wifi";
4113
+ "value": "sprucebot";
4114
+ "label": "sprucebot";
4115
4115
  }, {
4116
- "value": "camera";
4117
- "label": "camera";
4116
+ "value": "star-filled";
4117
+ "label": "star-filled";
4118
4118
  }, {
4119
- "value": "crop";
4120
- "label": "crop";
4119
+ "value": "star";
4120
+ "label": "star";
4121
4121
  }, {
4122
- "value": "home";
4123
- "label": "home";
4122
+ "value": "sun";
4123
+ "label": "sun";
4124
4124
  }, {
4125
- "value": "phone-unavailable";
4126
- "label": "phone-unavailable";
4125
+ "value": "tag";
4126
+ "label": "tag";
4127
4127
  }, {
4128
- "value": "sort-filter-up";
4129
- "label": "sort-filter-up";
4128
+ "value": "time";
4129
+ "label": "time";
4130
4130
  }, {
4131
- "value": "zoom-in";
4132
- "label": "zoom-in";
4131
+ "value": "tool";
4132
+ "label": "tool";
4133
4133
  }, {
4134
- "value": "cellphone";
4135
- "label": "cellphone";
4134
+ "value": "trending-down";
4135
+ "label": "trending-down";
4136
4136
  }, {
4137
- "value": "delete";
4138
- "label": "delete";
4137
+ "value": "trending-up";
4138
+ "label": "trending-up";
4139
4139
  }, {
4140
- "value": "info";
4141
- "label": "info";
4140
+ "value": "triangle";
4141
+ "label": "triangle";
4142
4142
  }, {
4143
- "value": "phone";
4144
- "label": "phone";
4143
+ "value": "unlock";
4144
+ "label": "unlock";
4145
4145
  }, {
4146
- "value": "sound-off";
4147
- "label": "sound-off";
4146
+ "value": "upload-cloud";
4147
+ "label": "upload-cloud";
4148
4148
  }, {
4149
- "value": "zoom-out";
4150
- "label": "zoom-out";
4149
+ "value": "upload";
4150
+ "label": "upload";
4151
4151
  }, {
4152
- "value": "checkmark";
4153
- "label": "checkmark";
4152
+ "value": "user-add";
4153
+ "label": "user-add";
4154
4154
  }, {
4155
- "value": "document-blank";
4156
- "label": "document-blank";
4155
+ "value": "user-delete";
4156
+ "label": "user-delete";
4157
4157
  }, {
4158
- "value": "jump";
4159
- "label": "jump";
4158
+ "value": "user";
4159
+ "label": "user";
4160
4160
  }, {
4161
- "value": "photo";
4162
- "label": "photo";
4161
+ "value": "users";
4162
+ "label": "users";
4163
4163
  }, {
4164
- "value": "sound-on";
4165
- "label": "sound-on";
4164
+ "value": "video-off";
4165
+ "label": "video-off";
4166
4166
  }, {
4167
- "value": "chevron-down";
4168
- "label": "chevron-down";
4167
+ "value": "video";
4168
+ "label": "video";
4169
4169
  }, {
4170
- "value": "document-new";
4171
- "label": "document-new";
4170
+ "value": "warning";
4171
+ "label": "warning";
4172
4172
  }, {
4173
- "value": "layers";
4174
- "label": "layers";
4173
+ "value": "wifi";
4174
+ "label": "wifi";
4175
4175
  }, {
4176
- "value": "picked";
4177
- "label": "picked";
4176
+ "value": "zoom-in";
4177
+ "label": "zoom-in";
4178
4178
  }, {
4179
- "value": "star-filled";
4180
- "label": "star-filled";
4179
+ "value": "zoom-out";
4180
+ "label": "zoom-out";
4181
4181
  }];
4182
4182
  };
4183
4183
  };
@@ -5156,7 +5156,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
5156
5156
  'name': string;
5157
5157
  'slug': string;
5158
5158
  'viewControllerId'?: string | undefined | null;
5159
- 'lineIcon'?: ("sprucebot" | "add-circle" | "chevron-left" | "document-text" | "link-angle" | "play-circle" | "star" | "add-square" | "chevron-right" | "download-cloud" | "link-flat" | "present" | "sun" | "add" | "chevron-up" | "download" | "loader" | "refresh-circle" | "tag" | "alarm" | "clipboard" | "edit-box" | "location-pin" | "refresh" | "time" | "arrow-back" | "clock" | "edit-line" | "lock" | "repeat" | "tool" | "arrow-down-circle" | "close-circle" | "email" | "map" | "restricted" | "trending-down" | "arrow-down" | "close-square" | "emoji-happy" | "message-circle" | "rotate" | "trending-up" | "arrow-next" | "close" | "emoji-sad" | "message-square" | "search-no" | "triangle" | "arrow-up-circle" | "code" | "external-link" | "mic-off" | "search" | "unlock" | "arrow-up" | "coffee" | "fav-heart" | "mic-on" | "selector-checked" | "upload-cloud" | "attachment" | "command" | "flag" | "minus-circle" | "selector-circle-filled" | "upload" | "award-badge" | "corner-down-left" | "flip-01" | "minus-square" | "selector-circle" | "user-add" | "binoculars" | "corner-down-right" | "flip-02" | "money-sign" | "send" | "user-delete" | "bolt" | "corner-left-down" | "folder" | "more-horizontal" | "settings-filled" | "user" | "book-open" | "corner-left-up" | "globe" | "more-vertical" | "settings" | "users" | "book" | "corner-right-down" | "hash-tag" | "notification-off" | "share" | "video-off" | "bookmark" | "corner-right-up" | "headphones" | "notification-on" | "shopping-bag" | "video" | "calendar-add" | "corner-up-left" | "help-buoy" | "object" | "shopping-cart" | "warning" | "calendar" | "corner-up-right" | "help-circle" | "pause-circle" | "sort-filter-down" | "wifi" | "camera" | "crop" | "home" | "phone-unavailable" | "sort-filter-up" | "zoom-in" | "cellphone" | "delete" | "info" | "phone" | "sound-off" | "zoom-out" | "checkmark" | "document-blank" | "jump" | "photo" | "sound-on" | "chevron-down" | "document-new" | "layers" | "picked" | "star-filled") | undefined | null;
5159
+ 'lineIcon'?: ("add-circle" | "add-square" | "add" | "alarm" | "arrow-back" | "arrow-down-circle" | "arrow-down" | "arrow-next" | "arrow-up-circle" | "arrow-up" | "attachment" | "award-badge" | "binoculars" | "bolt" | "book-open" | "book" | "bookmark" | "calendar-add" | "calendar" | "camera" | "cellphone" | "checkmark" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clipboard" | "clock" | "close-circle" | "close-square" | "close" | "code" | "coffee" | "command" | "corner-down-left" | "corner-down-right" | "corner-left-down" | "corner-left-up" | "corner-right-down" | "corner-right-up" | "corner-up-left" | "corner-up-right" | "crop" | "delete" | "document-blank" | "document-new" | "document-text" | "download-cloud" | "download" | "edit-box" | "edit-line" | "email" | "emoji-happy" | "emoji-sad" | "external-link" | "fav-heart" | "flag" | "flip-01" | "flip-02" | "folder" | "globe" | "hash-tag" | "headphones" | "help-buoy" | "help-circle" | "home" | "info" | "jump" | "layers" | "link-angle" | "link-flat" | "loader" | "location-pin" | "lock" | "map" | "message-circle" | "message-square" | "mic-off" | "mic-on" | "minus-circle" | "minus-square" | "money-sign" | "more-horizontal" | "more-vertical" | "notification-off" | "notification-on" | "object" | "pause-circle" | "phone-unavailable" | "phone" | "photo" | "picked" | "play-circle" | "present" | "refresh-circle" | "refresh" | "repeat" | "restricted" | "rotate" | "search-no" | "search" | "selector-checked" | "selector-circle-filled" | "selector-circle" | "send" | "settings-filled" | "settings" | "share" | "shopping-bag" | "shopping-cart" | "sort-filter-down" | "sort-filter-up" | "sound-off" | "sound-on" | "sprucebot" | "star-filled" | "star" | "sun" | "tag" | "time" | "tool" | "trending-down" | "trending-up" | "triangle" | "unlock" | "upload-cloud" | "upload" | "user-add" | "user-delete" | "user" | "users" | "video-off" | "video" | "warning" | "wifi" | "zoom-in" | "zoom-out") | undefined | null;
5160
5160
  'source': SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource;
5161
5161
  }
5162
5162
  interface CalendarEventTypeSchema extends SpruceSchema.Schema {
@@ -5193,416 +5193,416 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
5193
5193
  type: 'select';
5194
5194
  options: {
5195
5195
  choices: [{
5196
- "value": "sprucebot";
5197
- "label": "sprucebot";
5198
- }, {
5199
5196
  "value": "add-circle";
5200
5197
  "label": "add-circle";
5201
- }, {
5202
- "value": "chevron-left";
5203
- "label": "chevron-left";
5204
- }, {
5205
- "value": "document-text";
5206
- "label": "document-text";
5207
- }, {
5208
- "value": "link-angle";
5209
- "label": "link-angle";
5210
- }, {
5211
- "value": "play-circle";
5212
- "label": "play-circle";
5213
- }, {
5214
- "value": "star";
5215
- "label": "star";
5216
5198
  }, {
5217
5199
  "value": "add-square";
5218
5200
  "label": "add-square";
5219
5201
  }, {
5220
- "value": "chevron-right";
5221
- "label": "chevron-right";
5202
+ "value": "add";
5203
+ "label": "add";
5204
+ }, {
5205
+ "value": "alarm";
5206
+ "label": "alarm";
5207
+ }, {
5208
+ "value": "arrow-back";
5209
+ "label": "arrow-back";
5222
5210
  }, {
5223
- "value": "download-cloud";
5224
- "label": "download-cloud";
5211
+ "value": "arrow-down-circle";
5212
+ "label": "arrow-down-circle";
5225
5213
  }, {
5226
- "value": "link-flat";
5227
- "label": "link-flat";
5214
+ "value": "arrow-down";
5215
+ "label": "arrow-down";
5228
5216
  }, {
5229
- "value": "present";
5230
- "label": "present";
5217
+ "value": "arrow-next";
5218
+ "label": "arrow-next";
5231
5219
  }, {
5232
- "value": "sun";
5233
- "label": "sun";
5220
+ "value": "arrow-up-circle";
5221
+ "label": "arrow-up-circle";
5234
5222
  }, {
5235
- "value": "add";
5236
- "label": "add";
5223
+ "value": "arrow-up";
5224
+ "label": "arrow-up";
5237
5225
  }, {
5238
- "value": "chevron-up";
5239
- "label": "chevron-up";
5226
+ "value": "attachment";
5227
+ "label": "attachment";
5240
5228
  }, {
5241
- "value": "download";
5242
- "label": "download";
5229
+ "value": "award-badge";
5230
+ "label": "award-badge";
5243
5231
  }, {
5244
- "value": "loader";
5245
- "label": "loader";
5232
+ "value": "binoculars";
5233
+ "label": "binoculars";
5246
5234
  }, {
5247
- "value": "refresh-circle";
5248
- "label": "refresh-circle";
5235
+ "value": "bolt";
5236
+ "label": "bolt";
5249
5237
  }, {
5250
- "value": "tag";
5251
- "label": "tag";
5238
+ "value": "book-open";
5239
+ "label": "book-open";
5252
5240
  }, {
5253
- "value": "alarm";
5254
- "label": "alarm";
5241
+ "value": "book";
5242
+ "label": "book";
5255
5243
  }, {
5256
- "value": "clipboard";
5257
- "label": "clipboard";
5244
+ "value": "bookmark";
5245
+ "label": "bookmark";
5258
5246
  }, {
5259
- "value": "edit-box";
5260
- "label": "edit-box";
5247
+ "value": "calendar-add";
5248
+ "label": "calendar-add";
5261
5249
  }, {
5262
- "value": "location-pin";
5263
- "label": "location-pin";
5250
+ "value": "calendar";
5251
+ "label": "calendar";
5264
5252
  }, {
5265
- "value": "refresh";
5266
- "label": "refresh";
5253
+ "value": "camera";
5254
+ "label": "camera";
5267
5255
  }, {
5268
- "value": "time";
5269
- "label": "time";
5256
+ "value": "cellphone";
5257
+ "label": "cellphone";
5270
5258
  }, {
5271
- "value": "arrow-back";
5272
- "label": "arrow-back";
5259
+ "value": "checkmark";
5260
+ "label": "checkmark";
5273
5261
  }, {
5274
- "value": "clock";
5275
- "label": "clock";
5262
+ "value": "chevron-down";
5263
+ "label": "chevron-down";
5276
5264
  }, {
5277
- "value": "edit-line";
5278
- "label": "edit-line";
5265
+ "value": "chevron-left";
5266
+ "label": "chevron-left";
5279
5267
  }, {
5280
- "value": "lock";
5281
- "label": "lock";
5268
+ "value": "chevron-right";
5269
+ "label": "chevron-right";
5282
5270
  }, {
5283
- "value": "repeat";
5284
- "label": "repeat";
5271
+ "value": "chevron-up";
5272
+ "label": "chevron-up";
5285
5273
  }, {
5286
- "value": "tool";
5287
- "label": "tool";
5274
+ "value": "clipboard";
5275
+ "label": "clipboard";
5288
5276
  }, {
5289
- "value": "arrow-down-circle";
5290
- "label": "arrow-down-circle";
5277
+ "value": "clock";
5278
+ "label": "clock";
5291
5279
  }, {
5292
5280
  "value": "close-circle";
5293
5281
  "label": "close-circle";
5294
5282
  }, {
5295
- "value": "email";
5296
- "label": "email";
5283
+ "value": "close-square";
5284
+ "label": "close-square";
5297
5285
  }, {
5298
- "value": "map";
5299
- "label": "map";
5286
+ "value": "close";
5287
+ "label": "close";
5300
5288
  }, {
5301
- "value": "restricted";
5302
- "label": "restricted";
5289
+ "value": "code";
5290
+ "label": "code";
5303
5291
  }, {
5304
- "value": "trending-down";
5305
- "label": "trending-down";
5292
+ "value": "coffee";
5293
+ "label": "coffee";
5306
5294
  }, {
5307
- "value": "arrow-down";
5308
- "label": "arrow-down";
5295
+ "value": "command";
5296
+ "label": "command";
5309
5297
  }, {
5310
- "value": "close-square";
5311
- "label": "close-square";
5298
+ "value": "corner-down-left";
5299
+ "label": "corner-down-left";
5312
5300
  }, {
5313
- "value": "emoji-happy";
5314
- "label": "emoji-happy";
5301
+ "value": "corner-down-right";
5302
+ "label": "corner-down-right";
5315
5303
  }, {
5316
- "value": "message-circle";
5317
- "label": "message-circle";
5304
+ "value": "corner-left-down";
5305
+ "label": "corner-left-down";
5318
5306
  }, {
5319
- "value": "rotate";
5320
- "label": "rotate";
5307
+ "value": "corner-left-up";
5308
+ "label": "corner-left-up";
5321
5309
  }, {
5322
- "value": "trending-up";
5323
- "label": "trending-up";
5310
+ "value": "corner-right-down";
5311
+ "label": "corner-right-down";
5324
5312
  }, {
5325
- "value": "arrow-next";
5326
- "label": "arrow-next";
5313
+ "value": "corner-right-up";
5314
+ "label": "corner-right-up";
5327
5315
  }, {
5328
- "value": "close";
5329
- "label": "close";
5316
+ "value": "corner-up-left";
5317
+ "label": "corner-up-left";
5330
5318
  }, {
5331
- "value": "emoji-sad";
5332
- "label": "emoji-sad";
5319
+ "value": "corner-up-right";
5320
+ "label": "corner-up-right";
5333
5321
  }, {
5334
- "value": "message-square";
5335
- "label": "message-square";
5322
+ "value": "crop";
5323
+ "label": "crop";
5336
5324
  }, {
5337
- "value": "search-no";
5338
- "label": "search-no";
5325
+ "value": "delete";
5326
+ "label": "delete";
5339
5327
  }, {
5340
- "value": "triangle";
5341
- "label": "triangle";
5328
+ "value": "document-blank";
5329
+ "label": "document-blank";
5342
5330
  }, {
5343
- "value": "arrow-up-circle";
5344
- "label": "arrow-up-circle";
5331
+ "value": "document-new";
5332
+ "label": "document-new";
5345
5333
  }, {
5346
- "value": "code";
5347
- "label": "code";
5334
+ "value": "document-text";
5335
+ "label": "document-text";
5348
5336
  }, {
5349
- "value": "external-link";
5350
- "label": "external-link";
5337
+ "value": "download-cloud";
5338
+ "label": "download-cloud";
5351
5339
  }, {
5352
- "value": "mic-off";
5353
- "label": "mic-off";
5340
+ "value": "download";
5341
+ "label": "download";
5354
5342
  }, {
5355
- "value": "search";
5356
- "label": "search";
5343
+ "value": "edit-box";
5344
+ "label": "edit-box";
5357
5345
  }, {
5358
- "value": "unlock";
5359
- "label": "unlock";
5346
+ "value": "edit-line";
5347
+ "label": "edit-line";
5360
5348
  }, {
5361
- "value": "arrow-up";
5362
- "label": "arrow-up";
5349
+ "value": "email";
5350
+ "label": "email";
5363
5351
  }, {
5364
- "value": "coffee";
5365
- "label": "coffee";
5352
+ "value": "emoji-happy";
5353
+ "label": "emoji-happy";
5354
+ }, {
5355
+ "value": "emoji-sad";
5356
+ "label": "emoji-sad";
5357
+ }, {
5358
+ "value": "external-link";
5359
+ "label": "external-link";
5366
5360
  }, {
5367
5361
  "value": "fav-heart";
5368
5362
  "label": "fav-heart";
5369
5363
  }, {
5370
- "value": "mic-on";
5371
- "label": "mic-on";
5364
+ "value": "flag";
5365
+ "label": "flag";
5372
5366
  }, {
5373
- "value": "selector-checked";
5374
- "label": "selector-checked";
5367
+ "value": "flip-01";
5368
+ "label": "flip-01";
5375
5369
  }, {
5376
- "value": "upload-cloud";
5377
- "label": "upload-cloud";
5370
+ "value": "flip-02";
5371
+ "label": "flip-02";
5378
5372
  }, {
5379
- "value": "attachment";
5380
- "label": "attachment";
5373
+ "value": "folder";
5374
+ "label": "folder";
5381
5375
  }, {
5382
- "value": "command";
5383
- "label": "command";
5376
+ "value": "globe";
5377
+ "label": "globe";
5384
5378
  }, {
5385
- "value": "flag";
5386
- "label": "flag";
5379
+ "value": "hash-tag";
5380
+ "label": "hash-tag";
5387
5381
  }, {
5388
- "value": "minus-circle";
5389
- "label": "minus-circle";
5382
+ "value": "headphones";
5383
+ "label": "headphones";
5390
5384
  }, {
5391
- "value": "selector-circle-filled";
5392
- "label": "selector-circle-filled";
5385
+ "value": "help-buoy";
5386
+ "label": "help-buoy";
5393
5387
  }, {
5394
- "value": "upload";
5395
- "label": "upload";
5388
+ "value": "help-circle";
5389
+ "label": "help-circle";
5396
5390
  }, {
5397
- "value": "award-badge";
5398
- "label": "award-badge";
5391
+ "value": "home";
5392
+ "label": "home";
5399
5393
  }, {
5400
- "value": "corner-down-left";
5401
- "label": "corner-down-left";
5394
+ "value": "info";
5395
+ "label": "info";
5402
5396
  }, {
5403
- "value": "flip-01";
5404
- "label": "flip-01";
5397
+ "value": "jump";
5398
+ "label": "jump";
5405
5399
  }, {
5406
- "value": "minus-square";
5407
- "label": "minus-square";
5400
+ "value": "layers";
5401
+ "label": "layers";
5408
5402
  }, {
5409
- "value": "selector-circle";
5410
- "label": "selector-circle";
5403
+ "value": "link-angle";
5404
+ "label": "link-angle";
5405
+ }, {
5406
+ "value": "link-flat";
5407
+ "label": "link-flat";
5408
+ }, {
5409
+ "value": "loader";
5410
+ "label": "loader";
5411
5411
  }, {
5412
- "value": "user-add";
5413
- "label": "user-add";
5412
+ "value": "location-pin";
5413
+ "label": "location-pin";
5414
5414
  }, {
5415
- "value": "binoculars";
5416
- "label": "binoculars";
5415
+ "value": "lock";
5416
+ "label": "lock";
5417
5417
  }, {
5418
- "value": "corner-down-right";
5419
- "label": "corner-down-right";
5418
+ "value": "map";
5419
+ "label": "map";
5420
5420
  }, {
5421
- "value": "flip-02";
5422
- "label": "flip-02";
5421
+ "value": "message-circle";
5422
+ "label": "message-circle";
5423
5423
  }, {
5424
- "value": "money-sign";
5425
- "label": "money-sign";
5424
+ "value": "message-square";
5425
+ "label": "message-square";
5426
5426
  }, {
5427
- "value": "send";
5428
- "label": "send";
5427
+ "value": "mic-off";
5428
+ "label": "mic-off";
5429
5429
  }, {
5430
- "value": "user-delete";
5431
- "label": "user-delete";
5430
+ "value": "mic-on";
5431
+ "label": "mic-on";
5432
5432
  }, {
5433
- "value": "bolt";
5434
- "label": "bolt";
5433
+ "value": "minus-circle";
5434
+ "label": "minus-circle";
5435
5435
  }, {
5436
- "value": "corner-left-down";
5437
- "label": "corner-left-down";
5436
+ "value": "minus-square";
5437
+ "label": "minus-square";
5438
5438
  }, {
5439
- "value": "folder";
5440
- "label": "folder";
5439
+ "value": "money-sign";
5440
+ "label": "money-sign";
5441
5441
  }, {
5442
5442
  "value": "more-horizontal";
5443
5443
  "label": "more-horizontal";
5444
5444
  }, {
5445
- "value": "settings-filled";
5446
- "label": "settings-filled";
5445
+ "value": "more-vertical";
5446
+ "label": "more-vertical";
5447
5447
  }, {
5448
- "value": "user";
5449
- "label": "user";
5448
+ "value": "notification-off";
5449
+ "label": "notification-off";
5450
5450
  }, {
5451
- "value": "book-open";
5452
- "label": "book-open";
5451
+ "value": "notification-on";
5452
+ "label": "notification-on";
5453
5453
  }, {
5454
- "value": "corner-left-up";
5455
- "label": "corner-left-up";
5454
+ "value": "object";
5455
+ "label": "object";
5456
5456
  }, {
5457
- "value": "globe";
5458
- "label": "globe";
5457
+ "value": "pause-circle";
5458
+ "label": "pause-circle";
5459
5459
  }, {
5460
- "value": "more-vertical";
5461
- "label": "more-vertical";
5460
+ "value": "phone-unavailable";
5461
+ "label": "phone-unavailable";
5462
5462
  }, {
5463
- "value": "settings";
5464
- "label": "settings";
5463
+ "value": "phone";
5464
+ "label": "phone";
5465
5465
  }, {
5466
- "value": "users";
5467
- "label": "users";
5466
+ "value": "photo";
5467
+ "label": "photo";
5468
5468
  }, {
5469
- "value": "book";
5470
- "label": "book";
5469
+ "value": "picked";
5470
+ "label": "picked";
5471
5471
  }, {
5472
- "value": "corner-right-down";
5473
- "label": "corner-right-down";
5472
+ "value": "play-circle";
5473
+ "label": "play-circle";
5474
5474
  }, {
5475
- "value": "hash-tag";
5476
- "label": "hash-tag";
5475
+ "value": "present";
5476
+ "label": "present";
5477
5477
  }, {
5478
- "value": "notification-off";
5479
- "label": "notification-off";
5478
+ "value": "refresh-circle";
5479
+ "label": "refresh-circle";
5480
5480
  }, {
5481
- "value": "share";
5482
- "label": "share";
5481
+ "value": "refresh";
5482
+ "label": "refresh";
5483
5483
  }, {
5484
- "value": "video-off";
5485
- "label": "video-off";
5484
+ "value": "repeat";
5485
+ "label": "repeat";
5486
5486
  }, {
5487
- "value": "bookmark";
5488
- "label": "bookmark";
5487
+ "value": "restricted";
5488
+ "label": "restricted";
5489
5489
  }, {
5490
- "value": "corner-right-up";
5491
- "label": "corner-right-up";
5490
+ "value": "rotate";
5491
+ "label": "rotate";
5492
5492
  }, {
5493
- "value": "headphones";
5494
- "label": "headphones";
5493
+ "value": "search-no";
5494
+ "label": "search-no";
5495
5495
  }, {
5496
- "value": "notification-on";
5497
- "label": "notification-on";
5496
+ "value": "search";
5497
+ "label": "search";
5498
5498
  }, {
5499
- "value": "shopping-bag";
5500
- "label": "shopping-bag";
5499
+ "value": "selector-checked";
5500
+ "label": "selector-checked";
5501
5501
  }, {
5502
- "value": "video";
5503
- "label": "video";
5502
+ "value": "selector-circle-filled";
5503
+ "label": "selector-circle-filled";
5504
5504
  }, {
5505
- "value": "calendar-add";
5506
- "label": "calendar-add";
5505
+ "value": "selector-circle";
5506
+ "label": "selector-circle";
5507
5507
  }, {
5508
- "value": "corner-up-left";
5509
- "label": "corner-up-left";
5508
+ "value": "send";
5509
+ "label": "send";
5510
5510
  }, {
5511
- "value": "help-buoy";
5512
- "label": "help-buoy";
5511
+ "value": "settings-filled";
5512
+ "label": "settings-filled";
5513
5513
  }, {
5514
- "value": "object";
5515
- "label": "object";
5514
+ "value": "settings";
5515
+ "label": "settings";
5516
5516
  }, {
5517
- "value": "shopping-cart";
5518
- "label": "shopping-cart";
5517
+ "value": "share";
5518
+ "label": "share";
5519
5519
  }, {
5520
- "value": "warning";
5521
- "label": "warning";
5520
+ "value": "shopping-bag";
5521
+ "label": "shopping-bag";
5522
5522
  }, {
5523
- "value": "calendar";
5524
- "label": "calendar";
5523
+ "value": "shopping-cart";
5524
+ "label": "shopping-cart";
5525
5525
  }, {
5526
- "value": "corner-up-right";
5527
- "label": "corner-up-right";
5526
+ "value": "sort-filter-down";
5527
+ "label": "sort-filter-down";
5528
5528
  }, {
5529
- "value": "help-circle";
5530
- "label": "help-circle";
5529
+ "value": "sort-filter-up";
5530
+ "label": "sort-filter-up";
5531
5531
  }, {
5532
- "value": "pause-circle";
5533
- "label": "pause-circle";
5532
+ "value": "sound-off";
5533
+ "label": "sound-off";
5534
5534
  }, {
5535
- "value": "sort-filter-down";
5536
- "label": "sort-filter-down";
5535
+ "value": "sound-on";
5536
+ "label": "sound-on";
5537
5537
  }, {
5538
- "value": "wifi";
5539
- "label": "wifi";
5538
+ "value": "sprucebot";
5539
+ "label": "sprucebot";
5540
5540
  }, {
5541
- "value": "camera";
5542
- "label": "camera";
5541
+ "value": "star-filled";
5542
+ "label": "star-filled";
5543
5543
  }, {
5544
- "value": "crop";
5545
- "label": "crop";
5544
+ "value": "star";
5545
+ "label": "star";
5546
5546
  }, {
5547
- "value": "home";
5548
- "label": "home";
5547
+ "value": "sun";
5548
+ "label": "sun";
5549
5549
  }, {
5550
- "value": "phone-unavailable";
5551
- "label": "phone-unavailable";
5550
+ "value": "tag";
5551
+ "label": "tag";
5552
5552
  }, {
5553
- "value": "sort-filter-up";
5554
- "label": "sort-filter-up";
5553
+ "value": "time";
5554
+ "label": "time";
5555
5555
  }, {
5556
- "value": "zoom-in";
5557
- "label": "zoom-in";
5556
+ "value": "tool";
5557
+ "label": "tool";
5558
5558
  }, {
5559
- "value": "cellphone";
5560
- "label": "cellphone";
5559
+ "value": "trending-down";
5560
+ "label": "trending-down";
5561
5561
  }, {
5562
- "value": "delete";
5563
- "label": "delete";
5562
+ "value": "trending-up";
5563
+ "label": "trending-up";
5564
5564
  }, {
5565
- "value": "info";
5566
- "label": "info";
5565
+ "value": "triangle";
5566
+ "label": "triangle";
5567
5567
  }, {
5568
- "value": "phone";
5569
- "label": "phone";
5568
+ "value": "unlock";
5569
+ "label": "unlock";
5570
5570
  }, {
5571
- "value": "sound-off";
5572
- "label": "sound-off";
5571
+ "value": "upload-cloud";
5572
+ "label": "upload-cloud";
5573
5573
  }, {
5574
- "value": "zoom-out";
5575
- "label": "zoom-out";
5574
+ "value": "upload";
5575
+ "label": "upload";
5576
5576
  }, {
5577
- "value": "checkmark";
5578
- "label": "checkmark";
5577
+ "value": "user-add";
5578
+ "label": "user-add";
5579
5579
  }, {
5580
- "value": "document-blank";
5581
- "label": "document-blank";
5580
+ "value": "user-delete";
5581
+ "label": "user-delete";
5582
5582
  }, {
5583
- "value": "jump";
5584
- "label": "jump";
5583
+ "value": "user";
5584
+ "label": "user";
5585
5585
  }, {
5586
- "value": "photo";
5587
- "label": "photo";
5586
+ "value": "users";
5587
+ "label": "users";
5588
5588
  }, {
5589
- "value": "sound-on";
5590
- "label": "sound-on";
5589
+ "value": "video-off";
5590
+ "label": "video-off";
5591
5591
  }, {
5592
- "value": "chevron-down";
5593
- "label": "chevron-down";
5592
+ "value": "video";
5593
+ "label": "video";
5594
5594
  }, {
5595
- "value": "document-new";
5596
- "label": "document-new";
5595
+ "value": "warning";
5596
+ "label": "warning";
5597
5597
  }, {
5598
- "value": "layers";
5599
- "label": "layers";
5598
+ "value": "wifi";
5599
+ "label": "wifi";
5600
5600
  }, {
5601
- "value": "picked";
5602
- "label": "picked";
5601
+ "value": "zoom-in";
5602
+ "label": "zoom-in";
5603
5603
  }, {
5604
- "value": "star-filled";
5605
- "label": "star-filled";
5604
+ "value": "zoom-out";
5605
+ "label": "zoom-out";
5606
5606
  }];
5607
5607
  };
5608
5608
  };