@whiplashmerch/whiplash-api-client 1.0.2 → 1.0.4

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.
@@ -1170,6 +1170,11 @@ export interface ApiV21EntitiesItem {
1170
1170
  }
1171
1171
  /** Api_V2_1_Entities_Load model */
1172
1172
  export interface ApiV21EntitiesLoad {
1173
+ /**
1174
+ * the date/time of the appointment
1175
+ * @format date-time
1176
+ */
1177
+ appointment_datetime?: string;
1173
1178
  /**
1174
1179
  * the load creation date and time
1175
1180
  * @format date-time
@@ -3178,11 +3183,6 @@ export interface ApiV2EntitiesAudits {
3178
3183
  }
3179
3184
  /** Api_V2_Entities_BillOfLading model */
3180
3185
  export interface ApiV2EntitiesBillOfLading {
3181
- /**
3182
- * the datetime of the appointment
3183
- * @format date-time
3184
- */
3185
- appointment_datetime?: string;
3186
3186
  /** the bill of lading type */
3187
3187
  bol_type?: ApiV2EntitiesBillOfLadingBolType;
3188
3188
  /** the carrier name */
@@ -4886,6 +4886,11 @@ export interface ApiV2EntitiesItemWarehouseQuantity {
4886
4886
  }
4887
4887
  /** Api_V2_Entities_Load model */
4888
4888
  export interface ApiV2EntitiesLoad {
4889
+ /**
4890
+ * the date/time of the appointment
4891
+ * @format date-time
4892
+ */
4893
+ appointment_datetime?: string;
4889
4894
  /**
4890
4895
  * the load creation date and time
4891
4896
  * @format date-time
@@ -19,3 +19,4 @@ export * from './orderItems';
19
19
  export * from './orderBatchItems';
20
20
  export * from './orderBatchRequests';
21
21
  export * from './document';
22
+ export * from './serialNumbers';
@@ -0,0 +1,2 @@
1
+ import { HttpClient } from '../generated';
2
+ export declare const putApiV21SerialNumbersIdRestore: (client: HttpClient, serialNoId: number) => Promise<void>;
@@ -19,4 +19,10 @@ export interface ApiV21EntitiesTimelineAllocation {
19
19
  export interface ApiV21ShipnoticeItemReceivingTimelineResult {
20
20
  result: (ApiV21EntitiesShipnoticeItemTransaction | ApiV21EntitiesTimelineAllocation)[];
21
21
  }
22
+ export interface ApiV21ShipnoticeItemsIdDeleteSerialArgs {
23
+ args: {
24
+ serial_numbers: string[];
25
+ };
26
+ }
22
27
  export declare const getApiV21SipnoticeItemReceivingTimeline: (client: HttpClient, shipnoticeItemId: number) => Promise<ApiV21ShipnoticeItemReceivingTimelineResult>;
28
+ export declare const putApiV21ShipnoticeItemIdDeleteSerials: (client: HttpClient, shipnoticeItemId: number, args: ApiV21ShipnoticeItemsIdDeleteSerialArgs) => Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@whiplashmerch/whiplash-api-client",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "",
5
5
  "devDependencies": {},
6
6
  "scripts": {