@sp-api-sdk/vendor-direct-fulfillment-shipping-api-v1 1.7.7 → 1.7.8

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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@sp-api-sdk/vendor-direct-fulfillment-shipping-api-v1",
3
3
  "author": "Vincent Mesquita <vincent.mesquita@bizon.solutions>",
4
4
  "description": "The Selling Partner API for Direct Fulfillment Shipping provides programmatic access to a direct fulfillment vendor's shipping data.",
5
- "version": "1.7.7",
5
+ "version": "1.7.8",
6
6
  "main": "dist/cjs/index.js",
7
7
  "module": "dist/es/index.js",
8
8
  "types": "dist/types/index.d.ts",
@@ -48,5 +48,5 @@
48
48
  "sp sdk",
49
49
  "vendor direct fulfillment shipping api"
50
50
  ],
51
- "gitHead": "f21b5cb511abd110bf1f07843558719993f36187"
51
+ "gitHead": "c3e42b71400941563ab1e3ec689fada6111e629d"
52
52
  }
@@ -1,15 +0,0 @@
1
- "use strict";
2
- /* tslint:disable */
3
- /* eslint-disable */
4
- /**
5
- * Selling Partner API for Direct Fulfillment Shipping
6
- * The Selling Partner API for Direct Fulfillment Shipping provides programmatic access to a direct fulfillment vendor\'s shipping data.
7
- *
8
- * The version of the OpenAPI document: v1
9
- *
10
- *
11
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
- * https://openapi-generator.tech
13
- * Do not edit the class manually.
14
- */
15
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,14 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * Selling Partner API for Direct Fulfillment Shipping
5
- * The Selling Partner API for Direct Fulfillment Shipping provides programmatic access to a direct fulfillment vendor\'s shipping data.
6
- *
7
- * The version of the OpenAPI document: v1
8
- *
9
- *
10
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
- * https://openapi-generator.tech
12
- * Do not edit the class manually.
13
- */
14
- export {};
@@ -1,62 +0,0 @@
1
- /**
2
- * Selling Partner API for Direct Fulfillment Shipping
3
- * The Selling Partner API for Direct Fulfillment Shipping provides programmatic access to a direct fulfillment vendor\'s shipping data.
4
- *
5
- * The version of the OpenAPI document: v1
6
- *
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
- import { Dimensions } from './dimensions';
13
- import { Weight } from './weight';
14
- /**
15
- * Details of the package being shipped.
16
- * @export
17
- * @interface Package
18
- */
19
- export interface Package {
20
- /**
21
- * Package identifier for the package. The first package will be 001, the second 002, and so on. This number is used as a reference to refer to this package from the pallet level.
22
- * @type {string}
23
- * @memberof Package
24
- */
25
- packageIdentifier: string;
26
- /**
27
- * This is required to be provided for every package in the small parcel shipments.
28
- * @type {string}
29
- * @memberof Package
30
- */
31
- trackingNumber?: string;
32
- /**
33
- * Carrier manifest Id (Applicable for LTL shipments).
34
- * @type {string}
35
- * @memberof Package
36
- */
37
- manifestId?: string;
38
- /**
39
- * Carrier manifest Date (Applicable for LTL shipments).
40
- * @type {string}
41
- * @memberof Package
42
- */
43
- manifestDate?: string;
44
- /**
45
- * Shipment method.
46
- * @type {string}
47
- * @memberof Package
48
- */
49
- shipMethod?: string;
50
- /**
51
- *
52
- * @type {Weight}
53
- * @memberof Package
54
- */
55
- weight: Weight;
56
- /**
57
- *
58
- * @type {Dimensions}
59
- * @memberof Package
60
- */
61
- dimensions?: Dimensions;
62
- }