@appwrite.io/console 9.0.0 → 10.0.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.
@@ -1086,7 +1086,7 @@ export declare class Organizations {
1086
1086
  */
1087
1087
  setBillingTaxId<Preferences extends Models.Preferences = Models.DefaultPreferences>(params: {
1088
1088
  organizationId: string;
1089
- taxId: string;
1089
+ taxId?: string;
1090
1090
  }): Promise<Models.Organization<Preferences>>;
1091
1091
  /**
1092
1092
  * Set an organization's billing tax ID.
@@ -1097,7 +1097,7 @@ export declare class Organizations {
1097
1097
  * @returns {Promise<Models.Organization<Preferences>>}
1098
1098
  * @deprecated Use the object parameter style method for a better developer experience.
1099
1099
  */
1100
- setBillingTaxId<Preferences extends Models.Preferences = Models.DefaultPreferences>(organizationId: string, taxId: string): Promise<Models.Organization<Preferences>>;
1100
+ setBillingTaxId<Preferences extends Models.Preferences = Models.DefaultPreferences>(organizationId: string, taxId?: string): Promise<Models.Organization<Preferences>>;
1101
1101
  /**
1102
1102
  * Get the usage data for an organization.
1103
1103
  *