@wix/auto_sdk_calendar_events 1.0.34 → 1.0.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.js +13 -9
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +49 -25
- package/build/cjs/index.typings.js +13 -9
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +33 -21
- package/build/es/index.mjs +13 -9
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +49 -25
- package/build/es/index.typings.mjs +13 -9
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +33 -21
- package/build/internal/cjs/index.js +13 -9
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +49 -25
- package/build/internal/cjs/index.typings.js +13 -9
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +33 -21
- package/build/internal/es/index.mjs +13 -9
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +49 -25
- package/build/internal/es/index.typings.mjs +13 -9
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +33 -21
- package/package.json +3 -2
package/build/es/meta.d.mts
CHANGED
|
@@ -664,7 +664,7 @@ interface ListEventsByContactIdRequest {
|
|
|
664
664
|
* `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
|
|
665
665
|
*
|
|
666
666
|
* Events that start before the `fromLocalDate` but end after it are included in
|
|
667
|
-
* the results. Must be earlier than `toLocalDate
|
|
667
|
+
* the results. Must be earlier than `toLocalDate` unless the sort order is descending.
|
|
668
668
|
* @format LOCAL_DATE_TIME
|
|
669
669
|
*/
|
|
670
670
|
fromLocalDate?: string | null;
|
|
@@ -675,7 +675,7 @@ interface ListEventsByContactIdRequest {
|
|
|
675
675
|
* `2024-01-30T13:30:00`. Required if `cursorPaging` isn't provided.
|
|
676
676
|
*
|
|
677
677
|
* Events that start before `toLocalDate` but end after it are included in the
|
|
678
|
-
* results. Must be later than `fromLocalDate
|
|
678
|
+
* results. Must be later than `fromLocalDate` unless the sort order is descending.
|
|
679
679
|
* @format LOCAL_DATE_TIME
|
|
680
680
|
*/
|
|
681
681
|
toLocalDate?: string | null;
|
|
@@ -695,6 +695,12 @@ interface ListEventsByContactIdRequest {
|
|
|
695
695
|
appId?: string | null;
|
|
696
696
|
/** Cursor to retrieve the next page of the results. */
|
|
697
697
|
cursorPaging?: CommonCursorPaging;
|
|
698
|
+
/**
|
|
699
|
+
* Sorting for the results.
|
|
700
|
+
* If not specified, results are sorted by `start` ascending.
|
|
701
|
+
* For DESC order, events are sorted by `end` time in descending order.
|
|
702
|
+
*/
|
|
703
|
+
sort?: Sorting;
|
|
698
704
|
}
|
|
699
705
|
/** TODO Diverge */
|
|
700
706
|
interface CommonCursorPaging {
|
|
@@ -714,6 +720,23 @@ interface CommonCursorPaging {
|
|
|
714
720
|
*/
|
|
715
721
|
cursor?: string | null;
|
|
716
722
|
}
|
|
723
|
+
/** TODO Diverge */
|
|
724
|
+
interface Sorting {
|
|
725
|
+
/**
|
|
726
|
+
* The field to sort by.
|
|
727
|
+
* Either `start` or `end`.
|
|
728
|
+
* Default is `start`.
|
|
729
|
+
*/
|
|
730
|
+
fieldName?: string;
|
|
731
|
+
/** Sort order. */
|
|
732
|
+
order?: SortOrderWithLiterals;
|
|
733
|
+
}
|
|
734
|
+
declare enum SortOrder {
|
|
735
|
+
ASC = "ASC",
|
|
736
|
+
DESC = "DESC"
|
|
737
|
+
}
|
|
738
|
+
/** @enumType */
|
|
739
|
+
type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
|
|
717
740
|
interface ListEventsByContactIdResponse {
|
|
718
741
|
/** Retrieved events. */
|
|
719
742
|
events?: Event[];
|
|
@@ -755,7 +778,7 @@ interface ListEventsByMemberIdRequest {
|
|
|
755
778
|
* `2024-01-30T13:30:00`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
|
|
756
779
|
*
|
|
757
780
|
* Events that start before the `fromLocalDate` but end after it are included in
|
|
758
|
-
* the results. Must be earlier than `toLocalDate
|
|
781
|
+
* the results. Must be earlier than `toLocalDate` unless the sort order is descending.
|
|
759
782
|
* @format LOCAL_DATE_TIME
|
|
760
783
|
*/
|
|
761
784
|
fromLocalDate?: string | null;
|
|
@@ -766,7 +789,7 @@ interface ListEventsByMemberIdRequest {
|
|
|
766
789
|
* `fromLocalDate`. Required if neither `cursorPaging` is provided nor a non-empty `eventIds` array.
|
|
767
790
|
*
|
|
768
791
|
* Events that start before `toLocalDate` but end after it are included in the
|
|
769
|
-
* results. Must be later than `fromLocalDate
|
|
792
|
+
* results. Must be later than `fromLocalDate` unless the sort order is descending.
|
|
770
793
|
* @format LOCAL_DATE_TIME
|
|
771
794
|
*/
|
|
772
795
|
toLocalDate?: string | null;
|
|
@@ -796,6 +819,12 @@ interface ListEventsByMemberIdRequest {
|
|
|
796
819
|
* @maxLength 250
|
|
797
820
|
*/
|
|
798
821
|
eventIds?: string[];
|
|
822
|
+
/**
|
|
823
|
+
* Sorting for the results.
|
|
824
|
+
* If not specified, results are sorted by `start` ascending.
|
|
825
|
+
* For DESC order, events are sorted by `end` time in descending order.
|
|
826
|
+
*/
|
|
827
|
+
sort?: Sorting;
|
|
799
828
|
}
|
|
800
829
|
interface ListEventsByMemberIdResponse {
|
|
801
830
|
/** Retrieved events. */
|
|
@@ -979,23 +1008,6 @@ interface CursorQueryPagingMethodOneOf {
|
|
|
979
1008
|
cursorPaging?: CursorPaging;
|
|
980
1009
|
}
|
|
981
1010
|
/** TODO Diverge */
|
|
982
|
-
interface Sorting {
|
|
983
|
-
/**
|
|
984
|
-
* The field to sort by.
|
|
985
|
-
* Either `start` or `end`.
|
|
986
|
-
* Default is `start`.
|
|
987
|
-
*/
|
|
988
|
-
fieldName?: string;
|
|
989
|
-
/** Sort order. */
|
|
990
|
-
order?: SortOrderWithLiterals;
|
|
991
|
-
}
|
|
992
|
-
declare enum SortOrder {
|
|
993
|
-
ASC = "ASC",
|
|
994
|
-
DESC = "DESC"
|
|
995
|
-
}
|
|
996
|
-
/** @enumType */
|
|
997
|
-
type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
|
|
998
|
-
/** TODO Diverge */
|
|
999
1011
|
interface CursorPaging {
|
|
1000
1012
|
/**
|
|
1001
1013
|
* Number of events to return.
|
|
@@ -795,6 +795,11 @@ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
|
795
795
|
WebhookIdentityType2["APP"] = "APP";
|
|
796
796
|
return WebhookIdentityType2;
|
|
797
797
|
})(WebhookIdentityType || {});
|
|
798
|
+
var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
|
|
799
|
+
SortOrder2["ASC"] = "ASC";
|
|
800
|
+
SortOrder2["DESC"] = "DESC";
|
|
801
|
+
return SortOrder2;
|
|
802
|
+
})(SortOrder || {});
|
|
798
803
|
var PlacementType = /* @__PURE__ */ ((PlacementType2) => {
|
|
799
804
|
PlacementType2["BEFORE"] = "BEFORE";
|
|
800
805
|
PlacementType2["AFTER"] = "AFTER";
|
|
@@ -823,11 +828,6 @@ var RequestedFields = /* @__PURE__ */ ((RequestedFields2) => {
|
|
|
823
828
|
RequestedFields2["OWN_PI_FIELDS"] = "OWN_PI_FIELDS";
|
|
824
829
|
return RequestedFields2;
|
|
825
830
|
})(RequestedFields || {});
|
|
826
|
-
var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
|
|
827
|
-
SortOrder2["ASC"] = "ASC";
|
|
828
|
-
SortOrder2["DESC"] = "DESC";
|
|
829
|
-
return SortOrder2;
|
|
830
|
-
})(SortOrder || {});
|
|
831
831
|
async function listEventsByContactId2(contactId, options) {
|
|
832
832
|
const { httpClient, sideEffects } = arguments[2];
|
|
833
833
|
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
|
|
@@ -836,7 +836,8 @@ async function listEventsByContactId2(contactId, options) {
|
|
|
836
836
|
toLocalDate: options?.toLocalDate,
|
|
837
837
|
timeZone: options?.timeZone,
|
|
838
838
|
appId: options?.appId,
|
|
839
|
-
cursorPaging: options?.cursorPaging
|
|
839
|
+
cursorPaging: options?.cursorPaging,
|
|
840
|
+
sort: options?.sort
|
|
840
841
|
});
|
|
841
842
|
const reqOpts = listEventsByContactId(payload);
|
|
842
843
|
sideEffects?.onSiteCall?.();
|
|
@@ -855,7 +856,8 @@ async function listEventsByContactId2(contactId, options) {
|
|
|
855
856
|
toLocalDate: "$[1].toLocalDate",
|
|
856
857
|
timeZone: "$[1].timeZone",
|
|
857
858
|
appId: "$[1].appId",
|
|
858
|
-
cursorPaging: "$[1].cursorPaging"
|
|
859
|
+
cursorPaging: "$[1].cursorPaging",
|
|
860
|
+
sort: "$[1].sort"
|
|
859
861
|
},
|
|
860
862
|
singleArgumentUnchanged: false
|
|
861
863
|
},
|
|
@@ -874,7 +876,8 @@ async function listEventsByMemberId2(memberId, options) {
|
|
|
874
876
|
timeZone: options?.timeZone,
|
|
875
877
|
appId: options?.appId,
|
|
876
878
|
cursorPaging: options?.cursorPaging,
|
|
877
|
-
eventIds: options?.eventIds
|
|
879
|
+
eventIds: options?.eventIds,
|
|
880
|
+
sort: options?.sort
|
|
878
881
|
});
|
|
879
882
|
const reqOpts = listEventsByMemberId(payload);
|
|
880
883
|
sideEffects?.onSiteCall?.();
|
|
@@ -894,7 +897,8 @@ async function listEventsByMemberId2(memberId, options) {
|
|
|
894
897
|
timeZone: "$[1].timeZone",
|
|
895
898
|
appId: "$[1].appId",
|
|
896
899
|
cursorPaging: "$[1].cursorPaging",
|
|
897
|
-
eventIds: "$[1].eventIds"
|
|
900
|
+
eventIds: "$[1].eventIds",
|
|
901
|
+
sort: "$[1].sort"
|
|
898
902
|
},
|
|
899
903
|
singleArgumentUnchanged: false
|
|
900
904
|
},
|