@channel.io/app-sdk-core 0.6.12 → 0.7.1
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/dist/extensions/apikey.d.ts +23 -0
- package/dist/extensions/apikey.d.ts.map +1 -1
- package/dist/extensions/apikey.js +12 -0
- package/dist/extensions/apikey.js.map +1 -1
- package/dist/extensions/command.d.ts +48 -48
- package/dist/extensions/config.d.ts +11302 -0
- package/dist/extensions/config.d.ts.map +1 -0
- package/dist/extensions/config.js +230 -0
- package/dist/extensions/config.js.map +1 -0
- package/dist/extensions/index.d.ts +2 -1
- package/dist/extensions/index.d.ts.map +1 -1
- package/dist/extensions/index.js +4 -1
- package/dist/extensions/index.js.map +1 -1
- package/dist/extensions/interfaces/apikey.d.ts +11 -0
- package/dist/extensions/interfaces/apikey.d.ts.map +1 -1
- package/dist/extensions/interfaces/apikey.js +2 -0
- package/dist/extensions/interfaces/apikey.js.map +1 -1
- package/dist/extensions/interfaces/config.d.ts +73 -0
- package/dist/extensions/interfaces/config.d.ts.map +1 -0
- package/dist/extensions/interfaces/config.js +8 -0
- package/dist/extensions/interfaces/config.js.map +1 -0
- package/dist/extensions/interfaces/index.d.ts +1 -0
- package/dist/extensions/interfaces/index.d.ts.map +1 -1
- package/dist/extensions/interfaces/index.js +1 -0
- package/dist/extensions/interfaces/index.js.map +1 -1
- package/dist/extensions/interfaces/wms.d.ts +4 -2
- package/dist/extensions/interfaces/wms.d.ts.map +1 -1
- package/dist/extensions/interfaces/wms.js +1 -0
- package/dist/extensions/interfaces/wms.js.map +1 -1
- package/dist/extensions/order.d.ts +14 -14
- package/dist/extensions/wms.d.ts +38 -28
- package/dist/extensions/wms.d.ts.map +1 -1
- package/dist/extensions/wms.js +4 -0
- package/dist/extensions/wms.js.map +1 -1
- package/dist/types/context.d.ts +6 -0
- package/dist/types/context.d.ts.map +1 -1
- package/dist/types/extension.d.ts +6 -1
- package/dist/types/extension.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -14,11 +14,11 @@ export declare const AddressSchema: z.ZodObject<{
|
|
|
14
14
|
}, "strip", z.ZodTypeAny, {
|
|
15
15
|
name?: string | undefined;
|
|
16
16
|
email?: string | undefined;
|
|
17
|
+
address1?: string | undefined;
|
|
18
|
+
address2?: string | undefined;
|
|
17
19
|
phoneNumber?: string | undefined;
|
|
18
20
|
cellPhoneNumber?: string | undefined;
|
|
19
21
|
zipcode?: string | undefined;
|
|
20
|
-
address1?: string | undefined;
|
|
21
|
-
address2?: string | undefined;
|
|
22
22
|
shippingMessage?: string | undefined;
|
|
23
23
|
country?: string | undefined;
|
|
24
24
|
city?: string | undefined;
|
|
@@ -26,11 +26,11 @@ export declare const AddressSchema: z.ZodObject<{
|
|
|
26
26
|
}, {
|
|
27
27
|
name?: string | undefined;
|
|
28
28
|
email?: string | undefined;
|
|
29
|
+
address1?: string | undefined;
|
|
30
|
+
address2?: string | undefined;
|
|
29
31
|
phoneNumber?: string | undefined;
|
|
30
32
|
cellPhoneNumber?: string | undefined;
|
|
31
33
|
zipcode?: string | undefined;
|
|
32
|
-
address1?: string | undefined;
|
|
33
|
-
address2?: string | undefined;
|
|
34
34
|
shippingMessage?: string | undefined;
|
|
35
35
|
country?: string | undefined;
|
|
36
36
|
city?: string | undefined;
|
|
@@ -377,11 +377,11 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
377
377
|
}, "strip", z.ZodTypeAny, {
|
|
378
378
|
name?: string | undefined;
|
|
379
379
|
email?: string | undefined;
|
|
380
|
+
address1?: string | undefined;
|
|
381
|
+
address2?: string | undefined;
|
|
380
382
|
phoneNumber?: string | undefined;
|
|
381
383
|
cellPhoneNumber?: string | undefined;
|
|
382
384
|
zipcode?: string | undefined;
|
|
383
|
-
address1?: string | undefined;
|
|
384
|
-
address2?: string | undefined;
|
|
385
385
|
shippingMessage?: string | undefined;
|
|
386
386
|
country?: string | undefined;
|
|
387
387
|
city?: string | undefined;
|
|
@@ -389,11 +389,11 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
389
389
|
}, {
|
|
390
390
|
name?: string | undefined;
|
|
391
391
|
email?: string | undefined;
|
|
392
|
+
address1?: string | undefined;
|
|
393
|
+
address2?: string | undefined;
|
|
392
394
|
phoneNumber?: string | undefined;
|
|
393
395
|
cellPhoneNumber?: string | undefined;
|
|
394
396
|
zipcode?: string | undefined;
|
|
395
|
-
address1?: string | undefined;
|
|
396
|
-
address2?: string | undefined;
|
|
397
397
|
shippingMessage?: string | undefined;
|
|
398
398
|
country?: string | undefined;
|
|
399
399
|
city?: string | undefined;
|
|
@@ -422,9 +422,9 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
422
422
|
extClaimId?: string | undefined;
|
|
423
423
|
}>, "many">;
|
|
424
424
|
}, "strip", z.ZodTypeAny, {
|
|
425
|
+
title: string;
|
|
425
426
|
id: string;
|
|
426
427
|
createdAt: number;
|
|
427
|
-
title: string;
|
|
428
428
|
items: {
|
|
429
429
|
name: string;
|
|
430
430
|
id: string;
|
|
@@ -475,20 +475,20 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
475
475
|
shippingAddress?: {
|
|
476
476
|
name?: string | undefined;
|
|
477
477
|
email?: string | undefined;
|
|
478
|
+
address1?: string | undefined;
|
|
479
|
+
address2?: string | undefined;
|
|
478
480
|
phoneNumber?: string | undefined;
|
|
479
481
|
cellPhoneNumber?: string | undefined;
|
|
480
482
|
zipcode?: string | undefined;
|
|
481
|
-
address1?: string | undefined;
|
|
482
|
-
address2?: string | undefined;
|
|
483
483
|
shippingMessage?: string | undefined;
|
|
484
484
|
country?: string | undefined;
|
|
485
485
|
city?: string | undefined;
|
|
486
486
|
province?: string | undefined;
|
|
487
487
|
} | undefined;
|
|
488
488
|
}, {
|
|
489
|
+
title: string;
|
|
489
490
|
id: string;
|
|
490
491
|
createdAt: number;
|
|
491
|
-
title: string;
|
|
492
492
|
items: {
|
|
493
493
|
name: string;
|
|
494
494
|
id: string;
|
|
@@ -539,11 +539,11 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
539
539
|
shippingAddress?: {
|
|
540
540
|
name?: string | undefined;
|
|
541
541
|
email?: string | undefined;
|
|
542
|
+
address1?: string | undefined;
|
|
543
|
+
address2?: string | undefined;
|
|
542
544
|
phoneNumber?: string | undefined;
|
|
543
545
|
cellPhoneNumber?: string | undefined;
|
|
544
546
|
zipcode?: string | undefined;
|
|
545
|
-
address1?: string | undefined;
|
|
546
|
-
address2?: string | undefined;
|
|
547
547
|
shippingMessage?: string | undefined;
|
|
548
548
|
country?: string | undefined;
|
|
549
549
|
city?: string | undefined;
|
package/dist/extensions/wms.d.ts
CHANGED
|
@@ -16,9 +16,9 @@ export declare const WmsShippingInfoSchema: z.ZodObject<{
|
|
|
16
16
|
message: z.ZodOptional<z.ZodString>;
|
|
17
17
|
}, "strip", z.ZodTypeAny, {
|
|
18
18
|
name: string;
|
|
19
|
-
zipcode: string;
|
|
20
19
|
address1: string;
|
|
21
20
|
address2: string;
|
|
21
|
+
zipcode: string;
|
|
22
22
|
mobileNumber: string;
|
|
23
23
|
message?: string | undefined;
|
|
24
24
|
country?: string | undefined;
|
|
@@ -28,9 +28,9 @@ export declare const WmsShippingInfoSchema: z.ZodObject<{
|
|
|
28
28
|
landlineNumber?: string | undefined;
|
|
29
29
|
}, {
|
|
30
30
|
name: string;
|
|
31
|
-
zipcode: string;
|
|
32
31
|
address1: string;
|
|
33
32
|
address2: string;
|
|
33
|
+
zipcode: string;
|
|
34
34
|
mobileNumber: string;
|
|
35
35
|
message?: string | undefined;
|
|
36
36
|
country?: string | undefined;
|
|
@@ -81,9 +81,9 @@ export declare const WmsOrderItemSchema: z.ZodObject<{
|
|
|
81
81
|
message: z.ZodOptional<z.ZodString>;
|
|
82
82
|
}, "strip", z.ZodTypeAny, {
|
|
83
83
|
name: string;
|
|
84
|
-
zipcode: string;
|
|
85
84
|
address1: string;
|
|
86
85
|
address2: string;
|
|
86
|
+
zipcode: string;
|
|
87
87
|
mobileNumber: string;
|
|
88
88
|
message?: string | undefined;
|
|
89
89
|
country?: string | undefined;
|
|
@@ -93,9 +93,9 @@ export declare const WmsOrderItemSchema: z.ZodObject<{
|
|
|
93
93
|
landlineNumber?: string | undefined;
|
|
94
94
|
}, {
|
|
95
95
|
name: string;
|
|
96
|
-
zipcode: string;
|
|
97
96
|
address1: string;
|
|
98
97
|
address2: string;
|
|
98
|
+
zipcode: string;
|
|
99
99
|
mobileNumber: string;
|
|
100
100
|
message?: string | undefined;
|
|
101
101
|
country?: string | undefined;
|
|
@@ -116,9 +116,9 @@ export declare const WmsOrderItemSchema: z.ZodObject<{
|
|
|
116
116
|
deliveryCompany?: string | undefined;
|
|
117
117
|
shippingInfo?: {
|
|
118
118
|
name: string;
|
|
119
|
-
zipcode: string;
|
|
120
119
|
address1: string;
|
|
121
120
|
address2: string;
|
|
121
|
+
zipcode: string;
|
|
122
122
|
mobileNumber: string;
|
|
123
123
|
message?: string | undefined;
|
|
124
124
|
country?: string | undefined;
|
|
@@ -139,9 +139,9 @@ export declare const WmsOrderItemSchema: z.ZodObject<{
|
|
|
139
139
|
deliveryCompany?: string | undefined;
|
|
140
140
|
shippingInfo?: {
|
|
141
141
|
name: string;
|
|
142
|
-
zipcode: string;
|
|
143
142
|
address1: string;
|
|
144
143
|
address2: string;
|
|
144
|
+
zipcode: string;
|
|
145
145
|
mobileNumber: string;
|
|
146
146
|
message?: string | undefined;
|
|
147
147
|
country?: string | undefined;
|
|
@@ -182,9 +182,9 @@ export declare const WmsOrderSchema: z.ZodObject<{
|
|
|
182
182
|
message: z.ZodOptional<z.ZodString>;
|
|
183
183
|
}, "strip", z.ZodTypeAny, {
|
|
184
184
|
name: string;
|
|
185
|
-
zipcode: string;
|
|
186
185
|
address1: string;
|
|
187
186
|
address2: string;
|
|
187
|
+
zipcode: string;
|
|
188
188
|
mobileNumber: string;
|
|
189
189
|
message?: string | undefined;
|
|
190
190
|
country?: string | undefined;
|
|
@@ -194,9 +194,9 @@ export declare const WmsOrderSchema: z.ZodObject<{
|
|
|
194
194
|
landlineNumber?: string | undefined;
|
|
195
195
|
}, {
|
|
196
196
|
name: string;
|
|
197
|
-
zipcode: string;
|
|
198
197
|
address1: string;
|
|
199
198
|
address2: string;
|
|
199
|
+
zipcode: string;
|
|
200
200
|
mobileNumber: string;
|
|
201
201
|
message?: string | undefined;
|
|
202
202
|
country?: string | undefined;
|
|
@@ -217,9 +217,9 @@ export declare const WmsOrderSchema: z.ZodObject<{
|
|
|
217
217
|
deliveryCompany?: string | undefined;
|
|
218
218
|
shippingInfo?: {
|
|
219
219
|
name: string;
|
|
220
|
-
zipcode: string;
|
|
221
220
|
address1: string;
|
|
222
221
|
address2: string;
|
|
222
|
+
zipcode: string;
|
|
223
223
|
mobileNumber: string;
|
|
224
224
|
message?: string | undefined;
|
|
225
225
|
country?: string | undefined;
|
|
@@ -240,9 +240,9 @@ export declare const WmsOrderSchema: z.ZodObject<{
|
|
|
240
240
|
deliveryCompany?: string | undefined;
|
|
241
241
|
shippingInfo?: {
|
|
242
242
|
name: string;
|
|
243
|
-
zipcode: string;
|
|
244
243
|
address1: string;
|
|
245
244
|
address2: string;
|
|
245
|
+
zipcode: string;
|
|
246
246
|
mobileNumber: string;
|
|
247
247
|
message?: string | undefined;
|
|
248
248
|
country?: string | undefined;
|
|
@@ -275,9 +275,9 @@ export declare const WmsOrderSchema: z.ZodObject<{
|
|
|
275
275
|
deliveryCompany?: string | undefined;
|
|
276
276
|
shippingInfo?: {
|
|
277
277
|
name: string;
|
|
278
|
-
zipcode: string;
|
|
279
278
|
address1: string;
|
|
280
279
|
address2: string;
|
|
280
|
+
zipcode: string;
|
|
281
281
|
mobileNumber: string;
|
|
282
282
|
message?: string | undefined;
|
|
283
283
|
country?: string | undefined;
|
|
@@ -306,9 +306,9 @@ export declare const WmsOrderSchema: z.ZodObject<{
|
|
|
306
306
|
deliveryCompany?: string | undefined;
|
|
307
307
|
shippingInfo?: {
|
|
308
308
|
name: string;
|
|
309
|
-
zipcode: string;
|
|
310
309
|
address1: string;
|
|
311
310
|
address2: string;
|
|
311
|
+
zipcode: string;
|
|
312
312
|
mobileNumber: string;
|
|
313
313
|
message?: string | undefined;
|
|
314
314
|
country?: string | undefined;
|
|
@@ -376,9 +376,9 @@ export declare const GetWmsOrdersOutputSchema: z.ZodObject<{
|
|
|
376
376
|
message: z.ZodOptional<z.ZodString>;
|
|
377
377
|
}, "strip", z.ZodTypeAny, {
|
|
378
378
|
name: string;
|
|
379
|
-
zipcode: string;
|
|
380
379
|
address1: string;
|
|
381
380
|
address2: string;
|
|
381
|
+
zipcode: string;
|
|
382
382
|
mobileNumber: string;
|
|
383
383
|
message?: string | undefined;
|
|
384
384
|
country?: string | undefined;
|
|
@@ -388,9 +388,9 @@ export declare const GetWmsOrdersOutputSchema: z.ZodObject<{
|
|
|
388
388
|
landlineNumber?: string | undefined;
|
|
389
389
|
}, {
|
|
390
390
|
name: string;
|
|
391
|
-
zipcode: string;
|
|
392
391
|
address1: string;
|
|
393
392
|
address2: string;
|
|
393
|
+
zipcode: string;
|
|
394
394
|
mobileNumber: string;
|
|
395
395
|
message?: string | undefined;
|
|
396
396
|
country?: string | undefined;
|
|
@@ -411,9 +411,9 @@ export declare const GetWmsOrdersOutputSchema: z.ZodObject<{
|
|
|
411
411
|
deliveryCompany?: string | undefined;
|
|
412
412
|
shippingInfo?: {
|
|
413
413
|
name: string;
|
|
414
|
-
zipcode: string;
|
|
415
414
|
address1: string;
|
|
416
415
|
address2: string;
|
|
416
|
+
zipcode: string;
|
|
417
417
|
mobileNumber: string;
|
|
418
418
|
message?: string | undefined;
|
|
419
419
|
country?: string | undefined;
|
|
@@ -434,9 +434,9 @@ export declare const GetWmsOrdersOutputSchema: z.ZodObject<{
|
|
|
434
434
|
deliveryCompany?: string | undefined;
|
|
435
435
|
shippingInfo?: {
|
|
436
436
|
name: string;
|
|
437
|
-
zipcode: string;
|
|
438
437
|
address1: string;
|
|
439
438
|
address2: string;
|
|
439
|
+
zipcode: string;
|
|
440
440
|
mobileNumber: string;
|
|
441
441
|
message?: string | undefined;
|
|
442
442
|
country?: string | undefined;
|
|
@@ -469,9 +469,9 @@ export declare const GetWmsOrdersOutputSchema: z.ZodObject<{
|
|
|
469
469
|
deliveryCompany?: string | undefined;
|
|
470
470
|
shippingInfo?: {
|
|
471
471
|
name: string;
|
|
472
|
-
zipcode: string;
|
|
473
472
|
address1: string;
|
|
474
473
|
address2: string;
|
|
474
|
+
zipcode: string;
|
|
475
475
|
mobileNumber: string;
|
|
476
476
|
message?: string | undefined;
|
|
477
477
|
country?: string | undefined;
|
|
@@ -500,9 +500,9 @@ export declare const GetWmsOrdersOutputSchema: z.ZodObject<{
|
|
|
500
500
|
deliveryCompany?: string | undefined;
|
|
501
501
|
shippingInfo?: {
|
|
502
502
|
name: string;
|
|
503
|
-
zipcode: string;
|
|
504
503
|
address1: string;
|
|
505
504
|
address2: string;
|
|
505
|
+
zipcode: string;
|
|
506
506
|
mobileNumber: string;
|
|
507
507
|
message?: string | undefined;
|
|
508
508
|
country?: string | undefined;
|
|
@@ -533,9 +533,9 @@ export declare const GetWmsOrdersOutputSchema: z.ZodObject<{
|
|
|
533
533
|
deliveryCompany?: string | undefined;
|
|
534
534
|
shippingInfo?: {
|
|
535
535
|
name: string;
|
|
536
|
-
zipcode: string;
|
|
537
536
|
address1: string;
|
|
538
537
|
address2: string;
|
|
538
|
+
zipcode: string;
|
|
539
539
|
mobileNumber: string;
|
|
540
540
|
message?: string | undefined;
|
|
541
541
|
country?: string | undefined;
|
|
@@ -566,9 +566,9 @@ export declare const GetWmsOrdersOutputSchema: z.ZodObject<{
|
|
|
566
566
|
deliveryCompany?: string | undefined;
|
|
567
567
|
shippingInfo?: {
|
|
568
568
|
name: string;
|
|
569
|
-
zipcode: string;
|
|
570
569
|
address1: string;
|
|
571
570
|
address2: string;
|
|
571
|
+
zipcode: string;
|
|
572
572
|
mobileNumber: string;
|
|
573
573
|
message?: string | undefined;
|
|
574
574
|
country?: string | undefined;
|
|
@@ -631,9 +631,9 @@ export declare const GetWmsOrderOutputSchema: z.ZodObject<{
|
|
|
631
631
|
message: z.ZodOptional<z.ZodString>;
|
|
632
632
|
}, "strip", z.ZodTypeAny, {
|
|
633
633
|
name: string;
|
|
634
|
-
zipcode: string;
|
|
635
634
|
address1: string;
|
|
636
635
|
address2: string;
|
|
636
|
+
zipcode: string;
|
|
637
637
|
mobileNumber: string;
|
|
638
638
|
message?: string | undefined;
|
|
639
639
|
country?: string | undefined;
|
|
@@ -643,9 +643,9 @@ export declare const GetWmsOrderOutputSchema: z.ZodObject<{
|
|
|
643
643
|
landlineNumber?: string | undefined;
|
|
644
644
|
}, {
|
|
645
645
|
name: string;
|
|
646
|
-
zipcode: string;
|
|
647
646
|
address1: string;
|
|
648
647
|
address2: string;
|
|
648
|
+
zipcode: string;
|
|
649
649
|
mobileNumber: string;
|
|
650
650
|
message?: string | undefined;
|
|
651
651
|
country?: string | undefined;
|
|
@@ -666,9 +666,9 @@ export declare const GetWmsOrderOutputSchema: z.ZodObject<{
|
|
|
666
666
|
deliveryCompany?: string | undefined;
|
|
667
667
|
shippingInfo?: {
|
|
668
668
|
name: string;
|
|
669
|
-
zipcode: string;
|
|
670
669
|
address1: string;
|
|
671
670
|
address2: string;
|
|
671
|
+
zipcode: string;
|
|
672
672
|
mobileNumber: string;
|
|
673
673
|
message?: string | undefined;
|
|
674
674
|
country?: string | undefined;
|
|
@@ -689,9 +689,9 @@ export declare const GetWmsOrderOutputSchema: z.ZodObject<{
|
|
|
689
689
|
deliveryCompany?: string | undefined;
|
|
690
690
|
shippingInfo?: {
|
|
691
691
|
name: string;
|
|
692
|
-
zipcode: string;
|
|
693
692
|
address1: string;
|
|
694
693
|
address2: string;
|
|
694
|
+
zipcode: string;
|
|
695
695
|
mobileNumber: string;
|
|
696
696
|
message?: string | undefined;
|
|
697
697
|
country?: string | undefined;
|
|
@@ -724,9 +724,9 @@ export declare const GetWmsOrderOutputSchema: z.ZodObject<{
|
|
|
724
724
|
deliveryCompany?: string | undefined;
|
|
725
725
|
shippingInfo?: {
|
|
726
726
|
name: string;
|
|
727
|
-
zipcode: string;
|
|
728
727
|
address1: string;
|
|
729
728
|
address2: string;
|
|
729
|
+
zipcode: string;
|
|
730
730
|
mobileNumber: string;
|
|
731
731
|
message?: string | undefined;
|
|
732
732
|
country?: string | undefined;
|
|
@@ -755,9 +755,9 @@ export declare const GetWmsOrderOutputSchema: z.ZodObject<{
|
|
|
755
755
|
deliveryCompany?: string | undefined;
|
|
756
756
|
shippingInfo?: {
|
|
757
757
|
name: string;
|
|
758
|
-
zipcode: string;
|
|
759
758
|
address1: string;
|
|
760
759
|
address2: string;
|
|
760
|
+
zipcode: string;
|
|
761
761
|
mobileNumber: string;
|
|
762
762
|
message?: string | undefined;
|
|
763
763
|
country?: string | undefined;
|
|
@@ -797,6 +797,16 @@ export declare const GetWmsShopIdOutputSchema: z.ZodObject<{
|
|
|
797
797
|
message?: string | undefined;
|
|
798
798
|
}>;
|
|
799
799
|
export type GetWmsShopIdOutput = z.infer<typeof GetWmsShopIdOutputSchema>;
|
|
800
|
+
export declare const GetWmsSupportedCommercesInputSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
801
|
+
export type GetWmsSupportedCommercesInput = z.infer<typeof GetWmsSupportedCommercesInputSchema>;
|
|
802
|
+
export declare const GetWmsSupportedCommercesOutputSchema: z.ZodObject<{
|
|
803
|
+
commerceTypes: z.ZodArray<z.ZodString, "many">;
|
|
804
|
+
}, "strip", z.ZodTypeAny, {
|
|
805
|
+
commerceTypes: string[];
|
|
806
|
+
}, {
|
|
807
|
+
commerceTypes: string[];
|
|
808
|
+
}>;
|
|
809
|
+
export type GetWmsSupportedCommercesOutput = z.infer<typeof GetWmsSupportedCommercesOutputSchema>;
|
|
800
810
|
export declare const CancelWmsOrderInputSchema: z.ZodEffects<z.ZodObject<{
|
|
801
811
|
orderId: z.ZodOptional<z.ZodString>;
|
|
802
812
|
/** @deprecated Use orderId instead. */
|
|
@@ -885,18 +895,18 @@ export declare const ChangeWmsShippingAddressInputSchema: z.ZodObject<{
|
|
|
885
895
|
address2: z.ZodOptional<z.ZodString>;
|
|
886
896
|
message: z.ZodOptional<z.ZodString>;
|
|
887
897
|
}, "strip", z.ZodTypeAny, {
|
|
898
|
+
recipient: string;
|
|
888
899
|
phone: string;
|
|
889
900
|
address1: string;
|
|
890
901
|
orderId: string;
|
|
891
|
-
recipient: string;
|
|
892
902
|
postalCode: string;
|
|
893
903
|
message?: string | undefined;
|
|
894
904
|
address2?: string | undefined;
|
|
895
905
|
}, {
|
|
906
|
+
recipient: string;
|
|
896
907
|
phone: string;
|
|
897
908
|
address1: string;
|
|
898
909
|
orderId: string;
|
|
899
|
-
recipient: string;
|
|
900
910
|
postalCode: string;
|
|
901
911
|
message?: string | undefined;
|
|
902
912
|
address2?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wms.d.ts","sourceRoot":"","sources":["../../src/extensions/wms.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB;;GAEG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYhC,CAAC;AACH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAEpE;;GAEG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;EAG5B,CAAC;AACH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAE5D;;GAEG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAW7B,CAAC;AACH,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAE9D;;GAEG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKzB,CAAC;AACH,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAEtD;;GAEG;AACH,eAAO,MAAM,yBAAyB,uCAAuB,CAAC;AAC9D,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAQ5E,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;EAKlC,CAAC;AACH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAExE,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEnC,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE1E,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;EAKjC,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEtE,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAiB,CAAC;AACtD,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAExE,eAAO,MAAM,uBAAuB;;;;;;;;;EAGlC,CAAC;AACH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAExE,eAAO,MAAM,wBAAwB;;;;;;;;;EAGnC,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"wms.d.ts","sourceRoot":"","sources":["../../src/extensions/wms.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB;;GAEG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYhC,CAAC;AACH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAEpE;;GAEG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;EAG5B,CAAC;AACH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAE5D;;GAEG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAW7B,CAAC;AACH,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAE9D;;GAEG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKzB,CAAC;AACH,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAEtD;;GAEG;AACH,eAAO,MAAM,yBAAyB,uCAAuB,CAAC;AAC9D,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAQ5E,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;EAKlC,CAAC;AACH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAExE,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEnC,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE1E,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;EAKjC,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEtE,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAiB,CAAC;AACtD,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAExE,eAAO,MAAM,uBAAuB;;;;;;;;;EAGlC,CAAC;AACH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAExE,eAAO,MAAM,wBAAwB;;;;;;;;;EAGnC,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE1E,eAAO,MAAM,mCAAmC,gDAAe,CAAC;AAChE,MAAM,MAAM,6BAA6B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mCAAmC,CAAC,CAAC;AAEhG,eAAO,MAAM,oCAAoC;;;;;;EAE/C,CAAC;AACH,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oCAAoC,CAAC,CAAC;AAWlG,eAAO,MAAM,yBAAyB;;IAGlC,uCAAuC;;;;;;;;;;;;;;;;;;;EAOvC,CAAC;AACL,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAI5E,eAAO,MAAM,yBAAyB;;IAGlC,uCAAuC;;;;;;;;;;;;;;;;;;;;;;;;EAQvC,CAAC;AACL,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAI5E,eAAO,MAAM,2BAA2B;;IAGpC,uCAAuC;;;;;;;;;;;;;;;;;;;;;;;;EAQvC,CAAC;AACL,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAIhF,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;EAQ9C,CAAC;AACH,MAAM,MAAM,6BAA6B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mCAAmC,CAAC,CAAC;AAIhG,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;EAOrC,CAAC;AACH,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAE9E,eAAO,MAAM,sBAAsB;;;;;;;;;EAGjC,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"}
|
package/dist/extensions/wms.js
CHANGED
|
@@ -78,6 +78,10 @@ export const GetWmsShopIdOutputSchema = z.object({
|
|
|
78
78
|
shopId: z.string().nullable(),
|
|
79
79
|
message: z.string().optional(),
|
|
80
80
|
});
|
|
81
|
+
export const GetWmsSupportedCommercesInputSchema = z.object({});
|
|
82
|
+
export const GetWmsSupportedCommercesOutputSchema = z.object({
|
|
83
|
+
commerceTypes: z.array(z.string()),
|
|
84
|
+
});
|
|
81
85
|
function hasOrderIdentifier(params) {
|
|
82
86
|
return params.orderId !== undefined || params.orderIds !== undefined;
|
|
83
87
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wms.js","sourceRoot":"","sources":["../../src/extensions/wms.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB;;GAEG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACrC,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;IACnB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC/B,CAAC,CAAC;AAGH;;GAEG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,CAAC,MAAM,CAAC;IACxC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,OAAO,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;CAC7B,CAAC,CAAC;AAGH;;GAEG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,CAAC,MAAM,CAAC;IACzC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,sBAAsB,EAAE,CAAC,CAAC,MAAM,EAAE;IAClC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACxC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACtC,YAAY,EAAE,qBAAqB,CAAC,QAAQ,EAAE;CAC/C,CAAC,CAAC;AAGH;;GAEG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC9B,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC;IAClC,UAAU,EAAE,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC;CACvC,CAAC,CAAC;AAGH;;GAEG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC;AAG9D,wDAAwD;AACxD,gCAAgC;AAChC,wDAAwD;AAExD,eAAe;AAEf,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC9C,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACvC,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC9B,CAAC,CAAC;AAGH,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC;CAChC,CAAC,CAAC;AAGH,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC7C,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACtC,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC9B,CAAC,CAAC;AAGH,MAAM,CAAC,MAAM,uBAAuB,GAAG,cAAc,CAAC;AAGtD,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC9C,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;CACxB,CAAC,CAAC;AAGH,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC/B,CAAC,CAAC;AAGH,SAAS,kBAAkB,CAAC,MAG3B;IACC,OAAO,MAAM,CAAC,OAAO,KAAK,SAAS,IAAI,MAAM,CAAC,QAAQ,KAAK,SAAS,CAAC;AACvE,CAAC;AAED,iBAAiB;AAEjB,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC;KACvC,MAAM,CAAC;IACN,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,uCAAuC;IACvC,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC9B,CAAC;KACD,MAAM,CAAC,kBAAkB,EAAE;IAC1B,OAAO,EAAE,wCAAwC;IACjD,IAAI,EAAE,CAAC,SAAS,CAAC;CAClB,CAAC,CAAC;AAGL,iBAAiB;AAEjB,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC;KACvC,MAAM,CAAC;IACN,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,uCAAuC;IACvC,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC5B,CAAC;KACD,MAAM,CAAC,kBAAkB,EAAE;IAC1B,OAAO,EAAE,wCAAwC;IACjD,IAAI,EAAE,CAAC,SAAS,CAAC;CAClB,CAAC,CAAC;AAGL,mBAAmB;AAEnB,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC;KACzC,MAAM,CAAC;IACN,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,uCAAuC;IACvC,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC5B,CAAC;KACD,MAAM,CAAC,kBAAkB,EAAE;IAC1B,OAAO,EAAE,wCAAwC;IACjD,IAAI,EAAE,CAAC,SAAS,CAAC;CAClB,CAAC,CAAC;AAGL,eAAe;AAEf,MAAM,CAAC,MAAM,mCAAmC,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1D,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;IACnB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;IACtB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC/B,CAAC,CAAC;AAGH,kBAAkB;AAElB,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAAC;IACjD,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;IACnB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3B,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,WAAW,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACnC,aAAa,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACrC,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CACnC,CAAC,CAAC;AAGH,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC7C,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE;IACpB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC/B,CAAC,CAAC"}
|
|
1
|
+
{"version":3,"file":"wms.js","sourceRoot":"","sources":["../../src/extensions/wms.ts"],"names":[],"mappings":"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"}
|
package/dist/types/context.d.ts
CHANGED
|
@@ -38,6 +38,12 @@ export interface Context {
|
|
|
38
38
|
* Keys correspond to the field names defined in getAuthConfig.
|
|
39
39
|
*/
|
|
40
40
|
apiCredentials?: Record<string, string>;
|
|
41
|
+
/**
|
|
42
|
+
* Stored config values resolved by AppStore for the active scope.
|
|
43
|
+
* This is the canonical config payload for the config extension and
|
|
44
|
+
* also the future-compatible source of truth for legacy API key setups.
|
|
45
|
+
*/
|
|
46
|
+
config?: Record<string, unknown>;
|
|
41
47
|
/** Sandbox mode flag (for LLM mock testing) */
|
|
42
48
|
sandbox?: boolean;
|
|
43
49
|
/** Sandbox session ID (stateful mode) */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../../src/types/context.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG,MAAM,GAAG,SAAS,GAAG,QAAQ,CAAC;AAEvD;;GAEG;AACH,MAAM,WAAW,MAAM;IACrB,kBAAkB;IAClB,IAAI,EAAE,UAAU,CAAC;IACjB,iEAAiE;IACjE,EAAE,CAAC,EAAE,MAAM,CAAC;CACb;AAED;;GAEG;AACH,MAAM,WAAW,OAAO;IACtB,kCAAkC;IAClC,EAAE,EAAE,MAAM,CAAC;CACZ;AAED;;;GAGG;AACH,MAAM,WAAW,OAAO;IACtB,yBAAyB;IACzB,MAAM,EAAE,MAAM,CAAC;IACf,0BAA0B;IAC1B,OAAO,EAAE,OAAO,CAAC;IACjB,6CAA6C;IAC7C,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,sEAAsE;IACtE,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;;;;OAKG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACxC,+CAA+C;IAC/C,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,yCAAyC;IACzC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,4CAA4C;IAC5C,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,4DAA4D;IAC5D,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,8EAA8E;IAC9E,MAAM,EAAE,MAAM,CAAC;IACf,4BAA4B;IAC5B,OAAO,EAAE,OAAO,CAAC;IACjB,0BAA0B;IAC1B,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CAClC;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB,CAAC,CAAC,GAAG,OAAO;IAC/C,kBAAkB;IAClB,MAAM,EAAE,CAAC,CAAC;CACX"}
|
|
1
|
+
{"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../../src/types/context.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG,MAAM,GAAG,SAAS,GAAG,QAAQ,CAAC;AAEvD;;GAEG;AACH,MAAM,WAAW,MAAM;IACrB,kBAAkB;IAClB,IAAI,EAAE,UAAU,CAAC;IACjB,iEAAiE;IACjE,EAAE,CAAC,EAAE,MAAM,CAAC;CACb;AAED;;GAEG;AACH,MAAM,WAAW,OAAO;IACtB,kCAAkC;IAClC,EAAE,EAAE,MAAM,CAAC;CACZ;AAED;;;GAGG;AACH,MAAM,WAAW,OAAO;IACtB,yBAAyB;IACzB,MAAM,EAAE,MAAM,CAAC;IACf,0BAA0B;IAC1B,OAAO,EAAE,OAAO,CAAC;IACjB,6CAA6C;IAC7C,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,sEAAsE;IACtE,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;;;;OAKG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACxC;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACjC,+CAA+C;IAC/C,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,yCAAyC;IACzC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,4CAA4C;IAC5C,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,4DAA4D;IAC5D,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,8EAA8E;IAC9E,MAAM,EAAE,MAAM,CAAC;IACf,4BAA4B;IAC5B,OAAO,EAAE,OAAO,CAAC;IACjB,0BAA0B;IAC1B,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CAClC;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB,CAAC,CAAC,GAAG,OAAO;IAC/C,kBAAkB;IAClB,MAAM,EAAE,CAAC,CAAC;CACX"}
|
|
@@ -2,7 +2,12 @@ import type { FunctionDefinition } from "./function.js";
|
|
|
2
2
|
/**
|
|
3
3
|
* Available extension names
|
|
4
4
|
*/
|
|
5
|
-
export type ExtensionName = "oauth" | "
|
|
5
|
+
export type ExtensionName = "oauth" | "config"
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated Prefer "config" for new setup surfaces. "apikey" remains for
|
|
8
|
+
* backward-compatible registration only.
|
|
9
|
+
*/
|
|
10
|
+
| "apikey" | "calendar" | "messaging" | "messenger" | "command" | "widget" | "customtab" | "hook" | "commerce" | "order" | "wms" | "alfTask" | (string & {});
|
|
6
11
|
/**
|
|
7
12
|
* Extension configuration
|
|
8
13
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"extension.d.ts","sourceRoot":"","sources":["../../src/types/extension.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,eAAe,CAAC;AAExD;;GAEG;AACH,MAAM,MAAM,aAAa,GACrB,OAAO,GACP,QAAQ,GACR,UAAU,GACV,WAAW,GACX,WAAW,GACX,SAAS,GACT,QAAQ,GACR,WAAW,GACX,MAAM,GACN,UAAU,GACV,OAAO,GACP,KAAK,GACL,SAAS,GACT,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC;AAElB;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,iDAAiD;IACjD,IAAI,EAAE,aAAa,CAAC;IACpB,wCAAwC;IACxC,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,2EAA2E;IAC3E,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,8CAA8C;IAC9C,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,4CAA4C;IAC5C,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,MAAM,aAAa,CACvB,UAAU,SAAS,MAAM,CAAC,MAAM,EAAE,kBAAkB,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,kBAAkB,CAAC,IACxF;IACF,mCAAmC;IACnC,OAAO,CAAC,EAAE,mBAAmB,CAAC;CAC/B,GAAG,UAAU,CAAC;AAEf;;GAEG;AACH,MAAM,WAAW,mBAAmB,CAClC,OAAO,SAAS,MAAM,CAAC,MAAM,EAAE,aAAa,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,aAAa,CAAC,CAC7E,SAAQ,eAAe;IACvB,sBAAsB;IACtB,MAAM,EAAE,OAAO,CAAC;CACjB;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,qBAAqB;IACrB,IAAI,EAAE,MAAM,CAAC;IACb,wCAAwC;IACxC,aAAa,EAAE,MAAM,CAAC;IACtB,wBAAwB;IACxB,SAAS,EAAE,OAAO,CAAC;IACnB,2CAA2C;IAC3C,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,kBAAkB,CAAC,CAAC,CAAC;CACtD"}
|
|
1
|
+
{"version":3,"file":"extension.d.ts","sourceRoot":"","sources":["../../src/types/extension.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,eAAe,CAAC;AAExD;;GAEG;AACH,MAAM,MAAM,aAAa,GACrB,OAAO,GACP,QAAQ;AACV;;;GAGG;GACD,QAAQ,GACR,UAAU,GACV,WAAW,GACX,WAAW,GACX,SAAS,GACT,QAAQ,GACR,WAAW,GACX,MAAM,GACN,UAAU,GACV,OAAO,GACP,KAAK,GACL,SAAS,GACT,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC;AAElB;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,iDAAiD;IACjD,IAAI,EAAE,aAAa,CAAC;IACpB,wCAAwC;IACxC,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,2EAA2E;IAC3E,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,8CAA8C;IAC9C,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,4CAA4C;IAC5C,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,MAAM,aAAa,CACvB,UAAU,SAAS,MAAM,CAAC,MAAM,EAAE,kBAAkB,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,kBAAkB,CAAC,IACxF;IACF,mCAAmC;IACnC,OAAO,CAAC,EAAE,mBAAmB,CAAC;CAC/B,GAAG,UAAU,CAAC;AAEf;;GAEG;AACH,MAAM,WAAW,mBAAmB,CAClC,OAAO,SAAS,MAAM,CAAC,MAAM,EAAE,aAAa,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,aAAa,CAAC,CAC7E,SAAQ,eAAe;IACvB,sBAAsB;IACtB,MAAM,EAAE,OAAO,CAAC;CACjB;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,qBAAqB;IACrB,IAAI,EAAE,MAAM,CAAC;IACb,wCAAwC;IACxC,aAAa,EAAE,MAAM,CAAC;IACtB,wBAAwB;IACxB,SAAS,EAAE,OAAO,CAAC;IACnB,2CAA2C;IAC3C,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,kBAAkB,CAAC,CAAC,CAAC;CACtD"}
|