@voyantjs/storefront-sdk 0.31.3 → 0.32.0
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/LICENSE +201 -0
- package/dist/index.d.ts +62 -32
- package/dist/index.d.ts.map +1 -1
- package/dist/operations.d.ts +62 -32
- package/dist/operations.d.ts.map +1 -1
- package/dist/schemas.d.ts +62 -38
- package/dist/schemas.d.ts.map +1 -1
- package/dist/schemas.js +3 -3
- package/package.json +47 -55
package/dist/operations.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export declare function getStorefrontSettings(client: ResolvedClientOptions): Pr
|
|
|
20
20
|
fields: {
|
|
21
21
|
key: string;
|
|
22
22
|
label: string;
|
|
23
|
-
type: "email" | "date" | "text" | "
|
|
23
|
+
type: "email" | "date" | "text" | "select" | "country" | "tel" | "textarea" | "checkbox";
|
|
24
24
|
required: boolean;
|
|
25
25
|
placeholder: string | null;
|
|
26
26
|
description: string | null;
|
|
@@ -35,7 +35,7 @@ export declare function getStorefrontSettings(client: ResolvedClientOptions): Pr
|
|
|
35
35
|
fields: {
|
|
36
36
|
key: string;
|
|
37
37
|
label: string;
|
|
38
|
-
type: "email" | "date" | "text" | "
|
|
38
|
+
type: "email" | "date" | "text" | "select" | "country" | "tel" | "textarea" | "checkbox";
|
|
39
39
|
required: boolean;
|
|
40
40
|
placeholder: string | null;
|
|
41
41
|
description: string | null;
|
|
@@ -48,9 +48,9 @@ export declare function getStorefrontSettings(client: ResolvedClientOptions): Pr
|
|
|
48
48
|
};
|
|
49
49
|
};
|
|
50
50
|
payment: {
|
|
51
|
-
defaultMethod: "
|
|
51
|
+
defaultMethod: "voucher" | "bank_transfer" | "cash" | "invoice" | "card" | null;
|
|
52
52
|
methods: {
|
|
53
|
-
code: "
|
|
53
|
+
code: "voucher" | "bank_transfer" | "cash" | "invoice" | "card";
|
|
54
54
|
label: string;
|
|
55
55
|
description: string | null;
|
|
56
56
|
enabled: boolean;
|
|
@@ -154,7 +154,7 @@ export declare function listStorefrontProductDepartures(client: ResolvedClientOp
|
|
|
154
154
|
}>;
|
|
155
155
|
export declare function getStorefrontProductAvailability(client: ResolvedClientOptions, productId: string, query?: StorefrontProductAvailabilitySummaryQuery): Promise<{
|
|
156
156
|
productId: string;
|
|
157
|
-
availabilityState: "cancelled" | "closed" | "sold_out" | "
|
|
157
|
+
availabilityState: "cancelled" | "closed" | "sold_out" | "past_cutoff" | "too_early" | "on_request" | "available" | "unavailable";
|
|
158
158
|
counts: {
|
|
159
159
|
total: number;
|
|
160
160
|
open: number;
|
|
@@ -175,7 +175,7 @@ export declare function getStorefrontProductAvailability(client: ResolvedClientO
|
|
|
175
175
|
endAt: string | null;
|
|
176
176
|
timezone: string;
|
|
177
177
|
status: "cancelled" | "open" | "closed" | "sold_out" | "on_request";
|
|
178
|
-
availabilityState: "cancelled" | "closed" | "sold_out" | "
|
|
178
|
+
availabilityState: "cancelled" | "closed" | "sold_out" | "past_cutoff" | "too_early" | "on_request" | "available" | "unavailable";
|
|
179
179
|
capacity: number | null;
|
|
180
180
|
remaining: number | null;
|
|
181
181
|
pastCutoff: boolean;
|
|
@@ -213,7 +213,7 @@ export declare function listStorefrontProductExtensions(client: ResolvedClientOp
|
|
|
213
213
|
thumb: string | null;
|
|
214
214
|
pricePerPerson: number | null;
|
|
215
215
|
currencyCode: string;
|
|
216
|
-
pricingMode: "
|
|
216
|
+
pricingMode: "included" | "per_booking" | "free" | "on_request" | "per_person" | "quantity_based";
|
|
217
217
|
defaultQuantity: number | null;
|
|
218
218
|
minQuantity: number | null;
|
|
219
219
|
maxQuantity: number | null;
|
|
@@ -229,7 +229,7 @@ export declare function listStorefrontProductExtensions(client: ResolvedClientOp
|
|
|
229
229
|
thumb: string | null;
|
|
230
230
|
pricePerPerson: number | null;
|
|
231
231
|
currencyCode: string;
|
|
232
|
-
pricingMode: "
|
|
232
|
+
pricingMode: "included" | "per_booking" | "free" | "on_request" | "per_person" | "quantity_based";
|
|
233
233
|
defaultQuantity: number | null;
|
|
234
234
|
minQuantity: number | null;
|
|
235
235
|
maxQuantity: number | null;
|
|
@@ -301,7 +301,7 @@ export declare function getStorefrontOfferBySlug(client: ResolvedClientOptions,
|
|
|
301
301
|
export declare function createPublicBookingSession(client: ResolvedClientOptions, input: PublicCreateBookingSessionInput, options?: StorefrontRequestOptions): Promise<{
|
|
302
302
|
sessionId: string;
|
|
303
303
|
bookingNumber: string;
|
|
304
|
-
status: "draft" | "
|
|
304
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
305
305
|
externalBookingRef: string | null;
|
|
306
306
|
communicationLanguage: string | null;
|
|
307
307
|
sellCurrency: string;
|
|
@@ -332,7 +332,7 @@ export declare function createPublicBookingSession(client: ResolvedClientOptions
|
|
|
332
332
|
title: string;
|
|
333
333
|
description: string | null;
|
|
334
334
|
itemType: "other" | "unit" | "extra" | "service" | "fee" | "tax" | "discount" | "adjustment" | "accommodation" | "transport";
|
|
335
|
-
status: "draft" | "
|
|
335
|
+
status: "draft" | "on_hold" | "confirmed" | "expired" | "cancelled" | "fulfilled";
|
|
336
336
|
serviceDate: string | null;
|
|
337
337
|
startsAt: string | null;
|
|
338
338
|
endsAt: string | null;
|
|
@@ -387,11 +387,16 @@ export declare function createPublicBookingSession(client: ResolvedClientOptions
|
|
|
387
387
|
createdAt: string;
|
|
388
388
|
updatedAt: string;
|
|
389
389
|
} | null;
|
|
390
|
+
checkoutCapability?: {
|
|
391
|
+
token: string;
|
|
392
|
+
expiresAt: string;
|
|
393
|
+
actions: ("session:read" | "session:update" | "session:reprice" | "session:finalize" | "payment:read" | "payment:start")[];
|
|
394
|
+
} | undefined;
|
|
390
395
|
}>;
|
|
391
396
|
export declare function getPublicBookingSession(client: ResolvedClientOptions, sessionId: string): Promise<{
|
|
392
397
|
sessionId: string;
|
|
393
398
|
bookingNumber: string;
|
|
394
|
-
status: "draft" | "
|
|
399
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
395
400
|
externalBookingRef: string | null;
|
|
396
401
|
communicationLanguage: string | null;
|
|
397
402
|
sellCurrency: string;
|
|
@@ -422,7 +427,7 @@ export declare function getPublicBookingSession(client: ResolvedClientOptions, s
|
|
|
422
427
|
title: string;
|
|
423
428
|
description: string | null;
|
|
424
429
|
itemType: "other" | "unit" | "extra" | "service" | "fee" | "tax" | "discount" | "adjustment" | "accommodation" | "transport";
|
|
425
|
-
status: "draft" | "
|
|
430
|
+
status: "draft" | "on_hold" | "confirmed" | "expired" | "cancelled" | "fulfilled";
|
|
426
431
|
serviceDate: string | null;
|
|
427
432
|
startsAt: string | null;
|
|
428
433
|
endsAt: string | null;
|
|
@@ -477,11 +482,16 @@ export declare function getPublicBookingSession(client: ResolvedClientOptions, s
|
|
|
477
482
|
createdAt: string;
|
|
478
483
|
updatedAt: string;
|
|
479
484
|
} | null;
|
|
485
|
+
checkoutCapability?: {
|
|
486
|
+
token: string;
|
|
487
|
+
expiresAt: string;
|
|
488
|
+
actions: ("session:read" | "session:update" | "session:reprice" | "session:finalize" | "payment:read" | "payment:start")[];
|
|
489
|
+
} | undefined;
|
|
480
490
|
}>;
|
|
481
491
|
export declare function updatePublicBookingSession(client: ResolvedClientOptions, sessionId: string, input: PublicUpdateBookingSessionInput, options?: StorefrontRequestOptions): Promise<{
|
|
482
492
|
sessionId: string;
|
|
483
493
|
bookingNumber: string;
|
|
484
|
-
status: "draft" | "
|
|
494
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
485
495
|
externalBookingRef: string | null;
|
|
486
496
|
communicationLanguage: string | null;
|
|
487
497
|
sellCurrency: string;
|
|
@@ -512,7 +522,7 @@ export declare function updatePublicBookingSession(client: ResolvedClientOptions
|
|
|
512
522
|
title: string;
|
|
513
523
|
description: string | null;
|
|
514
524
|
itemType: "other" | "unit" | "extra" | "service" | "fee" | "tax" | "discount" | "adjustment" | "accommodation" | "transport";
|
|
515
|
-
status: "draft" | "
|
|
525
|
+
status: "draft" | "on_hold" | "confirmed" | "expired" | "cancelled" | "fulfilled";
|
|
516
526
|
serviceDate: string | null;
|
|
517
527
|
startsAt: string | null;
|
|
518
528
|
endsAt: string | null;
|
|
@@ -567,6 +577,11 @@ export declare function updatePublicBookingSession(client: ResolvedClientOptions
|
|
|
567
577
|
createdAt: string;
|
|
568
578
|
updatedAt: string;
|
|
569
579
|
} | null;
|
|
580
|
+
checkoutCapability?: {
|
|
581
|
+
token: string;
|
|
582
|
+
expiresAt: string;
|
|
583
|
+
actions: ("session:read" | "session:update" | "session:reprice" | "session:finalize" | "payment:read" | "payment:start")[];
|
|
584
|
+
} | undefined;
|
|
570
585
|
}>;
|
|
571
586
|
export declare function getPublicBookingSessionState(client: ResolvedClientOptions, sessionId: string): Promise<{
|
|
572
587
|
sessionId: string;
|
|
@@ -615,7 +630,7 @@ export declare function repricePublicBookingSession(client: ResolvedClientOption
|
|
|
615
630
|
session: {
|
|
616
631
|
sessionId: string;
|
|
617
632
|
bookingNumber: string;
|
|
618
|
-
status: "draft" | "
|
|
633
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
619
634
|
externalBookingRef: string | null;
|
|
620
635
|
communicationLanguage: string | null;
|
|
621
636
|
sellCurrency: string;
|
|
@@ -646,7 +661,7 @@ export declare function repricePublicBookingSession(client: ResolvedClientOption
|
|
|
646
661
|
title: string;
|
|
647
662
|
description: string | null;
|
|
648
663
|
itemType: "other" | "unit" | "extra" | "service" | "fee" | "tax" | "discount" | "adjustment" | "accommodation" | "transport";
|
|
649
|
-
status: "draft" | "
|
|
664
|
+
status: "draft" | "on_hold" | "confirmed" | "expired" | "cancelled" | "fulfilled";
|
|
650
665
|
serviceDate: string | null;
|
|
651
666
|
startsAt: string | null;
|
|
652
667
|
endsAt: string | null;
|
|
@@ -701,12 +716,17 @@ export declare function repricePublicBookingSession(client: ResolvedClientOption
|
|
|
701
716
|
createdAt: string;
|
|
702
717
|
updatedAt: string;
|
|
703
718
|
} | null;
|
|
719
|
+
checkoutCapability?: {
|
|
720
|
+
token: string;
|
|
721
|
+
expiresAt: string;
|
|
722
|
+
actions: ("session:read" | "session:update" | "session:reprice" | "session:finalize" | "payment:read" | "payment:start")[];
|
|
723
|
+
} | undefined;
|
|
704
724
|
} | null;
|
|
705
725
|
}>;
|
|
706
726
|
export declare function confirmPublicBookingSession(client: ResolvedClientOptions, sessionId: string, input?: PublicBookingSessionMutationInput, options?: StorefrontRequestOptions): Promise<{
|
|
707
727
|
sessionId: string;
|
|
708
728
|
bookingNumber: string;
|
|
709
|
-
status: "draft" | "
|
|
729
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
710
730
|
externalBookingRef: string | null;
|
|
711
731
|
communicationLanguage: string | null;
|
|
712
732
|
sellCurrency: string;
|
|
@@ -737,7 +757,7 @@ export declare function confirmPublicBookingSession(client: ResolvedClientOption
|
|
|
737
757
|
title: string;
|
|
738
758
|
description: string | null;
|
|
739
759
|
itemType: "other" | "unit" | "extra" | "service" | "fee" | "tax" | "discount" | "adjustment" | "accommodation" | "transport";
|
|
740
|
-
status: "draft" | "
|
|
760
|
+
status: "draft" | "on_hold" | "confirmed" | "expired" | "cancelled" | "fulfilled";
|
|
741
761
|
serviceDate: string | null;
|
|
742
762
|
startsAt: string | null;
|
|
743
763
|
endsAt: string | null;
|
|
@@ -792,11 +812,16 @@ export declare function confirmPublicBookingSession(client: ResolvedClientOption
|
|
|
792
812
|
createdAt: string;
|
|
793
813
|
updatedAt: string;
|
|
794
814
|
} | null;
|
|
815
|
+
checkoutCapability?: {
|
|
816
|
+
token: string;
|
|
817
|
+
expiresAt: string;
|
|
818
|
+
actions: ("session:read" | "session:update" | "session:reprice" | "session:finalize" | "payment:read" | "payment:start")[];
|
|
819
|
+
} | undefined;
|
|
795
820
|
}>;
|
|
796
821
|
export declare function expirePublicBookingSession(client: ResolvedClientOptions, sessionId: string, input?: PublicBookingSessionMutationInput, options?: StorefrontRequestOptions): Promise<{
|
|
797
822
|
sessionId: string;
|
|
798
823
|
bookingNumber: string;
|
|
799
|
-
status: "draft" | "
|
|
824
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
800
825
|
externalBookingRef: string | null;
|
|
801
826
|
communicationLanguage: string | null;
|
|
802
827
|
sellCurrency: string;
|
|
@@ -827,7 +852,7 @@ export declare function expirePublicBookingSession(client: ResolvedClientOptions
|
|
|
827
852
|
title: string;
|
|
828
853
|
description: string | null;
|
|
829
854
|
itemType: "other" | "unit" | "extra" | "service" | "fee" | "tax" | "discount" | "adjustment" | "accommodation" | "transport";
|
|
830
|
-
status: "draft" | "
|
|
855
|
+
status: "draft" | "on_hold" | "confirmed" | "expired" | "cancelled" | "fulfilled";
|
|
831
856
|
serviceDate: string | null;
|
|
832
857
|
startsAt: string | null;
|
|
833
858
|
endsAt: string | null;
|
|
@@ -882,11 +907,16 @@ export declare function expirePublicBookingSession(client: ResolvedClientOptions
|
|
|
882
907
|
createdAt: string;
|
|
883
908
|
updatedAt: string;
|
|
884
909
|
} | null;
|
|
910
|
+
checkoutCapability?: {
|
|
911
|
+
token: string;
|
|
912
|
+
expiresAt: string;
|
|
913
|
+
actions: ("session:read" | "session:update" | "session:reprice" | "session:finalize" | "payment:read" | "payment:start")[];
|
|
914
|
+
} | undefined;
|
|
885
915
|
}>;
|
|
886
916
|
export declare function getPublicBookingOverview(client: ResolvedClientOptions, query: PublicBookingOverviewLookupQuery): Promise<{
|
|
887
917
|
bookingId: string;
|
|
888
918
|
bookingNumber: string;
|
|
889
|
-
status: "draft" | "
|
|
919
|
+
status: "draft" | "on_hold" | "awaiting_payment" | "confirmed" | "in_progress" | "completed" | "expired" | "cancelled";
|
|
890
920
|
sellCurrency: string;
|
|
891
921
|
sellAmountCents: number | null;
|
|
892
922
|
startDate: string | null;
|
|
@@ -907,7 +937,7 @@ export declare function getPublicBookingOverview(client: ResolvedClientOptions,
|
|
|
907
937
|
title: string;
|
|
908
938
|
description: string | null;
|
|
909
939
|
itemType: "other" | "unit" | "extra" | "service" | "fee" | "tax" | "discount" | "adjustment" | "accommodation" | "transport";
|
|
910
|
-
status: "draft" | "
|
|
940
|
+
status: "draft" | "on_hold" | "confirmed" | "expired" | "cancelled" | "fulfilled";
|
|
911
941
|
serviceDate: string | null;
|
|
912
942
|
startsAt: string | null;
|
|
913
943
|
endsAt: string | null;
|
|
@@ -942,14 +972,14 @@ export declare function getPublicBookingOverview(client: ResolvedClientOptions,
|
|
|
942
972
|
bookingItemId: string | null;
|
|
943
973
|
travelerId: string | null;
|
|
944
974
|
fulfillmentType: "other" | "voucher" | "ticket" | "pdf" | "qr_code" | "barcode" | "mobile";
|
|
945
|
-
deliveryChannel: "other" | "
|
|
975
|
+
deliveryChannel: "other" | "download" | "email" | "api" | "wallet";
|
|
946
976
|
status: "pending" | "issued" | "reissued" | "revoked" | "failed";
|
|
947
977
|
artifactUrl: string | null;
|
|
948
978
|
}[];
|
|
949
979
|
}>;
|
|
950
980
|
export declare function previewCheckoutCollection(client: ResolvedClientOptions, bookingId: string, input: PreviewCheckoutCollectionInput, options?: StorefrontRequestOptions): Promise<{
|
|
951
981
|
bookingId: string;
|
|
952
|
-
method: "
|
|
982
|
+
method: "bank_transfer" | "card";
|
|
953
983
|
stage: "manual" | "initial" | "reminder";
|
|
954
984
|
paymentSessionTarget: "schedule" | "invoice" | null;
|
|
955
985
|
documentType: "invoice" | "proforma" | null;
|
|
@@ -990,7 +1020,7 @@ export declare function previewCheckoutCollection(client: ResolvedClientOptions,
|
|
|
990
1020
|
export declare function initiateCheckoutCollection(client: ResolvedClientOptions, bookingId: string, input: InitiateCheckoutCollectionInput, options?: StorefrontRequestOptions): Promise<{
|
|
991
1021
|
plan: {
|
|
992
1022
|
bookingId: string;
|
|
993
|
-
method: "
|
|
1023
|
+
method: "bank_transfer" | "card";
|
|
994
1024
|
stage: "manual" | "initial" | "reminder";
|
|
995
1025
|
paymentSessionTarget: "schedule" | "invoice" | null;
|
|
996
1026
|
documentType: "invoice" | "proforma" | null;
|
|
@@ -1048,13 +1078,13 @@ export declare function initiateCheckoutCollection(client: ResolvedClientOptions
|
|
|
1048
1078
|
} | null;
|
|
1049
1079
|
paymentSession: {
|
|
1050
1080
|
id: string;
|
|
1051
|
-
targetType: "other" | "
|
|
1081
|
+
targetType: "other" | "booking" | "order" | "invoice" | "booking_payment_schedule" | "booking_guarantee" | "flight_order";
|
|
1052
1082
|
targetId: string | null;
|
|
1053
1083
|
bookingId: string | null;
|
|
1054
1084
|
invoiceId: string | null;
|
|
1055
1085
|
bookingPaymentScheduleId: string | null;
|
|
1056
1086
|
bookingGuaranteeId: string | null;
|
|
1057
|
-
status: "expired" | "cancelled" | "pending" | "failed" | "
|
|
1087
|
+
status: "expired" | "cancelled" | "pending" | "failed" | "paid" | "requires_redirect" | "processing" | "authorized";
|
|
1058
1088
|
provider: string | null;
|
|
1059
1089
|
providerSessionId: string | null;
|
|
1060
1090
|
providerPaymentId: string | null;
|
|
@@ -1062,7 +1092,7 @@ export declare function initiateCheckoutCollection(client: ResolvedClientOptions
|
|
|
1062
1092
|
clientReference: string | null;
|
|
1063
1093
|
currency: string;
|
|
1064
1094
|
amountCents: number;
|
|
1065
|
-
paymentMethod: "other" | "
|
|
1095
|
+
paymentMethod: "other" | "voucher" | "wallet" | "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "direct_bill" | null;
|
|
1066
1096
|
payerEmail: string | null;
|
|
1067
1097
|
payerName: string | null;
|
|
1068
1098
|
redirectUrl: string | null;
|
|
@@ -1124,7 +1154,7 @@ export declare function initiateCheckoutCollection(client: ResolvedClientOptions
|
|
|
1124
1154
|
export declare function bootstrapCheckoutCollection(client: ResolvedClientOptions, input: BootstrapCheckoutCollectionInput, options?: StorefrontRequestOptions): Promise<{
|
|
1125
1155
|
plan: {
|
|
1126
1156
|
bookingId: string;
|
|
1127
|
-
method: "
|
|
1157
|
+
method: "bank_transfer" | "card";
|
|
1128
1158
|
stage: "manual" | "initial" | "reminder";
|
|
1129
1159
|
paymentSessionTarget: "schedule" | "invoice" | null;
|
|
1130
1160
|
documentType: "invoice" | "proforma" | null;
|
|
@@ -1182,13 +1212,13 @@ export declare function bootstrapCheckoutCollection(client: ResolvedClientOption
|
|
|
1182
1212
|
} | null;
|
|
1183
1213
|
paymentSession: {
|
|
1184
1214
|
id: string;
|
|
1185
|
-
targetType: "other" | "
|
|
1215
|
+
targetType: "other" | "booking" | "order" | "invoice" | "booking_payment_schedule" | "booking_guarantee" | "flight_order";
|
|
1186
1216
|
targetId: string | null;
|
|
1187
1217
|
bookingId: string | null;
|
|
1188
1218
|
invoiceId: string | null;
|
|
1189
1219
|
bookingPaymentScheduleId: string | null;
|
|
1190
1220
|
bookingGuaranteeId: string | null;
|
|
1191
|
-
status: "expired" | "cancelled" | "pending" | "failed" | "
|
|
1221
|
+
status: "expired" | "cancelled" | "pending" | "failed" | "paid" | "requires_redirect" | "processing" | "authorized";
|
|
1192
1222
|
provider: string | null;
|
|
1193
1223
|
providerSessionId: string | null;
|
|
1194
1224
|
providerPaymentId: string | null;
|
|
@@ -1196,7 +1226,7 @@ export declare function bootstrapCheckoutCollection(client: ResolvedClientOption
|
|
|
1196
1226
|
clientReference: string | null;
|
|
1197
1227
|
currency: string;
|
|
1198
1228
|
amountCents: number;
|
|
1199
|
-
paymentMethod: "other" | "
|
|
1229
|
+
paymentMethod: "other" | "voucher" | "wallet" | "bank_transfer" | "credit_card" | "debit_card" | "cash" | "cheque" | "direct_bill" | null;
|
|
1200
1230
|
payerEmail: string | null;
|
|
1201
1231
|
payerName: string | null;
|
|
1202
1232
|
redirectUrl: string | null;
|
package/dist/operations.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../src/operations.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,wBAAwB,EAE7B,KAAK,6BAA6B,EAEnC,MAAM,aAAa,CAAA;AACpB,OAAO,EACL,KAAK,gCAAgC,EAIrC,KAAK,+BAA+B,EAGpC,KAAK,8BAA8B,EACnC,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EACtC,KAAK,gCAAgC,EACrC,KAAK,+BAA+B,EACpC,KAAK,+BAA+B,EACpC,KAAK,oCAAoC,EAYzC,KAAK,4BAA4B,EACjC,KAAK,oCAAoC,EACzC,KAAK,yCAAyC,EAC9C,KAAK,gCAAgC,EACrC,KAAK,mCAAmC,EAezC,MAAM,cAAc,CAAA;AAErB,KAAK,qBAAqB,GAAG,QAAQ,CAAC,IAAI,CAAC,6BAA6B,EAAE,SAAS,GAAG,SAAS,CAAC,CAAC,GAC/F,IAAI,CAAC,6BAA6B,EAAE,SAAS,CAAC,CAAA;AAEhD,wBAAgB,qBAAqB,CAAC,MAAM,EAAE,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAMlE;AAED,wBAAgB,sBAAsB,CAAC,MAAM,EAAE,qBAAqB,EAAE,WAAW,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAMxF;AAED,wBAAgB,+BAA+B,CAC7C,MAAM,EAAE,qBAAqB,EAC7B,SAAS,EAAE,MAAM,EACjB,KAAK,CAAC,EAAE,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAWrC;AAED,wBAAgB,gCAAgC,CAC9C,MAAM,EAAE,qBAAqB,EAC7B,SAAS,EAAE,MAAM,EACjB,KAAK,CAAC,EAAE,yCAAyC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAWlD;AAED,wBAAgB,+BAA+B,CAC7C,MAAM,EAAE,qBAAqB,EAC7B,WAAW,EAAE,MAAM,EACnB,KAAK,EAAE,oCAAoC,EAC3C,OAAO,CAAC,EAAE,wBAAwB;;;;;;;;;;;;;;;GASnC;AAED,wBAAgB,+BAA+B,CAC7C,MAAM,EAAE,qBAAqB,EAC7B,SAAS,EAAE,MAAM,EACjB,KAAK,CAAC,EAAE,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAWzC;AAED,wBAAgB,+BAA+B,CAC7C,MAAM,EAAE,qBAAqB,EAC7B,SAAS,EAAE,MAAM,EACjB,WAAW,EAAE,MAAM;;;;;;;;;;;;;;;;GASpB;AAED,wBAAgB,2BAA2B,CACzC,MAAM,EAAE,qBAAqB,EAC7B,SAAS,EAAE,MAAM,EACjB,KAAK,CAAC,EAAE,mCAAmC;;;;;;;;;;;;;;;;;;KAW5C;AAED,wBAAgB,wBAAwB,CACtC,MAAM,EAAE,qBAAqB,EAC7B,IAAI,EAAE,MAAM,EACZ,KAAK,CAAC,EAAE,IAAI,CAAC,mCAAmC,EAAE,QAAQ,CAAC;;;;;;;;;;;;;;;;;;GAO5D;AAED,wBAAgB,0BAA0B,CACxC,MAAM,EAAE,qBAAqB,EAC7B,KAAK,EAAE,+BAA+B,EACtC,OAAO,CAAC,EAAE,wBAAwB
|
|
1
|
+
{"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../src/operations.ts"],"names":[],"mappings":"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"}
|