yellowgrid-api-ts 3.2.75-dev.0 → 3.2.77-dev.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -168,6 +168,7 @@ Class | Method | HTTP request | Description
168
168
  *OrdersApi* | [**postIssueCredit**](docs/OrdersApi.md#postissuecredit) | **POST** /admin/orders/{id}/credit | Issue Credit (Admin)
169
169
  *OrdersApi* | [**postPrintShippingLabel**](docs/OrdersApi.md#postprintshippinglabel) | **POST** /admin/orders/{id}/shipments/{shipment_id}/label/print | Print Shipment Label
170
170
  *OrdersApi* | [**postSendOrderEmail**](docs/OrdersApi.md#postsendorderemail) | **POST** /admin/orders/{id}/email/send | Send Order Email
171
+ *OrdersApi* | [**postSendShipmentEmail**](docs/OrdersApi.md#postsendshipmentemail) | **POST** /admin/orders/{id}/batches/{batch_id}/shipments/{shipment_id}/send/email | Send Shipment Email (Admin)
171
172
  *OrdersApi* | [**postSendSupplierEmail**](docs/OrdersApi.md#postsendsupplieremail) | **POST** /admin/orders/{id}/batches/{batch_id}/email/send | Send Supplier Email
172
173
  *OrdersApi* | [**postSplitOrder**](docs/OrdersApi.md#postsplitorder) | **POST** /admin/orders/{id}/split | Split Order
173
174
  *OrdersApi* | [**putAllocateItems**](docs/OrdersApi.md#putallocateitems) | **PUT** /admin/orders/{id}/items/allocate | Allocate Items To Supplier
package/api.ts CHANGED
@@ -20434,6 +20434,55 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
20434
20434
 
20435
20435
 
20436
20436
 
20437
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
20438
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
20439
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
20440
+
20441
+ return {
20442
+ url: toPathString(localVarUrlObj),
20443
+ options: localVarRequestOptions,
20444
+ };
20445
+ },
20446
+ /**
20447
+ * Send Shipment Email (Admin)
20448
+ * @summary Send Shipment Email (Admin)
20449
+ * @param {number} id Order ID
20450
+ * @param {number} batchId Batch ID
20451
+ * @param {number} shipmentId Shipment ID
20452
+ * @param {string} email Email Address
20453
+ * @param {*} [options] Override http request option.
20454
+ * @throws {RequiredError}
20455
+ */
20456
+ postSendShipmentEmail: async (id: number, batchId: number, shipmentId: number, email: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
20457
+ // verify required parameter 'id' is not null or undefined
20458
+ assertParamExists('postSendShipmentEmail', 'id', id)
20459
+ // verify required parameter 'batchId' is not null or undefined
20460
+ assertParamExists('postSendShipmentEmail', 'batchId', batchId)
20461
+ // verify required parameter 'shipmentId' is not null or undefined
20462
+ assertParamExists('postSendShipmentEmail', 'shipmentId', shipmentId)
20463
+ // verify required parameter 'email' is not null or undefined
20464
+ assertParamExists('postSendShipmentEmail', 'email', email)
20465
+ const localVarPath = `/admin/orders/{id}/batches/{batch_id}/shipments/{shipment_id}/send/email`
20466
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)))
20467
+ .replace(`{${"batch_id"}}`, encodeURIComponent(String(batchId)))
20468
+ .replace(`{${"shipment_id"}}`, encodeURIComponent(String(shipmentId)));
20469
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
20470
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
20471
+ let baseOptions;
20472
+ if (configuration) {
20473
+ baseOptions = configuration.baseOptions;
20474
+ }
20475
+
20476
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
20477
+ const localVarHeaderParameter = {} as any;
20478
+ const localVarQueryParameter = {} as any;
20479
+
20480
+ if (email !== undefined) {
20481
+ localVarQueryParameter['email'] = email;
20482
+ }
20483
+
20484
+
20485
+
20437
20486
  setSearchParams(localVarUrlObj, localVarQueryParameter);
20438
20487
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
20439
20488
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -20933,6 +20982,22 @@ export const OrdersApiFp = function(configuration?: Configuration) {
20933
20982
  const localVarOperationServerBasePath = operationServerMap['OrdersApi.postSendOrderEmail']?.[localVarOperationServerIndex]?.url;
20934
20983
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
20935
20984
  },
20985
+ /**
20986
+ * Send Shipment Email (Admin)
20987
+ * @summary Send Shipment Email (Admin)
20988
+ * @param {number} id Order ID
20989
+ * @param {number} batchId Batch ID
20990
+ * @param {number} shipmentId Shipment ID
20991
+ * @param {string} email Email Address
20992
+ * @param {*} [options] Override http request option.
20993
+ * @throws {RequiredError}
20994
+ */
20995
+ async postSendShipmentEmail(id: number, batchId: number, shipmentId: number, email: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
20996
+ const localVarAxiosArgs = await localVarAxiosParamCreator.postSendShipmentEmail(id, batchId, shipmentId, email, options);
20997
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
20998
+ const localVarOperationServerBasePath = operationServerMap['OrdersApi.postSendShipmentEmail']?.[localVarOperationServerIndex]?.url;
20999
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
21000
+ },
20936
21001
  /**
20937
21002
  * Send Supplier Email
20938
21003
  * @summary Send Supplier Email
@@ -21211,6 +21276,19 @@ export const OrdersApiFactory = function (configuration?: Configuration, basePat
21211
21276
  postSendOrderEmail(id: number, email: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
21212
21277
  return localVarFp.postSendOrderEmail(id, email, options).then((request) => request(axios, basePath));
21213
21278
  },
21279
+ /**
21280
+ * Send Shipment Email (Admin)
21281
+ * @summary Send Shipment Email (Admin)
21282
+ * @param {number} id Order ID
21283
+ * @param {number} batchId Batch ID
21284
+ * @param {number} shipmentId Shipment ID
21285
+ * @param {string} email Email Address
21286
+ * @param {*} [options] Override http request option.
21287
+ * @throws {RequiredError}
21288
+ */
21289
+ postSendShipmentEmail(id: number, batchId: number, shipmentId: number, email: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
21290
+ return localVarFp.postSendShipmentEmail(id, batchId, shipmentId, email, options).then((request) => request(axios, basePath));
21291
+ },
21214
21292
  /**
21215
21293
  * Send Supplier Email
21216
21294
  * @summary Send Supplier Email
@@ -21503,6 +21581,21 @@ export class OrdersApi extends BaseAPI {
21503
21581
  return OrdersApiFp(this.configuration).postSendOrderEmail(id, email, options).then((request) => request(this.axios, this.basePath));
21504
21582
  }
21505
21583
 
21584
+ /**
21585
+ * Send Shipment Email (Admin)
21586
+ * @summary Send Shipment Email (Admin)
21587
+ * @param {number} id Order ID
21588
+ * @param {number} batchId Batch ID
21589
+ * @param {number} shipmentId Shipment ID
21590
+ * @param {string} email Email Address
21591
+ * @param {*} [options] Override http request option.
21592
+ * @throws {RequiredError}
21593
+ * @memberof OrdersApi
21594
+ */
21595
+ public postSendShipmentEmail(id: number, batchId: number, shipmentId: number, email: string, options?: RawAxiosRequestConfig) {
21596
+ return OrdersApiFp(this.configuration).postSendShipmentEmail(id, batchId, shipmentId, email, options).then((request) => request(this.axios, this.basePath));
21597
+ }
21598
+
21506
21599
  /**
21507
21600
  * Send Supplier Email
21508
21601
  * @summary Send Supplier Email
package/dist/api.d.ts CHANGED
@@ -15624,6 +15624,17 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
15624
15624
  * @throws {RequiredError}
15625
15625
  */
15626
15626
  postSendOrderEmail: (id: number, email: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15627
+ /**
15628
+ * Send Shipment Email (Admin)
15629
+ * @summary Send Shipment Email (Admin)
15630
+ * @param {number} id Order ID
15631
+ * @param {number} batchId Batch ID
15632
+ * @param {number} shipmentId Shipment ID
15633
+ * @param {string} email Email Address
15634
+ * @param {*} [options] Override http request option.
15635
+ * @throws {RequiredError}
15636
+ */
15637
+ postSendShipmentEmail: (id: number, batchId: number, shipmentId: number, email: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15627
15638
  /**
15628
15639
  * Send Supplier Email
15629
15640
  * @summary Send Supplier Email
@@ -15836,6 +15847,17 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
15836
15847
  * @throws {RequiredError}
15837
15848
  */
15838
15849
  postSendOrderEmail(id: number, email: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
15850
+ /**
15851
+ * Send Shipment Email (Admin)
15852
+ * @summary Send Shipment Email (Admin)
15853
+ * @param {number} id Order ID
15854
+ * @param {number} batchId Batch ID
15855
+ * @param {number} shipmentId Shipment ID
15856
+ * @param {string} email Email Address
15857
+ * @param {*} [options] Override http request option.
15858
+ * @throws {RequiredError}
15859
+ */
15860
+ postSendShipmentEmail(id: number, batchId: number, shipmentId: number, email: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
15839
15861
  /**
15840
15862
  * Send Supplier Email
15841
15863
  * @summary Send Supplier Email
@@ -16048,6 +16070,17 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
16048
16070
  * @throws {RequiredError}
16049
16071
  */
16050
16072
  postSendOrderEmail(id: number, email: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
16073
+ /**
16074
+ * Send Shipment Email (Admin)
16075
+ * @summary Send Shipment Email (Admin)
16076
+ * @param {number} id Order ID
16077
+ * @param {number} batchId Batch ID
16078
+ * @param {number} shipmentId Shipment ID
16079
+ * @param {string} email Email Address
16080
+ * @param {*} [options] Override http request option.
16081
+ * @throws {RequiredError}
16082
+ */
16083
+ postSendShipmentEmail(id: number, batchId: number, shipmentId: number, email: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
16051
16084
  /**
16052
16085
  * Send Supplier Email
16053
16086
  * @summary Send Supplier Email
@@ -16278,6 +16311,18 @@ export declare class OrdersApi extends BaseAPI {
16278
16311
  * @memberof OrdersApi
16279
16312
  */
16280
16313
  postSendOrderEmail(id: number, email: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
16314
+ /**
16315
+ * Send Shipment Email (Admin)
16316
+ * @summary Send Shipment Email (Admin)
16317
+ * @param {number} id Order ID
16318
+ * @param {number} batchId Batch ID
16319
+ * @param {number} shipmentId Shipment ID
16320
+ * @param {string} email Email Address
16321
+ * @param {*} [options] Override http request option.
16322
+ * @throws {RequiredError}
16323
+ * @memberof OrdersApi
16324
+ */
16325
+ postSendShipmentEmail(id: number, batchId: number, shipmentId: number, email: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
16281
16326
  /**
16282
16327
  * Send Supplier Email
16283
16328
  * @summary Send Supplier Email
package/dist/api.js CHANGED
@@ -10519,6 +10519,57 @@ var OrdersApiAxiosParamCreator = function (configuration) {
10519
10519
  });
10520
10520
  });
10521
10521
  },
10522
+ /**
10523
+ * Send Shipment Email (Admin)
10524
+ * @summary Send Shipment Email (Admin)
10525
+ * @param {number} id Order ID
10526
+ * @param {number} batchId Batch ID
10527
+ * @param {number} shipmentId Shipment ID
10528
+ * @param {string} email Email Address
10529
+ * @param {*} [options] Override http request option.
10530
+ * @throws {RequiredError}
10531
+ */
10532
+ postSendShipmentEmail: function (id_1, batchId_1, shipmentId_1, email_1) {
10533
+ var args_1 = [];
10534
+ for (var _i = 4; _i < arguments.length; _i++) {
10535
+ args_1[_i - 4] = arguments[_i];
10536
+ }
10537
+ return __awaiter(_this, __spreadArray([id_1, batchId_1, shipmentId_1, email_1], args_1, true), void 0, function (id, batchId, shipmentId, email, options) {
10538
+ var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
10539
+ if (options === void 0) { options = {}; }
10540
+ return __generator(this, function (_a) {
10541
+ // verify required parameter 'id' is not null or undefined
10542
+ (0, common_1.assertParamExists)('postSendShipmentEmail', 'id', id);
10543
+ // verify required parameter 'batchId' is not null or undefined
10544
+ (0, common_1.assertParamExists)('postSendShipmentEmail', 'batchId', batchId);
10545
+ // verify required parameter 'shipmentId' is not null or undefined
10546
+ (0, common_1.assertParamExists)('postSendShipmentEmail', 'shipmentId', shipmentId);
10547
+ // verify required parameter 'email' is not null or undefined
10548
+ (0, common_1.assertParamExists)('postSendShipmentEmail', 'email', email);
10549
+ localVarPath = "/admin/orders/{id}/batches/{batch_id}/shipments/{shipment_id}/send/email"
10550
+ .replace("{".concat("id", "}"), encodeURIComponent(String(id)))
10551
+ .replace("{".concat("batch_id", "}"), encodeURIComponent(String(batchId)))
10552
+ .replace("{".concat("shipment_id", "}"), encodeURIComponent(String(shipmentId)));
10553
+ localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
10554
+ if (configuration) {
10555
+ baseOptions = configuration.baseOptions;
10556
+ }
10557
+ localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
10558
+ localVarHeaderParameter = {};
10559
+ localVarQueryParameter = {};
10560
+ if (email !== undefined) {
10561
+ localVarQueryParameter['email'] = email;
10562
+ }
10563
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
10564
+ headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
10565
+ localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
10566
+ return [2 /*return*/, {
10567
+ url: (0, common_1.toPathString)(localVarUrlObj),
10568
+ options: localVarRequestOptions,
10569
+ }];
10570
+ });
10571
+ });
10572
+ },
10522
10573
  /**
10523
10574
  * Send Supplier Email
10524
10575
  * @summary Send Supplier Email
@@ -11179,6 +11230,32 @@ var OrdersApiFp = function (configuration) {
11179
11230
  });
11180
11231
  });
11181
11232
  },
11233
+ /**
11234
+ * Send Shipment Email (Admin)
11235
+ * @summary Send Shipment Email (Admin)
11236
+ * @param {number} id Order ID
11237
+ * @param {number} batchId Batch ID
11238
+ * @param {number} shipmentId Shipment ID
11239
+ * @param {string} email Email Address
11240
+ * @param {*} [options] Override http request option.
11241
+ * @throws {RequiredError}
11242
+ */
11243
+ postSendShipmentEmail: function (id, batchId, shipmentId, email, options) {
11244
+ return __awaiter(this, void 0, void 0, function () {
11245
+ var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
11246
+ var _a, _b, _c;
11247
+ return __generator(this, function (_d) {
11248
+ switch (_d.label) {
11249
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.postSendShipmentEmail(id, batchId, shipmentId, email, options)];
11250
+ case 1:
11251
+ localVarAxiosArgs = _d.sent();
11252
+ localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
11253
+ localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['OrdersApi.postSendShipmentEmail']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
11254
+ return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
11255
+ }
11256
+ });
11257
+ });
11258
+ },
11182
11259
  /**
11183
11260
  * Send Supplier Email
11184
11261
  * @summary Send Supplier Email
@@ -11517,6 +11594,19 @@ var OrdersApiFactory = function (configuration, basePath, axios) {
11517
11594
  postSendOrderEmail: function (id, email, options) {
11518
11595
  return localVarFp.postSendOrderEmail(id, email, options).then(function (request) { return request(axios, basePath); });
11519
11596
  },
11597
+ /**
11598
+ * Send Shipment Email (Admin)
11599
+ * @summary Send Shipment Email (Admin)
11600
+ * @param {number} id Order ID
11601
+ * @param {number} batchId Batch ID
11602
+ * @param {number} shipmentId Shipment ID
11603
+ * @param {string} email Email Address
11604
+ * @param {*} [options] Override http request option.
11605
+ * @throws {RequiredError}
11606
+ */
11607
+ postSendShipmentEmail: function (id, batchId, shipmentId, email, options) {
11608
+ return localVarFp.postSendShipmentEmail(id, batchId, shipmentId, email, options).then(function (request) { return request(axios, basePath); });
11609
+ },
11520
11610
  /**
11521
11611
  * Send Supplier Email
11522
11612
  * @summary Send Supplier Email
@@ -11813,6 +11903,21 @@ var OrdersApi = /** @class */ (function (_super) {
11813
11903
  var _this = this;
11814
11904
  return (0, exports.OrdersApiFp)(this.configuration).postSendOrderEmail(id, email, options).then(function (request) { return request(_this.axios, _this.basePath); });
11815
11905
  };
11906
+ /**
11907
+ * Send Shipment Email (Admin)
11908
+ * @summary Send Shipment Email (Admin)
11909
+ * @param {number} id Order ID
11910
+ * @param {number} batchId Batch ID
11911
+ * @param {number} shipmentId Shipment ID
11912
+ * @param {string} email Email Address
11913
+ * @param {*} [options] Override http request option.
11914
+ * @throws {RequiredError}
11915
+ * @memberof OrdersApi
11916
+ */
11917
+ OrdersApi.prototype.postSendShipmentEmail = function (id, batchId, shipmentId, email, options) {
11918
+ var _this = this;
11919
+ return (0, exports.OrdersApiFp)(this.configuration).postSendShipmentEmail(id, batchId, shipmentId, email, options).then(function (request) { return request(_this.axios, _this.basePath); });
11920
+ };
11816
11921
  /**
11817
11922
  * Send Supplier Email
11818
11923
  * @summary Send Supplier Email
package/docs/OrdersApi.md CHANGED
@@ -20,6 +20,7 @@ All URIs are relative to *https://api.yellowgrid.local*
20
20
  |[**postIssueCredit**](#postissuecredit) | **POST** /admin/orders/{id}/credit | Issue Credit (Admin)|
21
21
  |[**postPrintShippingLabel**](#postprintshippinglabel) | **POST** /admin/orders/{id}/shipments/{shipment_id}/label/print | Print Shipment Label|
22
22
  |[**postSendOrderEmail**](#postsendorderemail) | **POST** /admin/orders/{id}/email/send | Send Order Email|
23
+ |[**postSendShipmentEmail**](#postsendshipmentemail) | **POST** /admin/orders/{id}/batches/{batch_id}/shipments/{shipment_id}/send/email | Send Shipment Email (Admin)|
23
24
  |[**postSendSupplierEmail**](#postsendsupplieremail) | **POST** /admin/orders/{id}/batches/{batch_id}/email/send | Send Supplier Email|
24
25
  |[**postSplitOrder**](#postsplitorder) | **POST** /admin/orders/{id}/split | Split Order|
25
26
  |[**putAllocateItems**](#putallocateitems) | **PUT** /admin/orders/{id}/items/allocate | Allocate Items To Supplier|
@@ -933,6 +934,69 @@ const { status, data } = await apiInstance.postSendOrderEmail(
933
934
  | **email** | [**string**] | Email Address | defaults to undefined|
934
935
 
935
936
 
937
+ ### Return type
938
+
939
+ void (empty response body)
940
+
941
+ ### Authorization
942
+
943
+ No authorization required
944
+
945
+ ### HTTP request headers
946
+
947
+ - **Content-Type**: Not defined
948
+ - **Accept**: Not defined
949
+
950
+
951
+ ### HTTP response details
952
+ | Status code | Description | Response headers |
953
+ |-------------|-------------|------------------|
954
+ |**200** | No Response | - |
955
+ |**400** | Bad Request | - |
956
+ |**401** | Unauthorised | - |
957
+ |**403** | Access Denied | - |
958
+
959
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
960
+
961
+ # **postSendShipmentEmail**
962
+ > postSendShipmentEmail()
963
+
964
+ Send Shipment Email (Admin)
965
+
966
+ ### Example
967
+
968
+ ```typescript
969
+ import {
970
+ OrdersApi,
971
+ Configuration
972
+ } from 'yellowgrid-api-ts';
973
+
974
+ const configuration = new Configuration();
975
+ const apiInstance = new OrdersApi(configuration);
976
+
977
+ let id: number; //Order ID (default to undefined)
978
+ let batchId: number; //Batch ID (default to undefined)
979
+ let shipmentId: number; //Shipment ID (default to undefined)
980
+ let email: string; //Email Address (default to undefined)
981
+
982
+ const { status, data } = await apiInstance.postSendShipmentEmail(
983
+ id,
984
+ batchId,
985
+ shipmentId,
986
+ email
987
+ );
988
+ ```
989
+
990
+ ### Parameters
991
+
992
+ |Name | Type | Description | Notes|
993
+ |------------- | ------------- | ------------- | -------------|
994
+ | **id** | [**number**] | Order ID | defaults to undefined|
995
+ | **batchId** | [**number**] | Batch ID | defaults to undefined|
996
+ | **shipmentId** | [**number**] | Shipment ID | defaults to undefined|
997
+ | **email** | [**string**] | Email Address | defaults to undefined|
998
+
999
+
936
1000
  ### Return type
937
1001
 
938
1002
  void (empty response body)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.75-dev.0",
3
+ "version": "3.2.77-dev.0",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {