@saritasa/renewaire-frontend-sdk 0.300.4 → 0.301.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
@@ -1,5 +1,5 @@
1
- # @@saritasa/renewaire-frontend-sdk@0.300.4
1
+ # @@saritasa/renewaire-frontend-sdk@0.301.0
2
2
 
3
3
  ```bash
4
- npm install @saritasa/renewaire-frontend-sdk@0.300.4 --save
4
+ npm install @saritasa/renewaire-frontend-sdk@0.301.0 --save
5
5
  ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@saritasa/renewaire-frontend-sdk",
3
- "version": "0.300.4",
4
- "description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.300.4+1a2df838ab1951743f56b1c86f2f721115e49b2f)",
3
+ "version": "0.301.0",
4
+ "description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.301.0+0f5d22600f1411e41891475fe0f1b535965a10da)",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
7
7
  "type": "git",
@@ -6937,51 +6937,51 @@ interface SaveUserQuoteSettingsDto {
6937
6937
  /**
6938
6938
  * Freight On Board (FOB).
6939
6939
  */
6940
- freightOnBoard: string;
6940
+ freightOnBoard?: string | null;
6941
6941
  /**
6942
6942
  * Credit Terms.
6943
6943
  */
6944
- creditTerms: string;
6944
+ creditTerms?: string | null;
6945
6945
  /**
6946
6946
  * Terms and Agreements.
6947
6947
  */
6948
- termsAndAgreements: string;
6948
+ termsAndAgreements?: string | null;
6949
+ /**
6950
+ * Markup. Negative values are allowed.
6951
+ */
6952
+ markup?: number | null;
6949
6953
  /**
6950
6954
  * Quote notes.
6951
6955
  */
6952
- notes: string;
6956
+ notes?: string | null;
6953
6957
  /**
6954
6958
  * Should show unit configuration memo.
6955
6959
  */
6956
- unitConfigurationMemo: boolean;
6960
+ unitConfigurationMemo?: boolean | null;
6961
+ /**
6962
+ * <br />Required permissions: SystemAdmin | ViewExtraQuoteOptions
6963
+ */
6964
+ includeTextToSendPOToRenewAire?: boolean | null;
6957
6965
  /**
6958
6966
  * Business name.
6959
6967
  */
6960
- businessName: string;
6968
+ businessName?: string | null;
6961
6969
  /**
6962
6970
  * First name.
6963
6971
  */
6964
- firstName: string;
6972
+ firstName?: string | null;
6965
6973
  /**
6966
6974
  * Last name.
6967
6975
  */
6968
- lastName: string;
6976
+ lastName?: string | null;
6969
6977
  /**
6970
6978
  * Phone number.
6971
6979
  */
6972
- phone: string;
6980
+ phone?: string | null;
6973
6981
  /**
6974
6982
  * Set address DTO.
6975
6983
  */
6976
- facilityAddress: SetAddressDto;
6977
- /**
6978
- * Markup. Negative values are allowed.
6979
- */
6980
- markup?: number | null;
6981
- /**
6982
- * <br />Required permissions: SystemAdmin | ViewExtraQuoteOptions
6983
- */
6984
- includeTextToSendPOToRenewAire?: boolean | null;
6984
+ facilityAddress?: SetAddressDto | null;
6985
6985
  }
6986
6986
 
6987
6987
  /**