@getyetty-sdk/pennylane 2026.3.26 → 2026.3.27

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/dist/index.d.mts CHANGED
@@ -4460,6 +4460,10 @@ type BankAccountsResponse = {
4460
4460
  url: string;
4461
4461
  };
4462
4462
  };
4463
+ /**
4464
+ * - `current`: Deprecated. This value will be removed in a future version. Please use `checking` instead.
4465
+ *
4466
+ */
4463
4467
  declare const AccountType: {
4464
4468
  readonly CURRENT: "current";
4465
4469
  readonly CARD: "card";
@@ -4470,6 +4474,10 @@ declare const AccountType: {
4470
4474
  readonly OTHER: "other";
4471
4475
  readonly CHECKING: "checking";
4472
4476
  };
4477
+ /**
4478
+ * - `current`: Deprecated. This value will be removed in a future version. Please use `checking` instead.
4479
+ *
4480
+ */
4473
4481
  type AccountType = (typeof AccountType)[keyof typeof AccountType];
4474
4482
  type TransactionsCategoriesResponse = {
4475
4483
  id: number;
@@ -25567,6 +25575,10 @@ type PostBankAccountData = {
25567
25575
  */
25568
25576
  bic?: string;
25569
25577
  currency?: 'EUR' | 'USD' | 'GBP' | 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYN' | 'BYR' | 'BZD' | 'CAD' | 'CDF' | 'CHE' | 'CHF' | 'CLF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CUC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'FJD' | 'FKP' | 'GEL' | 'GGP' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'IMP' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JEP' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LTL' | 'LVL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRO' | 'MRU' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLL' | 'SLE' | 'SOS' | 'SRD' | 'STD' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'UYU' | 'UZS' | 'VEF' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XDR' | 'XOF' | 'XPF' | 'YER' | 'ZAR' | 'ZMK' | 'ZMW' | 'ZWL';
25578
+ /**
25579
+ * - `current`: Deprecated. This value will be removed in a future version. Please use `checking` instead.
25580
+ *
25581
+ */
25570
25582
  account_type?: 'current' | 'card' | 'savings' | 'shares' | 'loan' | 'life_insurance' | 'other' | 'checking';
25571
25583
  };
25572
25584
  path?: never;
@@ -38034,6 +38046,7 @@ declare const BankAccounts__ResponseSchema: {
38034
38046
  readonly required: readonly ["id", "name", "currency", "created_at", "updated_at", "bank_establishment", "journal", "ledger_account"];
38035
38047
  };
38036
38048
  declare const AccountTypeSchema: {
38049
+ readonly description: "- `current`: Deprecated. This value will be removed in a future version. Please use `checking` instead.\n";
38037
38050
  readonly type: "string";
38038
38051
  readonly enum: readonly ["current", "card", "savings", "shares", "loan", "life_insurance", "other", "checking"];
38039
38052
  };