@channel.io/app-sdk-core 0.24.2 → 0.25.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/dist/extensions/commerce.d.ts +758 -196
- package/dist/extensions/commerce.d.ts.map +1 -1
- package/dist/extensions/commerce.js +76 -3
- package/dist/extensions/commerce.js.map +1 -1
- package/dist/extensions/function-schemas.d.ts.map +1 -1
- package/dist/extensions/function-schemas.js +12 -1
- package/dist/extensions/function-schemas.js.map +1 -1
- package/dist/extensions/index.d.ts +2 -1
- package/dist/extensions/index.d.ts.map +1 -1
- package/dist/extensions/index.js +3 -1
- package/dist/extensions/index.js.map +1 -1
- 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/suggestion.d.ts +12 -0
- package/dist/extensions/interfaces/suggestion.d.ts.map +1 -0
- package/dist/extensions/interfaces/suggestion.js +4 -0
- package/dist/extensions/interfaces/suggestion.js.map +1 -0
- package/dist/extensions/order.d.ts +96 -96
- package/dist/extensions/order.d.ts.map +1 -1
- package/dist/extensions/order.js +18 -6
- package/dist/extensions/order.js.map +1 -1
- package/dist/extensions/proto-contracts.d.ts +5 -1
- package/dist/extensions/proto-contracts.d.ts.map +1 -1
- package/dist/extensions/suggestion.d.ts +48 -0
- package/dist/extensions/suggestion.d.ts.map +1 -0
- package/dist/extensions/suggestion.js +61 -0
- package/dist/extensions/suggestion.js.map +1 -0
- package/dist/gen/channel/app/sdk/v1/extension.d.ts +119 -2
- package/dist/gen/channel/app/sdk/v1/extension.d.ts.map +1 -1
- package/dist/gen/channel/app/sdk/v1/extension.zod.d.ts +566 -0
- package/dist/gen/channel/app/sdk/v1/extension.zod.d.ts.map +1 -1
- package/dist/gen/channel/app/sdk/v1/extension.zod.js +47 -0
- package/dist/gen/channel/app/sdk/v1/extension.zod.js.map +1 -1
- package/package.json +1 -1
|
@@ -133,21 +133,21 @@ export declare const ClaimSchema: z.ZodObject<{
|
|
|
133
133
|
type: z.ZodString;
|
|
134
134
|
state: z.ZodString;
|
|
135
135
|
itemIds: z.ZodArray<z.ZodString, "many">;
|
|
136
|
-
createdAt: z.ZodNumber
|
|
136
|
+
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
137
137
|
}, "strip", z.ZodTypeAny, {
|
|
138
138
|
type: string;
|
|
139
139
|
id: string;
|
|
140
140
|
state: string;
|
|
141
141
|
itemIds: string[];
|
|
142
|
-
createdAt: number;
|
|
143
142
|
extClaimId?: string | undefined;
|
|
143
|
+
createdAt?: number | undefined;
|
|
144
144
|
}, {
|
|
145
145
|
type: string;
|
|
146
146
|
id: string;
|
|
147
147
|
state: string;
|
|
148
148
|
itemIds: string[];
|
|
149
|
-
createdAt: number;
|
|
150
149
|
extClaimId?: string | undefined;
|
|
150
|
+
createdAt?: number | undefined;
|
|
151
151
|
}>;
|
|
152
152
|
export type Claim = ProtoBacked<z.infer<typeof ClaimSchema>, ProtoClaim>;
|
|
153
153
|
export declare const OrderItemSchema: z.ZodObject<{
|
|
@@ -163,7 +163,7 @@ export declare const OrderItemSchema: z.ZodObject<{
|
|
|
163
163
|
shippedAt: z.ZodOptional<z.ZodNumber>;
|
|
164
164
|
deliveredAt: z.ZodOptional<z.ZodNumber>;
|
|
165
165
|
estimatedShipDate: z.ZodOptional<z.ZodNumber>;
|
|
166
|
-
claimability: z.ZodObject<{
|
|
166
|
+
claimability: z.ZodOptional<z.ZodObject<{
|
|
167
167
|
cancelable: z.ZodOptional<z.ZodBoolean>;
|
|
168
168
|
returnable: z.ZodOptional<z.ZodBoolean>;
|
|
169
169
|
exchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -190,14 +190,21 @@ export declare const OrderItemSchema: z.ZodObject<{
|
|
|
190
190
|
nonReturnableReason?: string | undefined;
|
|
191
191
|
nonExchangeableReason?: string | undefined;
|
|
192
192
|
nonShippingAddressChangeableReason?: string | undefined;
|
|
193
|
-
}
|
|
193
|
+
}>>;
|
|
194
194
|
}, "strip", z.ZodTypeAny, {
|
|
195
195
|
name: string;
|
|
196
196
|
id: string;
|
|
197
197
|
state: string;
|
|
198
198
|
amount: number;
|
|
199
199
|
quantity: number;
|
|
200
|
-
|
|
200
|
+
imageUrl?: string | undefined;
|
|
201
|
+
option?: string | undefined;
|
|
202
|
+
productId?: string | undefined;
|
|
203
|
+
variantId?: string | undefined;
|
|
204
|
+
shippedAt?: number | undefined;
|
|
205
|
+
deliveredAt?: number | undefined;
|
|
206
|
+
estimatedShipDate?: number | undefined;
|
|
207
|
+
claimability?: {
|
|
201
208
|
cancelable?: boolean | undefined;
|
|
202
209
|
returnable?: boolean | undefined;
|
|
203
210
|
exchangeable?: boolean | undefined;
|
|
@@ -206,7 +213,13 @@ export declare const OrderItemSchema: z.ZodObject<{
|
|
|
206
213
|
nonReturnableReason?: string | undefined;
|
|
207
214
|
nonExchangeableReason?: string | undefined;
|
|
208
215
|
nonShippingAddressChangeableReason?: string | undefined;
|
|
209
|
-
};
|
|
216
|
+
} | undefined;
|
|
217
|
+
}, {
|
|
218
|
+
name: string;
|
|
219
|
+
id: string;
|
|
220
|
+
state: string;
|
|
221
|
+
amount: number;
|
|
222
|
+
quantity: number;
|
|
210
223
|
imageUrl?: string | undefined;
|
|
211
224
|
option?: string | undefined;
|
|
212
225
|
productId?: string | undefined;
|
|
@@ -214,13 +227,7 @@ export declare const OrderItemSchema: z.ZodObject<{
|
|
|
214
227
|
shippedAt?: number | undefined;
|
|
215
228
|
deliveredAt?: number | undefined;
|
|
216
229
|
estimatedShipDate?: number | undefined;
|
|
217
|
-
|
|
218
|
-
name: string;
|
|
219
|
-
id: string;
|
|
220
|
-
state: string;
|
|
221
|
-
amount: number;
|
|
222
|
-
quantity: number;
|
|
223
|
-
claimability: {
|
|
230
|
+
claimability?: {
|
|
224
231
|
cancelable?: boolean | undefined;
|
|
225
232
|
returnable?: boolean | undefined;
|
|
226
233
|
exchangeable?: boolean | undefined;
|
|
@@ -229,14 +236,7 @@ export declare const OrderItemSchema: z.ZodObject<{
|
|
|
229
236
|
nonReturnableReason?: string | undefined;
|
|
230
237
|
nonExchangeableReason?: string | undefined;
|
|
231
238
|
nonShippingAddressChangeableReason?: string | undefined;
|
|
232
|
-
};
|
|
233
|
-
imageUrl?: string | undefined;
|
|
234
|
-
option?: string | undefined;
|
|
235
|
-
productId?: string | undefined;
|
|
236
|
-
variantId?: string | undefined;
|
|
237
|
-
shippedAt?: number | undefined;
|
|
238
|
-
deliveredAt?: number | undefined;
|
|
239
|
-
estimatedShipDate?: number | undefined;
|
|
239
|
+
} | undefined;
|
|
240
240
|
}>;
|
|
241
241
|
export type OrderItem = ProtoBacked<z.infer<typeof OrderItemSchema>, ProtoOrderItem>;
|
|
242
242
|
export declare const OrderClaimItemSchema: z.ZodObject<{
|
|
@@ -271,11 +271,11 @@ export declare const PaymentSchema: z.ZodObject<{
|
|
|
271
271
|
state: z.ZodString;
|
|
272
272
|
currency: z.ZodString;
|
|
273
273
|
totalAmount: z.ZodNumber;
|
|
274
|
-
itemsAmount: z.ZodNumber
|
|
275
|
-
shippingAmount: z.ZodNumber
|
|
276
|
-
discountAmount: z.ZodNumber
|
|
274
|
+
itemsAmount: z.ZodOptional<z.ZodNumber>;
|
|
275
|
+
shippingAmount: z.ZodOptional<z.ZodNumber>;
|
|
276
|
+
discountAmount: z.ZodOptional<z.ZodNumber>;
|
|
277
277
|
methods: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
278
|
-
requireRefundBankAccount: z.ZodBoolean
|
|
278
|
+
requireRefundBankAccount: z.ZodOptional<z.ZodBoolean>;
|
|
279
279
|
taxAmount: z.ZodOptional<z.ZodNumber>;
|
|
280
280
|
pointAmount: z.ZodOptional<z.ZodNumber>;
|
|
281
281
|
creditAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -285,11 +285,11 @@ export declare const PaymentSchema: z.ZodObject<{
|
|
|
285
285
|
state: string;
|
|
286
286
|
currency: string;
|
|
287
287
|
totalAmount: number;
|
|
288
|
-
itemsAmount
|
|
289
|
-
shippingAmount
|
|
290
|
-
discountAmount
|
|
291
|
-
requireRefundBankAccount: boolean;
|
|
288
|
+
itemsAmount?: number | undefined;
|
|
289
|
+
shippingAmount?: number | undefined;
|
|
290
|
+
discountAmount?: number | undefined;
|
|
292
291
|
methods?: string[] | undefined;
|
|
292
|
+
requireRefundBankAccount?: boolean | undefined;
|
|
293
293
|
taxAmount?: number | undefined;
|
|
294
294
|
pointAmount?: number | undefined;
|
|
295
295
|
creditAmount?: number | undefined;
|
|
@@ -299,11 +299,11 @@ export declare const PaymentSchema: z.ZodObject<{
|
|
|
299
299
|
state: string;
|
|
300
300
|
currency: string;
|
|
301
301
|
totalAmount: number;
|
|
302
|
-
itemsAmount
|
|
303
|
-
shippingAmount
|
|
304
|
-
discountAmount
|
|
305
|
-
requireRefundBankAccount: boolean;
|
|
302
|
+
itemsAmount?: number | undefined;
|
|
303
|
+
shippingAmount?: number | undefined;
|
|
304
|
+
discountAmount?: number | undefined;
|
|
306
305
|
methods?: string[] | undefined;
|
|
306
|
+
requireRefundBankAccount?: boolean | undefined;
|
|
307
307
|
taxAmount?: number | undefined;
|
|
308
308
|
pointAmount?: number | undefined;
|
|
309
309
|
creditAmount?: number | undefined;
|
|
@@ -508,7 +508,7 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
508
508
|
shippedAt: z.ZodOptional<z.ZodNumber>;
|
|
509
509
|
deliveredAt: z.ZodOptional<z.ZodNumber>;
|
|
510
510
|
estimatedShipDate: z.ZodOptional<z.ZodNumber>;
|
|
511
|
-
claimability: z.ZodObject<{
|
|
511
|
+
claimability: z.ZodOptional<z.ZodObject<{
|
|
512
512
|
cancelable: z.ZodOptional<z.ZodBoolean>;
|
|
513
513
|
returnable: z.ZodOptional<z.ZodBoolean>;
|
|
514
514
|
exchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -535,14 +535,21 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
535
535
|
nonReturnableReason?: string | undefined;
|
|
536
536
|
nonExchangeableReason?: string | undefined;
|
|
537
537
|
nonShippingAddressChangeableReason?: string | undefined;
|
|
538
|
-
}
|
|
538
|
+
}>>;
|
|
539
539
|
}, "strip", z.ZodTypeAny, {
|
|
540
540
|
name: string;
|
|
541
541
|
id: string;
|
|
542
542
|
state: string;
|
|
543
543
|
amount: number;
|
|
544
544
|
quantity: number;
|
|
545
|
-
|
|
545
|
+
imageUrl?: string | undefined;
|
|
546
|
+
option?: string | undefined;
|
|
547
|
+
productId?: string | undefined;
|
|
548
|
+
variantId?: string | undefined;
|
|
549
|
+
shippedAt?: number | undefined;
|
|
550
|
+
deliveredAt?: number | undefined;
|
|
551
|
+
estimatedShipDate?: number | undefined;
|
|
552
|
+
claimability?: {
|
|
546
553
|
cancelable?: boolean | undefined;
|
|
547
554
|
returnable?: boolean | undefined;
|
|
548
555
|
exchangeable?: boolean | undefined;
|
|
@@ -551,7 +558,13 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
551
558
|
nonReturnableReason?: string | undefined;
|
|
552
559
|
nonExchangeableReason?: string | undefined;
|
|
553
560
|
nonShippingAddressChangeableReason?: string | undefined;
|
|
554
|
-
};
|
|
561
|
+
} | undefined;
|
|
562
|
+
}, {
|
|
563
|
+
name: string;
|
|
564
|
+
id: string;
|
|
565
|
+
state: string;
|
|
566
|
+
amount: number;
|
|
567
|
+
quantity: number;
|
|
555
568
|
imageUrl?: string | undefined;
|
|
556
569
|
option?: string | undefined;
|
|
557
570
|
productId?: string | undefined;
|
|
@@ -559,13 +572,7 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
559
572
|
shippedAt?: number | undefined;
|
|
560
573
|
deliveredAt?: number | undefined;
|
|
561
574
|
estimatedShipDate?: number | undefined;
|
|
562
|
-
|
|
563
|
-
name: string;
|
|
564
|
-
id: string;
|
|
565
|
-
state: string;
|
|
566
|
-
amount: number;
|
|
567
|
-
quantity: number;
|
|
568
|
-
claimability: {
|
|
575
|
+
claimability?: {
|
|
569
576
|
cancelable?: boolean | undefined;
|
|
570
577
|
returnable?: boolean | undefined;
|
|
571
578
|
exchangeable?: boolean | undefined;
|
|
@@ -574,24 +581,17 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
574
581
|
nonReturnableReason?: string | undefined;
|
|
575
582
|
nonExchangeableReason?: string | undefined;
|
|
576
583
|
nonShippingAddressChangeableReason?: string | undefined;
|
|
577
|
-
};
|
|
578
|
-
imageUrl?: string | undefined;
|
|
579
|
-
option?: string | undefined;
|
|
580
|
-
productId?: string | undefined;
|
|
581
|
-
variantId?: string | undefined;
|
|
582
|
-
shippedAt?: number | undefined;
|
|
583
|
-
deliveredAt?: number | undefined;
|
|
584
|
-
estimatedShipDate?: number | undefined;
|
|
584
|
+
} | undefined;
|
|
585
585
|
}>, "many">;
|
|
586
586
|
payment: z.ZodObject<{
|
|
587
587
|
state: z.ZodString;
|
|
588
588
|
currency: z.ZodString;
|
|
589
589
|
totalAmount: z.ZodNumber;
|
|
590
|
-
itemsAmount: z.ZodNumber
|
|
591
|
-
shippingAmount: z.ZodNumber
|
|
592
|
-
discountAmount: z.ZodNumber
|
|
590
|
+
itemsAmount: z.ZodOptional<z.ZodNumber>;
|
|
591
|
+
shippingAmount: z.ZodOptional<z.ZodNumber>;
|
|
592
|
+
discountAmount: z.ZodOptional<z.ZodNumber>;
|
|
593
593
|
methods: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
594
|
-
requireRefundBankAccount: z.ZodBoolean
|
|
594
|
+
requireRefundBankAccount: z.ZodOptional<z.ZodBoolean>;
|
|
595
595
|
taxAmount: z.ZodOptional<z.ZodNumber>;
|
|
596
596
|
pointAmount: z.ZodOptional<z.ZodNumber>;
|
|
597
597
|
creditAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -601,11 +601,11 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
601
601
|
state: string;
|
|
602
602
|
currency: string;
|
|
603
603
|
totalAmount: number;
|
|
604
|
-
itemsAmount
|
|
605
|
-
shippingAmount
|
|
606
|
-
discountAmount
|
|
607
|
-
requireRefundBankAccount: boolean;
|
|
604
|
+
itemsAmount?: number | undefined;
|
|
605
|
+
shippingAmount?: number | undefined;
|
|
606
|
+
discountAmount?: number | undefined;
|
|
608
607
|
methods?: string[] | undefined;
|
|
608
|
+
requireRefundBankAccount?: boolean | undefined;
|
|
609
609
|
taxAmount?: number | undefined;
|
|
610
610
|
pointAmount?: number | undefined;
|
|
611
611
|
creditAmount?: number | undefined;
|
|
@@ -615,11 +615,11 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
615
615
|
state: string;
|
|
616
616
|
currency: string;
|
|
617
617
|
totalAmount: number;
|
|
618
|
-
itemsAmount
|
|
619
|
-
shippingAmount
|
|
620
|
-
discountAmount
|
|
621
|
-
requireRefundBankAccount: boolean;
|
|
618
|
+
itemsAmount?: number | undefined;
|
|
619
|
+
shippingAmount?: number | undefined;
|
|
620
|
+
discountAmount?: number | undefined;
|
|
622
621
|
methods?: string[] | undefined;
|
|
622
|
+
requireRefundBankAccount?: boolean | undefined;
|
|
623
623
|
taxAmount?: number | undefined;
|
|
624
624
|
pointAmount?: number | undefined;
|
|
625
625
|
creditAmount?: number | undefined;
|
|
@@ -721,21 +721,21 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
721
721
|
type: z.ZodString;
|
|
722
722
|
state: z.ZodString;
|
|
723
723
|
itemIds: z.ZodArray<z.ZodString, "many">;
|
|
724
|
-
createdAt: z.ZodNumber
|
|
724
|
+
createdAt: z.ZodOptional<z.ZodNumber>;
|
|
725
725
|
}, "strip", z.ZodTypeAny, {
|
|
726
726
|
type: string;
|
|
727
727
|
id: string;
|
|
728
728
|
state: string;
|
|
729
729
|
itemIds: string[];
|
|
730
|
-
createdAt: number;
|
|
731
730
|
extClaimId?: string | undefined;
|
|
731
|
+
createdAt?: number | undefined;
|
|
732
732
|
}, {
|
|
733
733
|
type: string;
|
|
734
734
|
id: string;
|
|
735
735
|
state: string;
|
|
736
736
|
itemIds: string[];
|
|
737
|
-
createdAt: number;
|
|
738
737
|
extClaimId?: string | undefined;
|
|
738
|
+
createdAt?: number | undefined;
|
|
739
739
|
}>, "many">>;
|
|
740
740
|
}, "strip", z.ZodTypeAny, {
|
|
741
741
|
id: string;
|
|
@@ -746,7 +746,14 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
746
746
|
state: string;
|
|
747
747
|
amount: number;
|
|
748
748
|
quantity: number;
|
|
749
|
-
|
|
749
|
+
imageUrl?: string | undefined;
|
|
750
|
+
option?: string | undefined;
|
|
751
|
+
productId?: string | undefined;
|
|
752
|
+
variantId?: string | undefined;
|
|
753
|
+
shippedAt?: number | undefined;
|
|
754
|
+
deliveredAt?: number | undefined;
|
|
755
|
+
estimatedShipDate?: number | undefined;
|
|
756
|
+
claimability?: {
|
|
750
757
|
cancelable?: boolean | undefined;
|
|
751
758
|
returnable?: boolean | undefined;
|
|
752
759
|
exchangeable?: boolean | undefined;
|
|
@@ -755,25 +762,18 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
755
762
|
nonReturnableReason?: string | undefined;
|
|
756
763
|
nonExchangeableReason?: string | undefined;
|
|
757
764
|
nonShippingAddressChangeableReason?: string | undefined;
|
|
758
|
-
};
|
|
759
|
-
imageUrl?: string | undefined;
|
|
760
|
-
option?: string | undefined;
|
|
761
|
-
productId?: string | undefined;
|
|
762
|
-
variantId?: string | undefined;
|
|
763
|
-
shippedAt?: number | undefined;
|
|
764
|
-
deliveredAt?: number | undefined;
|
|
765
|
-
estimatedShipDate?: number | undefined;
|
|
765
|
+
} | undefined;
|
|
766
766
|
}[];
|
|
767
767
|
createdAt: number;
|
|
768
768
|
payment: {
|
|
769
769
|
state: string;
|
|
770
770
|
currency: string;
|
|
771
771
|
totalAmount: number;
|
|
772
|
-
itemsAmount
|
|
773
|
-
shippingAmount
|
|
774
|
-
discountAmount
|
|
775
|
-
requireRefundBankAccount: boolean;
|
|
772
|
+
itemsAmount?: number | undefined;
|
|
773
|
+
shippingAmount?: number | undefined;
|
|
774
|
+
discountAmount?: number | undefined;
|
|
776
775
|
methods?: string[] | undefined;
|
|
776
|
+
requireRefundBankAccount?: boolean | undefined;
|
|
777
777
|
taxAmount?: number | undefined;
|
|
778
778
|
pointAmount?: number | undefined;
|
|
779
779
|
creditAmount?: number | undefined;
|
|
@@ -814,8 +814,8 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
814
814
|
id: string;
|
|
815
815
|
state: string;
|
|
816
816
|
itemIds: string[];
|
|
817
|
-
createdAt: number;
|
|
818
817
|
extClaimId?: string | undefined;
|
|
818
|
+
createdAt?: number | undefined;
|
|
819
819
|
}[] | undefined;
|
|
820
820
|
}, {
|
|
821
821
|
id: string;
|
|
@@ -826,7 +826,14 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
826
826
|
state: string;
|
|
827
827
|
amount: number;
|
|
828
828
|
quantity: number;
|
|
829
|
-
|
|
829
|
+
imageUrl?: string | undefined;
|
|
830
|
+
option?: string | undefined;
|
|
831
|
+
productId?: string | undefined;
|
|
832
|
+
variantId?: string | undefined;
|
|
833
|
+
shippedAt?: number | undefined;
|
|
834
|
+
deliveredAt?: number | undefined;
|
|
835
|
+
estimatedShipDate?: number | undefined;
|
|
836
|
+
claimability?: {
|
|
830
837
|
cancelable?: boolean | undefined;
|
|
831
838
|
returnable?: boolean | undefined;
|
|
832
839
|
exchangeable?: boolean | undefined;
|
|
@@ -835,25 +842,18 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
835
842
|
nonReturnableReason?: string | undefined;
|
|
836
843
|
nonExchangeableReason?: string | undefined;
|
|
837
844
|
nonShippingAddressChangeableReason?: string | undefined;
|
|
838
|
-
};
|
|
839
|
-
imageUrl?: string | undefined;
|
|
840
|
-
option?: string | undefined;
|
|
841
|
-
productId?: string | undefined;
|
|
842
|
-
variantId?: string | undefined;
|
|
843
|
-
shippedAt?: number | undefined;
|
|
844
|
-
deliveredAt?: number | undefined;
|
|
845
|
-
estimatedShipDate?: number | undefined;
|
|
845
|
+
} | undefined;
|
|
846
846
|
}[];
|
|
847
847
|
createdAt: number;
|
|
848
848
|
payment: {
|
|
849
849
|
state: string;
|
|
850
850
|
currency: string;
|
|
851
851
|
totalAmount: number;
|
|
852
|
-
itemsAmount
|
|
853
|
-
shippingAmount
|
|
854
|
-
discountAmount
|
|
855
|
-
requireRefundBankAccount: boolean;
|
|
852
|
+
itemsAmount?: number | undefined;
|
|
853
|
+
shippingAmount?: number | undefined;
|
|
854
|
+
discountAmount?: number | undefined;
|
|
856
855
|
methods?: string[] | undefined;
|
|
856
|
+
requireRefundBankAccount?: boolean | undefined;
|
|
857
857
|
taxAmount?: number | undefined;
|
|
858
858
|
pointAmount?: number | undefined;
|
|
859
859
|
creditAmount?: number | undefined;
|
|
@@ -894,8 +894,8 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
894
894
|
id: string;
|
|
895
895
|
state: string;
|
|
896
896
|
itemIds: string[];
|
|
897
|
-
createdAt: number;
|
|
898
897
|
extClaimId?: string | undefined;
|
|
898
|
+
createdAt?: number | undefined;
|
|
899
899
|
}[] | undefined;
|
|
900
900
|
}>;
|
|
901
901
|
export type Order = ProtoBacked<z.infer<typeof OrderSchema>, ProtoOrder>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"order.d.ts","sourceRoot":"","sources":["../../src/extensions/order.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EACV,KAAK,IAAI,UAAU,EACnB,KAAK,IAAI,UAAU,EACnB,YAAY,IAAI,YAAY,EAC5B,oBAAoB,IAAI,oBAAoB,EAC5C,gBAAgB,IAAI,gBAAgB,EACpC,UAAU,IAAI,UAAU,EACxB,iBAAiB,IAAI,iBAAiB,EACtC,cAAc,IAAI,mBAAmB,EACrC,gBAAgB,IAAI,gBAAgB,EACpC,eAAe,IAAI,eAAe,EAClC,iBAAiB,IAAI,sBAAsB,EAC3C,gBAAgB,IAAI,gBAAgB,EACpC,gBAAgB,IAAI,gBAAgB,EACpC,oBAAoB,IAAI,yBAAyB,EACjD,SAAS,IAAI,cAAc,EAC3B,cAAc,IAAI,mBAAmB,EACrC,cAAc,IAAI,mBAAmB,EACrC,qBAAqB,IAAI,qBAAqB,EAC9C,YAAY,IAAI,YAAY,EAC5B,iBAAiB,IAAI,sBAAsB,EAC3C,YAAY,IAAI,iBAAiB,EACjC,gBAAgB,IAAI,qBAAqB,EAC1C,MAAM,wCAAwC,CAAC;AAEhD,KAAK,WAAW,CAAC,CAAC,EAAE,KAAK,IAAI,CAAC,GAAG,KAAK,CAAC;AAOvC,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;EAKtB,CAAC;AACH,MAAM,MAAM,KAAK,GAAG,WAAW,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,EAAE,UAAU,CAAC,CAAC;AAEzE,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAexB,CAAC;AACH,MAAM,MAAM,OAAO,GAAG,WAAW,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,EAAE,YAAY,CAAC,CAAC;AAE/E,eAAO,MAAM,iBAAiB;;;;;;;;;;;;EAI5B,CAAC;AACH,MAAM,MAAM,WAAW,GAAG,WAAW,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,EAAE,gBAAgB,CAAC,CAAC;AAE3F,eAAO,MAAM,gBAAgB;;;;;;;;;EAG3B,CAAC;AACH,MAAM,MAAM,UAAU,GAAG,WAAW,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,EAAE,eAAe,CAAC,CAAC;AAExF,eAAO,MAAM,iBAAiB;;;;;;;;;EAG5B,CAAC;AACH,MAAM,MAAM,WAAW,GAAG,WAAW,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,EAAE,gBAAgB,CAAC,CAAC;AAK3F,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAU7B,CAAC;AACH,MAAM,MAAM,YAAY,GAAG,WAAW,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,EAAE,iBAAiB,CAAC,CAAC;AAE9F,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"order.d.ts","sourceRoot":"","sources":["../../src/extensions/order.ts"],"names":[],"mappings":"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"}
|
package/dist/extensions/order.js
CHANGED
|
@@ -58,7 +58,10 @@ export const ClaimSchema = z.object({
|
|
|
58
58
|
type: z.string(),
|
|
59
59
|
state: z.string(),
|
|
60
60
|
itemIds: z.array(z.string()),
|
|
61
|
-
|
|
61
|
+
// 클레임 생성 시각을 안 주는 몰이 있다. proto3 plain double 이라 presence 도 없어
|
|
62
|
+
// 미제공과 0 이 구별되지 않고, protojson 이 0 을 생략해 키가 통째로 빠진다. 필수로 두면
|
|
63
|
+
// 그 몰의 유효한 응답을 출력 검증이 거부하므로 — 지킬 수 없는 약속이라 계약에서 뗀다.
|
|
64
|
+
createdAt: z.number().optional(),
|
|
62
65
|
});
|
|
63
66
|
export const OrderItemSchema = z.object({
|
|
64
67
|
id: z.string(),
|
|
@@ -73,7 +76,11 @@ export const OrderItemSchema = z.object({
|
|
|
73
76
|
shippedAt: z.number().optional(),
|
|
74
77
|
deliveredAt: z.number().optional(),
|
|
75
78
|
estimatedShipDate: z.number().optional(),
|
|
76
|
-
|
|
79
|
+
// proto3 message 필드라 암묵적 presence 를 갖는다 — 앱이 채우지 않으면 protojson 이 키를
|
|
80
|
+
// 통째로 지운다. 안쪽 bool 네 개를 required 에서 뺀 것(V236)과 같은 이유가 한 단계 위에도
|
|
81
|
+
// 그대로 적용된다: claimability 를 아예 계산하지 않는 몰의 정상 응답이 필수 선언 때문에
|
|
82
|
+
// 검증에서 걸린다.
|
|
83
|
+
claimability: ClaimabilitySchema.optional(),
|
|
77
84
|
});
|
|
78
85
|
export const OrderClaimItemSchema = z.object({
|
|
79
86
|
id: z.string().optional(),
|
|
@@ -89,13 +96,18 @@ export const PaymentSchema = z.object({
|
|
|
89
96
|
state: z.string(),
|
|
90
97
|
currency: z.string(),
|
|
91
98
|
totalAmount: z.number(),
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
99
|
+
// 총액의 분해 항목. 상품 소계·배송비·할인을 따로 떼어 내려주지 않는 몰이 있다. presence 는
|
|
100
|
+
// 있으므로 0 은 0 으로 실리고, 키가 없으면 "이 몰은 이 값을 분리해 주지 않는다" 는 뜻이다.
|
|
101
|
+
// 어느 몰이든 내려주는 totalAmount 와 달리 분해 항목은 몰마다 갈려 필수로 둘 수 없다.
|
|
102
|
+
itemsAmount: z.number().optional(),
|
|
103
|
+
shippingAmount: z.number().optional(),
|
|
104
|
+
discountAmount: z.number().optional(),
|
|
95
105
|
// repeated 필드는 비면 protojson 이 키를 지운다. protobuf 는 repeated 에 presence 를
|
|
96
106
|
// 줄 수 없어(optional 금지) 계약에서 필수를 뗀다 — 빈 목록과 미제공을 구별하지 않는다.
|
|
97
107
|
methods: z.array(z.string()).optional(),
|
|
98
|
-
|
|
108
|
+
// 환불 계좌 개념이 없는 결제수단·몰이 있다. presence 가 있어 false 는 false 로 실리고,
|
|
109
|
+
// 키가 없으면 판단 자체를 하지 않는 몰이라는 뜻이다.
|
|
110
|
+
requireRefundBankAccount: z.boolean().optional(),
|
|
99
111
|
taxAmount: z.number().optional(),
|
|
100
112
|
// discountAmount 는 아래 세 값의 합이다. 무엇으로 깎였는지 안내하려면 개별 값이 필요하다.
|
|
101
113
|
pointAmount: z.number().optional(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"order.js","sourceRoot":"","sources":["../../src/extensions/order.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"order.js","sourceRoot":"","sources":["../../src/extensions/order.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { z } from "zod";
|
|
2
2
|
import type { Alf as ProtoMessagingAlf, AlfMessageType as ProtoMessagingAlfMessageType, ChannelMessage as ProtoMessagingMessage, ChannelUser as ProtoMessagingUser, ChannelUserChat as ProtoMessagingUserChat, ChannelUserChatGoalState as ProtoMessagingUserChatGoalState, ChannelUserChatState as ProtoMessagingUserChatState, ChannelUserChatSubtextType as ProtoMessagingUserChatSubtextType, ChannelUserType as ProtoMessagingUserType, CustomPayload as ProtoMessagingCustomPayload, MediumProfile as ProtoMessagingMediumProfile, Meet as ProtoMessagingMeet, MeetMode as ProtoMessagingMeetMode, MessageAlertLevel as ProtoMessagingMessageAlertLevel, MessageButton as ProtoMessagingMessageButton, MessageColorVariant as ProtoMessagingMessageColorVariant, MessageFile as ProtoMessagingMessageFile, MessageMeetState as ProtoMessagingMessageMeetState, MessageOption as ProtoMessagingMessageOption, MessageState as ProtoMessagingMessageState, MessageThread as ProtoMessagingMessageThread, MissedReason as ProtoMessagingMissedReason, PrebuiltMessage as ProtoMessagingPrebuiltMessage, UnavailableReason as ProtoMessagingUnavailableReason, WamResult as ProtoMessagingWamResult, WritingType as ProtoMessagingWritingType, WritingTypeMap as ProtoMessagingWritingTypeMap, WritingTypeState as ProtoMessagingWritingTypeState } from "../gen/channel/app/sdk/v1/common.js";
|
|
3
|
-
import type { AlfTaskGetTasksOutput as ProtoAlfTaskGetTasksOutput, AlfTaskMemoryDefinition as ProtoAlfTaskMemoryDefinition, AlfTaskPredefinedTask as ProtoAlfTaskPredefinedTask, AlfTaskWorkflowNode as ProtoAlfTaskWorkflowNode, ApiKeyField as ProtoApiKeyField, ApiKeyGetAuthConfigOutput as ProtoApiKeyGetAuthConfigOutput, ApiKeyValidateCredentialsOutput as ProtoApiKeyValidateCredentialsOutput, Calendar as ProtoCalendar, CalendarAttendee as ProtoCalendarAttendee, CalendarBooking as ProtoCalendarBooking, CalendarEventType as ProtoCalendarEventType, CalendarTimeSlot as ProtoCalendarTimeSlot, CommandChoice as ProtoCommandChoice, CommandConfig as ProtoCommandConfig, CommandGetCommandsOutput as ProtoCommandGetCommandsOutput, CommandNameDescI18n as ProtoCommandNameDescI18n, CommandNameI18n as ProtoCommandNameI18n, CommandParamDefI18n as ProtoCommandParamDefI18n, CommandParamDefinition as ProtoCommandParamDefinition, CommandResult as ProtoCommandResult, ConfigBlock as ProtoConfigBlock, ConfigChoice as ProtoConfigChoice, ConfigChoicesSource as ProtoConfigChoicesSource, ConfigCondition as ProtoConfigCondition, ConfigDraftResolutionOutput as ProtoConfigDraftResolutionOutput, ConfigDraftResolutionParams as ProtoConfigDraftResolutionParams, ConfigGetConfigSchemaOutput as ProtoConfigGetConfigSchemaOutput, ConfigField as ProtoConfigField, ConfigHooks as ProtoConfigHooks, ConfigInlineLink as ProtoConfigInlineLink, ConfigOAuth as ProtoConfigOAuth, ConfigOAuthAdditionalParam as ProtoConfigOAuthAdditionalParam, ConfigOAuthClientCredentials as ProtoConfigOAuthClientCredentials, ConfigResolvedValueTarget as ProtoConfigResolvedValueTarget, ConfigValidateStoredConfigOutput as ProtoConfigValidateStoredConfigOutput, ConfigValidationError as ProtoConfigValidationError, ConfigValidationNotice as ProtoConfigValidationNotice, CustomTabActionResult as ProtoCustomTabActionResult, CustomTabConfig as ProtoCustomTabConfig, CustomTabGetCustomTabsOutput as ProtoCustomTabGetCustomTabsOutput, CustomTabNameI18n as ProtoCustomTabNameI18n, DataSourceAuthorizeQueryInput as ProtoDataSourceAuthorizeQueryInput, DataSourceAuthorizeQueryOutput as ProtoDataSourceAuthorizeQueryOutput, DataSourceCatalog as ProtoDataSourceCatalog, DataSourceColumn as ProtoDataSourceColumn, DataSourceDescribeTableInput as ProtoDataSourceDescribeTableInput, DataSourceDescribeTableOutput as ProtoDataSourceDescribeTableOutput, DataSourceListCatalogsInput as ProtoDataSourceListCatalogsInput, DataSourceListCatalogsOutput as ProtoDataSourceListCatalogsOutput, DataSourceListTablesInput as ProtoDataSourceListTablesInput, DataSourceListTablesOutput as ProtoDataSourceListTablesOutput, DataSourceQueryFilter as ProtoDataSourceQueryFilter, DataSourceQueryTableAccess as ProtoDataSourceQueryTableAccess, DataSourceTable as ProtoDataSourceTable, DataSourceTableDefinition as ProtoDataSourceTableDefinition, DataSourceTableListing as ProtoDataSourceTableListing, HookConfig as ProtoHookConfig, HookGetHooksOutput as ProtoHookGetHooksOutput, HookWebhookConfig as ProtoHookWebhookConfig, MessagingInboxGetCustomEditorWamInput as ProtoInboxGetCustomEditorWamInput, MessagingInboxGetMediumMessageErrorReasonInput as ProtoInboxGetMediumMessageErrorReasonInput, MessagingInboxGetMediumMessageErrorReasonOutput as ProtoInboxGetMediumMessageErrorReasonOutput, MessagingInboxGetMediumTopicSelectorWamInput as ProtoInboxGetMediumTopicSelectorWamInput, MessagingInboxGetWritingTypesInput as ProtoInboxGetWritingTypesInput, MessagingInboxGetWritingTypesOutput as ProtoInboxGetWritingTypesOutput, MessagingInboxOnMediumUserChatClosedInput as ProtoInboxOnMediumUserChatClosedInput, MessagingInboxOnMediumUserChatClosedOutput as ProtoInboxOnMediumUserChatClosedOutput, MessagingOnMediumMessageCreatedInput as ProtoOnMediumMessageCreatedInput, MessagingOnMediumMessageCreatedOutput as ProtoOnMediumMessageCreatedOutput, MessagingPrebuiltBuildMediumTopicsInput as ProtoPrebuiltBuildMediumTopicsInput, MessagingPrebuiltBuildMediumTopicsOutput as ProtoPrebuiltBuildMediumTopicsOutput, MessagingPrebuiltGetCustomEditorWamInput as ProtoPrebuiltGetCustomEditorWamInput, MessagingPrebuiltGetDefaultOptionsInput as ProtoPrebuiltGetDefaultOptionsInput, MessagingPrebuiltGetDefaultOptionsOutput as ProtoPrebuiltGetDefaultOptionsOutput, MessagingPrebuiltGetMediumTopicBuilderSelectorWamInput as ProtoPrebuiltGetMediumTopicBuilderSelectorWamInput, MessagingPrebuiltGetWritingTypesInput as ProtoPrebuiltGetWritingTypesInput, MessagingPrebuiltGetWritingTypesOutput as ProtoPrebuiltGetWritingTypesOutput, MessagingPrebuiltValidateEntityInput as ProtoPrebuiltValidateEntityInput, MessagingPrebuiltValidateEntityOutput as ProtoPrebuiltValidateEntityOutput, MailRelayCommonHeaders as ProtoMailRelayCommonHeaders, MailRelayHeader as ProtoMailRelayHeader, MailRelayInboundInput as ProtoMailRelayInboundInput, MailRelayInboundOutput as ProtoMailRelayInboundOutput, MailRelayMail as ProtoMailRelayMail, MailRelayReceipt as ProtoMailRelayReceipt, AppNotebook as ProtoAppNotebook, NotebookCell as ProtoNotebookCell, NotebookGetNotebooksOutput as ProtoNotebookGetNotebooksOutput, NotebookLayoutColumn as ProtoNotebookLayoutColumn, NotebookLayoutRow as ProtoNotebookLayoutRow, NotebookPayload as ProtoNotebookPayload, NotebookTab as ProtoNotebookTab, OAuthConfig as ProtoOAuthConfig, OAuthCredentialValidationInput as ProtoOAuthCredentialValidationInput, OAuthCredentialValidationResult as ProtoOAuthCredentialValidationResult, OAuthProvider as ProtoOAuthProvider, Order as ProtoOrder, OrderAddress as ProtoOrderAddress, OrderAppCapabilities as ProtoOrderAppCapabilities, OrderBankAccount as ProtoOrderBankAccount, OrderClaim as ProtoOrderClaim, OrderClaimability as ProtoOrderClaimability, OrderClaimReason as ProtoOrderClaimReason, OrderDefectInfo as ProtoOrderDefectInfo, OrderFulfillment as ProtoOrderFulfillment, OrderFieldConfig as ProtoOrderFieldConfig, OrderItem as ProtoOrderItem, OrderOperationOptions as ProtoOrderOperationOptions, OrderPayment as ProtoOrderPayment, PollingGetPollersOutput as ProtoPollingGetPollersOutput, PollingGetTargetChannelsInput as ProtoPollingGetTargetChannelsInput, PollingGetTargetChannelsOutput as ProtoPollingGetTargetChannelsOutput, PollingGetTargetManagersInput as ProtoPollingGetTargetManagersInput, PollingGetTargetManagersOutput as ProtoPollingGetTargetManagersOutput, PollingManagerTarget as ProtoPollingManagerTarget, PollingPoller as ProtoPollingPoller, StoreFaq as ProtoStoreFaq, StoreGetProfileInput as ProtoStoreGetProfileInput, StoreGetProfileOutput as ProtoStoreGetProfileOutput, StoreProfileImage as ProtoStoreProfileImage, StoreProfileIntro as ProtoStoreProfileIntro, StoreProfileLocalizedContent as ProtoStoreProfileLocalizedContent, WidgetActionResult as ProtoWidgetActionResult, WidgetConfig as ProtoWidgetConfig, WidgetGetWidgetsOutput as ProtoWidgetGetWidgetsOutput, WidgetNameDescI18n as ProtoWidgetNameDescI18n, WmsChangeShippingAddressRequest as ProtoWmsChangeShippingAddressRequest, WmsDelivery as ProtoWmsDelivery, WmsGetOrderRequest as ProtoWmsGetOrderRequest, WmsGetOrderResult as ProtoWmsGetOrderResult, WmsGetOrdersRequest as ProtoWmsGetOrdersRequest, WmsGetOrdersResult as ProtoWmsGetOrdersResult, WmsGetShopIDRequest as ProtoWmsGetShopIDRequest, WmsGetShopIDResult as ProtoWmsGetShopIDResult, WmsGetSupportedCommercesRequest as ProtoWmsGetSupportedCommercesRequest, WmsGetSupportedCommercesResult as ProtoWmsGetSupportedCommercesResult, WmsOrder as ProtoWmsOrder, WmsOrderItem as ProtoWmsOrderItem, WmsOrderStateRequest as ProtoWmsOrderStateRequest, WmsRestoreOrderRequest as ProtoWmsRestoreOrderRequest, WmsShippingInfo as ProtoWmsShippingInfo, WmsSuccessResult as ProtoWmsSuccessResult, Buyer as ProtoBuyer, WmsAppCapabilities as ProtoWmsAppCapabilities, WmsOperationOptions as ProtoWmsOperationOptions, WmsDeliveryV2 as ProtoWmsDeliveryV2, WmsGetAppConfigsInput as ProtoWmsGetAppConfigsInput, WmsGetAppConfigsOutput as ProtoWmsGetAppConfigsOutput, WmsIdentifier as ProtoWmsIdentifier, WmsOrderActionRequest as ProtoWmsOrderActionRequest, WmsOrderActionResult as ProtoWmsOrderActionResult, WmsOrderChangeShippingAddressInput as ProtoWmsOrderChangeShippingAddressInput, WmsOrderGetOrdersRequest as ProtoWmsOrderGetOrdersRequest, WmsOrderGetOrdersResult as ProtoWmsOrderGetOrdersResult, WmsOrderItemV2 as ProtoWmsOrderItemV2, WmsOrderV2 as ProtoWmsOrderV2, CommerceOrder as ProtoCommerceOrder, CommerceOrderItem as ProtoCommerceOrderItem, CommerceIdentifier as ProtoCommerceIdentifier, CommerceGetOrdersInput as ProtoCommerceGetOrdersInput, CommerceGetOrdersOutput as ProtoCommerceGetOrdersOutput, CommerceAppCapabilities as ProtoCommerceAppCapabilities, CommerceGetAppConfigsOutput as ProtoCommerceGetAppConfigsOutput, CommerceActionResult as ProtoCommerceActionResult, CommerceCancelOrderInput as ProtoCommerceCancelOrderInput, CommerceReturnOrderInput as ProtoCommerceReturnOrderInput, CommerceAcceptReturnOrderInput as ProtoCommerceAcceptReturnOrderInput, CommerceExchangeOrderInput as ProtoCommerceExchangeOrderInput, CommerceGetExchangeableItemsInput as ProtoCommerceGetExchangeableItemsInput, CommerceGetExchangeableItemsOutput as ProtoCommerceGetExchangeableItemsOutput, CommerceChangeShippingAddressInput as ProtoCommerceChangeShippingAddressInput, OrderClaimItem as ProtoOrderClaimItem, OrderExchangeItem as ProtoOrderExchangeItem } from "../gen/channel/app/sdk/v1/extension.js";
|
|
3
|
+
import type { AlfTaskGetTasksOutput as ProtoAlfTaskGetTasksOutput, AlfTaskMemoryDefinition as ProtoAlfTaskMemoryDefinition, AlfTaskPredefinedTask as ProtoAlfTaskPredefinedTask, AlfTaskWorkflowNode as ProtoAlfTaskWorkflowNode, ApiKeyField as ProtoApiKeyField, ApiKeyGetAuthConfigOutput as ProtoApiKeyGetAuthConfigOutput, ApiKeyValidateCredentialsOutput as ProtoApiKeyValidateCredentialsOutput, Calendar as ProtoCalendar, CalendarAttendee as ProtoCalendarAttendee, CalendarBooking as ProtoCalendarBooking, CalendarEventType as ProtoCalendarEventType, CalendarTimeSlot as ProtoCalendarTimeSlot, CommandChoice as ProtoCommandChoice, CommandConfig as ProtoCommandConfig, CommandGetCommandsOutput as ProtoCommandGetCommandsOutput, CommandNameDescI18n as ProtoCommandNameDescI18n, CommandNameI18n as ProtoCommandNameI18n, CommandParamDefI18n as ProtoCommandParamDefI18n, CommandParamDefinition as ProtoCommandParamDefinition, CommandResult as ProtoCommandResult, ConfigBlock as ProtoConfigBlock, ConfigChoice as ProtoConfigChoice, ConfigChoicesSource as ProtoConfigChoicesSource, ConfigCondition as ProtoConfigCondition, ConfigDraftResolutionOutput as ProtoConfigDraftResolutionOutput, ConfigDraftResolutionParams as ProtoConfigDraftResolutionParams, ConfigGetConfigSchemaOutput as ProtoConfigGetConfigSchemaOutput, ConfigField as ProtoConfigField, ConfigHooks as ProtoConfigHooks, ConfigInlineLink as ProtoConfigInlineLink, ConfigOAuth as ProtoConfigOAuth, ConfigOAuthAdditionalParam as ProtoConfigOAuthAdditionalParam, ConfigOAuthClientCredentials as ProtoConfigOAuthClientCredentials, ConfigResolvedValueTarget as ProtoConfigResolvedValueTarget, ConfigValidateStoredConfigOutput as ProtoConfigValidateStoredConfigOutput, ConfigValidationError as ProtoConfigValidationError, ConfigValidationNotice as ProtoConfigValidationNotice, CustomTabActionResult as ProtoCustomTabActionResult, CustomTabConfig as ProtoCustomTabConfig, CustomTabGetCustomTabsOutput as ProtoCustomTabGetCustomTabsOutput, CustomTabNameI18n as ProtoCustomTabNameI18n, DataSourceAuthorizeQueryInput as ProtoDataSourceAuthorizeQueryInput, DataSourceAuthorizeQueryOutput as ProtoDataSourceAuthorizeQueryOutput, DataSourceCatalog as ProtoDataSourceCatalog, DataSourceColumn as ProtoDataSourceColumn, DataSourceDescribeTableInput as ProtoDataSourceDescribeTableInput, DataSourceDescribeTableOutput as ProtoDataSourceDescribeTableOutput, DataSourceListCatalogsInput as ProtoDataSourceListCatalogsInput, DataSourceListCatalogsOutput as ProtoDataSourceListCatalogsOutput, DataSourceListTablesInput as ProtoDataSourceListTablesInput, DataSourceListTablesOutput as ProtoDataSourceListTablesOutput, DataSourceQueryFilter as ProtoDataSourceQueryFilter, DataSourceQueryTableAccess as ProtoDataSourceQueryTableAccess, DataSourceTable as ProtoDataSourceTable, DataSourceTableDefinition as ProtoDataSourceTableDefinition, DataSourceTableListing as ProtoDataSourceTableListing, HookConfig as ProtoHookConfig, HookGetHooksOutput as ProtoHookGetHooksOutput, HookWebhookConfig as ProtoHookWebhookConfig, MessagingInboxGetCustomEditorWamInput as ProtoInboxGetCustomEditorWamInput, MessagingInboxGetMediumMessageErrorReasonInput as ProtoInboxGetMediumMessageErrorReasonInput, MessagingInboxGetMediumMessageErrorReasonOutput as ProtoInboxGetMediumMessageErrorReasonOutput, MessagingInboxGetMediumTopicSelectorWamInput as ProtoInboxGetMediumTopicSelectorWamInput, MessagingInboxGetWritingTypesInput as ProtoInboxGetWritingTypesInput, MessagingInboxGetWritingTypesOutput as ProtoInboxGetWritingTypesOutput, MessagingInboxOnMediumUserChatClosedInput as ProtoInboxOnMediumUserChatClosedInput, MessagingInboxOnMediumUserChatClosedOutput as ProtoInboxOnMediumUserChatClosedOutput, MessagingOnMediumMessageCreatedInput as ProtoOnMediumMessageCreatedInput, MessagingOnMediumMessageCreatedOutput as ProtoOnMediumMessageCreatedOutput, MessagingPrebuiltBuildMediumTopicsInput as ProtoPrebuiltBuildMediumTopicsInput, MessagingPrebuiltBuildMediumTopicsOutput as ProtoPrebuiltBuildMediumTopicsOutput, MessagingPrebuiltGetCustomEditorWamInput as ProtoPrebuiltGetCustomEditorWamInput, MessagingPrebuiltGetDefaultOptionsInput as ProtoPrebuiltGetDefaultOptionsInput, MessagingPrebuiltGetDefaultOptionsOutput as ProtoPrebuiltGetDefaultOptionsOutput, MessagingPrebuiltGetMediumTopicBuilderSelectorWamInput as ProtoPrebuiltGetMediumTopicBuilderSelectorWamInput, MessagingPrebuiltGetWritingTypesInput as ProtoPrebuiltGetWritingTypesInput, MessagingPrebuiltGetWritingTypesOutput as ProtoPrebuiltGetWritingTypesOutput, MessagingPrebuiltValidateEntityInput as ProtoPrebuiltValidateEntityInput, MessagingPrebuiltValidateEntityOutput as ProtoPrebuiltValidateEntityOutput, MailRelayCommonHeaders as ProtoMailRelayCommonHeaders, MailRelayHeader as ProtoMailRelayHeader, MailRelayInboundInput as ProtoMailRelayInboundInput, MailRelayInboundOutput as ProtoMailRelayInboundOutput, MailRelayMail as ProtoMailRelayMail, MailRelayReceipt as ProtoMailRelayReceipt, AppNotebook as ProtoAppNotebook, NotebookCell as ProtoNotebookCell, NotebookGetNotebooksOutput as ProtoNotebookGetNotebooksOutput, NotebookLayoutColumn as ProtoNotebookLayoutColumn, NotebookLayoutRow as ProtoNotebookLayoutRow, NotebookPayload as ProtoNotebookPayload, NotebookTab as ProtoNotebookTab, OAuthConfig as ProtoOAuthConfig, OAuthCredentialValidationInput as ProtoOAuthCredentialValidationInput, OAuthCredentialValidationResult as ProtoOAuthCredentialValidationResult, OAuthProvider as ProtoOAuthProvider, Order as ProtoOrder, OrderAddress as ProtoOrderAddress, OrderAppCapabilities as ProtoOrderAppCapabilities, OrderBankAccount as ProtoOrderBankAccount, OrderClaim as ProtoOrderClaim, OrderClaimability as ProtoOrderClaimability, OrderClaimReason as ProtoOrderClaimReason, OrderDefectInfo as ProtoOrderDefectInfo, OrderFulfillment as ProtoOrderFulfillment, OrderFieldConfig as ProtoOrderFieldConfig, OrderItem as ProtoOrderItem, OrderOperationOptions as ProtoOrderOperationOptions, OrderPayment as ProtoOrderPayment, PollingGetPollersOutput as ProtoPollingGetPollersOutput, PollingGetTargetChannelsInput as ProtoPollingGetTargetChannelsInput, PollingGetTargetChannelsOutput as ProtoPollingGetTargetChannelsOutput, PollingGetTargetManagersInput as ProtoPollingGetTargetManagersInput, PollingGetTargetManagersOutput as ProtoPollingGetTargetManagersOutput, PollingManagerTarget as ProtoPollingManagerTarget, PollingPoller as ProtoPollingPoller, StoreFaq as ProtoStoreFaq, StoreGetProfileInput as ProtoStoreGetProfileInput, StoreGetProfileOutput as ProtoStoreGetProfileOutput, StoreProfileImage as ProtoStoreProfileImage, StoreProfileIntro as ProtoStoreProfileIntro, StoreProfileLocalizedContent as ProtoStoreProfileLocalizedContent, WidgetActionResult as ProtoWidgetActionResult, WidgetConfig as ProtoWidgetConfig, WidgetGetWidgetsOutput as ProtoWidgetGetWidgetsOutput, WidgetNameDescI18n as ProtoWidgetNameDescI18n, WmsChangeShippingAddressRequest as ProtoWmsChangeShippingAddressRequest, WmsDelivery as ProtoWmsDelivery, WmsGetOrderRequest as ProtoWmsGetOrderRequest, WmsGetOrderResult as ProtoWmsGetOrderResult, WmsGetOrdersRequest as ProtoWmsGetOrdersRequest, WmsGetOrdersResult as ProtoWmsGetOrdersResult, WmsGetShopIDRequest as ProtoWmsGetShopIDRequest, WmsGetShopIDResult as ProtoWmsGetShopIDResult, WmsGetSupportedCommercesRequest as ProtoWmsGetSupportedCommercesRequest, WmsGetSupportedCommercesResult as ProtoWmsGetSupportedCommercesResult, WmsOrder as ProtoWmsOrder, WmsOrderItem as ProtoWmsOrderItem, WmsOrderStateRequest as ProtoWmsOrderStateRequest, WmsRestoreOrderRequest as ProtoWmsRestoreOrderRequest, WmsShippingInfo as ProtoWmsShippingInfo, WmsSuccessResult as ProtoWmsSuccessResult, Buyer as ProtoBuyer, WmsAppCapabilities as ProtoWmsAppCapabilities, WmsOperationOptions as ProtoWmsOperationOptions, WmsDeliveryV2 as ProtoWmsDeliveryV2, WmsGetAppConfigsInput as ProtoWmsGetAppConfigsInput, WmsGetAppConfigsOutput as ProtoWmsGetAppConfigsOutput, WmsIdentifier as ProtoWmsIdentifier, WmsOrderActionRequest as ProtoWmsOrderActionRequest, WmsOrderActionResult as ProtoWmsOrderActionResult, WmsOrderChangeShippingAddressInput as ProtoWmsOrderChangeShippingAddressInput, WmsOrderGetOrdersRequest as ProtoWmsOrderGetOrdersRequest, WmsOrderGetOrdersResult as ProtoWmsOrderGetOrdersResult, WmsOrderItemV2 as ProtoWmsOrderItemV2, WmsOrderV2 as ProtoWmsOrderV2, CommerceOrder as ProtoCommerceOrder, CommerceOrderItem as ProtoCommerceOrderItem, CommerceIdentifier as ProtoCommerceIdentifier, CommerceGetOrdersInput as ProtoCommerceGetOrdersInput, CommerceGetOrdersOutput as ProtoCommerceGetOrdersOutput, CommerceAppCapabilities as ProtoCommerceAppCapabilities, CommerceGetAppConfigsOutput as ProtoCommerceGetAppConfigsOutput, CommerceActionResult as ProtoCommerceActionResult, CommerceCancelOrderInput as ProtoCommerceCancelOrderInput, CommerceReturnOrderInput as ProtoCommerceReturnOrderInput, CommerceAcceptReturnOrderInput as ProtoCommerceAcceptReturnOrderInput, CommerceExchangeOrderInput as ProtoCommerceExchangeOrderInput, CommerceGetExchangeableItemsInput as ProtoCommerceGetExchangeableItemsInput, CommerceGetExchangeableItemsOutput as ProtoCommerceGetExchangeableItemsOutput, CommerceChangeShippingAddressInput as ProtoCommerceChangeShippingAddressInput, CommerceGetProductsInput as ProtoCommerceGetProductsInput, CommerceGetProductsOutput as ProtoCommerceGetProductsOutput, CommerceProduct as ProtoCommerceProduct, CommerceProductVariant as ProtoCommerceProductVariant, OrderClaimItem as ProtoOrderClaimItem, OrderExchangeItem as ProtoOrderExchangeItem } from "../gen/channel/app/sdk/v1/extension.js";
|
|
4
4
|
import type * as AlfTaskSchemas from "./alftask.js";
|
|
5
5
|
import type * as ApiKeySchemas from "./apikey.js";
|
|
6
6
|
import type * as CalendarSchemas from "./calendar.js";
|
|
@@ -194,6 +194,10 @@ export type ExtensionProtoSchemaContracts = [
|
|
|
194
194
|
Expect<SchemaOutputExtendsProto<typeof CommerceSchemas.CommerceGetExchangeableItemsInputSchema, ProtoCommerceGetExchangeableItemsInput>>,
|
|
195
195
|
Expect<SchemaOutputExtendsProto<typeof CommerceSchemas.CommerceGetExchangeableItemsOutputSchema, ProtoCommerceGetExchangeableItemsOutput>>,
|
|
196
196
|
Expect<SchemaOutputExtendsProto<typeof CommerceSchemas.CommerceChangeShippingAddressInputSchema, ProtoCommerceChangeShippingAddressInput>>,
|
|
197
|
+
Expect<SchemaOutputExtendsProto<typeof CommerceSchemas.CommerceProductVariantSchema, ProtoCommerceProductVariant>>,
|
|
198
|
+
Expect<SchemaOutputExtendsProto<typeof CommerceSchemas.CommerceProductSchema, ProtoCommerceProduct>>,
|
|
199
|
+
Expect<SchemaOutputExtendsProto<typeof CommerceSchemas.CommerceGetProductsInputSchema, ProtoCommerceGetProductsInput>>,
|
|
200
|
+
Expect<SchemaOutputExtendsProto<typeof CommerceSchemas.CommerceGetProductsOutputSchema, ProtoCommerceGetProductsOutput>>,
|
|
197
201
|
Expect<SchemaOutputExtendsProto<typeof OrderSchemas.OrderClaimItemSchema, ProtoOrderClaimItem>>,
|
|
198
202
|
Expect<SchemaOutputExtendsProto<typeof OrderSchemas.OrderExchangeItemSchema, ProtoOrderExchangeItem>>,
|
|
199
203
|
Expect<SchemaOutputExtendsProto<typeof WmsSchemas.WmsShippingInfoSchema, ProtoWmsShippingInfo>>,
|