@thorprovider/types 3.7.0 → 3.9.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/.turbo/turbo-build.log +18 -0
- package/.turbo/turbo-type-check.log +0 -0
- package/dist/.tsbuildinfo +1 -0
- package/dist/index.d.mts +463 -4
- package/dist/index.d.ts +463 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/publish.log +60 -0
- package/src/admin/DropshippingAdmin.ts +629 -0
- package/src/index.ts +35 -5
package/src/index.ts
CHANGED
|
@@ -377,11 +377,41 @@ export type {
|
|
|
377
377
|
AddOrderEditItemBody,
|
|
378
378
|
AddOrderEditItemResponse,
|
|
379
379
|
ConfirmOrderEditResponse,
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
380
|
+
// Dropshipper addresses (channel-scoped)
|
|
381
|
+
DropshipperAddressBody,
|
|
382
|
+
DropshipperAddressResponse,
|
|
383
|
+
GetDropshipperAddressesResponse,
|
|
384
|
+
// Financial Endpoints — Group A
|
|
385
|
+
SettlementStatus,
|
|
386
|
+
GetDropshipperAccountBalanceResponse,
|
|
387
|
+
GetDropshipperAccountOrdersOptions,
|
|
388
|
+
GetDropshipperAccountOrdersResponse,
|
|
389
|
+
GetAdminDropshipperAccountOrdersResponse,
|
|
390
|
+
GetAdminDropshipperAccountSettlementsOptions,
|
|
391
|
+
GetAdminDropshipperAccountSettlementsResponse,
|
|
392
|
+
ResolveGuaranteeBody,
|
|
393
|
+
ResolveGuaranteeResponse,
|
|
394
|
+
CreateCompensacionBody,
|
|
395
|
+
CreateCompensacionResponse,
|
|
396
|
+
CreateAjusteBody,
|
|
397
|
+
CreateAjusteResponse,
|
|
398
|
+
// Financial Endpoints — Group B
|
|
399
|
+
CreateCobroBody,
|
|
400
|
+
CreateCobroResponse,
|
|
401
|
+
CreatePagoBody,
|
|
402
|
+
CreatePagoResponse,
|
|
403
|
+
CreateReversoBody,
|
|
404
|
+
CreateReversoResponse,
|
|
405
|
+
ConfirmMovementBody,
|
|
406
|
+
ConfirmMovementResponse,
|
|
407
|
+
CancelMovementBody,
|
|
408
|
+
CancelMovementResponse,
|
|
409
|
+
GetFinancialAnalysisResponse,
|
|
410
|
+
RegisterPaymentBody,
|
|
411
|
+
RegisterPaymentResponse,
|
|
412
|
+
// Dashboard Capabilities
|
|
413
|
+
DropshipperDashboardCapabilities,
|
|
414
|
+
} from './admin';
|
|
385
415
|
|
|
386
416
|
// ============================================
|
|
387
417
|
// Header Configuration Types
|