@chrt-inc/typescript-sdk 1.356.0 → 1.359.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.
Files changed (22) hide show
  1. package/dist/cjs/Client.js +2 -2
  2. package/dist/cjs/api/resources/billing/resources/rateSheets/client/Client.d.ts +17 -0
  3. package/dist/cjs/api/resources/billing/resources/rateSheets/client/Client.js +70 -0
  4. package/dist/cjs/api/resources/billing/resources/rateSheets/client/requests/RateSheetsUpdateDefaultForOffChrtShipperV1Request.d.ts +17 -0
  5. package/dist/cjs/api/resources/billing/resources/rateSheets/client/requests/RateSheetsUpdateDefaultForOffChrtShipperV1Request.js +5 -0
  6. package/dist/cjs/api/resources/billing/resources/rateSheets/client/requests/index.d.ts +1 -0
  7. package/dist/cjs/api/resources/offChrtShipperOrg/client/requests/OffChrtShipperOrgClientCreate1.d.ts +2 -0
  8. package/dist/cjs/api/types/OffChrtShipperOrg1.d.ts +2 -0
  9. package/dist/cjs/version.d.ts +1 -1
  10. package/dist/cjs/version.js +1 -1
  11. package/dist/esm/Client.mjs +2 -2
  12. package/dist/esm/api/resources/billing/resources/rateSheets/client/Client.d.mts +17 -0
  13. package/dist/esm/api/resources/billing/resources/rateSheets/client/Client.mjs +70 -0
  14. package/dist/esm/api/resources/billing/resources/rateSheets/client/requests/RateSheetsUpdateDefaultForOffChrtShipperV1Request.d.mts +17 -0
  15. package/dist/esm/api/resources/billing/resources/rateSheets/client/requests/RateSheetsUpdateDefaultForOffChrtShipperV1Request.mjs +4 -0
  16. package/dist/esm/api/resources/billing/resources/rateSheets/client/requests/index.d.mts +1 -0
  17. package/dist/esm/api/resources/offChrtShipperOrg/client/requests/OffChrtShipperOrgClientCreate1.d.mts +2 -0
  18. package/dist/esm/api/types/OffChrtShipperOrg1.d.mts +2 -0
  19. package/dist/esm/version.d.mts +1 -1
  20. package/dist/esm/version.mjs +1 -1
  21. package/package.json +1 -1
  22. package/reference.md +67 -0
@@ -67,8 +67,8 @@ class ChrtClient {
67
67
  this._options = Object.assign(Object.assign({}, _options), { headers: (0, headers_js_1.mergeHeaders)({
68
68
  "X-Fern-Language": "JavaScript",
69
69
  "X-Fern-SDK-Name": "@chrt-inc/typescript-sdk",
70
- "X-Fern-SDK-Version": "1.356.0",
71
- "User-Agent": "@chrt-inc/typescript-sdk/1.356.0",
70
+ "X-Fern-SDK-Version": "1.359.0",
71
+ "User-Agent": "@chrt-inc/typescript-sdk/1.359.0",
72
72
  "X-Fern-Runtime": core.RUNTIME.type,
73
73
  "X-Fern-Runtime-Version": core.RUNTIME.version,
74
74
  }, _options === null || _options === void 0 ? void 0 : _options.headers) });
@@ -164,5 +164,22 @@ export declare class RateSheets {
164
164
  */
165
165
  updateDefaultForDriverV1(request: Chrt.billing.RateSheetsUpdateDefaultForDriverV1Request, requestOptions?: RateSheets.RequestOptions): core.HttpResponsePromise<boolean>;
166
166
  private __updateDefaultForDriverV1;
167
+ /**
168
+ * Sets or clears a rate sheet as the default for an off-chrt shipper. Pass rate_sheet_id to set a default, or omit it to clear the default. One default per service type per off-chrt shipper. | authz: allowed_org_types=[courier], min_org_role=operator | () -> (bool)
169
+ *
170
+ * @param {Chrt.billing.RateSheetsUpdateDefaultForOffChrtShipperV1Request} request
171
+ * @param {RateSheets.RequestOptions} requestOptions - Request-specific configuration.
172
+ *
173
+ * @throws {@link Chrt.UnprocessableEntityError}
174
+ *
175
+ * @example
176
+ * await client.billing.rateSheets.updateDefaultForOffChrtShipperV1({
177
+ * off_chrt_shipper_org_id: "off_chrt_shipper_org_id",
178
+ * service_type: "on_demand",
179
+ * rate_sheet_id: "rate_sheet_id"
180
+ * })
181
+ */
182
+ updateDefaultForOffChrtShipperV1(request: Chrt.billing.RateSheetsUpdateDefaultForOffChrtShipperV1Request, requestOptions?: RateSheets.RequestOptions): core.HttpResponsePromise<boolean>;
183
+ private __updateDefaultForOffChrtShipperV1;
167
184
  protected _getAuthorizationHeader(): Promise<string | undefined>;
168
185
  }
@@ -630,6 +630,76 @@ class RateSheets {
630
630
  }
631
631
  });
632
632
  }
633
+ /**
634
+ * Sets or clears a rate sheet as the default for an off-chrt shipper. Pass rate_sheet_id to set a default, or omit it to clear the default. One default per service type per off-chrt shipper. | authz: allowed_org_types=[courier], min_org_role=operator | () -> (bool)
635
+ *
636
+ * @param {Chrt.billing.RateSheetsUpdateDefaultForOffChrtShipperV1Request} request
637
+ * @param {RateSheets.RequestOptions} requestOptions - Request-specific configuration.
638
+ *
639
+ * @throws {@link Chrt.UnprocessableEntityError}
640
+ *
641
+ * @example
642
+ * await client.billing.rateSheets.updateDefaultForOffChrtShipperV1({
643
+ * off_chrt_shipper_org_id: "off_chrt_shipper_org_id",
644
+ * service_type: "on_demand",
645
+ * rate_sheet_id: "rate_sheet_id"
646
+ * })
647
+ */
648
+ updateDefaultForOffChrtShipperV1(request, requestOptions) {
649
+ return core.HttpResponsePromise.fromPromise(this.__updateDefaultForOffChrtShipperV1(request, requestOptions));
650
+ }
651
+ __updateDefaultForOffChrtShipperV1(request, requestOptions) {
652
+ return __awaiter(this, void 0, void 0, function* () {
653
+ var _a, _b, _c, _d;
654
+ const { off_chrt_shipper_org_id: offChrtShipperOrgId, service_type: serviceType, rate_sheet_id: rateSheetId, } = request;
655
+ const _queryParams = {};
656
+ _queryParams["off_chrt_shipper_org_id"] = offChrtShipperOrgId;
657
+ _queryParams["service_type"] = serviceType;
658
+ if (rateSheetId !== undefined) {
659
+ _queryParams["rate_sheet_id"] = rateSheetId;
660
+ }
661
+ let _headers = (0, headers_js_1.mergeHeaders)((_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, (0, headers_js_1.mergeOnlyDefinedHeaders)({ Authorization: yield this._getAuthorizationHeader() }), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
662
+ const _response = yield ((_b = this._options.fetcher) !== null && _b !== void 0 ? _b : core.fetcher)({
663
+ url: core.url.join((_d = (_c = (yield core.Supplier.get(this._options.baseUrl))) !== null && _c !== void 0 ? _c : (yield core.Supplier.get(this._options.environment))) !== null && _d !== void 0 ? _d : environments.ChrtEnvironment.Local, "billing/rate_sheets/update_default_for_off_chrt_shipper/v1"),
664
+ method: "PATCH",
665
+ headers: _headers,
666
+ queryParameters: Object.assign(Object.assign({}, _queryParams), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams),
667
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
668
+ maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
669
+ abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
670
+ });
671
+ if (_response.ok) {
672
+ return { data: _response.body, rawResponse: _response.rawResponse };
673
+ }
674
+ if (_response.error.reason === "status-code") {
675
+ switch (_response.error.statusCode) {
676
+ case 422:
677
+ throw new Chrt.UnprocessableEntityError(_response.error.body, _response.rawResponse);
678
+ default:
679
+ throw new errors.ChrtError({
680
+ statusCode: _response.error.statusCode,
681
+ body: _response.error.body,
682
+ rawResponse: _response.rawResponse,
683
+ });
684
+ }
685
+ }
686
+ switch (_response.error.reason) {
687
+ case "non-json":
688
+ throw new errors.ChrtError({
689
+ statusCode: _response.error.statusCode,
690
+ body: _response.error.rawBody,
691
+ rawResponse: _response.rawResponse,
692
+ });
693
+ case "timeout":
694
+ throw new errors.ChrtTimeoutError("Timeout exceeded when calling PATCH /billing/rate_sheets/update_default_for_off_chrt_shipper/v1.");
695
+ case "unknown":
696
+ throw new errors.ChrtError({
697
+ message: _response.error.errorMessage,
698
+ rawResponse: _response.rawResponse,
699
+ });
700
+ }
701
+ });
702
+ }
633
703
  _getAuthorizationHeader() {
634
704
  return __awaiter(this, void 0, void 0, function* () {
635
705
  const bearer = yield core.Supplier.get(this._options.token);
@@ -0,0 +1,17 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Chrt from "../../../../../../index.js";
5
+ /**
6
+ * @example
7
+ * {
8
+ * off_chrt_shipper_org_id: "off_chrt_shipper_org_id",
9
+ * service_type: "on_demand",
10
+ * rate_sheet_id: "rate_sheet_id"
11
+ * }
12
+ */
13
+ export interface RateSheetsUpdateDefaultForOffChrtShipperV1Request {
14
+ off_chrt_shipper_org_id: string;
15
+ service_type: Chrt.ServiceTypeEnum1;
16
+ rate_sheet_id?: string | null;
17
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -5,3 +5,4 @@ export { type RateSheetsArchiveV1Request } from "./RateSheetsArchiveV1Request.js
5
5
  export { type RateSheetsUpdateOrgDefaultForServiceTypeV1Request } from "./RateSheetsUpdateOrgDefaultForServiceTypeV1Request.js";
6
6
  export { type RateSheetsUpdateDefaultForConnectionV1Request } from "./RateSheetsUpdateDefaultForConnectionV1Request.js";
7
7
  export { type RateSheetsUpdateDefaultForDriverV1Request } from "./RateSheetsUpdateDefaultForDriverV1Request.js";
8
+ export { type RateSheetsUpdateDefaultForOffChrtShipperV1Request } from "./RateSheetsUpdateDefaultForOffChrtShipperV1Request.js";
@@ -23,4 +23,6 @@ export interface OffChrtShipperOrgClientCreate1 {
23
23
  job_title?: string | null;
24
24
  notes?: string | null;
25
25
  shipper_customer_id_for_stripe_connect_account?: string | null;
26
+ default_rate_sheet__routed?: string | null;
27
+ default_rate_sheet__on_demand?: string | null;
26
28
  }
@@ -16,6 +16,8 @@ export interface OffChrtShipperOrg1 {
16
16
  job_title?: string | null;
17
17
  notes?: string | null;
18
18
  shipper_customer_id_for_stripe_connect_account?: string | null;
19
+ default_rate_sheet__routed?: string | null;
20
+ default_rate_sheet__on_demand?: string | null;
19
21
  /** Must be a string starting with `org_` */
20
22
  created_by_org_id: string;
21
23
  /** Must be a string starting with `user_` */
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "1.356.0";
1
+ export declare const SDK_VERSION = "1.359.0";
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "1.356.0";
4
+ exports.SDK_VERSION = "1.359.0";
@@ -31,8 +31,8 @@ export class ChrtClient {
31
31
  this._options = Object.assign(Object.assign({}, _options), { headers: mergeHeaders({
32
32
  "X-Fern-Language": "JavaScript",
33
33
  "X-Fern-SDK-Name": "@chrt-inc/typescript-sdk",
34
- "X-Fern-SDK-Version": "1.356.0",
35
- "User-Agent": "@chrt-inc/typescript-sdk/1.356.0",
34
+ "X-Fern-SDK-Version": "1.359.0",
35
+ "User-Agent": "@chrt-inc/typescript-sdk/1.359.0",
36
36
  "X-Fern-Runtime": core.RUNTIME.type,
37
37
  "X-Fern-Runtime-Version": core.RUNTIME.version,
38
38
  }, _options === null || _options === void 0 ? void 0 : _options.headers) });
@@ -164,5 +164,22 @@ export declare class RateSheets {
164
164
  */
165
165
  updateDefaultForDriverV1(request: Chrt.billing.RateSheetsUpdateDefaultForDriverV1Request, requestOptions?: RateSheets.RequestOptions): core.HttpResponsePromise<boolean>;
166
166
  private __updateDefaultForDriverV1;
167
+ /**
168
+ * Sets or clears a rate sheet as the default for an off-chrt shipper. Pass rate_sheet_id to set a default, or omit it to clear the default. One default per service type per off-chrt shipper. | authz: allowed_org_types=[courier], min_org_role=operator | () -> (bool)
169
+ *
170
+ * @param {Chrt.billing.RateSheetsUpdateDefaultForOffChrtShipperV1Request} request
171
+ * @param {RateSheets.RequestOptions} requestOptions - Request-specific configuration.
172
+ *
173
+ * @throws {@link Chrt.UnprocessableEntityError}
174
+ *
175
+ * @example
176
+ * await client.billing.rateSheets.updateDefaultForOffChrtShipperV1({
177
+ * off_chrt_shipper_org_id: "off_chrt_shipper_org_id",
178
+ * service_type: "on_demand",
179
+ * rate_sheet_id: "rate_sheet_id"
180
+ * })
181
+ */
182
+ updateDefaultForOffChrtShipperV1(request: Chrt.billing.RateSheetsUpdateDefaultForOffChrtShipperV1Request, requestOptions?: RateSheets.RequestOptions): core.HttpResponsePromise<boolean>;
183
+ private __updateDefaultForOffChrtShipperV1;
167
184
  protected _getAuthorizationHeader(): Promise<string | undefined>;
168
185
  }
@@ -594,6 +594,76 @@ export class RateSheets {
594
594
  }
595
595
  });
596
596
  }
597
+ /**
598
+ * Sets or clears a rate sheet as the default for an off-chrt shipper. Pass rate_sheet_id to set a default, or omit it to clear the default. One default per service type per off-chrt shipper. | authz: allowed_org_types=[courier], min_org_role=operator | () -> (bool)
599
+ *
600
+ * @param {Chrt.billing.RateSheetsUpdateDefaultForOffChrtShipperV1Request} request
601
+ * @param {RateSheets.RequestOptions} requestOptions - Request-specific configuration.
602
+ *
603
+ * @throws {@link Chrt.UnprocessableEntityError}
604
+ *
605
+ * @example
606
+ * await client.billing.rateSheets.updateDefaultForOffChrtShipperV1({
607
+ * off_chrt_shipper_org_id: "off_chrt_shipper_org_id",
608
+ * service_type: "on_demand",
609
+ * rate_sheet_id: "rate_sheet_id"
610
+ * })
611
+ */
612
+ updateDefaultForOffChrtShipperV1(request, requestOptions) {
613
+ return core.HttpResponsePromise.fromPromise(this.__updateDefaultForOffChrtShipperV1(request, requestOptions));
614
+ }
615
+ __updateDefaultForOffChrtShipperV1(request, requestOptions) {
616
+ return __awaiter(this, void 0, void 0, function* () {
617
+ var _a, _b, _c, _d;
618
+ const { off_chrt_shipper_org_id: offChrtShipperOrgId, service_type: serviceType, rate_sheet_id: rateSheetId, } = request;
619
+ const _queryParams = {};
620
+ _queryParams["off_chrt_shipper_org_id"] = offChrtShipperOrgId;
621
+ _queryParams["service_type"] = serviceType;
622
+ if (rateSheetId !== undefined) {
623
+ _queryParams["rate_sheet_id"] = rateSheetId;
624
+ }
625
+ let _headers = mergeHeaders((_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, mergeOnlyDefinedHeaders({ Authorization: yield this._getAuthorizationHeader() }), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
626
+ const _response = yield ((_b = this._options.fetcher) !== null && _b !== void 0 ? _b : core.fetcher)({
627
+ url: core.url.join((_d = (_c = (yield core.Supplier.get(this._options.baseUrl))) !== null && _c !== void 0 ? _c : (yield core.Supplier.get(this._options.environment))) !== null && _d !== void 0 ? _d : environments.ChrtEnvironment.Local, "billing/rate_sheets/update_default_for_off_chrt_shipper/v1"),
628
+ method: "PATCH",
629
+ headers: _headers,
630
+ queryParameters: Object.assign(Object.assign({}, _queryParams), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams),
631
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
632
+ maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
633
+ abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
634
+ });
635
+ if (_response.ok) {
636
+ return { data: _response.body, rawResponse: _response.rawResponse };
637
+ }
638
+ if (_response.error.reason === "status-code") {
639
+ switch (_response.error.statusCode) {
640
+ case 422:
641
+ throw new Chrt.UnprocessableEntityError(_response.error.body, _response.rawResponse);
642
+ default:
643
+ throw new errors.ChrtError({
644
+ statusCode: _response.error.statusCode,
645
+ body: _response.error.body,
646
+ rawResponse: _response.rawResponse,
647
+ });
648
+ }
649
+ }
650
+ switch (_response.error.reason) {
651
+ case "non-json":
652
+ throw new errors.ChrtError({
653
+ statusCode: _response.error.statusCode,
654
+ body: _response.error.rawBody,
655
+ rawResponse: _response.rawResponse,
656
+ });
657
+ case "timeout":
658
+ throw new errors.ChrtTimeoutError("Timeout exceeded when calling PATCH /billing/rate_sheets/update_default_for_off_chrt_shipper/v1.");
659
+ case "unknown":
660
+ throw new errors.ChrtError({
661
+ message: _response.error.errorMessage,
662
+ rawResponse: _response.rawResponse,
663
+ });
664
+ }
665
+ });
666
+ }
597
667
  _getAuthorizationHeader() {
598
668
  return __awaiter(this, void 0, void 0, function* () {
599
669
  const bearer = yield core.Supplier.get(this._options.token);
@@ -0,0 +1,17 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Chrt from "../../../../../../index.mjs";
5
+ /**
6
+ * @example
7
+ * {
8
+ * off_chrt_shipper_org_id: "off_chrt_shipper_org_id",
9
+ * service_type: "on_demand",
10
+ * rate_sheet_id: "rate_sheet_id"
11
+ * }
12
+ */
13
+ export interface RateSheetsUpdateDefaultForOffChrtShipperV1Request {
14
+ off_chrt_shipper_org_id: string;
15
+ service_type: Chrt.ServiceTypeEnum1;
16
+ rate_sheet_id?: string | null;
17
+ }
@@ -0,0 +1,4 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export {};
@@ -5,3 +5,4 @@ export { type RateSheetsArchiveV1Request } from "./RateSheetsArchiveV1Request.mj
5
5
  export { type RateSheetsUpdateOrgDefaultForServiceTypeV1Request } from "./RateSheetsUpdateOrgDefaultForServiceTypeV1Request.mjs";
6
6
  export { type RateSheetsUpdateDefaultForConnectionV1Request } from "./RateSheetsUpdateDefaultForConnectionV1Request.mjs";
7
7
  export { type RateSheetsUpdateDefaultForDriverV1Request } from "./RateSheetsUpdateDefaultForDriverV1Request.mjs";
8
+ export { type RateSheetsUpdateDefaultForOffChrtShipperV1Request } from "./RateSheetsUpdateDefaultForOffChrtShipperV1Request.mjs";
@@ -23,4 +23,6 @@ export interface OffChrtShipperOrgClientCreate1 {
23
23
  job_title?: string | null;
24
24
  notes?: string | null;
25
25
  shipper_customer_id_for_stripe_connect_account?: string | null;
26
+ default_rate_sheet__routed?: string | null;
27
+ default_rate_sheet__on_demand?: string | null;
26
28
  }
@@ -16,6 +16,8 @@ export interface OffChrtShipperOrg1 {
16
16
  job_title?: string | null;
17
17
  notes?: string | null;
18
18
  shipper_customer_id_for_stripe_connect_account?: string | null;
19
+ default_rate_sheet__routed?: string | null;
20
+ default_rate_sheet__on_demand?: string | null;
19
21
  /** Must be a string starting with `org_` */
20
22
  created_by_org_id: string;
21
23
  /** Must be a string starting with `user_` */
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "1.356.0";
1
+ export declare const SDK_VERSION = "1.359.0";
@@ -1 +1 @@
1
- export const SDK_VERSION = "1.356.0";
1
+ export const SDK_VERSION = "1.359.0";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chrt-inc/typescript-sdk",
3
- "version": "1.356.0",
3
+ "version": "1.359.0",
4
4
  "private": false,
5
5
  "repository": "github:chrt-inc/typescript-sdk",
6
6
  "type": "commonjs",
package/reference.md CHANGED
@@ -6676,6 +6676,73 @@ await client.billing.rateSheets.updateDefaultForDriverV1({
6676
6676
  </dl>
6677
6677
  </details>
6678
6678
 
6679
+ <details><summary><code>client.billing.rateSheets.<a href="/src/api/resources/billing/resources/rateSheets/client/Client.ts">updateDefaultForOffChrtShipperV1</a>({ ...params }) -> boolean</code></summary>
6680
+ <dl>
6681
+ <dd>
6682
+
6683
+ #### 📝 Description
6684
+
6685
+ <dl>
6686
+ <dd>
6687
+
6688
+ <dl>
6689
+ <dd>
6690
+
6691
+ Sets or clears a rate sheet as the default for an off-chrt shipper. Pass rate_sheet_id to set a default, or omit it to clear the default. One default per service type per off-chrt shipper. | authz: allowed_org_types=[courier], min_org_role=operator | () -> (bool)
6692
+
6693
+ </dd>
6694
+ </dl>
6695
+ </dd>
6696
+ </dl>
6697
+
6698
+ #### 🔌 Usage
6699
+
6700
+ <dl>
6701
+ <dd>
6702
+
6703
+ <dl>
6704
+ <dd>
6705
+
6706
+ ```typescript
6707
+ await client.billing.rateSheets.updateDefaultForOffChrtShipperV1({
6708
+ off_chrt_shipper_org_id: "off_chrt_shipper_org_id",
6709
+ service_type: "on_demand",
6710
+ rate_sheet_id: "rate_sheet_id",
6711
+ });
6712
+ ```
6713
+
6714
+ </dd>
6715
+ </dl>
6716
+ </dd>
6717
+ </dl>
6718
+
6719
+ #### ⚙️ Parameters
6720
+
6721
+ <dl>
6722
+ <dd>
6723
+
6724
+ <dl>
6725
+ <dd>
6726
+
6727
+ **request:** `Chrt.billing.RateSheetsUpdateDefaultForOffChrtShipperV1Request`
6728
+
6729
+ </dd>
6730
+ </dl>
6731
+
6732
+ <dl>
6733
+ <dd>
6734
+
6735
+ **requestOptions:** `RateSheets.RequestOptions`
6736
+
6737
+ </dd>
6738
+ </dl>
6739
+ </dd>
6740
+ </dl>
6741
+
6742
+ </dd>
6743
+ </dl>
6744
+ </details>
6745
+
6679
6746
  ## Billing Statements
6680
6747
 
6681
6748
  <details><summary><code>client.billing.statements.<a href="/src/api/resources/billing/resources/statements/client/Client.ts">getV1</a>(statementId) -> Chrt.Statement1</code></summary>