@sprucelabs/spruce-calendar-components 28.3.88 → 28.3.90
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.
|
@@ -2518,56 +2518,39 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
2518
2518
|
}
|
|
2519
2519
|
}
|
|
2520
2520
|
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
2521
|
-
interface
|
|
2522
|
-
'
|
|
2521
|
+
interface ListCalendarsEmitTarget {
|
|
2522
|
+
'organizationId'?: string | undefined | null;
|
|
2523
|
+
'calendarPersonId'?: string | undefined | null;
|
|
2523
2524
|
}
|
|
2524
|
-
interface
|
|
2525
|
-
id: '
|
|
2525
|
+
interface ListCalendarsEmitTargetSchema extends SpruceSchema.Schema {
|
|
2526
|
+
id: 'listCalendarsEmitTarget';
|
|
2526
2527
|
version: 'v2021_05_19';
|
|
2527
2528
|
namespace: 'Calendar';
|
|
2528
2529
|
name: '';
|
|
2529
2530
|
fields: {
|
|
2530
2531
|
/** . */
|
|
2531
|
-
'
|
|
2532
|
+
'organizationId': {
|
|
2532
2533
|
type: 'id';
|
|
2533
|
-
isRequired: true;
|
|
2534
2534
|
options: undefined;
|
|
2535
2535
|
};
|
|
2536
|
-
};
|
|
2537
|
-
}
|
|
2538
|
-
interface ListCalendarEventsEmitTargetEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.ListCalendarEventsEmitTargetSchema> {
|
|
2539
|
-
}
|
|
2540
|
-
}
|
|
2541
|
-
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
2542
|
-
interface ListCalendarEventsEmitPayload {
|
|
2543
|
-
'groupIds'?: string[] | undefined | null;
|
|
2544
|
-
}
|
|
2545
|
-
interface ListCalendarEventsEmitPayloadSchema extends SpruceSchema.Schema {
|
|
2546
|
-
id: 'listCalendarEventsEmitPayload';
|
|
2547
|
-
version: 'v2021_05_19';
|
|
2548
|
-
namespace: 'Calendar';
|
|
2549
|
-
name: '';
|
|
2550
|
-
fields: {
|
|
2551
2536
|
/** . */
|
|
2552
|
-
'
|
|
2537
|
+
'calendarPersonId': {
|
|
2553
2538
|
type: 'id';
|
|
2554
|
-
isArray: true;
|
|
2555
2539
|
options: undefined;
|
|
2556
2540
|
};
|
|
2557
2541
|
};
|
|
2558
2542
|
}
|
|
2559
|
-
interface
|
|
2543
|
+
interface ListCalendarsEmitTargetEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.ListCalendarsEmitTargetSchema> {
|
|
2560
2544
|
}
|
|
2561
2545
|
}
|
|
2562
2546
|
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
2563
|
-
interface
|
|
2547
|
+
interface ListCalendarsEmitTargetAndPayload {
|
|
2564
2548
|
/** Source. */
|
|
2565
2549
|
'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
|
|
2566
|
-
'target'
|
|
2567
|
-
'payload'?: SpruceSchemas.Calendar.v2021_05_19.ListCalendarEventsEmitPayload | undefined | null;
|
|
2550
|
+
'target'?: SpruceSchemas.Calendar.v2021_05_19.ListCalendarsEmitTarget | undefined | null;
|
|
2568
2551
|
}
|
|
2569
|
-
interface
|
|
2570
|
-
id: '
|
|
2552
|
+
interface ListCalendarsEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
|
|
2553
|
+
id: 'listCalendarsEmitTargetAndPayload';
|
|
2571
2554
|
version: 'v2021_05_19';
|
|
2572
2555
|
namespace: 'Calendar';
|
|
2573
2556
|
name: '';
|
|
@@ -2583,82 +2566,98 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
2583
2566
|
/** . */
|
|
2584
2567
|
'target': {
|
|
2585
2568
|
type: 'schema';
|
|
2586
|
-
isRequired: true;
|
|
2587
2569
|
options: {
|
|
2588
|
-
schema: SpruceSchemas.Calendar.v2021_05_19.
|
|
2589
|
-
};
|
|
2590
|
-
};
|
|
2591
|
-
/** . */
|
|
2592
|
-
'payload': {
|
|
2593
|
-
type: 'schema';
|
|
2594
|
-
options: {
|
|
2595
|
-
schema: SpruceSchemas.Calendar.v2021_05_19.ListCalendarEventsEmitPayloadSchema;
|
|
2570
|
+
schema: SpruceSchemas.Calendar.v2021_05_19.ListCalendarsEmitTargetSchema;
|
|
2596
2571
|
};
|
|
2597
2572
|
};
|
|
2598
2573
|
};
|
|
2599
2574
|
}
|
|
2600
|
-
interface
|
|
2575
|
+
interface ListCalendarsEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.ListCalendarsEmitTargetAndPayloadSchema> {
|
|
2601
2576
|
}
|
|
2602
2577
|
}
|
|
2603
2578
|
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
2604
|
-
interface
|
|
2605
|
-
'
|
|
2579
|
+
interface ListCalendarsResponsePayload {
|
|
2580
|
+
'calendars': SpruceSchemas.Calendar.v2021_05_19.Calendar[];
|
|
2581
|
+
'count': number;
|
|
2606
2582
|
}
|
|
2607
|
-
interface
|
|
2608
|
-
id: '
|
|
2583
|
+
interface ListCalendarsResponsePayloadSchema extends SpruceSchema.Schema {
|
|
2584
|
+
id: 'listCalendarsResponsePayload';
|
|
2609
2585
|
version: 'v2021_05_19';
|
|
2610
2586
|
namespace: 'Calendar';
|
|
2611
2587
|
name: '';
|
|
2612
2588
|
fields: {
|
|
2613
2589
|
/** . */
|
|
2614
|
-
'
|
|
2590
|
+
'calendars': {
|
|
2615
2591
|
type: 'schema';
|
|
2616
2592
|
isRequired: true;
|
|
2617
2593
|
isArray: true;
|
|
2618
2594
|
minArrayLength: 0;
|
|
2619
2595
|
options: {
|
|
2620
|
-
schema: SpruceSchemas.
|
|
2596
|
+
schema: SpruceSchemas.Calendar.v2021_05_19.CalendarSchema;
|
|
2621
2597
|
};
|
|
2622
2598
|
};
|
|
2599
|
+
/** . */
|
|
2600
|
+
'count': {
|
|
2601
|
+
type: 'number';
|
|
2602
|
+
isRequired: true;
|
|
2603
|
+
options: undefined;
|
|
2604
|
+
};
|
|
2623
2605
|
};
|
|
2624
2606
|
}
|
|
2625
|
-
interface
|
|
2607
|
+
interface ListCalendarsResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.ListCalendarsResponsePayloadSchema> {
|
|
2626
2608
|
}
|
|
2627
2609
|
}
|
|
2628
2610
|
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
2629
|
-
interface
|
|
2630
|
-
'
|
|
2631
|
-
'calendarPersonId'?: string | undefined | null;
|
|
2611
|
+
interface ListCalendarEventsEmitTarget {
|
|
2612
|
+
'locationId': string;
|
|
2632
2613
|
}
|
|
2633
|
-
interface
|
|
2634
|
-
id: '
|
|
2614
|
+
interface ListCalendarEventsEmitTargetSchema extends SpruceSchema.Schema {
|
|
2615
|
+
id: 'listCalendarEventsEmitTarget';
|
|
2635
2616
|
version: 'v2021_05_19';
|
|
2636
2617
|
namespace: 'Calendar';
|
|
2637
2618
|
name: '';
|
|
2638
2619
|
fields: {
|
|
2639
2620
|
/** . */
|
|
2640
|
-
'
|
|
2621
|
+
'locationId': {
|
|
2641
2622
|
type: 'id';
|
|
2623
|
+
isRequired: true;
|
|
2642
2624
|
options: undefined;
|
|
2643
2625
|
};
|
|
2626
|
+
};
|
|
2627
|
+
}
|
|
2628
|
+
interface ListCalendarEventsEmitTargetEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.ListCalendarEventsEmitTargetSchema> {
|
|
2629
|
+
}
|
|
2630
|
+
}
|
|
2631
|
+
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
2632
|
+
interface ListCalendarEventsEmitPayload {
|
|
2633
|
+
'groupIds'?: string[] | undefined | null;
|
|
2634
|
+
}
|
|
2635
|
+
interface ListCalendarEventsEmitPayloadSchema extends SpruceSchema.Schema {
|
|
2636
|
+
id: 'listCalendarEventsEmitPayload';
|
|
2637
|
+
version: 'v2021_05_19';
|
|
2638
|
+
namespace: 'Calendar';
|
|
2639
|
+
name: '';
|
|
2640
|
+
fields: {
|
|
2644
2641
|
/** . */
|
|
2645
|
-
'
|
|
2642
|
+
'groupIds': {
|
|
2646
2643
|
type: 'id';
|
|
2644
|
+
isArray: true;
|
|
2647
2645
|
options: undefined;
|
|
2648
2646
|
};
|
|
2649
2647
|
};
|
|
2650
2648
|
}
|
|
2651
|
-
interface
|
|
2649
|
+
interface ListCalendarEventsEmitPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.ListCalendarEventsEmitPayloadSchema> {
|
|
2652
2650
|
}
|
|
2653
2651
|
}
|
|
2654
2652
|
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
2655
|
-
interface
|
|
2653
|
+
interface ListCalendarEventsEmitTargetAndPayload {
|
|
2656
2654
|
/** Source. */
|
|
2657
2655
|
'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
|
|
2658
|
-
'target'
|
|
2656
|
+
'target': SpruceSchemas.Calendar.v2021_05_19.ListCalendarEventsEmitTarget;
|
|
2657
|
+
'payload'?: SpruceSchemas.Calendar.v2021_05_19.ListCalendarEventsEmitPayload | undefined | null;
|
|
2659
2658
|
}
|
|
2660
|
-
interface
|
|
2661
|
-
id: '
|
|
2659
|
+
interface ListCalendarEventsEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
|
|
2660
|
+
id: 'listCalendarEventsEmitTargetAndPayload';
|
|
2662
2661
|
version: 'v2021_05_19';
|
|
2663
2662
|
namespace: 'Calendar';
|
|
2664
2663
|
name: '';
|
|
@@ -2674,45 +2673,46 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
2674
2673
|
/** . */
|
|
2675
2674
|
'target': {
|
|
2676
2675
|
type: 'schema';
|
|
2676
|
+
isRequired: true;
|
|
2677
2677
|
options: {
|
|
2678
|
-
schema: SpruceSchemas.Calendar.v2021_05_19.
|
|
2678
|
+
schema: SpruceSchemas.Calendar.v2021_05_19.ListCalendarEventsEmitTargetSchema;
|
|
2679
|
+
};
|
|
2680
|
+
};
|
|
2681
|
+
/** . */
|
|
2682
|
+
'payload': {
|
|
2683
|
+
type: 'schema';
|
|
2684
|
+
options: {
|
|
2685
|
+
schema: SpruceSchemas.Calendar.v2021_05_19.ListCalendarEventsEmitPayloadSchema;
|
|
2679
2686
|
};
|
|
2680
2687
|
};
|
|
2681
2688
|
};
|
|
2682
2689
|
}
|
|
2683
|
-
interface
|
|
2690
|
+
interface ListCalendarEventsEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.ListCalendarEventsEmitTargetAndPayloadSchema> {
|
|
2684
2691
|
}
|
|
2685
2692
|
}
|
|
2686
2693
|
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
2687
|
-
interface
|
|
2688
|
-
'
|
|
2689
|
-
'count': number;
|
|
2694
|
+
interface ListCalendarEventsResponsePayload {
|
|
2695
|
+
'calendarEvents': SpruceSchemas.CalendarUtils.v2021_05_19.CalendarEvent[];
|
|
2690
2696
|
}
|
|
2691
|
-
interface
|
|
2692
|
-
id: '
|
|
2697
|
+
interface ListCalendarEventsResponsePayloadSchema extends SpruceSchema.Schema {
|
|
2698
|
+
id: 'listCalendarEventsResponsePayload';
|
|
2693
2699
|
version: 'v2021_05_19';
|
|
2694
2700
|
namespace: 'Calendar';
|
|
2695
2701
|
name: '';
|
|
2696
2702
|
fields: {
|
|
2697
2703
|
/** . */
|
|
2698
|
-
'
|
|
2704
|
+
'calendarEvents': {
|
|
2699
2705
|
type: 'schema';
|
|
2700
2706
|
isRequired: true;
|
|
2701
2707
|
isArray: true;
|
|
2702
2708
|
minArrayLength: 0;
|
|
2703
2709
|
options: {
|
|
2704
|
-
schema: SpruceSchemas.
|
|
2710
|
+
schema: SpruceSchemas.CalendarUtils.v2021_05_19.CalendarEventSchema;
|
|
2705
2711
|
};
|
|
2706
2712
|
};
|
|
2707
|
-
/** . */
|
|
2708
|
-
'count': {
|
|
2709
|
-
type: 'number';
|
|
2710
|
-
isRequired: true;
|
|
2711
|
-
options: undefined;
|
|
2712
|
-
};
|
|
2713
2713
|
};
|
|
2714
2714
|
}
|
|
2715
|
-
interface
|
|
2715
|
+
interface ListCalendarEventsResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.ListCalendarEventsResponsePayloadSchema> {
|
|
2716
2716
|
}
|
|
2717
2717
|
}
|
|
2718
2718
|
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
@@ -2518,56 +2518,39 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
2518
2518
|
}
|
|
2519
2519
|
}
|
|
2520
2520
|
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
2521
|
-
interface
|
|
2522
|
-
'
|
|
2521
|
+
interface ListCalendarsEmitTarget {
|
|
2522
|
+
'organizationId'?: string | undefined | null;
|
|
2523
|
+
'calendarPersonId'?: string | undefined | null;
|
|
2523
2524
|
}
|
|
2524
|
-
interface
|
|
2525
|
-
id: '
|
|
2525
|
+
interface ListCalendarsEmitTargetSchema extends SpruceSchema.Schema {
|
|
2526
|
+
id: 'listCalendarsEmitTarget';
|
|
2526
2527
|
version: 'v2021_05_19';
|
|
2527
2528
|
namespace: 'Calendar';
|
|
2528
2529
|
name: '';
|
|
2529
2530
|
fields: {
|
|
2530
2531
|
/** . */
|
|
2531
|
-
'
|
|
2532
|
+
'organizationId': {
|
|
2532
2533
|
type: 'id';
|
|
2533
|
-
isRequired: true;
|
|
2534
2534
|
options: undefined;
|
|
2535
2535
|
};
|
|
2536
|
-
};
|
|
2537
|
-
}
|
|
2538
|
-
interface ListCalendarEventsEmitTargetEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.ListCalendarEventsEmitTargetSchema> {
|
|
2539
|
-
}
|
|
2540
|
-
}
|
|
2541
|
-
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
2542
|
-
interface ListCalendarEventsEmitPayload {
|
|
2543
|
-
'groupIds'?: string[] | undefined | null;
|
|
2544
|
-
}
|
|
2545
|
-
interface ListCalendarEventsEmitPayloadSchema extends SpruceSchema.Schema {
|
|
2546
|
-
id: 'listCalendarEventsEmitPayload';
|
|
2547
|
-
version: 'v2021_05_19';
|
|
2548
|
-
namespace: 'Calendar';
|
|
2549
|
-
name: '';
|
|
2550
|
-
fields: {
|
|
2551
2536
|
/** . */
|
|
2552
|
-
'
|
|
2537
|
+
'calendarPersonId': {
|
|
2553
2538
|
type: 'id';
|
|
2554
|
-
isArray: true;
|
|
2555
2539
|
options: undefined;
|
|
2556
2540
|
};
|
|
2557
2541
|
};
|
|
2558
2542
|
}
|
|
2559
|
-
interface
|
|
2543
|
+
interface ListCalendarsEmitTargetEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.ListCalendarsEmitTargetSchema> {
|
|
2560
2544
|
}
|
|
2561
2545
|
}
|
|
2562
2546
|
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
2563
|
-
interface
|
|
2547
|
+
interface ListCalendarsEmitTargetAndPayload {
|
|
2564
2548
|
/** Source. */
|
|
2565
2549
|
'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
|
|
2566
|
-
'target'
|
|
2567
|
-
'payload'?: SpruceSchemas.Calendar.v2021_05_19.ListCalendarEventsEmitPayload | undefined | null;
|
|
2550
|
+
'target'?: SpruceSchemas.Calendar.v2021_05_19.ListCalendarsEmitTarget | undefined | null;
|
|
2568
2551
|
}
|
|
2569
|
-
interface
|
|
2570
|
-
id: '
|
|
2552
|
+
interface ListCalendarsEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
|
|
2553
|
+
id: 'listCalendarsEmitTargetAndPayload';
|
|
2571
2554
|
version: 'v2021_05_19';
|
|
2572
2555
|
namespace: 'Calendar';
|
|
2573
2556
|
name: '';
|
|
@@ -2583,82 +2566,98 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
2583
2566
|
/** . */
|
|
2584
2567
|
'target': {
|
|
2585
2568
|
type: 'schema';
|
|
2586
|
-
isRequired: true;
|
|
2587
2569
|
options: {
|
|
2588
|
-
schema: SpruceSchemas.Calendar.v2021_05_19.
|
|
2589
|
-
};
|
|
2590
|
-
};
|
|
2591
|
-
/** . */
|
|
2592
|
-
'payload': {
|
|
2593
|
-
type: 'schema';
|
|
2594
|
-
options: {
|
|
2595
|
-
schema: SpruceSchemas.Calendar.v2021_05_19.ListCalendarEventsEmitPayloadSchema;
|
|
2570
|
+
schema: SpruceSchemas.Calendar.v2021_05_19.ListCalendarsEmitTargetSchema;
|
|
2596
2571
|
};
|
|
2597
2572
|
};
|
|
2598
2573
|
};
|
|
2599
2574
|
}
|
|
2600
|
-
interface
|
|
2575
|
+
interface ListCalendarsEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.ListCalendarsEmitTargetAndPayloadSchema> {
|
|
2601
2576
|
}
|
|
2602
2577
|
}
|
|
2603
2578
|
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
2604
|
-
interface
|
|
2605
|
-
'
|
|
2579
|
+
interface ListCalendarsResponsePayload {
|
|
2580
|
+
'calendars': SpruceSchemas.Calendar.v2021_05_19.Calendar[];
|
|
2581
|
+
'count': number;
|
|
2606
2582
|
}
|
|
2607
|
-
interface
|
|
2608
|
-
id: '
|
|
2583
|
+
interface ListCalendarsResponsePayloadSchema extends SpruceSchema.Schema {
|
|
2584
|
+
id: 'listCalendarsResponsePayload';
|
|
2609
2585
|
version: 'v2021_05_19';
|
|
2610
2586
|
namespace: 'Calendar';
|
|
2611
2587
|
name: '';
|
|
2612
2588
|
fields: {
|
|
2613
2589
|
/** . */
|
|
2614
|
-
'
|
|
2590
|
+
'calendars': {
|
|
2615
2591
|
type: 'schema';
|
|
2616
2592
|
isRequired: true;
|
|
2617
2593
|
isArray: true;
|
|
2618
2594
|
minArrayLength: 0;
|
|
2619
2595
|
options: {
|
|
2620
|
-
schema: SpruceSchemas.
|
|
2596
|
+
schema: SpruceSchemas.Calendar.v2021_05_19.CalendarSchema;
|
|
2621
2597
|
};
|
|
2622
2598
|
};
|
|
2599
|
+
/** . */
|
|
2600
|
+
'count': {
|
|
2601
|
+
type: 'number';
|
|
2602
|
+
isRequired: true;
|
|
2603
|
+
options: undefined;
|
|
2604
|
+
};
|
|
2623
2605
|
};
|
|
2624
2606
|
}
|
|
2625
|
-
interface
|
|
2607
|
+
interface ListCalendarsResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.ListCalendarsResponsePayloadSchema> {
|
|
2626
2608
|
}
|
|
2627
2609
|
}
|
|
2628
2610
|
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
2629
|
-
interface
|
|
2630
|
-
'
|
|
2631
|
-
'calendarPersonId'?: string | undefined | null;
|
|
2611
|
+
interface ListCalendarEventsEmitTarget {
|
|
2612
|
+
'locationId': string;
|
|
2632
2613
|
}
|
|
2633
|
-
interface
|
|
2634
|
-
id: '
|
|
2614
|
+
interface ListCalendarEventsEmitTargetSchema extends SpruceSchema.Schema {
|
|
2615
|
+
id: 'listCalendarEventsEmitTarget';
|
|
2635
2616
|
version: 'v2021_05_19';
|
|
2636
2617
|
namespace: 'Calendar';
|
|
2637
2618
|
name: '';
|
|
2638
2619
|
fields: {
|
|
2639
2620
|
/** . */
|
|
2640
|
-
'
|
|
2621
|
+
'locationId': {
|
|
2641
2622
|
type: 'id';
|
|
2623
|
+
isRequired: true;
|
|
2642
2624
|
options: undefined;
|
|
2643
2625
|
};
|
|
2626
|
+
};
|
|
2627
|
+
}
|
|
2628
|
+
interface ListCalendarEventsEmitTargetEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.ListCalendarEventsEmitTargetSchema> {
|
|
2629
|
+
}
|
|
2630
|
+
}
|
|
2631
|
+
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
2632
|
+
interface ListCalendarEventsEmitPayload {
|
|
2633
|
+
'groupIds'?: string[] | undefined | null;
|
|
2634
|
+
}
|
|
2635
|
+
interface ListCalendarEventsEmitPayloadSchema extends SpruceSchema.Schema {
|
|
2636
|
+
id: 'listCalendarEventsEmitPayload';
|
|
2637
|
+
version: 'v2021_05_19';
|
|
2638
|
+
namespace: 'Calendar';
|
|
2639
|
+
name: '';
|
|
2640
|
+
fields: {
|
|
2644
2641
|
/** . */
|
|
2645
|
-
'
|
|
2642
|
+
'groupIds': {
|
|
2646
2643
|
type: 'id';
|
|
2644
|
+
isArray: true;
|
|
2647
2645
|
options: undefined;
|
|
2648
2646
|
};
|
|
2649
2647
|
};
|
|
2650
2648
|
}
|
|
2651
|
-
interface
|
|
2649
|
+
interface ListCalendarEventsEmitPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.ListCalendarEventsEmitPayloadSchema> {
|
|
2652
2650
|
}
|
|
2653
2651
|
}
|
|
2654
2652
|
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
2655
|
-
interface
|
|
2653
|
+
interface ListCalendarEventsEmitTargetAndPayload {
|
|
2656
2654
|
/** Source. */
|
|
2657
2655
|
'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
|
|
2658
|
-
'target'
|
|
2656
|
+
'target': SpruceSchemas.Calendar.v2021_05_19.ListCalendarEventsEmitTarget;
|
|
2657
|
+
'payload'?: SpruceSchemas.Calendar.v2021_05_19.ListCalendarEventsEmitPayload | undefined | null;
|
|
2659
2658
|
}
|
|
2660
|
-
interface
|
|
2661
|
-
id: '
|
|
2659
|
+
interface ListCalendarEventsEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
|
|
2660
|
+
id: 'listCalendarEventsEmitTargetAndPayload';
|
|
2662
2661
|
version: 'v2021_05_19';
|
|
2663
2662
|
namespace: 'Calendar';
|
|
2664
2663
|
name: '';
|
|
@@ -2674,45 +2673,46 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
2674
2673
|
/** . */
|
|
2675
2674
|
'target': {
|
|
2676
2675
|
type: 'schema';
|
|
2676
|
+
isRequired: true;
|
|
2677
2677
|
options: {
|
|
2678
|
-
schema: SpruceSchemas.Calendar.v2021_05_19.
|
|
2678
|
+
schema: SpruceSchemas.Calendar.v2021_05_19.ListCalendarEventsEmitTargetSchema;
|
|
2679
|
+
};
|
|
2680
|
+
};
|
|
2681
|
+
/** . */
|
|
2682
|
+
'payload': {
|
|
2683
|
+
type: 'schema';
|
|
2684
|
+
options: {
|
|
2685
|
+
schema: SpruceSchemas.Calendar.v2021_05_19.ListCalendarEventsEmitPayloadSchema;
|
|
2679
2686
|
};
|
|
2680
2687
|
};
|
|
2681
2688
|
};
|
|
2682
2689
|
}
|
|
2683
|
-
interface
|
|
2690
|
+
interface ListCalendarEventsEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.ListCalendarEventsEmitTargetAndPayloadSchema> {
|
|
2684
2691
|
}
|
|
2685
2692
|
}
|
|
2686
2693
|
namespace SpruceSchemas.Calendar.v2021_05_19 {
|
|
2687
|
-
interface
|
|
2688
|
-
'
|
|
2689
|
-
'count': number;
|
|
2694
|
+
interface ListCalendarEventsResponsePayload {
|
|
2695
|
+
'calendarEvents': SpruceSchemas.CalendarUtils.v2021_05_19.CalendarEvent[];
|
|
2690
2696
|
}
|
|
2691
|
-
interface
|
|
2692
|
-
id: '
|
|
2697
|
+
interface ListCalendarEventsResponsePayloadSchema extends SpruceSchema.Schema {
|
|
2698
|
+
id: 'listCalendarEventsResponsePayload';
|
|
2693
2699
|
version: 'v2021_05_19';
|
|
2694
2700
|
namespace: 'Calendar';
|
|
2695
2701
|
name: '';
|
|
2696
2702
|
fields: {
|
|
2697
2703
|
/** . */
|
|
2698
|
-
'
|
|
2704
|
+
'calendarEvents': {
|
|
2699
2705
|
type: 'schema';
|
|
2700
2706
|
isRequired: true;
|
|
2701
2707
|
isArray: true;
|
|
2702
2708
|
minArrayLength: 0;
|
|
2703
2709
|
options: {
|
|
2704
|
-
schema: SpruceSchemas.
|
|
2710
|
+
schema: SpruceSchemas.CalendarUtils.v2021_05_19.CalendarEventSchema;
|
|
2705
2711
|
};
|
|
2706
2712
|
};
|
|
2707
|
-
/** . */
|
|
2708
|
-
'count': {
|
|
2709
|
-
type: 'number';
|
|
2710
|
-
isRequired: true;
|
|
2711
|
-
options: undefined;
|
|
2712
|
-
};
|
|
2713
2713
|
};
|
|
2714
2714
|
}
|
|
2715
|
-
interface
|
|
2715
|
+
interface ListCalendarEventsResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Calendar.v2021_05_19.ListCalendarEventsResponsePayloadSchema> {
|
|
2716
2716
|
}
|
|
2717
2717
|
}
|
|
2718
2718
|
namespace SpruceSchemas.Calendar.v2021_05_19 {
|