@amazon-sp-api-release/amazon-sp-api-sdk-js 1.0.0-rc3 → 1.0.0-rc4
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/README.md +3 -3
- package/index.js +50 -0
- package/package.json +46 -12
- package/sample-node-app/index.js +28 -0
- package/src/apluscontent_v2020_11_01/ApiClient.js +740 -0
- package/src/apluscontent_v2020_11_01/api/AplusContentApi.js +650 -0
- package/src/apluscontent_v2020_11_01/index.js +477 -0
- package/src/apluscontent_v2020_11_01/model/AplusPaginatedResponse.js +85 -0
- package/src/apluscontent_v2020_11_01/model/AplusResponse.js +66 -0
- package/src/apluscontent_v2020_11_01/model/AsinBadge.js +60 -0
- package/src/apluscontent_v2020_11_01/model/AsinMetadata.js +108 -0
- package/src/apluscontent_v2020_11_01/model/ColorType.js +46 -0
- package/src/apluscontent_v2020_11_01/model/ContentBadge.js +67 -0
- package/src/apluscontent_v2020_11_01/model/ContentDocument.js +106 -0
- package/src/apluscontent_v2020_11_01/model/ContentMetadata.js +108 -0
- package/src/apluscontent_v2020_11_01/model/ContentMetadataRecord.js +77 -0
- package/src/apluscontent_v2020_11_01/model/ContentModule.js +187 -0
- package/src/apluscontent_v2020_11_01/model/ContentModuleType.js +137 -0
- package/src/apluscontent_v2020_11_01/model/ContentRecord.js +83 -0
- package/src/apluscontent_v2020_11_01/model/ContentStatus.js +60 -0
- package/src/apluscontent_v2020_11_01/model/ContentType.js +46 -0
- package/src/apluscontent_v2020_11_01/model/Decorator.js +89 -0
- package/src/apluscontent_v2020_11_01/model/DecoratorType.js +88 -0
- package/src/apluscontent_v2020_11_01/model/Error.js +85 -0
- package/src/apluscontent_v2020_11_01/model/ErrorList.js +68 -0
- package/src/apluscontent_v2020_11_01/model/GetContentDocumentResponse.js +86 -0
- package/src/apluscontent_v2020_11_01/model/ImageComponent.js +87 -0
- package/src/apluscontent_v2020_11_01/model/ImageCropSpecification.js +75 -0
- package/src/apluscontent_v2020_11_01/model/ImageDimensions.js +76 -0
- package/src/apluscontent_v2020_11_01/model/ImageOffsets.js +76 -0
- package/src/apluscontent_v2020_11_01/model/IntegerWithUnits.js +77 -0
- package/src/apluscontent_v2020_11_01/model/ListContentDocumentAsinRelationsResponse.js +101 -0
- package/src/apluscontent_v2020_11_01/model/ParagraphComponent.js +67 -0
- package/src/apluscontent_v2020_11_01/model/PlainTextItem.js +77 -0
- package/src/apluscontent_v2020_11_01/model/PositionType.js +46 -0
- package/src/apluscontent_v2020_11_01/model/PostContentDocumentApprovalSubmissionResponse.js +76 -0
- package/src/apluscontent_v2020_11_01/model/PostContentDocumentAsinRelationsRequest.js +66 -0
- package/src/apluscontent_v2020_11_01/model/PostContentDocumentAsinRelationsResponse.js +76 -0
- package/src/apluscontent_v2020_11_01/model/PostContentDocumentRequest.js +66 -0
- package/src/apluscontent_v2020_11_01/model/PostContentDocumentResponse.js +86 -0
- package/src/apluscontent_v2020_11_01/model/PostContentDocumentSuspendSubmissionResponse.js +76 -0
- package/src/apluscontent_v2020_11_01/model/PublishRecord.js +115 -0
- package/src/apluscontent_v2020_11_01/model/SearchContentDocumentsResponse.js +101 -0
- package/src/apluscontent_v2020_11_01/model/SearchContentPublishRecordsResponse.js +101 -0
- package/src/apluscontent_v2020_11_01/model/StandardCompanyLogoModule.js +67 -0
- package/src/apluscontent_v2020_11_01/model/StandardComparisonProductBlock.js +108 -0
- package/src/apluscontent_v2020_11_01/model/StandardComparisonTableModule.js +73 -0
- package/src/apluscontent_v2020_11_01/model/StandardFourImageTextModule.js +94 -0
- package/src/apluscontent_v2020_11_01/model/StandardFourImageTextQuadrantModule.js +94 -0
- package/src/apluscontent_v2020_11_01/model/StandardHeaderImageTextModule.js +73 -0
- package/src/apluscontent_v2020_11_01/model/StandardHeaderTextListBlock.js +73 -0
- package/src/apluscontent_v2020_11_01/model/StandardImageCaptionBlock.js +73 -0
- package/src/apluscontent_v2020_11_01/model/StandardImageSidebarModule.js +104 -0
- package/src/apluscontent_v2020_11_01/model/StandardImageTextBlock.js +81 -0
- package/src/apluscontent_v2020_11_01/model/StandardImageTextCaptionBlock.js +73 -0
- package/src/apluscontent_v2020_11_01/model/StandardImageTextOverlayModule.js +75 -0
- package/src/apluscontent_v2020_11_01/model/StandardMultipleImageTextModule.js +65 -0
- package/src/apluscontent_v2020_11_01/model/StandardProductDescriptionModule.js +67 -0
- package/src/apluscontent_v2020_11_01/model/StandardSingleImageHighlightsModule.js +103 -0
- package/src/apluscontent_v2020_11_01/model/StandardSingleImageSpecsDetailModule.js +117 -0
- package/src/apluscontent_v2020_11_01/model/StandardSingleSideImageModule.js +75 -0
- package/src/apluscontent_v2020_11_01/model/StandardTechSpecsModule.js +84 -0
- package/src/apluscontent_v2020_11_01/model/StandardTextBlock.js +73 -0
- package/src/apluscontent_v2020_11_01/model/StandardTextListBlock.js +67 -0
- package/src/apluscontent_v2020_11_01/model/StandardTextModule.js +75 -0
- package/src/apluscontent_v2020_11_01/model/StandardTextPairBlock.js +72 -0
- package/src/apluscontent_v2020_11_01/model/StandardThreeImageTextModule.js +87 -0
- package/src/apluscontent_v2020_11_01/model/TextComponent.js +76 -0
- package/src/apluscontent_v2020_11_01/model/TextItem.js +77 -0
- package/src/apluscontent_v2020_11_01/model/ValidateContentDocumentAsinRelationsResponse.js +97 -0
- package/src/appintegrations_v2024_04_01/ApiClient.js +740 -0
- package/src/appintegrations_v2024_04_01/api/AppIntegrationsApi.js +190 -0
- package/src/appintegrations_v2024_04_01/index.js +78 -0
- package/src/appintegrations_v2024_04_01/model/CreateNotificationRequest.js +85 -0
- package/src/appintegrations_v2024_04_01/model/CreateNotificationResponse.js +65 -0
- package/src/appintegrations_v2024_04_01/model/DeleteNotificationsRequest.js +97 -0
- package/src/appintegrations_v2024_04_01/model/Error.js +85 -0
- package/src/appintegrations_v2024_04_01/model/ErrorList.js +68 -0
- package/src/appintegrations_v2024_04_01/model/RecordActionFeedbackRequest.js +81 -0
- package/src/applications_v2023_11_30/ApiClient.js +740 -0
- package/src/applications_v2023_11_30/api/ApplicationsApi.js +77 -0
- package/src/applications_v2023_11_30/index.js +50 -0
- package/src/applications_v2023_11_30/model/Error.js +85 -0
- package/src/applications_v2023_11_30/model/ErrorList.js +68 -0
- package/src/awd_v2024_05_09/ApiClient.js +740 -0
- package/src/awd_v2024_05_09/api/AwdApi.js +628 -0
- package/src/awd_v2024_05_09/index.js +386 -0
- package/src/awd_v2024_05_09/model/Address.js +153 -0
- package/src/awd_v2024_05_09/model/CarrierCode.js +73 -0
- package/src/awd_v2024_05_09/model/CarrierCodeType.js +39 -0
- package/src/awd_v2024_05_09/model/DestinationDetails.js +81 -0
- package/src/awd_v2024_05_09/model/DimensionUnitOfMeasurement.js +46 -0
- package/src/awd_v2024_05_09/model/DistributionPackage.js +87 -0
- package/src/awd_v2024_05_09/model/DistributionPackageContents.js +75 -0
- package/src/awd_v2024_05_09/model/DistributionPackageQuantity.js +77 -0
- package/src/awd_v2024_05_09/model/DistributionPackageType.js +46 -0
- package/src/awd_v2024_05_09/model/Error.js +85 -0
- package/src/awd_v2024_05_09/model/ErrorList.js +68 -0
- package/src/awd_v2024_05_09/model/ExpirationDetails.js +73 -0
- package/src/awd_v2024_05_09/model/InboundEligibility.js +97 -0
- package/src/awd_v2024_05_09/model/InboundEligibilityStatus.js +46 -0
- package/src/awd_v2024_05_09/model/InboundOrder.js +140 -0
- package/src/awd_v2024_05_09/model/InboundOrderCreationData.js +94 -0
- package/src/awd_v2024_05_09/model/InboundOrderReference.js +67 -0
- package/src/awd_v2024_05_09/model/InboundPackages.js +68 -0
- package/src/awd_v2024_05_09/model/InboundPreferences.js +65 -0
- package/src/awd_v2024_05_09/model/InboundShipment.js +199 -0
- package/src/awd_v2024_05_09/model/InboundShipmentStatus.js +81 -0
- package/src/awd_v2024_05_09/model/InboundShipmentSummary.js +111 -0
- package/src/awd_v2024_05_09/model/InboundStatus.js +74 -0
- package/src/awd_v2024_05_09/model/InventoryDetails.js +81 -0
- package/src/awd_v2024_05_09/model/InventoryListing.js +76 -0
- package/src/awd_v2024_05_09/model/InventoryQuantity.js +77 -0
- package/src/awd_v2024_05_09/model/InventorySummary.js +100 -0
- package/src/awd_v2024_05_09/model/InventoryUnitOfMeasurement.js +53 -0
- package/src/awd_v2024_05_09/model/LabelOwner.js +46 -0
- package/src/awd_v2024_05_09/model/LabelStatus.js +60 -0
- package/src/awd_v2024_05_09/model/MeasurementData.js +83 -0
- package/src/awd_v2024_05_09/model/OrderIneligibilityReason.js +77 -0
- package/src/awd_v2024_05_09/model/PackageDimensions.js +97 -0
- package/src/awd_v2024_05_09/model/PackageVolume.js +77 -0
- package/src/awd_v2024_05_09/model/PackageWeight.js +77 -0
- package/src/awd_v2024_05_09/model/PrepCategory.js +130 -0
- package/src/awd_v2024_05_09/model/PrepDetails.js +90 -0
- package/src/awd_v2024_05_09/model/PrepInstruction.js +73 -0
- package/src/awd_v2024_05_09/model/PrepOwner.js +46 -0
- package/src/awd_v2024_05_09/model/ProductAttribute.js +73 -0
- package/src/awd_v2024_05_09/model/ProductQuantity.js +102 -0
- package/src/awd_v2024_05_09/model/ShipmentLabels.js +75 -0
- package/src/awd_v2024_05_09/model/ShipmentListing.js +74 -0
- package/src/awd_v2024_05_09/model/SkuEligibility.js +86 -0
- package/src/awd_v2024_05_09/model/SkuIneligibilityReason.js +77 -0
- package/src/awd_v2024_05_09/model/SkuQuantity.js +84 -0
- package/src/awd_v2024_05_09/model/TrackingDetails.js +75 -0
- package/src/awd_v2024_05_09/model/TransportationDetails.js +68 -0
- package/src/awd_v2024_05_09/model/VolumeUnitOfMeasurement.js +53 -0
- package/src/awd_v2024_05_09/model/WeightUnitOfMeasurement.js +46 -0
- package/src/catalogitems_v2022_04_01/ApiClient.js +740 -0
- package/src/catalogitems_v2022_04_01/api/CatalogApi.js +188 -0
- package/src/catalogitems_v2022_04_01/index.js +239 -0
- package/src/catalogitems_v2022_04_01/model/BrandRefinement.js +77 -0
- package/src/catalogitems_v2022_04_01/model/ClassificationRefinement.js +87 -0
- package/src/catalogitems_v2022_04_01/model/Dimension.js +73 -0
- package/src/catalogitems_v2022_04_01/model/Dimensions.js +86 -0
- package/src/catalogitems_v2022_04_01/model/Error.js +85 -0
- package/src/catalogitems_v2022_04_01/model/ErrorList.js +67 -0
- package/src/catalogitems_v2022_04_01/model/Item.js +156 -0
- package/src/catalogitems_v2022_04_01/model/ItemBrowseClassification.js +84 -0
- package/src/catalogitems_v2022_04_01/model/ItemBrowseClassificationsByMarketplace.js +76 -0
- package/src/catalogitems_v2022_04_01/model/ItemClassificationSalesRank.js +95 -0
- package/src/catalogitems_v2022_04_01/model/ItemContributor.js +77 -0
- package/src/catalogitems_v2022_04_01/model/ItemContributorRole.js +75 -0
- package/src/catalogitems_v2022_04_01/model/ItemDimensionsByMarketplace.js +82 -0
- package/src/catalogitems_v2022_04_01/model/ItemDisplayGroupSalesRank.js +95 -0
- package/src/catalogitems_v2022_04_01/model/ItemIdentifier.js +77 -0
- package/src/catalogitems_v2022_04_01/model/ItemIdentifiersByMarketplace.js +78 -0
- package/src/catalogitems_v2022_04_01/model/ItemImage.js +165 -0
- package/src/catalogitems_v2022_04_01/model/ItemImagesByMarketplace.js +78 -0
- package/src/catalogitems_v2022_04_01/model/ItemProductTypeByMarketplace.js +73 -0
- package/src/catalogitems_v2022_04_01/model/ItemRelationship.js +111 -0
- package/src/catalogitems_v2022_04_01/model/ItemRelationshipsByMarketplace.js +78 -0
- package/src/catalogitems_v2022_04_01/model/ItemSalesRanksByMarketplace.js +85 -0
- package/src/catalogitems_v2022_04_01/model/ItemSearchResults.js +98 -0
- package/src/catalogitems_v2022_04_01/model/ItemSummaryByMarketplace.js +252 -0
- package/src/catalogitems_v2022_04_01/model/ItemVariationTheme.js +73 -0
- package/src/catalogitems_v2022_04_01/model/ItemVendorDetailsByMarketplace.js +190 -0
- package/src/catalogitems_v2022_04_01/model/ItemVendorDetailsCategory.js +73 -0
- package/src/catalogitems_v2022_04_01/model/Pagination.js +73 -0
- package/src/catalogitems_v2022_04_01/model/Refinements.js +79 -0
- package/src/datakiosk_v2023_11_15/ApiClient.js +740 -0
- package/src/datakiosk_v2023_11_15/api/QueriesApi.js +291 -0
- package/src/datakiosk_v2023_11_15/index.js +99 -0
- package/src/datakiosk_v2023_11_15/model/CreateQueryResponse.js +67 -0
- package/src/datakiosk_v2023_11_15/model/CreateQuerySpecification.js +75 -0
- package/src/datakiosk_v2023_11_15/model/Error.js +85 -0
- package/src/datakiosk_v2023_11_15/model/ErrorList.js +68 -0
- package/src/datakiosk_v2023_11_15/model/GetDocumentResponse.js +77 -0
- package/src/datakiosk_v2023_11_15/model/GetQueriesResponse.js +76 -0
- package/src/datakiosk_v2023_11_15/model/GetQueriesResponsePagination.js +65 -0
- package/src/datakiosk_v2023_11_15/model/Query.js +175 -0
- package/src/datakiosk_v2023_11_15/model/QueryPagination.js +65 -0
- package/src/easyship_v2022_03_23/ApiClient.js +740 -0
- package/src/easyship_v2022_03_23/api/EasyShipApi.js +285 -0
- package/src/easyship_v2022_03_23/index.js +225 -0
- package/src/easyship_v2022_03_23/model/Code.js +109 -0
- package/src/easyship_v2022_03_23/model/CreateScheduledPackageRequest.js +87 -0
- package/src/easyship_v2022_03_23/model/CreateScheduledPackagesRequest.js +88 -0
- package/src/easyship_v2022_03_23/model/CreateScheduledPackagesResponse.js +83 -0
- package/src/easyship_v2022_03_23/model/Dimensions.js +97 -0
- package/src/easyship_v2022_03_23/model/Error.js +85 -0
- package/src/easyship_v2022_03_23/model/ErrorList.js +68 -0
- package/src/easyship_v2022_03_23/model/HandoverMethod.js +46 -0
- package/src/easyship_v2022_03_23/model/InvoiceData.js +75 -0
- package/src/easyship_v2022_03_23/model/Item.js +73 -0
- package/src/easyship_v2022_03_23/model/LabelFormat.js +46 -0
- package/src/easyship_v2022_03_23/model/ListHandoverSlotsRequest.js +97 -0
- package/src/easyship_v2022_03_23/model/ListHandoverSlotsResponse.js +78 -0
- package/src/easyship_v2022_03_23/model/OrderScheduleDetails.js +75 -0
- package/src/easyship_v2022_03_23/model/Package.js +138 -0
- package/src/easyship_v2022_03_23/model/PackageDetails.js +84 -0
- package/src/easyship_v2022_03_23/model/PackageStatus.js +116 -0
- package/src/easyship_v2022_03_23/model/Packages.js +68 -0
- package/src/easyship_v2022_03_23/model/RejectedOrder.js +75 -0
- package/src/easyship_v2022_03_23/model/ScheduledPackageId.js +75 -0
- package/src/easyship_v2022_03_23/model/TimeSlot.js +91 -0
- package/src/easyship_v2022_03_23/model/TrackingDetails.js +65 -0
- package/src/easyship_v2022_03_23/model/UnitOfLength.js +39 -0
- package/src/easyship_v2022_03_23/model/UnitOfWeight.js +46 -0
- package/src/easyship_v2022_03_23/model/UpdatePackageDetails.js +77 -0
- package/src/easyship_v2022_03_23/model/UpdateScheduledPackagesRequest.js +78 -0
- package/src/easyship_v2022_03_23/model/Weight.js +73 -0
- package/src/fbaeligibility_v1/ApiClient.js +740 -0
- package/src/fbaeligibility_v1/api/FbaInboundApi.js +99 -0
- package/src/fbaeligibility_v1/index.js +57 -0
- package/src/fbaeligibility_v1/model/Error.js +83 -0
- package/src/fbaeligibility_v1/model/GetItemEligibilityPreviewResponse.js +74 -0
- package/src/fbaeligibility_v1/model/ItemEligibilityPreview.js +365 -0
- package/src/fbainventory_v1/ApiClient.js +740 -0
- package/src/fbainventory_v1/api/FbaInventoryApi.js +282 -0
- package/src/fbainventory_v1/index.js +155 -0
- package/src/fbainventory_v1/model/AddInventoryRequest.js +66 -0
- package/src/fbainventory_v1/model/AddInventoryResponse.js +66 -0
- package/src/fbainventory_v1/model/CreateInventoryItemRequest.js +87 -0
- package/src/fbainventory_v1/model/CreateInventoryItemResponse.js +66 -0
- package/src/fbainventory_v1/model/DeleteInventoryItemResponse.js +66 -0
- package/src/fbainventory_v1/model/Error.js +83 -0
- package/src/fbainventory_v1/model/GetInventorySummariesResponse.js +82 -0
- package/src/fbainventory_v1/model/GetInventorySummariesResult.js +78 -0
- package/src/fbainventory_v1/model/Granularity.js +73 -0
- package/src/fbainventory_v1/model/InventoryDetails.js +113 -0
- package/src/fbainventory_v1/model/InventoryItem.js +87 -0
- package/src/fbainventory_v1/model/InventorySummary.js +129 -0
- package/src/fbainventory_v1/model/Pagination.js +65 -0
- package/src/fbainventory_v1/model/ResearchingQuantity.js +74 -0
- package/src/fbainventory_v1/model/ResearchingQuantityEntry.js +103 -0
- package/src/fbainventory_v1/model/ReservedQuantity.js +89 -0
- package/src/fbainventory_v1/model/UnfulfillableQuantity.js +113 -0
- package/src/feeds_v2021_06_30/ApiClient.js +740 -0
- package/src/feeds_v2021_06_30/api/FeedsApi.js +346 -0
- package/src/feeds_v2021_06_30/index.js +99 -0
- package/src/feeds_v2021_06_30/model/CreateFeedDocumentResponse.js +77 -0
- package/src/feeds_v2021_06_30/model/CreateFeedDocumentSpecification.js +67 -0
- package/src/feeds_v2021_06_30/model/CreateFeedResponse.js +67 -0
- package/src/feeds_v2021_06_30/model/CreateFeedSpecification.js +95 -0
- package/src/feeds_v2021_06_30/model/Error.js +85 -0
- package/src/feeds_v2021_06_30/model/ErrorList.js +68 -0
- package/src/feeds_v2021_06_30/model/Feed.js +167 -0
- package/src/feeds_v2021_06_30/model/FeedDocument.js +99 -0
- package/src/feeds_v2021_06_30/model/GetFeedsResponse.js +76 -0
- package/src/finances_2024_06_19/ApiClient.js +740 -0
- package/src/finances_2024_06_19/api/DefaultApi.js +98 -0
- package/src/finances_2024_06_19/index.js +155 -0
- package/src/finances_2024_06_19/model/AmazonPayContext.js +81 -0
- package/src/finances_2024_06_19/model/Breakdown.js +80 -0
- package/src/finances_2024_06_19/model/Context.js +315 -0
- package/src/finances_2024_06_19/model/Currency.js +73 -0
- package/src/finances_2024_06_19/model/DeferredContext.js +81 -0
- package/src/finances_2024_06_19/model/Error.js +85 -0
- package/src/finances_2024_06_19/model/ErrorList.js +68 -0
- package/src/finances_2024_06_19/model/Item.js +100 -0
- package/src/finances_2024_06_19/model/ItemRelatedIdentifier.js +105 -0
- package/src/finances_2024_06_19/model/ListTransactionsResponse.js +74 -0
- package/src/finances_2024_06_19/model/MarketplaceDetails.js +73 -0
- package/src/finances_2024_06_19/model/PaymentsContext.js +89 -0
- package/src/finances_2024_06_19/model/ProductContext.js +89 -0
- package/src/finances_2024_06_19/model/RelatedIdentifier.js +123 -0
- package/src/finances_2024_06_19/model/SellingPartnerMetadata.js +81 -0
- package/src/finances_2024_06_19/model/TimeRangeContext.js +73 -0
- package/src/finances_2024_06_19/model/Transaction.js +157 -0
- package/src/finances_v0/ApiClient.js +740 -0
- package/src/finances_v0/api/DefaultApi.js +268 -0
- package/src/finances_v0/index.js +386 -0
- package/src/finances_v0/model/AdhocDisbursementEvent.js +89 -0
- package/src/finances_v0/model/AdjustmentEvent.js +98 -0
- package/src/finances_v0/model/AdjustmentItem.js +120 -0
- package/src/finances_v0/model/AffordabilityExpenseEvent.js +131 -0
- package/src/finances_v0/model/CapacityReservationBillingEvent.js +89 -0
- package/src/finances_v0/model/ChargeComponent.js +73 -0
- package/src/finances_v0/model/ChargeInstrument.js +81 -0
- package/src/finances_v0/model/ChargeRefundEvent.js +90 -0
- package/src/finances_v0/model/ChargeRefundTransaction.js +73 -0
- package/src/finances_v0/model/CouponPaymentEvent.js +121 -0
- package/src/finances_v0/model/Currency.js +73 -0
- package/src/finances_v0/model/DebtRecoveryEvent.js +98 -0
- package/src/finances_v0/model/DebtRecoveryItem.js +88 -0
- package/src/finances_v0/model/DirectPayment.js +73 -0
- package/src/finances_v0/model/Error.js +85 -0
- package/src/finances_v0/model/FBALiquidationEvent.js +88 -0
- package/src/finances_v0/model/FailedAdhocDisbursementEvent.js +113 -0
- package/src/finances_v0/model/FeeComponent.js +73 -0
- package/src/finances_v0/model/FinancialEventGroup.js +143 -0
- package/src/finances_v0/model/FinancialEvents.js +349 -0
- package/src/finances_v0/model/ImagingServicesFeeEvent.js +90 -0
- package/src/finances_v0/model/ListFinancialEventGroupsPayload.js +74 -0
- package/src/finances_v0/model/ListFinancialEventGroupsResponse.js +74 -0
- package/src/finances_v0/model/ListFinancialEventsPayload.js +73 -0
- package/src/finances_v0/model/ListFinancialEventsResponse.js +74 -0
- package/src/finances_v0/model/LoanServicingEvent.js +73 -0
- package/src/finances_v0/model/NetworkComminglingTransactionEvent.js +120 -0
- package/src/finances_v0/model/PayWithAmazonEvent.js +138 -0
- package/src/finances_v0/model/ProductAdsPaymentEvent.js +103 -0
- package/src/finances_v0/model/Promotion.js +81 -0
- package/src/finances_v0/model/RemovalShipmentAdjustmentEvent.js +106 -0
- package/src/finances_v0/model/RemovalShipmentEvent.js +106 -0
- package/src/finances_v0/model/RemovalShipmentItem.js +118 -0
- package/src/finances_v0/model/RemovalShipmentItemAdjustment.js +111 -0
- package/src/finances_v0/model/RentalTransactionEvent.js +139 -0
- package/src/finances_v0/model/RetrochargeEvent.js +113 -0
- package/src/finances_v0/model/SAFETReimbursementEvent.js +98 -0
- package/src/finances_v0/model/SAFETReimbursementItem.js +82 -0
- package/src/finances_v0/model/SellerDealPaymentEvent.js +119 -0
- package/src/finances_v0/model/SellerReviewEnrollmentPaymentEvent.js +105 -0
- package/src/finances_v0/model/ServiceFeeEvent.js +122 -0
- package/src/finances_v0/model/ShipmentEvent.js +173 -0
- package/src/finances_v0/model/ShipmentItem.js +164 -0
- package/src/finances_v0/model/SolutionProviderCreditEvent.js +137 -0
- package/src/finances_v0/model/TDSReimbursementEvent.js +81 -0
- package/src/finances_v0/model/TaxWithheldComponent.js +74 -0
- package/src/finances_v0/model/TaxWithholdingEvent.js +88 -0
- package/src/finances_v0/model/TaxWithholdingPeriod.js +73 -0
- package/src/finances_v0/model/TrialShipmentEvent.js +98 -0
- package/src/finances_v0/model/ValueAddedServiceChargeEvent.js +89 -0
- package/src/fulfillmentinbound_v0/ApiClient.js +740 -0
- package/src/fulfillmentinbound_v0/api/FbaInboundApi.js +424 -0
- package/src/fulfillmentinbound_v0/index.js +253 -0
- package/src/fulfillmentinbound_v0/model/ASINPrepInstructions.js +90 -0
- package/src/fulfillmentinbound_v0/model/Address.js +133 -0
- package/src/fulfillmentinbound_v0/model/AmazonPrepFeesDetails.js +73 -0
- package/src/fulfillmentinbound_v0/model/Amount.js +77 -0
- package/src/fulfillmentinbound_v0/model/BarcodeInstruction.js +53 -0
- package/src/fulfillmentinbound_v0/model/BillOfLadingDownloadURL.js +65 -0
- package/src/fulfillmentinbound_v0/model/BoxContentsFeeDetails.js +80 -0
- package/src/fulfillmentinbound_v0/model/BoxContentsSource.js +60 -0
- package/src/fulfillmentinbound_v0/model/CurrencyCode.js +46 -0
- package/src/fulfillmentinbound_v0/model/Error.js +85 -0
- package/src/fulfillmentinbound_v0/model/ErrorReason.js +46 -0
- package/src/fulfillmentinbound_v0/model/GetBillOfLadingResponse.js +74 -0
- package/src/fulfillmentinbound_v0/model/GetLabelsResponse.js +74 -0
- package/src/fulfillmentinbound_v0/model/GetPrepInstructionsResponse.js +74 -0
- package/src/fulfillmentinbound_v0/model/GetPrepInstructionsResult.js +93 -0
- package/src/fulfillmentinbound_v0/model/GetShipmentItemsResponse.js +74 -0
- package/src/fulfillmentinbound_v0/model/GetShipmentItemsResult.js +74 -0
- package/src/fulfillmentinbound_v0/model/GetShipmentsResponse.js +74 -0
- package/src/fulfillmentinbound_v0/model/GetShipmentsResult.js +74 -0
- package/src/fulfillmentinbound_v0/model/InboundShipmentInfo.js +141 -0
- package/src/fulfillmentinbound_v0/model/InboundShipmentItem.js +126 -0
- package/src/fulfillmentinbound_v0/model/InvalidASIN.js +73 -0
- package/src/fulfillmentinbound_v0/model/InvalidSKU.js +73 -0
- package/src/fulfillmentinbound_v0/model/LabelDownloadURL.js +65 -0
- package/src/fulfillmentinbound_v0/model/LabelPrepType.js +53 -0
- package/src/fulfillmentinbound_v0/model/PrepDetails.js +77 -0
- package/src/fulfillmentinbound_v0/model/PrepGuidance.js +53 -0
- package/src/fulfillmentinbound_v0/model/PrepInstruction.js +144 -0
- package/src/fulfillmentinbound_v0/model/PrepOwner.js +46 -0
- package/src/fulfillmentinbound_v0/model/SKUPrepInstructions.js +107 -0
- package/src/fulfillmentinbound_v0/model/ShipmentStatus.js +102 -0
- package/src/fulfillmentinbound_v2024_03_20/ApiClient.js +740 -0
- package/src/fulfillmentinbound_v2024_03_20/api/FbaInboundApi.js +2718 -0
- package/src/fulfillmentinbound_v2024_03_20/index.js +1016 -0
- package/src/fulfillmentinbound_v2024_03_20/model/Address.js +147 -0
- package/src/fulfillmentinbound_v2024_03_20/model/AddressInput.js +149 -0
- package/src/fulfillmentinbound_v2024_03_20/model/AllOwnersConstraint.js +39 -0
- package/src/fulfillmentinbound_v2024_03_20/model/AppointmentSlot.js +77 -0
- package/src/fulfillmentinbound_v2024_03_20/model/AppointmentSlotTime.js +77 -0
- package/src/fulfillmentinbound_v2024_03_20/model/Box.js +148 -0
- package/src/fulfillmentinbound_v2024_03_20/model/BoxContentInformationSource.js +53 -0
- package/src/fulfillmentinbound_v2024_03_20/model/BoxInput.js +106 -0
- package/src/fulfillmentinbound_v2024_03_20/model/BoxRequirements.js +67 -0
- package/src/fulfillmentinbound_v2024_03_20/model/BoxUpdateInput.js +114 -0
- package/src/fulfillmentinbound_v2024_03_20/model/CancelInboundPlanResponse.js +67 -0
- package/src/fulfillmentinbound_v2024_03_20/model/CancelSelfShipAppointmentRequest.js +65 -0
- package/src/fulfillmentinbound_v2024_03_20/model/CancelSelfShipAppointmentResponse.js +67 -0
- package/src/fulfillmentinbound_v2024_03_20/model/Carrier.js +73 -0
- package/src/fulfillmentinbound_v2024_03_20/model/CarrierAppointment.js +77 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ComplianceDetail.js +89 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ConfirmDeliveryWindowOptionsResponse.js +67 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ConfirmPackingOptionResponse.js +67 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ConfirmPlacementOptionResponse.js +67 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ConfirmShipmentContentUpdatePreviewResponse.js +67 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ConfirmTransportationOptionsRequest.js +68 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ConfirmTransportationOptionsResponse.js +67 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ContactInformation.js +85 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ContentUpdatePreview.js +97 -0
- package/src/fulfillmentinbound_v2024_03_20/model/CreateInboundPlanRequest.js +96 -0
- package/src/fulfillmentinbound_v2024_03_20/model/CreateInboundPlanResponse.js +77 -0
- package/src/fulfillmentinbound_v2024_03_20/model/CreateMarketplaceItemLabelsRequest.js +121 -0
- package/src/fulfillmentinbound_v2024_03_20/model/CreateMarketplaceItemLabelsResponse.js +68 -0
- package/src/fulfillmentinbound_v2024_03_20/model/Currency.js +77 -0
- package/src/fulfillmentinbound_v2024_03_20/model/CustomPlacementInput.js +78 -0
- package/src/fulfillmentinbound_v2024_03_20/model/Dates.js +65 -0
- package/src/fulfillmentinbound_v2024_03_20/model/DeliveryWindowOption.js +107 -0
- package/src/fulfillmentinbound_v2024_03_20/model/Dimensions.js +97 -0
- package/src/fulfillmentinbound_v2024_03_20/model/DocumentDownload.js +85 -0
- package/src/fulfillmentinbound_v2024_03_20/model/Error.js +85 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ErrorList.js +68 -0
- package/src/fulfillmentinbound_v2024_03_20/model/FreightInformation.js +73 -0
- package/src/fulfillmentinbound_v2024_03_20/model/GenerateDeliveryWindowOptionsResponse.js +67 -0
- package/src/fulfillmentinbound_v2024_03_20/model/GeneratePackingOptionsResponse.js +67 -0
- package/src/fulfillmentinbound_v2024_03_20/model/GeneratePlacementOptionsRequest.js +66 -0
- package/src/fulfillmentinbound_v2024_03_20/model/GeneratePlacementOptionsResponse.js +67 -0
- package/src/fulfillmentinbound_v2024_03_20/model/GenerateSelfShipAppointmentSlotsRequest.js +73 -0
- package/src/fulfillmentinbound_v2024_03_20/model/GenerateSelfShipAppointmentSlotsResponse.js +67 -0
- package/src/fulfillmentinbound_v2024_03_20/model/GenerateShipmentContentUpdatePreviewsRequest.js +79 -0
- package/src/fulfillmentinbound_v2024_03_20/model/GenerateShipmentContentUpdatePreviewsResponse.js +67 -0
- package/src/fulfillmentinbound_v2024_03_20/model/GenerateTransportationOptionsRequest.js +78 -0
- package/src/fulfillmentinbound_v2024_03_20/model/GenerateTransportationOptionsResponse.js +67 -0
- package/src/fulfillmentinbound_v2024_03_20/model/GetDeliveryChallanDocumentResponse.js +67 -0
- package/src/fulfillmentinbound_v2024_03_20/model/GetSelfShipAppointmentSlotsResponse.js +75 -0
- package/src/fulfillmentinbound_v2024_03_20/model/InboundOperationStatus.js +98 -0
- package/src/fulfillmentinbound_v2024_03_20/model/InboundPlan.js +154 -0
- package/src/fulfillmentinbound_v2024_03_20/model/InboundPlanSummary.js +127 -0
- package/src/fulfillmentinbound_v2024_03_20/model/Incentive.js +97 -0
- package/src/fulfillmentinbound_v2024_03_20/model/Item.js +134 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ItemInput.js +113 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ItemLabelPageType.js +109 -0
- package/src/fulfillmentinbound_v2024_03_20/model/LabelOwner.js +53 -0
- package/src/fulfillmentinbound_v2024_03_20/model/LabelPrintType.js +46 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ListDeliveryWindowOptionsResponse.js +76 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ListInboundPlanBoxesResponse.js +76 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ListInboundPlanItemsResponse.js +76 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ListInboundPlanPalletsResponse.js +76 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ListInboundPlansResponse.js +74 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ListItemComplianceDetailsResponse.js +66 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ListPackingGroupBoxesResponse.js +76 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ListPackingGroupItemsResponse.js +76 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ListPackingOptionsResponse.js +76 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ListPlacementOptionsResponse.js +76 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ListPrepDetailsResponse.js +68 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ListShipmentBoxesResponse.js +76 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ListShipmentContentUpdatePreviewsResponse.js +76 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ListShipmentItemsResponse.js +76 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ListShipmentPalletsResponse.js +76 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ListTransportationOptionsResponse.js +76 -0
- package/src/fulfillmentinbound_v2024_03_20/model/LtlTrackingDetail.js +73 -0
- package/src/fulfillmentinbound_v2024_03_20/model/LtlTrackingDetailInput.js +75 -0
- package/src/fulfillmentinbound_v2024_03_20/model/MskuPrepDetail.js +111 -0
- package/src/fulfillmentinbound_v2024_03_20/model/MskuPrepDetailInput.js +88 -0
- package/src/fulfillmentinbound_v2024_03_20/model/MskuQuantity.js +77 -0
- package/src/fulfillmentinbound_v2024_03_20/model/OperationProblem.js +95 -0
- package/src/fulfillmentinbound_v2024_03_20/model/OperationStatus.js +53 -0
- package/src/fulfillmentinbound_v2024_03_20/model/OwnerConstraint.js +53 -0
- package/src/fulfillmentinbound_v2024_03_20/model/PackageGroupingInput.js +84 -0
- package/src/fulfillmentinbound_v2024_03_20/model/PackingConfiguration.js +83 -0
- package/src/fulfillmentinbound_v2024_03_20/model/PackingOption.js +138 -0
- package/src/fulfillmentinbound_v2024_03_20/model/PackingOptionSummary.js +77 -0
- package/src/fulfillmentinbound_v2024_03_20/model/Pagination.js +65 -0
- package/src/fulfillmentinbound_v2024_03_20/model/Pallet.js +99 -0
- package/src/fulfillmentinbound_v2024_03_20/model/PalletInput.js +91 -0
- package/src/fulfillmentinbound_v2024_03_20/model/PlacementOption.js +116 -0
- package/src/fulfillmentinbound_v2024_03_20/model/PlacementOptionSummary.js +77 -0
- package/src/fulfillmentinbound_v2024_03_20/model/PrepCategory.js +130 -0
- package/src/fulfillmentinbound_v2024_03_20/model/PrepInstruction.js +81 -0
- package/src/fulfillmentinbound_v2024_03_20/model/PrepOwner.js +53 -0
- package/src/fulfillmentinbound_v2024_03_20/model/PrepType.js +144 -0
- package/src/fulfillmentinbound_v2024_03_20/model/Quote.js +83 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ReasonComment.js +95 -0
- package/src/fulfillmentinbound_v2024_03_20/model/Region.js +81 -0
- package/src/fulfillmentinbound_v2024_03_20/model/RequestedUpdates.js +75 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ScheduleSelfShipAppointmentRequest.js +65 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ScheduleSelfShipAppointmentResponse.js +67 -0
- package/src/fulfillmentinbound_v2024_03_20/model/SelectedDeliveryWindow.js +105 -0
- package/src/fulfillmentinbound_v2024_03_20/model/SelfShipAppointmentDetails.js +81 -0
- package/src/fulfillmentinbound_v2024_03_20/model/SelfShipAppointmentSlotsAvailability.js +74 -0
- package/src/fulfillmentinbound_v2024_03_20/model/SetPackingInformationRequest.js +68 -0
- package/src/fulfillmentinbound_v2024_03_20/model/SetPackingInformationResponse.js +67 -0
- package/src/fulfillmentinbound_v2024_03_20/model/SetPrepDetailsRequest.js +78 -0
- package/src/fulfillmentinbound_v2024_03_20/model/SetPrepDetailsResponse.js +67 -0
- package/src/fulfillmentinbound_v2024_03_20/model/Shipment.js +186 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ShipmentDestination.js +83 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ShipmentSource.js +75 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ShipmentSummary.js +77 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ShipmentTransportationConfiguration.js +102 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ShippingConfiguration.js +73 -0
- package/src/fulfillmentinbound_v2024_03_20/model/ShippingRequirements.js +77 -0
- package/src/fulfillmentinbound_v2024_03_20/model/SpdTrackingDetail.js +66 -0
- package/src/fulfillmentinbound_v2024_03_20/model/SpdTrackingDetailInput.js +68 -0
- package/src/fulfillmentinbound_v2024_03_20/model/SpdTrackingItem.js +81 -0
- package/src/fulfillmentinbound_v2024_03_20/model/SpdTrackingItemInput.js +77 -0
- package/src/fulfillmentinbound_v2024_03_20/model/Stackability.js +46 -0
- package/src/fulfillmentinbound_v2024_03_20/model/TaxDetails.js +82 -0
- package/src/fulfillmentinbound_v2024_03_20/model/TaxRate.js +81 -0
- package/src/fulfillmentinbound_v2024_03_20/model/TrackingDetails.js +73 -0
- package/src/fulfillmentinbound_v2024_03_20/model/TrackingDetailsInput.js +73 -0
- package/src/fulfillmentinbound_v2024_03_20/model/TransportationOption.js +133 -0
- package/src/fulfillmentinbound_v2024_03_20/model/TransportationSelection.js +85 -0
- package/src/fulfillmentinbound_v2024_03_20/model/UnitOfMeasurement.js +46 -0
- package/src/fulfillmentinbound_v2024_03_20/model/UnitOfWeight.js +46 -0
- package/src/fulfillmentinbound_v2024_03_20/model/UpdateInboundPlanNameRequest.js +67 -0
- package/src/fulfillmentinbound_v2024_03_20/model/UpdateItemComplianceDetailsRequest.js +77 -0
- package/src/fulfillmentinbound_v2024_03_20/model/UpdateItemComplianceDetailsResponse.js +67 -0
- package/src/fulfillmentinbound_v2024_03_20/model/UpdateShipmentNameRequest.js +67 -0
- package/src/fulfillmentinbound_v2024_03_20/model/UpdateShipmentSourceAddressRequest.js +67 -0
- package/src/fulfillmentinbound_v2024_03_20/model/UpdateShipmentSourceAddressResponse.js +67 -0
- package/src/fulfillmentinbound_v2024_03_20/model/UpdateShipmentTrackingDetailsRequest.js +67 -0
- package/src/fulfillmentinbound_v2024_03_20/model/UpdateShipmentTrackingDetailsResponse.js +67 -0
- package/src/fulfillmentinbound_v2024_03_20/model/Weight.js +77 -0
- package/src/fulfillmentinbound_v2024_03_20/model/WeightRange.js +87 -0
- package/src/fulfillmentinbound_v2024_03_20/model/Window.js +85 -0
- package/src/fulfillmentinbound_v2024_03_20/model/WindowInput.js +67 -0
- package/src/fulfillmentoutbound_v2020_07_01/ApiClient.js +740 -0
- package/src/fulfillmentoutbound_v2020_07_01/api/FbaOutboundApi.js +792 -0
- package/src/fulfillmentoutbound_v2020_07_01/index.js +652 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/AdditionalLocationInfo.js +214 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/Address.js +147 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/Amount.js +91 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/CODSettings.js +96 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/CancelFulfillmentOrderResponse.js +66 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/CreateFulfillmentOrderItem.js +133 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/CreateFulfillmentOrderRequest.js +210 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/CreateFulfillmentOrderResponse.js +66 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/CreateFulfillmentReturnRequest.js +68 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/CreateFulfillmentReturnResponse.js +74 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/CreateFulfillmentReturnResult.js +84 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/CreateReturnItem.js +105 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/CurrentStatus.js +158 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/DateRange.js +77 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/DeliveryDocument.js +75 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/DeliveryInformation.js +74 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/DeliveryMessage.js +73 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/DeliveryOffer.js +81 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/DeliveryPolicy.js +65 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/DeliveryPreferences.js +73 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/DeliveryWindow.js +77 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/Destination.js +73 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/DropOffLocation.js +131 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/Error.js +85 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/EventCode.js +263 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/Feature.js +85 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/FeatureSettings.js +93 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/FeatureSku.js +97 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/Fee.js +109 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/FulfillmentAction.js +46 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/FulfillmentOrder.js +206 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/FulfillmentOrderItem.js +177 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/FulfillmentOrderStatus.js +95 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/FulfillmentPolicy.js +53 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/FulfillmentPreview.js +157 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/FulfillmentPreviewItem.js +123 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/FulfillmentPreviewShipment.js +108 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/FulfillmentReturnItemStatus.js +46 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/FulfillmentShipment.js +163 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/FulfillmentShipmentItem.js +111 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/FulfillmentShipmentPackage.js +109 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/GetDeliveryOffersProduct.js +75 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/GetDeliveryOffersRequest.js +77 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/GetDeliveryOffersResponse.js +74 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/GetDeliveryOffersResult.js +66 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/GetDeliveryOffersTerms.js +77 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/GetFeatureInventoryResponse.js +74 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/GetFeatureInventoryResult.js +94 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/GetFeatureSkuResponse.js +74 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/GetFeatureSkuResult.js +103 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/GetFeaturesResponse.js +74 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/GetFeaturesResult.js +68 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/GetFulfillmentOrderResponse.js +74 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/GetFulfillmentOrderResult.js +118 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/GetFulfillmentPreviewItem.js +95 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/GetFulfillmentPreviewRequest.js +120 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/GetFulfillmentPreviewResponse.js +74 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/GetFulfillmentPreviewResult.js +66 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/GetPackageTrackingDetailsResponse.js +74 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/InvalidItemReason.js +77 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/InvalidItemReasonCode.js +60 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/InvalidReturnItem.js +87 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/ListAllFulfillmentOrdersResponse.js +74 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/ListAllFulfillmentOrdersResult.js +74 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/ListReturnReasonCodesResponse.js +74 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/ListReturnReasonCodesResult.js +66 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/LockerDetails.js +73 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/Money.js +77 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/Origin.js +67 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/PackageTrackingDetails.js +180 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/PaymentInformation.js +87 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/ProductIdentifier.js +67 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/ReasonCodeDetails.js +85 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/ReturnAuthorization.js +107 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/ReturnItem.js +157 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/ReturnItemDisposition.js +67 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/ScheduledDeliveryInfo.js +78 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/ShippingSpeedCategory.js +60 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/SubmitFulfillmentOrderStatusUpdateRequest.js +65 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/SubmitFulfillmentOrderStatusUpdateResponse.js +66 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/TrackingAddress.js +87 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/TrackingEvent.js +97 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/UnfulfillablePreviewItem.js +95 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/UpdateFulfillmentOrderItem.js +139 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/UpdateFulfillmentOrderRequest.js +155 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/UpdateFulfillmentOrderResponse.js +66 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/VariablePrecisionAddress.js +125 -0
- package/src/fulfillmentoutbound_v2020_07_01/model/Weight.js +109 -0
- package/src/invoices_v2024_06_19/ApiClient.js +740 -0
- package/src/invoices_v2024_06_19/api/InvoicesApi.js +448 -0
- package/src/invoices_v2024_06_19/index.js +162 -0
- package/src/invoices_v2024_06_19/model/AttributeOption.js +73 -0
- package/src/invoices_v2024_06_19/model/Error.js +85 -0
- package/src/invoices_v2024_06_19/model/ErrorList.js +68 -0
- package/src/invoices_v2024_06_19/model/Export.js +105 -0
- package/src/invoices_v2024_06_19/model/ExportInvoicesRequest.js +139 -0
- package/src/invoices_v2024_06_19/model/ExportInvoicesResponse.js +65 -0
- package/src/invoices_v2024_06_19/model/ExportStatus.js +60 -0
- package/src/invoices_v2024_06_19/model/FileFormat.js +39 -0
- package/src/invoices_v2024_06_19/model/GetInvoiceResponse.js +65 -0
- package/src/invoices_v2024_06_19/model/GetInvoicesAttributesResponse.js +65 -0
- package/src/invoices_v2024_06_19/model/GetInvoicesDocumentResponse.js +65 -0
- package/src/invoices_v2024_06_19/model/GetInvoicesExportResponse.js +65 -0
- package/src/invoices_v2024_06_19/model/GetInvoicesExportsResponse.js +74 -0
- package/src/invoices_v2024_06_19/model/GetInvoicesResponse.js +74 -0
- package/src/invoices_v2024_06_19/model/Invoice.js +138 -0
- package/src/invoices_v2024_06_19/model/InvoicesAttributes.js +90 -0
- package/src/invoices_v2024_06_19/model/InvoicesDocument.js +73 -0
- package/src/invoices_v2024_06_19/model/TransactionIdentifier.js +73 -0
- package/src/invoicing_v0/ApiClient.js +740 -0
- package/src/invoicing_v0/api/ShipmentInvoiceApi.js +191 -0
- package/src/invoicing_v0/index.js +148 -0
- package/src/invoicing_v0/model/Address.js +153 -0
- package/src/invoicing_v0/model/AddressTypeEnum.js +46 -0
- package/src/invoicing_v0/model/BuyerTaxInfo.js +82 -0
- package/src/invoicing_v0/model/Error.js +85 -0
- package/src/invoicing_v0/model/GetInvoiceStatusResponse.js +74 -0
- package/src/invoicing_v0/model/GetShipmentDetailsResponse.js +74 -0
- package/src/invoicing_v0/model/MarketplaceTaxInfo.js +82 -0
- package/src/invoicing_v0/model/Money.js +73 -0
- package/src/invoicing_v0/model/ShipmentDetail.js +170 -0
- package/src/invoicing_v0/model/ShipmentInvoiceStatus.js +60 -0
- package/src/invoicing_v0/model/ShipmentInvoiceStatusInfo.js +73 -0
- package/src/invoicing_v0/model/ShipmentInvoiceStatusResponse.js +65 -0
- package/src/invoicing_v0/model/ShipmentItem.js +141 -0
- package/src/invoicing_v0/model/SubmitInvoiceRequest.js +85 -0
- package/src/invoicing_v0/model/SubmitInvoiceResponse.js +66 -0
- package/src/invoicing_v0/model/TaxClassification.js +73 -0
- package/src/listingsitems_v2021_08_01/ApiClient.js +740 -0
- package/src/listingsitems_v2021_08_01/api/ListingsApi.js +461 -0
- package/src/listingsitems_v2021_08_01/index.js +218 -0
- package/src/listingsitems_v2021_08_01/model/Audience.js +73 -0
- package/src/listingsitems_v2021_08_01/model/Error.js +85 -0
- package/src/listingsitems_v2021_08_01/model/ErrorList.js +67 -0
- package/src/listingsitems_v2021_08_01/model/FulfillmentAvailability.js +75 -0
- package/src/listingsitems_v2021_08_01/model/Issue.js +139 -0
- package/src/listingsitems_v2021_08_01/model/IssueEnforcementAction.js +67 -0
- package/src/listingsitems_v2021_08_01/model/IssueEnforcements.js +78 -0
- package/src/listingsitems_v2021_08_01/model/IssueExemption.js +101 -0
- package/src/listingsitems_v2021_08_01/model/Item.js +138 -0
- package/src/listingsitems_v2021_08_01/model/ItemIdentifiersByMarketplace.js +73 -0
- package/src/listingsitems_v2021_08_01/model/ItemImage.js +87 -0
- package/src/listingsitems_v2021_08_01/model/ItemOfferByMarketplace.js +123 -0
- package/src/listingsitems_v2021_08_01/model/ItemProcurement.js +67 -0
- package/src/listingsitems_v2021_08_01/model/ItemProductTypeByMarketplace.js +77 -0
- package/src/listingsitems_v2021_08_01/model/ItemRelationship.js +111 -0
- package/src/listingsitems_v2021_08_01/model/ItemRelationshipsByMarketplace.js +78 -0
- package/src/listingsitems_v2021_08_01/model/ItemSearchResults.js +86 -0
- package/src/listingsitems_v2021_08_01/model/ItemSummaryByMarketplace.js +253 -0
- package/src/listingsitems_v2021_08_01/model/ItemVariationTheme.js +77 -0
- package/src/listingsitems_v2021_08_01/model/ListingsItemPatchRequest.js +78 -0
- package/src/listingsitems_v2021_08_01/model/ListingsItemPutRequest.js +111 -0
- package/src/listingsitems_v2021_08_01/model/ListingsItemSubmissionResponse.js +131 -0
- package/src/listingsitems_v2021_08_01/model/Money.js +77 -0
- package/src/listingsitems_v2021_08_01/model/Pagination.js +73 -0
- package/src/listingsitems_v2021_08_01/model/PatchOperation.js +111 -0
- package/src/listingsitems_v2021_08_01/model/Points.js +66 -0
- package/src/listingsrestrictions_v2021_08_01/ApiClient.js +740 -0
- package/src/listingsrestrictions_v2021_08_01/api/ListingsApi.js +111 -0
- package/src/listingsrestrictions_v2021_08_01/index.js +71 -0
- package/src/listingsrestrictions_v2021_08_01/model/Error.js +85 -0
- package/src/listingsrestrictions_v2021_08_01/model/Link.js +107 -0
- package/src/listingsrestrictions_v2021_08_01/model/Reason.js +110 -0
- package/src/listingsrestrictions_v2021_08_01/model/Restriction.js +170 -0
- package/src/listingsrestrictions_v2021_08_01/model/RestrictionList.js +67 -0
- package/src/merchantfulfillment_v0/ApiClient.js +740 -0
- package/src/merchantfulfillment_v0/api/MerchantFulfillmentApi.js +281 -0
- package/src/merchantfulfillment_v0/index.js +428 -0
- package/src/merchantfulfillment_v0/model/AdditionalInputs.js +73 -0
- package/src/merchantfulfillment_v0/model/AdditionalSellerInput.js +129 -0
- package/src/merchantfulfillment_v0/model/AdditionalSellerInputs.js +77 -0
- package/src/merchantfulfillment_v0/model/Address.js +159 -0
- package/src/merchantfulfillment_v0/model/AvailableCarrierWillPickUpOption.js +77 -0
- package/src/merchantfulfillment_v0/model/AvailableDeliveryExperienceOption.js +77 -0
- package/src/merchantfulfillment_v0/model/AvailableShippingServiceOptions.js +79 -0
- package/src/merchantfulfillment_v0/model/Benefits.js +74 -0
- package/src/merchantfulfillment_v0/model/CancelShipmentResponse.js +74 -0
- package/src/merchantfulfillment_v0/model/CarrierWillPickUpOption.js +53 -0
- package/src/merchantfulfillment_v0/model/Constraint.js +75 -0
- package/src/merchantfulfillment_v0/model/CreateShipmentRequest.js +110 -0
- package/src/merchantfulfillment_v0/model/CreateShipmentResponse.js +74 -0
- package/src/merchantfulfillment_v0/model/CurrencyAmount.js +77 -0
- package/src/merchantfulfillment_v0/model/DangerousGoodsDetails.js +201 -0
- package/src/merchantfulfillment_v0/model/DeliveryExperienceOption.js +67 -0
- package/src/merchantfulfillment_v0/model/DeliveryExperienceType.js +60 -0
- package/src/merchantfulfillment_v0/model/Error.js +85 -0
- package/src/merchantfulfillment_v0/model/ExcludedBenefit.js +73 -0
- package/src/merchantfulfillment_v0/model/FileContents.js +87 -0
- package/src/merchantfulfillment_v0/model/FileType.js +53 -0
- package/src/merchantfulfillment_v0/model/GetAdditionalSellerInputsRequest.js +87 -0
- package/src/merchantfulfillment_v0/model/GetAdditionalSellerInputsResponse.js +74 -0
- package/src/merchantfulfillment_v0/model/GetAdditionalSellerInputsResult.js +75 -0
- package/src/merchantfulfillment_v0/model/GetEligibleShipmentServicesRequest.js +75 -0
- package/src/merchantfulfillment_v0/model/GetEligibleShipmentServicesResponse.js +74 -0
- package/src/merchantfulfillment_v0/model/GetEligibleShipmentServicesResult.js +95 -0
- package/src/merchantfulfillment_v0/model/GetShipmentResponse.js +74 -0
- package/src/merchantfulfillment_v0/model/HazmatType.js +46 -0
- package/src/merchantfulfillment_v0/model/InputTargetType.js +46 -0
- package/src/merchantfulfillment_v0/model/Item.js +134 -0
- package/src/merchantfulfillment_v0/model/ItemLevelFields.js +78 -0
- package/src/merchantfulfillment_v0/model/Label.js +101 -0
- package/src/merchantfulfillment_v0/model/LabelCustomization.js +73 -0
- package/src/merchantfulfillment_v0/model/LabelDimensions.js +87 -0
- package/src/merchantfulfillment_v0/model/LabelFormat.js +67 -0
- package/src/merchantfulfillment_v0/model/LabelFormatOption.js +73 -0
- package/src/merchantfulfillment_v0/model/LabelFormatOptionRequest.js +65 -0
- package/src/merchantfulfillment_v0/model/Length.js +73 -0
- package/src/merchantfulfillment_v0/model/LiquidVolume.js +127 -0
- package/src/merchantfulfillment_v0/model/PackageDimensions.js +97 -0
- package/src/merchantfulfillment_v0/model/PredefinedPackageDimensions.js +382 -0
- package/src/merchantfulfillment_v0/model/RejectedShippingService.js +105 -0
- package/src/merchantfulfillment_v0/model/SellerInputDefinition.js +124 -0
- package/src/merchantfulfillment_v0/model/Shipment.js +201 -0
- package/src/merchantfulfillment_v0/model/ShipmentRequestDetails.js +150 -0
- package/src/merchantfulfillment_v0/model/ShipmentStatus.js +60 -0
- package/src/merchantfulfillment_v0/model/ShippingOfferingFilter.js +89 -0
- package/src/merchantfulfillment_v0/model/ShippingService.js +187 -0
- package/src/merchantfulfillment_v0/model/ShippingServiceOptions.js +101 -0
- package/src/merchantfulfillment_v0/model/StandardIdForLabel.js +39 -0
- package/src/merchantfulfillment_v0/model/TemporarilyUnavailableCarrier.js +67 -0
- package/src/merchantfulfillment_v0/model/TermsAndConditionsNotAcceptedCarrier.js +67 -0
- package/src/merchantfulfillment_v0/model/UnitOfLength.js +46 -0
- package/src/merchantfulfillment_v0/model/UnitOfWeight.js +46 -0
- package/src/merchantfulfillment_v0/model/Weight.js +77 -0
- package/src/messaging_v1/ApiClient.js +740 -0
- package/src/messaging_v1/api/MessagingApi.js +857 -0
- package/src/messaging_v1/index.js +281 -0
- package/src/messaging_v1/model/Attachment.js +77 -0
- package/src/messaging_v1/model/CreateAmazonMotorsRequest.js +66 -0
- package/src/messaging_v1/model/CreateAmazonMotorsResponse.js +66 -0
- package/src/messaging_v1/model/CreateConfirmCustomizationDetailsRequest.js +74 -0
- package/src/messaging_v1/model/CreateConfirmCustomizationDetailsResponse.js +66 -0
- package/src/messaging_v1/model/CreateConfirmDeliveryDetailsRequest.js +65 -0
- package/src/messaging_v1/model/CreateConfirmDeliveryDetailsResponse.js +66 -0
- package/src/messaging_v1/model/CreateConfirmOrderDetailsRequest.js +65 -0
- package/src/messaging_v1/model/CreateConfirmOrderDetailsResponse.js +66 -0
- package/src/messaging_v1/model/CreateConfirmServiceDetailsRequest.js +65 -0
- package/src/messaging_v1/model/CreateConfirmServiceDetailsResponse.js +66 -0
- package/src/messaging_v1/model/CreateDigitalAccessKeyRequest.js +74 -0
- package/src/messaging_v1/model/CreateDigitalAccessKeyResponse.js +66 -0
- package/src/messaging_v1/model/CreateLegalDisclosureRequest.js +66 -0
- package/src/messaging_v1/model/CreateLegalDisclosureResponse.js +66 -0
- package/src/messaging_v1/model/CreateNegativeFeedbackRemovalResponse.js +66 -0
- package/src/messaging_v1/model/CreateUnexpectedProblemRequest.js +65 -0
- package/src/messaging_v1/model/CreateUnexpectedProblemResponse.js +66 -0
- package/src/messaging_v1/model/CreateWarrantyRequest.js +82 -0
- package/src/messaging_v1/model/CreateWarrantyResponse.js +66 -0
- package/src/messaging_v1/model/Error.js +85 -0
- package/src/messaging_v1/model/GetAttributesResponse.js +74 -0
- package/src/messaging_v1/model/GetAttributesResponseBuyer.js +65 -0
- package/src/messaging_v1/model/GetMessagingActionResponse.js +90 -0
- package/src/messaging_v1/model/GetMessagingActionResponseEmbedded.js +65 -0
- package/src/messaging_v1/model/GetMessagingActionResponseLinks.js +76 -0
- package/src/messaging_v1/model/GetMessagingActionsForOrderResponse.js +82 -0
- package/src/messaging_v1/model/GetMessagingActionsForOrderResponseEmbedded.js +67 -0
- package/src/messaging_v1/model/GetMessagingActionsForOrderResponseLinks.js +77 -0
- package/src/messaging_v1/model/GetSchemaResponse.js +82 -0
- package/src/messaging_v1/model/GetSchemaResponseLinks.js +67 -0
- package/src/messaging_v1/model/InvoiceRequest.js +66 -0
- package/src/messaging_v1/model/InvoiceResponse.js +66 -0
- package/src/messaging_v1/model/LinkObject.js +75 -0
- package/src/messaging_v1/model/MessagingAction.js +67 -0
- package/src/notifications_v1/ApiClient.js +740 -0
- package/src/notifications_v1/api/NotificationsApi.js +450 -0
- package/src/notifications_v1/index.js +218 -0
- package/src/notifications_v1/model/AggregationFilter.js +65 -0
- package/src/notifications_v1/model/AggregationSettings.js +67 -0
- package/src/notifications_v1/model/AggregationTimePeriod.js +46 -0
- package/src/notifications_v1/model/CreateDestinationRequest.js +77 -0
- package/src/notifications_v1/model/CreateDestinationResponse.js +74 -0
- package/src/notifications_v1/model/CreateSubscriptionRequest.js +85 -0
- package/src/notifications_v1/model/CreateSubscriptionResponse.js +74 -0
- package/src/notifications_v1/model/DeleteDestinationResponse.js +66 -0
- package/src/notifications_v1/model/DeleteSubscriptionByIdResponse.js +66 -0
- package/src/notifications_v1/model/Destination.js +87 -0
- package/src/notifications_v1/model/DestinationResource.js +73 -0
- package/src/notifications_v1/model/DestinationResourceSpecification.js +73 -0
- package/src/notifications_v1/model/Error.js +85 -0
- package/src/notifications_v1/model/EventBridgeResource.js +87 -0
- package/src/notifications_v1/model/EventBridgeResourceSpecification.js +77 -0
- package/src/notifications_v1/model/EventFilter.js +144 -0
- package/src/notifications_v1/model/GetDestinationResponse.js +74 -0
- package/src/notifications_v1/model/GetDestinationsResponse.js +75 -0
- package/src/notifications_v1/model/GetSubscriptionByIdResponse.js +74 -0
- package/src/notifications_v1/model/GetSubscriptionResponse.js +74 -0
- package/src/notifications_v1/model/MarketplaceFilter.js +65 -0
- package/src/notifications_v1/model/OrderChangeTypeEnum.js +46 -0
- package/src/notifications_v1/model/OrderChangeTypeFilter.js +66 -0
- package/src/notifications_v1/model/ProcessingDirective.js +65 -0
- package/src/notifications_v1/model/SqsResource.js +67 -0
- package/src/notifications_v1/model/Subscription.js +95 -0
- package/src/orders_v0/ApiClient.js +740 -0
- package/src/orders_v0/api/OrdersV0Api.js +571 -0
- package/src/orders_v0/api/ShipmentApi.js +93 -0
- package/src/orders_v0/index.js +540 -0
- package/src/orders_v0/model/Address.js +199 -0
- package/src/orders_v0/model/AddressExtendedFields.js +89 -0
- package/src/orders_v0/model/AmazonPrograms.js +67 -0
- package/src/orders_v0/model/AssociatedItem.js +81 -0
- package/src/orders_v0/model/AssociationType.js +39 -0
- package/src/orders_v0/model/AutomatedShippingSettings.js +81 -0
- package/src/orders_v0/model/BusinessHours.js +124 -0
- package/src/orders_v0/model/BuyerCustomizedInfoDetail.js +65 -0
- package/src/orders_v0/model/BuyerInfo.js +97 -0
- package/src/orders_v0/model/BuyerRequestedCancel.js +73 -0
- package/src/orders_v0/model/BuyerTaxInfo.js +82 -0
- package/src/orders_v0/model/BuyerTaxInformation.js +89 -0
- package/src/orders_v0/model/ConfirmShipmentErrorResponse.js +66 -0
- package/src/orders_v0/model/ConfirmShipmentOrderItem.js +85 -0
- package/src/orders_v0/model/ConfirmShipmentRequest.js +99 -0
- package/src/orders_v0/model/ConstraintType.js +39 -0
- package/src/orders_v0/model/DeliveryPreferences.js +90 -0
- package/src/orders_v0/model/EasyShipShipmentStatus.js +144 -0
- package/src/orders_v0/model/ElectronicInvoiceStatus.js +67 -0
- package/src/orders_v0/model/Error.js +85 -0
- package/src/orders_v0/model/ExceptionDates.js +82 -0
- package/src/orders_v0/model/ExportInfo.js +73 -0
- package/src/orders_v0/model/FulfillmentInstruction.js +65 -0
- package/src/orders_v0/model/GetOrderAddressResponse.js +74 -0
- package/src/orders_v0/model/GetOrderBuyerInfoResponse.js +74 -0
- package/src/orders_v0/model/GetOrderItemsBuyerInfoResponse.js +74 -0
- package/src/orders_v0/model/GetOrderItemsResponse.js +74 -0
- package/src/orders_v0/model/GetOrderRegulatedInfoResponse.js +74 -0
- package/src/orders_v0/model/GetOrderResponse.js +74 -0
- package/src/orders_v0/model/GetOrdersResponse.js +74 -0
- package/src/orders_v0/model/ItemBuyerInfo.js +96 -0
- package/src/orders_v0/model/MarketplaceTaxInfo.js +66 -0
- package/src/orders_v0/model/Measurement.js +229 -0
- package/src/orders_v0/model/Money.js +73 -0
- package/src/orders_v0/model/OpenInterval.js +72 -0
- package/src/orders_v0/model/OpenTimeInterval.js +73 -0
- package/src/orders_v0/model/Order.js +601 -0
- package/src/orders_v0/model/OrderAddress.js +91 -0
- package/src/orders_v0/model/OrderBuyerInfo.js +107 -0
- package/src/orders_v0/model/OrderItem.js +403 -0
- package/src/orders_v0/model/OrderItemBuyerInfo.js +106 -0
- package/src/orders_v0/model/OrderItemsBuyerInfoList.js +86 -0
- package/src/orders_v0/model/OrderItemsInner.js +72 -0
- package/src/orders_v0/model/OrderItemsList.js +86 -0
- package/src/orders_v0/model/OrderRegulatedInfo.js +97 -0
- package/src/orders_v0/model/OrdersList.js +92 -0
- package/src/orders_v0/model/OtherDeliveryAttributes.js +53 -0
- package/src/orders_v0/model/PackageDetail.js +132 -0
- package/src/orders_v0/model/PaymentExecutionDetailItem.js +77 -0
- package/src/orders_v0/model/PointsGrantedDetail.js +73 -0
- package/src/orders_v0/model/PreferredDeliveryTime.js +75 -0
- package/src/orders_v0/model/PrescriptionDetail.js +127 -0
- package/src/orders_v0/model/ProductInfoDetail.js +65 -0
- package/src/orders_v0/model/RegulatedInformation.js +68 -0
- package/src/orders_v0/model/RegulatedInformationField.js +117 -0
- package/src/orders_v0/model/RegulatedOrderVerificationStatus.js +120 -0
- package/src/orders_v0/model/RejectionReason.js +77 -0
- package/src/orders_v0/model/ShipmentStatus.js +53 -0
- package/src/orders_v0/model/ShippingConstraints.js +86 -0
- package/src/orders_v0/model/SubstitutionOption.js +97 -0
- package/src/orders_v0/model/SubstitutionPreferences.js +102 -0
- package/src/orders_v0/model/TaxClassification.js +73 -0
- package/src/orders_v0/model/TaxCollection.js +101 -0
- package/src/orders_v0/model/UpdateShipmentStatusErrorResponse.js +66 -0
- package/src/orders_v0/model/UpdateShipmentStatusRequest.js +86 -0
- package/src/orders_v0/model/UpdateVerificationStatusErrorResponse.js +66 -0
- package/src/orders_v0/model/UpdateVerificationStatusRequest.js +67 -0
- package/src/orders_v0/model/UpdateVerificationStatusRequestBody.js +91 -0
- package/src/orders_v0/model/ValidVerificationDetail.js +78 -0
- package/src/orders_v0/model/VerificationDetails.js +65 -0
- package/src/orders_v0/model/VerificationStatus.js +67 -0
- package/src/pricing_v0/ApiClient.js +740 -0
- package/src/pricing_v0/api/ProductPricingApi.js +416 -0
- package/src/pricing_v0/index.js +393 -0
- package/src/pricing_v0/model/ASINIdentifier.js +77 -0
- package/src/pricing_v0/model/BatchOffersRequestParams.js +85 -0
- package/src/pricing_v0/model/BatchOffersResponse.js +83 -0
- package/src/pricing_v0/model/BatchRequest.js +85 -0
- package/src/pricing_v0/model/BuyBoxPriceType.js +135 -0
- package/src/pricing_v0/model/CompetitivePriceType.js +133 -0
- package/src/pricing_v0/model/CompetitivePricingType.js +87 -0
- package/src/pricing_v0/model/ConditionType.js +67 -0
- package/src/pricing_v0/model/CustomerType.js +46 -0
- package/src/pricing_v0/model/DetailedShippingTimeType.js +115 -0
- package/src/pricing_v0/model/Error.js +85 -0
- package/src/pricing_v0/model/Errors.js +68 -0
- package/src/pricing_v0/model/FulfillmentChannelType.js +46 -0
- package/src/pricing_v0/model/GetItemOffersBatchRequest.js +66 -0
- package/src/pricing_v0/model/GetItemOffersBatchResponse.js +66 -0
- package/src/pricing_v0/model/GetListingOffersBatchRequest.js +66 -0
- package/src/pricing_v0/model/GetListingOffersBatchResponse.js +66 -0
- package/src/pricing_v0/model/GetOffersHttpStatusLine.js +73 -0
- package/src/pricing_v0/model/GetOffersResponse.js +74 -0
- package/src/pricing_v0/model/GetOffersResult.js +134 -0
- package/src/pricing_v0/model/GetPricingResponse.js +75 -0
- package/src/pricing_v0/model/HttpMethod.js +67 -0
- package/src/pricing_v0/model/HttpResponseHeaders.js +75 -0
- package/src/pricing_v0/model/IdentifierType.js +75 -0
- package/src/pricing_v0/model/ItemCondition.js +67 -0
- package/src/pricing_v0/model/ItemIdentifier.js +93 -0
- package/src/pricing_v0/model/ItemOffersRequest.js +156 -0
- package/src/pricing_v0/model/ItemOffersRequestParams.js +114 -0
- package/src/pricing_v0/model/ItemOffersResponse.js +113 -0
- package/src/pricing_v0/model/ListingOffersRequest.js +156 -0
- package/src/pricing_v0/model/ListingOffersRequestParams.js +116 -0
- package/src/pricing_v0/model/ListingOffersResponse.js +111 -0
- package/src/pricing_v0/model/LowestPriceType.js +133 -0
- package/src/pricing_v0/model/MoneyType.js +73 -0
- package/src/pricing_v0/model/OfferCountType.js +81 -0
- package/src/pricing_v0/model/OfferCustomerType.js +46 -0
- package/src/pricing_v0/model/OfferDetail.js +195 -0
- package/src/pricing_v0/model/OfferListingCountType.js +77 -0
- package/src/pricing_v0/model/OfferType.js +141 -0
- package/src/pricing_v0/model/Points.js +73 -0
- package/src/pricing_v0/model/Price.js +91 -0
- package/src/pricing_v0/model/PriceType.js +89 -0
- package/src/pricing_v0/model/PrimeInformationType.js +77 -0
- package/src/pricing_v0/model/Product.js +109 -0
- package/src/pricing_v0/model/QuantityDiscountPriceType.js +87 -0
- package/src/pricing_v0/model/QuantityDiscountType.js +39 -0
- package/src/pricing_v0/model/SalesRankType.js +77 -0
- package/src/pricing_v0/model/SellerFeedbackType.js +75 -0
- package/src/pricing_v0/model/SellerSKUIdentifier.js +87 -0
- package/src/pricing_v0/model/ShipsFromType.js +73 -0
- package/src/pricing_v0/model/Summary.js +141 -0
- package/src/pricing_v2022_05_01/ApiClient.js +740 -0
- package/src/pricing_v2022_05_01/api/ProductPricingApi.js +135 -0
- package/src/pricing_v2022_05_01/index.js +316 -0
- package/src/pricing_v2022_05_01/model/BatchRequest.js +93 -0
- package/src/pricing_v2022_05_01/model/BatchResponse.js +77 -0
- package/src/pricing_v2022_05_01/model/CompetitiveSummaryBatchRequest.js +68 -0
- package/src/pricing_v2022_05_01/model/CompetitiveSummaryBatchResponse.js +68 -0
- package/src/pricing_v2022_05_01/model/CompetitiveSummaryIncludedData.js +53 -0
- package/src/pricing_v2022_05_01/model/CompetitiveSummaryRequest.js +117 -0
- package/src/pricing_v2022_05_01/model/CompetitiveSummaryResponse.js +77 -0
- package/src/pricing_v2022_05_01/model/CompetitiveSummaryResponseBody.js +113 -0
- package/src/pricing_v2022_05_01/model/Condition.js +67 -0
- package/src/pricing_v2022_05_01/model/Error.js +85 -0
- package/src/pricing_v2022_05_01/model/Errors.js +68 -0
- package/src/pricing_v2022_05_01/model/FeaturedBuyingOption.js +92 -0
- package/src/pricing_v2022_05_01/model/FeaturedOffer.js +83 -0
- package/src/pricing_v2022_05_01/model/FeaturedOfferExpectedPrice.js +75 -0
- package/src/pricing_v2022_05_01/model/FeaturedOfferExpectedPriceRequest.js +171 -0
- package/src/pricing_v2022_05_01/model/FeaturedOfferExpectedPriceRequestParams.js +85 -0
- package/src/pricing_v2022_05_01/model/FeaturedOfferExpectedPriceResponse.js +111 -0
- package/src/pricing_v2022_05_01/model/FeaturedOfferExpectedPriceResponseBody.js +83 -0
- package/src/pricing_v2022_05_01/model/FeaturedOfferExpectedPriceResult.js +90 -0
- package/src/pricing_v2022_05_01/model/FeaturedOfferSegment.js +97 -0
- package/src/pricing_v2022_05_01/model/FulfillmentType.js +46 -0
- package/src/pricing_v2022_05_01/model/GetFeaturedOfferExpectedPriceBatchRequest.js +66 -0
- package/src/pricing_v2022_05_01/model/GetFeaturedOfferExpectedPriceBatchResponse.js +66 -0
- package/src/pricing_v2022_05_01/model/HttpMethod.js +67 -0
- package/src/pricing_v2022_05_01/model/HttpStatusLine.js +73 -0
- package/src/pricing_v2022_05_01/model/LowestPricedOffer.js +78 -0
- package/src/pricing_v2022_05_01/model/LowestPricedOffersInput.js +91 -0
- package/src/pricing_v2022_05_01/model/MoneyType.js +73 -0
- package/src/pricing_v2022_05_01/model/Offer.js +216 -0
- package/src/pricing_v2022_05_01/model/OfferIdentifier.js +101 -0
- package/src/pricing_v2022_05_01/model/Points.js +73 -0
- package/src/pricing_v2022_05_01/model/PostalCode.js +73 -0
- package/src/pricing_v2022_05_01/model/Price.js +82 -0
- package/src/pricing_v2022_05_01/model/PrimeDetails.js +93 -0
- package/src/pricing_v2022_05_01/model/ReferencePrice.js +77 -0
- package/src/pricing_v2022_05_01/model/SampleLocation.js +65 -0
- package/src/pricing_v2022_05_01/model/Segment.js +65 -0
- package/src/pricing_v2022_05_01/model/SegmentDetails.js +73 -0
- package/src/pricing_v2022_05_01/model/SegmentedFeaturedOffer.js +275 -0
- package/src/pricing_v2022_05_01/model/ShippingOption.js +91 -0
- package/src/productfees_v0/ApiClient.js +740 -0
- package/src/productfees_v0/api/FeesApi.js +198 -0
- package/src/productfees_v0/index.js +162 -0
- package/src/productfees_v0/model/Error.js +84 -0
- package/src/productfees_v0/model/FeeDetail.js +109 -0
- package/src/productfees_v0/model/FeesEstimate.js +84 -0
- package/src/productfees_v0/model/FeesEstimateByIdRequest.js +85 -0
- package/src/productfees_v0/model/FeesEstimateError.js +97 -0
- package/src/productfees_v0/model/FeesEstimateIdentifier.js +121 -0
- package/src/productfees_v0/model/FeesEstimateRequest.js +103 -0
- package/src/productfees_v0/model/FeesEstimateResult.js +89 -0
- package/src/productfees_v0/model/GetMyFeesEstimateRequest.js +65 -0
- package/src/productfees_v0/model/GetMyFeesEstimateResponse.js +73 -0
- package/src/productfees_v0/model/GetMyFeesEstimateResult.js +65 -0
- package/src/productfees_v0/model/GetMyFeesEstimatesErrorList.js +67 -0
- package/src/productfees_v0/model/IdType.js +46 -0
- package/src/productfees_v0/model/IncludedFeeDetail.js +100 -0
- package/src/productfees_v0/model/MoneyType.js +72 -0
- package/src/productfees_v0/model/OptionalFulfillmentProgram.js +53 -0
- package/src/productfees_v0/model/Points.js +71 -0
- package/src/productfees_v0/model/PriceToEstimateFees.js +82 -0
- package/src/producttypedefinitions_v2020_09_01/ApiClient.js +740 -0
- package/src/producttypedefinitions_v2020_09_01/api/DefinitionsApi.js +176 -0
- package/src/producttypedefinitions_v2020_09_01/index.js +99 -0
- package/src/producttypedefinitions_v2020_09_01/model/Error.js +85 -0
- package/src/producttypedefinitions_v2020_09_01/model/ErrorList.js +67 -0
- package/src/producttypedefinitions_v2020_09_01/model/ProductType.js +87 -0
- package/src/producttypedefinitions_v2020_09_01/model/ProductTypeDefinition.js +201 -0
- package/src/producttypedefinitions_v2020_09_01/model/ProductTypeList.js +77 -0
- package/src/producttypedefinitions_v2020_09_01/model/ProductTypeVersion.js +85 -0
- package/src/producttypedefinitions_v2020_09_01/model/PropertyGroup.js +81 -0
- package/src/producttypedefinitions_v2020_09_01/model/SchemaLink.js +76 -0
- package/src/producttypedefinitions_v2020_09_01/model/SchemaLinkLink.js +91 -0
- package/src/replenishment_v2022_11_07/ApiClient.js +740 -0
- package/src/replenishment_v2022_11_07/api/OffersApi.js +131 -0
- package/src/replenishment_v2022_11_07/api/SellingpartnersApi.js +84 -0
- package/src/replenishment_v2022_11_07/index.js +295 -0
- package/src/replenishment_v2022_11_07/model/AggregationFrequency.js +60 -0
- package/src/replenishment_v2022_11_07/model/AutoEnrollmentPreference.js +46 -0
- package/src/replenishment_v2022_11_07/model/DiscountFunding.js +65 -0
- package/src/replenishment_v2022_11_07/model/EligibilityStatus.js +60 -0
- package/src/replenishment_v2022_11_07/model/EnrollmentMethod.js +46 -0
- package/src/replenishment_v2022_11_07/model/Error.js +85 -0
- package/src/replenishment_v2022_11_07/model/ErrorList.js +68 -0
- package/src/replenishment_v2022_11_07/model/GetSellingPartnerMetricsRequest.js +115 -0
- package/src/replenishment_v2022_11_07/model/GetSellingPartnerMetricsResponse.js +66 -0
- package/src/replenishment_v2022_11_07/model/GetSellingPartnerMetricsResponseMetric.js +233 -0
- package/src/replenishment_v2022_11_07/model/ListOfferMetricsRequest.js +85 -0
- package/src/replenishment_v2022_11_07/model/ListOfferMetricsRequestFilters.js +114 -0
- package/src/replenishment_v2022_11_07/model/ListOfferMetricsRequestPagination.js +77 -0
- package/src/replenishment_v2022_11_07/model/ListOfferMetricsRequestSort.js +77 -0
- package/src/replenishment_v2022_11_07/model/ListOfferMetricsResponse.js +74 -0
- package/src/replenishment_v2022_11_07/model/ListOfferMetricsResponseOffer.js +193 -0
- package/src/replenishment_v2022_11_07/model/ListOfferMetricsSortKey.js +95 -0
- package/src/replenishment_v2022_11_07/model/ListOffersRequest.js +85 -0
- package/src/replenishment_v2022_11_07/model/ListOffersRequestFilters.js +119 -0
- package/src/replenishment_v2022_11_07/model/ListOffersRequestPagination.js +77 -0
- package/src/replenishment_v2022_11_07/model/ListOffersRequestSort.js +77 -0
- package/src/replenishment_v2022_11_07/model/ListOffersResponse.js +74 -0
- package/src/replenishment_v2022_11_07/model/ListOffersResponseOffer.js +113 -0
- package/src/replenishment_v2022_11_07/model/ListOffersSortKey.js +67 -0
- package/src/replenishment_v2022_11_07/model/Metric.js +116 -0
- package/src/replenishment_v2022_11_07/model/OfferProgramConfiguration.js +81 -0
- package/src/replenishment_v2022_11_07/model/OfferProgramConfigurationPreferences.js +65 -0
- package/src/replenishment_v2022_11_07/model/OfferProgramConfigurationPromotions.js +86 -0
- package/src/replenishment_v2022_11_07/model/OfferProgramConfigurationPromotionsDiscountFunding.js +65 -0
- package/src/replenishment_v2022_11_07/model/PaginationResponse.js +65 -0
- package/src/replenishment_v2022_11_07/model/Preference.js +66 -0
- package/src/replenishment_v2022_11_07/model/ProgramType.js +39 -0
- package/src/replenishment_v2022_11_07/model/Promotion.js +86 -0
- package/src/replenishment_v2022_11_07/model/SortOrder.js +46 -0
- package/src/replenishment_v2022_11_07/model/TimeInterval.js +77 -0
- package/src/replenishment_v2022_11_07/model/TimePeriodType.js +46 -0
- package/src/reports_v2021_06_30/ApiClient.js +740 -0
- package/src/reports_v2021_06_30/api/ReportsApi.js +492 -0
- package/src/reports_v2021_06_30/index.js +113 -0
- package/src/reports_v2021_06_30/model/CreateReportResponse.js +67 -0
- package/src/reports_v2021_06_30/model/CreateReportScheduleResponse.js +67 -0
- package/src/reports_v2021_06_30/model/CreateReportScheduleSpecification.js +219 -0
- package/src/reports_v2021_06_30/model/CreateReportSpecification.js +101 -0
- package/src/reports_v2021_06_30/model/Error.js +85 -0
- package/src/reports_v2021_06_30/model/ErrorList.js +68 -0
- package/src/reports_v2021_06_30/model/GetReportsResponse.js +76 -0
- package/src/reports_v2021_06_30/model/Report.js +191 -0
- package/src/reports_v2021_06_30/model/ReportDocument.js +99 -0
- package/src/reports_v2021_06_30/model/ReportSchedule.js +111 -0
- package/src/reports_v2021_06_30/model/ReportScheduleList.js +68 -0
- package/src/sales_v1/ApiClient.js +740 -0
- package/src/sales_v1/api/SalesApi.js +122 -0
- package/src/sales_v1/index.js +64 -0
- package/src/sales_v1/model/Error.js +85 -0
- package/src/sales_v1/model/GetOrderMetricsResponse.js +75 -0
- package/src/sales_v1/model/Money.js +77 -0
- package/src/sales_v1/model/OrderMetricsInterval.js +116 -0
- package/src/sellers_v1/ApiClient.js +740 -0
- package/src/sellers_v1/api/SellersApi.js +118 -0
- package/src/sellers_v1/index.js +106 -0
- package/src/sellers_v1/model/Account.js +180 -0
- package/src/sellers_v1/model/Address.js +109 -0
- package/src/sellers_v1/model/Business.js +101 -0
- package/src/sellers_v1/model/Error.js +85 -0
- package/src/sellers_v1/model/GetAccountResponse.js +74 -0
- package/src/sellers_v1/model/GetMarketplaceParticipationsResponse.js +75 -0
- package/src/sellers_v1/model/Marketplace.js +117 -0
- package/src/sellers_v1/model/MarketplaceParticipation.js +86 -0
- package/src/sellers_v1/model/Participation.js +77 -0
- package/src/sellers_v1/model/PrimaryContact.js +85 -0
- package/src/services_v1/ApiClient.js +740 -0
- package/src/services_v1/api/ServiceApi.js +1115 -0
- package/src/services_v1/index.js +477 -0
- package/src/services_v1/model/AddAppointmentRequest.js +67 -0
- package/src/services_v1/model/Address.js +149 -0
- package/src/services_v1/model/Appointment.js +132 -0
- package/src/services_v1/model/AppointmentResource.js +65 -0
- package/src/services_v1/model/AppointmentSlot.js +81 -0
- package/src/services_v1/model/AppointmentSlotReport.js +110 -0
- package/src/services_v1/model/AppointmentTime.js +77 -0
- package/src/services_v1/model/AppointmentTimeInput.js +75 -0
- package/src/services_v1/model/AssignAppointmentResourcesRequest.js +68 -0
- package/src/services_v1/model/AssignAppointmentResourcesResponse.js +74 -0
- package/src/services_v1/model/AssignAppointmentResourcesResponsePayload.js +66 -0
- package/src/services_v1/model/AssociatedItem.js +145 -0
- package/src/services_v1/model/AvailabilityRecord.js +93 -0
- package/src/services_v1/model/Buyer.js +89 -0
- package/src/services_v1/model/CancelReservationResponse.js +66 -0
- package/src/services_v1/model/CancelServiceJobByServiceJobIdResponse.js +66 -0
- package/src/services_v1/model/CapacityType.js +60 -0
- package/src/services_v1/model/CompleteServiceJobByServiceJobIdResponse.js +66 -0
- package/src/services_v1/model/CreateReservationRecord.js +83 -0
- package/src/services_v1/model/CreateReservationRequest.js +77 -0
- package/src/services_v1/model/CreateReservationResponse.js +74 -0
- package/src/services_v1/model/CreateServiceDocumentUploadDestination.js +74 -0
- package/src/services_v1/model/DayOfWeek.js +81 -0
- package/src/services_v1/model/EncryptionDetails.js +101 -0
- package/src/services_v1/model/Error.js +113 -0
- package/src/services_v1/model/FixedSlot.js +97 -0
- package/src/services_v1/model/FixedSlotCapacity.js +90 -0
- package/src/services_v1/model/FixedSlotCapacityErrors.js +66 -0
- package/src/services_v1/model/FixedSlotCapacityQuery.js +94 -0
- package/src/services_v1/model/FulfillmentDocument.js +73 -0
- package/src/services_v1/model/FulfillmentTime.js +73 -0
- package/src/services_v1/model/GetAppointmentSlotsResponse.js +74 -0
- package/src/services_v1/model/GetServiceJobByServiceJobIdResponse.js +74 -0
- package/src/services_v1/model/GetServiceJobsResponse.js +74 -0
- package/src/services_v1/model/ItemDelivery.js +73 -0
- package/src/services_v1/model/ItemDeliveryPromise.js +73 -0
- package/src/services_v1/model/JobListing.js +90 -0
- package/src/services_v1/model/Poa.js +130 -0
- package/src/services_v1/model/RangeCapacity.js +74 -0
- package/src/services_v1/model/RangeSlot.js +81 -0
- package/src/services_v1/model/RangeSlotCapacity.js +82 -0
- package/src/services_v1/model/RangeSlotCapacityErrors.js +66 -0
- package/src/services_v1/model/RangeSlotCapacityQuery.js +86 -0
- package/src/services_v1/model/Recurrence.js +84 -0
- package/src/services_v1/model/RescheduleAppointmentRequest.js +77 -0
- package/src/services_v1/model/Reservation.js +123 -0
- package/src/services_v1/model/ScopeOfWork.js +89 -0
- package/src/services_v1/model/Seller.js +65 -0
- package/src/services_v1/model/ServiceDocumentUploadDestination.js +95 -0
- package/src/services_v1/model/ServiceJob.js +222 -0
- package/src/services_v1/model/ServiceJobProvider.js +65 -0
- package/src/services_v1/model/ServiceLocation.js +99 -0
- package/src/services_v1/model/ServiceUploadDocument.js +129 -0
- package/src/services_v1/model/SetAppointmentFulfillmentDataRequest.js +83 -0
- package/src/services_v1/model/SetAppointmentResponse.js +83 -0
- package/src/services_v1/model/Technician.js +73 -0
- package/src/services_v1/model/UpdateReservationRecord.js +83 -0
- package/src/services_v1/model/UpdateReservationRequest.js +77 -0
- package/src/services_v1/model/UpdateReservationResponse.js +74 -0
- package/src/services_v1/model/UpdateScheduleRecord.js +83 -0
- package/src/services_v1/model/UpdateScheduleRequest.js +68 -0
- package/src/services_v1/model/UpdateScheduleResponse.js +75 -0
- package/src/services_v1/model/Warning.js +85 -0
- package/src/shipping_v2/ApiClient.js +740 -0
- package/src/shipping_v2/api/ShippingApi.js +1208 -0
- package/src/shipping_v2/index.js +925 -0
- package/src/shipping_v2/model/AccessPoint.js +159 -0
- package/src/shipping_v2/model/AccessPointDetails.js +65 -0
- package/src/shipping_v2/model/AccessPointType.js +88 -0
- package/src/shipping_v2/model/AccessibilityAttributes.js +73 -0
- package/src/shipping_v2/model/AccountStatus.js +60 -0
- package/src/shipping_v2/model/AccountType.js +53 -0
- package/src/shipping_v2/model/ActiveAccount.js +73 -0
- package/src/shipping_v2/model/Address.js +165 -0
- package/src/shipping_v2/model/AmazonOrderDetails.js +67 -0
- package/src/shipping_v2/model/AmazonShipmentDetails.js +67 -0
- package/src/shipping_v2/model/AvailableValueAddedServiceGroup.js +96 -0
- package/src/shipping_v2/model/Benefits.js +78 -0
- package/src/shipping_v2/model/CancelShipmentResponse.js +65 -0
- package/src/shipping_v2/model/Carrier.js +77 -0
- package/src/shipping_v2/model/CarrierAccount.js +77 -0
- package/src/shipping_v2/model/CarrierAccountAttribute.js +81 -0
- package/src/shipping_v2/model/CarrierAccountInput.js +122 -0
- package/src/shipping_v2/model/ChannelDetails.js +83 -0
- package/src/shipping_v2/model/ChannelType.js +46 -0
- package/src/shipping_v2/model/ChargeComponent.js +93 -0
- package/src/shipping_v2/model/ClaimReason.js +67 -0
- package/src/shipping_v2/model/ClientReferenceDetail.js +97 -0
- package/src/shipping_v2/model/CollectOnDelivery.js +67 -0
- package/src/shipping_v2/model/CollectionFormsHistoryRecord.js +97 -0
- package/src/shipping_v2/model/CollectionsFormDocument.js +73 -0
- package/src/shipping_v2/model/CreateClaimRequest.js +111 -0
- package/src/shipping_v2/model/CreateClaimResponse.js +65 -0
- package/src/shipping_v2/model/Currency.js +77 -0
- package/src/shipping_v2/model/DangerousGoodsDetails.js +201 -0
- package/src/shipping_v2/model/DateRange.js +73 -0
- package/src/shipping_v2/model/DetailCodes.js +242 -0
- package/src/shipping_v2/model/Dimensions.js +117 -0
- package/src/shipping_v2/model/DirectFulfillmentItemIdentifiers.js +75 -0
- package/src/shipping_v2/model/DirectPurchaseRequest.js +106 -0
- package/src/shipping_v2/model/DirectPurchaseResponse.js +65 -0
- package/src/shipping_v2/model/DirectPurchaseResult.js +76 -0
- package/src/shipping_v2/model/DocumentFormat.js +53 -0
- package/src/shipping_v2/model/DocumentSize.js +107 -0
- package/src/shipping_v2/model/DocumentType.js +60 -0
- package/src/shipping_v2/model/Error.js +85 -0
- package/src/shipping_v2/model/ErrorList.js +68 -0
- package/src/shipping_v2/model/Event.js +93 -0
- package/src/shipping_v2/model/EventCode.js +130 -0
- package/src/shipping_v2/model/ExceptionOperatingHours.js +73 -0
- package/src/shipping_v2/model/ExcludedBenefit.js +75 -0
- package/src/shipping_v2/model/GenerateCollectionFormRequest.js +84 -0
- package/src/shipping_v2/model/GenerateCollectionFormResponse.js +65 -0
- package/src/shipping_v2/model/GenerationStatus.js +46 -0
- package/src/shipping_v2/model/Geocode.js +73 -0
- package/src/shipping_v2/model/GetAccessPointsResponse.js +65 -0
- package/src/shipping_v2/model/GetAccessPointsResult.js +68 -0
- package/src/shipping_v2/model/GetAdditionalInputsResponse.js +65 -0
- package/src/shipping_v2/model/GetCarrierAccountFormInputsResponse.js +66 -0
- package/src/shipping_v2/model/GetCarrierAccountsRequest.js +66 -0
- package/src/shipping_v2/model/GetCarrierAccountsResponse.js +68 -0
- package/src/shipping_v2/model/GetCollectionFormHistoryRequest.js +98 -0
- package/src/shipping_v2/model/GetCollectionFormHistoryResponse.js +74 -0
- package/src/shipping_v2/model/GetCollectionFormResponse.js +65 -0
- package/src/shipping_v2/model/GetRatesRequest.js +169 -0
- package/src/shipping_v2/model/GetRatesResponse.js +65 -0
- package/src/shipping_v2/model/GetRatesResult.js +87 -0
- package/src/shipping_v2/model/GetShipmentDocumentsResponse.js +65 -0
- package/src/shipping_v2/model/GetShipmentDocumentsResult.js +85 -0
- package/src/shipping_v2/model/GetTrackingResponse.js +65 -0
- package/src/shipping_v2/model/GetTrackingResult.js +108 -0
- package/src/shipping_v2/model/GetUnmanifestedShipmentsRequest.js +66 -0
- package/src/shipping_v2/model/GetUnmanifestedShipmentsResponse.js +66 -0
- package/src/shipping_v2/model/GoodsOwner.js +67 -0
- package/src/shipping_v2/model/IneligibilityReason.js +77 -0
- package/src/shipping_v2/model/IneligibilityReasonCode.js +102 -0
- package/src/shipping_v2/model/IneligibleRate.js +108 -0
- package/src/shipping_v2/model/InputType.js +46 -0
- package/src/shipping_v2/model/InvoiceDetails.js +73 -0
- package/src/shipping_v2/model/Item.js +155 -0
- package/src/shipping_v2/model/LabelAttribute.js +53 -0
- package/src/shipping_v2/model/LinkCarrierAccountRequest.js +95 -0
- package/src/shipping_v2/model/LinkCarrierAccountResponse.js +73 -0
- package/src/shipping_v2/model/LinkableAccountType.js +74 -0
- package/src/shipping_v2/model/LinkableCarrier.js +74 -0
- package/src/shipping_v2/model/LiquidVolume.js +127 -0
- package/src/shipping_v2/model/Location.js +89 -0
- package/src/shipping_v2/model/NdrAction.js +53 -0
- package/src/shipping_v2/model/NdrRequestData.js +73 -0
- package/src/shipping_v2/model/OneClickShipmentRequest.js +172 -0
- package/src/shipping_v2/model/OneClickShipmentResponse.js +65 -0
- package/src/shipping_v2/model/OneClickShipmentResult.js +118 -0
- package/src/shipping_v2/model/OneClickShipmentValueAddedService.js +75 -0
- package/src/shipping_v2/model/OperatingHours.js +80 -0
- package/src/shipping_v2/model/Package.js +133 -0
- package/src/shipping_v2/model/PackageDocument.js +87 -0
- package/src/shipping_v2/model/PackageDocumentDetail.js +86 -0
- package/src/shipping_v2/model/PaymentType.js +46 -0
- package/src/shipping_v2/model/PrintOption.js +96 -0
- package/src/shipping_v2/model/Promise.js +72 -0
- package/src/shipping_v2/model/PurchaseShipmentRequest.js +104 -0
- package/src/shipping_v2/model/PurchaseShipmentResponse.js +65 -0
- package/src/shipping_v2/model/PurchaseShipmentResult.js +96 -0
- package/src/shipping_v2/model/Rate.js +190 -0
- package/src/shipping_v2/model/RateItem.js +89 -0
- package/src/shipping_v2/model/RateItemID.js +263 -0
- package/src/shipping_v2/model/RateItemType.js +53 -0
- package/src/shipping_v2/model/RequestedDocumentSpecification.js +122 -0
- package/src/shipping_v2/model/RequestedLabelCustomization.js +66 -0
- package/src/shipping_v2/model/RequestedValueAddedService.js +67 -0
- package/src/shipping_v2/model/Service.js +77 -0
- package/src/shipping_v2/model/ServiceSelection.js +67 -0
- package/src/shipping_v2/model/SettlementType.js +46 -0
- package/src/shipping_v2/model/ShipmentType.js +46 -0
- package/src/shipping_v2/model/ShipperInstruction.js +65 -0
- package/src/shipping_v2/model/Status.js +102 -0
- package/src/shipping_v2/model/SubmitNdrFeedbackRequest.js +85 -0
- package/src/shipping_v2/model/SupportedDocumentDetail.js +77 -0
- package/src/shipping_v2/model/SupportedDocumentSpecification.js +88 -0
- package/src/shipping_v2/model/TaxDetail.js +77 -0
- package/src/shipping_v2/model/TaxType.js +39 -0
- package/src/shipping_v2/model/TimeOfDay.js +81 -0
- package/src/shipping_v2/model/TimeWindow.js +73 -0
- package/src/shipping_v2/model/TrackingDetailCodes.js +78 -0
- package/src/shipping_v2/model/TrackingSummary.js +73 -0
- package/src/shipping_v2/model/UnlinkCarrierAccountRequest.js +74 -0
- package/src/shipping_v2/model/UnlinkCarrierAccountResponse.js +65 -0
- package/src/shipping_v2/model/UnmanifestedCarrierInformation.js +82 -0
- package/src/shipping_v2/model/UnmanifestedShipmentLocation.js +73 -0
- package/src/shipping_v2/model/ValidationMetadata.js +81 -0
- package/src/shipping_v2/model/ValueAddedService.js +87 -0
- package/src/shipping_v2/model/ValueAddedServiceDetails.js +65 -0
- package/src/shipping_v2/model/Weight.js +109 -0
- package/src/solicitations_v1/ApiClient.js +740 -0
- package/src/solicitations_v1/api/SolicitationsApi.js +150 -0
- package/src/solicitations_v1/index.js +120 -0
- package/src/solicitations_v1/model/CreateProductReviewAndSellerFeedbackSolicitationResponse.js +66 -0
- package/src/solicitations_v1/model/Error.js +85 -0
- package/src/solicitations_v1/model/GetSchemaResponse.js +81 -0
- package/src/solicitations_v1/model/GetSchemaResponseLinks.js +66 -0
- package/src/solicitations_v1/model/GetSolicitationActionResponse.js +90 -0
- package/src/solicitations_v1/model/GetSolicitationActionResponseEmbedded.js +64 -0
- package/src/solicitations_v1/model/GetSolicitationActionResponseLinks.js +75 -0
- package/src/solicitations_v1/model/GetSolicitationActionsForOrderResponse.js +82 -0
- package/src/solicitations_v1/model/GetSolicitationActionsForOrderResponseEmbedded.js +66 -0
- package/src/solicitations_v1/model/GetSolicitationActionsForOrderResponseLinks.js +76 -0
- package/src/solicitations_v1/model/LinkObject.js +75 -0
- package/src/solicitations_v1/model/SolicitationsAction.js +66 -0
- package/src/supplysources_v2020_07_01/ApiClient.js +740 -0
- package/src/supplysources_v2020_07_01/api/SupplySourcesApi.js +341 -0
- package/src/supplysources_v2020_07_01/index.js +288 -0
- package/src/supplysources_v2020_07_01/model/Address.js +153 -0
- package/src/supplysources_v2020_07_01/model/AddressWithContact.js +73 -0
- package/src/supplysources_v2020_07_01/model/ContactDetails.js +65 -0
- package/src/supplysources_v2020_07_01/model/ContactDetailsPrimary.js +72 -0
- package/src/supplysources_v2020_07_01/model/CreateSupplySourceRequest.js +87 -0
- package/src/supplysources_v2020_07_01/model/CreateSupplySourceResponse.js +77 -0
- package/src/supplysources_v2020_07_01/model/CurbsidePickupConfiguration.js +81 -0
- package/src/supplysources_v2020_07_01/model/DeliveryChannel.js +72 -0
- package/src/supplysources_v2020_07_01/model/Duration.js +73 -0
- package/src/supplysources_v2020_07_01/model/Error.js +85 -0
- package/src/supplysources_v2020_07_01/model/ErrorList.js +68 -0
- package/src/supplysources_v2020_07_01/model/GetSupplySourcesResponse.js +74 -0
- package/src/supplysources_v2020_07_01/model/InStorePickupConfiguration.js +73 -0
- package/src/supplysources_v2020_07_01/model/OperatingHour.js +73 -0
- package/src/supplysources_v2020_07_01/model/OperatingHoursByDay.js +114 -0
- package/src/supplysources_v2020_07_01/model/OperationalConfiguration.js +89 -0
- package/src/supplysources_v2020_07_01/model/OutboundCapability.js +96 -0
- package/src/supplysources_v2020_07_01/model/ParkingConfiguration.js +81 -0
- package/src/supplysources_v2020_07_01/model/ParkingCostType.js +46 -0
- package/src/supplysources_v2020_07_01/model/ParkingSpotIdentificationType.js +46 -0
- package/src/supplysources_v2020_07_01/model/ParkingWithAddressConfiguration.js +110 -0
- package/src/supplysources_v2020_07_01/model/PickupChannel.js +96 -0
- package/src/supplysources_v2020_07_01/model/ReturnLocation.js +73 -0
- package/src/supplysources_v2020_07_01/model/ServicesCapability.js +73 -0
- package/src/supplysources_v2020_07_01/model/SupplySource.js +129 -0
- package/src/supplysources_v2020_07_01/model/SupplySourceCapabilities.js +73 -0
- package/src/supplysources_v2020_07_01/model/SupplySourceConfiguration.js +73 -0
- package/src/supplysources_v2020_07_01/model/SupplySourceListInner.js +88 -0
- package/src/supplysources_v2020_07_01/model/SupplySourceStatus.js +46 -0
- package/src/supplysources_v2020_07_01/model/SupplySourceStatusReadOnly.js +53 -0
- package/src/supplysources_v2020_07_01/model/ThroughputCap.js +73 -0
- package/src/supplysources_v2020_07_01/model/ThroughputConfig.js +75 -0
- package/src/supplysources_v2020_07_01/model/ThroughputUnit.js +39 -0
- package/src/supplysources_v2020_07_01/model/TimeUnit.js +53 -0
- package/src/supplysources_v2020_07_01/model/UpdateSupplySourceRequest.js +81 -0
- package/src/supplysources_v2020_07_01/model/UpdateSupplySourceStatusRequest.js +65 -0
- package/src/tokens_v2021_03_01/ApiClient.js +740 -0
- package/src/tokens_v2021_03_01/api/TokensApi.js +86 -0
- package/src/tokens_v2021_03_01/index.js +71 -0
- package/src/tokens_v2021_03_01/model/CreateRestrictedDataTokenRequest.js +76 -0
- package/src/tokens_v2021_03_01/model/CreateRestrictedDataTokenResponse.js +73 -0
- package/src/tokens_v2021_03_01/model/Error.js +85 -0
- package/src/tokens_v2021_03_01/model/ErrorList.js +65 -0
- package/src/tokens_v2021_03_01/model/RestrictedResource.js +117 -0
- package/src/transfers_v2024_06_01/ApiClient.js +740 -0
- package/src/transfers_v2024_06_01/api/DefaultApi.js +141 -0
- package/src/transfers_v2024_06_01/index.js +99 -0
- package/src/transfers_v2024_06_01/model/AssignmentType.js +39 -0
- package/src/transfers_v2024_06_01/model/Error.js +85 -0
- package/src/transfers_v2024_06_01/model/ErrorList.js +68 -0
- package/src/transfers_v2024_06_01/model/ExpiryDate.js +73 -0
- package/src/transfers_v2024_06_01/model/GetPaymentMethodsResponse.js +66 -0
- package/src/transfers_v2024_06_01/model/InitiatePayoutRequest.js +77 -0
- package/src/transfers_v2024_06_01/model/InitiatePayoutResponse.js +67 -0
- package/src/transfers_v2024_06_01/model/PaymentMethodDetails.js +113 -0
- package/src/transfers_v2024_06_01/model/PaymentMethodType.js +53 -0
- package/src/uploads_v2020_11_01/ApiClient.js +740 -0
- package/src/uploads_v2020_11_01/api/UploadsApi.js +107 -0
- package/src/uploads_v2020_11_01/index.js +57 -0
- package/src/uploads_v2020_11_01/model/CreateUploadDestinationResponse.js +74 -0
- package/src/uploads_v2020_11_01/model/Error.js +85 -0
- package/src/uploads_v2020_11_01/model/UploadDestination.js +81 -0
- package/src/vehicles_v2024_11_01/ApiClient.js +740 -0
- package/src/vehicles_v2024_11_01/api/AutomotiveApi.js +103 -0
- package/src/vehicles_v2024_11_01/api/VehiclesApi.js +103 -0
- package/src/vehicles_v2024_11_01/index.js +120 -0
- package/src/vehicles_v2024_11_01/model/EngineOutput.js +77 -0
- package/src/vehicles_v2024_11_01/model/EngineOutputUnit.js +46 -0
- package/src/vehicles_v2024_11_01/model/Error.js +85 -0
- package/src/vehicles_v2024_11_01/model/ErrorList.js +68 -0
- package/src/vehicles_v2024_11_01/model/MonthAndYear.js +73 -0
- package/src/vehicles_v2024_11_01/model/Pagination.js +73 -0
- package/src/vehicles_v2024_11_01/model/Vehicle.js +160 -0
- package/src/vehicles_v2024_11_01/model/VehicleIdentifiers.js +77 -0
- package/src/vehicles_v2024_11_01/model/VehicleStandard.js +46 -0
- package/src/vehicles_v2024_11_01/model/VehicleStatusInCatalog.js +46 -0
- package/src/vehicles_v2024_11_01/model/VehiclesResponse.js +76 -0
- package/src/vendordfinventory_v1/ApiClient.js +740 -0
- package/src/vendordfinventory_v1/api/UpdateInventoryApi.js +93 -0
- package/src/vendordfinventory_v1/index.js +92 -0
- package/src/vendordfinventory_v1/model/Error.js +85 -0
- package/src/vendordfinventory_v1/model/InventoryUpdate.js +88 -0
- package/src/vendordfinventory_v1/model/ItemDetails.js +91 -0
- package/src/vendordfinventory_v1/model/ItemQuantity.js +75 -0
- package/src/vendordfinventory_v1/model/PartyIdentification.js +67 -0
- package/src/vendordfinventory_v1/model/SubmitInventoryUpdateRequest.js +65 -0
- package/src/vendordfinventory_v1/model/SubmitInventoryUpdateResponse.js +74 -0
- package/src/vendordfinventory_v1/model/TransactionReference.js +65 -0
- package/src/vendordforders_v2021_12_28/ApiClient.js +740 -0
- package/src/vendordforders_v2021_12_28/api/VendorOrdersApi.js +213 -0
- package/src/vendordforders_v2021_12_28/index.js +211 -0
- package/src/vendordforders_v2021_12_28/model/AcknowledgementStatus.js +73 -0
- package/src/vendordforders_v2021_12_28/model/Address.js +161 -0
- package/src/vendordforders_v2021_12_28/model/BuyerCustomizedInfoDetail.js +65 -0
- package/src/vendordforders_v2021_12_28/model/Error.js +85 -0
- package/src/vendordforders_v2021_12_28/model/ErrorList.js +68 -0
- package/src/vendordforders_v2021_12_28/model/GiftDetails.js +73 -0
- package/src/vendordforders_v2021_12_28/model/ItemQuantity.js +87 -0
- package/src/vendordforders_v2021_12_28/model/Money.js +73 -0
- package/src/vendordforders_v2021_12_28/model/Order.js +75 -0
- package/src/vendordforders_v2021_12_28/model/OrderAcknowledgementItem.js +127 -0
- package/src/vendordforders_v2021_12_28/model/OrderDetails.js +184 -0
- package/src/vendordforders_v2021_12_28/model/OrderItem.js +150 -0
- package/src/vendordforders_v2021_12_28/model/OrderItemAcknowledgement.js +93 -0
- package/src/vendordforders_v2021_12_28/model/OrderList.js +74 -0
- package/src/vendordforders_v2021_12_28/model/Pagination.js +65 -0
- package/src/vendordforders_v2021_12_28/model/PartyIdentification.js +83 -0
- package/src/vendordforders_v2021_12_28/model/ScheduledDeliveryShipment.js +81 -0
- package/src/vendordforders_v2021_12_28/model/ShipmentDates.js +75 -0
- package/src/vendordforders_v2021_12_28/model/ShipmentDetails.js +123 -0
- package/src/vendordforders_v2021_12_28/model/SubmitAcknowledgementRequest.js +66 -0
- package/src/vendordforders_v2021_12_28/model/SubmitAcknowledgementResponse.js +73 -0
- package/src/vendordforders_v2021_12_28/model/TaxDetails.js +140 -0
- package/src/vendordforders_v2021_12_28/model/TaxItemDetails.js +66 -0
- package/src/vendordforders_v2021_12_28/model/TaxRegistrationDetails.js +111 -0
- package/src/vendordforders_v2021_12_28/model/TransactionId.js +65 -0
- package/src/vendordfpayments_v1/ApiClient.js +740 -0
- package/src/vendordfpayments_v1/api/VendorInvoiceApi.js +85 -0
- package/src/vendordfpayments_v1/index.js +134 -0
- package/src/vendordfpayments_v1/model/AdditionalDetails.js +105 -0
- package/src/vendordfpayments_v1/model/Address.js +157 -0
- package/src/vendordfpayments_v1/model/ChargeDetails.js +136 -0
- package/src/vendordfpayments_v1/model/Error.js +85 -0
- package/src/vendordfpayments_v1/model/InvoiceDetail.js +175 -0
- package/src/vendordfpayments_v1/model/InvoiceItem.js +147 -0
- package/src/vendordfpayments_v1/model/ItemQuantity.js +77 -0
- package/src/vendordfpayments_v1/model/Money.js +77 -0
- package/src/vendordfpayments_v1/model/PartyIdentification.js +84 -0
- package/src/vendordfpayments_v1/model/SubmitInvoiceRequest.js +66 -0
- package/src/vendordfpayments_v1/model/SubmitInvoiceResponse.js +74 -0
- package/src/vendordfpayments_v1/model/TaxDetail.js +184 -0
- package/src/vendordfpayments_v1/model/TaxRegistrationDetail.js +111 -0
- package/src/vendordfpayments_v1/model/TransactionReference.js +65 -0
- package/src/vendordfshipping_v2021_12_28/ApiClient.js +740 -0
- package/src/vendordfshipping_v2021_12_28/api/CreateContainerLabelApi.js +88 -0
- package/src/vendordfshipping_v2021_12_28/api/CustomerInvoicesApi.js +162 -0
- package/src/vendordfshipping_v2021_12_28/api/VendorShippingApi.js +263 -0
- package/src/vendordfshipping_v2021_12_28/api/VendorShippingLabelsApi.js +271 -0
- package/src/vendordfshipping_v2021_12_28/index.js +309 -0
- package/src/vendordfshipping_v2021_12_28/model/Address.js +151 -0
- package/src/vendordfshipping_v2021_12_28/model/CarrierId.js +39 -0
- package/src/vendordfshipping_v2021_12_28/model/Container.js +182 -0
- package/src/vendordfshipping_v2021_12_28/model/ContainerLabel.js +85 -0
- package/src/vendordfshipping_v2021_12_28/model/ContainerLabelFormat.js +46 -0
- package/src/vendordfshipping_v2021_12_28/model/CreateContainerLabelRequest.js +107 -0
- package/src/vendordfshipping_v2021_12_28/model/CreateContainerLabelResponse.js +67 -0
- package/src/vendordfshipping_v2021_12_28/model/CreateShippingLabelsRequest.js +85 -0
- package/src/vendordfshipping_v2021_12_28/model/CustomerInvoice.js +77 -0
- package/src/vendordfshipping_v2021_12_28/model/CustomerInvoiceList.js +74 -0
- package/src/vendordfshipping_v2021_12_28/model/Dimensions.js +117 -0
- package/src/vendordfshipping_v2021_12_28/model/Error.js +85 -0
- package/src/vendordfshipping_v2021_12_28/model/ErrorList.js +68 -0
- package/src/vendordfshipping_v2021_12_28/model/Item.js +93 -0
- package/src/vendordfshipping_v2021_12_28/model/ItemQuantity.js +77 -0
- package/src/vendordfshipping_v2021_12_28/model/LabelData.js +99 -0
- package/src/vendordfshipping_v2021_12_28/model/Package.js +67 -0
- package/src/vendordfshipping_v2021_12_28/model/PackedItem.js +101 -0
- package/src/vendordfshipping_v2021_12_28/model/PackingSlip.js +99 -0
- package/src/vendordfshipping_v2021_12_28/model/PackingSlipList.js +74 -0
- package/src/vendordfshipping_v2021_12_28/model/Pagination.js +65 -0
- package/src/vendordfshipping_v2021_12_28/model/PartyIdentification.js +84 -0
- package/src/vendordfshipping_v2021_12_28/model/ShipmentConfirmation.js +116 -0
- package/src/vendordfshipping_v2021_12_28/model/ShipmentDetails.js +121 -0
- package/src/vendordfshipping_v2021_12_28/model/ShipmentSchedule.js +81 -0
- package/src/vendordfshipping_v2021_12_28/model/ShipmentStatusUpdate.js +96 -0
- package/src/vendordfshipping_v2021_12_28/model/ShippingLabel.js +127 -0
- package/src/vendordfshipping_v2021_12_28/model/ShippingLabelList.js +74 -0
- package/src/vendordfshipping_v2021_12_28/model/ShippingLabelRequest.js +95 -0
- package/src/vendordfshipping_v2021_12_28/model/StatusUpdateDetails.js +115 -0
- package/src/vendordfshipping_v2021_12_28/model/SubmitShipmentConfirmationsRequest.js +66 -0
- package/src/vendordfshipping_v2021_12_28/model/SubmitShipmentStatusUpdatesRequest.js +66 -0
- package/src/vendordfshipping_v2021_12_28/model/SubmitShippingLabelsRequest.js +66 -0
- package/src/vendordfshipping_v2021_12_28/model/TaxRegistrationDetails.js +111 -0
- package/src/vendordfshipping_v2021_12_28/model/TransactionReference.js +65 -0
- package/src/vendordfshipping_v2021_12_28/model/Weight.js +97 -0
- package/src/vendordftransactions_v2021_12_28/ApiClient.js +740 -0
- package/src/vendordftransactions_v2021_12_28/api/VendorTransactionApi.js +87 -0
- package/src/vendordftransactions_v2021_12_28/index.js +64 -0
- package/src/vendordftransactions_v2021_12_28/model/Error.js +85 -0
- package/src/vendordftransactions_v2021_12_28/model/ErrorList.js +68 -0
- package/src/vendordftransactions_v2021_12_28/model/Transaction.js +111 -0
- package/src/vendordftransactions_v2021_12_28/model/TransactionStatus.js +65 -0
- package/src/vendorinvoices_v1/ApiClient.js +740 -0
- package/src/vendorinvoices_v1/api/VendorPaymentsApi.js +85 -0
- package/src/vendorinvoices_v1/index.js +169 -0
- package/src/vendorinvoices_v1/model/AdditionalDetails.js +111 -0
- package/src/vendorinvoices_v1/model/Address.js +151 -0
- package/src/vendorinvoices_v1/model/AllowanceDetails.js +138 -0
- package/src/vendorinvoices_v1/model/ChargeDetails.js +168 -0
- package/src/vendorinvoices_v1/model/CreditNoteDetails.js +113 -0
- package/src/vendorinvoices_v1/model/Error.js +85 -0
- package/src/vendorinvoices_v1/model/Invoice.js +209 -0
- package/src/vendorinvoices_v1/model/InvoiceItem.js +162 -0
- package/src/vendorinvoices_v1/model/ItemQuantity.js +113 -0
- package/src/vendorinvoices_v1/model/Money.js +73 -0
- package/src/vendorinvoices_v1/model/NetCostUnitOfMeasure.js +60 -0
- package/src/vendorinvoices_v1/model/PartyIdentification.js +84 -0
- package/src/vendorinvoices_v1/model/PaymentTerms.js +133 -0
- package/src/vendorinvoices_v1/model/SubmitInvoicesRequest.js +66 -0
- package/src/vendorinvoices_v1/model/SubmitInvoicesResponse.js +74 -0
- package/src/vendorinvoices_v1/model/TaxDetails.js +184 -0
- package/src/vendorinvoices_v1/model/TaxRegistrationDetails.js +97 -0
- package/src/vendorinvoices_v1/model/TotalWeight.js +109 -0
- package/src/vendorinvoices_v1/model/TransactionId.js +65 -0
- package/src/vendororders_v1/ApiClient.js +740 -0
- package/src/vendororders_v1/api/VendorOrdersApi.js +297 -0
- package/src/vendororders_v1/index.js +239 -0
- package/src/vendororders_v1/model/AcknowledgementStatusDetails.js +80 -0
- package/src/vendororders_v1/model/Address.js +151 -0
- package/src/vendororders_v1/model/Error.js +85 -0
- package/src/vendororders_v1/model/GetPurchaseOrderResponse.js +74 -0
- package/src/vendororders_v1/model/GetPurchaseOrdersResponse.js +74 -0
- package/src/vendororders_v1/model/GetPurchaseOrdersStatusResponse.js +74 -0
- package/src/vendororders_v1/model/ImportDetails.js +215 -0
- package/src/vendororders_v1/model/ItemQuantity.js +101 -0
- package/src/vendororders_v1/model/Money.js +113 -0
- package/src/vendororders_v1/model/Order.js +111 -0
- package/src/vendororders_v1/model/OrderAcknowledgement.js +98 -0
- package/src/vendororders_v1/model/OrderAcknowledgementItem.js +125 -0
- package/src/vendororders_v1/model/OrderDetails.js +237 -0
- package/src/vendororders_v1/model/OrderItem.js +118 -0
- package/src/vendororders_v1/model/OrderItemAcknowledgement.js +153 -0
- package/src/vendororders_v1/model/OrderItemStatus.js +122 -0
- package/src/vendororders_v1/model/OrderItemStatusAcknowledgementStatus.js +121 -0
- package/src/vendororders_v1/model/OrderItemStatusOrderedQuantity.js +74 -0
- package/src/vendororders_v1/model/OrderItemStatusReceivingStatus.js +107 -0
- package/src/vendororders_v1/model/OrderList.js +74 -0
- package/src/vendororders_v1/model/OrderListStatus.js +74 -0
- package/src/vendororders_v1/model/OrderStatus.js +145 -0
- package/src/vendororders_v1/model/OrderedQuantityDetails.js +80 -0
- package/src/vendororders_v1/model/Pagination.js +65 -0
- package/src/vendororders_v1/model/PartyIdentification.js +83 -0
- package/src/vendororders_v1/model/SubmitAcknowledgementRequest.js +66 -0
- package/src/vendororders_v1/model/SubmitAcknowledgementResponse.js +74 -0
- package/src/vendororders_v1/model/TaxRegistrationDetails.js +97 -0
- package/src/vendororders_v1/model/TransactionId.js +65 -0
- package/src/vendorshipments_v1/ApiClient.js +740 -0
- package/src/vendorshipments_v1/api/VendorShippingApi.js +323 -0
- package/src/vendorshipments_v1/index.js +414 -0
- package/src/vendorshipments_v1/model/Address.js +151 -0
- package/src/vendorshipments_v1/model/CarrierDetails.js +97 -0
- package/src/vendorshipments_v1/model/Carton.js +111 -0
- package/src/vendorshipments_v1/model/CartonReferenceDetails.js +75 -0
- package/src/vendorshipments_v1/model/CollectFreightPickupDetails.js +81 -0
- package/src/vendorshipments_v1/model/ContainerIdentification.js +115 -0
- package/src/vendorshipments_v1/model/ContainerItem.js +85 -0
- package/src/vendorshipments_v1/model/ContainerSequenceNumbers.js +65 -0
- package/src/vendorshipments_v1/model/Containers.js +163 -0
- package/src/vendorshipments_v1/model/Dimensions.js +129 -0
- package/src/vendorshipments_v1/model/Duration.js +97 -0
- package/src/vendorshipments_v1/model/Error.js +85 -0
- package/src/vendorshipments_v1/model/Expiry.js +81 -0
- package/src/vendorshipments_v1/model/GetShipmentDetailsResponse.js +74 -0
- package/src/vendorshipments_v1/model/GetShipmentLabels.js +74 -0
- package/src/vendorshipments_v1/model/ImportDetails.js +189 -0
- package/src/vendorshipments_v1/model/InnerContainersDetails.js +74 -0
- package/src/vendorshipments_v1/model/Item.js +101 -0
- package/src/vendorshipments_v1/model/ItemDetails.js +129 -0
- package/src/vendorshipments_v1/model/ItemQuantity.js +113 -0
- package/src/vendorshipments_v1/model/LabelData.js +111 -0
- package/src/vendorshipments_v1/model/Location.js +81 -0
- package/src/vendorshipments_v1/model/Money.js +77 -0
- package/src/vendorshipments_v1/model/PackageItemDetails.js +81 -0
- package/src/vendorshipments_v1/model/PackedItems.js +97 -0
- package/src/vendorshipments_v1/model/PackedQuantity.js +105 -0
- package/src/vendorshipments_v1/model/Pagination.js +65 -0
- package/src/vendorshipments_v1/model/Pallet.js +117 -0
- package/src/vendorshipments_v1/model/PartyIdentification.js +84 -0
- package/src/vendorshipments_v1/model/PurchaseOrderItemDetails.js +65 -0
- package/src/vendorshipments_v1/model/PurchaseOrderItems.js +101 -0
- package/src/vendorshipments_v1/model/PurchaseOrders.js +90 -0
- package/src/vendorshipments_v1/model/Route.js +68 -0
- package/src/vendorshipments_v1/model/Shipment.js +302 -0
- package/src/vendorshipments_v1/model/ShipmentConfirmation.js +304 -0
- package/src/vendorshipments_v1/model/ShipmentDetails.js +74 -0
- package/src/vendorshipments_v1/model/ShipmentInformation.js +140 -0
- package/src/vendorshipments_v1/model/ShipmentMeasurements.js +89 -0
- package/src/vendorshipments_v1/model/ShipmentStatusDetails.js +105 -0
- package/src/vendorshipments_v1/model/Stop.js +117 -0
- package/src/vendorshipments_v1/model/SubmitShipmentConfirmationsRequest.js +66 -0
- package/src/vendorshipments_v1/model/SubmitShipmentConfirmationsResponse.js +74 -0
- package/src/vendorshipments_v1/model/SubmitShipments.js +66 -0
- package/src/vendorshipments_v1/model/TaxRegistrationDetails.js +97 -0
- package/src/vendorshipments_v1/model/TotalWeight.js +109 -0
- package/src/vendorshipments_v1/model/TransactionReference.js +65 -0
- package/src/vendorshipments_v1/model/TransportLabel.js +82 -0
- package/src/vendorshipments_v1/model/TransportShipmentMeasurements.js +97 -0
- package/src/vendorshipments_v1/model/TransportationDetails.js +165 -0
- package/src/vendorshipments_v1/model/TransportationDetailsForShipmentConfirmation.js +115 -0
- package/src/vendorshipments_v1/model/TransportationLabels.js +74 -0
- package/src/vendorshipments_v1/model/VendorDetails.js +73 -0
- package/src/vendorshipments_v1/model/Volume.js +109 -0
- package/src/vendorshipments_v1/model/Weight.js +109 -0
- package/src/vendortransactionstatus_v1/ApiClient.js +740 -0
- package/src/vendortransactionstatus_v1/api/VendorTransactionApi.js +85 -0
- package/src/vendortransactionstatus_v1/index.js +64 -0
- package/src/vendortransactionstatus_v1/model/Error.js +85 -0
- package/src/vendortransactionstatus_v1/model/GetTransactionResponse.js +74 -0
- package/src/vendortransactionstatus_v1/model/Transaction.js +112 -0
- package/src/vendortransactionstatus_v1/model/TransactionStatus.js +65 -0
- package/sdk/apluscontent_v2020_11_01/README.md +0 -101
- package/sdk/apluscontent_v2020_11_01/docs/AplusContentApi.md +0 -502
- package/sdk/apluscontent_v2020_11_01/docs/AplusPaginatedResponse.md +0 -10
- package/sdk/apluscontent_v2020_11_01/docs/AplusResponse.md +0 -9
- package/sdk/apluscontent_v2020_11_01/docs/AsinBadge.md +0 -14
- package/sdk/apluscontent_v2020_11_01/docs/AsinMetadata.md +0 -14
- package/sdk/apluscontent_v2020_11_01/docs/ColorType.md +0 -10
- package/sdk/apluscontent_v2020_11_01/docs/ContentBadge.md +0 -16
- package/sdk/apluscontent_v2020_11_01/docs/ContentDocument.md +0 -13
- package/sdk/apluscontent_v2020_11_01/docs/ContentMetadata.md +0 -13
- package/sdk/apluscontent_v2020_11_01/docs/ContentMetadataRecord.md +0 -10
- package/sdk/apluscontent_v2020_11_01/docs/ContentModule.md +0 -24
- package/sdk/apluscontent_v2020_11_01/docs/ContentModuleType.md +0 -36
- package/sdk/apluscontent_v2020_11_01/docs/ContentRecord.md +0 -11
- package/sdk/apluscontent_v2020_11_01/docs/ContentStatus.md +0 -14
- package/sdk/apluscontent_v2020_11_01/docs/ContentType.md +0 -10
- package/sdk/apluscontent_v2020_11_01/docs/Decorator.md +0 -12
- package/sdk/apluscontent_v2020_11_01/docs/DecoratorType.md +0 -22
- package/sdk/apluscontent_v2020_11_01/docs/Error.md +0 -11
- package/sdk/apluscontent_v2020_11_01/docs/ErrorList.md +0 -9
- package/sdk/apluscontent_v2020_11_01/docs/GetContentDocumentResponse.md +0 -10
- package/sdk/apluscontent_v2020_11_01/docs/ImageComponent.md +0 -11
- package/sdk/apluscontent_v2020_11_01/docs/ImageCropSpecification.md +0 -10
- package/sdk/apluscontent_v2020_11_01/docs/ImageDimensions.md +0 -10
- package/sdk/apluscontent_v2020_11_01/docs/ImageOffsets.md +0 -10
- package/sdk/apluscontent_v2020_11_01/docs/IntegerWithUnits.md +0 -10
- package/sdk/apluscontent_v2020_11_01/docs/ListContentDocumentAsinRelationsResponse.md +0 -11
- package/sdk/apluscontent_v2020_11_01/docs/ParagraphComponent.md +0 -9
- package/sdk/apluscontent_v2020_11_01/docs/PlainTextItem.md +0 -10
- package/sdk/apluscontent_v2020_11_01/docs/PositionType.md +0 -10
- package/sdk/apluscontent_v2020_11_01/docs/PostContentDocumentApprovalSubmissionResponse.md +0 -9
- package/sdk/apluscontent_v2020_11_01/docs/PostContentDocumentAsinRelationsRequest.md +0 -9
- package/sdk/apluscontent_v2020_11_01/docs/PostContentDocumentAsinRelationsResponse.md +0 -9
- package/sdk/apluscontent_v2020_11_01/docs/PostContentDocumentRequest.md +0 -9
- package/sdk/apluscontent_v2020_11_01/docs/PostContentDocumentResponse.md +0 -10
- package/sdk/apluscontent_v2020_11_01/docs/PostContentDocumentSuspendSubmissionResponse.md +0 -9
- package/sdk/apluscontent_v2020_11_01/docs/PublishRecord.md +0 -14
- package/sdk/apluscontent_v2020_11_01/docs/SearchContentDocumentsResponse.md +0 -11
- package/sdk/apluscontent_v2020_11_01/docs/SearchContentPublishRecordsResponse.md +0 -11
- package/sdk/apluscontent_v2020_11_01/docs/StandardCompanyLogoModule.md +0 -9
- package/sdk/apluscontent_v2020_11_01/docs/StandardComparisonProductBlock.md +0 -14
- package/sdk/apluscontent_v2020_11_01/docs/StandardComparisonTableModule.md +0 -10
- package/sdk/apluscontent_v2020_11_01/docs/StandardFourImageTextModule.md +0 -13
- package/sdk/apluscontent_v2020_11_01/docs/StandardFourImageTextQuadrantModule.md +0 -12
- package/sdk/apluscontent_v2020_11_01/docs/StandardHeaderImageTextModule.md +0 -10
- package/sdk/apluscontent_v2020_11_01/docs/StandardHeaderTextListBlock.md +0 -10
- package/sdk/apluscontent_v2020_11_01/docs/StandardImageCaptionBlock.md +0 -10
- package/sdk/apluscontent_v2020_11_01/docs/StandardImageSidebarModule.md +0 -14
- package/sdk/apluscontent_v2020_11_01/docs/StandardImageTextBlock.md +0 -11
- package/sdk/apluscontent_v2020_11_01/docs/StandardImageTextCaptionBlock.md +0 -10
- package/sdk/apluscontent_v2020_11_01/docs/StandardImageTextOverlayModule.md +0 -10
- package/sdk/apluscontent_v2020_11_01/docs/StandardMultipleImageTextModule.md +0 -9
- package/sdk/apluscontent_v2020_11_01/docs/StandardProductDescriptionModule.md +0 -9
- package/sdk/apluscontent_v2020_11_01/docs/StandardSingleImageHighlightsModule.md +0 -14
- package/sdk/apluscontent_v2020_11_01/docs/StandardSingleImageSpecsDetailModule.md +0 -16
- package/sdk/apluscontent_v2020_11_01/docs/StandardSingleSideImageModule.md +0 -10
- package/sdk/apluscontent_v2020_11_01/docs/StandardTechSpecsModule.md +0 -11
- package/sdk/apluscontent_v2020_11_01/docs/StandardTextBlock.md +0 -10
- package/sdk/apluscontent_v2020_11_01/docs/StandardTextListBlock.md +0 -9
- package/sdk/apluscontent_v2020_11_01/docs/StandardTextModule.md +0 -10
- package/sdk/apluscontent_v2020_11_01/docs/StandardTextPairBlock.md +0 -10
- package/sdk/apluscontent_v2020_11_01/docs/StandardThreeImageTextModule.md +0 -12
- package/sdk/apluscontent_v2020_11_01/docs/TextComponent.md +0 -10
- package/sdk/apluscontent_v2020_11_01/docs/TextItem.md +0 -10
- package/sdk/apluscontent_v2020_11_01/docs/ValidateContentDocumentAsinRelationsResponse.md +0 -10
- package/sdk/apluscontent_v2020_11_01/src/ApiClient.js +0 -740
- package/sdk/apluscontent_v2020_11_01/src/index.js +0 -477
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.api/AplusContentApi.js +0 -650
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/AplusPaginatedResponse.js +0 -85
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/AplusResponse.js +0 -66
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/AsinBadge.js +0 -60
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/AsinMetadata.js +0 -108
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/ColorType.js +0 -46
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/ContentBadge.js +0 -67
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/ContentDocument.js +0 -106
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/ContentMetadata.js +0 -108
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/ContentMetadataRecord.js +0 -77
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/ContentModule.js +0 -187
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/ContentModuleType.js +0 -137
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/ContentRecord.js +0 -83
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/ContentStatus.js +0 -60
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/ContentType.js +0 -46
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/Decorator.js +0 -89
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/DecoratorType.js +0 -88
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/Error.js +0 -85
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/ErrorList.js +0 -68
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/GetContentDocumentResponse.js +0 -86
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/ImageComponent.js +0 -87
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/ImageCropSpecification.js +0 -75
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/ImageDimensions.js +0 -76
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/ImageOffsets.js +0 -76
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/IntegerWithUnits.js +0 -77
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/ListContentDocumentAsinRelationsResponse.js +0 -101
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/ParagraphComponent.js +0 -67
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/PlainTextItem.js +0 -77
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/PositionType.js +0 -46
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/PostContentDocumentApprovalSubmissionResponse.js +0 -76
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/PostContentDocumentAsinRelationsRequest.js +0 -66
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/PostContentDocumentAsinRelationsResponse.js +0 -76
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/PostContentDocumentRequest.js +0 -66
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/PostContentDocumentResponse.js +0 -86
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/PostContentDocumentSuspendSubmissionResponse.js +0 -76
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/PublishRecord.js +0 -115
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/SearchContentDocumentsResponse.js +0 -101
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/SearchContentPublishRecordsResponse.js +0 -101
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/StandardCompanyLogoModule.js +0 -67
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/StandardComparisonProductBlock.js +0 -108
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/StandardComparisonTableModule.js +0 -73
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/StandardFourImageTextModule.js +0 -94
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/StandardFourImageTextQuadrantModule.js +0 -94
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/StandardHeaderImageTextModule.js +0 -73
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/StandardHeaderTextListBlock.js +0 -73
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/StandardImageCaptionBlock.js +0 -73
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/StandardImageSidebarModule.js +0 -104
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/StandardImageTextBlock.js +0 -81
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/StandardImageTextCaptionBlock.js +0 -73
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/StandardImageTextOverlayModule.js +0 -75
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/StandardMultipleImageTextModule.js +0 -65
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/StandardProductDescriptionModule.js +0 -67
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/StandardSingleImageHighlightsModule.js +0 -103
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/StandardSingleImageSpecsDetailModule.js +0 -117
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/StandardSingleSideImageModule.js +0 -75
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/StandardTechSpecsModule.js +0 -84
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/StandardTextBlock.js +0 -73
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/StandardTextListBlock.js +0 -67
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/StandardTextModule.js +0 -75
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/StandardTextPairBlock.js +0 -72
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/StandardThreeImageTextModule.js +0 -87
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/TextComponent.js +0 -76
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/TextItem.js +0 -77
- package/sdk/apluscontent_v2020_11_01/src/js_client.apluscontent_v2020_11_01.model/ValidateContentDocumentAsinRelationsResponse.js +0 -97
- package/sdk/appintegrations_v2024_04_01/README.md +0 -37
- package/sdk/appintegrations_v2024_04_01/docs/AppIntegrationsApi.md +0 -145
- package/sdk/appintegrations_v2024_04_01/docs/CreateNotificationRequest.md +0 -11
- package/sdk/appintegrations_v2024_04_01/docs/CreateNotificationResponse.md +0 -9
- package/sdk/appintegrations_v2024_04_01/docs/DeleteNotificationsRequest.md +0 -21
- package/sdk/appintegrations_v2024_04_01/docs/Error.md +0 -11
- package/sdk/appintegrations_v2024_04_01/docs/ErrorList.md +0 -9
- package/sdk/appintegrations_v2024_04_01/docs/RecordActionFeedbackRequest.md +0 -18
- package/sdk/appintegrations_v2024_04_01/src/ApiClient.js +0 -740
- package/sdk/appintegrations_v2024_04_01/src/index.js +0 -78
- package/sdk/appintegrations_v2024_04_01/src/js_client.appintegrations_v2024_04_01.api/AppIntegrationsApi.js +0 -190
- package/sdk/appintegrations_v2024_04_01/src/js_client.appintegrations_v2024_04_01.model/CreateNotificationRequest.js +0 -85
- package/sdk/appintegrations_v2024_04_01/src/js_client.appintegrations_v2024_04_01.model/CreateNotificationResponse.js +0 -65
- package/sdk/appintegrations_v2024_04_01/src/js_client.appintegrations_v2024_04_01.model/DeleteNotificationsRequest.js +0 -97
- package/sdk/appintegrations_v2024_04_01/src/js_client.appintegrations_v2024_04_01.model/Error.js +0 -85
- package/sdk/appintegrations_v2024_04_01/src/js_client.appintegrations_v2024_04_01.model/ErrorList.js +0 -68
- package/sdk/appintegrations_v2024_04_01/src/js_client.appintegrations_v2024_04_01.model/RecordActionFeedbackRequest.js +0 -81
- package/sdk/applications_v2023_11_30/README.md +0 -31
- package/sdk/applications_v2023_11_30/docs/ApplicationsApi.md +0 -49
- package/sdk/applications_v2023_11_30/docs/Error.md +0 -11
- package/sdk/applications_v2023_11_30/docs/ErrorList.md +0 -9
- package/sdk/applications_v2023_11_30/src/ApiClient.js +0 -740
- package/sdk/applications_v2023_11_30/src/index.js +0 -50
- package/sdk/applications_v2023_11_30/src/js_client.applications_v2023_11_30.api/ApplicationsApi.js +0 -77
- package/sdk/applications_v2023_11_30/src/js_client.applications_v2023_11_30.model/Error.js +0 -85
- package/sdk/applications_v2023_11_30/src/js_client.applications_v2023_11_30.model/ErrorList.js +0 -68
- package/sdk/awd_v2024_05_09/README.md +0 -89
- package/sdk/awd_v2024_05_09/docs/Address.md +0 -19
- package/sdk/awd_v2024_05_09/docs/AwdApi.md +0 -541
- package/sdk/awd_v2024_05_09/docs/CarrierCode.md +0 -10
- package/sdk/awd_v2024_05_09/docs/CarrierCodeType.md +0 -8
- package/sdk/awd_v2024_05_09/docs/DestinationDetails.md +0 -11
- package/sdk/awd_v2024_05_09/docs/DimensionUnitOfMeasurement.md +0 -10
- package/sdk/awd_v2024_05_09/docs/DistributionPackage.md +0 -11
- package/sdk/awd_v2024_05_09/docs/DistributionPackageContents.md +0 -10
- package/sdk/awd_v2024_05_09/docs/DistributionPackageQuantity.md +0 -10
- package/sdk/awd_v2024_05_09/docs/DistributionPackageType.md +0 -10
- package/sdk/awd_v2024_05_09/docs/Error.md +0 -11
- package/sdk/awd_v2024_05_09/docs/ErrorList.md +0 -9
- package/sdk/awd_v2024_05_09/docs/ExpirationDetails.md +0 -10
- package/sdk/awd_v2024_05_09/docs/InboundEligibility.md +0 -12
- package/sdk/awd_v2024_05_09/docs/InboundEligibilityStatus.md +0 -10
- package/sdk/awd_v2024_05_09/docs/InboundOrder.md +0 -17
- package/sdk/awd_v2024_05_09/docs/InboundOrderCreationData.md +0 -12
- package/sdk/awd_v2024_05_09/docs/InboundOrderReference.md +0 -9
- package/sdk/awd_v2024_05_09/docs/InboundPackages.md +0 -9
- package/sdk/awd_v2024_05_09/docs/InboundPreferences.md +0 -9
- package/sdk/awd_v2024_05_09/docs/InboundShipment.md +0 -24
- package/sdk/awd_v2024_05_09/docs/InboundShipmentStatus.md +0 -20
- package/sdk/awd_v2024_05_09/docs/InboundShipmentSummary.md +0 -14
- package/sdk/awd_v2024_05_09/docs/InboundStatus.md +0 -18
- package/sdk/awd_v2024_05_09/docs/InventoryDetails.md +0 -11
- package/sdk/awd_v2024_05_09/docs/InventoryListing.md +0 -10
- package/sdk/awd_v2024_05_09/docs/InventoryQuantity.md +0 -10
- package/sdk/awd_v2024_05_09/docs/InventorySummary.md +0 -13
- package/sdk/awd_v2024_05_09/docs/InventoryUnitOfMeasurement.md +0 -12
- package/sdk/awd_v2024_05_09/docs/LabelOwner.md +0 -10
- package/sdk/awd_v2024_05_09/docs/LabelStatus.md +0 -14
- package/sdk/awd_v2024_05_09/docs/MeasurementData.md +0 -11
- package/sdk/awd_v2024_05_09/docs/OrderIneligibilityReason.md +0 -10
- package/sdk/awd_v2024_05_09/docs/PackageDimensions.md +0 -12
- package/sdk/awd_v2024_05_09/docs/PackageVolume.md +0 -10
- package/sdk/awd_v2024_05_09/docs/PackageWeight.md +0 -10
- package/sdk/awd_v2024_05_09/docs/PrepCategory.md +0 -34
- package/sdk/awd_v2024_05_09/docs/PrepDetails.md +0 -12
- package/sdk/awd_v2024_05_09/docs/PrepInstruction.md +0 -10
- package/sdk/awd_v2024_05_09/docs/PrepOwner.md +0 -10
- package/sdk/awd_v2024_05_09/docs/ProductAttribute.md +0 -10
- package/sdk/awd_v2024_05_09/docs/ProductQuantity.md +0 -13
- package/sdk/awd_v2024_05_09/docs/ShipmentLabels.md +0 -10
- package/sdk/awd_v2024_05_09/docs/ShipmentListing.md +0 -10
- package/sdk/awd_v2024_05_09/docs/SkuEligibility.md +0 -11
- package/sdk/awd_v2024_05_09/docs/SkuIneligibilityReason.md +0 -10
- package/sdk/awd_v2024_05_09/docs/SkuQuantity.md +0 -11
- package/sdk/awd_v2024_05_09/docs/TrackingDetails.md +0 -10
- package/sdk/awd_v2024_05_09/docs/TransportationDetails.md +0 -9
- package/sdk/awd_v2024_05_09/docs/VolumeUnitOfMeasurement.md +0 -12
- package/sdk/awd_v2024_05_09/docs/WeightUnitOfMeasurement.md +0 -10
- package/sdk/awd_v2024_05_09/src/ApiClient.js +0 -740
- package/sdk/awd_v2024_05_09/src/index.js +0 -386
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.api/AwdApi.js +0 -628
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/Address.js +0 -153
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/CarrierCode.js +0 -73
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/CarrierCodeType.js +0 -39
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/DestinationDetails.js +0 -81
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/DimensionUnitOfMeasurement.js +0 -46
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/DistributionPackage.js +0 -87
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/DistributionPackageContents.js +0 -75
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/DistributionPackageQuantity.js +0 -77
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/DistributionPackageType.js +0 -46
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/Error.js +0 -85
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/ErrorList.js +0 -68
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/ExpirationDetails.js +0 -73
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/InboundEligibility.js +0 -97
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/InboundEligibilityStatus.js +0 -46
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/InboundOrder.js +0 -140
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/InboundOrderCreationData.js +0 -94
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/InboundOrderReference.js +0 -67
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/InboundPackages.js +0 -68
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/InboundPreferences.js +0 -65
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/InboundShipment.js +0 -199
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/InboundShipmentStatus.js +0 -81
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/InboundShipmentSummary.js +0 -111
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/InboundStatus.js +0 -74
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/InventoryDetails.js +0 -81
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/InventoryListing.js +0 -76
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/InventoryQuantity.js +0 -77
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/InventorySummary.js +0 -100
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/InventoryUnitOfMeasurement.js +0 -53
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/LabelOwner.js +0 -46
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/LabelStatus.js +0 -60
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/MeasurementData.js +0 -83
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/OrderIneligibilityReason.js +0 -77
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/PackageDimensions.js +0 -97
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/PackageVolume.js +0 -77
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/PackageWeight.js +0 -77
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/PrepCategory.js +0 -130
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/PrepDetails.js +0 -90
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/PrepInstruction.js +0 -73
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/PrepOwner.js +0 -46
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/ProductAttribute.js +0 -73
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/ProductQuantity.js +0 -102
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/ShipmentLabels.js +0 -75
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/ShipmentListing.js +0 -74
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/SkuEligibility.js +0 -86
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/SkuIneligibilityReason.js +0 -77
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/SkuQuantity.js +0 -84
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/TrackingDetails.js +0 -75
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/TransportationDetails.js +0 -68
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/VolumeUnitOfMeasurement.js +0 -53
- package/sdk/awd_v2024_05_09/src/js_client.awd_v2024_05_09.model/WeightUnitOfMeasurement.js +0 -46
- package/sdk/catalogitems_v2022_04_01/README.md +0 -61
- package/sdk/catalogitems_v2022_04_01/docs/BrandRefinement.md +0 -10
- package/sdk/catalogitems_v2022_04_01/docs/CatalogApi.md +0 -130
- package/sdk/catalogitems_v2022_04_01/docs/ClassificationRefinement.md +0 -11
- package/sdk/catalogitems_v2022_04_01/docs/Dimension.md +0 -10
- package/sdk/catalogitems_v2022_04_01/docs/Dimensions.md +0 -12
- package/sdk/catalogitems_v2022_04_01/docs/Error.md +0 -11
- package/sdk/catalogitems_v2022_04_01/docs/ErrorList.md +0 -9
- package/sdk/catalogitems_v2022_04_01/docs/Item.md +0 -19
- package/sdk/catalogitems_v2022_04_01/docs/ItemBrowseClassification.md +0 -11
- package/sdk/catalogitems_v2022_04_01/docs/ItemBrowseClassificationsByMarketplace.md +0 -10
- package/sdk/catalogitems_v2022_04_01/docs/ItemClassificationSalesRank.md +0 -12
- package/sdk/catalogitems_v2022_04_01/docs/ItemContributor.md +0 -10
- package/sdk/catalogitems_v2022_04_01/docs/ItemContributorRole.md +0 -10
- package/sdk/catalogitems_v2022_04_01/docs/ItemDimensionsByMarketplace.md +0 -11
- package/sdk/catalogitems_v2022_04_01/docs/ItemDisplayGroupSalesRank.md +0 -12
- package/sdk/catalogitems_v2022_04_01/docs/ItemIdentifier.md +0 -10
- package/sdk/catalogitems_v2022_04_01/docs/ItemIdentifiersByMarketplace.md +0 -10
- package/sdk/catalogitems_v2022_04_01/docs/ItemImage.md +0 -39
- package/sdk/catalogitems_v2022_04_01/docs/ItemImagesByMarketplace.md +0 -10
- package/sdk/catalogitems_v2022_04_01/docs/ItemProductTypeByMarketplace.md +0 -10
- package/sdk/catalogitems_v2022_04_01/docs/ItemRelationship.md +0 -23
- package/sdk/catalogitems_v2022_04_01/docs/ItemRelationshipsByMarketplace.md +0 -10
- package/sdk/catalogitems_v2022_04_01/docs/ItemSalesRanksByMarketplace.md +0 -11
- package/sdk/catalogitems_v2022_04_01/docs/ItemSearchResults.md +0 -12
- package/sdk/catalogitems_v2022_04_01/docs/ItemSummaryByMarketplace.md +0 -43
- package/sdk/catalogitems_v2022_04_01/docs/ItemVariationTheme.md +0 -10
- package/sdk/catalogitems_v2022_04_01/docs/ItemVendorDetailsByMarketplace.md +0 -43
- package/sdk/catalogitems_v2022_04_01/docs/ItemVendorDetailsCategory.md +0 -10
- package/sdk/catalogitems_v2022_04_01/docs/Pagination.md +0 -10
- package/sdk/catalogitems_v2022_04_01/docs/Refinements.md +0 -10
- package/sdk/catalogitems_v2022_04_01/src/ApiClient.js +0 -740
- package/sdk/catalogitems_v2022_04_01/src/index.js +0 -239
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.api/CatalogApi.js +0 -188
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/BrandRefinement.js +0 -77
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/ClassificationRefinement.js +0 -87
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/Dimension.js +0 -73
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/Dimensions.js +0 -86
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/Error.js +0 -85
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/ErrorList.js +0 -67
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/Item.js +0 -156
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/ItemBrowseClassification.js +0 -84
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/ItemBrowseClassificationsByMarketplace.js +0 -76
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/ItemClassificationSalesRank.js +0 -95
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/ItemContributor.js +0 -77
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/ItemContributorRole.js +0 -75
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/ItemDimensionsByMarketplace.js +0 -82
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/ItemDisplayGroupSalesRank.js +0 -95
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/ItemIdentifier.js +0 -77
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/ItemIdentifiersByMarketplace.js +0 -78
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/ItemImage.js +0 -165
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/ItemImagesByMarketplace.js +0 -78
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/ItemProductTypeByMarketplace.js +0 -73
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/ItemRelationship.js +0 -111
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/ItemRelationshipsByMarketplace.js +0 -78
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/ItemSalesRanksByMarketplace.js +0 -85
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/ItemSearchResults.js +0 -98
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/ItemSummaryByMarketplace.js +0 -252
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/ItemVariationTheme.js +0 -73
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/ItemVendorDetailsByMarketplace.js +0 -190
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/ItemVendorDetailsCategory.js +0 -73
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/Pagination.js +0 -73
- package/sdk/catalogitems_v2022_04_01/src/js_client.catalogitems_v2022_04_01.model/Refinements.js +0 -79
- package/sdk/datakiosk_v2023_11_15/README.md +0 -42
- package/sdk/datakiosk_v2023_11_15/docs/CreateQueryResponse.md +0 -9
- package/sdk/datakiosk_v2023_11_15/docs/CreateQuerySpecification.md +0 -10
- package/sdk/datakiosk_v2023_11_15/docs/Error.md +0 -11
- package/sdk/datakiosk_v2023_11_15/docs/ErrorList.md +0 -9
- package/sdk/datakiosk_v2023_11_15/docs/GetDocumentResponse.md +0 -10
- package/sdk/datakiosk_v2023_11_15/docs/GetQueriesResponse.md +0 -10
- package/sdk/datakiosk_v2023_11_15/docs/GetQueriesResponsePagination.md +0 -9
- package/sdk/datakiosk_v2023_11_15/docs/QueriesApi.md +0 -243
- package/sdk/datakiosk_v2023_11_15/docs/Query.md +0 -34
- package/sdk/datakiosk_v2023_11_15/docs/QueryPagination.md +0 -9
- package/sdk/datakiosk_v2023_11_15/src/ApiClient.js +0 -740
- package/sdk/datakiosk_v2023_11_15/src/index.js +0 -99
- package/sdk/datakiosk_v2023_11_15/src/js_client.datakiosk_v2023_11_15.api/QueriesApi.js +0 -291
- package/sdk/datakiosk_v2023_11_15/src/js_client.datakiosk_v2023_11_15.model/CreateQueryResponse.js +0 -67
- package/sdk/datakiosk_v2023_11_15/src/js_client.datakiosk_v2023_11_15.model/CreateQuerySpecification.js +0 -75
- package/sdk/datakiosk_v2023_11_15/src/js_client.datakiosk_v2023_11_15.model/Error.js +0 -85
- package/sdk/datakiosk_v2023_11_15/src/js_client.datakiosk_v2023_11_15.model/ErrorList.js +0 -68
- package/sdk/datakiosk_v2023_11_15/src/js_client.datakiosk_v2023_11_15.model/GetDocumentResponse.js +0 -77
- package/sdk/datakiosk_v2023_11_15/src/js_client.datakiosk_v2023_11_15.model/GetQueriesResponse.js +0 -76
- package/sdk/datakiosk_v2023_11_15/src/js_client.datakiosk_v2023_11_15.model/GetQueriesResponsePagination.js +0 -65
- package/sdk/datakiosk_v2023_11_15/src/js_client.datakiosk_v2023_11_15.model/Query.js +0 -175
- package/sdk/datakiosk_v2023_11_15/src/js_client.datakiosk_v2023_11_15.model/QueryPagination.js +0 -65
- package/sdk/easyship_v2022_03_23/README.md +0 -60
- package/sdk/easyship_v2022_03_23/docs/Code.md +0 -28
- package/sdk/easyship_v2022_03_23/docs/CreateScheduledPackageRequest.md +0 -11
- package/sdk/easyship_v2022_03_23/docs/CreateScheduledPackagesRequest.md +0 -11
- package/sdk/easyship_v2022_03_23/docs/CreateScheduledPackagesResponse.md +0 -11
- package/sdk/easyship_v2022_03_23/docs/Dimensions.md +0 -13
- package/sdk/easyship_v2022_03_23/docs/EasyShipApi.md +0 -239
- package/sdk/easyship_v2022_03_23/docs/Error.md +0 -11
- package/sdk/easyship_v2022_03_23/docs/ErrorList.md +0 -9
- package/sdk/easyship_v2022_03_23/docs/HandoverMethod.md +0 -10
- package/sdk/easyship_v2022_03_23/docs/InvoiceData.md +0 -10
- package/sdk/easyship_v2022_03_23/docs/Item.md +0 -10
- package/sdk/easyship_v2022_03_23/docs/LabelFormat.md +0 -10
- package/sdk/easyship_v2022_03_23/docs/ListHandoverSlotsRequest.md +0 -12
- package/sdk/easyship_v2022_03_23/docs/ListHandoverSlotsResponse.md +0 -10
- package/sdk/easyship_v2022_03_23/docs/OrderScheduleDetails.md +0 -10
- package/sdk/easyship_v2022_03_23/docs/Package.md +0 -17
- package/sdk/easyship_v2022_03_23/docs/PackageDetails.md +0 -11
- package/sdk/easyship_v2022_03_23/docs/PackageStatus.md +0 -30
- package/sdk/easyship_v2022_03_23/docs/Packages.md +0 -9
- package/sdk/easyship_v2022_03_23/docs/RejectedOrder.md +0 -10
- package/sdk/easyship_v2022_03_23/docs/ScheduledPackageId.md +0 -10
- package/sdk/easyship_v2022_03_23/docs/TimeSlot.md +0 -12
- package/sdk/easyship_v2022_03_23/docs/TrackingDetails.md +0 -9
- package/sdk/easyship_v2022_03_23/docs/UnitOfLength.md +0 -8
- package/sdk/easyship_v2022_03_23/docs/UnitOfWeight.md +0 -10
- package/sdk/easyship_v2022_03_23/docs/UpdatePackageDetails.md +0 -10
- package/sdk/easyship_v2022_03_23/docs/UpdateScheduledPackagesRequest.md +0 -10
- package/sdk/easyship_v2022_03_23/docs/Weight.md +0 -10
- package/sdk/easyship_v2022_03_23/src/ApiClient.js +0 -740
- package/sdk/easyship_v2022_03_23/src/index.js +0 -225
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.api/EasyShipApi.js +0 -285
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/Code.js +0 -109
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/CreateScheduledPackageRequest.js +0 -87
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/CreateScheduledPackagesRequest.js +0 -88
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/CreateScheduledPackagesResponse.js +0 -83
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/Dimensions.js +0 -97
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/Error.js +0 -85
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/ErrorList.js +0 -68
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/HandoverMethod.js +0 -46
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/InvoiceData.js +0 -75
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/Item.js +0 -73
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/LabelFormat.js +0 -46
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/ListHandoverSlotsRequest.js +0 -97
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/ListHandoverSlotsResponse.js +0 -78
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/OrderScheduleDetails.js +0 -75
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/Package.js +0 -138
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/PackageDetails.js +0 -84
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/PackageStatus.js +0 -116
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/Packages.js +0 -68
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/RejectedOrder.js +0 -75
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/ScheduledPackageId.js +0 -75
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/TimeSlot.js +0 -91
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/TrackingDetails.js +0 -65
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/UnitOfLength.js +0 -39
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/UnitOfWeight.js +0 -46
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/UpdatePackageDetails.js +0 -77
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/UpdateScheduledPackagesRequest.js +0 -78
- package/sdk/easyship_v2022_03_23/src/js_client.easyship_v2022_03_23.model/Weight.js +0 -73
- package/sdk/fbaeligibility_v1/README.md +0 -32
- package/sdk/fbaeligibility_v1/docs/Error.md +0 -11
- package/sdk/fbaeligibility_v1/docs/FbaInboundApi.md +0 -59
- package/sdk/fbaeligibility_v1/docs/GetItemEligibilityPreviewResponse.md +0 -10
- package/sdk/fbaeligibility_v1/docs/ItemEligibilityPreview.md +0 -109
- package/sdk/fbaeligibility_v1/src/ApiClient.js +0 -740
- package/sdk/fbaeligibility_v1/src/index.js +0 -57
- package/sdk/fbaeligibility_v1/src/js_client.fbaeligibility_v1.api/FbaInboundApi.js +0 -99
- package/sdk/fbaeligibility_v1/src/js_client.fbaeligibility_v1.model/Error.js +0 -83
- package/sdk/fbaeligibility_v1/src/js_client.fbaeligibility_v1.model/GetItemEligibilityPreviewResponse.js +0 -74
- package/sdk/fbaeligibility_v1/src/js_client.fbaeligibility_v1.model/ItemEligibilityPreview.js +0 -365
- package/sdk/fbainventory_v1/README.md +0 -49
- package/sdk/fbainventory_v1/docs/AddInventoryRequest.md +0 -9
- package/sdk/fbainventory_v1/docs/AddInventoryResponse.md +0 -9
- package/sdk/fbainventory_v1/docs/CreateInventoryItemRequest.md +0 -11
- package/sdk/fbainventory_v1/docs/CreateInventoryItemResponse.md +0 -9
- package/sdk/fbainventory_v1/docs/DeleteInventoryItemResponse.md +0 -9
- package/sdk/fbainventory_v1/docs/Error.md +0 -11
- package/sdk/fbainventory_v1/docs/FbaInventoryApi.md +0 -208
- package/sdk/fbainventory_v1/docs/GetInventorySummariesResponse.md +0 -11
- package/sdk/fbainventory_v1/docs/GetInventorySummariesResult.md +0 -10
- package/sdk/fbainventory_v1/docs/Granularity.md +0 -10
- package/sdk/fbainventory_v1/docs/InventoryDetails.md +0 -15
- package/sdk/fbainventory_v1/docs/InventoryItem.md +0 -11
- package/sdk/fbainventory_v1/docs/InventorySummary.md +0 -17
- package/sdk/fbainventory_v1/docs/Pagination.md +0 -9
- package/sdk/fbainventory_v1/docs/ResearchingQuantity.md +0 -10
- package/sdk/fbainventory_v1/docs/ResearchingQuantityEntry.md +0 -23
- package/sdk/fbainventory_v1/docs/ReservedQuantity.md +0 -12
- package/sdk/fbainventory_v1/docs/UnfulfillableQuantity.md +0 -15
- package/sdk/fbainventory_v1/src/ApiClient.js +0 -740
- package/sdk/fbainventory_v1/src/index.js +0 -155
- package/sdk/fbainventory_v1/src/js_client.fbainventory_v1.api/FbaInventoryApi.js +0 -282
- package/sdk/fbainventory_v1/src/js_client.fbainventory_v1.model/AddInventoryRequest.js +0 -66
- package/sdk/fbainventory_v1/src/js_client.fbainventory_v1.model/AddInventoryResponse.js +0 -66
- package/sdk/fbainventory_v1/src/js_client.fbainventory_v1.model/CreateInventoryItemRequest.js +0 -87
- package/sdk/fbainventory_v1/src/js_client.fbainventory_v1.model/CreateInventoryItemResponse.js +0 -66
- package/sdk/fbainventory_v1/src/js_client.fbainventory_v1.model/DeleteInventoryItemResponse.js +0 -66
- package/sdk/fbainventory_v1/src/js_client.fbainventory_v1.model/Error.js +0 -83
- package/sdk/fbainventory_v1/src/js_client.fbainventory_v1.model/GetInventorySummariesResponse.js +0 -82
- package/sdk/fbainventory_v1/src/js_client.fbainventory_v1.model/GetInventorySummariesResult.js +0 -78
- package/sdk/fbainventory_v1/src/js_client.fbainventory_v1.model/Granularity.js +0 -73
- package/sdk/fbainventory_v1/src/js_client.fbainventory_v1.model/InventoryDetails.js +0 -113
- package/sdk/fbainventory_v1/src/js_client.fbainventory_v1.model/InventoryItem.js +0 -87
- package/sdk/fbainventory_v1/src/js_client.fbainventory_v1.model/InventorySummary.js +0 -129
- package/sdk/fbainventory_v1/src/js_client.fbainventory_v1.model/Pagination.js +0 -65
- package/sdk/fbainventory_v1/src/js_client.fbainventory_v1.model/ResearchingQuantity.js +0 -74
- package/sdk/fbainventory_v1/src/js_client.fbainventory_v1.model/ResearchingQuantityEntry.js +0 -103
- package/sdk/fbainventory_v1/src/js_client.fbainventory_v1.model/ReservedQuantity.js +0 -89
- package/sdk/fbainventory_v1/src/js_client.fbainventory_v1.model/UnfulfillableQuantity.js +0 -113
- package/sdk/feeds_v2021_06_30/README.md +0 -43
- package/sdk/feeds_v2021_06_30/docs/CreateFeedDocumentResponse.md +0 -10
- package/sdk/feeds_v2021_06_30/docs/CreateFeedDocumentSpecification.md +0 -9
- package/sdk/feeds_v2021_06_30/docs/CreateFeedResponse.md +0 -9
- package/sdk/feeds_v2021_06_30/docs/CreateFeedSpecification.md +0 -12
- package/sdk/feeds_v2021_06_30/docs/Error.md +0 -11
- package/sdk/feeds_v2021_06_30/docs/ErrorList.md +0 -9
- package/sdk/feeds_v2021_06_30/docs/Feed.md +0 -33
- package/sdk/feeds_v2021_06_30/docs/FeedDocument.md +0 -20
- package/sdk/feeds_v2021_06_30/docs/FeedsApi.md +0 -292
- package/sdk/feeds_v2021_06_30/docs/GetFeedsResponse.md +0 -10
- package/sdk/feeds_v2021_06_30/src/ApiClient.js +0 -740
- package/sdk/feeds_v2021_06_30/src/index.js +0 -99
- package/sdk/feeds_v2021_06_30/src/js_client.feeds_v2021_06_30.api/FeedsApi.js +0 -346
- package/sdk/feeds_v2021_06_30/src/js_client.feeds_v2021_06_30.model/CreateFeedDocumentResponse.js +0 -77
- package/sdk/feeds_v2021_06_30/src/js_client.feeds_v2021_06_30.model/CreateFeedDocumentSpecification.js +0 -67
- package/sdk/feeds_v2021_06_30/src/js_client.feeds_v2021_06_30.model/CreateFeedResponse.js +0 -67
- package/sdk/feeds_v2021_06_30/src/js_client.feeds_v2021_06_30.model/CreateFeedSpecification.js +0 -95
- package/sdk/feeds_v2021_06_30/src/js_client.feeds_v2021_06_30.model/Error.js +0 -85
- package/sdk/feeds_v2021_06_30/src/js_client.feeds_v2021_06_30.model/ErrorList.js +0 -68
- package/sdk/feeds_v2021_06_30/src/js_client.feeds_v2021_06_30.model/Feed.js +0 -167
- package/sdk/feeds_v2021_06_30/src/js_client.feeds_v2021_06_30.model/FeedDocument.js +0 -99
- package/sdk/feeds_v2021_06_30/src/js_client.feeds_v2021_06_30.model/GetFeedsResponse.js +0 -76
- package/sdk/finances_2024-06-19/README.md +0 -46
- package/sdk/finances_2024-06-19/docs/AmazonPayContext.md +0 -11
- package/sdk/finances_2024-06-19/docs/Breakdown.md +0 -11
- package/sdk/finances_2024-06-19/docs/Context.md +0 -25
- package/sdk/finances_2024-06-19/docs/Currency.md +0 -10
- package/sdk/finances_2024-06-19/docs/DefaultApi.md +0 -61
- package/sdk/finances_2024-06-19/docs/DeferredContext.md +0 -11
- package/sdk/finances_2024-06-19/docs/Error.md +0 -11
- package/sdk/finances_2024-06-19/docs/ErrorList.md +0 -9
- package/sdk/finances_2024-06-19/docs/Item.md +0 -13
- package/sdk/finances_2024-06-19/docs/ItemRelatedIdentifier.md +0 -25
- package/sdk/finances_2024-06-19/docs/ListTransactionsResponse.md +0 -10
- package/sdk/finances_2024-06-19/docs/MarketplaceDetails.md +0 -10
- package/sdk/finances_2024-06-19/docs/PaymentsContext.md +0 -12
- package/sdk/finances_2024-06-19/docs/ProductContext.md +0 -12
- package/sdk/finances_2024-06-19/docs/RelatedIdentifier.md +0 -31
- package/sdk/finances_2024-06-19/docs/SellingPartnerMetadata.md +0 -11
- package/sdk/finances_2024-06-19/docs/TimeRangeContext.md +0 -10
- package/sdk/finances_2024-06-19/docs/Transaction.md +0 -20
- package/sdk/finances_2024-06-19/src/ApiClient.js +0 -740
- package/sdk/finances_2024-06-19/src/index.js +0 -155
- package/sdk/finances_2024-06-19/src/js_client.finances_2024-06-19.api/DefaultApi.js +0 -98
- package/sdk/finances_2024-06-19/src/js_client.finances_2024-06-19.model/AmazonPayContext.js +0 -81
- package/sdk/finances_2024-06-19/src/js_client.finances_2024-06-19.model/Breakdown.js +0 -80
- package/sdk/finances_2024-06-19/src/js_client.finances_2024-06-19.model/Context.js +0 -315
- package/sdk/finances_2024-06-19/src/js_client.finances_2024-06-19.model/Currency.js +0 -73
- package/sdk/finances_2024-06-19/src/js_client.finances_2024-06-19.model/DeferredContext.js +0 -81
- package/sdk/finances_2024-06-19/src/js_client.finances_2024-06-19.model/Error.js +0 -85
- package/sdk/finances_2024-06-19/src/js_client.finances_2024-06-19.model/ErrorList.js +0 -68
- package/sdk/finances_2024-06-19/src/js_client.finances_2024-06-19.model/Item.js +0 -100
- package/sdk/finances_2024-06-19/src/js_client.finances_2024-06-19.model/ItemRelatedIdentifier.js +0 -105
- package/sdk/finances_2024-06-19/src/js_client.finances_2024-06-19.model/ListTransactionsResponse.js +0 -74
- package/sdk/finances_2024-06-19/src/js_client.finances_2024-06-19.model/MarketplaceDetails.js +0 -73
- package/sdk/finances_2024-06-19/src/js_client.finances_2024-06-19.model/PaymentsContext.js +0 -89
- package/sdk/finances_2024-06-19/src/js_client.finances_2024-06-19.model/ProductContext.js +0 -89
- package/sdk/finances_2024-06-19/src/js_client.finances_2024-06-19.model/RelatedIdentifier.js +0 -123
- package/sdk/finances_2024-06-19/src/js_client.finances_2024-06-19.model/SellingPartnerMetadata.js +0 -81
- package/sdk/finances_2024-06-19/src/js_client.finances_2024-06-19.model/TimeRangeContext.js +0 -73
- package/sdk/finances_2024-06-19/src/js_client.finances_2024-06-19.model/Transaction.js +0 -157
- package/sdk/finances_v0/README.md +0 -82
- package/sdk/finances_v0/docs/AdhocDisbursementEvent.md +0 -12
- package/sdk/finances_v0/docs/AdjustmentEvent.md +0 -13
- package/sdk/finances_v0/docs/AdjustmentItem.md +0 -16
- package/sdk/finances_v0/docs/AffordabilityExpenseEvent.md +0 -17
- package/sdk/finances_v0/docs/CapacityReservationBillingEvent.md +0 -12
- package/sdk/finances_v0/docs/ChargeComponent.md +0 -10
- package/sdk/finances_v0/docs/ChargeInstrument.md +0 -11
- package/sdk/finances_v0/docs/ChargeRefundEvent.md +0 -12
- package/sdk/finances_v0/docs/ChargeRefundTransaction.md +0 -10
- package/sdk/finances_v0/docs/CouponPaymentEvent.md +0 -16
- package/sdk/finances_v0/docs/Currency.md +0 -10
- package/sdk/finances_v0/docs/DebtRecoveryEvent.md +0 -13
- package/sdk/finances_v0/docs/DebtRecoveryItem.md +0 -12
- package/sdk/finances_v0/docs/DefaultApi.md +0 -220
- package/sdk/finances_v0/docs/DirectPayment.md +0 -10
- package/sdk/finances_v0/docs/Error.md +0 -11
- package/sdk/finances_v0/docs/FBALiquidationEvent.md +0 -12
- package/sdk/finances_v0/docs/FailedAdhocDisbursementEvent.md +0 -15
- package/sdk/finances_v0/docs/FeeComponent.md +0 -10
- package/sdk/finances_v0/docs/FinancialEventGroup.md +0 -19
- package/sdk/finances_v0/docs/FinancialEvents.md +0 -41
- package/sdk/finances_v0/docs/ImagingServicesFeeEvent.md +0 -12
- package/sdk/finances_v0/docs/ListFinancialEventGroupsPayload.md +0 -10
- package/sdk/finances_v0/docs/ListFinancialEventGroupsResponse.md +0 -10
- package/sdk/finances_v0/docs/ListFinancialEventsPayload.md +0 -10
- package/sdk/finances_v0/docs/ListFinancialEventsResponse.md +0 -10
- package/sdk/finances_v0/docs/LoanServicingEvent.md +0 -10
- package/sdk/finances_v0/docs/NetworkComminglingTransactionEvent.md +0 -16
- package/sdk/finances_v0/docs/PayWithAmazonEvent.md +0 -18
- package/sdk/finances_v0/docs/ProductAdsPaymentEvent.md +0 -14
- package/sdk/finances_v0/docs/Promotion.md +0 -11
- package/sdk/finances_v0/docs/RemovalShipmentAdjustmentEvent.md +0 -14
- package/sdk/finances_v0/docs/RemovalShipmentEvent.md +0 -14
- package/sdk/finances_v0/docs/RemovalShipmentItem.md +0 -16
- package/sdk/finances_v0/docs/RemovalShipmentItemAdjustment.md +0 -15
- package/sdk/finances_v0/docs/RentalTransactionEvent.md +0 -18
- package/sdk/finances_v0/docs/RetrochargeEvent.md +0 -15
- package/sdk/finances_v0/docs/SAFETReimbursementEvent.md +0 -13
- package/sdk/finances_v0/docs/SAFETReimbursementItem.md +0 -11
- package/sdk/finances_v0/docs/SellerDealPaymentEvent.md +0 -16
- package/sdk/finances_v0/docs/SellerReviewEnrollmentPaymentEvent.md +0 -14
- package/sdk/finances_v0/docs/ServiceFeeEvent.md +0 -16
- package/sdk/finances_v0/docs/ShipmentEvent.md +0 -22
- package/sdk/finances_v0/docs/ShipmentItem.md +0 -21
- package/sdk/finances_v0/docs/SolutionProviderCreditEvent.md +0 -18
- package/sdk/finances_v0/docs/TDSReimbursementEvent.md +0 -11
- package/sdk/finances_v0/docs/TaxWithheldComponent.md +0 -10
- package/sdk/finances_v0/docs/TaxWithholdingEvent.md +0 -12
- package/sdk/finances_v0/docs/TaxWithholdingPeriod.md +0 -10
- package/sdk/finances_v0/docs/TrialShipmentEvent.md +0 -13
- package/sdk/finances_v0/docs/ValueAddedServiceChargeEvent.md +0 -12
- package/sdk/finances_v0/src/ApiClient.js +0 -740
- package/sdk/finances_v0/src/index.js +0 -386
- package/sdk/finances_v0/src/js_client.finances_v0.api/DefaultApi.js +0 -268
- package/sdk/finances_v0/src/js_client.finances_v0.model/AdhocDisbursementEvent.js +0 -89
- package/sdk/finances_v0/src/js_client.finances_v0.model/AdjustmentEvent.js +0 -98
- package/sdk/finances_v0/src/js_client.finances_v0.model/AdjustmentItem.js +0 -120
- package/sdk/finances_v0/src/js_client.finances_v0.model/AffordabilityExpenseEvent.js +0 -131
- package/sdk/finances_v0/src/js_client.finances_v0.model/CapacityReservationBillingEvent.js +0 -89
- package/sdk/finances_v0/src/js_client.finances_v0.model/ChargeComponent.js +0 -73
- package/sdk/finances_v0/src/js_client.finances_v0.model/ChargeInstrument.js +0 -81
- package/sdk/finances_v0/src/js_client.finances_v0.model/ChargeRefundEvent.js +0 -90
- package/sdk/finances_v0/src/js_client.finances_v0.model/ChargeRefundTransaction.js +0 -73
- package/sdk/finances_v0/src/js_client.finances_v0.model/CouponPaymentEvent.js +0 -121
- package/sdk/finances_v0/src/js_client.finances_v0.model/Currency.js +0 -73
- package/sdk/finances_v0/src/js_client.finances_v0.model/DebtRecoveryEvent.js +0 -98
- package/sdk/finances_v0/src/js_client.finances_v0.model/DebtRecoveryItem.js +0 -88
- package/sdk/finances_v0/src/js_client.finances_v0.model/DirectPayment.js +0 -73
- package/sdk/finances_v0/src/js_client.finances_v0.model/Error.js +0 -85
- package/sdk/finances_v0/src/js_client.finances_v0.model/FBALiquidationEvent.js +0 -88
- package/sdk/finances_v0/src/js_client.finances_v0.model/FailedAdhocDisbursementEvent.js +0 -113
- package/sdk/finances_v0/src/js_client.finances_v0.model/FeeComponent.js +0 -73
- package/sdk/finances_v0/src/js_client.finances_v0.model/FinancialEventGroup.js +0 -143
- package/sdk/finances_v0/src/js_client.finances_v0.model/FinancialEvents.js +0 -349
- package/sdk/finances_v0/src/js_client.finances_v0.model/ImagingServicesFeeEvent.js +0 -90
- package/sdk/finances_v0/src/js_client.finances_v0.model/ListFinancialEventGroupsPayload.js +0 -74
- package/sdk/finances_v0/src/js_client.finances_v0.model/ListFinancialEventGroupsResponse.js +0 -74
- package/sdk/finances_v0/src/js_client.finances_v0.model/ListFinancialEventsPayload.js +0 -73
- package/sdk/finances_v0/src/js_client.finances_v0.model/ListFinancialEventsResponse.js +0 -74
- package/sdk/finances_v0/src/js_client.finances_v0.model/LoanServicingEvent.js +0 -73
- package/sdk/finances_v0/src/js_client.finances_v0.model/NetworkComminglingTransactionEvent.js +0 -120
- package/sdk/finances_v0/src/js_client.finances_v0.model/PayWithAmazonEvent.js +0 -138
- package/sdk/finances_v0/src/js_client.finances_v0.model/ProductAdsPaymentEvent.js +0 -103
- package/sdk/finances_v0/src/js_client.finances_v0.model/Promotion.js +0 -81
- package/sdk/finances_v0/src/js_client.finances_v0.model/RemovalShipmentAdjustmentEvent.js +0 -106
- package/sdk/finances_v0/src/js_client.finances_v0.model/RemovalShipmentEvent.js +0 -106
- package/sdk/finances_v0/src/js_client.finances_v0.model/RemovalShipmentItem.js +0 -118
- package/sdk/finances_v0/src/js_client.finances_v0.model/RemovalShipmentItemAdjustment.js +0 -111
- package/sdk/finances_v0/src/js_client.finances_v0.model/RentalTransactionEvent.js +0 -139
- package/sdk/finances_v0/src/js_client.finances_v0.model/RetrochargeEvent.js +0 -113
- package/sdk/finances_v0/src/js_client.finances_v0.model/SAFETReimbursementEvent.js +0 -98
- package/sdk/finances_v0/src/js_client.finances_v0.model/SAFETReimbursementItem.js +0 -82
- package/sdk/finances_v0/src/js_client.finances_v0.model/SellerDealPaymentEvent.js +0 -119
- package/sdk/finances_v0/src/js_client.finances_v0.model/SellerReviewEnrollmentPaymentEvent.js +0 -105
- package/sdk/finances_v0/src/js_client.finances_v0.model/ServiceFeeEvent.js +0 -122
- package/sdk/finances_v0/src/js_client.finances_v0.model/ShipmentEvent.js +0 -173
- package/sdk/finances_v0/src/js_client.finances_v0.model/ShipmentItem.js +0 -164
- package/sdk/finances_v0/src/js_client.finances_v0.model/SolutionProviderCreditEvent.js +0 -137
- package/sdk/finances_v0/src/js_client.finances_v0.model/TDSReimbursementEvent.js +0 -81
- package/sdk/finances_v0/src/js_client.finances_v0.model/TaxWithheldComponent.js +0 -74
- package/sdk/finances_v0/src/js_client.finances_v0.model/TaxWithholdingEvent.js +0 -88
- package/sdk/finances_v0/src/js_client.finances_v0.model/TaxWithholdingPeriod.js +0 -73
- package/sdk/finances_v0/src/js_client.finances_v0.model/TrialShipmentEvent.js +0 -98
- package/sdk/finances_v0/src/js_client.finances_v0.model/ValueAddedServiceChargeEvent.js +0 -89
- package/sdk/fulfillmentinbound_v0/README.md +0 -65
- package/sdk/fulfillmentinbound_v0/docs/ASINPrepInstructions.md +0 -12
- package/sdk/fulfillmentinbound_v0/docs/Address.md +0 -16
- package/sdk/fulfillmentinbound_v0/docs/AmazonPrepFeesDetails.md +0 -10
- package/sdk/fulfillmentinbound_v0/docs/Amount.md +0 -10
- package/sdk/fulfillmentinbound_v0/docs/BarcodeInstruction.md +0 -12
- package/sdk/fulfillmentinbound_v0/docs/BillOfLadingDownloadURL.md +0 -9
- package/sdk/fulfillmentinbound_v0/docs/BoxContentsFeeDetails.md +0 -11
- package/sdk/fulfillmentinbound_v0/docs/BoxContentsSource.md +0 -14
- package/sdk/fulfillmentinbound_v0/docs/CurrencyCode.md +0 -10
- package/sdk/fulfillmentinbound_v0/docs/Error.md +0 -11
- package/sdk/fulfillmentinbound_v0/docs/ErrorReason.md +0 -10
- package/sdk/fulfillmentinbound_v0/docs/FbaInboundApi.md +0 -328
- package/sdk/fulfillmentinbound_v0/docs/GetBillOfLadingResponse.md +0 -10
- package/sdk/fulfillmentinbound_v0/docs/GetLabelsResponse.md +0 -10
- package/sdk/fulfillmentinbound_v0/docs/GetPrepInstructionsResponse.md +0 -10
- package/sdk/fulfillmentinbound_v0/docs/GetPrepInstructionsResult.md +0 -12
- package/sdk/fulfillmentinbound_v0/docs/GetShipmentItemsResponse.md +0 -10
- package/sdk/fulfillmentinbound_v0/docs/GetShipmentItemsResult.md +0 -10
- package/sdk/fulfillmentinbound_v0/docs/GetShipmentsResponse.md +0 -10
- package/sdk/fulfillmentinbound_v0/docs/GetShipmentsResult.md +0 -10
- package/sdk/fulfillmentinbound_v0/docs/InboundShipmentInfo.md +0 -18
- package/sdk/fulfillmentinbound_v0/docs/InboundShipmentItem.md +0 -16
- package/sdk/fulfillmentinbound_v0/docs/InvalidASIN.md +0 -10
- package/sdk/fulfillmentinbound_v0/docs/InvalidSKU.md +0 -10
- package/sdk/fulfillmentinbound_v0/docs/LabelDownloadURL.md +0 -9
- package/sdk/fulfillmentinbound_v0/docs/LabelPrepType.md +0 -12
- package/sdk/fulfillmentinbound_v0/docs/PrepDetails.md +0 -10
- package/sdk/fulfillmentinbound_v0/docs/PrepGuidance.md +0 -12
- package/sdk/fulfillmentinbound_v0/docs/PrepInstruction.md +0 -38
- package/sdk/fulfillmentinbound_v0/docs/PrepOwner.md +0 -10
- package/sdk/fulfillmentinbound_v0/docs/SKUPrepInstructions.md +0 -14
- package/sdk/fulfillmentinbound_v0/docs/ShipmentStatus.md +0 -26
- package/sdk/fulfillmentinbound_v0/src/ApiClient.js +0 -740
- package/sdk/fulfillmentinbound_v0/src/index.js +0 -253
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.api/FbaInboundApi.js +0 -424
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/ASINPrepInstructions.js +0 -90
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/Address.js +0 -133
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/AmazonPrepFeesDetails.js +0 -73
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/Amount.js +0 -77
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/BarcodeInstruction.js +0 -53
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/BillOfLadingDownloadURL.js +0 -65
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/BoxContentsFeeDetails.js +0 -80
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/BoxContentsSource.js +0 -60
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/CurrencyCode.js +0 -46
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/Error.js +0 -85
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/ErrorReason.js +0 -46
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/GetBillOfLadingResponse.js +0 -74
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/GetLabelsResponse.js +0 -74
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/GetPrepInstructionsResponse.js +0 -74
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/GetPrepInstructionsResult.js +0 -93
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/GetShipmentItemsResponse.js +0 -74
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/GetShipmentItemsResult.js +0 -74
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/GetShipmentsResponse.js +0 -74
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/GetShipmentsResult.js +0 -74
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/InboundShipmentInfo.js +0 -141
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/InboundShipmentItem.js +0 -126
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/InvalidASIN.js +0 -73
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/InvalidSKU.js +0 -73
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/LabelDownloadURL.js +0 -65
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/LabelPrepType.js +0 -53
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/PrepDetails.js +0 -77
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/PrepGuidance.js +0 -53
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/PrepInstruction.js +0 -144
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/PrepOwner.js +0 -46
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/SKUPrepInstructions.js +0 -107
- package/sdk/fulfillmentinbound_v0/src/js_client.fulfillmentinbound_v0.model/ShipmentStatus.js +0 -102
- package/sdk/fulfillmentinbound_v2024_03_20/README.md +0 -213
- package/sdk/fulfillmentinbound_v2024_03_20/docs/Address.md +0 -18
- package/sdk/fulfillmentinbound_v2024_03_20/docs/AddressInput.md +0 -18
- package/sdk/fulfillmentinbound_v2024_03_20/docs/AllOwnersConstraint.md +0 -8
- package/sdk/fulfillmentinbound_v2024_03_20/docs/AppointmentSlot.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/AppointmentSlotTime.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/Box.md +0 -19
- package/sdk/fulfillmentinbound_v2024_03_20/docs/BoxContentInformationSource.md +0 -12
- package/sdk/fulfillmentinbound_v2024_03_20/docs/BoxInput.md +0 -13
- package/sdk/fulfillmentinbound_v2024_03_20/docs/BoxRequirements.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/BoxUpdateInput.md +0 -14
- package/sdk/fulfillmentinbound_v2024_03_20/docs/CancelInboundPlanResponse.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/CancelSelfShipAppointmentRequest.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/CancelSelfShipAppointmentResponse.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/Carrier.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/CarrierAppointment.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ComplianceDetail.md +0 -12
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ConfirmDeliveryWindowOptionsResponse.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ConfirmPackingOptionResponse.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ConfirmPlacementOptionResponse.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ConfirmShipmentContentUpdatePreviewResponse.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ConfirmTransportationOptionsRequest.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ConfirmTransportationOptionsResponse.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ContactInformation.md +0 -11
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ContentUpdatePreview.md +0 -12
- package/sdk/fulfillmentinbound_v2024_03_20/docs/CreateInboundPlanRequest.md +0 -12
- package/sdk/fulfillmentinbound_v2024_03_20/docs/CreateInboundPlanResponse.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/CreateMarketplaceItemLabelsRequest.md +0 -15
- package/sdk/fulfillmentinbound_v2024_03_20/docs/CreateMarketplaceItemLabelsResponse.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/Currency.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/CustomPlacementInput.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/Dates.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/DeliveryWindowOption.md +0 -13
- package/sdk/fulfillmentinbound_v2024_03_20/docs/Dimensions.md +0 -12
- package/sdk/fulfillmentinbound_v2024_03_20/docs/DocumentDownload.md +0 -11
- package/sdk/fulfillmentinbound_v2024_03_20/docs/Error.md +0 -11
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ErrorList.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/FbaInboundApi.md +0 -2215
- package/sdk/fulfillmentinbound_v2024_03_20/docs/FreightInformation.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/GenerateDeliveryWindowOptionsResponse.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/GeneratePackingOptionsResponse.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/GeneratePlacementOptionsRequest.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/GeneratePlacementOptionsResponse.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/GenerateSelfShipAppointmentSlotsRequest.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/GenerateSelfShipAppointmentSlotsResponse.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/GenerateShipmentContentUpdatePreviewsRequest.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/GenerateShipmentContentUpdatePreviewsResponse.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/GenerateTransportationOptionsRequest.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/GenerateTransportationOptionsResponse.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/GetDeliveryChallanDocumentResponse.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/GetSelfShipAppointmentSlotsResponse.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/InboundOperationStatus.md +0 -12
- package/sdk/fulfillmentinbound_v2024_03_20/docs/InboundPlan.md +0 -18
- package/sdk/fulfillmentinbound_v2024_03_20/docs/InboundPlanSummary.md +0 -15
- package/sdk/fulfillmentinbound_v2024_03_20/docs/Incentive.md +0 -12
- package/sdk/fulfillmentinbound_v2024_03_20/docs/Item.md +0 -16
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ItemInput.md +0 -14
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ItemLabelPageType.md +0 -28
- package/sdk/fulfillmentinbound_v2024_03_20/docs/LabelOwner.md +0 -12
- package/sdk/fulfillmentinbound_v2024_03_20/docs/LabelPrintType.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ListDeliveryWindowOptionsResponse.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ListInboundPlanBoxesResponse.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ListInboundPlanItemsResponse.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ListInboundPlanPalletsResponse.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ListInboundPlansResponse.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ListItemComplianceDetailsResponse.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ListPackingGroupBoxesResponse.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ListPackingGroupItemsResponse.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ListPackingOptionsResponse.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ListPlacementOptionsResponse.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ListPrepDetailsResponse.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ListShipmentBoxesResponse.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ListShipmentContentUpdatePreviewsResponse.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ListShipmentItemsResponse.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ListShipmentPalletsResponse.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ListTransportationOptionsResponse.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/LtlTrackingDetail.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/LtlTrackingDetailInput.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/MskuPrepDetail.md +0 -14
- package/sdk/fulfillmentinbound_v2024_03_20/docs/MskuPrepDetailInput.md +0 -11
- package/sdk/fulfillmentinbound_v2024_03_20/docs/MskuQuantity.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/OperationProblem.md +0 -12
- package/sdk/fulfillmentinbound_v2024_03_20/docs/OperationStatus.md +0 -12
- package/sdk/fulfillmentinbound_v2024_03_20/docs/OwnerConstraint.md +0 -12
- package/sdk/fulfillmentinbound_v2024_03_20/docs/PackageGroupingInput.md +0 -11
- package/sdk/fulfillmentinbound_v2024_03_20/docs/PackingConfiguration.md +0 -11
- package/sdk/fulfillmentinbound_v2024_03_20/docs/PackingOption.md +0 -16
- package/sdk/fulfillmentinbound_v2024_03_20/docs/PackingOptionSummary.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/Pagination.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/Pallet.md +0 -13
- package/sdk/fulfillmentinbound_v2024_03_20/docs/PalletInput.md +0 -12
- package/sdk/fulfillmentinbound_v2024_03_20/docs/PlacementOption.md +0 -14
- package/sdk/fulfillmentinbound_v2024_03_20/docs/PlacementOptionSummary.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/PrepCategory.md +0 -34
- package/sdk/fulfillmentinbound_v2024_03_20/docs/PrepInstruction.md +0 -11
- package/sdk/fulfillmentinbound_v2024_03_20/docs/PrepOwner.md +0 -12
- package/sdk/fulfillmentinbound_v2024_03_20/docs/PrepType.md +0 -38
- package/sdk/fulfillmentinbound_v2024_03_20/docs/Quote.md +0 -11
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ReasonComment.md +0 -24
- package/sdk/fulfillmentinbound_v2024_03_20/docs/Region.md +0 -11
- package/sdk/fulfillmentinbound_v2024_03_20/docs/RequestedUpdates.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ScheduleSelfShipAppointmentRequest.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ScheduleSelfShipAppointmentResponse.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/SelectedDeliveryWindow.md +0 -13
- package/sdk/fulfillmentinbound_v2024_03_20/docs/SelfShipAppointmentDetails.md +0 -11
- package/sdk/fulfillmentinbound_v2024_03_20/docs/SelfShipAppointmentSlotsAvailability.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/SetPackingInformationRequest.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/SetPackingInformationResponse.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/SetPrepDetailsRequest.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/SetPrepDetailsResponse.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/Shipment.md +0 -23
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ShipmentDestination.md +0 -11
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ShipmentSource.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ShipmentSummary.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ShipmentTransportationConfiguration.md +0 -13
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ShippingConfiguration.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/ShippingRequirements.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/SpdTrackingDetail.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/SpdTrackingDetailInput.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/SpdTrackingItem.md +0 -11
- package/sdk/fulfillmentinbound_v2024_03_20/docs/SpdTrackingItemInput.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/Stackability.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/TaxDetails.md +0 -11
- package/sdk/fulfillmentinbound_v2024_03_20/docs/TaxRate.md +0 -11
- package/sdk/fulfillmentinbound_v2024_03_20/docs/TrackingDetails.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/TrackingDetailsInput.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/TransportationOption.md +0 -16
- package/sdk/fulfillmentinbound_v2024_03_20/docs/TransportationSelection.md +0 -11
- package/sdk/fulfillmentinbound_v2024_03_20/docs/UnitOfMeasurement.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/UnitOfWeight.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/UpdateInboundPlanNameRequest.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/UpdateItemComplianceDetailsRequest.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/UpdateItemComplianceDetailsResponse.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/UpdateShipmentNameRequest.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/UpdateShipmentSourceAddressRequest.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/UpdateShipmentSourceAddressResponse.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/UpdateShipmentTrackingDetailsRequest.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/UpdateShipmentTrackingDetailsResponse.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/docs/Weight.md +0 -10
- package/sdk/fulfillmentinbound_v2024_03_20/docs/WeightRange.md +0 -11
- package/sdk/fulfillmentinbound_v2024_03_20/docs/Window.md +0 -11
- package/sdk/fulfillmentinbound_v2024_03_20/docs/WindowInput.md +0 -9
- package/sdk/fulfillmentinbound_v2024_03_20/src/ApiClient.js +0 -740
- package/sdk/fulfillmentinbound_v2024_03_20/src/index.js +0 -1016
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.api/FbaInboundApi.js +0 -2718
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/Address.js +0 -147
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/AddressInput.js +0 -149
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/AllOwnersConstraint.js +0 -39
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/AppointmentSlot.js +0 -77
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/AppointmentSlotTime.js +0 -77
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/Box.js +0 -148
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/BoxContentInformationSource.js +0 -53
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/BoxInput.js +0 -106
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/BoxRequirements.js +0 -67
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/BoxUpdateInput.js +0 -114
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/CancelInboundPlanResponse.js +0 -67
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/CancelSelfShipAppointmentRequest.js +0 -65
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/CancelSelfShipAppointmentResponse.js +0 -67
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/Carrier.js +0 -73
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/CarrierAppointment.js +0 -77
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ComplianceDetail.js +0 -89
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ConfirmDeliveryWindowOptionsResponse.js +0 -67
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ConfirmPackingOptionResponse.js +0 -67
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ConfirmPlacementOptionResponse.js +0 -67
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ConfirmShipmentContentUpdatePreviewResponse.js +0 -67
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ConfirmTransportationOptionsRequest.js +0 -68
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ConfirmTransportationOptionsResponse.js +0 -67
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ContactInformation.js +0 -85
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ContentUpdatePreview.js +0 -97
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/CreateInboundPlanRequest.js +0 -96
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/CreateInboundPlanResponse.js +0 -77
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/CreateMarketplaceItemLabelsRequest.js +0 -121
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/CreateMarketplaceItemLabelsResponse.js +0 -68
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/Currency.js +0 -77
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/CustomPlacementInput.js +0 -78
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/Dates.js +0 -65
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/DeliveryWindowOption.js +0 -107
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/Dimensions.js +0 -97
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/DocumentDownload.js +0 -85
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/Error.js +0 -85
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ErrorList.js +0 -68
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/FreightInformation.js +0 -73
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/GenerateDeliveryWindowOptionsResponse.js +0 -67
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/GeneratePackingOptionsResponse.js +0 -67
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/GeneratePlacementOptionsRequest.js +0 -66
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/GeneratePlacementOptionsResponse.js +0 -67
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/GenerateSelfShipAppointmentSlotsRequest.js +0 -73
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/GenerateSelfShipAppointmentSlotsResponse.js +0 -67
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/GenerateShipmentContentUpdatePreviewsRequest.js +0 -79
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/GenerateShipmentContentUpdatePreviewsResponse.js +0 -67
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/GenerateTransportationOptionsRequest.js +0 -78
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/GenerateTransportationOptionsResponse.js +0 -67
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/GetDeliveryChallanDocumentResponse.js +0 -67
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/GetSelfShipAppointmentSlotsResponse.js +0 -75
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/InboundOperationStatus.js +0 -98
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/InboundPlan.js +0 -154
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/InboundPlanSummary.js +0 -127
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/Incentive.js +0 -97
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/Item.js +0 -134
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ItemInput.js +0 -113
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ItemLabelPageType.js +0 -109
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/LabelOwner.js +0 -53
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/LabelPrintType.js +0 -46
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ListDeliveryWindowOptionsResponse.js +0 -76
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ListInboundPlanBoxesResponse.js +0 -76
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ListInboundPlanItemsResponse.js +0 -76
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ListInboundPlanPalletsResponse.js +0 -76
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ListInboundPlansResponse.js +0 -74
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ListItemComplianceDetailsResponse.js +0 -66
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ListPackingGroupBoxesResponse.js +0 -76
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ListPackingGroupItemsResponse.js +0 -76
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ListPackingOptionsResponse.js +0 -76
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ListPlacementOptionsResponse.js +0 -76
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ListPrepDetailsResponse.js +0 -68
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ListShipmentBoxesResponse.js +0 -76
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ListShipmentContentUpdatePreviewsResponse.js +0 -76
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ListShipmentItemsResponse.js +0 -76
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ListShipmentPalletsResponse.js +0 -76
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ListTransportationOptionsResponse.js +0 -76
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/LtlTrackingDetail.js +0 -73
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/LtlTrackingDetailInput.js +0 -75
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/MskuPrepDetail.js +0 -111
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/MskuPrepDetailInput.js +0 -88
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/MskuQuantity.js +0 -77
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/OperationProblem.js +0 -95
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/OperationStatus.js +0 -53
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/OwnerConstraint.js +0 -53
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/PackageGroupingInput.js +0 -84
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/PackingConfiguration.js +0 -83
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/PackingOption.js +0 -138
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/PackingOptionSummary.js +0 -77
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/Pagination.js +0 -65
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/Pallet.js +0 -99
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/PalletInput.js +0 -91
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/PlacementOption.js +0 -116
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/PlacementOptionSummary.js +0 -77
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/PrepCategory.js +0 -130
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/PrepInstruction.js +0 -81
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/PrepOwner.js +0 -53
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/PrepType.js +0 -144
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/Quote.js +0 -83
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ReasonComment.js +0 -95
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/Region.js +0 -81
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/RequestedUpdates.js +0 -75
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ScheduleSelfShipAppointmentRequest.js +0 -65
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ScheduleSelfShipAppointmentResponse.js +0 -67
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/SelectedDeliveryWindow.js +0 -105
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/SelfShipAppointmentDetails.js +0 -81
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/SelfShipAppointmentSlotsAvailability.js +0 -74
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/SetPackingInformationRequest.js +0 -68
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/SetPackingInformationResponse.js +0 -67
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/SetPrepDetailsRequest.js +0 -78
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/SetPrepDetailsResponse.js +0 -67
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/Shipment.js +0 -186
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ShipmentDestination.js +0 -83
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ShipmentSource.js +0 -75
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ShipmentSummary.js +0 -77
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ShipmentTransportationConfiguration.js +0 -102
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ShippingConfiguration.js +0 -73
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/ShippingRequirements.js +0 -77
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/SpdTrackingDetail.js +0 -66
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/SpdTrackingDetailInput.js +0 -68
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/SpdTrackingItem.js +0 -81
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/SpdTrackingItemInput.js +0 -77
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/Stackability.js +0 -46
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/TaxDetails.js +0 -82
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/TaxRate.js +0 -81
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/TrackingDetails.js +0 -73
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/TrackingDetailsInput.js +0 -73
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/TransportationOption.js +0 -133
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/TransportationSelection.js +0 -85
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/UnitOfMeasurement.js +0 -46
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/UnitOfWeight.js +0 -46
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/UpdateInboundPlanNameRequest.js +0 -67
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/UpdateItemComplianceDetailsRequest.js +0 -77
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/UpdateItemComplianceDetailsResponse.js +0 -67
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/UpdateShipmentNameRequest.js +0 -67
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/UpdateShipmentSourceAddressRequest.js +0 -67
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/UpdateShipmentSourceAddressResponse.js +0 -67
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/UpdateShipmentTrackingDetailsRequest.js +0 -67
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/UpdateShipmentTrackingDetailsResponse.js +0 -67
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/Weight.js +0 -77
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/WeightRange.js +0 -87
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/Window.js +0 -85
- package/sdk/fulfillmentinbound_v2024_03_20/src/js_client.fulfillmentinbound_v2024_03_20.model/WindowInput.js +0 -67
- package/sdk/fulfillmentoutbound_v2020_07_01/README.md +0 -130
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/AdditionalLocationInfo.md +0 -58
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/Address.md +0 -18
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/Amount.md +0 -19
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/CODSettings.md +0 -13
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/CancelFulfillmentOrderResponse.md +0 -9
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/CreateFulfillmentOrderItem.md +0 -17
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/CreateFulfillmentOrderRequest.md +0 -25
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/CreateFulfillmentOrderResponse.md +0 -9
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/CreateFulfillmentReturnRequest.md +0 -9
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/CreateFulfillmentReturnResponse.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/CreateFulfillmentReturnResult.md +0 -11
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/CreateReturnItem.md +0 -13
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/CurrentStatus.md +0 -42
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/DateRange.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/DeliveryDocument.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/DeliveryInformation.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/DeliveryMessage.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/DeliveryOffer.md +0 -11
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/DeliveryPolicy.md +0 -9
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/DeliveryPreferences.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/DeliveryWindow.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/Destination.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/DropOffLocation.md +0 -33
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/Error.md +0 -11
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/EventCode.md +0 -72
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/FbaOutboundApi.md +0 -668
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/Feature.md +0 -11
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/FeatureSettings.md +0 -21
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/FeatureSku.md +0 -13
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/Fee.md +0 -25
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/FulfillmentAction.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/FulfillmentOrder.md +0 -24
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/FulfillmentOrderItem.md +0 -22
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/FulfillmentOrderStatus.md +0 -24
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/FulfillmentPolicy.md +0 -12
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/FulfillmentPreview.md +0 -19
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/FulfillmentPreviewItem.md +0 -24
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/FulfillmentPreviewShipment.md +0 -14
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/FulfillmentReturnItemStatus.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/FulfillmentShipment.md +0 -31
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/FulfillmentShipmentItem.md +0 -14
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/FulfillmentShipmentPackage.md +0 -14
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/GetDeliveryOffersProduct.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/GetDeliveryOffersRequest.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/GetDeliveryOffersResponse.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/GetDeliveryOffersResult.md +0 -9
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/GetDeliveryOffersTerms.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/GetFeatureInventoryResponse.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/GetFeatureInventoryResult.md +0 -12
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/GetFeatureSkuResponse.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/GetFeatureSkuResult.md +0 -13
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/GetFeaturesResponse.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/GetFeaturesResult.md +0 -9
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/GetFulfillmentOrderResponse.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/GetFulfillmentOrderResult.md +0 -14
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/GetFulfillmentPreviewItem.md +0 -12
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/GetFulfillmentPreviewRequest.md +0 -15
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/GetFulfillmentPreviewResponse.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/GetFulfillmentPreviewResult.md +0 -9
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/GetPackageTrackingDetailsResponse.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/InvalidItemReason.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/InvalidItemReasonCode.md +0 -14
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/InvalidReturnItem.md +0 -11
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/ListAllFulfillmentOrdersResponse.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/ListAllFulfillmentOrdersResult.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/ListReturnReasonCodesResponse.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/ListReturnReasonCodesResult.md +0 -9
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/LockerDetails.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/Money.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/Origin.md +0 -9
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/PackageTrackingDetails.md +0 -23
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/PaymentInformation.md +0 -11
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/ProductIdentifier.md +0 -9
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/ReasonCodeDetails.md +0 -11
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/ReturnAuthorization.md +0 -13
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/ReturnItem.md +0 -19
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/ReturnItemDisposition.md +0 -16
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/ScheduledDeliveryInfo.md +0 -10
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/ShippingSpeedCategory.md +0 -14
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/SubmitFulfillmentOrderStatusUpdateRequest.md +0 -9
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/SubmitFulfillmentOrderStatusUpdateResponse.md +0 -9
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/TrackingAddress.md +0 -11
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/TrackingEvent.md +0 -12
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/UnfulfillablePreviewItem.md +0 -12
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/UpdateFulfillmentOrderItem.md +0 -18
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/UpdateFulfillmentOrderRequest.md +0 -20
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/UpdateFulfillmentOrderResponse.md +0 -9
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/VariablePrecisionAddress.md +0 -16
- package/sdk/fulfillmentoutbound_v2020_07_01/docs/Weight.md +0 -25
- package/sdk/fulfillmentoutbound_v2020_07_01/src/ApiClient.js +0 -740
- package/sdk/fulfillmentoutbound_v2020_07_01/src/index.js +0 -652
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.api/FbaOutboundApi.js +0 -792
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/AdditionalLocationInfo.js +0 -214
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/Address.js +0 -147
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/Amount.js +0 -91
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/CODSettings.js +0 -96
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/CancelFulfillmentOrderResponse.js +0 -66
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/CreateFulfillmentOrderItem.js +0 -133
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/CreateFulfillmentOrderRequest.js +0 -210
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/CreateFulfillmentOrderResponse.js +0 -66
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/CreateFulfillmentReturnRequest.js +0 -68
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/CreateFulfillmentReturnResponse.js +0 -74
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/CreateFulfillmentReturnResult.js +0 -84
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/CreateReturnItem.js +0 -105
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/CurrentStatus.js +0 -158
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/DateRange.js +0 -77
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/DeliveryDocument.js +0 -75
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/DeliveryInformation.js +0 -74
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/DeliveryMessage.js +0 -73
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/DeliveryOffer.js +0 -81
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/DeliveryPolicy.js +0 -65
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/DeliveryPreferences.js +0 -73
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/DeliveryWindow.js +0 -77
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/Destination.js +0 -73
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/DropOffLocation.js +0 -131
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/Error.js +0 -85
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/EventCode.js +0 -263
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/Feature.js +0 -85
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/FeatureSettings.js +0 -93
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/FeatureSku.js +0 -97
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/Fee.js +0 -109
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/FulfillmentAction.js +0 -46
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/FulfillmentOrder.js +0 -206
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/FulfillmentOrderItem.js +0 -177
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/FulfillmentOrderStatus.js +0 -95
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/FulfillmentPolicy.js +0 -53
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/FulfillmentPreview.js +0 -157
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/FulfillmentPreviewItem.js +0 -123
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/FulfillmentPreviewShipment.js +0 -108
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/FulfillmentReturnItemStatus.js +0 -46
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/FulfillmentShipment.js +0 -163
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/FulfillmentShipmentItem.js +0 -111
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/FulfillmentShipmentPackage.js +0 -109
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/GetDeliveryOffersProduct.js +0 -75
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/GetDeliveryOffersRequest.js +0 -77
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/GetDeliveryOffersResponse.js +0 -74
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/GetDeliveryOffersResult.js +0 -66
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/GetDeliveryOffersTerms.js +0 -77
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/GetFeatureInventoryResponse.js +0 -74
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/GetFeatureInventoryResult.js +0 -94
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/GetFeatureSkuResponse.js +0 -74
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/GetFeatureSkuResult.js +0 -103
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/GetFeaturesResponse.js +0 -74
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/GetFeaturesResult.js +0 -68
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/GetFulfillmentOrderResponse.js +0 -74
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/GetFulfillmentOrderResult.js +0 -118
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/GetFulfillmentPreviewItem.js +0 -95
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/GetFulfillmentPreviewRequest.js +0 -120
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/GetFulfillmentPreviewResponse.js +0 -74
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/GetFulfillmentPreviewResult.js +0 -66
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/GetPackageTrackingDetailsResponse.js +0 -74
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/InvalidItemReason.js +0 -77
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/InvalidItemReasonCode.js +0 -60
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/InvalidReturnItem.js +0 -87
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/ListAllFulfillmentOrdersResponse.js +0 -74
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/ListAllFulfillmentOrdersResult.js +0 -74
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/ListReturnReasonCodesResponse.js +0 -74
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/ListReturnReasonCodesResult.js +0 -66
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/LockerDetails.js +0 -73
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/Money.js +0 -77
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/Origin.js +0 -67
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/PackageTrackingDetails.js +0 -180
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/PaymentInformation.js +0 -87
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/ProductIdentifier.js +0 -67
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/ReasonCodeDetails.js +0 -85
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/ReturnAuthorization.js +0 -107
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/ReturnItem.js +0 -157
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/ReturnItemDisposition.js +0 -67
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/ScheduledDeliveryInfo.js +0 -78
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/ShippingSpeedCategory.js +0 -60
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/SubmitFulfillmentOrderStatusUpdateRequest.js +0 -65
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/SubmitFulfillmentOrderStatusUpdateResponse.js +0 -66
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/TrackingAddress.js +0 -87
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/TrackingEvent.js +0 -97
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/UnfulfillablePreviewItem.js +0 -95
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/UpdateFulfillmentOrderItem.js +0 -139
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/UpdateFulfillmentOrderRequest.js +0 -155
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/UpdateFulfillmentOrderResponse.js +0 -66
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/VariablePrecisionAddress.js +0 -125
- package/sdk/fulfillmentoutbound_v2020_07_01/src/js_client.fulfillmentoutbound_v2020_07_01.model/Weight.js +0 -109
- package/sdk/invoices_v2024_06_19/README.md +0 -53
- package/sdk/invoices_v2024_06_19/docs/AttributeOption.md +0 -10
- package/sdk/invoices_v2024_06_19/docs/Error.md +0 -11
- package/sdk/invoices_v2024_06_19/docs/ErrorList.md +0 -9
- package/sdk/invoices_v2024_06_19/docs/Export.md +0 -14
- package/sdk/invoices_v2024_06_19/docs/ExportInvoicesRequest.md +0 -18
- package/sdk/invoices_v2024_06_19/docs/ExportInvoicesResponse.md +0 -9
- package/sdk/invoices_v2024_06_19/docs/ExportStatus.md +0 -14
- package/sdk/invoices_v2024_06_19/docs/FileFormat.md +0 -8
- package/sdk/invoices_v2024_06_19/docs/GetInvoiceResponse.md +0 -9
- package/sdk/invoices_v2024_06_19/docs/GetInvoicesAttributesResponse.md +0 -9
- package/sdk/invoices_v2024_06_19/docs/GetInvoicesDocumentResponse.md +0 -9
- package/sdk/invoices_v2024_06_19/docs/GetInvoicesExportResponse.md +0 -9
- package/sdk/invoices_v2024_06_19/docs/GetInvoicesExportsResponse.md +0 -10
- package/sdk/invoices_v2024_06_19/docs/GetInvoicesResponse.md +0 -10
- package/sdk/invoices_v2024_06_19/docs/Invoice.md +0 -18
- package/sdk/invoices_v2024_06_19/docs/InvoicesApi.md +0 -365
- package/sdk/invoices_v2024_06_19/docs/InvoicesAttributes.md +0 -12
- package/sdk/invoices_v2024_06_19/docs/InvoicesDocument.md +0 -10
- package/sdk/invoices_v2024_06_19/docs/TransactionIdentifier.md +0 -10
- package/sdk/invoices_v2024_06_19/src/ApiClient.js +0 -740
- package/sdk/invoices_v2024_06_19/src/index.js +0 -162
- package/sdk/invoices_v2024_06_19/src/js_client.invoices_v2024_06_19.api/InvoicesApi.js +0 -448
- package/sdk/invoices_v2024_06_19/src/js_client.invoices_v2024_06_19.model/AttributeOption.js +0 -73
- package/sdk/invoices_v2024_06_19/src/js_client.invoices_v2024_06_19.model/Error.js +0 -85
- package/sdk/invoices_v2024_06_19/src/js_client.invoices_v2024_06_19.model/ErrorList.js +0 -68
- package/sdk/invoices_v2024_06_19/src/js_client.invoices_v2024_06_19.model/Export.js +0 -105
- package/sdk/invoices_v2024_06_19/src/js_client.invoices_v2024_06_19.model/ExportInvoicesRequest.js +0 -139
- package/sdk/invoices_v2024_06_19/src/js_client.invoices_v2024_06_19.model/ExportInvoicesResponse.js +0 -65
- package/sdk/invoices_v2024_06_19/src/js_client.invoices_v2024_06_19.model/ExportStatus.js +0 -60
- package/sdk/invoices_v2024_06_19/src/js_client.invoices_v2024_06_19.model/FileFormat.js +0 -39
- package/sdk/invoices_v2024_06_19/src/js_client.invoices_v2024_06_19.model/GetInvoiceResponse.js +0 -65
- package/sdk/invoices_v2024_06_19/src/js_client.invoices_v2024_06_19.model/GetInvoicesAttributesResponse.js +0 -65
- package/sdk/invoices_v2024_06_19/src/js_client.invoices_v2024_06_19.model/GetInvoicesDocumentResponse.js +0 -65
- package/sdk/invoices_v2024_06_19/src/js_client.invoices_v2024_06_19.model/GetInvoicesExportResponse.js +0 -65
- package/sdk/invoices_v2024_06_19/src/js_client.invoices_v2024_06_19.model/GetInvoicesExportsResponse.js +0 -74
- package/sdk/invoices_v2024_06_19/src/js_client.invoices_v2024_06_19.model/GetInvoicesResponse.js +0 -74
- package/sdk/invoices_v2024_06_19/src/js_client.invoices_v2024_06_19.model/Invoice.js +0 -138
- package/sdk/invoices_v2024_06_19/src/js_client.invoices_v2024_06_19.model/InvoicesAttributes.js +0 -90
- package/sdk/invoices_v2024_06_19/src/js_client.invoices_v2024_06_19.model/InvoicesDocument.js +0 -73
- package/sdk/invoices_v2024_06_19/src/js_client.invoices_v2024_06_19.model/TransactionIdentifier.js +0 -73
- package/sdk/invoicing_v0/README.md +0 -47
- package/sdk/invoicing_v0/docs/Address.md +0 -20
- package/sdk/invoicing_v0/docs/AddressTypeEnum.md +0 -10
- package/sdk/invoicing_v0/docs/BuyerTaxInfo.md +0 -11
- package/sdk/invoicing_v0/docs/Error.md +0 -11
- package/sdk/invoicing_v0/docs/GetInvoiceStatusResponse.md +0 -10
- package/sdk/invoicing_v0/docs/GetShipmentDetailsResponse.md +0 -10
- package/sdk/invoicing_v0/docs/MarketplaceTaxInfo.md +0 -11
- package/sdk/invoicing_v0/docs/Money.md +0 -10
- package/sdk/invoicing_v0/docs/ShipmentDetail.md +0 -22
- package/sdk/invoicing_v0/docs/ShipmentInvoiceApi.md +0 -145
- package/sdk/invoicing_v0/docs/ShipmentInvoiceStatus.md +0 -14
- package/sdk/invoicing_v0/docs/ShipmentInvoiceStatusInfo.md +0 -10
- package/sdk/invoicing_v0/docs/ShipmentInvoiceStatusResponse.md +0 -9
- package/sdk/invoicing_v0/docs/ShipmentItem.md +0 -19
- package/sdk/invoicing_v0/docs/SubmitInvoiceRequest.md +0 -11
- package/sdk/invoicing_v0/docs/SubmitInvoiceResponse.md +0 -9
- package/sdk/invoicing_v0/docs/TaxClassification.md +0 -10
- package/sdk/invoicing_v0/src/ApiClient.js +0 -740
- package/sdk/invoicing_v0/src/index.js +0 -148
- package/sdk/invoicing_v0/src/js_client.invoicing_v0.api/ShipmentInvoiceApi.js +0 -191
- package/sdk/invoicing_v0/src/js_client.invoicing_v0.model/Address.js +0 -153
- package/sdk/invoicing_v0/src/js_client.invoicing_v0.model/AddressTypeEnum.js +0 -46
- package/sdk/invoicing_v0/src/js_client.invoicing_v0.model/BuyerTaxInfo.js +0 -82
- package/sdk/invoicing_v0/src/js_client.invoicing_v0.model/Error.js +0 -85
- package/sdk/invoicing_v0/src/js_client.invoicing_v0.model/GetInvoiceStatusResponse.js +0 -74
- package/sdk/invoicing_v0/src/js_client.invoicing_v0.model/GetShipmentDetailsResponse.js +0 -74
- package/sdk/invoicing_v0/src/js_client.invoicing_v0.model/MarketplaceTaxInfo.js +0 -82
- package/sdk/invoicing_v0/src/js_client.invoicing_v0.model/Money.js +0 -73
- package/sdk/invoicing_v0/src/js_client.invoicing_v0.model/ShipmentDetail.js +0 -170
- package/sdk/invoicing_v0/src/js_client.invoicing_v0.model/ShipmentInvoiceStatus.js +0 -60
- package/sdk/invoicing_v0/src/js_client.invoicing_v0.model/ShipmentInvoiceStatusInfo.js +0 -73
- package/sdk/invoicing_v0/src/js_client.invoicing_v0.model/ShipmentInvoiceStatusResponse.js +0 -65
- package/sdk/invoicing_v0/src/js_client.invoicing_v0.model/ShipmentItem.js +0 -141
- package/sdk/invoicing_v0/src/js_client.invoicing_v0.model/SubmitInvoiceRequest.js +0 -85
- package/sdk/invoicing_v0/src/js_client.invoicing_v0.model/SubmitInvoiceResponse.js +0 -66
- package/sdk/invoicing_v0/src/js_client.invoicing_v0.model/TaxClassification.js +0 -73
- package/sdk/listingsitems_v2021_08_01/README.md +0 -61
- package/sdk/listingsitems_v2021_08_01/docs/Audience.md +0 -10
- package/sdk/listingsitems_v2021_08_01/docs/Error.md +0 -11
- package/sdk/listingsitems_v2021_08_01/docs/ErrorList.md +0 -9
- package/sdk/listingsitems_v2021_08_01/docs/FulfillmentAvailability.md +0 -10
- package/sdk/listingsitems_v2021_08_01/docs/Issue.md +0 -27
- package/sdk/listingsitems_v2021_08_01/docs/IssueEnforcementAction.md +0 -9
- package/sdk/listingsitems_v2021_08_01/docs/IssueEnforcements.md +0 -10
- package/sdk/listingsitems_v2021_08_01/docs/IssueExemption.md +0 -23
- package/sdk/listingsitems_v2021_08_01/docs/Item.md +0 -17
- package/sdk/listingsitems_v2021_08_01/docs/ItemIdentifiersByMarketplace.md +0 -10
- package/sdk/listingsitems_v2021_08_01/docs/ItemImage.md +0 -11
- package/sdk/listingsitems_v2021_08_01/docs/ItemOfferByMarketplace.md +0 -24
- package/sdk/listingsitems_v2021_08_01/docs/ItemProcurement.md +0 -9
- package/sdk/listingsitems_v2021_08_01/docs/ItemProductTypeByMarketplace.md +0 -10
- package/sdk/listingsitems_v2021_08_01/docs/ItemRelationship.md +0 -23
- package/sdk/listingsitems_v2021_08_01/docs/ItemRelationshipsByMarketplace.md +0 -10
- package/sdk/listingsitems_v2021_08_01/docs/ItemSearchResults.md +0 -11
- package/sdk/listingsitems_v2021_08_01/docs/ItemSummaryByMarketplace.md +0 -62
- package/sdk/listingsitems_v2021_08_01/docs/ItemVariationTheme.md +0 -10
- package/sdk/listingsitems_v2021_08_01/docs/ListingsApi.md +0 -317
- package/sdk/listingsitems_v2021_08_01/docs/ListingsItemPatchRequest.md +0 -10
- package/sdk/listingsitems_v2021_08_01/docs/ListingsItemPutRequest.md +0 -24
- package/sdk/listingsitems_v2021_08_01/docs/ListingsItemSubmissionResponse.md +0 -26
- package/sdk/listingsitems_v2021_08_01/docs/Money.md +0 -10
- package/sdk/listingsitems_v2021_08_01/docs/Pagination.md +0 -10
- package/sdk/listingsitems_v2021_08_01/docs/PatchOperation.md +0 -24
- package/sdk/listingsitems_v2021_08_01/docs/Points.md +0 -9
- package/sdk/listingsitems_v2021_08_01/src/ApiClient.js +0 -740
- package/sdk/listingsitems_v2021_08_01/src/index.js +0 -218
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.api/ListingsApi.js +0 -461
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.model/Audience.js +0 -73
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.model/Error.js +0 -85
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.model/ErrorList.js +0 -67
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.model/FulfillmentAvailability.js +0 -75
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.model/Issue.js +0 -139
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.model/IssueEnforcementAction.js +0 -67
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.model/IssueEnforcements.js +0 -78
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.model/IssueExemption.js +0 -101
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.model/Item.js +0 -138
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.model/ItemIdentifiersByMarketplace.js +0 -73
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.model/ItemImage.js +0 -87
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.model/ItemOfferByMarketplace.js +0 -123
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.model/ItemProcurement.js +0 -67
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.model/ItemProductTypeByMarketplace.js +0 -77
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.model/ItemRelationship.js +0 -111
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.model/ItemRelationshipsByMarketplace.js +0 -78
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.model/ItemSearchResults.js +0 -86
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.model/ItemSummaryByMarketplace.js +0 -253
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.model/ItemVariationTheme.js +0 -77
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.model/ListingsItemPatchRequest.js +0 -78
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.model/ListingsItemPutRequest.js +0 -111
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.model/ListingsItemSubmissionResponse.js +0 -131
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.model/Money.js +0 -77
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.model/Pagination.js +0 -73
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.model/PatchOperation.js +0 -111
- package/sdk/listingsitems_v2021_08_01/src/js_client.listingsitems_v2021_08_01.model/Points.js +0 -66
- package/sdk/listingsrestrictions_v2021_08_01/README.md +0 -36
- package/sdk/listingsrestrictions_v2021_08_01/docs/Error.md +0 -11
- package/sdk/listingsrestrictions_v2021_08_01/docs/Link.md +0 -21
- package/sdk/listingsrestrictions_v2021_08_01/docs/ListingsApi.md +0 -63
- package/sdk/listingsrestrictions_v2021_08_01/docs/Reason.md +0 -24
- package/sdk/listingsrestrictions_v2021_08_01/docs/Restriction.md +0 -44
- package/sdk/listingsrestrictions_v2021_08_01/docs/RestrictionList.md +0 -9
- package/sdk/listingsrestrictions_v2021_08_01/src/ApiClient.js +0 -740
- package/sdk/listingsrestrictions_v2021_08_01/src/index.js +0 -71
- package/sdk/listingsrestrictions_v2021_08_01/src/js_client.listingsrestrictions_v2021_08_01.api/ListingsApi.js +0 -111
- package/sdk/listingsrestrictions_v2021_08_01/src/js_client.listingsrestrictions_v2021_08_01.model/Error.js +0 -85
- package/sdk/listingsrestrictions_v2021_08_01/src/js_client.listingsrestrictions_v2021_08_01.model/Link.js +0 -107
- package/sdk/listingsrestrictions_v2021_08_01/src/js_client.listingsrestrictions_v2021_08_01.model/Reason.js +0 -110
- package/sdk/listingsrestrictions_v2021_08_01/src/js_client.listingsrestrictions_v2021_08_01.model/Restriction.js +0 -170
- package/sdk/listingsrestrictions_v2021_08_01/src/js_client.listingsrestrictions_v2021_08_01.model/RestrictionList.js +0 -67
- package/sdk/merchantfulfillment_v0/README.md +0 -89
- package/sdk/merchantfulfillment_v0/docs/AdditionalInputs.md +0 -10
- package/sdk/merchantfulfillment_v0/docs/AdditionalSellerInput.md +0 -17
- package/sdk/merchantfulfillment_v0/docs/AdditionalSellerInputs.md +0 -10
- package/sdk/merchantfulfillment_v0/docs/Address.md +0 -19
- package/sdk/merchantfulfillment_v0/docs/AvailableCarrierWillPickUpOption.md +0 -10
- package/sdk/merchantfulfillment_v0/docs/AvailableDeliveryExperienceOption.md +0 -10
- package/sdk/merchantfulfillment_v0/docs/AvailableShippingServiceOptions.md +0 -10
- package/sdk/merchantfulfillment_v0/docs/Benefits.md +0 -10
- package/sdk/merchantfulfillment_v0/docs/CancelShipmentResponse.md +0 -10
- package/sdk/merchantfulfillment_v0/docs/CarrierWillPickUpOption.md +0 -12
- package/sdk/merchantfulfillment_v0/docs/Constraint.md +0 -10
- package/sdk/merchantfulfillment_v0/docs/CreateShipmentRequest.md +0 -14
- package/sdk/merchantfulfillment_v0/docs/CreateShipmentResponse.md +0 -10
- package/sdk/merchantfulfillment_v0/docs/CurrencyAmount.md +0 -10
- package/sdk/merchantfulfillment_v0/docs/DangerousGoodsDetails.md +0 -58
- package/sdk/merchantfulfillment_v0/docs/DeliveryExperienceOption.md +0 -16
- package/sdk/merchantfulfillment_v0/docs/DeliveryExperienceType.md +0 -14
- package/sdk/merchantfulfillment_v0/docs/Error.md +0 -11
- package/sdk/merchantfulfillment_v0/docs/ExcludedBenefit.md +0 -10
- package/sdk/merchantfulfillment_v0/docs/FileContents.md +0 -11
- package/sdk/merchantfulfillment_v0/docs/FileType.md +0 -12
- package/sdk/merchantfulfillment_v0/docs/GetAdditionalSellerInputsRequest.md +0 -11
- package/sdk/merchantfulfillment_v0/docs/GetAdditionalSellerInputsResponse.md +0 -10
- package/sdk/merchantfulfillment_v0/docs/GetAdditionalSellerInputsResult.md +0 -10
- package/sdk/merchantfulfillment_v0/docs/GetEligibleShipmentServicesRequest.md +0 -10
- package/sdk/merchantfulfillment_v0/docs/GetEligibleShipmentServicesResponse.md +0 -10
- package/sdk/merchantfulfillment_v0/docs/GetEligibleShipmentServicesResult.md +0 -12
- package/sdk/merchantfulfillment_v0/docs/GetShipmentResponse.md +0 -10
- package/sdk/merchantfulfillment_v0/docs/HazmatType.md +0 -10
- package/sdk/merchantfulfillment_v0/docs/InputTargetType.md +0 -10
- package/sdk/merchantfulfillment_v0/docs/Item.md +0 -17
- package/sdk/merchantfulfillment_v0/docs/ItemLevelFields.md +0 -10
- package/sdk/merchantfulfillment_v0/docs/Label.md +0 -13
- package/sdk/merchantfulfillment_v0/docs/LabelCustomization.md +0 -10
- package/sdk/merchantfulfillment_v0/docs/LabelDimensions.md +0 -11
- package/sdk/merchantfulfillment_v0/docs/LabelFormat.md +0 -16
- package/sdk/merchantfulfillment_v0/docs/LabelFormatOption.md +0 -10
- package/sdk/merchantfulfillment_v0/docs/LabelFormatOptionRequest.md +0 -9
- package/sdk/merchantfulfillment_v0/docs/Length.md +0 -10
- package/sdk/merchantfulfillment_v0/docs/LiquidVolume.md +0 -31
- package/sdk/merchantfulfillment_v0/docs/MerchantFulfillmentApi.md +0 -233
- package/sdk/merchantfulfillment_v0/docs/PackageDimensions.md +0 -13
- package/sdk/merchantfulfillment_v0/docs/PredefinedPackageDimensions.md +0 -106
- package/sdk/merchantfulfillment_v0/docs/RejectedShippingService.md +0 -13
- package/sdk/merchantfulfillment_v0/docs/SellerInputDefinition.md +0 -15
- package/sdk/merchantfulfillment_v0/docs/Shipment.md +0 -23
- package/sdk/merchantfulfillment_v0/docs/ShipmentRequestDetails.md +0 -18
- package/sdk/merchantfulfillment_v0/docs/ShipmentStatus.md +0 -14
- package/sdk/merchantfulfillment_v0/docs/ShippingOfferingFilter.md +0 -12
- package/sdk/merchantfulfillment_v0/docs/ShippingService.md +0 -22
- package/sdk/merchantfulfillment_v0/docs/ShippingServiceOptions.md +0 -13
- package/sdk/merchantfulfillment_v0/docs/StandardIdForLabel.md +0 -8
- package/sdk/merchantfulfillment_v0/docs/TemporarilyUnavailableCarrier.md +0 -9
- package/sdk/merchantfulfillment_v0/docs/TermsAndConditionsNotAcceptedCarrier.md +0 -9
- package/sdk/merchantfulfillment_v0/docs/UnitOfLength.md +0 -10
- package/sdk/merchantfulfillment_v0/docs/UnitOfWeight.md +0 -10
- package/sdk/merchantfulfillment_v0/docs/Weight.md +0 -10
- package/sdk/merchantfulfillment_v0/src/ApiClient.js +0 -740
- package/sdk/merchantfulfillment_v0/src/index.js +0 -428
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.api/MerchantFulfillmentApi.js +0 -281
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/AdditionalInputs.js +0 -73
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/AdditionalSellerInput.js +0 -129
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/AdditionalSellerInputs.js +0 -77
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/Address.js +0 -159
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/AvailableCarrierWillPickUpOption.js +0 -77
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/AvailableDeliveryExperienceOption.js +0 -77
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/AvailableShippingServiceOptions.js +0 -79
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/Benefits.js +0 -74
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/CancelShipmentResponse.js +0 -74
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/CarrierWillPickUpOption.js +0 -53
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/Constraint.js +0 -75
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/CreateShipmentRequest.js +0 -110
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/CreateShipmentResponse.js +0 -74
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/CurrencyAmount.js +0 -77
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/DangerousGoodsDetails.js +0 -201
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/DeliveryExperienceOption.js +0 -67
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/DeliveryExperienceType.js +0 -60
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/Error.js +0 -85
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/ExcludedBenefit.js +0 -73
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/FileContents.js +0 -87
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/FileType.js +0 -53
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/GetAdditionalSellerInputsRequest.js +0 -87
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/GetAdditionalSellerInputsResponse.js +0 -74
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/GetAdditionalSellerInputsResult.js +0 -75
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/GetEligibleShipmentServicesRequest.js +0 -75
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/GetEligibleShipmentServicesResponse.js +0 -74
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/GetEligibleShipmentServicesResult.js +0 -95
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/GetShipmentResponse.js +0 -74
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/HazmatType.js +0 -46
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/InputTargetType.js +0 -46
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/Item.js +0 -134
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/ItemLevelFields.js +0 -78
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/Label.js +0 -101
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/LabelCustomization.js +0 -73
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/LabelDimensions.js +0 -87
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/LabelFormat.js +0 -67
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/LabelFormatOption.js +0 -73
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/LabelFormatOptionRequest.js +0 -65
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/Length.js +0 -73
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/LiquidVolume.js +0 -127
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/PackageDimensions.js +0 -97
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/PredefinedPackageDimensions.js +0 -382
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/RejectedShippingService.js +0 -105
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/SellerInputDefinition.js +0 -124
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/Shipment.js +0 -201
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/ShipmentRequestDetails.js +0 -150
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/ShipmentStatus.js +0 -60
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/ShippingOfferingFilter.js +0 -89
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/ShippingService.js +0 -187
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/ShippingServiceOptions.js +0 -101
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/StandardIdForLabel.js +0 -39
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/TemporarilyUnavailableCarrier.js +0 -67
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/TermsAndConditionsNotAcceptedCarrier.js +0 -67
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/UnitOfLength.js +0 -46
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/UnitOfWeight.js +0 -46
- package/sdk/merchantfulfillment_v0/src/js_client.merchantfulfillment_v0.model/Weight.js +0 -77
- package/sdk/messaging_v1/README.md +0 -76
- package/sdk/messaging_v1/docs/Attachment.md +0 -10
- package/sdk/messaging_v1/docs/CreateAmazonMotorsRequest.md +0 -9
- package/sdk/messaging_v1/docs/CreateAmazonMotorsResponse.md +0 -9
- package/sdk/messaging_v1/docs/CreateConfirmCustomizationDetailsRequest.md +0 -10
- package/sdk/messaging_v1/docs/CreateConfirmCustomizationDetailsResponse.md +0 -9
- package/sdk/messaging_v1/docs/CreateConfirmDeliveryDetailsRequest.md +0 -9
- package/sdk/messaging_v1/docs/CreateConfirmDeliveryDetailsResponse.md +0 -9
- package/sdk/messaging_v1/docs/CreateConfirmOrderDetailsRequest.md +0 -9
- package/sdk/messaging_v1/docs/CreateConfirmOrderDetailsResponse.md +0 -9
- package/sdk/messaging_v1/docs/CreateConfirmServiceDetailsRequest.md +0 -9
- package/sdk/messaging_v1/docs/CreateConfirmServiceDetailsResponse.md +0 -9
- package/sdk/messaging_v1/docs/CreateDigitalAccessKeyRequest.md +0 -10
- package/sdk/messaging_v1/docs/CreateDigitalAccessKeyResponse.md +0 -9
- package/sdk/messaging_v1/docs/CreateLegalDisclosureRequest.md +0 -9
- package/sdk/messaging_v1/docs/CreateLegalDisclosureResponse.md +0 -9
- package/sdk/messaging_v1/docs/CreateNegativeFeedbackRemovalResponse.md +0 -9
- package/sdk/messaging_v1/docs/CreateUnexpectedProblemRequest.md +0 -9
- package/sdk/messaging_v1/docs/CreateUnexpectedProblemResponse.md +0 -9
- package/sdk/messaging_v1/docs/CreateWarrantyRequest.md +0 -11
- package/sdk/messaging_v1/docs/CreateWarrantyResponse.md +0 -9
- package/sdk/messaging_v1/docs/Error.md +0 -11
- package/sdk/messaging_v1/docs/GetAttributesResponse.md +0 -10
- package/sdk/messaging_v1/docs/GetAttributesResponseBuyer.md +0 -9
- package/sdk/messaging_v1/docs/GetMessagingActionResponse.md +0 -12
- package/sdk/messaging_v1/docs/GetMessagingActionResponseEmbedded.md +0 -9
- package/sdk/messaging_v1/docs/GetMessagingActionResponseLinks.md +0 -10
- package/sdk/messaging_v1/docs/GetMessagingActionsForOrderResponse.md +0 -11
- package/sdk/messaging_v1/docs/GetMessagingActionsForOrderResponseEmbedded.md +0 -9
- package/sdk/messaging_v1/docs/GetMessagingActionsForOrderResponseLinks.md +0 -10
- package/sdk/messaging_v1/docs/GetSchemaResponse.md +0 -11
- package/sdk/messaging_v1/docs/GetSchemaResponseLinks.md +0 -9
- package/sdk/messaging_v1/docs/InvoiceRequest.md +0 -9
- package/sdk/messaging_v1/docs/InvoiceResponse.md +0 -9
- package/sdk/messaging_v1/docs/LinkObject.md +0 -10
- package/sdk/messaging_v1/docs/MessagingAction.md +0 -9
- package/sdk/messaging_v1/docs/MessagingApi.md +0 -639
- package/sdk/messaging_v1/src/ApiClient.js +0 -740
- package/sdk/messaging_v1/src/index.js +0 -281
- package/sdk/messaging_v1/src/js_client.messaging_v1.api/MessagingApi.js +0 -857
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/Attachment.js +0 -77
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/CreateAmazonMotorsRequest.js +0 -66
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/CreateAmazonMotorsResponse.js +0 -66
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/CreateConfirmCustomizationDetailsRequest.js +0 -74
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/CreateConfirmCustomizationDetailsResponse.js +0 -66
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/CreateConfirmDeliveryDetailsRequest.js +0 -65
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/CreateConfirmDeliveryDetailsResponse.js +0 -66
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/CreateConfirmOrderDetailsRequest.js +0 -65
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/CreateConfirmOrderDetailsResponse.js +0 -66
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/CreateConfirmServiceDetailsRequest.js +0 -65
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/CreateConfirmServiceDetailsResponse.js +0 -66
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/CreateDigitalAccessKeyRequest.js +0 -74
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/CreateDigitalAccessKeyResponse.js +0 -66
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/CreateLegalDisclosureRequest.js +0 -66
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/CreateLegalDisclosureResponse.js +0 -66
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/CreateNegativeFeedbackRemovalResponse.js +0 -66
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/CreateUnexpectedProblemRequest.js +0 -65
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/CreateUnexpectedProblemResponse.js +0 -66
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/CreateWarrantyRequest.js +0 -82
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/CreateWarrantyResponse.js +0 -66
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/Error.js +0 -85
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/GetAttributesResponse.js +0 -74
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/GetAttributesResponseBuyer.js +0 -65
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/GetMessagingActionResponse.js +0 -90
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/GetMessagingActionResponseEmbedded.js +0 -65
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/GetMessagingActionResponseLinks.js +0 -76
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/GetMessagingActionsForOrderResponse.js +0 -82
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/GetMessagingActionsForOrderResponseEmbedded.js +0 -67
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/GetMessagingActionsForOrderResponseLinks.js +0 -77
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/GetSchemaResponse.js +0 -82
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/GetSchemaResponseLinks.js +0 -67
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/InvoiceRequest.js +0 -66
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/InvoiceResponse.js +0 -66
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/LinkObject.js +0 -75
- package/sdk/messaging_v1/src/js_client.messaging_v1.model/MessagingAction.js +0 -67
- package/sdk/notifications_v1/README.md +0 -64
- package/sdk/notifications_v1/docs/AggregationFilter.md +0 -9
- package/sdk/notifications_v1/docs/AggregationSettings.md +0 -9
- package/sdk/notifications_v1/docs/AggregationTimePeriod.md +0 -10
- package/sdk/notifications_v1/docs/CreateDestinationRequest.md +0 -10
- package/sdk/notifications_v1/docs/CreateDestinationResponse.md +0 -10
- package/sdk/notifications_v1/docs/CreateSubscriptionRequest.md +0 -11
- package/sdk/notifications_v1/docs/CreateSubscriptionResponse.md +0 -10
- package/sdk/notifications_v1/docs/DeleteDestinationResponse.md +0 -9
- package/sdk/notifications_v1/docs/DeleteSubscriptionByIdResponse.md +0 -9
- package/sdk/notifications_v1/docs/Destination.md +0 -11
- package/sdk/notifications_v1/docs/DestinationResource.md +0 -10
- package/sdk/notifications_v1/docs/DestinationResourceSpecification.md +0 -10
- package/sdk/notifications_v1/docs/Error.md +0 -11
- package/sdk/notifications_v1/docs/EventBridgeResource.md +0 -11
- package/sdk/notifications_v1/docs/EventBridgeResourceSpecification.md +0 -10
- package/sdk/notifications_v1/docs/EventFilter.md +0 -23
- package/sdk/notifications_v1/docs/GetDestinationResponse.md +0 -10
- package/sdk/notifications_v1/docs/GetDestinationsResponse.md +0 -10
- package/sdk/notifications_v1/docs/GetSubscriptionByIdResponse.md +0 -10
- package/sdk/notifications_v1/docs/GetSubscriptionResponse.md +0 -10
- package/sdk/notifications_v1/docs/MarketplaceFilter.md +0 -9
- package/sdk/notifications_v1/docs/NotificationsApi.md +0 -374
- package/sdk/notifications_v1/docs/OrderChangeTypeEnum.md +0 -10
- package/sdk/notifications_v1/docs/OrderChangeTypeFilter.md +0 -9
- package/sdk/notifications_v1/docs/ProcessingDirective.md +0 -9
- package/sdk/notifications_v1/docs/SqsResource.md +0 -9
- package/sdk/notifications_v1/docs/Subscription.md +0 -12
- package/sdk/notifications_v1/src/ApiClient.js +0 -740
- package/sdk/notifications_v1/src/index.js +0 -218
- package/sdk/notifications_v1/src/js_client.notifications_v1.api/NotificationsApi.js +0 -450
- package/sdk/notifications_v1/src/js_client.notifications_v1.model/AggregationFilter.js +0 -65
- package/sdk/notifications_v1/src/js_client.notifications_v1.model/AggregationSettings.js +0 -67
- package/sdk/notifications_v1/src/js_client.notifications_v1.model/AggregationTimePeriod.js +0 -46
- package/sdk/notifications_v1/src/js_client.notifications_v1.model/CreateDestinationRequest.js +0 -77
- package/sdk/notifications_v1/src/js_client.notifications_v1.model/CreateDestinationResponse.js +0 -74
- package/sdk/notifications_v1/src/js_client.notifications_v1.model/CreateSubscriptionRequest.js +0 -85
- package/sdk/notifications_v1/src/js_client.notifications_v1.model/CreateSubscriptionResponse.js +0 -74
- package/sdk/notifications_v1/src/js_client.notifications_v1.model/DeleteDestinationResponse.js +0 -66
- package/sdk/notifications_v1/src/js_client.notifications_v1.model/DeleteSubscriptionByIdResponse.js +0 -66
- package/sdk/notifications_v1/src/js_client.notifications_v1.model/Destination.js +0 -87
- package/sdk/notifications_v1/src/js_client.notifications_v1.model/DestinationResource.js +0 -73
- package/sdk/notifications_v1/src/js_client.notifications_v1.model/DestinationResourceSpecification.js +0 -73
- package/sdk/notifications_v1/src/js_client.notifications_v1.model/Error.js +0 -85
- package/sdk/notifications_v1/src/js_client.notifications_v1.model/EventBridgeResource.js +0 -87
- package/sdk/notifications_v1/src/js_client.notifications_v1.model/EventBridgeResourceSpecification.js +0 -77
- package/sdk/notifications_v1/src/js_client.notifications_v1.model/EventFilter.js +0 -144
- package/sdk/notifications_v1/src/js_client.notifications_v1.model/GetDestinationResponse.js +0 -74
- package/sdk/notifications_v1/src/js_client.notifications_v1.model/GetDestinationsResponse.js +0 -75
- package/sdk/notifications_v1/src/js_client.notifications_v1.model/GetSubscriptionByIdResponse.js +0 -74
- package/sdk/notifications_v1/src/js_client.notifications_v1.model/GetSubscriptionResponse.js +0 -74
- package/sdk/notifications_v1/src/js_client.notifications_v1.model/MarketplaceFilter.js +0 -65
- package/sdk/notifications_v1/src/js_client.notifications_v1.model/OrderChangeTypeEnum.js +0 -46
- package/sdk/notifications_v1/src/js_client.notifications_v1.model/OrderChangeTypeFilter.js +0 -66
- package/sdk/notifications_v1/src/js_client.notifications_v1.model/ProcessingDirective.js +0 -65
- package/sdk/notifications_v1/src/js_client.notifications_v1.model/SqsResource.js +0 -67
- package/sdk/notifications_v1/src/js_client.notifications_v1.model/Subscription.js +0 -95
- package/sdk/orders_v0/README.md +0 -111
- package/sdk/orders_v0/docs/Address.md +0 -34
- package/sdk/orders_v0/docs/AddressExtendedFields.md +0 -12
- package/sdk/orders_v0/docs/AmazonPrograms.md +0 -9
- package/sdk/orders_v0/docs/AssociatedItem.md +0 -11
- package/sdk/orders_v0/docs/AssociationType.md +0 -8
- package/sdk/orders_v0/docs/AutomatedShippingSettings.md +0 -11
- package/sdk/orders_v0/docs/BusinessHours.md +0 -31
- package/sdk/orders_v0/docs/BuyerCustomizedInfoDetail.md +0 -9
- package/sdk/orders_v0/docs/BuyerInfo.md +0 -13
- package/sdk/orders_v0/docs/BuyerRequestedCancel.md +0 -10
- package/sdk/orders_v0/docs/BuyerTaxInfo.md +0 -11
- package/sdk/orders_v0/docs/BuyerTaxInformation.md +0 -12
- package/sdk/orders_v0/docs/ConfirmShipmentErrorResponse.md +0 -9
- package/sdk/orders_v0/docs/ConfirmShipmentOrderItem.md +0 -11
- package/sdk/orders_v0/docs/ConfirmShipmentRequest.md +0 -20
- package/sdk/orders_v0/docs/ConstraintType.md +0 -8
- package/sdk/orders_v0/docs/DeliveryPreferences.md +0 -12
- package/sdk/orders_v0/docs/EasyShipShipmentStatus.md +0 -38
- package/sdk/orders_v0/docs/ElectronicInvoiceStatus.md +0 -16
- package/sdk/orders_v0/docs/Error.md +0 -11
- package/sdk/orders_v0/docs/ExceptionDates.md +0 -11
- package/sdk/orders_v0/docs/ExportInfo.md +0 -10
- package/sdk/orders_v0/docs/FulfillmentInstruction.md +0 -9
- package/sdk/orders_v0/docs/GetOrderAddressResponse.md +0 -10
- package/sdk/orders_v0/docs/GetOrderBuyerInfoResponse.md +0 -10
- package/sdk/orders_v0/docs/GetOrderItemsBuyerInfoResponse.md +0 -10
- package/sdk/orders_v0/docs/GetOrderItemsResponse.md +0 -10
- package/sdk/orders_v0/docs/GetOrderRegulatedInfoResponse.md +0 -10
- package/sdk/orders_v0/docs/GetOrderResponse.md +0 -10
- package/sdk/orders_v0/docs/GetOrdersResponse.md +0 -10
- package/sdk/orders_v0/docs/ItemBuyerInfo.md +0 -13
- package/sdk/orders_v0/docs/MarketplaceTaxInfo.md +0 -9
- package/sdk/orders_v0/docs/Measurement.md +0 -65
- package/sdk/orders_v0/docs/Money.md +0 -10
- package/sdk/orders_v0/docs/OpenInterval.md +0 -10
- package/sdk/orders_v0/docs/OpenTimeInterval.md +0 -10
- package/sdk/orders_v0/docs/Order.md +0 -130
- package/sdk/orders_v0/docs/OrderAddress.md +0 -12
- package/sdk/orders_v0/docs/OrderBuyerInfo.md +0 -14
- package/sdk/orders_v0/docs/OrderItem.md +0 -60
- package/sdk/orders_v0/docs/OrderItemBuyerInfo.md +0 -14
- package/sdk/orders_v0/docs/OrderItemsBuyerInfoList.md +0 -11
- package/sdk/orders_v0/docs/OrderItemsInner.md +0 -10
- package/sdk/orders_v0/docs/OrderItemsList.md +0 -11
- package/sdk/orders_v0/docs/OrderRegulatedInfo.md +0 -12
- package/sdk/orders_v0/docs/OrdersList.md +0 -12
- package/sdk/orders_v0/docs/OrdersV0Api.md +0 -469
- package/sdk/orders_v0/docs/OtherDeliveryAttributes.md +0 -12
- package/sdk/orders_v0/docs/PackageDetail.md +0 -16
- package/sdk/orders_v0/docs/PaymentExecutionDetailItem.md +0 -10
- package/sdk/orders_v0/docs/PointsGrantedDetail.md +0 -10
- package/sdk/orders_v0/docs/PreferredDeliveryTime.md +0 -10
- package/sdk/orders_v0/docs/PrescriptionDetail.md +0 -15
- package/sdk/orders_v0/docs/ProductInfoDetail.md +0 -9
- package/sdk/orders_v0/docs/RegulatedInformation.md +0 -9
- package/sdk/orders_v0/docs/RegulatedInformationField.md +0 -23
- package/sdk/orders_v0/docs/RegulatedOrderVerificationStatus.md +0 -15
- package/sdk/orders_v0/docs/RejectionReason.md +0 -10
- package/sdk/orders_v0/docs/ShipmentApi.md +0 -55
- package/sdk/orders_v0/docs/ShipmentStatus.md +0 -12
- package/sdk/orders_v0/docs/ShippingConstraints.md +0 -12
- package/sdk/orders_v0/docs/SubstitutionOption.md +0 -13
- package/sdk/orders_v0/docs/SubstitutionPreferences.md +0 -23
- package/sdk/orders_v0/docs/TaxClassification.md +0 -10
- package/sdk/orders_v0/docs/TaxCollection.md +0 -28
- package/sdk/orders_v0/docs/UpdateShipmentStatusErrorResponse.md +0 -9
- package/sdk/orders_v0/docs/UpdateShipmentStatusRequest.md +0 -11
- package/sdk/orders_v0/docs/UpdateVerificationStatusErrorResponse.md +0 -9
- package/sdk/orders_v0/docs/UpdateVerificationStatusRequest.md +0 -9
- package/sdk/orders_v0/docs/UpdateVerificationStatusRequestBody.md +0 -12
- package/sdk/orders_v0/docs/ValidVerificationDetail.md +0 -10
- package/sdk/orders_v0/docs/VerificationDetails.md +0 -9
- package/sdk/orders_v0/docs/VerificationStatus.md +0 -16
- package/sdk/orders_v0/src/ApiClient.js +0 -740
- package/sdk/orders_v0/src/index.js +0 -540
- package/sdk/orders_v0/src/js_client.orders_v0.api/OrdersV0Api.js +0 -571
- package/sdk/orders_v0/src/js_client.orders_v0.api/ShipmentApi.js +0 -93
- package/sdk/orders_v0/src/js_client.orders_v0.model/Address.js +0 -199
- package/sdk/orders_v0/src/js_client.orders_v0.model/AddressExtendedFields.js +0 -89
- package/sdk/orders_v0/src/js_client.orders_v0.model/AmazonPrograms.js +0 -67
- package/sdk/orders_v0/src/js_client.orders_v0.model/AssociatedItem.js +0 -81
- package/sdk/orders_v0/src/js_client.orders_v0.model/AssociationType.js +0 -39
- package/sdk/orders_v0/src/js_client.orders_v0.model/AutomatedShippingSettings.js +0 -81
- package/sdk/orders_v0/src/js_client.orders_v0.model/BusinessHours.js +0 -124
- package/sdk/orders_v0/src/js_client.orders_v0.model/BuyerCustomizedInfoDetail.js +0 -65
- package/sdk/orders_v0/src/js_client.orders_v0.model/BuyerInfo.js +0 -97
- package/sdk/orders_v0/src/js_client.orders_v0.model/BuyerRequestedCancel.js +0 -73
- package/sdk/orders_v0/src/js_client.orders_v0.model/BuyerTaxInfo.js +0 -82
- package/sdk/orders_v0/src/js_client.orders_v0.model/BuyerTaxInformation.js +0 -89
- package/sdk/orders_v0/src/js_client.orders_v0.model/ConfirmShipmentErrorResponse.js +0 -66
- package/sdk/orders_v0/src/js_client.orders_v0.model/ConfirmShipmentOrderItem.js +0 -85
- package/sdk/orders_v0/src/js_client.orders_v0.model/ConfirmShipmentRequest.js +0 -99
- package/sdk/orders_v0/src/js_client.orders_v0.model/ConstraintType.js +0 -39
- package/sdk/orders_v0/src/js_client.orders_v0.model/DeliveryPreferences.js +0 -90
- package/sdk/orders_v0/src/js_client.orders_v0.model/EasyShipShipmentStatus.js +0 -144
- package/sdk/orders_v0/src/js_client.orders_v0.model/ElectronicInvoiceStatus.js +0 -67
- package/sdk/orders_v0/src/js_client.orders_v0.model/Error.js +0 -85
- package/sdk/orders_v0/src/js_client.orders_v0.model/ExceptionDates.js +0 -82
- package/sdk/orders_v0/src/js_client.orders_v0.model/ExportInfo.js +0 -73
- package/sdk/orders_v0/src/js_client.orders_v0.model/FulfillmentInstruction.js +0 -65
- package/sdk/orders_v0/src/js_client.orders_v0.model/GetOrderAddressResponse.js +0 -74
- package/sdk/orders_v0/src/js_client.orders_v0.model/GetOrderBuyerInfoResponse.js +0 -74
- package/sdk/orders_v0/src/js_client.orders_v0.model/GetOrderItemsBuyerInfoResponse.js +0 -74
- package/sdk/orders_v0/src/js_client.orders_v0.model/GetOrderItemsResponse.js +0 -74
- package/sdk/orders_v0/src/js_client.orders_v0.model/GetOrderRegulatedInfoResponse.js +0 -74
- package/sdk/orders_v0/src/js_client.orders_v0.model/GetOrderResponse.js +0 -74
- package/sdk/orders_v0/src/js_client.orders_v0.model/GetOrdersResponse.js +0 -74
- package/sdk/orders_v0/src/js_client.orders_v0.model/ItemBuyerInfo.js +0 -96
- package/sdk/orders_v0/src/js_client.orders_v0.model/MarketplaceTaxInfo.js +0 -66
- package/sdk/orders_v0/src/js_client.orders_v0.model/Measurement.js +0 -229
- package/sdk/orders_v0/src/js_client.orders_v0.model/Money.js +0 -73
- package/sdk/orders_v0/src/js_client.orders_v0.model/OpenInterval.js +0 -72
- package/sdk/orders_v0/src/js_client.orders_v0.model/OpenTimeInterval.js +0 -73
- package/sdk/orders_v0/src/js_client.orders_v0.model/Order.js +0 -601
- package/sdk/orders_v0/src/js_client.orders_v0.model/OrderAddress.js +0 -91
- package/sdk/orders_v0/src/js_client.orders_v0.model/OrderBuyerInfo.js +0 -107
- package/sdk/orders_v0/src/js_client.orders_v0.model/OrderItem.js +0 -403
- package/sdk/orders_v0/src/js_client.orders_v0.model/OrderItemBuyerInfo.js +0 -106
- package/sdk/orders_v0/src/js_client.orders_v0.model/OrderItemsBuyerInfoList.js +0 -86
- package/sdk/orders_v0/src/js_client.orders_v0.model/OrderItemsInner.js +0 -72
- package/sdk/orders_v0/src/js_client.orders_v0.model/OrderItemsList.js +0 -86
- package/sdk/orders_v0/src/js_client.orders_v0.model/OrderRegulatedInfo.js +0 -97
- package/sdk/orders_v0/src/js_client.orders_v0.model/OrdersList.js +0 -92
- package/sdk/orders_v0/src/js_client.orders_v0.model/OtherDeliveryAttributes.js +0 -53
- package/sdk/orders_v0/src/js_client.orders_v0.model/PackageDetail.js +0 -132
- package/sdk/orders_v0/src/js_client.orders_v0.model/PaymentExecutionDetailItem.js +0 -77
- package/sdk/orders_v0/src/js_client.orders_v0.model/PointsGrantedDetail.js +0 -73
- package/sdk/orders_v0/src/js_client.orders_v0.model/PreferredDeliveryTime.js +0 -75
- package/sdk/orders_v0/src/js_client.orders_v0.model/PrescriptionDetail.js +0 -127
- package/sdk/orders_v0/src/js_client.orders_v0.model/ProductInfoDetail.js +0 -65
- package/sdk/orders_v0/src/js_client.orders_v0.model/RegulatedInformation.js +0 -68
- package/sdk/orders_v0/src/js_client.orders_v0.model/RegulatedInformationField.js +0 -117
- package/sdk/orders_v0/src/js_client.orders_v0.model/RegulatedOrderVerificationStatus.js +0 -120
- package/sdk/orders_v0/src/js_client.orders_v0.model/RejectionReason.js +0 -77
- package/sdk/orders_v0/src/js_client.orders_v0.model/ShipmentStatus.js +0 -53
- package/sdk/orders_v0/src/js_client.orders_v0.model/ShippingConstraints.js +0 -86
- package/sdk/orders_v0/src/js_client.orders_v0.model/SubstitutionOption.js +0 -97
- package/sdk/orders_v0/src/js_client.orders_v0.model/SubstitutionPreferences.js +0 -102
- package/sdk/orders_v0/src/js_client.orders_v0.model/TaxClassification.js +0 -73
- package/sdk/orders_v0/src/js_client.orders_v0.model/TaxCollection.js +0 -101
- package/sdk/orders_v0/src/js_client.orders_v0.model/UpdateShipmentStatusErrorResponse.js +0 -66
- package/sdk/orders_v0/src/js_client.orders_v0.model/UpdateShipmentStatusRequest.js +0 -86
- package/sdk/orders_v0/src/js_client.orders_v0.model/UpdateVerificationStatusErrorResponse.js +0 -66
- package/sdk/orders_v0/src/js_client.orders_v0.model/UpdateVerificationStatusRequest.js +0 -67
- package/sdk/orders_v0/src/js_client.orders_v0.model/UpdateVerificationStatusRequestBody.js +0 -91
- package/sdk/orders_v0/src/js_client.orders_v0.model/ValidVerificationDetail.js +0 -78
- package/sdk/orders_v0/src/js_client.orders_v0.model/VerificationDetails.js +0 -65
- package/sdk/orders_v0/src/js_client.orders_v0.model/VerificationStatus.js +0 -67
- package/sdk/pricing_v0/README.md +0 -85
- package/sdk/pricing_v0/docs/ASINIdentifier.md +0 -10
- package/sdk/pricing_v0/docs/BatchOffersRequestParams.md +0 -11
- package/sdk/pricing_v0/docs/BatchOffersResponse.md +0 -11
- package/sdk/pricing_v0/docs/BatchRequest.md +0 -11
- package/sdk/pricing_v0/docs/BuyBoxPriceType.md +0 -17
- package/sdk/pricing_v0/docs/CompetitivePriceType.md +0 -17
- package/sdk/pricing_v0/docs/CompetitivePricingType.md +0 -11
- package/sdk/pricing_v0/docs/ConditionType.md +0 -16
- package/sdk/pricing_v0/docs/CustomerType.md +0 -10
- package/sdk/pricing_v0/docs/DetailedShippingTimeType.md +0 -25
- package/sdk/pricing_v0/docs/Error.md +0 -11
- package/sdk/pricing_v0/docs/Errors.md +0 -9
- package/sdk/pricing_v0/docs/FulfillmentChannelType.md +0 -10
- package/sdk/pricing_v0/docs/GetItemOffersBatchRequest.md +0 -9
- package/sdk/pricing_v0/docs/GetItemOffersBatchResponse.md +0 -9
- package/sdk/pricing_v0/docs/GetListingOffersBatchRequest.md +0 -9
- package/sdk/pricing_v0/docs/GetListingOffersBatchResponse.md +0 -9
- package/sdk/pricing_v0/docs/GetOffersHttpStatusLine.md +0 -10
- package/sdk/pricing_v0/docs/GetOffersResponse.md +0 -10
- package/sdk/pricing_v0/docs/GetOffersResult.md +0 -16
- package/sdk/pricing_v0/docs/GetPricingResponse.md +0 -10
- package/sdk/pricing_v0/docs/HttpMethod.md +0 -16
- package/sdk/pricing_v0/docs/HttpResponseHeaders.md +0 -10
- package/sdk/pricing_v0/docs/IdentifierType.md +0 -10
- package/sdk/pricing_v0/docs/ItemCondition.md +0 -16
- package/sdk/pricing_v0/docs/ItemIdentifier.md +0 -12
- package/sdk/pricing_v0/docs/ItemOffersRequest.md +0 -14
- package/sdk/pricing_v0/docs/ItemOffersRequestParams.md +0 -12
- package/sdk/pricing_v0/docs/ItemOffersResponse.md +0 -12
- package/sdk/pricing_v0/docs/ListingOffersRequest.md +0 -14
- package/sdk/pricing_v0/docs/ListingOffersRequestParams.md +0 -12
- package/sdk/pricing_v0/docs/ListingOffersResponse.md +0 -12
- package/sdk/pricing_v0/docs/LowestPriceType.md +0 -17
- package/sdk/pricing_v0/docs/MoneyType.md +0 -10
- package/sdk/pricing_v0/docs/OfferCountType.md +0 -11
- package/sdk/pricing_v0/docs/OfferCustomerType.md +0 -10
- package/sdk/pricing_v0/docs/OfferDetail.md +0 -24
- package/sdk/pricing_v0/docs/OfferListingCountType.md +0 -10
- package/sdk/pricing_v0/docs/OfferType.md +0 -17
- package/sdk/pricing_v0/docs/Points.md +0 -10
- package/sdk/pricing_v0/docs/Price.md +0 -12
- package/sdk/pricing_v0/docs/PriceType.md +0 -12
- package/sdk/pricing_v0/docs/PrimeInformationType.md +0 -10
- package/sdk/pricing_v0/docs/Product.md +0 -14
- package/sdk/pricing_v0/docs/ProductPricingApi.md +0 -316
- package/sdk/pricing_v0/docs/QuantityDiscountPriceType.md +0 -11
- package/sdk/pricing_v0/docs/QuantityDiscountType.md +0 -8
- package/sdk/pricing_v0/docs/SalesRankType.md +0 -10
- package/sdk/pricing_v0/docs/SellerFeedbackType.md +0 -10
- package/sdk/pricing_v0/docs/SellerSKUIdentifier.md +0 -11
- package/sdk/pricing_v0/docs/ShipsFromType.md +0 -10
- package/sdk/pricing_v0/docs/Summary.md +0 -18
- package/sdk/pricing_v0/src/ApiClient.js +0 -740
- package/sdk/pricing_v0/src/index.js +0 -393
- package/sdk/pricing_v0/src/js_client.pricing_v0.api/ProductPricingApi.js +0 -416
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/ASINIdentifier.js +0 -77
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/BatchOffersRequestParams.js +0 -85
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/BatchOffersResponse.js +0 -83
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/BatchRequest.js +0 -85
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/BuyBoxPriceType.js +0 -135
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/CompetitivePriceType.js +0 -133
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/CompetitivePricingType.js +0 -87
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/ConditionType.js +0 -67
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/CustomerType.js +0 -46
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/DetailedShippingTimeType.js +0 -115
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/Error.js +0 -85
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/Errors.js +0 -68
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/FulfillmentChannelType.js +0 -46
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/GetItemOffersBatchRequest.js +0 -66
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/GetItemOffersBatchResponse.js +0 -66
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/GetListingOffersBatchRequest.js +0 -66
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/GetListingOffersBatchResponse.js +0 -66
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/GetOffersHttpStatusLine.js +0 -73
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/GetOffersResponse.js +0 -74
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/GetOffersResult.js +0 -134
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/GetPricingResponse.js +0 -75
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/HttpMethod.js +0 -67
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/HttpResponseHeaders.js +0 -75
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/IdentifierType.js +0 -75
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/ItemCondition.js +0 -67
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/ItemIdentifier.js +0 -93
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/ItemOffersRequest.js +0 -156
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/ItemOffersRequestParams.js +0 -114
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/ItemOffersResponse.js +0 -113
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/ListingOffersRequest.js +0 -156
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/ListingOffersRequestParams.js +0 -116
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/ListingOffersResponse.js +0 -111
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/LowestPriceType.js +0 -133
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/MoneyType.js +0 -73
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/OfferCountType.js +0 -81
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/OfferCustomerType.js +0 -46
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/OfferDetail.js +0 -195
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/OfferListingCountType.js +0 -77
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/OfferType.js +0 -141
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/Points.js +0 -73
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/Price.js +0 -91
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/PriceType.js +0 -89
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/PrimeInformationType.js +0 -77
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/Product.js +0 -109
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/QuantityDiscountPriceType.js +0 -87
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/QuantityDiscountType.js +0 -39
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/SalesRankType.js +0 -77
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/SellerFeedbackType.js +0 -75
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/SellerSKUIdentifier.js +0 -87
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/ShipsFromType.js +0 -73
- package/sdk/pricing_v0/src/js_client.pricing_v0.model/Summary.js +0 -141
- package/sdk/pricing_v2022_05_01/README.md +0 -72
- package/sdk/pricing_v2022_05_01/docs/BatchRequest.md +0 -12
- package/sdk/pricing_v2022_05_01/docs/BatchResponse.md +0 -10
- package/sdk/pricing_v2022_05_01/docs/CompetitiveSummaryBatchRequest.md +0 -9
- package/sdk/pricing_v2022_05_01/docs/CompetitiveSummaryBatchResponse.md +0 -9
- package/sdk/pricing_v2022_05_01/docs/CompetitiveSummaryIncludedData.md +0 -12
- package/sdk/pricing_v2022_05_01/docs/CompetitiveSummaryRequest.md +0 -14
- package/sdk/pricing_v2022_05_01/docs/CompetitiveSummaryResponse.md +0 -10
- package/sdk/pricing_v2022_05_01/docs/CompetitiveSummaryResponseBody.md +0 -14
- package/sdk/pricing_v2022_05_01/docs/Condition.md +0 -16
- package/sdk/pricing_v2022_05_01/docs/Error.md +0 -11
- package/sdk/pricing_v2022_05_01/docs/Errors.md +0 -9
- package/sdk/pricing_v2022_05_01/docs/FeaturedBuyingOption.md +0 -19
- package/sdk/pricing_v2022_05_01/docs/FeaturedOffer.md +0 -11
- package/sdk/pricing_v2022_05_01/docs/FeaturedOfferExpectedPrice.md +0 -10
- package/sdk/pricing_v2022_05_01/docs/FeaturedOfferExpectedPriceRequest.md +0 -15
- package/sdk/pricing_v2022_05_01/docs/FeaturedOfferExpectedPriceRequestParams.md +0 -11
- package/sdk/pricing_v2022_05_01/docs/FeaturedOfferExpectedPriceResponse.md +0 -12
- package/sdk/pricing_v2022_05_01/docs/FeaturedOfferExpectedPriceResponseBody.md +0 -11
- package/sdk/pricing_v2022_05_01/docs/FeaturedOfferExpectedPriceResult.md +0 -12
- package/sdk/pricing_v2022_05_01/docs/FeaturedOfferSegment.md +0 -21
- package/sdk/pricing_v2022_05_01/docs/FulfillmentType.md +0 -10
- package/sdk/pricing_v2022_05_01/docs/GetFeaturedOfferExpectedPriceBatchRequest.md +0 -9
- package/sdk/pricing_v2022_05_01/docs/GetFeaturedOfferExpectedPriceBatchResponse.md +0 -9
- package/sdk/pricing_v2022_05_01/docs/HttpMethod.md +0 -16
- package/sdk/pricing_v2022_05_01/docs/HttpStatusLine.md +0 -10
- package/sdk/pricing_v2022_05_01/docs/LowestPricedOffer.md +0 -10
- package/sdk/pricing_v2022_05_01/docs/LowestPricedOffersInput.md +0 -19
- package/sdk/pricing_v2022_05_01/docs/MoneyType.md +0 -10
- package/sdk/pricing_v2022_05_01/docs/Offer.md +0 -49
- package/sdk/pricing_v2022_05_01/docs/OfferIdentifier.md +0 -13
- package/sdk/pricing_v2022_05_01/docs/Points.md +0 -10
- package/sdk/pricing_v2022_05_01/docs/PostalCode.md +0 -10
- package/sdk/pricing_v2022_05_01/docs/Price.md +0 -11
- package/sdk/pricing_v2022_05_01/docs/PrimeDetails.md +0 -22
- package/sdk/pricing_v2022_05_01/docs/ProductPricingApi.md +0 -98
- package/sdk/pricing_v2022_05_01/docs/ReferencePrice.md +0 -10
- package/sdk/pricing_v2022_05_01/docs/SampleLocation.md +0 -9
- package/sdk/pricing_v2022_05_01/docs/Segment.md +0 -9
- package/sdk/pricing_v2022_05_01/docs/SegmentDetails.md +0 -10
- package/sdk/pricing_v2022_05_01/docs/SegmentedFeaturedOffer.md +0 -50
- package/sdk/pricing_v2022_05_01/docs/ShippingOption.md +0 -19
- package/sdk/pricing_v2022_05_01/src/ApiClient.js +0 -740
- package/sdk/pricing_v2022_05_01/src/index.js +0 -316
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.api/ProductPricingApi.js +0 -135
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/BatchRequest.js +0 -93
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/BatchResponse.js +0 -77
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/CompetitiveSummaryBatchRequest.js +0 -68
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/CompetitiveSummaryBatchResponse.js +0 -68
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/CompetitiveSummaryIncludedData.js +0 -53
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/CompetitiveSummaryRequest.js +0 -117
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/CompetitiveSummaryResponse.js +0 -77
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/CompetitiveSummaryResponseBody.js +0 -113
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/Condition.js +0 -67
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/Error.js +0 -85
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/Errors.js +0 -68
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/FeaturedBuyingOption.js +0 -92
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/FeaturedOffer.js +0 -83
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/FeaturedOfferExpectedPrice.js +0 -75
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/FeaturedOfferExpectedPriceRequest.js +0 -171
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/FeaturedOfferExpectedPriceRequestParams.js +0 -85
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/FeaturedOfferExpectedPriceResponse.js +0 -111
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/FeaturedOfferExpectedPriceResponseBody.js +0 -83
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/FeaturedOfferExpectedPriceResult.js +0 -90
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/FeaturedOfferSegment.js +0 -97
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/FulfillmentType.js +0 -46
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/GetFeaturedOfferExpectedPriceBatchRequest.js +0 -66
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/GetFeaturedOfferExpectedPriceBatchResponse.js +0 -66
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/HttpMethod.js +0 -67
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/HttpStatusLine.js +0 -73
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/LowestPricedOffer.js +0 -78
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/LowestPricedOffersInput.js +0 -91
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/MoneyType.js +0 -73
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/Offer.js +0 -216
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/OfferIdentifier.js +0 -101
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/Points.js +0 -73
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/PostalCode.js +0 -73
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/Price.js +0 -82
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/PrimeDetails.js +0 -93
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/ReferencePrice.js +0 -77
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/SampleLocation.js +0 -65
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/Segment.js +0 -65
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/SegmentDetails.js +0 -73
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/SegmentedFeaturedOffer.js +0 -275
- package/sdk/pricing_v2022_05_01/src/js_client.pricing_v2022_05_01.model/ShippingOption.js +0 -91
- package/sdk/productfees_v0/README.md +0 -49
- package/sdk/productfees_v0/docs/Error.md +0 -11
- package/sdk/productfees_v0/docs/FeeDetail.md +0 -14
- package/sdk/productfees_v0/docs/FeesApi.md +0 -147
- package/sdk/productfees_v0/docs/FeesEstimate.md +0 -11
- package/sdk/productfees_v0/docs/FeesEstimateByIdRequest.md +0 -11
- package/sdk/productfees_v0/docs/FeesEstimateError.md +0 -12
- package/sdk/productfees_v0/docs/FeesEstimateIdentifier.md +0 -16
- package/sdk/productfees_v0/docs/FeesEstimateRequest.md +0 -13
- package/sdk/productfees_v0/docs/FeesEstimateResult.md +0 -12
- package/sdk/productfees_v0/docs/GetMyFeesEstimateRequest.md +0 -9
- package/sdk/productfees_v0/docs/GetMyFeesEstimateResponse.md +0 -10
- package/sdk/productfees_v0/docs/GetMyFeesEstimateResult.md +0 -9
- package/sdk/productfees_v0/docs/GetMyFeesEstimatesErrorList.md +0 -9
- package/sdk/productfees_v0/docs/IdType.md +0 -10
- package/sdk/productfees_v0/docs/IncludedFeeDetail.md +0 -13
- package/sdk/productfees_v0/docs/MoneyType.md +0 -10
- package/sdk/productfees_v0/docs/OptionalFulfillmentProgram.md +0 -12
- package/sdk/productfees_v0/docs/Points.md +0 -10
- package/sdk/productfees_v0/docs/PriceToEstimateFees.md +0 -11
- package/sdk/productfees_v0/src/ApiClient.js +0 -740
- package/sdk/productfees_v0/src/index.js +0 -162
- package/sdk/productfees_v0/src/js_client.productfees_v0.api/FeesApi.js +0 -198
- package/sdk/productfees_v0/src/js_client.productfees_v0.model/Error.js +0 -84
- package/sdk/productfees_v0/src/js_client.productfees_v0.model/FeeDetail.js +0 -109
- package/sdk/productfees_v0/src/js_client.productfees_v0.model/FeesEstimate.js +0 -84
- package/sdk/productfees_v0/src/js_client.productfees_v0.model/FeesEstimateByIdRequest.js +0 -85
- package/sdk/productfees_v0/src/js_client.productfees_v0.model/FeesEstimateError.js +0 -97
- package/sdk/productfees_v0/src/js_client.productfees_v0.model/FeesEstimateIdentifier.js +0 -121
- package/sdk/productfees_v0/src/js_client.productfees_v0.model/FeesEstimateRequest.js +0 -103
- package/sdk/productfees_v0/src/js_client.productfees_v0.model/FeesEstimateResult.js +0 -89
- package/sdk/productfees_v0/src/js_client.productfees_v0.model/GetMyFeesEstimateRequest.js +0 -65
- package/sdk/productfees_v0/src/js_client.productfees_v0.model/GetMyFeesEstimateResponse.js +0 -73
- package/sdk/productfees_v0/src/js_client.productfees_v0.model/GetMyFeesEstimateResult.js +0 -65
- package/sdk/productfees_v0/src/js_client.productfees_v0.model/GetMyFeesEstimatesErrorList.js +0 -67
- package/sdk/productfees_v0/src/js_client.productfees_v0.model/IdType.js +0 -46
- package/sdk/productfees_v0/src/js_client.productfees_v0.model/IncludedFeeDetail.js +0 -100
- package/sdk/productfees_v0/src/js_client.productfees_v0.model/MoneyType.js +0 -72
- package/sdk/productfees_v0/src/js_client.productfees_v0.model/OptionalFulfillmentProgram.js +0 -53
- package/sdk/productfees_v0/src/js_client.productfees_v0.model/Points.js +0 -71
- package/sdk/productfees_v0/src/js_client.productfees_v0.model/PriceToEstimateFees.js +0 -82
- package/sdk/producttypedefinitions_v2020_09_01/README.md +0 -41
- package/sdk/producttypedefinitions_v2020_09_01/docs/DefinitionsApi.md +0 -122
- package/sdk/producttypedefinitions_v2020_09_01/docs/Error.md +0 -11
- package/sdk/producttypedefinitions_v2020_09_01/docs/ErrorList.md +0 -9
- package/sdk/producttypedefinitions_v2020_09_01/docs/ProductType.md +0 -11
- package/sdk/producttypedefinitions_v2020_09_01/docs/ProductTypeDefinition.md +0 -42
- package/sdk/producttypedefinitions_v2020_09_01/docs/ProductTypeList.md +0 -10
- package/sdk/producttypedefinitions_v2020_09_01/docs/ProductTypeVersion.md +0 -11
- package/sdk/producttypedefinitions_v2020_09_01/docs/PropertyGroup.md +0 -11
- package/sdk/producttypedefinitions_v2020_09_01/docs/SchemaLink.md +0 -10
- package/sdk/producttypedefinitions_v2020_09_01/docs/SchemaLinkLink.md +0 -19
- package/sdk/producttypedefinitions_v2020_09_01/src/ApiClient.js +0 -740
- package/sdk/producttypedefinitions_v2020_09_01/src/index.js +0 -99
- package/sdk/producttypedefinitions_v2020_09_01/src/js_client.producttypedefinitions_v2020_09_01.api/DefinitionsApi.js +0 -176
- package/sdk/producttypedefinitions_v2020_09_01/src/js_client.producttypedefinitions_v2020_09_01.model/Error.js +0 -85
- package/sdk/producttypedefinitions_v2020_09_01/src/js_client.producttypedefinitions_v2020_09_01.model/ErrorList.js +0 -67
- package/sdk/producttypedefinitions_v2020_09_01/src/js_client.producttypedefinitions_v2020_09_01.model/ProductType.js +0 -87
- package/sdk/producttypedefinitions_v2020_09_01/src/js_client.producttypedefinitions_v2020_09_01.model/ProductTypeDefinition.js +0 -201
- package/sdk/producttypedefinitions_v2020_09_01/src/js_client.producttypedefinitions_v2020_09_01.model/ProductTypeList.js +0 -77
- package/sdk/producttypedefinitions_v2020_09_01/src/js_client.producttypedefinitions_v2020_09_01.model/ProductTypeVersion.js +0 -85
- package/sdk/producttypedefinitions_v2020_09_01/src/js_client.producttypedefinitions_v2020_09_01.model/PropertyGroup.js +0 -81
- package/sdk/producttypedefinitions_v2020_09_01/src/js_client.producttypedefinitions_v2020_09_01.model/SchemaLink.js +0 -76
- package/sdk/producttypedefinitions_v2020_09_01/src/js_client.producttypedefinitions_v2020_09_01.model/SchemaLinkLink.js +0 -91
- package/sdk/replenishment_v2022_11_07/README.md +0 -69
- package/sdk/replenishment_v2022_11_07/docs/AggregationFrequency.md +0 -14
- package/sdk/replenishment_v2022_11_07/docs/AutoEnrollmentPreference.md +0 -10
- package/sdk/replenishment_v2022_11_07/docs/DiscountFunding.md +0 -9
- package/sdk/replenishment_v2022_11_07/docs/EligibilityStatus.md +0 -14
- package/sdk/replenishment_v2022_11_07/docs/EnrollmentMethod.md +0 -10
- package/sdk/replenishment_v2022_11_07/docs/Error.md +0 -11
- package/sdk/replenishment_v2022_11_07/docs/ErrorList.md +0 -9
- package/sdk/replenishment_v2022_11_07/docs/GetSellingPartnerMetricsRequest.md +0 -14
- package/sdk/replenishment_v2022_11_07/docs/GetSellingPartnerMetricsResponse.md +0 -9
- package/sdk/replenishment_v2022_11_07/docs/GetSellingPartnerMetricsResponseMetric.md +0 -30
- package/sdk/replenishment_v2022_11_07/docs/ListOfferMetricsRequest.md +0 -11
- package/sdk/replenishment_v2022_11_07/docs/ListOfferMetricsRequestFilters.md +0 -14
- package/sdk/replenishment_v2022_11_07/docs/ListOfferMetricsRequestPagination.md +0 -10
- package/sdk/replenishment_v2022_11_07/docs/ListOfferMetricsRequestSort.md +0 -10
- package/sdk/replenishment_v2022_11_07/docs/ListOfferMetricsResponse.md +0 -10
- package/sdk/replenishment_v2022_11_07/docs/ListOfferMetricsResponseOffer.md +0 -25
- package/sdk/replenishment_v2022_11_07/docs/ListOfferMetricsSortKey.md +0 -24
- package/sdk/replenishment_v2022_11_07/docs/ListOffersRequest.md +0 -11
- package/sdk/replenishment_v2022_11_07/docs/ListOffersRequestFilters.md +0 -15
- package/sdk/replenishment_v2022_11_07/docs/ListOffersRequestPagination.md +0 -10
- package/sdk/replenishment_v2022_11_07/docs/ListOffersRequestSort.md +0 -10
- package/sdk/replenishment_v2022_11_07/docs/ListOffersResponse.md +0 -10
- package/sdk/replenishment_v2022_11_07/docs/ListOffersResponseOffer.md +0 -15
- package/sdk/replenishment_v2022_11_07/docs/ListOffersSortKey.md +0 -16
- package/sdk/replenishment_v2022_11_07/docs/Metric.md +0 -30
- package/sdk/replenishment_v2022_11_07/docs/OfferProgramConfiguration.md +0 -11
- package/sdk/replenishment_v2022_11_07/docs/OfferProgramConfigurationPreferences.md +0 -9
- package/sdk/replenishment_v2022_11_07/docs/OfferProgramConfigurationPromotions.md +0 -12
- package/sdk/replenishment_v2022_11_07/docs/OfferProgramConfigurationPromotionsDiscountFunding.md +0 -9
- package/sdk/replenishment_v2022_11_07/docs/OffersApi.md +0 -102
- package/sdk/replenishment_v2022_11_07/docs/PaginationResponse.md +0 -9
- package/sdk/replenishment_v2022_11_07/docs/Preference.md +0 -9
- package/sdk/replenishment_v2022_11_07/docs/ProgramType.md +0 -8
- package/sdk/replenishment_v2022_11_07/docs/Promotion.md +0 -12
- package/sdk/replenishment_v2022_11_07/docs/SellingpartnersApi.md +0 -55
- package/sdk/replenishment_v2022_11_07/docs/SortOrder.md +0 -10
- package/sdk/replenishment_v2022_11_07/docs/TimeInterval.md +0 -10
- package/sdk/replenishment_v2022_11_07/docs/TimePeriodType.md +0 -10
- package/sdk/replenishment_v2022_11_07/src/ApiClient.js +0 -740
- package/sdk/replenishment_v2022_11_07/src/index.js +0 -295
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.api/OffersApi.js +0 -131
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.api/SellingpartnersApi.js +0 -84
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/AggregationFrequency.js +0 -60
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/AutoEnrollmentPreference.js +0 -46
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/DiscountFunding.js +0 -65
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/EligibilityStatus.js +0 -60
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/EnrollmentMethod.js +0 -46
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/Error.js +0 -85
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/ErrorList.js +0 -68
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/GetSellingPartnerMetricsRequest.js +0 -115
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/GetSellingPartnerMetricsResponse.js +0 -66
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/GetSellingPartnerMetricsResponseMetric.js +0 -233
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/ListOfferMetricsRequest.js +0 -85
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/ListOfferMetricsRequestFilters.js +0 -114
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/ListOfferMetricsRequestPagination.js +0 -77
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/ListOfferMetricsRequestSort.js +0 -77
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/ListOfferMetricsResponse.js +0 -74
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/ListOfferMetricsResponseOffer.js +0 -193
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/ListOfferMetricsSortKey.js +0 -95
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/ListOffersRequest.js +0 -85
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/ListOffersRequestFilters.js +0 -119
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/ListOffersRequestPagination.js +0 -77
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/ListOffersRequestSort.js +0 -77
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/ListOffersResponse.js +0 -74
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/ListOffersResponseOffer.js +0 -113
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/ListOffersSortKey.js +0 -67
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/Metric.js +0 -116
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/OfferProgramConfiguration.js +0 -81
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/OfferProgramConfigurationPreferences.js +0 -65
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/OfferProgramConfigurationPromotions.js +0 -86
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/OfferProgramConfigurationPromotionsDiscountFunding.js +0 -65
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/PaginationResponse.js +0 -65
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/Preference.js +0 -66
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/ProgramType.js +0 -39
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/Promotion.js +0 -86
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/SortOrder.js +0 -46
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/TimeInterval.js +0 -77
- package/sdk/replenishment_v2022_11_07/src/js_client.replenishment_v2022_11_07.model/TimePeriodType.js +0 -46
- package/sdk/reports_v2021_06_30/README.md +0 -48
- package/sdk/reports_v2021_06_30/docs/CreateReportResponse.md +0 -9
- package/sdk/reports_v2021_06_30/docs/CreateReportScheduleResponse.md +0 -9
- package/sdk/reports_v2021_06_30/docs/CreateReportScheduleSpecification.md +0 -56
- package/sdk/reports_v2021_06_30/docs/CreateReportSpecification.md +0 -13
- package/sdk/reports_v2021_06_30/docs/Error.md +0 -11
- package/sdk/reports_v2021_06_30/docs/ErrorList.md +0 -9
- package/sdk/reports_v2021_06_30/docs/GetReportsResponse.md +0 -10
- package/sdk/reports_v2021_06_30/docs/Report.md +0 -36
- package/sdk/reports_v2021_06_30/docs/ReportDocument.md +0 -20
- package/sdk/reports_v2021_06_30/docs/ReportSchedule.md +0 -14
- package/sdk/reports_v2021_06_30/docs/ReportScheduleList.md +0 -9
- package/sdk/reports_v2021_06_30/docs/ReportsApi.md +0 -427
- package/sdk/reports_v2021_06_30/src/ApiClient.js +0 -740
- package/sdk/reports_v2021_06_30/src/index.js +0 -113
- package/sdk/reports_v2021_06_30/src/js_client.reports_v2021_06_30.api/ReportsApi.js +0 -492
- package/sdk/reports_v2021_06_30/src/js_client.reports_v2021_06_30.model/CreateReportResponse.js +0 -67
- package/sdk/reports_v2021_06_30/src/js_client.reports_v2021_06_30.model/CreateReportScheduleResponse.js +0 -67
- package/sdk/reports_v2021_06_30/src/js_client.reports_v2021_06_30.model/CreateReportScheduleSpecification.js +0 -219
- package/sdk/reports_v2021_06_30/src/js_client.reports_v2021_06_30.model/CreateReportSpecification.js +0 -101
- package/sdk/reports_v2021_06_30/src/js_client.reports_v2021_06_30.model/Error.js +0 -85
- package/sdk/reports_v2021_06_30/src/js_client.reports_v2021_06_30.model/ErrorList.js +0 -68
- package/sdk/reports_v2021_06_30/src/js_client.reports_v2021_06_30.model/GetReportsResponse.js +0 -76
- package/sdk/reports_v2021_06_30/src/js_client.reports_v2021_06_30.model/Report.js +0 -191
- package/sdk/reports_v2021_06_30/src/js_client.reports_v2021_06_30.model/ReportDocument.js +0 -99
- package/sdk/reports_v2021_06_30/src/js_client.reports_v2021_06_30.model/ReportSchedule.js +0 -111
- package/sdk/reports_v2021_06_30/src/js_client.reports_v2021_06_30.model/ReportScheduleList.js +0 -68
- package/sdk/sales_v1/README.md +0 -33
- package/sdk/sales_v1/docs/Error.md +0 -11
- package/sdk/sales_v1/docs/GetOrderMetricsResponse.md +0 -10
- package/sdk/sales_v1/docs/Money.md +0 -10
- package/sdk/sales_v1/docs/OrderMetricsInterval.md +0 -14
- package/sdk/sales_v1/docs/SalesApi.md +0 -71
- package/sdk/sales_v1/src/ApiClient.js +0 -740
- package/sdk/sales_v1/src/index.js +0 -64
- package/sdk/sales_v1/src/js_client.sales_v1.api/SalesApi.js +0 -122
- package/sdk/sales_v1/src/js_client.sales_v1.model/Error.js +0 -85
- package/sdk/sales_v1/src/js_client.sales_v1.model/GetOrderMetricsResponse.js +0 -75
- package/sdk/sales_v1/src/js_client.sales_v1.model/Money.js +0 -77
- package/sdk/sales_v1/src/js_client.sales_v1.model/OrderMetricsInterval.js +0 -116
- package/sdk/sellers_v1/README.md +0 -46
- package/sdk/sellers_v1/docs/Account.md +0 -47
- package/sdk/sellers_v1/docs/Address.md +0 -14
- package/sdk/sellers_v1/docs/Business.md +0 -13
- package/sdk/sellers_v1/docs/Error.md +0 -11
- package/sdk/sellers_v1/docs/GetAccountResponse.md +0 -10
- package/sdk/sellers_v1/docs/GetMarketplaceParticipationsResponse.md +0 -10
- package/sdk/sellers_v1/docs/Marketplace.md +0 -14
- package/sdk/sellers_v1/docs/MarketplaceParticipation.md +0 -11
- package/sdk/sellers_v1/docs/Participation.md +0 -10
- package/sdk/sellers_v1/docs/PrimaryContact.md +0 -11
- package/sdk/sellers_v1/docs/SellersApi.md +0 -90
- package/sdk/sellers_v1/src/ApiClient.js +0 -740
- package/sdk/sellers_v1/src/index.js +0 -106
- package/sdk/sellers_v1/src/js_client.sellers_v1.api/SellersApi.js +0 -118
- package/sdk/sellers_v1/src/js_client.sellers_v1.model/Account.js +0 -180
- package/sdk/sellers_v1/src/js_client.sellers_v1.model/Address.js +0 -109
- package/sdk/sellers_v1/src/js_client.sellers_v1.model/Business.js +0 -101
- package/sdk/sellers_v1/src/js_client.sellers_v1.model/Error.js +0 -85
- package/sdk/sellers_v1/src/js_client.sellers_v1.model/GetAccountResponse.js +0 -74
- package/sdk/sellers_v1/src/js_client.sellers_v1.model/GetMarketplaceParticipationsResponse.js +0 -75
- package/sdk/sellers_v1/src/js_client.sellers_v1.model/Marketplace.js +0 -117
- package/sdk/sellers_v1/src/js_client.sellers_v1.model/MarketplaceParticipation.js +0 -86
- package/sdk/sellers_v1/src/js_client.sellers_v1.model/Participation.js +0 -77
- package/sdk/sellers_v1/src/js_client.sellers_v1.model/PrimaryContact.js +0 -85
- package/sdk/services_v1/README.md +0 -108
- package/sdk/services_v1/docs/AddAppointmentRequest.md +0 -9
- package/sdk/services_v1/docs/Address.md +0 -19
- package/sdk/services_v1/docs/Appointment.md +0 -27
- package/sdk/services_v1/docs/AppointmentResource.md +0 -9
- package/sdk/services_v1/docs/AppointmentSlot.md +0 -11
- package/sdk/services_v1/docs/AppointmentSlotReport.md +0 -23
- package/sdk/services_v1/docs/AppointmentTime.md +0 -10
- package/sdk/services_v1/docs/AppointmentTimeInput.md +0 -10
- package/sdk/services_v1/docs/AssignAppointmentResourcesRequest.md +0 -9
- package/sdk/services_v1/docs/AssignAppointmentResourcesResponse.md +0 -10
- package/sdk/services_v1/docs/AssignAppointmentResourcesResponsePayload.md +0 -9
- package/sdk/services_v1/docs/AssociatedItem.md +0 -30
- package/sdk/services_v1/docs/AvailabilityRecord.md +0 -12
- package/sdk/services_v1/docs/Buyer.md +0 -12
- package/sdk/services_v1/docs/CancelReservationResponse.md +0 -9
- package/sdk/services_v1/docs/CancelServiceJobByServiceJobIdResponse.md +0 -9
- package/sdk/services_v1/docs/CapacityType.md +0 -14
- package/sdk/services_v1/docs/CompleteServiceJobByServiceJobIdResponse.md +0 -9
- package/sdk/services_v1/docs/CreateReservationRecord.md +0 -11
- package/sdk/services_v1/docs/CreateReservationRequest.md +0 -10
- package/sdk/services_v1/docs/CreateReservationResponse.md +0 -10
- package/sdk/services_v1/docs/CreateServiceDocumentUploadDestination.md +0 -10
- package/sdk/services_v1/docs/DayOfWeek.md +0 -20
- package/sdk/services_v1/docs/EncryptionDetails.md +0 -20
- package/sdk/services_v1/docs/Error.md +0 -23
- package/sdk/services_v1/docs/FixedSlot.md +0 -13
- package/sdk/services_v1/docs/FixedSlotCapacity.md +0 -12
- package/sdk/services_v1/docs/FixedSlotCapacityErrors.md +0 -9
- package/sdk/services_v1/docs/FixedSlotCapacityQuery.md +0 -12
- package/sdk/services_v1/docs/FulfillmentDocument.md +0 -10
- package/sdk/services_v1/docs/FulfillmentTime.md +0 -10
- package/sdk/services_v1/docs/GetAppointmentSlotsResponse.md +0 -10
- package/sdk/services_v1/docs/GetServiceJobByServiceJobIdResponse.md +0 -10
- package/sdk/services_v1/docs/GetServiceJobsResponse.md +0 -10
- package/sdk/services_v1/docs/ItemDelivery.md +0 -10
- package/sdk/services_v1/docs/ItemDeliveryPromise.md +0 -10
- package/sdk/services_v1/docs/JobListing.md +0 -12
- package/sdk/services_v1/docs/Poa.md +0 -28
- package/sdk/services_v1/docs/RangeCapacity.md +0 -10
- package/sdk/services_v1/docs/RangeSlot.md +0 -11
- package/sdk/services_v1/docs/RangeSlotCapacity.md +0 -11
- package/sdk/services_v1/docs/RangeSlotCapacityErrors.md +0 -9
- package/sdk/services_v1/docs/RangeSlotCapacityQuery.md +0 -11
- package/sdk/services_v1/docs/Recurrence.md +0 -11
- package/sdk/services_v1/docs/RescheduleAppointmentRequest.md +0 -10
- package/sdk/services_v1/docs/Reservation.md +0 -28
- package/sdk/services_v1/docs/ScopeOfWork.md +0 -12
- package/sdk/services_v1/docs/Seller.md +0 -9
- package/sdk/services_v1/docs/ServiceApi.md +0 -867
- package/sdk/services_v1/docs/ServiceDocumentUploadDestination.md +0 -12
- package/sdk/services_v1/docs/ServiceJob.md +0 -43
- package/sdk/services_v1/docs/ServiceJobProvider.md +0 -9
- package/sdk/services_v1/docs/ServiceLocation.md +0 -23
- package/sdk/services_v1/docs/ServiceUploadDocument.md +0 -30
- package/sdk/services_v1/docs/SetAppointmentFulfillmentDataRequest.md +0 -11
- package/sdk/services_v1/docs/SetAppointmentResponse.md +0 -11
- package/sdk/services_v1/docs/Technician.md +0 -10
- package/sdk/services_v1/docs/UpdateReservationRecord.md +0 -11
- package/sdk/services_v1/docs/UpdateReservationRequest.md +0 -10
- package/sdk/services_v1/docs/UpdateReservationResponse.md +0 -10
- package/sdk/services_v1/docs/UpdateScheduleRecord.md +0 -11
- package/sdk/services_v1/docs/UpdateScheduleRequest.md +0 -9
- package/sdk/services_v1/docs/UpdateScheduleResponse.md +0 -10
- package/sdk/services_v1/docs/Warning.md +0 -11
- package/sdk/services_v1/src/ApiClient.js +0 -740
- package/sdk/services_v1/src/index.js +0 -477
- package/sdk/services_v1/src/js_client.services_v1.api/ServiceApi.js +0 -1115
- package/sdk/services_v1/src/js_client.services_v1.model/AddAppointmentRequest.js +0 -67
- package/sdk/services_v1/src/js_client.services_v1.model/Address.js +0 -149
- package/sdk/services_v1/src/js_client.services_v1.model/Appointment.js +0 -132
- package/sdk/services_v1/src/js_client.services_v1.model/AppointmentResource.js +0 -65
- package/sdk/services_v1/src/js_client.services_v1.model/AppointmentSlot.js +0 -81
- package/sdk/services_v1/src/js_client.services_v1.model/AppointmentSlotReport.js +0 -110
- package/sdk/services_v1/src/js_client.services_v1.model/AppointmentTime.js +0 -77
- package/sdk/services_v1/src/js_client.services_v1.model/AppointmentTimeInput.js +0 -75
- package/sdk/services_v1/src/js_client.services_v1.model/AssignAppointmentResourcesRequest.js +0 -68
- package/sdk/services_v1/src/js_client.services_v1.model/AssignAppointmentResourcesResponse.js +0 -74
- package/sdk/services_v1/src/js_client.services_v1.model/AssignAppointmentResourcesResponsePayload.js +0 -66
- package/sdk/services_v1/src/js_client.services_v1.model/AssociatedItem.js +0 -145
- package/sdk/services_v1/src/js_client.services_v1.model/AvailabilityRecord.js +0 -93
- package/sdk/services_v1/src/js_client.services_v1.model/Buyer.js +0 -89
- package/sdk/services_v1/src/js_client.services_v1.model/CancelReservationResponse.js +0 -66
- package/sdk/services_v1/src/js_client.services_v1.model/CancelServiceJobByServiceJobIdResponse.js +0 -66
- package/sdk/services_v1/src/js_client.services_v1.model/CapacityType.js +0 -60
- package/sdk/services_v1/src/js_client.services_v1.model/CompleteServiceJobByServiceJobIdResponse.js +0 -66
- package/sdk/services_v1/src/js_client.services_v1.model/CreateReservationRecord.js +0 -83
- package/sdk/services_v1/src/js_client.services_v1.model/CreateReservationRequest.js +0 -77
- package/sdk/services_v1/src/js_client.services_v1.model/CreateReservationResponse.js +0 -74
- package/sdk/services_v1/src/js_client.services_v1.model/CreateServiceDocumentUploadDestination.js +0 -74
- package/sdk/services_v1/src/js_client.services_v1.model/DayOfWeek.js +0 -81
- package/sdk/services_v1/src/js_client.services_v1.model/EncryptionDetails.js +0 -101
- package/sdk/services_v1/src/js_client.services_v1.model/Error.js +0 -113
- package/sdk/services_v1/src/js_client.services_v1.model/FixedSlot.js +0 -97
- package/sdk/services_v1/src/js_client.services_v1.model/FixedSlotCapacity.js +0 -90
- package/sdk/services_v1/src/js_client.services_v1.model/FixedSlotCapacityErrors.js +0 -66
- package/sdk/services_v1/src/js_client.services_v1.model/FixedSlotCapacityQuery.js +0 -94
- package/sdk/services_v1/src/js_client.services_v1.model/FulfillmentDocument.js +0 -73
- package/sdk/services_v1/src/js_client.services_v1.model/FulfillmentTime.js +0 -73
- package/sdk/services_v1/src/js_client.services_v1.model/GetAppointmentSlotsResponse.js +0 -74
- package/sdk/services_v1/src/js_client.services_v1.model/GetServiceJobByServiceJobIdResponse.js +0 -74
- package/sdk/services_v1/src/js_client.services_v1.model/GetServiceJobsResponse.js +0 -74
- package/sdk/services_v1/src/js_client.services_v1.model/ItemDelivery.js +0 -73
- package/sdk/services_v1/src/js_client.services_v1.model/ItemDeliveryPromise.js +0 -73
- package/sdk/services_v1/src/js_client.services_v1.model/JobListing.js +0 -90
- package/sdk/services_v1/src/js_client.services_v1.model/Poa.js +0 -130
- package/sdk/services_v1/src/js_client.services_v1.model/RangeCapacity.js +0 -74
- package/sdk/services_v1/src/js_client.services_v1.model/RangeSlot.js +0 -81
- package/sdk/services_v1/src/js_client.services_v1.model/RangeSlotCapacity.js +0 -82
- package/sdk/services_v1/src/js_client.services_v1.model/RangeSlotCapacityErrors.js +0 -66
- package/sdk/services_v1/src/js_client.services_v1.model/RangeSlotCapacityQuery.js +0 -86
- package/sdk/services_v1/src/js_client.services_v1.model/Recurrence.js +0 -84
- package/sdk/services_v1/src/js_client.services_v1.model/RescheduleAppointmentRequest.js +0 -77
- package/sdk/services_v1/src/js_client.services_v1.model/Reservation.js +0 -123
- package/sdk/services_v1/src/js_client.services_v1.model/ScopeOfWork.js +0 -89
- package/sdk/services_v1/src/js_client.services_v1.model/Seller.js +0 -65
- package/sdk/services_v1/src/js_client.services_v1.model/ServiceDocumentUploadDestination.js +0 -95
- package/sdk/services_v1/src/js_client.services_v1.model/ServiceJob.js +0 -222
- package/sdk/services_v1/src/js_client.services_v1.model/ServiceJobProvider.js +0 -65
- package/sdk/services_v1/src/js_client.services_v1.model/ServiceLocation.js +0 -99
- package/sdk/services_v1/src/js_client.services_v1.model/ServiceUploadDocument.js +0 -129
- package/sdk/services_v1/src/js_client.services_v1.model/SetAppointmentFulfillmentDataRequest.js +0 -83
- package/sdk/services_v1/src/js_client.services_v1.model/SetAppointmentResponse.js +0 -83
- package/sdk/services_v1/src/js_client.services_v1.model/Technician.js +0 -73
- package/sdk/services_v1/src/js_client.services_v1.model/UpdateReservationRecord.js +0 -83
- package/sdk/services_v1/src/js_client.services_v1.model/UpdateReservationRequest.js +0 -77
- package/sdk/services_v1/src/js_client.services_v1.model/UpdateReservationResponse.js +0 -74
- package/sdk/services_v1/src/js_client.services_v1.model/UpdateScheduleRecord.js +0 -83
- package/sdk/services_v1/src/js_client.services_v1.model/UpdateScheduleRequest.js +0 -68
- package/sdk/services_v1/src/js_client.services_v1.model/UpdateScheduleResponse.js +0 -75
- package/sdk/services_v1/src/js_client.services_v1.model/Warning.js +0 -85
- package/sdk/shipping_v2/README.md +0 -174
- package/sdk/shipping_v2/docs/AccessPoint.md +0 -29
- package/sdk/shipping_v2/docs/AccessPointDetails.md +0 -9
- package/sdk/shipping_v2/docs/AccessPointType.md +0 -22
- package/sdk/shipping_v2/docs/AccessibilityAttributes.md +0 -10
- package/sdk/shipping_v2/docs/AccountStatus.md +0 -14
- package/sdk/shipping_v2/docs/AccountType.md +0 -12
- package/sdk/shipping_v2/docs/ActiveAccount.md +0 -10
- package/sdk/shipping_v2/docs/Address.md +0 -20
- package/sdk/shipping_v2/docs/AmazonOrderDetails.md +0 -9
- package/sdk/shipping_v2/docs/AmazonShipmentDetails.md +0 -9
- package/sdk/shipping_v2/docs/AvailableValueAddedServiceGroup.md +0 -12
- package/sdk/shipping_v2/docs/Benefits.md +0 -10
- package/sdk/shipping_v2/docs/CancelShipmentResponse.md +0 -9
- package/sdk/shipping_v2/docs/Carrier.md +0 -10
- package/sdk/shipping_v2/docs/CarrierAccount.md +0 -10
- package/sdk/shipping_v2/docs/CarrierAccountAttribute.md +0 -11
- package/sdk/shipping_v2/docs/CarrierAccountInput.md +0 -16
- package/sdk/shipping_v2/docs/ChannelDetails.md +0 -11
- package/sdk/shipping_v2/docs/ChannelType.md +0 -10
- package/sdk/shipping_v2/docs/ChargeComponent.md +0 -21
- package/sdk/shipping_v2/docs/ClaimReason.md +0 -16
- package/sdk/shipping_v2/docs/ClientReferenceDetail.md +0 -21
- package/sdk/shipping_v2/docs/CollectOnDelivery.md +0 -9
- package/sdk/shipping_v2/docs/CollectionFormsHistoryRecord.md +0 -13
- package/sdk/shipping_v2/docs/CollectionsFormDocument.md +0 -10
- package/sdk/shipping_v2/docs/CreateClaimRequest.md +0 -14
- package/sdk/shipping_v2/docs/CreateClaimResponse.md +0 -9
- package/sdk/shipping_v2/docs/Currency.md +0 -10
- package/sdk/shipping_v2/docs/DangerousGoodsDetails.md +0 -58
- package/sdk/shipping_v2/docs/DateRange.md +0 -10
- package/sdk/shipping_v2/docs/DetailCodes.md +0 -66
- package/sdk/shipping_v2/docs/Dimensions.md +0 -23
- package/sdk/shipping_v2/docs/DirectFulfillmentItemIdentifiers.md +0 -10
- package/sdk/shipping_v2/docs/DirectPurchaseRequest.md +0 -14
- package/sdk/shipping_v2/docs/DirectPurchaseResponse.md +0 -9
- package/sdk/shipping_v2/docs/DirectPurchaseResult.md +0 -10
- package/sdk/shipping_v2/docs/DocumentFormat.md +0 -12
- package/sdk/shipping_v2/docs/DocumentSize.md +0 -22
- package/sdk/shipping_v2/docs/DocumentType.md +0 -14
- package/sdk/shipping_v2/docs/Error.md +0 -11
- package/sdk/shipping_v2/docs/ErrorList.md +0 -9
- package/sdk/shipping_v2/docs/Event.md +0 -12
- package/sdk/shipping_v2/docs/EventCode.md +0 -34
- package/sdk/shipping_v2/docs/ExceptionOperatingHours.md +0 -10
- package/sdk/shipping_v2/docs/ExcludedBenefit.md +0 -10
- package/sdk/shipping_v2/docs/GenerateCollectionFormRequest.md +0 -11
- package/sdk/shipping_v2/docs/GenerateCollectionFormResponse.md +0 -9
- package/sdk/shipping_v2/docs/GenerationStatus.md +0 -10
- package/sdk/shipping_v2/docs/Geocode.md +0 -10
- package/sdk/shipping_v2/docs/GetAccessPointsResponse.md +0 -9
- package/sdk/shipping_v2/docs/GetAccessPointsResult.md +0 -9
- package/sdk/shipping_v2/docs/GetAdditionalInputsResponse.md +0 -9
- package/sdk/shipping_v2/docs/GetCarrierAccountFormInputsResponse.md +0 -9
- package/sdk/shipping_v2/docs/GetCarrierAccountsRequest.md +0 -9
- package/sdk/shipping_v2/docs/GetCarrierAccountsResponse.md +0 -9
- package/sdk/shipping_v2/docs/GetCollectionFormHistoryRequest.md +0 -13
- package/sdk/shipping_v2/docs/GetCollectionFormHistoryResponse.md +0 -10
- package/sdk/shipping_v2/docs/GetCollectionFormResponse.md +0 -9
- package/sdk/shipping_v2/docs/GetRatesRequest.md +0 -21
- package/sdk/shipping_v2/docs/GetRatesResponse.md +0 -9
- package/sdk/shipping_v2/docs/GetRatesResult.md +0 -11
- package/sdk/shipping_v2/docs/GetShipmentDocumentsResponse.md +0 -9
- package/sdk/shipping_v2/docs/GetShipmentDocumentsResult.md +0 -11
- package/sdk/shipping_v2/docs/GetTrackingResponse.md +0 -9
- package/sdk/shipping_v2/docs/GetTrackingResult.md +0 -13
- package/sdk/shipping_v2/docs/GetUnmanifestedShipmentsRequest.md +0 -9
- package/sdk/shipping_v2/docs/GetUnmanifestedShipmentsResponse.md +0 -9
- package/sdk/shipping_v2/docs/GoodsOwner.md +0 -9
- package/sdk/shipping_v2/docs/IneligibilityReason.md +0 -10
- package/sdk/shipping_v2/docs/IneligibilityReasonCode.md +0 -26
- package/sdk/shipping_v2/docs/IneligibleRate.md +0 -13
- package/sdk/shipping_v2/docs/InputType.md +0 -10
- package/sdk/shipping_v2/docs/InvoiceDetails.md +0 -10
- package/sdk/shipping_v2/docs/Item.md +0 -20
- package/sdk/shipping_v2/docs/LabelAttribute.md +0 -12
- package/sdk/shipping_v2/docs/LinkCarrierAccountRequest.md +0 -12
- package/sdk/shipping_v2/docs/LinkCarrierAccountResponse.md +0 -10
- package/sdk/shipping_v2/docs/LinkableAccountType.md +0 -10
- package/sdk/shipping_v2/docs/LinkableCarrier.md +0 -10
- package/sdk/shipping_v2/docs/LiquidVolume.md +0 -31
- package/sdk/shipping_v2/docs/Location.md +0 -12
- package/sdk/shipping_v2/docs/NdrAction.md +0 -12
- package/sdk/shipping_v2/docs/NdrRequestData.md +0 -10
- package/sdk/shipping_v2/docs/OneClickShipmentRequest.md +0 -21
- package/sdk/shipping_v2/docs/OneClickShipmentResponse.md +0 -9
- package/sdk/shipping_v2/docs/OneClickShipmentResult.md +0 -14
- package/sdk/shipping_v2/docs/OneClickShipmentValueAddedService.md +0 -10
- package/sdk/shipping_v2/docs/OperatingHours.md +0 -11
- package/sdk/shipping_v2/docs/Package.md +0 -16
- package/sdk/shipping_v2/docs/PackageDocument.md +0 -11
- package/sdk/shipping_v2/docs/PackageDocumentDetail.md +0 -11
- package/sdk/shipping_v2/docs/PaymentType.md +0 -10
- package/sdk/shipping_v2/docs/PrintOption.md +0 -12
- package/sdk/shipping_v2/docs/Promise.md +0 -10
- package/sdk/shipping_v2/docs/PurchaseShipmentRequest.md +0 -13
- package/sdk/shipping_v2/docs/PurchaseShipmentResponse.md +0 -9
- package/sdk/shipping_v2/docs/PurchaseShipmentResult.md +0 -12
- package/sdk/shipping_v2/docs/Rate.md +0 -22
- package/sdk/shipping_v2/docs/RateItem.md +0 -12
- package/sdk/shipping_v2/docs/RateItemID.md +0 -72
- package/sdk/shipping_v2/docs/RateItemType.md +0 -12
- package/sdk/shipping_v2/docs/RequestedDocumentSpecification.md +0 -15
- package/sdk/shipping_v2/docs/RequestedLabelCustomization.md +0 -9
- package/sdk/shipping_v2/docs/RequestedValueAddedService.md +0 -9
- package/sdk/shipping_v2/docs/Service.md +0 -10
- package/sdk/shipping_v2/docs/ServiceSelection.md +0 -9
- package/sdk/shipping_v2/docs/SettlementType.md +0 -10
- package/sdk/shipping_v2/docs/ShipmentType.md +0 -10
- package/sdk/shipping_v2/docs/ShipperInstruction.md +0 -9
- package/sdk/shipping_v2/docs/ShippingApi.md +0 -1014
- package/sdk/shipping_v2/docs/Status.md +0 -26
- package/sdk/shipping_v2/docs/SubmitNdrFeedbackRequest.md +0 -11
- package/sdk/shipping_v2/docs/SupportedDocumentDetail.md +0 -10
- package/sdk/shipping_v2/docs/SupportedDocumentSpecification.md +0 -11
- package/sdk/shipping_v2/docs/TaxDetail.md +0 -10
- package/sdk/shipping_v2/docs/TaxType.md +0 -8
- package/sdk/shipping_v2/docs/TimeOfDay.md +0 -11
- package/sdk/shipping_v2/docs/TimeWindow.md +0 -10
- package/sdk/shipping_v2/docs/TrackingDetailCodes.md +0 -10
- package/sdk/shipping_v2/docs/TrackingSummary.md +0 -10
- package/sdk/shipping_v2/docs/UnlinkCarrierAccountRequest.md +0 -10
- package/sdk/shipping_v2/docs/UnlinkCarrierAccountResponse.md +0 -9
- package/sdk/shipping_v2/docs/UnmanifestedCarrierInformation.md +0 -11
- package/sdk/shipping_v2/docs/UnmanifestedShipmentLocation.md +0 -10
- package/sdk/shipping_v2/docs/ValidationMetadata.md +0 -11
- package/sdk/shipping_v2/docs/ValueAddedService.md +0 -11
- package/sdk/shipping_v2/docs/ValueAddedServiceDetails.md +0 -9
- package/sdk/shipping_v2/docs/Weight.md +0 -25
- package/sdk/shipping_v2/src/ApiClient.js +0 -740
- package/sdk/shipping_v2/src/index.js +0 -925
- package/sdk/shipping_v2/src/js_client.shipping_v2.api/ShippingApi.js +0 -1208
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/AccessPoint.js +0 -159
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/AccessPointDetails.js +0 -65
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/AccessPointType.js +0 -88
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/AccessibilityAttributes.js +0 -73
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/AccountStatus.js +0 -60
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/AccountType.js +0 -53
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/ActiveAccount.js +0 -73
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/Address.js +0 -165
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/AmazonOrderDetails.js +0 -67
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/AmazonShipmentDetails.js +0 -67
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/AvailableValueAddedServiceGroup.js +0 -96
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/Benefits.js +0 -78
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/CancelShipmentResponse.js +0 -65
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/Carrier.js +0 -77
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/CarrierAccount.js +0 -77
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/CarrierAccountAttribute.js +0 -81
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/CarrierAccountInput.js +0 -122
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/ChannelDetails.js +0 -83
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/ChannelType.js +0 -46
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/ChargeComponent.js +0 -93
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/ClaimReason.js +0 -67
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/ClientReferenceDetail.js +0 -97
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/CollectOnDelivery.js +0 -67
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/CollectionFormsHistoryRecord.js +0 -97
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/CollectionsFormDocument.js +0 -73
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/CreateClaimRequest.js +0 -111
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/CreateClaimResponse.js +0 -65
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/Currency.js +0 -77
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/DangerousGoodsDetails.js +0 -201
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/DateRange.js +0 -73
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/DetailCodes.js +0 -242
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/Dimensions.js +0 -117
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/DirectFulfillmentItemIdentifiers.js +0 -75
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/DirectPurchaseRequest.js +0 -106
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/DirectPurchaseResponse.js +0 -65
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/DirectPurchaseResult.js +0 -76
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/DocumentFormat.js +0 -53
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/DocumentSize.js +0 -107
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/DocumentType.js +0 -60
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/Error.js +0 -85
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/ErrorList.js +0 -68
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/Event.js +0 -93
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/EventCode.js +0 -130
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/ExceptionOperatingHours.js +0 -73
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/ExcludedBenefit.js +0 -75
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/GenerateCollectionFormRequest.js +0 -84
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/GenerateCollectionFormResponse.js +0 -65
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/GenerationStatus.js +0 -46
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/Geocode.js +0 -73
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/GetAccessPointsResponse.js +0 -65
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/GetAccessPointsResult.js +0 -68
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/GetAdditionalInputsResponse.js +0 -65
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/GetCarrierAccountFormInputsResponse.js +0 -66
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/GetCarrierAccountsRequest.js +0 -66
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/GetCarrierAccountsResponse.js +0 -68
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/GetCollectionFormHistoryRequest.js +0 -98
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/GetCollectionFormHistoryResponse.js +0 -74
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/GetCollectionFormResponse.js +0 -65
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/GetRatesRequest.js +0 -169
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/GetRatesResponse.js +0 -65
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/GetRatesResult.js +0 -87
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/GetShipmentDocumentsResponse.js +0 -65
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/GetShipmentDocumentsResult.js +0 -85
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/GetTrackingResponse.js +0 -65
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/GetTrackingResult.js +0 -108
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/GetUnmanifestedShipmentsRequest.js +0 -66
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/GetUnmanifestedShipmentsResponse.js +0 -66
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/GoodsOwner.js +0 -67
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/IneligibilityReason.js +0 -77
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/IneligibilityReasonCode.js +0 -102
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/IneligibleRate.js +0 -108
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/InputType.js +0 -46
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/InvoiceDetails.js +0 -73
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/Item.js +0 -155
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/LabelAttribute.js +0 -53
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/LinkCarrierAccountRequest.js +0 -95
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/LinkCarrierAccountResponse.js +0 -73
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/LinkableAccountType.js +0 -74
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/LinkableCarrier.js +0 -74
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/LiquidVolume.js +0 -127
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/Location.js +0 -89
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/NdrAction.js +0 -53
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/NdrRequestData.js +0 -73
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/OneClickShipmentRequest.js +0 -172
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/OneClickShipmentResponse.js +0 -65
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/OneClickShipmentResult.js +0 -118
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/OneClickShipmentValueAddedService.js +0 -75
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/OperatingHours.js +0 -80
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/Package.js +0 -133
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/PackageDocument.js +0 -87
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/PackageDocumentDetail.js +0 -86
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/PaymentType.js +0 -46
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/PrintOption.js +0 -96
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/Promise.js +0 -72
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/PurchaseShipmentRequest.js +0 -104
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/PurchaseShipmentResponse.js +0 -65
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/PurchaseShipmentResult.js +0 -96
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/Rate.js +0 -190
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/RateItem.js +0 -89
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/RateItemID.js +0 -263
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/RateItemType.js +0 -53
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/RequestedDocumentSpecification.js +0 -122
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/RequestedLabelCustomization.js +0 -66
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/RequestedValueAddedService.js +0 -67
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/Service.js +0 -77
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/ServiceSelection.js +0 -67
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/SettlementType.js +0 -46
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/ShipmentType.js +0 -46
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/ShipperInstruction.js +0 -65
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/Status.js +0 -102
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/SubmitNdrFeedbackRequest.js +0 -85
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/SupportedDocumentDetail.js +0 -77
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/SupportedDocumentSpecification.js +0 -88
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/TaxDetail.js +0 -77
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/TaxType.js +0 -39
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/TimeOfDay.js +0 -81
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/TimeWindow.js +0 -73
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/TrackingDetailCodes.js +0 -78
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/TrackingSummary.js +0 -73
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/UnlinkCarrierAccountRequest.js +0 -74
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/UnlinkCarrierAccountResponse.js +0 -65
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/UnmanifestedCarrierInformation.js +0 -82
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/UnmanifestedShipmentLocation.js +0 -73
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/ValidationMetadata.js +0 -81
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/ValueAddedService.js +0 -87
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/ValueAddedServiceDetails.js +0 -65
- package/sdk/shipping_v2/src/js_client.shipping_v2.model/Weight.js +0 -109
- package/sdk/solicitations_v1/README.md +0 -42
- package/sdk/solicitations_v1/docs/CreateProductReviewAndSellerFeedbackSolicitationResponse.md +0 -9
- package/sdk/solicitations_v1/docs/Error.md +0 -11
- package/sdk/solicitations_v1/docs/GetSchemaResponse.md +0 -11
- package/sdk/solicitations_v1/docs/GetSchemaResponseLinks.md +0 -9
- package/sdk/solicitations_v1/docs/GetSolicitationActionResponse.md +0 -12
- package/sdk/solicitations_v1/docs/GetSolicitationActionResponseEmbedded.md +0 -9
- package/sdk/solicitations_v1/docs/GetSolicitationActionResponseLinks.md +0 -10
- package/sdk/solicitations_v1/docs/GetSolicitationActionsForOrderResponse.md +0 -11
- package/sdk/solicitations_v1/docs/GetSolicitationActionsForOrderResponseEmbedded.md +0 -9
- package/sdk/solicitations_v1/docs/GetSolicitationActionsForOrderResponseLinks.md +0 -10
- package/sdk/solicitations_v1/docs/LinkObject.md +0 -10
- package/sdk/solicitations_v1/docs/SolicitationsAction.md +0 -9
- package/sdk/solicitations_v1/docs/SolicitationsApi.md +0 -102
- package/sdk/solicitations_v1/src/ApiClient.js +0 -740
- package/sdk/solicitations_v1/src/index.js +0 -120
- package/sdk/solicitations_v1/src/js_client.solicitations_v1.api/SolicitationsApi.js +0 -150
- package/sdk/solicitations_v1/src/js_client.solicitations_v1.model/CreateProductReviewAndSellerFeedbackSolicitationResponse.js +0 -66
- package/sdk/solicitations_v1/src/js_client.solicitations_v1.model/Error.js +0 -85
- package/sdk/solicitations_v1/src/js_client.solicitations_v1.model/GetSchemaResponse.js +0 -81
- package/sdk/solicitations_v1/src/js_client.solicitations_v1.model/GetSchemaResponseLinks.js +0 -66
- package/sdk/solicitations_v1/src/js_client.solicitations_v1.model/GetSolicitationActionResponse.js +0 -90
- package/sdk/solicitations_v1/src/js_client.solicitations_v1.model/GetSolicitationActionResponseEmbedded.js +0 -64
- package/sdk/solicitations_v1/src/js_client.solicitations_v1.model/GetSolicitationActionResponseLinks.js +0 -75
- package/sdk/solicitations_v1/src/js_client.solicitations_v1.model/GetSolicitationActionsForOrderResponse.js +0 -82
- package/sdk/solicitations_v1/src/js_client.solicitations_v1.model/GetSolicitationActionsForOrderResponseEmbedded.js +0 -66
- package/sdk/solicitations_v1/src/js_client.solicitations_v1.model/GetSolicitationActionsForOrderResponseLinks.js +0 -76
- package/sdk/solicitations_v1/src/js_client.solicitations_v1.model/LinkObject.js +0 -75
- package/sdk/solicitations_v1/src/js_client.solicitations_v1.model/SolicitationsAction.js +0 -66
- package/sdk/supplysources_v2020_07_01/README.md +0 -70
- package/sdk/supplysources_v2020_07_01/docs/Address.md +0 -19
- package/sdk/supplysources_v2020_07_01/docs/AddressWithContact.md +0 -10
- package/sdk/supplysources_v2020_07_01/docs/ContactDetails.md +0 -9
- package/sdk/supplysources_v2020_07_01/docs/ContactDetailsPrimary.md +0 -10
- package/sdk/supplysources_v2020_07_01/docs/CreateSupplySourceRequest.md +0 -11
- package/sdk/supplysources_v2020_07_01/docs/CreateSupplySourceResponse.md +0 -10
- package/sdk/supplysources_v2020_07_01/docs/CurbsidePickupConfiguration.md +0 -11
- package/sdk/supplysources_v2020_07_01/docs/DeliveryChannel.md +0 -10
- package/sdk/supplysources_v2020_07_01/docs/Duration.md +0 -10
- package/sdk/supplysources_v2020_07_01/docs/Error.md +0 -11
- package/sdk/supplysources_v2020_07_01/docs/ErrorList.md +0 -9
- package/sdk/supplysources_v2020_07_01/docs/GetSupplySourcesResponse.md +0 -10
- package/sdk/supplysources_v2020_07_01/docs/InStorePickupConfiguration.md +0 -10
- package/sdk/supplysources_v2020_07_01/docs/OperatingHour.md +0 -10
- package/sdk/supplysources_v2020_07_01/docs/OperatingHoursByDay.md +0 -15
- package/sdk/supplysources_v2020_07_01/docs/OperationalConfiguration.md +0 -12
- package/sdk/supplysources_v2020_07_01/docs/OutboundCapability.md +0 -13
- package/sdk/supplysources_v2020_07_01/docs/ParkingConfiguration.md +0 -11
- package/sdk/supplysources_v2020_07_01/docs/ParkingCostType.md +0 -10
- package/sdk/supplysources_v2020_07_01/docs/ParkingSpotIdentificationType.md +0 -10
- package/sdk/supplysources_v2020_07_01/docs/ParkingWithAddressConfiguration.md +0 -12
- package/sdk/supplysources_v2020_07_01/docs/PickupChannel.md +0 -13
- package/sdk/supplysources_v2020_07_01/docs/ReturnLocation.md +0 -10
- package/sdk/supplysources_v2020_07_01/docs/ServicesCapability.md +0 -10
- package/sdk/supplysources_v2020_07_01/docs/SupplySource.md +0 -17
- package/sdk/supplysources_v2020_07_01/docs/SupplySourceCapabilities.md +0 -10
- package/sdk/supplysources_v2020_07_01/docs/SupplySourceConfiguration.md +0 -10
- package/sdk/supplysources_v2020_07_01/docs/SupplySourceListInner.md +0 -12
- package/sdk/supplysources_v2020_07_01/docs/SupplySourceStatus.md +0 -10
- package/sdk/supplysources_v2020_07_01/docs/SupplySourceStatusReadOnly.md +0 -12
- package/sdk/supplysources_v2020_07_01/docs/SupplySourcesApi.md +0 -290
- package/sdk/supplysources_v2020_07_01/docs/ThroughputCap.md +0 -10
- package/sdk/supplysources_v2020_07_01/docs/ThroughputConfig.md +0 -10
- package/sdk/supplysources_v2020_07_01/docs/ThroughputUnit.md +0 -8
- package/sdk/supplysources_v2020_07_01/docs/TimeUnit.md +0 -12
- package/sdk/supplysources_v2020_07_01/docs/UpdateSupplySourceRequest.md +0 -11
- package/sdk/supplysources_v2020_07_01/docs/UpdateSupplySourceStatusRequest.md +0 -9
- package/sdk/supplysources_v2020_07_01/src/ApiClient.js +0 -740
- package/sdk/supplysources_v2020_07_01/src/index.js +0 -288
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.api/SupplySourcesApi.js +0 -341
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/Address.js +0 -153
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/AddressWithContact.js +0 -73
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/ContactDetails.js +0 -65
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/ContactDetailsPrimary.js +0 -72
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/CreateSupplySourceRequest.js +0 -87
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/CreateSupplySourceResponse.js +0 -77
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/CurbsidePickupConfiguration.js +0 -81
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/DeliveryChannel.js +0 -72
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/Duration.js +0 -73
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/Error.js +0 -85
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/ErrorList.js +0 -68
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/GetSupplySourcesResponse.js +0 -74
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/InStorePickupConfiguration.js +0 -73
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/OperatingHour.js +0 -73
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/OperatingHoursByDay.js +0 -114
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/OperationalConfiguration.js +0 -89
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/OutboundCapability.js +0 -96
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/ParkingConfiguration.js +0 -81
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/ParkingCostType.js +0 -46
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/ParkingSpotIdentificationType.js +0 -46
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/ParkingWithAddressConfiguration.js +0 -110
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/PickupChannel.js +0 -96
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/ReturnLocation.js +0 -73
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/ServicesCapability.js +0 -73
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/SupplySource.js +0 -129
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/SupplySourceCapabilities.js +0 -73
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/SupplySourceConfiguration.js +0 -73
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/SupplySourceListInner.js +0 -88
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/SupplySourceStatus.js +0 -46
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/SupplySourceStatusReadOnly.js +0 -53
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/ThroughputCap.js +0 -73
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/ThroughputConfig.js +0 -75
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/ThroughputUnit.js +0 -39
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/TimeUnit.js +0 -53
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/UpdateSupplySourceRequest.js +0 -81
- package/sdk/supplysources_v2020_07_01/src/js_client.supplysources_v2020_07_01.model/UpdateSupplySourceStatusRequest.js +0 -65
- package/sdk/tokens_v2021_03_01/README.md +0 -36
- package/sdk/tokens_v2021_03_01/docs/CreateRestrictedDataTokenRequest.md +0 -10
- package/sdk/tokens_v2021_03_01/docs/CreateRestrictedDataTokenResponse.md +0 -10
- package/sdk/tokens_v2021_03_01/docs/Error.md +0 -11
- package/sdk/tokens_v2021_03_01/docs/ErrorList.md +0 -9
- package/sdk/tokens_v2021_03_01/docs/RestrictedResource.md +0 -26
- package/sdk/tokens_v2021_03_01/docs/TokensApi.md +0 -53
- package/sdk/tokens_v2021_03_01/src/ApiClient.js +0 -740
- package/sdk/tokens_v2021_03_01/src/index.js +0 -71
- package/sdk/tokens_v2021_03_01/src/js_client.tokens_v2021_03_01.api/TokensApi.js +0 -86
- package/sdk/tokens_v2021_03_01/src/js_client.tokens_v2021_03_01.model/CreateRestrictedDataTokenRequest.js +0 -76
- package/sdk/tokens_v2021_03_01/src/js_client.tokens_v2021_03_01.model/CreateRestrictedDataTokenResponse.js +0 -73
- package/sdk/tokens_v2021_03_01/src/js_client.tokens_v2021_03_01.model/Error.js +0 -85
- package/sdk/tokens_v2021_03_01/src/js_client.tokens_v2021_03_01.model/ErrorList.js +0 -65
- package/sdk/tokens_v2021_03_01/src/js_client.tokens_v2021_03_01.model/RestrictedResource.js +0 -117
- package/sdk/transfers_v2024_06_01/README.md +0 -39
- package/sdk/transfers_v2024_06_01/docs/AssignmentType.md +0 -8
- package/sdk/transfers_v2024_06_01/docs/DefaultApi.md +0 -102
- package/sdk/transfers_v2024_06_01/docs/Error.md +0 -11
- package/sdk/transfers_v2024_06_01/docs/ErrorList.md +0 -9
- package/sdk/transfers_v2024_06_01/docs/ExpiryDate.md +0 -10
- package/sdk/transfers_v2024_06_01/docs/GetPaymentMethodsResponse.md +0 -9
- package/sdk/transfers_v2024_06_01/docs/InitiatePayoutRequest.md +0 -10
- package/sdk/transfers_v2024_06_01/docs/InitiatePayoutResponse.md +0 -9
- package/sdk/transfers_v2024_06_01/docs/PaymentMethodDetails.md +0 -15
- package/sdk/transfers_v2024_06_01/docs/PaymentMethodType.md +0 -12
- package/sdk/transfers_v2024_06_01/src/ApiClient.js +0 -740
- package/sdk/transfers_v2024_06_01/src/index.js +0 -99
- package/sdk/transfers_v2024_06_01/src/js_client.transfers_v2024_06_01.api/DefaultApi.js +0 -141
- package/sdk/transfers_v2024_06_01/src/js_client.transfers_v2024_06_01.model/AssignmentType.js +0 -39
- package/sdk/transfers_v2024_06_01/src/js_client.transfers_v2024_06_01.model/Error.js +0 -85
- package/sdk/transfers_v2024_06_01/src/js_client.transfers_v2024_06_01.model/ErrorList.js +0 -68
- package/sdk/transfers_v2024_06_01/src/js_client.transfers_v2024_06_01.model/ExpiryDate.js +0 -73
- package/sdk/transfers_v2024_06_01/src/js_client.transfers_v2024_06_01.model/GetPaymentMethodsResponse.js +0 -66
- package/sdk/transfers_v2024_06_01/src/js_client.transfers_v2024_06_01.model/InitiatePayoutRequest.js +0 -77
- package/sdk/transfers_v2024_06_01/src/js_client.transfers_v2024_06_01.model/InitiatePayoutResponse.js +0 -67
- package/sdk/transfers_v2024_06_01/src/js_client.transfers_v2024_06_01.model/PaymentMethodDetails.js +0 -113
- package/sdk/transfers_v2024_06_01/src/js_client.transfers_v2024_06_01.model/PaymentMethodType.js +0 -53
- package/sdk/uploads_v2020_11_01/README.md +0 -32
- package/sdk/uploads_v2020_11_01/docs/CreateUploadDestinationResponse.md +0 -10
- package/sdk/uploads_v2020_11_01/docs/Error.md +0 -11
- package/sdk/uploads_v2020_11_01/docs/UploadDestination.md +0 -11
- package/sdk/uploads_v2020_11_01/docs/UploadsApi.md +0 -61
- package/sdk/uploads_v2020_11_01/src/ApiClient.js +0 -740
- package/sdk/uploads_v2020_11_01/src/index.js +0 -57
- package/sdk/uploads_v2020_11_01/src/js_client.uploads_v2020_11_01.api/UploadsApi.js +0 -107
- package/sdk/uploads_v2020_11_01/src/js_client.uploads_v2020_11_01.model/CreateUploadDestinationResponse.js +0 -74
- package/sdk/uploads_v2020_11_01/src/js_client.uploads_v2020_11_01.model/Error.js +0 -85
- package/sdk/uploads_v2020_11_01/src/js_client.uploads_v2020_11_01.model/UploadDestination.js +0 -81
- package/sdk/vehicles_v2024_11_01/README.md +0 -41
- package/sdk/vehicles_v2024_11_01/docs/AutomotiveApi.md +0 -61
- package/sdk/vehicles_v2024_11_01/docs/EngineOutput.md +0 -10
- package/sdk/vehicles_v2024_11_01/docs/EngineOutputUnit.md +0 -10
- package/sdk/vehicles_v2024_11_01/docs/Error.md +0 -11
- package/sdk/vehicles_v2024_11_01/docs/ErrorList.md +0 -9
- package/sdk/vehicles_v2024_11_01/docs/MonthAndYear.md +0 -10
- package/sdk/vehicles_v2024_11_01/docs/Pagination.md +0 -10
- package/sdk/vehicles_v2024_11_01/docs/Vehicle.md +0 -20
- package/sdk/vehicles_v2024_11_01/docs/VehicleIdentifiers.md +0 -10
- package/sdk/vehicles_v2024_11_01/docs/VehicleStandard.md +0 -10
- package/sdk/vehicles_v2024_11_01/docs/VehicleStatusInCatalog.md +0 -10
- package/sdk/vehicles_v2024_11_01/docs/VehiclesApi.md +0 -61
- package/sdk/vehicles_v2024_11_01/docs/VehiclesResponse.md +0 -10
- package/sdk/vehicles_v2024_11_01/src/ApiClient.js +0 -740
- package/sdk/vehicles_v2024_11_01/src/index.js +0 -120
- package/sdk/vehicles_v2024_11_01/src/js_client.vehicles_v2024_11_01.api/AutomotiveApi.js +0 -103
- package/sdk/vehicles_v2024_11_01/src/js_client.vehicles_v2024_11_01.api/VehiclesApi.js +0 -103
- package/sdk/vehicles_v2024_11_01/src/js_client.vehicles_v2024_11_01.model/EngineOutput.js +0 -77
- package/sdk/vehicles_v2024_11_01/src/js_client.vehicles_v2024_11_01.model/EngineOutputUnit.js +0 -46
- package/sdk/vehicles_v2024_11_01/src/js_client.vehicles_v2024_11_01.model/Error.js +0 -85
- package/sdk/vehicles_v2024_11_01/src/js_client.vehicles_v2024_11_01.model/ErrorList.js +0 -68
- package/sdk/vehicles_v2024_11_01/src/js_client.vehicles_v2024_11_01.model/MonthAndYear.js +0 -73
- package/sdk/vehicles_v2024_11_01/src/js_client.vehicles_v2024_11_01.model/Pagination.js +0 -73
- package/sdk/vehicles_v2024_11_01/src/js_client.vehicles_v2024_11_01.model/Vehicle.js +0 -160
- package/sdk/vehicles_v2024_11_01/src/js_client.vehicles_v2024_11_01.model/VehicleIdentifiers.js +0 -77
- package/sdk/vehicles_v2024_11_01/src/js_client.vehicles_v2024_11_01.model/VehicleStandard.js +0 -46
- package/sdk/vehicles_v2024_11_01/src/js_client.vehicles_v2024_11_01.model/VehicleStatusInCatalog.js +0 -46
- package/sdk/vehicles_v2024_11_01/src/js_client.vehicles_v2024_11_01.model/VehiclesResponse.js +0 -76
- package/sdk/vendordfinventory_v1/README.md +0 -37
- package/sdk/vendordfinventory_v1/docs/Error.md +0 -11
- package/sdk/vendordfinventory_v1/docs/InventoryUpdate.md +0 -11
- package/sdk/vendordfinventory_v1/docs/ItemDetails.md +0 -12
- package/sdk/vendordfinventory_v1/docs/ItemQuantity.md +0 -10
- package/sdk/vendordfinventory_v1/docs/PartyIdentification.md +0 -9
- package/sdk/vendordfinventory_v1/docs/SubmitInventoryUpdateRequest.md +0 -9
- package/sdk/vendordfinventory_v1/docs/SubmitInventoryUpdateResponse.md +0 -10
- package/sdk/vendordfinventory_v1/docs/TransactionReference.md +0 -9
- package/sdk/vendordfinventory_v1/docs/UpdateInventoryApi.md +0 -55
- package/sdk/vendordfinventory_v1/src/ApiClient.js +0 -740
- package/sdk/vendordfinventory_v1/src/index.js +0 -92
- package/sdk/vendordfinventory_v1/src/js_client.vendordfinventory_v1.api/UpdateInventoryApi.js +0 -93
- package/sdk/vendordfinventory_v1/src/js_client.vendordfinventory_v1.model/Error.js +0 -85
- package/sdk/vendordfinventory_v1/src/js_client.vendordfinventory_v1.model/InventoryUpdate.js +0 -88
- package/sdk/vendordfinventory_v1/src/js_client.vendordfinventory_v1.model/ItemDetails.js +0 -91
- package/sdk/vendordfinventory_v1/src/js_client.vendordfinventory_v1.model/ItemQuantity.js +0 -75
- package/sdk/vendordfinventory_v1/src/js_client.vendordfinventory_v1.model/PartyIdentification.js +0 -67
- package/sdk/vendordfinventory_v1/src/js_client.vendordfinventory_v1.model/SubmitInventoryUpdateRequest.js +0 -65
- package/sdk/vendordfinventory_v1/src/js_client.vendordfinventory_v1.model/SubmitInventoryUpdateResponse.js +0 -74
- package/sdk/vendordfinventory_v1/src/js_client.vendordfinventory_v1.model/TransactionReference.js +0 -65
- package/sdk/vendordforders_v2021_12_28/README.md +0 -56
- package/sdk/vendordforders_v2021_12_28/docs/AcknowledgementStatus.md +0 -10
- package/sdk/vendordforders_v2021_12_28/docs/Address.md +0 -20
- package/sdk/vendordforders_v2021_12_28/docs/BuyerCustomizedInfoDetail.md +0 -9
- package/sdk/vendordforders_v2021_12_28/docs/Error.md +0 -11
- package/sdk/vendordforders_v2021_12_28/docs/ErrorList.md +0 -9
- package/sdk/vendordforders_v2021_12_28/docs/GiftDetails.md +0 -10
- package/sdk/vendordforders_v2021_12_28/docs/ItemQuantity.md +0 -19
- package/sdk/vendordforders_v2021_12_28/docs/Money.md +0 -10
- package/sdk/vendordforders_v2021_12_28/docs/Order.md +0 -10
- package/sdk/vendordforders_v2021_12_28/docs/OrderAcknowledgementItem.md +0 -15
- package/sdk/vendordforders_v2021_12_28/docs/OrderDetails.md +0 -33
- package/sdk/vendordforders_v2021_12_28/docs/OrderItem.md +0 -19
- package/sdk/vendordforders_v2021_12_28/docs/OrderItemAcknowledgement.md +0 -12
- package/sdk/vendordforders_v2021_12_28/docs/OrderList.md +0 -10
- package/sdk/vendordforders_v2021_12_28/docs/Pagination.md +0 -9
- package/sdk/vendordforders_v2021_12_28/docs/PartyIdentification.md +0 -11
- package/sdk/vendordforders_v2021_12_28/docs/ScheduledDeliveryShipment.md +0 -11
- package/sdk/vendordforders_v2021_12_28/docs/ShipmentDates.md +0 -10
- package/sdk/vendordforders_v2021_12_28/docs/ShipmentDetails.md +0 -15
- package/sdk/vendordforders_v2021_12_28/docs/SubmitAcknowledgementRequest.md +0 -9
- package/sdk/vendordforders_v2021_12_28/docs/SubmitAcknowledgementResponse.md +0 -10
- package/sdk/vendordforders_v2021_12_28/docs/TaxDetails.md +0 -33
- package/sdk/vendordforders_v2021_12_28/docs/TaxItemDetails.md +0 -9
- package/sdk/vendordforders_v2021_12_28/docs/TaxRegistrationDetails.md +0 -23
- package/sdk/vendordforders_v2021_12_28/docs/TransactionId.md +0 -9
- package/sdk/vendordforders_v2021_12_28/docs/VendorOrdersApi.md +0 -159
- package/sdk/vendordforders_v2021_12_28/src/ApiClient.js +0 -740
- package/sdk/vendordforders_v2021_12_28/src/index.js +0 -211
- package/sdk/vendordforders_v2021_12_28/src/js_client.vendordforders_v2021_12_28.api/VendorOrdersApi.js +0 -213
- package/sdk/vendordforders_v2021_12_28/src/js_client.vendordforders_v2021_12_28.model/AcknowledgementStatus.js +0 -73
- package/sdk/vendordforders_v2021_12_28/src/js_client.vendordforders_v2021_12_28.model/Address.js +0 -161
- package/sdk/vendordforders_v2021_12_28/src/js_client.vendordforders_v2021_12_28.model/BuyerCustomizedInfoDetail.js +0 -65
- package/sdk/vendordforders_v2021_12_28/src/js_client.vendordforders_v2021_12_28.model/Error.js +0 -85
- package/sdk/vendordforders_v2021_12_28/src/js_client.vendordforders_v2021_12_28.model/ErrorList.js +0 -68
- package/sdk/vendordforders_v2021_12_28/src/js_client.vendordforders_v2021_12_28.model/GiftDetails.js +0 -73
- package/sdk/vendordforders_v2021_12_28/src/js_client.vendordforders_v2021_12_28.model/ItemQuantity.js +0 -87
- package/sdk/vendordforders_v2021_12_28/src/js_client.vendordforders_v2021_12_28.model/Money.js +0 -73
- package/sdk/vendordforders_v2021_12_28/src/js_client.vendordforders_v2021_12_28.model/Order.js +0 -75
- package/sdk/vendordforders_v2021_12_28/src/js_client.vendordforders_v2021_12_28.model/OrderAcknowledgementItem.js +0 -127
- package/sdk/vendordforders_v2021_12_28/src/js_client.vendordforders_v2021_12_28.model/OrderDetails.js +0 -184
- package/sdk/vendordforders_v2021_12_28/src/js_client.vendordforders_v2021_12_28.model/OrderItem.js +0 -150
- package/sdk/vendordforders_v2021_12_28/src/js_client.vendordforders_v2021_12_28.model/OrderItemAcknowledgement.js +0 -93
- package/sdk/vendordforders_v2021_12_28/src/js_client.vendordforders_v2021_12_28.model/OrderList.js +0 -74
- package/sdk/vendordforders_v2021_12_28/src/js_client.vendordforders_v2021_12_28.model/Pagination.js +0 -65
- package/sdk/vendordforders_v2021_12_28/src/js_client.vendordforders_v2021_12_28.model/PartyIdentification.js +0 -83
- package/sdk/vendordforders_v2021_12_28/src/js_client.vendordforders_v2021_12_28.model/ScheduledDeliveryShipment.js +0 -81
- package/sdk/vendordforders_v2021_12_28/src/js_client.vendordforders_v2021_12_28.model/ShipmentDates.js +0 -75
- package/sdk/vendordforders_v2021_12_28/src/js_client.vendordforders_v2021_12_28.model/ShipmentDetails.js +0 -123
- package/sdk/vendordforders_v2021_12_28/src/js_client.vendordforders_v2021_12_28.model/SubmitAcknowledgementRequest.js +0 -66
- package/sdk/vendordforders_v2021_12_28/src/js_client.vendordforders_v2021_12_28.model/SubmitAcknowledgementResponse.js +0 -73
- package/sdk/vendordforders_v2021_12_28/src/js_client.vendordforders_v2021_12_28.model/TaxDetails.js +0 -140
- package/sdk/vendordforders_v2021_12_28/src/js_client.vendordforders_v2021_12_28.model/TaxItemDetails.js +0 -66
- package/sdk/vendordforders_v2021_12_28/src/js_client.vendordforders_v2021_12_28.model/TaxRegistrationDetails.js +0 -111
- package/sdk/vendordforders_v2021_12_28/src/js_client.vendordforders_v2021_12_28.model/TransactionId.js +0 -65
- package/sdk/vendordfpayments_v1/README.md +0 -43
- package/sdk/vendordfpayments_v1/docs/AdditionalDetails.md +0 -22
- package/sdk/vendordfpayments_v1/docs/Address.md +0 -19
- package/sdk/vendordfpayments_v1/docs/ChargeDetails.md +0 -32
- package/sdk/vendordfpayments_v1/docs/Error.md +0 -11
- package/sdk/vendordfpayments_v1/docs/InvoiceDetail.md +0 -21
- package/sdk/vendordfpayments_v1/docs/InvoiceItem.md +0 -18
- package/sdk/vendordfpayments_v1/docs/ItemQuantity.md +0 -10
- package/sdk/vendordfpayments_v1/docs/Money.md +0 -10
- package/sdk/vendordfpayments_v1/docs/PartyIdentification.md +0 -11
- package/sdk/vendordfpayments_v1/docs/SubmitInvoiceRequest.md +0 -9
- package/sdk/vendordfpayments_v1/docs/SubmitInvoiceResponse.md +0 -10
- package/sdk/vendordfpayments_v1/docs/TaxDetail.md +0 -47
- package/sdk/vendordfpayments_v1/docs/TaxRegistrationDetail.md +0 -23
- package/sdk/vendordfpayments_v1/docs/TransactionReference.md +0 -9
- package/sdk/vendordfpayments_v1/docs/VendorInvoiceApi.md +0 -53
- package/sdk/vendordfpayments_v1/src/ApiClient.js +0 -740
- package/sdk/vendordfpayments_v1/src/index.js +0 -134
- package/sdk/vendordfpayments_v1/src/js_client.vendordfpayments_v1.api/VendorInvoiceApi.js +0 -85
- package/sdk/vendordfpayments_v1/src/js_client.vendordfpayments_v1.model/AdditionalDetails.js +0 -105
- package/sdk/vendordfpayments_v1/src/js_client.vendordfpayments_v1.model/Address.js +0 -157
- package/sdk/vendordfpayments_v1/src/js_client.vendordfpayments_v1.model/ChargeDetails.js +0 -136
- package/sdk/vendordfpayments_v1/src/js_client.vendordfpayments_v1.model/Error.js +0 -85
- package/sdk/vendordfpayments_v1/src/js_client.vendordfpayments_v1.model/InvoiceDetail.js +0 -175
- package/sdk/vendordfpayments_v1/src/js_client.vendordfpayments_v1.model/InvoiceItem.js +0 -147
- package/sdk/vendordfpayments_v1/src/js_client.vendordfpayments_v1.model/ItemQuantity.js +0 -77
- package/sdk/vendordfpayments_v1/src/js_client.vendordfpayments_v1.model/Money.js +0 -77
- package/sdk/vendordfpayments_v1/src/js_client.vendordfpayments_v1.model/PartyIdentification.js +0 -84
- package/sdk/vendordfpayments_v1/src/js_client.vendordfpayments_v1.model/SubmitInvoiceRequest.js +0 -66
- package/sdk/vendordfpayments_v1/src/js_client.vendordfpayments_v1.model/SubmitInvoiceResponse.js +0 -74
- package/sdk/vendordfpayments_v1/src/js_client.vendordfpayments_v1.model/TaxDetail.js +0 -184
- package/sdk/vendordfpayments_v1/src/js_client.vendordfpayments_v1.model/TaxRegistrationDetail.js +0 -111
- package/sdk/vendordfpayments_v1/src/js_client.vendordfpayments_v1.model/TransactionReference.js +0 -65
- package/sdk/vendordfshipping_v2021_12_28/README.md +0 -75
- package/sdk/vendordfshipping_v2021_12_28/docs/Address.md +0 -19
- package/sdk/vendordfshipping_v2021_12_28/docs/CarrierId.md +0 -8
- package/sdk/vendordfshipping_v2021_12_28/docs/Container.md +0 -31
- package/sdk/vendordfshipping_v2021_12_28/docs/ContainerLabel.md +0 -11
- package/sdk/vendordfshipping_v2021_12_28/docs/ContainerLabelFormat.md +0 -10
- package/sdk/vendordfshipping_v2021_12_28/docs/CreateContainerLabelApi.md +0 -53
- package/sdk/vendordfshipping_v2021_12_28/docs/CreateContainerLabelRequest.md +0 -13
- package/sdk/vendordfshipping_v2021_12_28/docs/CreateContainerLabelResponse.md +0 -9
- package/sdk/vendordfshipping_v2021_12_28/docs/CreateShippingLabelsRequest.md +0 -11
- package/sdk/vendordfshipping_v2021_12_28/docs/CustomerInvoice.md +0 -10
- package/sdk/vendordfshipping_v2021_12_28/docs/CustomerInvoiceList.md +0 -10
- package/sdk/vendordfshipping_v2021_12_28/docs/CustomerInvoicesApi.md +0 -110
- package/sdk/vendordfshipping_v2021_12_28/docs/Dimensions.md +0 -23
- package/sdk/vendordfshipping_v2021_12_28/docs/Error.md +0 -11
- package/sdk/vendordfshipping_v2021_12_28/docs/ErrorList.md +0 -9
- package/sdk/vendordfshipping_v2021_12_28/docs/Item.md +0 -12
- package/sdk/vendordfshipping_v2021_12_28/docs/ItemQuantity.md +0 -10
- package/sdk/vendordfshipping_v2021_12_28/docs/LabelData.md +0 -13
- package/sdk/vendordfshipping_v2021_12_28/docs/Package.md +0 -9
- package/sdk/vendordfshipping_v2021_12_28/docs/PackedItem.md +0 -13
- package/sdk/vendordfshipping_v2021_12_28/docs/PackingSlip.md +0 -20
- package/sdk/vendordfshipping_v2021_12_28/docs/PackingSlipList.md +0 -10
- package/sdk/vendordfshipping_v2021_12_28/docs/Pagination.md +0 -9
- package/sdk/vendordfshipping_v2021_12_28/docs/PartyIdentification.md +0 -11
- package/sdk/vendordfshipping_v2021_12_28/docs/ShipmentConfirmation.md +0 -14
- package/sdk/vendordfshipping_v2021_12_28/docs/ShipmentDetails.md +0 -24
- package/sdk/vendordfshipping_v2021_12_28/docs/ShipmentSchedule.md +0 -11
- package/sdk/vendordfshipping_v2021_12_28/docs/ShipmentStatusUpdate.md +0 -12
- package/sdk/vendordfshipping_v2021_12_28/docs/ShippingLabel.md +0 -24
- package/sdk/vendordfshipping_v2021_12_28/docs/ShippingLabelList.md +0 -10
- package/sdk/vendordfshipping_v2021_12_28/docs/ShippingLabelRequest.md +0 -12
- package/sdk/vendordfshipping_v2021_12_28/docs/StatusUpdateDetails.md +0 -14
- package/sdk/vendordfshipping_v2021_12_28/docs/SubmitShipmentConfirmationsRequest.md +0 -9
- package/sdk/vendordfshipping_v2021_12_28/docs/SubmitShipmentStatusUpdatesRequest.md +0 -9
- package/sdk/vendordfshipping_v2021_12_28/docs/SubmitShippingLabelsRequest.md +0 -9
- package/sdk/vendordfshipping_v2021_12_28/docs/TaxRegistrationDetails.md +0 -23
- package/sdk/vendordfshipping_v2021_12_28/docs/TransactionReference.md +0 -9
- package/sdk/vendordfshipping_v2021_12_28/docs/VendorShippingApi.md +0 -200
- package/sdk/vendordfshipping_v2021_12_28/docs/VendorShippingLabelsApi.md +0 -202
- package/sdk/vendordfshipping_v2021_12_28/docs/Weight.md +0 -21
- package/sdk/vendordfshipping_v2021_12_28/src/ApiClient.js +0 -740
- package/sdk/vendordfshipping_v2021_12_28/src/index.js +0 -309
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.api/CreateContainerLabelApi.js +0 -88
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.api/CustomerInvoicesApi.js +0 -162
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.api/VendorShippingApi.js +0 -263
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.api/VendorShippingLabelsApi.js +0 -271
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/Address.js +0 -151
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/CarrierId.js +0 -39
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/Container.js +0 -182
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/ContainerLabel.js +0 -85
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/ContainerLabelFormat.js +0 -46
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/CreateContainerLabelRequest.js +0 -107
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/CreateContainerLabelResponse.js +0 -67
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/CreateShippingLabelsRequest.js +0 -85
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/CustomerInvoice.js +0 -77
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/CustomerInvoiceList.js +0 -74
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/Dimensions.js +0 -117
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/Error.js +0 -85
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/ErrorList.js +0 -68
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/Item.js +0 -93
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/ItemQuantity.js +0 -77
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/LabelData.js +0 -99
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/Package.js +0 -67
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/PackedItem.js +0 -101
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/PackingSlip.js +0 -99
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/PackingSlipList.js +0 -74
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/Pagination.js +0 -65
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/PartyIdentification.js +0 -84
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/ShipmentConfirmation.js +0 -116
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/ShipmentDetails.js +0 -121
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/ShipmentSchedule.js +0 -81
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/ShipmentStatusUpdate.js +0 -96
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/ShippingLabel.js +0 -127
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/ShippingLabelList.js +0 -74
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/ShippingLabelRequest.js +0 -95
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/StatusUpdateDetails.js +0 -115
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/SubmitShipmentConfirmationsRequest.js +0 -66
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/SubmitShipmentStatusUpdatesRequest.js +0 -66
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/SubmitShippingLabelsRequest.js +0 -66
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/TaxRegistrationDetails.js +0 -111
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/TransactionReference.js +0 -65
- package/sdk/vendordfshipping_v2021_12_28/src/js_client.vendordfshipping_v2021_12_28.model/Weight.js +0 -97
- package/sdk/vendordftransactions_v2021_12_28/README.md +0 -33
- package/sdk/vendordftransactions_v2021_12_28/docs/Error.md +0 -11
- package/sdk/vendordftransactions_v2021_12_28/docs/ErrorList.md +0 -9
- package/sdk/vendordftransactions_v2021_12_28/docs/Transaction.md +0 -24
- package/sdk/vendordftransactions_v2021_12_28/docs/TransactionStatus.md +0 -9
- package/sdk/vendordftransactions_v2021_12_28/docs/VendorTransactionApi.md +0 -53
- package/sdk/vendordftransactions_v2021_12_28/src/ApiClient.js +0 -740
- package/sdk/vendordftransactions_v2021_12_28/src/index.js +0 -64
- package/sdk/vendordftransactions_v2021_12_28/src/js_client.vendordftransactions_v2021_12_28.api/VendorTransactionApi.js +0 -87
- package/sdk/vendordftransactions_v2021_12_28/src/js_client.vendordftransactions_v2021_12_28.model/Error.js +0 -85
- package/sdk/vendordftransactions_v2021_12_28/src/js_client.vendordftransactions_v2021_12_28.model/ErrorList.js +0 -68
- package/sdk/vendordftransactions_v2021_12_28/src/js_client.vendordftransactions_v2021_12_28.model/Transaction.js +0 -111
- package/sdk/vendordftransactions_v2021_12_28/src/js_client.vendordftransactions_v2021_12_28.model/TransactionStatus.js +0 -65
- package/sdk/vendorinvoices_v1/README.md +0 -48
- package/sdk/vendorinvoices_v1/docs/AdditionalDetails.md +0 -24
- package/sdk/vendorinvoices_v1/docs/Address.md +0 -19
- package/sdk/vendorinvoices_v1/docs/AllowanceDetails.md +0 -31
- package/sdk/vendorinvoices_v1/docs/ChargeDetails.md +0 -41
- package/sdk/vendorinvoices_v1/docs/CreditNoteDetails.md +0 -15
- package/sdk/vendorinvoices_v1/docs/Error.md +0 -11
- package/sdk/vendorinvoices_v1/docs/Invoice.md +0 -34
- package/sdk/vendorinvoices_v1/docs/InvoiceItem.md +0 -20
- package/sdk/vendorinvoices_v1/docs/ItemQuantity.md +0 -23
- package/sdk/vendorinvoices_v1/docs/Money.md +0 -10
- package/sdk/vendorinvoices_v1/docs/NetCostUnitOfMeasure.md +0 -14
- package/sdk/vendorinvoices_v1/docs/PartyIdentification.md +0 -11
- package/sdk/vendorinvoices_v1/docs/PaymentTerms.md +0 -31
- package/sdk/vendorinvoices_v1/docs/SubmitInvoicesRequest.md +0 -9
- package/sdk/vendorinvoices_v1/docs/SubmitInvoicesResponse.md +0 -10
- package/sdk/vendorinvoices_v1/docs/TaxDetails.md +0 -47
- package/sdk/vendorinvoices_v1/docs/TaxRegistrationDetails.md +0 -21
- package/sdk/vendorinvoices_v1/docs/TotalWeight.md +0 -25
- package/sdk/vendorinvoices_v1/docs/TransactionId.md +0 -9
- package/sdk/vendorinvoices_v1/docs/VendorPaymentsApi.md +0 -53
- package/sdk/vendorinvoices_v1/src/ApiClient.js +0 -740
- package/sdk/vendorinvoices_v1/src/index.js +0 -169
- package/sdk/vendorinvoices_v1/src/js_client.vendorinvoices_v1.api/VendorPaymentsApi.js +0 -85
- package/sdk/vendorinvoices_v1/src/js_client.vendorinvoices_v1.model/AdditionalDetails.js +0 -111
- package/sdk/vendorinvoices_v1/src/js_client.vendorinvoices_v1.model/Address.js +0 -151
- package/sdk/vendorinvoices_v1/src/js_client.vendorinvoices_v1.model/AllowanceDetails.js +0 -138
- package/sdk/vendorinvoices_v1/src/js_client.vendorinvoices_v1.model/ChargeDetails.js +0 -168
- package/sdk/vendorinvoices_v1/src/js_client.vendorinvoices_v1.model/CreditNoteDetails.js +0 -113
- package/sdk/vendorinvoices_v1/src/js_client.vendorinvoices_v1.model/Error.js +0 -85
- package/sdk/vendorinvoices_v1/src/js_client.vendorinvoices_v1.model/Invoice.js +0 -209
- package/sdk/vendorinvoices_v1/src/js_client.vendorinvoices_v1.model/InvoiceItem.js +0 -162
- package/sdk/vendorinvoices_v1/src/js_client.vendorinvoices_v1.model/ItemQuantity.js +0 -113
- package/sdk/vendorinvoices_v1/src/js_client.vendorinvoices_v1.model/Money.js +0 -73
- package/sdk/vendorinvoices_v1/src/js_client.vendorinvoices_v1.model/NetCostUnitOfMeasure.js +0 -60
- package/sdk/vendorinvoices_v1/src/js_client.vendorinvoices_v1.model/PartyIdentification.js +0 -84
- package/sdk/vendorinvoices_v1/src/js_client.vendorinvoices_v1.model/PaymentTerms.js +0 -133
- package/sdk/vendorinvoices_v1/src/js_client.vendorinvoices_v1.model/SubmitInvoicesRequest.js +0 -66
- package/sdk/vendorinvoices_v1/src/js_client.vendorinvoices_v1.model/SubmitInvoicesResponse.js +0 -74
- package/sdk/vendorinvoices_v1/src/js_client.vendorinvoices_v1.model/TaxDetails.js +0 -184
- package/sdk/vendorinvoices_v1/src/js_client.vendorinvoices_v1.model/TaxRegistrationDetails.js +0 -97
- package/sdk/vendorinvoices_v1/src/js_client.vendorinvoices_v1.model/TotalWeight.js +0 -109
- package/sdk/vendorinvoices_v1/src/js_client.vendorinvoices_v1.model/TransactionId.js +0 -65
- package/sdk/vendororders_v1/README.md +0 -61
- package/sdk/vendororders_v1/docs/AcknowledgementStatusDetails.md +0 -11
- package/sdk/vendororders_v1/docs/Address.md +0 -19
- package/sdk/vendororders_v1/docs/Error.md +0 -11
- package/sdk/vendororders_v1/docs/GetPurchaseOrderResponse.md +0 -10
- package/sdk/vendororders_v1/docs/GetPurchaseOrdersResponse.md +0 -10
- package/sdk/vendororders_v1/docs/GetPurchaseOrdersStatusResponse.md +0 -10
- package/sdk/vendororders_v1/docs/ImportDetails.md +0 -61
- package/sdk/vendororders_v1/docs/ItemQuantity.md +0 -22
- package/sdk/vendororders_v1/docs/Money.md +0 -26
- package/sdk/vendororders_v1/docs/Order.md +0 -24
- package/sdk/vendororders_v1/docs/OrderAcknowledgement.md +0 -12
- package/sdk/vendororders_v1/docs/OrderAcknowledgementItem.md +0 -16
- package/sdk/vendororders_v1/docs/OrderDetails.md +0 -52
- package/sdk/vendororders_v1/docs/OrderItem.md +0 -15
- package/sdk/vendororders_v1/docs/OrderItemAcknowledgement.md +0 -39
- package/sdk/vendororders_v1/docs/OrderItemStatus.md +0 -16
- package/sdk/vendororders_v1/docs/OrderItemStatusAcknowledgementStatus.md +0 -27
- package/sdk/vendororders_v1/docs/OrderItemStatusOrderedQuantity.md +0 -10
- package/sdk/vendororders_v1/docs/OrderItemStatusReceivingStatus.md +0 -24
- package/sdk/vendororders_v1/docs/OrderList.md +0 -10
- package/sdk/vendororders_v1/docs/OrderListStatus.md +0 -10
- package/sdk/vendororders_v1/docs/OrderStatus.md +0 -26
- package/sdk/vendororders_v1/docs/OrderedQuantityDetails.md +0 -11
- package/sdk/vendororders_v1/docs/Pagination.md +0 -9
- package/sdk/vendororders_v1/docs/PartyIdentification.md +0 -11
- package/sdk/vendororders_v1/docs/SubmitAcknowledgementRequest.md +0 -9
- package/sdk/vendororders_v1/docs/SubmitAcknowledgementResponse.md +0 -10
- package/sdk/vendororders_v1/docs/TaxRegistrationDetails.md +0 -21
- package/sdk/vendororders_v1/docs/TransactionId.md +0 -9
- package/sdk/vendororders_v1/docs/VendorOrdersApi.md +0 -238
- package/sdk/vendororders_v1/src/ApiClient.js +0 -740
- package/sdk/vendororders_v1/src/index.js +0 -239
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.api/VendorOrdersApi.js +0 -297
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/AcknowledgementStatusDetails.js +0 -80
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/Address.js +0 -151
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/Error.js +0 -85
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/GetPurchaseOrderResponse.js +0 -74
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/GetPurchaseOrdersResponse.js +0 -74
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/GetPurchaseOrdersStatusResponse.js +0 -74
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/ImportDetails.js +0 -215
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/ItemQuantity.js +0 -101
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/Money.js +0 -113
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/Order.js +0 -111
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/OrderAcknowledgement.js +0 -98
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/OrderAcknowledgementItem.js +0 -125
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/OrderDetails.js +0 -237
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/OrderItem.js +0 -118
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/OrderItemAcknowledgement.js +0 -153
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/OrderItemStatus.js +0 -122
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/OrderItemStatusAcknowledgementStatus.js +0 -121
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/OrderItemStatusOrderedQuantity.js +0 -74
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/OrderItemStatusReceivingStatus.js +0 -107
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/OrderList.js +0 -74
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/OrderListStatus.js +0 -74
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/OrderStatus.js +0 -145
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/OrderedQuantityDetails.js +0 -80
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/Pagination.js +0 -65
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/PartyIdentification.js +0 -83
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/SubmitAcknowledgementRequest.js +0 -66
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/SubmitAcknowledgementResponse.js +0 -74
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/TaxRegistrationDetails.js +0 -97
- package/sdk/vendororders_v1/src/js_client.vendororders_v1.model/TransactionId.js +0 -65
- package/sdk/vendorshipments_v1/README.md +0 -86
- package/sdk/vendorshipments_v1/docs/Address.md +0 -19
- package/sdk/vendorshipments_v1/docs/CarrierDetails.md +0 -13
- package/sdk/vendorshipments_v1/docs/Carton.md +0 -14
- package/sdk/vendorshipments_v1/docs/CartonReferenceDetails.md +0 -10
- package/sdk/vendorshipments_v1/docs/CollectFreightPickupDetails.md +0 -11
- package/sdk/vendorshipments_v1/docs/ContainerIdentification.md +0 -27
- package/sdk/vendorshipments_v1/docs/ContainerItem.md +0 -11
- package/sdk/vendorshipments_v1/docs/ContainerSequenceNumbers.md +0 -9
- package/sdk/vendorshipments_v1/docs/Containers.md +0 -29
- package/sdk/vendorshipments_v1/docs/Dimensions.md +0 -27
- package/sdk/vendorshipments_v1/docs/Duration.md +0 -21
- package/sdk/vendorshipments_v1/docs/Error.md +0 -11
- package/sdk/vendorshipments_v1/docs/Expiry.md +0 -11
- package/sdk/vendorshipments_v1/docs/GetShipmentDetailsResponse.md +0 -10
- package/sdk/vendorshipments_v1/docs/GetShipmentLabels.md +0 -10
- package/sdk/vendorshipments_v1/docs/ImportDetails.md +0 -49
- package/sdk/vendorshipments_v1/docs/InnerContainersDetails.md +0 -10
- package/sdk/vendorshipments_v1/docs/Item.md +0 -13
- package/sdk/vendorshipments_v1/docs/ItemDetails.md +0 -28
- package/sdk/vendorshipments_v1/docs/ItemQuantity.md +0 -23
- package/sdk/vendorshipments_v1/docs/LabelData.md +0 -22
- package/sdk/vendorshipments_v1/docs/Location.md +0 -11
- package/sdk/vendorshipments_v1/docs/Money.md +0 -10
- package/sdk/vendorshipments_v1/docs/PackageItemDetails.md +0 -11
- package/sdk/vendorshipments_v1/docs/PackedItems.md +0 -13
- package/sdk/vendorshipments_v1/docs/PackedQuantity.md +0 -22
- package/sdk/vendorshipments_v1/docs/Pagination.md +0 -9
- package/sdk/vendorshipments_v1/docs/Pallet.md +0 -15
- package/sdk/vendorshipments_v1/docs/PartyIdentification.md +0 -11
- package/sdk/vendorshipments_v1/docs/PurchaseOrderItemDetails.md +0 -9
- package/sdk/vendorshipments_v1/docs/PurchaseOrderItems.md +0 -13
- package/sdk/vendorshipments_v1/docs/PurchaseOrders.md +0 -12
- package/sdk/vendorshipments_v1/docs/Route.md +0 -9
- package/sdk/vendorshipments_v1/docs/Shipment.md +0 -65
- package/sdk/vendorshipments_v1/docs/ShipmentConfirmation.md +0 -70
- package/sdk/vendorshipments_v1/docs/ShipmentDetails.md +0 -10
- package/sdk/vendorshipments_v1/docs/ShipmentInformation.md +0 -27
- package/sdk/vendorshipments_v1/docs/ShipmentMeasurements.md +0 -12
- package/sdk/vendorshipments_v1/docs/ShipmentStatusDetails.md +0 -25
- package/sdk/vendorshipments_v1/docs/Stop.md +0 -25
- package/sdk/vendorshipments_v1/docs/SubmitShipmentConfirmationsRequest.md +0 -9
- package/sdk/vendorshipments_v1/docs/SubmitShipmentConfirmationsResponse.md +0 -10
- package/sdk/vendorshipments_v1/docs/SubmitShipments.md +0 -9
- package/sdk/vendorshipments_v1/docs/TaxRegistrationDetails.md +0 -21
- package/sdk/vendorshipments_v1/docs/TotalWeight.md +0 -25
- package/sdk/vendorshipments_v1/docs/TransactionReference.md +0 -9
- package/sdk/vendorshipments_v1/docs/TransportLabel.md +0 -11
- package/sdk/vendorshipments_v1/docs/TransportShipmentMeasurements.md +0 -13
- package/sdk/vendorshipments_v1/docs/TransportationDetails.md +0 -41
- package/sdk/vendorshipments_v1/docs/TransportationDetailsForShipmentConfirmation.md +0 -25
- package/sdk/vendorshipments_v1/docs/TransportationLabels.md +0 -10
- package/sdk/vendorshipments_v1/docs/VendorDetails.md +0 -10
- package/sdk/vendorshipments_v1/docs/VendorShippingApi.md +0 -252
- package/sdk/vendorshipments_v1/docs/Volume.md +0 -25
- package/sdk/vendorshipments_v1/docs/Weight.md +0 -25
- package/sdk/vendorshipments_v1/src/ApiClient.js +0 -740
- package/sdk/vendorshipments_v1/src/index.js +0 -414
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.api/VendorShippingApi.js +0 -323
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/Address.js +0 -151
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/CarrierDetails.js +0 -97
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/Carton.js +0 -111
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/CartonReferenceDetails.js +0 -75
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/CollectFreightPickupDetails.js +0 -81
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/ContainerIdentification.js +0 -115
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/ContainerItem.js +0 -85
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/ContainerSequenceNumbers.js +0 -65
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/Containers.js +0 -163
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/Dimensions.js +0 -129
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/Duration.js +0 -97
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/Error.js +0 -85
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/Expiry.js +0 -81
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/GetShipmentDetailsResponse.js +0 -74
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/GetShipmentLabels.js +0 -74
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/ImportDetails.js +0 -189
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/InnerContainersDetails.js +0 -74
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/Item.js +0 -101
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/ItemDetails.js +0 -129
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/ItemQuantity.js +0 -113
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/LabelData.js +0 -111
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/Location.js +0 -81
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/Money.js +0 -77
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/PackageItemDetails.js +0 -81
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/PackedItems.js +0 -97
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/PackedQuantity.js +0 -105
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/Pagination.js +0 -65
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/Pallet.js +0 -117
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/PartyIdentification.js +0 -84
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/PurchaseOrderItemDetails.js +0 -65
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/PurchaseOrderItems.js +0 -101
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/PurchaseOrders.js +0 -90
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/Route.js +0 -68
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/Shipment.js +0 -302
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/ShipmentConfirmation.js +0 -304
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/ShipmentDetails.js +0 -74
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/ShipmentInformation.js +0 -140
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/ShipmentMeasurements.js +0 -89
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/ShipmentStatusDetails.js +0 -105
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/Stop.js +0 -117
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/SubmitShipmentConfirmationsRequest.js +0 -66
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/SubmitShipmentConfirmationsResponse.js +0 -74
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/SubmitShipments.js +0 -66
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/TaxRegistrationDetails.js +0 -97
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/TotalWeight.js +0 -109
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/TransactionReference.js +0 -65
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/TransportLabel.js +0 -82
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/TransportShipmentMeasurements.js +0 -97
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/TransportationDetails.js +0 -165
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/TransportationDetailsForShipmentConfirmation.js +0 -115
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/TransportationLabels.js +0 -74
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/VendorDetails.js +0 -73
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/Volume.js +0 -109
- package/sdk/vendorshipments_v1/src/js_client.vendorshipments_v1.model/Weight.js +0 -109
- package/sdk/vendortransactionstatus_v1/README.md +0 -33
- package/sdk/vendortransactionstatus_v1/docs/Error.md +0 -11
- package/sdk/vendortransactionstatus_v1/docs/GetTransactionResponse.md +0 -10
- package/sdk/vendortransactionstatus_v1/docs/Transaction.md +0 -24
- package/sdk/vendortransactionstatus_v1/docs/TransactionStatus.md +0 -9
- package/sdk/vendortransactionstatus_v1/docs/VendorTransactionApi.md +0 -53
- package/sdk/vendortransactionstatus_v1/src/ApiClient.js +0 -740
- package/sdk/vendortransactionstatus_v1/src/index.js +0 -64
- package/sdk/vendortransactionstatus_v1/src/js_client.vendortransactionstatus_v1.api/VendorTransactionApi.js +0 -85
- package/sdk/vendortransactionstatus_v1/src/js_client.vendortransactionstatus_v1.model/Error.js +0 -85
- package/sdk/vendortransactionstatus_v1/src/js_client.vendortransactionstatus_v1.model/GetTransactionResponse.js +0 -74
- package/sdk/vendortransactionstatus_v1/src/js_client.vendortransactionstatus_v1.model/Transaction.js +0 -112
- package/sdk/vendortransactionstatus_v1/src/js_client.vendortransactionstatus_v1.model/TransactionStatus.js +0 -65
- package/src/sample-node-app/index.js +0 -28
- /package/{src/helper → helper}/LwaAuthClient.mjs +0 -0
- /package/{src/sample-node-app → sample-node-app}/app.config.mjs +0 -0
|
@@ -0,0 +1,1208 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Amazon Shipping API
|
|
3
|
+
* The Amazon Shipping API is designed to support outbound shipping use cases both for orders originating on Amazon-owned marketplaces as well as external channels/marketplaces. With these APIs, you can request shipping rates, create shipments, cancel shipments, and track shipments.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v2
|
|
6
|
+
* Contact: swa-api-core@amazon.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*
|
|
12
|
+
*/
|
|
13
|
+
|
|
14
|
+
import {ApiClient} from "../ApiClient.js";
|
|
15
|
+
import {CancelShipmentResponse} from '../model/CancelShipmentResponse.js';
|
|
16
|
+
import {CreateClaimRequest} from '../model/CreateClaimRequest.js';
|
|
17
|
+
import {CreateClaimResponse} from '../model/CreateClaimResponse.js';
|
|
18
|
+
import {DirectPurchaseRequest} from '../model/DirectPurchaseRequest.js';
|
|
19
|
+
import {DirectPurchaseResponse} from '../model/DirectPurchaseResponse.js';
|
|
20
|
+
import {ErrorList} from '../model/ErrorList.js';
|
|
21
|
+
import {GenerateCollectionFormRequest} from '../model/GenerateCollectionFormRequest.js';
|
|
22
|
+
import {GenerateCollectionFormResponse} from '../model/GenerateCollectionFormResponse.js';
|
|
23
|
+
import {GetAccessPointsResponse} from '../model/GetAccessPointsResponse.js';
|
|
24
|
+
import {GetAdditionalInputsResponse} from '../model/GetAdditionalInputsResponse.js';
|
|
25
|
+
import {GetCarrierAccountFormInputsResponse} from '../model/GetCarrierAccountFormInputsResponse.js';
|
|
26
|
+
import {GetCarrierAccountsRequest} from '../model/GetCarrierAccountsRequest.js';
|
|
27
|
+
import {GetCarrierAccountsResponse} from '../model/GetCarrierAccountsResponse.js';
|
|
28
|
+
import {GetCollectionFormHistoryRequest} from '../model/GetCollectionFormHistoryRequest.js';
|
|
29
|
+
import {GetCollectionFormHistoryResponse} from '../model/GetCollectionFormHistoryResponse.js';
|
|
30
|
+
import {GetCollectionFormResponse} from '../model/GetCollectionFormResponse.js';
|
|
31
|
+
import {GetRatesRequest} from '../model/GetRatesRequest.js';
|
|
32
|
+
import {GetRatesResponse} from '../model/GetRatesResponse.js';
|
|
33
|
+
import {GetShipmentDocumentsResponse} from '../model/GetShipmentDocumentsResponse.js';
|
|
34
|
+
import {GetTrackingResponse} from '../model/GetTrackingResponse.js';
|
|
35
|
+
import {GetUnmanifestedShipmentsRequest} from '../model/GetUnmanifestedShipmentsRequest.js';
|
|
36
|
+
import {GetUnmanifestedShipmentsResponse} from '../model/GetUnmanifestedShipmentsResponse.js';
|
|
37
|
+
import {LinkCarrierAccountRequest} from '../model/LinkCarrierAccountRequest.js';
|
|
38
|
+
import {LinkCarrierAccountResponse} from '../model/LinkCarrierAccountResponse.js';
|
|
39
|
+
import {OneClickShipmentRequest} from '../model/OneClickShipmentRequest.js';
|
|
40
|
+
import {OneClickShipmentResponse} from '../model/OneClickShipmentResponse.js';
|
|
41
|
+
import {PurchaseShipmentRequest} from '../model/PurchaseShipmentRequest.js';
|
|
42
|
+
import {PurchaseShipmentResponse} from '../model/PurchaseShipmentResponse.js';
|
|
43
|
+
import {SubmitNdrFeedbackRequest} from '../model/SubmitNdrFeedbackRequest.js';
|
|
44
|
+
import {UnlinkCarrierAccountRequest} from '../model/UnlinkCarrierAccountRequest.js';
|
|
45
|
+
import {UnlinkCarrierAccountResponse} from '../model/UnlinkCarrierAccountResponse.js';
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Shipping service.
|
|
49
|
+
* @module shipping_v2/api/ShippingApi
|
|
50
|
+
* @version v2
|
|
51
|
+
*/
|
|
52
|
+
export class ShippingApi {
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Constructs a new ShippingApi.
|
|
56
|
+
* @alias module:shipping_v2/api/ShippingApi
|
|
57
|
+
* @class
|
|
58
|
+
* @param {module:shipping_v2/ApiClient} [apiClient] Optional API client implementation to use,
|
|
59
|
+
* default to {@link module:shipping_v2/ApiClient#instance} if unspecified.
|
|
60
|
+
*/
|
|
61
|
+
constructor(apiClient) {
|
|
62
|
+
this.apiClient = apiClient || ApiClient.instance;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* Cancels a purchased shipment. Returns an empty object if the shipment is successfully cancelled. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
69
|
+
* @param {String} shipmentId The shipment identifier originally returned by the purchaseShipment operation.
|
|
70
|
+
* @param {Object} opts Optional parameters
|
|
71
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
72
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:shipping_v2/model/CancelShipmentResponse} and HTTP response
|
|
73
|
+
*/
|
|
74
|
+
cancelShipmentWithHttpInfo(shipmentId, opts) {
|
|
75
|
+
opts = opts || {};
|
|
76
|
+
let postBody = null;
|
|
77
|
+
|
|
78
|
+
// verify the required parameter 'shipmentId' is set
|
|
79
|
+
if (shipmentId === undefined || shipmentId === null) {
|
|
80
|
+
throw new Error("Missing the required parameter 'shipmentId' when calling cancelShipment");
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
let pathParams = {
|
|
85
|
+
'shipmentId': shipmentId
|
|
86
|
+
};
|
|
87
|
+
let queryParams = {
|
|
88
|
+
};
|
|
89
|
+
let headerParams = {
|
|
90
|
+
'x-amzn-shipping-business-id': opts['xAmznShippingBusinessId']
|
|
91
|
+
};
|
|
92
|
+
let formParams = {
|
|
93
|
+
};
|
|
94
|
+
|
|
95
|
+
let contentTypes = [];
|
|
96
|
+
let accepts = ['application/json'];
|
|
97
|
+
let returnType = CancelShipmentResponse;
|
|
98
|
+
|
|
99
|
+
return this.apiClient.callApi(
|
|
100
|
+
'/shipping/v2/shipments/{shipmentId}/cancel', 'PUT',
|
|
101
|
+
pathParams, queryParams, headerParams, formParams, postBody,
|
|
102
|
+
contentTypes, accepts, returnType
|
|
103
|
+
);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* Cancels a purchased shipment. Returns an empty object if the shipment is successfully cancelled. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
108
|
+
* @param {String} shipmentId The shipment identifier originally returned by the purchaseShipment operation.
|
|
109
|
+
* @param {Object} opts Optional parameters
|
|
110
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
111
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:shipping_v2/model/CancelShipmentResponse}
|
|
112
|
+
*/
|
|
113
|
+
cancelShipment(shipmentId, opts) {
|
|
114
|
+
return this.cancelShipmentWithHttpInfo(shipmentId, opts)
|
|
115
|
+
.then(function(response_and_data) {
|
|
116
|
+
return response_and_data.data;
|
|
117
|
+
});
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* This API will be used to create claim for single eligible shipment. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](doc:usage-plans-and-rate-limits-in-the-sp-api).
|
|
123
|
+
* @param {module:shipping_v2/model/CreateClaimRequest} body Request body for the createClaim operation
|
|
124
|
+
* @param {Object} opts Optional parameters
|
|
125
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
126
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:shipping_v2/model/CreateClaimResponse} and HTTP response
|
|
127
|
+
*/
|
|
128
|
+
createClaimWithHttpInfo(body, opts) {
|
|
129
|
+
opts = opts || {};
|
|
130
|
+
let postBody = body;
|
|
131
|
+
|
|
132
|
+
// verify the required parameter 'body' is set
|
|
133
|
+
if (body === undefined || body === null) {
|
|
134
|
+
throw new Error("Missing the required parameter 'body' when calling createClaim");
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
let pathParams = {
|
|
139
|
+
};
|
|
140
|
+
let queryParams = {
|
|
141
|
+
};
|
|
142
|
+
let headerParams = {
|
|
143
|
+
'x-amzn-shipping-business-id': opts['xAmznShippingBusinessId']
|
|
144
|
+
};
|
|
145
|
+
let formParams = {
|
|
146
|
+
};
|
|
147
|
+
|
|
148
|
+
let contentTypes = ['application/json'];
|
|
149
|
+
let accepts = ['application/json'];
|
|
150
|
+
let returnType = CreateClaimResponse;
|
|
151
|
+
|
|
152
|
+
return this.apiClient.callApi(
|
|
153
|
+
'/shipping/v2/claims', 'POST',
|
|
154
|
+
pathParams, queryParams, headerParams, formParams, postBody,
|
|
155
|
+
contentTypes, accepts, returnType
|
|
156
|
+
);
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
/**
|
|
160
|
+
* This API will be used to create claim for single eligible shipment. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](doc:usage-plans-and-rate-limits-in-the-sp-api).
|
|
161
|
+
* @param {module:shipping_v2/model/CreateClaimRequest} body Request body for the createClaim operation
|
|
162
|
+
* @param {Object} opts Optional parameters
|
|
163
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
164
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:shipping_v2/model/CreateClaimResponse}
|
|
165
|
+
*/
|
|
166
|
+
createClaim(body, opts) {
|
|
167
|
+
return this.createClaimWithHttpInfo(body, opts)
|
|
168
|
+
.then(function(response_and_data) {
|
|
169
|
+
return response_and_data.data;
|
|
170
|
+
});
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
/**
|
|
175
|
+
* Purchases the shipping service for a shipment using the best fit service offering. Returns purchase related details and documents. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
176
|
+
* @param {module:shipping_v2/model/DirectPurchaseRequest} body DirectPurchaseRequest body
|
|
177
|
+
* @param {Object} opts Optional parameters
|
|
178
|
+
* @param {String} opts.xAmznIdempotencyKey A unique value which the server uses to recognize subsequent retries of the same request.
|
|
179
|
+
* @param {String} opts.locale The IETF Language Tag. Note that this only supports the primary language subtag with one secondary language subtag (i.e. en-US, fr-CA). The secondary language subtag is almost always a regional designation. This does not support additional subtags beyond the primary and secondary language subtags.
|
|
180
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
181
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:shipping_v2/model/DirectPurchaseResponse} and HTTP response
|
|
182
|
+
*/
|
|
183
|
+
directPurchaseShipmentWithHttpInfo(body, opts) {
|
|
184
|
+
opts = opts || {};
|
|
185
|
+
let postBody = body;
|
|
186
|
+
|
|
187
|
+
// verify the required parameter 'body' is set
|
|
188
|
+
if (body === undefined || body === null) {
|
|
189
|
+
throw new Error("Missing the required parameter 'body' when calling directPurchaseShipment");
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
let pathParams = {
|
|
194
|
+
};
|
|
195
|
+
let queryParams = {
|
|
196
|
+
};
|
|
197
|
+
let headerParams = {
|
|
198
|
+
'x-amzn-IdempotencyKey': opts['xAmznIdempotencyKey'],
|
|
199
|
+
'locale': opts['locale'],
|
|
200
|
+
'x-amzn-shipping-business-id': opts['xAmznShippingBusinessId']
|
|
201
|
+
};
|
|
202
|
+
let formParams = {
|
|
203
|
+
};
|
|
204
|
+
|
|
205
|
+
let contentTypes = ['application/json'];
|
|
206
|
+
let accepts = ['application/json'];
|
|
207
|
+
let returnType = DirectPurchaseResponse;
|
|
208
|
+
|
|
209
|
+
return this.apiClient.callApi(
|
|
210
|
+
'/shipping/v2/shipments/directPurchase', 'POST',
|
|
211
|
+
pathParams, queryParams, headerParams, formParams, postBody,
|
|
212
|
+
contentTypes, accepts, returnType
|
|
213
|
+
);
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
/**
|
|
217
|
+
* Purchases the shipping service for a shipment using the best fit service offering. Returns purchase related details and documents. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
218
|
+
* @param {module:shipping_v2/model/DirectPurchaseRequest} body DirectPurchaseRequest body
|
|
219
|
+
* @param {Object} opts Optional parameters
|
|
220
|
+
* @param {String} opts.xAmznIdempotencyKey A unique value which the server uses to recognize subsequent retries of the same request.
|
|
221
|
+
* @param {String} opts.locale The IETF Language Tag. Note that this only supports the primary language subtag with one secondary language subtag (i.e. en-US, fr-CA). The secondary language subtag is almost always a regional designation. This does not support additional subtags beyond the primary and secondary language subtags.
|
|
222
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
223
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:shipping_v2/model/DirectPurchaseResponse}
|
|
224
|
+
*/
|
|
225
|
+
directPurchaseShipment(body, opts) {
|
|
226
|
+
return this.directPurchaseShipmentWithHttpInfo(body, opts)
|
|
227
|
+
.then(function(response_and_data) {
|
|
228
|
+
return response_and_data.data;
|
|
229
|
+
});
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
/**
|
|
234
|
+
* This API Call to generate the collection form. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
235
|
+
* @param {module:shipping_v2/model/GenerateCollectionFormRequest} body GenerateCollectionFormRequest body
|
|
236
|
+
* @param {Object} opts Optional parameters
|
|
237
|
+
* @param {String} opts.xAmznIdempotencyKey A unique value which the server uses to recognize subsequent retries of the same request.
|
|
238
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
239
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:shipping_v2/model/GenerateCollectionFormResponse} and HTTP response
|
|
240
|
+
*/
|
|
241
|
+
generateCollectionFormWithHttpInfo(body, opts) {
|
|
242
|
+
opts = opts || {};
|
|
243
|
+
let postBody = body;
|
|
244
|
+
|
|
245
|
+
// verify the required parameter 'body' is set
|
|
246
|
+
if (body === undefined || body === null) {
|
|
247
|
+
throw new Error("Missing the required parameter 'body' when calling generateCollectionForm");
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
let pathParams = {
|
|
252
|
+
};
|
|
253
|
+
let queryParams = {
|
|
254
|
+
};
|
|
255
|
+
let headerParams = {
|
|
256
|
+
'x-amzn-IdempotencyKey': opts['xAmznIdempotencyKey'],
|
|
257
|
+
'x-amzn-shipping-business-id': opts['xAmznShippingBusinessId']
|
|
258
|
+
};
|
|
259
|
+
let formParams = {
|
|
260
|
+
};
|
|
261
|
+
|
|
262
|
+
let contentTypes = ['application/json'];
|
|
263
|
+
let accepts = ['application/json'];
|
|
264
|
+
let returnType = GenerateCollectionFormResponse;
|
|
265
|
+
|
|
266
|
+
return this.apiClient.callApi(
|
|
267
|
+
'/shipping/v2/collectionForms', 'POST',
|
|
268
|
+
pathParams, queryParams, headerParams, formParams, postBody,
|
|
269
|
+
contentTypes, accepts, returnType
|
|
270
|
+
);
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
/**
|
|
274
|
+
* This API Call to generate the collection form. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
275
|
+
* @param {module:shipping_v2/model/GenerateCollectionFormRequest} body GenerateCollectionFormRequest body
|
|
276
|
+
* @param {Object} opts Optional parameters
|
|
277
|
+
* @param {String} opts.xAmznIdempotencyKey A unique value which the server uses to recognize subsequent retries of the same request.
|
|
278
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
279
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:shipping_v2/model/GenerateCollectionFormResponse}
|
|
280
|
+
*/
|
|
281
|
+
generateCollectionForm(body, opts) {
|
|
282
|
+
return this.generateCollectionFormWithHttpInfo(body, opts)
|
|
283
|
+
.then(function(response_and_data) {
|
|
284
|
+
return response_and_data.data;
|
|
285
|
+
});
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
/**
|
|
290
|
+
* Returns a list of access points in proximity of input postal code. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
291
|
+
* @param {Array.<module:shipping_v2/model/String>} accessPointTypes Access point types
|
|
292
|
+
* @param {String} countryCode Country code for access point
|
|
293
|
+
* @param {String} postalCode postal code for access point
|
|
294
|
+
* @param {Object} opts Optional parameters
|
|
295
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
296
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:shipping_v2/model/GetAccessPointsResponse} and HTTP response
|
|
297
|
+
*/
|
|
298
|
+
getAccessPointsWithHttpInfo(accessPointTypes, countryCode, postalCode, opts) {
|
|
299
|
+
opts = opts || {};
|
|
300
|
+
let postBody = null;
|
|
301
|
+
|
|
302
|
+
// verify the required parameter 'accessPointTypes' is set
|
|
303
|
+
if (accessPointTypes === undefined || accessPointTypes === null) {
|
|
304
|
+
throw new Error("Missing the required parameter 'accessPointTypes' when calling getAccessPoints");
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
// verify the required parameter 'countryCode' is set
|
|
308
|
+
if (countryCode === undefined || countryCode === null) {
|
|
309
|
+
throw new Error("Missing the required parameter 'countryCode' when calling getAccessPoints");
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
// verify the required parameter 'postalCode' is set
|
|
313
|
+
if (postalCode === undefined || postalCode === null) {
|
|
314
|
+
throw new Error("Missing the required parameter 'postalCode' when calling getAccessPoints");
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
let pathParams = {
|
|
319
|
+
};
|
|
320
|
+
let queryParams = {
|
|
321
|
+
'accessPointTypes': this.apiClient.buildCollectionParam(accessPointTypes, 'csv'),
|
|
322
|
+
'countryCode': countryCode,
|
|
323
|
+
'postalCode': postalCode
|
|
324
|
+
};
|
|
325
|
+
let headerParams = {
|
|
326
|
+
'x-amzn-shipping-business-id': opts['xAmznShippingBusinessId']
|
|
327
|
+
};
|
|
328
|
+
let formParams = {
|
|
329
|
+
};
|
|
330
|
+
|
|
331
|
+
let contentTypes = [];
|
|
332
|
+
let accepts = ['application/json'];
|
|
333
|
+
let returnType = GetAccessPointsResponse;
|
|
334
|
+
|
|
335
|
+
return this.apiClient.callApi(
|
|
336
|
+
'/shipping/v2/accessPoints', 'GET',
|
|
337
|
+
pathParams, queryParams, headerParams, formParams, postBody,
|
|
338
|
+
contentTypes, accepts, returnType
|
|
339
|
+
);
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
/**
|
|
343
|
+
* Returns a list of access points in proximity of input postal code. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
344
|
+
* @param {Array.<module:shipping_v2/model/String>} accessPointTypes Access point types
|
|
345
|
+
* @param {String} countryCode Country code for access point
|
|
346
|
+
* @param {String} postalCode postal code for access point
|
|
347
|
+
* @param {Object} opts Optional parameters
|
|
348
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
349
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:shipping_v2/model/GetAccessPointsResponse}
|
|
350
|
+
*/
|
|
351
|
+
getAccessPoints(accessPointTypes, countryCode, postalCode, opts) {
|
|
352
|
+
return this.getAccessPointsWithHttpInfo(accessPointTypes, countryCode, postalCode, opts)
|
|
353
|
+
.then(function(response_and_data) {
|
|
354
|
+
return response_and_data.data;
|
|
355
|
+
});
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
/**
|
|
360
|
+
* Returns the JSON schema to use for providing additional inputs when needed to purchase a shipping offering. Call the getAdditionalInputs operation when the response to a previous call to the getRates operation indicates that additional inputs are required for the rate (shipping offering) that you want to purchase. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
361
|
+
* @param {String} requestToken The request token returned in the response to the getRates operation.
|
|
362
|
+
* @param {String} rateId The rate identifier for the shipping offering (rate) returned in the response to the getRates operation.
|
|
363
|
+
* @param {Object} opts Optional parameters
|
|
364
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
365
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:shipping_v2/model/GetAdditionalInputsResponse} and HTTP response
|
|
366
|
+
*/
|
|
367
|
+
getAdditionalInputsWithHttpInfo(requestToken, rateId, opts) {
|
|
368
|
+
opts = opts || {};
|
|
369
|
+
let postBody = null;
|
|
370
|
+
|
|
371
|
+
// verify the required parameter 'requestToken' is set
|
|
372
|
+
if (requestToken === undefined || requestToken === null) {
|
|
373
|
+
throw new Error("Missing the required parameter 'requestToken' when calling getAdditionalInputs");
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
// verify the required parameter 'rateId' is set
|
|
377
|
+
if (rateId === undefined || rateId === null) {
|
|
378
|
+
throw new Error("Missing the required parameter 'rateId' when calling getAdditionalInputs");
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
let pathParams = {
|
|
383
|
+
};
|
|
384
|
+
let queryParams = {
|
|
385
|
+
'requestToken': requestToken,
|
|
386
|
+
'rateId': rateId
|
|
387
|
+
};
|
|
388
|
+
let headerParams = {
|
|
389
|
+
'x-amzn-shipping-business-id': opts['xAmznShippingBusinessId']
|
|
390
|
+
};
|
|
391
|
+
let formParams = {
|
|
392
|
+
};
|
|
393
|
+
|
|
394
|
+
let contentTypes = [];
|
|
395
|
+
let accepts = ['application/json'];
|
|
396
|
+
let returnType = GetAdditionalInputsResponse;
|
|
397
|
+
|
|
398
|
+
return this.apiClient.callApi(
|
|
399
|
+
'/shipping/v2/shipments/additionalInputs/schema', 'GET',
|
|
400
|
+
pathParams, queryParams, headerParams, formParams, postBody,
|
|
401
|
+
contentTypes, accepts, returnType
|
|
402
|
+
);
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
/**
|
|
406
|
+
* Returns the JSON schema to use for providing additional inputs when needed to purchase a shipping offering. Call the getAdditionalInputs operation when the response to a previous call to the getRates operation indicates that additional inputs are required for the rate (shipping offering) that you want to purchase. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
407
|
+
* @param {String} requestToken The request token returned in the response to the getRates operation.
|
|
408
|
+
* @param {String} rateId The rate identifier for the shipping offering (rate) returned in the response to the getRates operation.
|
|
409
|
+
* @param {Object} opts Optional parameters
|
|
410
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
411
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:shipping_v2/model/GetAdditionalInputsResponse}
|
|
412
|
+
*/
|
|
413
|
+
getAdditionalInputs(requestToken, rateId, opts) {
|
|
414
|
+
return this.getAdditionalInputsWithHttpInfo(requestToken, rateId, opts)
|
|
415
|
+
.then(function(response_and_data) {
|
|
416
|
+
return response_and_data.data;
|
|
417
|
+
});
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
/**
|
|
422
|
+
* This API will return a list of input schema required to register a shipper account with the carrier. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
423
|
+
* @param {Object} opts Optional parameters
|
|
424
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
425
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:shipping_v2/model/GetCarrierAccountFormInputsResponse} and HTTP response
|
|
426
|
+
*/
|
|
427
|
+
getCarrierAccountFormInputsWithHttpInfo(opts) {
|
|
428
|
+
opts = opts || {};
|
|
429
|
+
let postBody = null;
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
let pathParams = {
|
|
433
|
+
};
|
|
434
|
+
let queryParams = {
|
|
435
|
+
};
|
|
436
|
+
let headerParams = {
|
|
437
|
+
'x-amzn-shipping-business-id': opts['xAmznShippingBusinessId']
|
|
438
|
+
};
|
|
439
|
+
let formParams = {
|
|
440
|
+
};
|
|
441
|
+
|
|
442
|
+
let contentTypes = [];
|
|
443
|
+
let accepts = ['application/json'];
|
|
444
|
+
let returnType = GetCarrierAccountFormInputsResponse;
|
|
445
|
+
|
|
446
|
+
return this.apiClient.callApi(
|
|
447
|
+
'/shipping/v2/carrierAccountFormInputs', 'GET',
|
|
448
|
+
pathParams, queryParams, headerParams, formParams, postBody,
|
|
449
|
+
contentTypes, accepts, returnType
|
|
450
|
+
);
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
/**
|
|
454
|
+
* This API will return a list of input schema required to register a shipper account with the carrier. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
455
|
+
* @param {Object} opts Optional parameters
|
|
456
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
457
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:shipping_v2/model/GetCarrierAccountFormInputsResponse}
|
|
458
|
+
*/
|
|
459
|
+
getCarrierAccountFormInputs(opts) {
|
|
460
|
+
return this.getCarrierAccountFormInputsWithHttpInfo(opts)
|
|
461
|
+
.then(function(response_and_data) {
|
|
462
|
+
return response_and_data.data;
|
|
463
|
+
});
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
/**
|
|
468
|
+
* This API will return Get all carrier accounts for a merchant. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
469
|
+
* @param {module:shipping_v2/model/GetCarrierAccountsRequest} body GetCarrierAccountsRequest body
|
|
470
|
+
* @param {Object} opts Optional parameters
|
|
471
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
472
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:shipping_v2/model/GetCarrierAccountsResponse} and HTTP response
|
|
473
|
+
*/
|
|
474
|
+
getCarrierAccountsWithHttpInfo(body, opts) {
|
|
475
|
+
opts = opts || {};
|
|
476
|
+
let postBody = body;
|
|
477
|
+
|
|
478
|
+
// verify the required parameter 'body' is set
|
|
479
|
+
if (body === undefined || body === null) {
|
|
480
|
+
throw new Error("Missing the required parameter 'body' when calling getCarrierAccounts");
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
let pathParams = {
|
|
485
|
+
};
|
|
486
|
+
let queryParams = {
|
|
487
|
+
};
|
|
488
|
+
let headerParams = {
|
|
489
|
+
'x-amzn-shipping-business-id': opts['xAmznShippingBusinessId']
|
|
490
|
+
};
|
|
491
|
+
let formParams = {
|
|
492
|
+
};
|
|
493
|
+
|
|
494
|
+
let contentTypes = ['application/json'];
|
|
495
|
+
let accepts = ['application/json'];
|
|
496
|
+
let returnType = GetCarrierAccountsResponse;
|
|
497
|
+
|
|
498
|
+
return this.apiClient.callApi(
|
|
499
|
+
'/shipping/v2/carrierAccounts', 'PUT',
|
|
500
|
+
pathParams, queryParams, headerParams, formParams, postBody,
|
|
501
|
+
contentTypes, accepts, returnType
|
|
502
|
+
);
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
/**
|
|
506
|
+
* This API will return Get all carrier accounts for a merchant. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
507
|
+
* @param {module:shipping_v2/model/GetCarrierAccountsRequest} body GetCarrierAccountsRequest body
|
|
508
|
+
* @param {Object} opts Optional parameters
|
|
509
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
510
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:shipping_v2/model/GetCarrierAccountsResponse}
|
|
511
|
+
*/
|
|
512
|
+
getCarrierAccounts(body, opts) {
|
|
513
|
+
return this.getCarrierAccountsWithHttpInfo(body, opts)
|
|
514
|
+
.then(function(response_and_data) {
|
|
515
|
+
return response_and_data.data;
|
|
516
|
+
});
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
/**
|
|
521
|
+
* This API reprint a collection form. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
522
|
+
* @param {String} collectionFormId collection form Id to reprint a collection.
|
|
523
|
+
* @param {Object} opts Optional parameters
|
|
524
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
525
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:shipping_v2/model/GetCollectionFormResponse} and HTTP response
|
|
526
|
+
*/
|
|
527
|
+
getCollectionFormWithHttpInfo(collectionFormId, opts) {
|
|
528
|
+
opts = opts || {};
|
|
529
|
+
let postBody = null;
|
|
530
|
+
|
|
531
|
+
// verify the required parameter 'collectionFormId' is set
|
|
532
|
+
if (collectionFormId === undefined || collectionFormId === null) {
|
|
533
|
+
throw new Error("Missing the required parameter 'collectionFormId' when calling getCollectionForm");
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
let pathParams = {
|
|
538
|
+
'collectionFormId': collectionFormId
|
|
539
|
+
};
|
|
540
|
+
let queryParams = {
|
|
541
|
+
};
|
|
542
|
+
let headerParams = {
|
|
543
|
+
'x-amzn-shipping-business-id': opts['xAmznShippingBusinessId']
|
|
544
|
+
};
|
|
545
|
+
let formParams = {
|
|
546
|
+
};
|
|
547
|
+
|
|
548
|
+
let contentTypes = [];
|
|
549
|
+
let accepts = ['application/json'];
|
|
550
|
+
let returnType = GetCollectionFormResponse;
|
|
551
|
+
|
|
552
|
+
return this.apiClient.callApi(
|
|
553
|
+
'/shipping/v2/collectionForms/{collectionFormId}', 'GET',
|
|
554
|
+
pathParams, queryParams, headerParams, formParams, postBody,
|
|
555
|
+
contentTypes, accepts, returnType
|
|
556
|
+
);
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
/**
|
|
560
|
+
* This API reprint a collection form. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
561
|
+
* @param {String} collectionFormId collection form Id to reprint a collection.
|
|
562
|
+
* @param {Object} opts Optional parameters
|
|
563
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
564
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:shipping_v2/model/GetCollectionFormResponse}
|
|
565
|
+
*/
|
|
566
|
+
getCollectionForm(collectionFormId, opts) {
|
|
567
|
+
return this.getCollectionFormWithHttpInfo(collectionFormId, opts)
|
|
568
|
+
.then(function(response_and_data) {
|
|
569
|
+
return response_and_data.data;
|
|
570
|
+
});
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
/**
|
|
575
|
+
* This API Call to get the history of the previously generated collection forms. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
576
|
+
* @param {module:shipping_v2/model/GetCollectionFormHistoryRequest} body GetCollectionFormHistoryRequest body
|
|
577
|
+
* @param {Object} opts Optional parameters
|
|
578
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
579
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:shipping_v2/model/GetCollectionFormHistoryResponse} and HTTP response
|
|
580
|
+
*/
|
|
581
|
+
getCollectionFormHistoryWithHttpInfo(body, opts) {
|
|
582
|
+
opts = opts || {};
|
|
583
|
+
let postBody = body;
|
|
584
|
+
|
|
585
|
+
// verify the required parameter 'body' is set
|
|
586
|
+
if (body === undefined || body === null) {
|
|
587
|
+
throw new Error("Missing the required parameter 'body' when calling getCollectionFormHistory");
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
|
|
591
|
+
let pathParams = {
|
|
592
|
+
};
|
|
593
|
+
let queryParams = {
|
|
594
|
+
};
|
|
595
|
+
let headerParams = {
|
|
596
|
+
'x-amzn-shipping-business-id': opts['xAmznShippingBusinessId']
|
|
597
|
+
};
|
|
598
|
+
let formParams = {
|
|
599
|
+
};
|
|
600
|
+
|
|
601
|
+
let contentTypes = ['application/json'];
|
|
602
|
+
let accepts = ['application/json'];
|
|
603
|
+
let returnType = GetCollectionFormHistoryResponse;
|
|
604
|
+
|
|
605
|
+
return this.apiClient.callApi(
|
|
606
|
+
'/shipping/v2/collectionForms/history', 'PUT',
|
|
607
|
+
pathParams, queryParams, headerParams, formParams, postBody,
|
|
608
|
+
contentTypes, accepts, returnType
|
|
609
|
+
);
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
/**
|
|
613
|
+
* This API Call to get the history of the previously generated collection forms. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
614
|
+
* @param {module:shipping_v2/model/GetCollectionFormHistoryRequest} body GetCollectionFormHistoryRequest body
|
|
615
|
+
* @param {Object} opts Optional parameters
|
|
616
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
617
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:shipping_v2/model/GetCollectionFormHistoryResponse}
|
|
618
|
+
*/
|
|
619
|
+
getCollectionFormHistory(body, opts) {
|
|
620
|
+
return this.getCollectionFormHistoryWithHttpInfo(body, opts)
|
|
621
|
+
.then(function(response_and_data) {
|
|
622
|
+
return response_and_data.data;
|
|
623
|
+
});
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
|
|
627
|
+
/**
|
|
628
|
+
* Returns the available shipping service offerings. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
629
|
+
* @param {module:shipping_v2/model/GetRatesRequest} body GetRatesRequest body
|
|
630
|
+
* @param {Object} opts Optional parameters
|
|
631
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
632
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:shipping_v2/model/GetRatesResponse} and HTTP response
|
|
633
|
+
*/
|
|
634
|
+
getRatesWithHttpInfo(body, opts) {
|
|
635
|
+
opts = opts || {};
|
|
636
|
+
let postBody = body;
|
|
637
|
+
|
|
638
|
+
// verify the required parameter 'body' is set
|
|
639
|
+
if (body === undefined || body === null) {
|
|
640
|
+
throw new Error("Missing the required parameter 'body' when calling getRates");
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
|
|
644
|
+
let pathParams = {
|
|
645
|
+
};
|
|
646
|
+
let queryParams = {
|
|
647
|
+
};
|
|
648
|
+
let headerParams = {
|
|
649
|
+
'x-amzn-shipping-business-id': opts['xAmznShippingBusinessId']
|
|
650
|
+
};
|
|
651
|
+
let formParams = {
|
|
652
|
+
};
|
|
653
|
+
|
|
654
|
+
let contentTypes = ['application/json'];
|
|
655
|
+
let accepts = ['application/json'];
|
|
656
|
+
let returnType = GetRatesResponse;
|
|
657
|
+
|
|
658
|
+
return this.apiClient.callApi(
|
|
659
|
+
'/shipping/v2/shipments/rates', 'POST',
|
|
660
|
+
pathParams, queryParams, headerParams, formParams, postBody,
|
|
661
|
+
contentTypes, accepts, returnType
|
|
662
|
+
);
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
/**
|
|
666
|
+
* Returns the available shipping service offerings. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
667
|
+
* @param {module:shipping_v2/model/GetRatesRequest} body GetRatesRequest body
|
|
668
|
+
* @param {Object} opts Optional parameters
|
|
669
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
670
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:shipping_v2/model/GetRatesResponse}
|
|
671
|
+
*/
|
|
672
|
+
getRates(body, opts) {
|
|
673
|
+
return this.getRatesWithHttpInfo(body, opts)
|
|
674
|
+
.then(function(response_and_data) {
|
|
675
|
+
return response_and_data.data;
|
|
676
|
+
});
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
|
|
680
|
+
/**
|
|
681
|
+
* Returns the shipping documents associated with a package in a shipment. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
682
|
+
* @param {String} shipmentId The shipment identifier originally returned by the purchaseShipment operation.
|
|
683
|
+
* @param {String} packageClientReferenceId The package client reference identifier originally provided in the request body parameter for the getRates operation.
|
|
684
|
+
* @param {Object} opts Optional parameters
|
|
685
|
+
* @param {String} opts.format The file format of the document. Must be one of the supported formats returned by the getRates operation.
|
|
686
|
+
* @param {Number} opts.dpi The resolution of the document (for example, 300 means 300 dots per inch). Must be one of the supported resolutions returned in the response to the getRates operation.
|
|
687
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
688
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:shipping_v2/model/GetShipmentDocumentsResponse} and HTTP response
|
|
689
|
+
*/
|
|
690
|
+
getShipmentDocumentsWithHttpInfo(shipmentId, packageClientReferenceId, opts) {
|
|
691
|
+
opts = opts || {};
|
|
692
|
+
let postBody = null;
|
|
693
|
+
|
|
694
|
+
// verify the required parameter 'shipmentId' is set
|
|
695
|
+
if (shipmentId === undefined || shipmentId === null) {
|
|
696
|
+
throw new Error("Missing the required parameter 'shipmentId' when calling getShipmentDocuments");
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
// verify the required parameter 'packageClientReferenceId' is set
|
|
700
|
+
if (packageClientReferenceId === undefined || packageClientReferenceId === null) {
|
|
701
|
+
throw new Error("Missing the required parameter 'packageClientReferenceId' when calling getShipmentDocuments");
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
|
|
705
|
+
let pathParams = {
|
|
706
|
+
'shipmentId': shipmentId
|
|
707
|
+
};
|
|
708
|
+
let queryParams = {
|
|
709
|
+
'packageClientReferenceId': packageClientReferenceId,
|
|
710
|
+
'format': opts['format'],
|
|
711
|
+
'dpi': opts['dpi']
|
|
712
|
+
};
|
|
713
|
+
let headerParams = {
|
|
714
|
+
'x-amzn-shipping-business-id': opts['xAmznShippingBusinessId']
|
|
715
|
+
};
|
|
716
|
+
let formParams = {
|
|
717
|
+
};
|
|
718
|
+
|
|
719
|
+
let contentTypes = [];
|
|
720
|
+
let accepts = ['application/json'];
|
|
721
|
+
let returnType = GetShipmentDocumentsResponse;
|
|
722
|
+
|
|
723
|
+
return this.apiClient.callApi(
|
|
724
|
+
'/shipping/v2/shipments/{shipmentId}/documents', 'GET',
|
|
725
|
+
pathParams, queryParams, headerParams, formParams, postBody,
|
|
726
|
+
contentTypes, accepts, returnType
|
|
727
|
+
);
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
/**
|
|
731
|
+
* Returns the shipping documents associated with a package in a shipment. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
732
|
+
* @param {String} shipmentId The shipment identifier originally returned by the purchaseShipment operation.
|
|
733
|
+
* @param {String} packageClientReferenceId The package client reference identifier originally provided in the request body parameter for the getRates operation.
|
|
734
|
+
* @param {Object} opts Optional parameters
|
|
735
|
+
* @param {String} opts.format The file format of the document. Must be one of the supported formats returned by the getRates operation.
|
|
736
|
+
* @param {Number} opts.dpi The resolution of the document (for example, 300 means 300 dots per inch). Must be one of the supported resolutions returned in the response to the getRates operation.
|
|
737
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
738
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:shipping_v2/model/GetShipmentDocumentsResponse}
|
|
739
|
+
*/
|
|
740
|
+
getShipmentDocuments(shipmentId, packageClientReferenceId, opts) {
|
|
741
|
+
return this.getShipmentDocumentsWithHttpInfo(shipmentId, packageClientReferenceId, opts)
|
|
742
|
+
.then(function(response_and_data) {
|
|
743
|
+
return response_and_data.data;
|
|
744
|
+
});
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
|
|
748
|
+
/**
|
|
749
|
+
* Returns tracking information for a purchased shipment. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
750
|
+
* @param {String} trackingId A carrier-generated tracking identifier originally returned by the purchaseShipment operation.
|
|
751
|
+
* @param {String} carrierId A carrier identifier originally returned by the getRates operation for the selected rate.
|
|
752
|
+
* @param {Object} opts Optional parameters
|
|
753
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
754
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:shipping_v2/model/GetTrackingResponse} and HTTP response
|
|
755
|
+
*/
|
|
756
|
+
getTrackingWithHttpInfo(trackingId, carrierId, opts) {
|
|
757
|
+
opts = opts || {};
|
|
758
|
+
let postBody = null;
|
|
759
|
+
|
|
760
|
+
// verify the required parameter 'trackingId' is set
|
|
761
|
+
if (trackingId === undefined || trackingId === null) {
|
|
762
|
+
throw new Error("Missing the required parameter 'trackingId' when calling getTracking");
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
// verify the required parameter 'carrierId' is set
|
|
766
|
+
if (carrierId === undefined || carrierId === null) {
|
|
767
|
+
throw new Error("Missing the required parameter 'carrierId' when calling getTracking");
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
let pathParams = {
|
|
772
|
+
};
|
|
773
|
+
let queryParams = {
|
|
774
|
+
'trackingId': trackingId,
|
|
775
|
+
'carrierId': carrierId
|
|
776
|
+
};
|
|
777
|
+
let headerParams = {
|
|
778
|
+
'x-amzn-shipping-business-id': opts['xAmznShippingBusinessId']
|
|
779
|
+
};
|
|
780
|
+
let formParams = {
|
|
781
|
+
};
|
|
782
|
+
|
|
783
|
+
let contentTypes = [];
|
|
784
|
+
let accepts = ['application/json'];
|
|
785
|
+
let returnType = GetTrackingResponse;
|
|
786
|
+
|
|
787
|
+
return this.apiClient.callApi(
|
|
788
|
+
'/shipping/v2/tracking', 'GET',
|
|
789
|
+
pathParams, queryParams, headerParams, formParams, postBody,
|
|
790
|
+
contentTypes, accepts, returnType
|
|
791
|
+
);
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
/**
|
|
795
|
+
* Returns tracking information for a purchased shipment. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
796
|
+
* @param {String} trackingId A carrier-generated tracking identifier originally returned by the purchaseShipment operation.
|
|
797
|
+
* @param {String} carrierId A carrier identifier originally returned by the getRates operation for the selected rate.
|
|
798
|
+
* @param {Object} opts Optional parameters
|
|
799
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
800
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:shipping_v2/model/GetTrackingResponse}
|
|
801
|
+
*/
|
|
802
|
+
getTracking(trackingId, carrierId, opts) {
|
|
803
|
+
return this.getTrackingWithHttpInfo(trackingId, carrierId, opts)
|
|
804
|
+
.then(function(response_and_data) {
|
|
805
|
+
return response_and_data.data;
|
|
806
|
+
});
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
|
|
810
|
+
/**
|
|
811
|
+
* This API Get all unmanifested carriers with shipment locations. Any locations which has unmanifested shipments with an eligible carrier for manifesting shall be returned. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
812
|
+
* @param {module:shipping_v2/model/GetUnmanifestedShipmentsRequest} body GetUmanifestedShipmentsRequest body
|
|
813
|
+
* @param {Object} opts Optional parameters
|
|
814
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
815
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:shipping_v2/model/GetUnmanifestedShipmentsResponse} and HTTP response
|
|
816
|
+
*/
|
|
817
|
+
getUnmanifestedShipmentsWithHttpInfo(body, opts) {
|
|
818
|
+
opts = opts || {};
|
|
819
|
+
let postBody = body;
|
|
820
|
+
|
|
821
|
+
// verify the required parameter 'body' is set
|
|
822
|
+
if (body === undefined || body === null) {
|
|
823
|
+
throw new Error("Missing the required parameter 'body' when calling getUnmanifestedShipments");
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
|
|
827
|
+
let pathParams = {
|
|
828
|
+
};
|
|
829
|
+
let queryParams = {
|
|
830
|
+
};
|
|
831
|
+
let headerParams = {
|
|
832
|
+
'x-amzn-shipping-business-id': opts['xAmznShippingBusinessId']
|
|
833
|
+
};
|
|
834
|
+
let formParams = {
|
|
835
|
+
};
|
|
836
|
+
|
|
837
|
+
let contentTypes = ['application/json'];
|
|
838
|
+
let accepts = ['application/json'];
|
|
839
|
+
let returnType = GetUnmanifestedShipmentsResponse;
|
|
840
|
+
|
|
841
|
+
return this.apiClient.callApi(
|
|
842
|
+
'/shipping/v2/unmanifestedShipments', 'PUT',
|
|
843
|
+
pathParams, queryParams, headerParams, formParams, postBody,
|
|
844
|
+
contentTypes, accepts, returnType
|
|
845
|
+
);
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
/**
|
|
849
|
+
* This API Get all unmanifested carriers with shipment locations. Any locations which has unmanifested shipments with an eligible carrier for manifesting shall be returned. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
850
|
+
* @param {module:shipping_v2/model/GetUnmanifestedShipmentsRequest} body GetUmanifestedShipmentsRequest body
|
|
851
|
+
* @param {Object} opts Optional parameters
|
|
852
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
853
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:shipping_v2/model/GetUnmanifestedShipmentsResponse}
|
|
854
|
+
*/
|
|
855
|
+
getUnmanifestedShipments(body, opts) {
|
|
856
|
+
return this.getUnmanifestedShipmentsWithHttpInfo(body, opts)
|
|
857
|
+
.then(function(response_and_data) {
|
|
858
|
+
return response_and_data.data;
|
|
859
|
+
});
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
|
|
863
|
+
/**
|
|
864
|
+
* This API associates/links the specified carrier account with the merchant. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
865
|
+
* @param {String} carrierId An identifier for the carrier with which the seller's account is being linked.
|
|
866
|
+
* @param {module:shipping_v2/model/LinkCarrierAccountRequest} body LinkCarrierAccountRequest body
|
|
867
|
+
* @param {Object} opts Optional parameters
|
|
868
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
869
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:shipping_v2/model/LinkCarrierAccountResponse} and HTTP response
|
|
870
|
+
*/
|
|
871
|
+
linkCarrierAccountWithHttpInfo(carrierId, body, opts) {
|
|
872
|
+
opts = opts || {};
|
|
873
|
+
let postBody = body;
|
|
874
|
+
|
|
875
|
+
// verify the required parameter 'carrierId' is set
|
|
876
|
+
if (carrierId === undefined || carrierId === null) {
|
|
877
|
+
throw new Error("Missing the required parameter 'carrierId' when calling linkCarrierAccount");
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
// verify the required parameter 'body' is set
|
|
881
|
+
if (body === undefined || body === null) {
|
|
882
|
+
throw new Error("Missing the required parameter 'body' when calling linkCarrierAccount");
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
|
|
886
|
+
let pathParams = {
|
|
887
|
+
'carrierId': carrierId
|
|
888
|
+
};
|
|
889
|
+
let queryParams = {
|
|
890
|
+
};
|
|
891
|
+
let headerParams = {
|
|
892
|
+
'x-amzn-shipping-business-id': opts['xAmznShippingBusinessId']
|
|
893
|
+
};
|
|
894
|
+
let formParams = {
|
|
895
|
+
};
|
|
896
|
+
|
|
897
|
+
let contentTypes = ['application/json'];
|
|
898
|
+
let accepts = ['application/json'];
|
|
899
|
+
let returnType = LinkCarrierAccountResponse;
|
|
900
|
+
|
|
901
|
+
return this.apiClient.callApi(
|
|
902
|
+
'/shipping/v2/carrierAccounts/{carrierId}', 'PUT',
|
|
903
|
+
pathParams, queryParams, headerParams, formParams, postBody,
|
|
904
|
+
contentTypes, accepts, returnType
|
|
905
|
+
);
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
/**
|
|
909
|
+
* This API associates/links the specified carrier account with the merchant. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
910
|
+
* @param {String} carrierId An identifier for the carrier with which the seller's account is being linked.
|
|
911
|
+
* @param {module:shipping_v2/model/LinkCarrierAccountRequest} body LinkCarrierAccountRequest body
|
|
912
|
+
* @param {Object} opts Optional parameters
|
|
913
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
914
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:shipping_v2/model/LinkCarrierAccountResponse}
|
|
915
|
+
*/
|
|
916
|
+
linkCarrierAccount(carrierId, body, opts) {
|
|
917
|
+
return this.linkCarrierAccountWithHttpInfo(carrierId, body, opts)
|
|
918
|
+
.then(function(response_and_data) {
|
|
919
|
+
return response_and_data.data;
|
|
920
|
+
});
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
|
|
924
|
+
/**
|
|
925
|
+
* This API associates/links the specified carrier account with the merchant. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 10 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](doc:usage-plans-and-rate-limits-in-the-sp-api).
|
|
926
|
+
* @param {String} carrierId An identifier for the carrier with which the seller's account is being linked.
|
|
927
|
+
* @param {module:shipping_v2/model/LinkCarrierAccountRequest} body LinkCarrierAccountRequest body
|
|
928
|
+
* @param {Object} opts Optional parameters
|
|
929
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
930
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:shipping_v2/model/LinkCarrierAccountResponse} and HTTP response
|
|
931
|
+
*/
|
|
932
|
+
linkCarrierAccount_0WithHttpInfo(carrierId, body, opts) {
|
|
933
|
+
opts = opts || {};
|
|
934
|
+
let postBody = body;
|
|
935
|
+
|
|
936
|
+
// verify the required parameter 'carrierId' is set
|
|
937
|
+
if (carrierId === undefined || carrierId === null) {
|
|
938
|
+
throw new Error("Missing the required parameter 'carrierId' when calling linkCarrierAccount_0");
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
// verify the required parameter 'body' is set
|
|
942
|
+
if (body === undefined || body === null) {
|
|
943
|
+
throw new Error("Missing the required parameter 'body' when calling linkCarrierAccount_0");
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
|
|
947
|
+
let pathParams = {
|
|
948
|
+
'carrierId': carrierId
|
|
949
|
+
};
|
|
950
|
+
let queryParams = {
|
|
951
|
+
};
|
|
952
|
+
let headerParams = {
|
|
953
|
+
'x-amzn-shipping-business-id': opts['xAmznShippingBusinessId']
|
|
954
|
+
};
|
|
955
|
+
let formParams = {
|
|
956
|
+
};
|
|
957
|
+
|
|
958
|
+
let contentTypes = ['application/json'];
|
|
959
|
+
let accepts = ['application/json'];
|
|
960
|
+
let returnType = LinkCarrierAccountResponse;
|
|
961
|
+
|
|
962
|
+
return this.apiClient.callApi(
|
|
963
|
+
'/shipping/v2/carrierAccounts/{carrierId}', 'POST',
|
|
964
|
+
pathParams, queryParams, headerParams, formParams, postBody,
|
|
965
|
+
contentTypes, accepts, returnType
|
|
966
|
+
);
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
/**
|
|
970
|
+
* This API associates/links the specified carrier account with the merchant. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 5 | 10 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](doc:usage-plans-and-rate-limits-in-the-sp-api).
|
|
971
|
+
* @param {String} carrierId An identifier for the carrier with which the seller's account is being linked.
|
|
972
|
+
* @param {module:shipping_v2/model/LinkCarrierAccountRequest} body LinkCarrierAccountRequest body
|
|
973
|
+
* @param {Object} opts Optional parameters
|
|
974
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
975
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:shipping_v2/model/LinkCarrierAccountResponse}
|
|
976
|
+
*/
|
|
977
|
+
linkCarrierAccount_0(carrierId, body, opts) {
|
|
978
|
+
return this.linkCarrierAccount_0WithHttpInfo(carrierId, body, opts)
|
|
979
|
+
.then(function(response_and_data) {
|
|
980
|
+
return response_and_data.data;
|
|
981
|
+
});
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
|
|
985
|
+
/**
|
|
986
|
+
* Purchases a shipping service identifier and returns purchase-related details and documents. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
987
|
+
* @param {module:shipping_v2/model/OneClickShipmentRequest} body OneClickShipmentRequest body
|
|
988
|
+
* @param {Object} opts Optional parameters
|
|
989
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
990
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:shipping_v2/model/OneClickShipmentResponse} and HTTP response
|
|
991
|
+
*/
|
|
992
|
+
oneClickShipmentWithHttpInfo(body, opts) {
|
|
993
|
+
opts = opts || {};
|
|
994
|
+
let postBody = body;
|
|
995
|
+
|
|
996
|
+
// verify the required parameter 'body' is set
|
|
997
|
+
if (body === undefined || body === null) {
|
|
998
|
+
throw new Error("Missing the required parameter 'body' when calling oneClickShipment");
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
|
|
1002
|
+
let pathParams = {
|
|
1003
|
+
};
|
|
1004
|
+
let queryParams = {
|
|
1005
|
+
};
|
|
1006
|
+
let headerParams = {
|
|
1007
|
+
'x-amzn-shipping-business-id': opts['xAmznShippingBusinessId']
|
|
1008
|
+
};
|
|
1009
|
+
let formParams = {
|
|
1010
|
+
};
|
|
1011
|
+
|
|
1012
|
+
let contentTypes = ['application/json'];
|
|
1013
|
+
let accepts = ['application/json'];
|
|
1014
|
+
let returnType = OneClickShipmentResponse;
|
|
1015
|
+
|
|
1016
|
+
return this.apiClient.callApi(
|
|
1017
|
+
'/shipping/v2/oneClickShipment', 'POST',
|
|
1018
|
+
pathParams, queryParams, headerParams, formParams, postBody,
|
|
1019
|
+
contentTypes, accepts, returnType
|
|
1020
|
+
);
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
/**
|
|
1024
|
+
* Purchases a shipping service identifier and returns purchase-related details and documents. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
1025
|
+
* @param {module:shipping_v2/model/OneClickShipmentRequest} body OneClickShipmentRequest body
|
|
1026
|
+
* @param {Object} opts Optional parameters
|
|
1027
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
1028
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:shipping_v2/model/OneClickShipmentResponse}
|
|
1029
|
+
*/
|
|
1030
|
+
oneClickShipment(body, opts) {
|
|
1031
|
+
return this.oneClickShipmentWithHttpInfo(body, opts)
|
|
1032
|
+
.then(function(response_and_data) {
|
|
1033
|
+
return response_and_data.data;
|
|
1034
|
+
});
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1037
|
+
|
|
1038
|
+
/**
|
|
1039
|
+
* Purchases a shipping service and returns purchase related details and documents. Note: You must complete the purchase within 10 minutes of rate creation by the shipping service provider. If you make the request after the 10 minutes have expired, you will receive an error response with the error code equal to \"TOKEN_EXPIRED\". If you receive this error response, you must get the rates for the shipment again. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
1040
|
+
* @param {module:shipping_v2/model/PurchaseShipmentRequest} body PurchaseShipmentRequest body
|
|
1041
|
+
* @param {Object} opts Optional parameters
|
|
1042
|
+
* @param {String} opts.xAmznIdempotencyKey A unique value which the server uses to recognize subsequent retries of the same request.
|
|
1043
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
1044
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:shipping_v2/model/PurchaseShipmentResponse} and HTTP response
|
|
1045
|
+
*/
|
|
1046
|
+
purchaseShipmentWithHttpInfo(body, opts) {
|
|
1047
|
+
opts = opts || {};
|
|
1048
|
+
let postBody = body;
|
|
1049
|
+
|
|
1050
|
+
// verify the required parameter 'body' is set
|
|
1051
|
+
if (body === undefined || body === null) {
|
|
1052
|
+
throw new Error("Missing the required parameter 'body' when calling purchaseShipment");
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1055
|
+
|
|
1056
|
+
let pathParams = {
|
|
1057
|
+
};
|
|
1058
|
+
let queryParams = {
|
|
1059
|
+
};
|
|
1060
|
+
let headerParams = {
|
|
1061
|
+
'x-amzn-IdempotencyKey': opts['xAmznIdempotencyKey'],
|
|
1062
|
+
'x-amzn-shipping-business-id': opts['xAmznShippingBusinessId']
|
|
1063
|
+
};
|
|
1064
|
+
let formParams = {
|
|
1065
|
+
};
|
|
1066
|
+
|
|
1067
|
+
let contentTypes = ['application/json'];
|
|
1068
|
+
let accepts = ['application/json'];
|
|
1069
|
+
let returnType = PurchaseShipmentResponse;
|
|
1070
|
+
|
|
1071
|
+
return this.apiClient.callApi(
|
|
1072
|
+
'/shipping/v2/shipments', 'POST',
|
|
1073
|
+
pathParams, queryParams, headerParams, formParams, postBody,
|
|
1074
|
+
contentTypes, accepts, returnType
|
|
1075
|
+
);
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
/**
|
|
1079
|
+
* Purchases a shipping service and returns purchase related details and documents. Note: You must complete the purchase within 10 minutes of rate creation by the shipping service provider. If you make the request after the 10 minutes have expired, you will receive an error response with the error code equal to \"TOKEN_EXPIRED\". If you receive this error response, you must get the rates for the shipment again. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
1080
|
+
* @param {module:shipping_v2/model/PurchaseShipmentRequest} body PurchaseShipmentRequest body
|
|
1081
|
+
* @param {Object} opts Optional parameters
|
|
1082
|
+
* @param {String} opts.xAmznIdempotencyKey A unique value which the server uses to recognize subsequent retries of the same request.
|
|
1083
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
1084
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:shipping_v2/model/PurchaseShipmentResponse}
|
|
1085
|
+
*/
|
|
1086
|
+
purchaseShipment(body, opts) {
|
|
1087
|
+
return this.purchaseShipmentWithHttpInfo(body, opts)
|
|
1088
|
+
.then(function(response_and_data) {
|
|
1089
|
+
return response_and_data.data;
|
|
1090
|
+
});
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
|
|
1094
|
+
/**
|
|
1095
|
+
* This API submits the NDR (Non-delivery Report) Feedback for any eligible shipment. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](doc:usage-plans-and-rate-limits-in-the-sp-api).
|
|
1096
|
+
* @param {module:shipping_v2/model/SubmitNdrFeedbackRequest} body Request body for ndrFeedback operation
|
|
1097
|
+
* @param {Object} opts Optional parameters
|
|
1098
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
1099
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing HTTP response
|
|
1100
|
+
*/
|
|
1101
|
+
submitNdrFeedbackWithHttpInfo(body, opts) {
|
|
1102
|
+
opts = opts || {};
|
|
1103
|
+
let postBody = body;
|
|
1104
|
+
|
|
1105
|
+
// verify the required parameter 'body' is set
|
|
1106
|
+
if (body === undefined || body === null) {
|
|
1107
|
+
throw new Error("Missing the required parameter 'body' when calling submitNdrFeedback");
|
|
1108
|
+
}
|
|
1109
|
+
|
|
1110
|
+
|
|
1111
|
+
let pathParams = {
|
|
1112
|
+
};
|
|
1113
|
+
let queryParams = {
|
|
1114
|
+
};
|
|
1115
|
+
let headerParams = {
|
|
1116
|
+
'x-amzn-shipping-business-id': opts['xAmznShippingBusinessId']
|
|
1117
|
+
};
|
|
1118
|
+
let formParams = {
|
|
1119
|
+
};
|
|
1120
|
+
|
|
1121
|
+
let contentTypes = ['application/json'];
|
|
1122
|
+
let accepts = ['application/json'];
|
|
1123
|
+
let returnType = null;
|
|
1124
|
+
|
|
1125
|
+
return this.apiClient.callApi(
|
|
1126
|
+
'/shipping/v2/ndrFeedback', 'POST',
|
|
1127
|
+
pathParams, queryParams, headerParams, formParams, postBody,
|
|
1128
|
+
contentTypes, accepts, returnType
|
|
1129
|
+
);
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
/**
|
|
1133
|
+
* This API submits the NDR (Non-delivery Report) Feedback for any eligible shipment. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](doc:usage-plans-and-rate-limits-in-the-sp-api).
|
|
1134
|
+
* @param {module:shipping_v2/model/SubmitNdrFeedbackRequest} body Request body for ndrFeedback operation
|
|
1135
|
+
* @param {Object} opts Optional parameters
|
|
1136
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
1137
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}
|
|
1138
|
+
*/
|
|
1139
|
+
submitNdrFeedback(body, opts) {
|
|
1140
|
+
return this.submitNdrFeedbackWithHttpInfo(body, opts)
|
|
1141
|
+
.then(function(response_and_data) {
|
|
1142
|
+
return response_and_data.data;
|
|
1143
|
+
});
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
|
|
1147
|
+
/**
|
|
1148
|
+
* This API Unlink the specified carrier account with the merchant. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
1149
|
+
* @param {String} carrierId carrier Id to unlink with merchant.
|
|
1150
|
+
* @param {module:shipping_v2/model/UnlinkCarrierAccountRequest} body UnlinkCarrierAccountRequest body
|
|
1151
|
+
* @param {Object} opts Optional parameters
|
|
1152
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
1153
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:shipping_v2/model/UnlinkCarrierAccountResponse} and HTTP response
|
|
1154
|
+
*/
|
|
1155
|
+
unlinkCarrierAccountWithHttpInfo(carrierId, body, opts) {
|
|
1156
|
+
opts = opts || {};
|
|
1157
|
+
let postBody = body;
|
|
1158
|
+
|
|
1159
|
+
// verify the required parameter 'carrierId' is set
|
|
1160
|
+
if (carrierId === undefined || carrierId === null) {
|
|
1161
|
+
throw new Error("Missing the required parameter 'carrierId' when calling unlinkCarrierAccount");
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1164
|
+
// verify the required parameter 'body' is set
|
|
1165
|
+
if (body === undefined || body === null) {
|
|
1166
|
+
throw new Error("Missing the required parameter 'body' when calling unlinkCarrierAccount");
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
|
|
1170
|
+
let pathParams = {
|
|
1171
|
+
'carrierId': carrierId
|
|
1172
|
+
};
|
|
1173
|
+
let queryParams = {
|
|
1174
|
+
};
|
|
1175
|
+
let headerParams = {
|
|
1176
|
+
'x-amzn-shipping-business-id': opts['xAmznShippingBusinessId']
|
|
1177
|
+
};
|
|
1178
|
+
let formParams = {
|
|
1179
|
+
};
|
|
1180
|
+
|
|
1181
|
+
let contentTypes = ['application/json'];
|
|
1182
|
+
let accepts = ['application/json'];
|
|
1183
|
+
let returnType = UnlinkCarrierAccountResponse;
|
|
1184
|
+
|
|
1185
|
+
return this.apiClient.callApi(
|
|
1186
|
+
'/shipping/v2/carrierAccounts/{carrierId}/unlink', 'PUT',
|
|
1187
|
+
pathParams, queryParams, headerParams, formParams, postBody,
|
|
1188
|
+
contentTypes, accepts, returnType
|
|
1189
|
+
);
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
/**
|
|
1193
|
+
* This API Unlink the specified carrier account with the merchant. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 80 | 100 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values then those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
1194
|
+
* @param {String} carrierId carrier Id to unlink with merchant.
|
|
1195
|
+
* @param {module:shipping_v2/model/UnlinkCarrierAccountRequest} body UnlinkCarrierAccountRequest body
|
|
1196
|
+
* @param {Object} opts Optional parameters
|
|
1197
|
+
* @param {module:shipping_v2/model/String} opts.xAmznShippingBusinessId Amazon shipping business to assume for this request. The default is AmazonShipping_UK.
|
|
1198
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:shipping_v2/model/UnlinkCarrierAccountResponse}
|
|
1199
|
+
*/
|
|
1200
|
+
unlinkCarrierAccount(carrierId, body, opts) {
|
|
1201
|
+
return this.unlinkCarrierAccountWithHttpInfo(carrierId, body, opts)
|
|
1202
|
+
.then(function(response_and_data) {
|
|
1203
|
+
return response_and_data.data;
|
|
1204
|
+
});
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
|
|
1208
|
+
}
|