ynab 1.21.0 → 1.27.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 +17 -1
- package/dist/api.d.ts +307 -91
- package/dist/api.js +160 -91
- package/dist/browser/ynab.js +1 -1
- package/dist/esm/api.d.ts +307 -91
- package/dist/esm/api.js +577 -301
- package/dist/esm/transactionsApi.d.ts +19 -2
- package/dist/esm/transactionsApi.js +13 -0
- package/dist/transactionsApi.d.ts +19 -2
- package/dist/transactionsApi.js +13 -0
- package/package.json +1 -4
package/dist/api.d.ts
CHANGED
|
@@ -123,6 +123,18 @@ export interface Account {
|
|
|
123
123
|
* @memberof Account
|
|
124
124
|
*/
|
|
125
125
|
transfer_payee_id: string;
|
|
126
|
+
/**
|
|
127
|
+
* Whether or not the account is linked to a financial institution for automatic transaction import.
|
|
128
|
+
* @type {boolean}
|
|
129
|
+
* @memberof Account
|
|
130
|
+
*/
|
|
131
|
+
direct_import_linked?: boolean | null;
|
|
132
|
+
/**
|
|
133
|
+
* If an account linked to a financial institution (direct_import_linked=true) and the linked connection is not in a healthy state, this will be true.
|
|
134
|
+
* @type {boolean}
|
|
135
|
+
* @memberof Account
|
|
136
|
+
*/
|
|
137
|
+
direct_import_in_error?: boolean | null;
|
|
126
138
|
/**
|
|
127
139
|
* Whether or not the account has been deleted. Deleted accounts will only be included in delta requests.
|
|
128
140
|
* @type {boolean}
|
|
@@ -544,7 +556,7 @@ export interface Category {
|
|
|
544
556
|
*/
|
|
545
557
|
goal_target?: number | null;
|
|
546
558
|
/**
|
|
547
|
-
* The target month for the goal to be completed. Only some goal types specify this date.
|
|
559
|
+
* The original target month for the goal to be completed. Only some goal types specify this date.
|
|
548
560
|
* @type {string}
|
|
549
561
|
* @memberof Category
|
|
550
562
|
*/
|
|
@@ -555,6 +567,30 @@ export interface Category {
|
|
|
555
567
|
* @memberof Category
|
|
556
568
|
*/
|
|
557
569
|
goal_percentage_complete?: number | null;
|
|
570
|
+
/**
|
|
571
|
+
* The number of months, including the current month, left in the current goal period.
|
|
572
|
+
* @type {number}
|
|
573
|
+
* @memberof Category
|
|
574
|
+
*/
|
|
575
|
+
goal_months_to_budget?: number | null;
|
|
576
|
+
/**
|
|
577
|
+
* The amount of funding still needed in the current month to stay on track towards completing the goal within the current goal period. This amount will generally correspond to the 'Underfunded' amount in the web and mobile clients except when viewing a category with a Needed for Spending Goal in a future month. The web and mobile clients will ignore any funding from a prior goal period when viewing category with a Needed for Spending Goal in a future month.
|
|
578
|
+
* @type {number}
|
|
579
|
+
* @memberof Category
|
|
580
|
+
*/
|
|
581
|
+
goal_under_funded?: number | null;
|
|
582
|
+
/**
|
|
583
|
+
* The total amount funded towards the goal within the current goal period.
|
|
584
|
+
* @type {number}
|
|
585
|
+
* @memberof Category
|
|
586
|
+
*/
|
|
587
|
+
goal_overall_funded?: number | null;
|
|
588
|
+
/**
|
|
589
|
+
* The amount of funding still needed to complete the goal within the current goal period.
|
|
590
|
+
* @type {number}
|
|
591
|
+
* @memberof Category
|
|
592
|
+
*/
|
|
593
|
+
goal_overall_left?: number | null;
|
|
558
594
|
/**
|
|
559
595
|
* Whether or not the category has been deleted. Deleted categories will only be included in delta requests.
|
|
560
596
|
* @type {boolean}
|
|
@@ -2775,7 +2811,9 @@ export declare const AccountsApiFp: (configuration: Configuration) => {
|
|
|
2775
2811
|
* @param {*} [options] - Override http request options.
|
|
2776
2812
|
* @throws {RequiredError}
|
|
2777
2813
|
*/
|
|
2778
|
-
createAccount(budget_id: string, data: SaveAccountWrapper, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<AccountResponse
|
|
2814
|
+
createAccount(budget_id: string, data: SaveAccountWrapper, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<AccountResponse & {
|
|
2815
|
+
rateLimit: string | null;
|
|
2816
|
+
}>;
|
|
2779
2817
|
/**
|
|
2780
2818
|
* Returns a single account
|
|
2781
2819
|
* @summary Single account
|
|
@@ -2784,7 +2822,9 @@ export declare const AccountsApiFp: (configuration: Configuration) => {
|
|
|
2784
2822
|
* @param {*} [options] - Override http request options.
|
|
2785
2823
|
* @throws {RequiredError}
|
|
2786
2824
|
*/
|
|
2787
|
-
getAccountById(budget_id: string, account_id: string, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<AccountResponse
|
|
2825
|
+
getAccountById(budget_id: string, account_id: string, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<AccountResponse & {
|
|
2826
|
+
rateLimit: string | null;
|
|
2827
|
+
}>;
|
|
2788
2828
|
/**
|
|
2789
2829
|
* Returns all accounts
|
|
2790
2830
|
* @summary Account list
|
|
@@ -2793,7 +2833,9 @@ export declare const AccountsApiFp: (configuration: Configuration) => {
|
|
|
2793
2833
|
* @param {*} [options] - Override http request options.
|
|
2794
2834
|
* @throws {RequiredError}
|
|
2795
2835
|
*/
|
|
2796
|
-
getAccounts(budget_id: string, last_knowledge_of_server?: number | undefined, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<AccountsResponse
|
|
2836
|
+
getAccounts(budget_id: string, last_knowledge_of_server?: number | undefined, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<AccountsResponse & {
|
|
2837
|
+
rateLimit: string | null;
|
|
2838
|
+
}>;
|
|
2797
2839
|
};
|
|
2798
2840
|
/**
|
|
2799
2841
|
* AccountsApi - factory interface
|
|
@@ -2808,7 +2850,9 @@ export declare const AccountsApiFactory: (configuration: Configuration) => {
|
|
|
2808
2850
|
* @param {*} [options] - Override http request options.
|
|
2809
2851
|
* @throws {RequiredError}
|
|
2810
2852
|
*/
|
|
2811
|
-
createAccount(budget_id: string, data: SaveAccountWrapper, options?: any): Promise<AccountResponse
|
|
2853
|
+
createAccount(budget_id: string, data: SaveAccountWrapper, options?: any): Promise<AccountResponse & {
|
|
2854
|
+
rateLimit: string | null;
|
|
2855
|
+
}>;
|
|
2812
2856
|
/**
|
|
2813
2857
|
* Returns a single account
|
|
2814
2858
|
* @summary Single account
|
|
@@ -2817,7 +2861,9 @@ export declare const AccountsApiFactory: (configuration: Configuration) => {
|
|
|
2817
2861
|
* @param {*} [options] - Override http request options.
|
|
2818
2862
|
* @throws {RequiredError}
|
|
2819
2863
|
*/
|
|
2820
|
-
getAccountById(budget_id: string, account_id: string, options?: any): Promise<AccountResponse
|
|
2864
|
+
getAccountById(budget_id: string, account_id: string, options?: any): Promise<AccountResponse & {
|
|
2865
|
+
rateLimit: string | null;
|
|
2866
|
+
}>;
|
|
2821
2867
|
/**
|
|
2822
2868
|
* Returns all accounts
|
|
2823
2869
|
* @summary Account list
|
|
@@ -2826,7 +2872,9 @@ export declare const AccountsApiFactory: (configuration: Configuration) => {
|
|
|
2826
2872
|
* @param {*} [options] - Override http request options.
|
|
2827
2873
|
* @throws {RequiredError}
|
|
2828
2874
|
*/
|
|
2829
|
-
getAccounts(budget_id: string, last_knowledge_of_server?: number | undefined, options?: any): Promise<AccountsResponse
|
|
2875
|
+
getAccounts(budget_id: string, last_knowledge_of_server?: number | undefined, options?: any): Promise<AccountsResponse & {
|
|
2876
|
+
rateLimit: string | null;
|
|
2877
|
+
}>;
|
|
2830
2878
|
};
|
|
2831
2879
|
/**
|
|
2832
2880
|
* AccountsApi - object-oriented interface
|
|
@@ -2844,7 +2892,9 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
2844
2892
|
* @throws {RequiredError}
|
|
2845
2893
|
* @memberof AccountsApi
|
|
2846
2894
|
*/
|
|
2847
|
-
createAccount(budget_id: string, data: SaveAccountWrapper, options?: any): Promise<AccountResponse
|
|
2895
|
+
createAccount(budget_id: string, data: SaveAccountWrapper, options?: any): Promise<AccountResponse & {
|
|
2896
|
+
rateLimit: string | null;
|
|
2897
|
+
}>;
|
|
2848
2898
|
/**
|
|
2849
2899
|
* Returns a single account
|
|
2850
2900
|
* @summary Single account
|
|
@@ -2854,7 +2904,9 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
2854
2904
|
* @throws {RequiredError}
|
|
2855
2905
|
* @memberof AccountsApi
|
|
2856
2906
|
*/
|
|
2857
|
-
getAccountById(budget_id: string, account_id: string, options?: any): Promise<AccountResponse
|
|
2907
|
+
getAccountById(budget_id: string, account_id: string, options?: any): Promise<AccountResponse & {
|
|
2908
|
+
rateLimit: string | null;
|
|
2909
|
+
}>;
|
|
2858
2910
|
/**
|
|
2859
2911
|
* Returns all accounts
|
|
2860
2912
|
* @summary Account list
|
|
@@ -2864,7 +2916,9 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
2864
2916
|
* @throws {RequiredError}
|
|
2865
2917
|
* @memberof AccountsApi
|
|
2866
2918
|
*/
|
|
2867
|
-
getAccounts(budget_id: string, last_knowledge_of_server?: number, options?: any): Promise<AccountsResponse
|
|
2919
|
+
getAccounts(budget_id: string, last_knowledge_of_server?: number, options?: any): Promise<AccountsResponse & {
|
|
2920
|
+
rateLimit: string | null;
|
|
2921
|
+
}>;
|
|
2868
2922
|
}
|
|
2869
2923
|
/**
|
|
2870
2924
|
* BudgetsApi - fetch parameter creator
|
|
@@ -2910,7 +2964,9 @@ export declare const BudgetsApiFp: (configuration: Configuration) => {
|
|
|
2910
2964
|
* @param {*} [options] - Override http request options.
|
|
2911
2965
|
* @throws {RequiredError}
|
|
2912
2966
|
*/
|
|
2913
|
-
getBudgetById(budget_id: string, last_knowledge_of_server?: number | undefined, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<BudgetDetailResponse
|
|
2967
|
+
getBudgetById(budget_id: string, last_knowledge_of_server?: number | undefined, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<BudgetDetailResponse & {
|
|
2968
|
+
rateLimit: string | null;
|
|
2969
|
+
}>;
|
|
2914
2970
|
/**
|
|
2915
2971
|
* Returns settings for a budget
|
|
2916
2972
|
* @summary Budget Settings
|
|
@@ -2918,7 +2974,9 @@ export declare const BudgetsApiFp: (configuration: Configuration) => {
|
|
|
2918
2974
|
* @param {*} [options] - Override http request options.
|
|
2919
2975
|
* @throws {RequiredError}
|
|
2920
2976
|
*/
|
|
2921
|
-
getBudgetSettingsById(budget_id: string, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<BudgetSettingsResponse
|
|
2977
|
+
getBudgetSettingsById(budget_id: string, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<BudgetSettingsResponse & {
|
|
2978
|
+
rateLimit: string | null;
|
|
2979
|
+
}>;
|
|
2922
2980
|
/**
|
|
2923
2981
|
* Returns budgets list with summary information
|
|
2924
2982
|
* @summary List budgets
|
|
@@ -2926,7 +2984,9 @@ export declare const BudgetsApiFp: (configuration: Configuration) => {
|
|
|
2926
2984
|
* @param {*} [options] - Override http request options.
|
|
2927
2985
|
* @throws {RequiredError}
|
|
2928
2986
|
*/
|
|
2929
|
-
getBudgets(include_accounts?: boolean | undefined, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<BudgetSummaryResponse
|
|
2987
|
+
getBudgets(include_accounts?: boolean | undefined, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<BudgetSummaryResponse & {
|
|
2988
|
+
rateLimit: string | null;
|
|
2989
|
+
}>;
|
|
2930
2990
|
};
|
|
2931
2991
|
/**
|
|
2932
2992
|
* BudgetsApi - factory interface
|
|
@@ -2941,7 +3001,9 @@ export declare const BudgetsApiFactory: (configuration: Configuration) => {
|
|
|
2941
3001
|
* @param {*} [options] - Override http request options.
|
|
2942
3002
|
* @throws {RequiredError}
|
|
2943
3003
|
*/
|
|
2944
|
-
getBudgetById(budget_id: string, last_knowledge_of_server?: number | undefined, options?: any): Promise<BudgetDetailResponse
|
|
3004
|
+
getBudgetById(budget_id: string, last_knowledge_of_server?: number | undefined, options?: any): Promise<BudgetDetailResponse & {
|
|
3005
|
+
rateLimit: string | null;
|
|
3006
|
+
}>;
|
|
2945
3007
|
/**
|
|
2946
3008
|
* Returns settings for a budget
|
|
2947
3009
|
* @summary Budget Settings
|
|
@@ -2949,7 +3011,9 @@ export declare const BudgetsApiFactory: (configuration: Configuration) => {
|
|
|
2949
3011
|
* @param {*} [options] - Override http request options.
|
|
2950
3012
|
* @throws {RequiredError}
|
|
2951
3013
|
*/
|
|
2952
|
-
getBudgetSettingsById(budget_id: string, options?: any): Promise<BudgetSettingsResponse
|
|
3014
|
+
getBudgetSettingsById(budget_id: string, options?: any): Promise<BudgetSettingsResponse & {
|
|
3015
|
+
rateLimit: string | null;
|
|
3016
|
+
}>;
|
|
2953
3017
|
/**
|
|
2954
3018
|
* Returns budgets list with summary information
|
|
2955
3019
|
* @summary List budgets
|
|
@@ -2957,7 +3021,9 @@ export declare const BudgetsApiFactory: (configuration: Configuration) => {
|
|
|
2957
3021
|
* @param {*} [options] - Override http request options.
|
|
2958
3022
|
* @throws {RequiredError}
|
|
2959
3023
|
*/
|
|
2960
|
-
getBudgets(include_accounts?: boolean | undefined, options?: any): Promise<BudgetSummaryResponse
|
|
3024
|
+
getBudgets(include_accounts?: boolean | undefined, options?: any): Promise<BudgetSummaryResponse & {
|
|
3025
|
+
rateLimit: string | null;
|
|
3026
|
+
}>;
|
|
2961
3027
|
};
|
|
2962
3028
|
/**
|
|
2963
3029
|
* BudgetsApi - object-oriented interface
|
|
@@ -2975,7 +3041,9 @@ export declare class BudgetsApi extends BaseAPI {
|
|
|
2975
3041
|
* @throws {RequiredError}
|
|
2976
3042
|
* @memberof BudgetsApi
|
|
2977
3043
|
*/
|
|
2978
|
-
getBudgetById(budget_id: string, last_knowledge_of_server?: number, options?: any): Promise<BudgetDetailResponse
|
|
3044
|
+
getBudgetById(budget_id: string, last_knowledge_of_server?: number, options?: any): Promise<BudgetDetailResponse & {
|
|
3045
|
+
rateLimit: string | null;
|
|
3046
|
+
}>;
|
|
2979
3047
|
/**
|
|
2980
3048
|
* Returns settings for a budget
|
|
2981
3049
|
* @summary Budget Settings
|
|
@@ -2984,7 +3052,9 @@ export declare class BudgetsApi extends BaseAPI {
|
|
|
2984
3052
|
* @throws {RequiredError}
|
|
2985
3053
|
* @memberof BudgetsApi
|
|
2986
3054
|
*/
|
|
2987
|
-
getBudgetSettingsById(budget_id: string, options?: any): Promise<BudgetSettingsResponse
|
|
3055
|
+
getBudgetSettingsById(budget_id: string, options?: any): Promise<BudgetSettingsResponse & {
|
|
3056
|
+
rateLimit: string | null;
|
|
3057
|
+
}>;
|
|
2988
3058
|
/**
|
|
2989
3059
|
* Returns budgets list with summary information
|
|
2990
3060
|
* @summary List budgets
|
|
@@ -2993,7 +3063,9 @@ export declare class BudgetsApi extends BaseAPI {
|
|
|
2993
3063
|
* @throws {RequiredError}
|
|
2994
3064
|
* @memberof BudgetsApi
|
|
2995
3065
|
*/
|
|
2996
|
-
getBudgets(include_accounts?: boolean, options?: any): Promise<BudgetSummaryResponse
|
|
3066
|
+
getBudgets(include_accounts?: boolean, options?: any): Promise<BudgetSummaryResponse & {
|
|
3067
|
+
rateLimit: string | null;
|
|
3068
|
+
}>;
|
|
2997
3069
|
}
|
|
2998
3070
|
/**
|
|
2999
3071
|
* CategoriesApi - fetch parameter creator
|
|
@@ -3053,7 +3125,9 @@ export declare const CategoriesApiFp: (configuration: Configuration) => {
|
|
|
3053
3125
|
* @param {*} [options] - Override http request options.
|
|
3054
3126
|
* @throws {RequiredError}
|
|
3055
3127
|
*/
|
|
3056
|
-
getCategories(budget_id: string, last_knowledge_of_server?: number | undefined, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<CategoriesResponse
|
|
3128
|
+
getCategories(budget_id: string, last_knowledge_of_server?: number | undefined, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<CategoriesResponse & {
|
|
3129
|
+
rateLimit: string | null;
|
|
3130
|
+
}>;
|
|
3057
3131
|
/**
|
|
3058
3132
|
* Returns a single category. Amounts (budgeted, activity, balance, etc.) are specific to the current budget month (UTC).
|
|
3059
3133
|
* @summary Single category
|
|
@@ -3062,7 +3136,9 @@ export declare const CategoriesApiFp: (configuration: Configuration) => {
|
|
|
3062
3136
|
* @param {*} [options] - Override http request options.
|
|
3063
3137
|
* @throws {RequiredError}
|
|
3064
3138
|
*/
|
|
3065
|
-
getCategoryById(budget_id: string, category_id: string, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<CategoryResponse
|
|
3139
|
+
getCategoryById(budget_id: string, category_id: string, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<CategoryResponse & {
|
|
3140
|
+
rateLimit: string | null;
|
|
3141
|
+
}>;
|
|
3066
3142
|
/**
|
|
3067
3143
|
* Returns a single category for a specific budget month. Amounts (budgeted, activity, balance, etc.) are specific to the current budget month (UTC).
|
|
3068
3144
|
* @summary Single category for a specific budget month
|
|
@@ -3072,7 +3148,9 @@ export declare const CategoriesApiFp: (configuration: Configuration) => {
|
|
|
3072
3148
|
* @param {*} [options] - Override http request options.
|
|
3073
3149
|
* @throws {RequiredError}
|
|
3074
3150
|
*/
|
|
3075
|
-
getMonthCategoryById(budget_id: string, month: Date | string, category_id: string, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<CategoryResponse
|
|
3151
|
+
getMonthCategoryById(budget_id: string, month: Date | string, category_id: string, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<CategoryResponse & {
|
|
3152
|
+
rateLimit: string | null;
|
|
3153
|
+
}>;
|
|
3076
3154
|
/**
|
|
3077
3155
|
* Update a category for a specific month. Only `budgeted` amount can be updated.
|
|
3078
3156
|
* @summary Update a category for a specific month
|
|
@@ -3083,7 +3161,9 @@ export declare const CategoriesApiFp: (configuration: Configuration) => {
|
|
|
3083
3161
|
* @param {*} [options] - Override http request options.
|
|
3084
3162
|
* @throws {RequiredError}
|
|
3085
3163
|
*/
|
|
3086
|
-
updateMonthCategory(budget_id: string, month: Date | string, category_id: string, data: SaveMonthCategoryWrapper, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<SaveCategoryResponse
|
|
3164
|
+
updateMonthCategory(budget_id: string, month: Date | string, category_id: string, data: SaveMonthCategoryWrapper, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<SaveCategoryResponse & {
|
|
3165
|
+
rateLimit: string | null;
|
|
3166
|
+
}>;
|
|
3087
3167
|
};
|
|
3088
3168
|
/**
|
|
3089
3169
|
* CategoriesApi - factory interface
|
|
@@ -3098,7 +3178,9 @@ export declare const CategoriesApiFactory: (configuration: Configuration) => {
|
|
|
3098
3178
|
* @param {*} [options] - Override http request options.
|
|
3099
3179
|
* @throws {RequiredError}
|
|
3100
3180
|
*/
|
|
3101
|
-
getCategories(budget_id: string, last_knowledge_of_server?: number | undefined, options?: any): Promise<CategoriesResponse
|
|
3181
|
+
getCategories(budget_id: string, last_knowledge_of_server?: number | undefined, options?: any): Promise<CategoriesResponse & {
|
|
3182
|
+
rateLimit: string | null;
|
|
3183
|
+
}>;
|
|
3102
3184
|
/**
|
|
3103
3185
|
* Returns a single category. Amounts (budgeted, activity, balance, etc.) are specific to the current budget month (UTC).
|
|
3104
3186
|
* @summary Single category
|
|
@@ -3107,7 +3189,9 @@ export declare const CategoriesApiFactory: (configuration: Configuration) => {
|
|
|
3107
3189
|
* @param {*} [options] - Override http request options.
|
|
3108
3190
|
* @throws {RequiredError}
|
|
3109
3191
|
*/
|
|
3110
|
-
getCategoryById(budget_id: string, category_id: string, options?: any): Promise<CategoryResponse
|
|
3192
|
+
getCategoryById(budget_id: string, category_id: string, options?: any): Promise<CategoryResponse & {
|
|
3193
|
+
rateLimit: string | null;
|
|
3194
|
+
}>;
|
|
3111
3195
|
/**
|
|
3112
3196
|
* Returns a single category for a specific budget month. Amounts (budgeted, activity, balance, etc.) are specific to the current budget month (UTC).
|
|
3113
3197
|
* @summary Single category for a specific budget month
|
|
@@ -3117,7 +3201,9 @@ export declare const CategoriesApiFactory: (configuration: Configuration) => {
|
|
|
3117
3201
|
* @param {*} [options] - Override http request options.
|
|
3118
3202
|
* @throws {RequiredError}
|
|
3119
3203
|
*/
|
|
3120
|
-
getMonthCategoryById(budget_id: string, month: Date | string, category_id: string, options?: any): Promise<CategoryResponse
|
|
3204
|
+
getMonthCategoryById(budget_id: string, month: Date | string, category_id: string, options?: any): Promise<CategoryResponse & {
|
|
3205
|
+
rateLimit: string | null;
|
|
3206
|
+
}>;
|
|
3121
3207
|
/**
|
|
3122
3208
|
* Update a category for a specific month. Only `budgeted` amount can be updated.
|
|
3123
3209
|
* @summary Update a category for a specific month
|
|
@@ -3128,7 +3214,9 @@ export declare const CategoriesApiFactory: (configuration: Configuration) => {
|
|
|
3128
3214
|
* @param {*} [options] - Override http request options.
|
|
3129
3215
|
* @throws {RequiredError}
|
|
3130
3216
|
*/
|
|
3131
|
-
updateMonthCategory(budget_id: string, month: Date | string, category_id: string, data: SaveMonthCategoryWrapper, options?: any): Promise<SaveCategoryResponse
|
|
3217
|
+
updateMonthCategory(budget_id: string, month: Date | string, category_id: string, data: SaveMonthCategoryWrapper, options?: any): Promise<SaveCategoryResponse & {
|
|
3218
|
+
rateLimit: string | null;
|
|
3219
|
+
}>;
|
|
3132
3220
|
};
|
|
3133
3221
|
/**
|
|
3134
3222
|
* CategoriesApi - object-oriented interface
|
|
@@ -3146,7 +3234,9 @@ export declare class CategoriesApi extends BaseAPI {
|
|
|
3146
3234
|
* @throws {RequiredError}
|
|
3147
3235
|
* @memberof CategoriesApi
|
|
3148
3236
|
*/
|
|
3149
|
-
getCategories(budget_id: string, last_knowledge_of_server?: number, options?: any): Promise<CategoriesResponse
|
|
3237
|
+
getCategories(budget_id: string, last_knowledge_of_server?: number, options?: any): Promise<CategoriesResponse & {
|
|
3238
|
+
rateLimit: string | null;
|
|
3239
|
+
}>;
|
|
3150
3240
|
/**
|
|
3151
3241
|
* Returns a single category. Amounts (budgeted, activity, balance, etc.) are specific to the current budget month (UTC).
|
|
3152
3242
|
* @summary Single category
|
|
@@ -3156,7 +3246,9 @@ export declare class CategoriesApi extends BaseAPI {
|
|
|
3156
3246
|
* @throws {RequiredError}
|
|
3157
3247
|
* @memberof CategoriesApi
|
|
3158
3248
|
*/
|
|
3159
|
-
getCategoryById(budget_id: string, category_id: string, options?: any): Promise<CategoryResponse
|
|
3249
|
+
getCategoryById(budget_id: string, category_id: string, options?: any): Promise<CategoryResponse & {
|
|
3250
|
+
rateLimit: string | null;
|
|
3251
|
+
}>;
|
|
3160
3252
|
/**
|
|
3161
3253
|
* Returns a single category for a specific budget month. Amounts (budgeted, activity, balance, etc.) are specific to the current budget month (UTC).
|
|
3162
3254
|
* @summary Single category for a specific budget month
|
|
@@ -3167,7 +3259,9 @@ export declare class CategoriesApi extends BaseAPI {
|
|
|
3167
3259
|
* @throws {RequiredError}
|
|
3168
3260
|
* @memberof CategoriesApi
|
|
3169
3261
|
*/
|
|
3170
|
-
getMonthCategoryById(budget_id: string, month: Date | string, category_id: string, options?: any): Promise<CategoryResponse
|
|
3262
|
+
getMonthCategoryById(budget_id: string, month: Date | string, category_id: string, options?: any): Promise<CategoryResponse & {
|
|
3263
|
+
rateLimit: string | null;
|
|
3264
|
+
}>;
|
|
3171
3265
|
/**
|
|
3172
3266
|
* Update a category for a specific month. Only `budgeted` amount can be updated.
|
|
3173
3267
|
* @summary Update a category for a specific month
|
|
@@ -3179,7 +3273,9 @@ export declare class CategoriesApi extends BaseAPI {
|
|
|
3179
3273
|
* @throws {RequiredError}
|
|
3180
3274
|
* @memberof CategoriesApi
|
|
3181
3275
|
*/
|
|
3182
|
-
updateMonthCategory(budget_id: string, month: Date | string, category_id: string, data: SaveMonthCategoryWrapper, options?: any): Promise<SaveCategoryResponse
|
|
3276
|
+
updateMonthCategory(budget_id: string, month: Date | string, category_id: string, data: SaveMonthCategoryWrapper, options?: any): Promise<SaveCategoryResponse & {
|
|
3277
|
+
rateLimit: string | null;
|
|
3278
|
+
}>;
|
|
3183
3279
|
}
|
|
3184
3280
|
/**
|
|
3185
3281
|
* DeprecatedApi - fetch parameter creator
|
|
@@ -3209,7 +3305,9 @@ export declare const DeprecatedApiFp: (configuration: Configuration) => {
|
|
|
3209
3305
|
* @param {*} [options] - Override http request options.
|
|
3210
3306
|
* @throws {RequiredError}
|
|
3211
3307
|
*/
|
|
3212
|
-
bulkCreateTransactions(budget_id: string, transactions: BulkTransactions, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<BulkResponse
|
|
3308
|
+
bulkCreateTransactions(budget_id: string, transactions: BulkTransactions, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<BulkResponse & {
|
|
3309
|
+
rateLimit: string | null;
|
|
3310
|
+
}>;
|
|
3213
3311
|
};
|
|
3214
3312
|
/**
|
|
3215
3313
|
* DeprecatedApi - factory interface
|
|
@@ -3224,7 +3322,9 @@ export declare const DeprecatedApiFactory: (configuration: Configuration) => {
|
|
|
3224
3322
|
* @param {*} [options] - Override http request options.
|
|
3225
3323
|
* @throws {RequiredError}
|
|
3226
3324
|
*/
|
|
3227
|
-
bulkCreateTransactions(budget_id: string, transactions: BulkTransactions, options?: any): Promise<BulkResponse
|
|
3325
|
+
bulkCreateTransactions(budget_id: string, transactions: BulkTransactions, options?: any): Promise<BulkResponse & {
|
|
3326
|
+
rateLimit: string | null;
|
|
3327
|
+
}>;
|
|
3228
3328
|
};
|
|
3229
3329
|
/**
|
|
3230
3330
|
* DeprecatedApi - object-oriented interface
|
|
@@ -3242,7 +3342,9 @@ export declare class DeprecatedApi extends BaseAPI {
|
|
|
3242
3342
|
* @throws {RequiredError}
|
|
3243
3343
|
* @memberof DeprecatedApi
|
|
3244
3344
|
*/
|
|
3245
|
-
bulkCreateTransactions(budget_id: string, transactions: BulkTransactions, options?: any): Promise<BulkResponse
|
|
3345
|
+
bulkCreateTransactions(budget_id: string, transactions: BulkTransactions, options?: any): Promise<BulkResponse & {
|
|
3346
|
+
rateLimit: string | null;
|
|
3347
|
+
}>;
|
|
3246
3348
|
}
|
|
3247
3349
|
/**
|
|
3248
3350
|
* MonthsApi - fetch parameter creator
|
|
@@ -3281,7 +3383,9 @@ export declare const MonthsApiFp: (configuration: Configuration) => {
|
|
|
3281
3383
|
* @param {*} [options] - Override http request options.
|
|
3282
3384
|
* @throws {RequiredError}
|
|
3283
3385
|
*/
|
|
3284
|
-
getBudgetMonth(budget_id: string, month: Date | string, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<MonthDetailResponse
|
|
3386
|
+
getBudgetMonth(budget_id: string, month: Date | string, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<MonthDetailResponse & {
|
|
3387
|
+
rateLimit: string | null;
|
|
3388
|
+
}>;
|
|
3285
3389
|
/**
|
|
3286
3390
|
* Returns all budget months
|
|
3287
3391
|
* @summary List budget months
|
|
@@ -3290,7 +3394,9 @@ export declare const MonthsApiFp: (configuration: Configuration) => {
|
|
|
3290
3394
|
* @param {*} [options] - Override http request options.
|
|
3291
3395
|
* @throws {RequiredError}
|
|
3292
3396
|
*/
|
|
3293
|
-
getBudgetMonths(budget_id: string, last_knowledge_of_server?: number | undefined, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<MonthSummariesResponse
|
|
3397
|
+
getBudgetMonths(budget_id: string, last_knowledge_of_server?: number | undefined, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<MonthSummariesResponse & {
|
|
3398
|
+
rateLimit: string | null;
|
|
3399
|
+
}>;
|
|
3294
3400
|
};
|
|
3295
3401
|
/**
|
|
3296
3402
|
* MonthsApi - factory interface
|
|
@@ -3305,7 +3411,9 @@ export declare const MonthsApiFactory: (configuration: Configuration) => {
|
|
|
3305
3411
|
* @param {*} [options] - Override http request options.
|
|
3306
3412
|
* @throws {RequiredError}
|
|
3307
3413
|
*/
|
|
3308
|
-
getBudgetMonth(budget_id: string, month: Date | string, options?: any): Promise<MonthDetailResponse
|
|
3414
|
+
getBudgetMonth(budget_id: string, month: Date | string, options?: any): Promise<MonthDetailResponse & {
|
|
3415
|
+
rateLimit: string | null;
|
|
3416
|
+
}>;
|
|
3309
3417
|
/**
|
|
3310
3418
|
* Returns all budget months
|
|
3311
3419
|
* @summary List budget months
|
|
@@ -3314,7 +3422,9 @@ export declare const MonthsApiFactory: (configuration: Configuration) => {
|
|
|
3314
3422
|
* @param {*} [options] - Override http request options.
|
|
3315
3423
|
* @throws {RequiredError}
|
|
3316
3424
|
*/
|
|
3317
|
-
getBudgetMonths(budget_id: string, last_knowledge_of_server?: number | undefined, options?: any): Promise<MonthSummariesResponse
|
|
3425
|
+
getBudgetMonths(budget_id: string, last_knowledge_of_server?: number | undefined, options?: any): Promise<MonthSummariesResponse & {
|
|
3426
|
+
rateLimit: string | null;
|
|
3427
|
+
}>;
|
|
3318
3428
|
};
|
|
3319
3429
|
/**
|
|
3320
3430
|
* MonthsApi - object-oriented interface
|
|
@@ -3332,7 +3442,9 @@ export declare class MonthsApi extends BaseAPI {
|
|
|
3332
3442
|
* @throws {RequiredError}
|
|
3333
3443
|
* @memberof MonthsApi
|
|
3334
3444
|
*/
|
|
3335
|
-
getBudgetMonth(budget_id: string, month: Date | string, options?: any): Promise<MonthDetailResponse
|
|
3445
|
+
getBudgetMonth(budget_id: string, month: Date | string, options?: any): Promise<MonthDetailResponse & {
|
|
3446
|
+
rateLimit: string | null;
|
|
3447
|
+
}>;
|
|
3336
3448
|
/**
|
|
3337
3449
|
* Returns all budget months
|
|
3338
3450
|
* @summary List budget months
|
|
@@ -3342,7 +3454,9 @@ export declare class MonthsApi extends BaseAPI {
|
|
|
3342
3454
|
* @throws {RequiredError}
|
|
3343
3455
|
* @memberof MonthsApi
|
|
3344
3456
|
*/
|
|
3345
|
-
getBudgetMonths(budget_id: string, last_knowledge_of_server?: number, options?: any): Promise<MonthSummariesResponse
|
|
3457
|
+
getBudgetMonths(budget_id: string, last_knowledge_of_server?: number, options?: any): Promise<MonthSummariesResponse & {
|
|
3458
|
+
rateLimit: string | null;
|
|
3459
|
+
}>;
|
|
3346
3460
|
}
|
|
3347
3461
|
/**
|
|
3348
3462
|
* PayeeLocationsApi - fetch parameter creator
|
|
@@ -3389,7 +3503,9 @@ export declare const PayeeLocationsApiFp: (configuration: Configuration) => {
|
|
|
3389
3503
|
* @param {*} [options] - Override http request options.
|
|
3390
3504
|
* @throws {RequiredError}
|
|
3391
3505
|
*/
|
|
3392
|
-
getPayeeLocationById(budget_id: string, payee_location_id: string, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<PayeeLocationResponse
|
|
3506
|
+
getPayeeLocationById(budget_id: string, payee_location_id: string, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<PayeeLocationResponse & {
|
|
3507
|
+
rateLimit: string | null;
|
|
3508
|
+
}>;
|
|
3393
3509
|
/**
|
|
3394
3510
|
* Returns all payee locations
|
|
3395
3511
|
* @summary List payee locations
|
|
@@ -3397,7 +3513,9 @@ export declare const PayeeLocationsApiFp: (configuration: Configuration) => {
|
|
|
3397
3513
|
* @param {*} [options] - Override http request options.
|
|
3398
3514
|
* @throws {RequiredError}
|
|
3399
3515
|
*/
|
|
3400
|
-
getPayeeLocations(budget_id: string, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<PayeeLocationsResponse
|
|
3516
|
+
getPayeeLocations(budget_id: string, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<PayeeLocationsResponse & {
|
|
3517
|
+
rateLimit: string | null;
|
|
3518
|
+
}>;
|
|
3401
3519
|
/**
|
|
3402
3520
|
* Returns all payee locations for a specified payee
|
|
3403
3521
|
* @summary List locations for a payee
|
|
@@ -3406,7 +3524,9 @@ export declare const PayeeLocationsApiFp: (configuration: Configuration) => {
|
|
|
3406
3524
|
* @param {*} [options] - Override http request options.
|
|
3407
3525
|
* @throws {RequiredError}
|
|
3408
3526
|
*/
|
|
3409
|
-
getPayeeLocationsByPayee(budget_id: string, payee_id: string, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<PayeeLocationsResponse
|
|
3527
|
+
getPayeeLocationsByPayee(budget_id: string, payee_id: string, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<PayeeLocationsResponse & {
|
|
3528
|
+
rateLimit: string | null;
|
|
3529
|
+
}>;
|
|
3410
3530
|
};
|
|
3411
3531
|
/**
|
|
3412
3532
|
* PayeeLocationsApi - factory interface
|
|
@@ -3421,7 +3541,9 @@ export declare const PayeeLocationsApiFactory: (configuration: Configuration) =>
|
|
|
3421
3541
|
* @param {*} [options] - Override http request options.
|
|
3422
3542
|
* @throws {RequiredError}
|
|
3423
3543
|
*/
|
|
3424
|
-
getPayeeLocationById(budget_id: string, payee_location_id: string, options?: any): Promise<PayeeLocationResponse
|
|
3544
|
+
getPayeeLocationById(budget_id: string, payee_location_id: string, options?: any): Promise<PayeeLocationResponse & {
|
|
3545
|
+
rateLimit: string | null;
|
|
3546
|
+
}>;
|
|
3425
3547
|
/**
|
|
3426
3548
|
* Returns all payee locations
|
|
3427
3549
|
* @summary List payee locations
|
|
@@ -3429,7 +3551,9 @@ export declare const PayeeLocationsApiFactory: (configuration: Configuration) =>
|
|
|
3429
3551
|
* @param {*} [options] - Override http request options.
|
|
3430
3552
|
* @throws {RequiredError}
|
|
3431
3553
|
*/
|
|
3432
|
-
getPayeeLocations(budget_id: string, options?: any): Promise<PayeeLocationsResponse
|
|
3554
|
+
getPayeeLocations(budget_id: string, options?: any): Promise<PayeeLocationsResponse & {
|
|
3555
|
+
rateLimit: string | null;
|
|
3556
|
+
}>;
|
|
3433
3557
|
/**
|
|
3434
3558
|
* Returns all payee locations for a specified payee
|
|
3435
3559
|
* @summary List locations for a payee
|
|
@@ -3438,7 +3562,9 @@ export declare const PayeeLocationsApiFactory: (configuration: Configuration) =>
|
|
|
3438
3562
|
* @param {*} [options] - Override http request options.
|
|
3439
3563
|
* @throws {RequiredError}
|
|
3440
3564
|
*/
|
|
3441
|
-
getPayeeLocationsByPayee(budget_id: string, payee_id: string, options?: any): Promise<PayeeLocationsResponse
|
|
3565
|
+
getPayeeLocationsByPayee(budget_id: string, payee_id: string, options?: any): Promise<PayeeLocationsResponse & {
|
|
3566
|
+
rateLimit: string | null;
|
|
3567
|
+
}>;
|
|
3442
3568
|
};
|
|
3443
3569
|
/**
|
|
3444
3570
|
* PayeeLocationsApi - object-oriented interface
|
|
@@ -3456,7 +3582,9 @@ export declare class PayeeLocationsApi extends BaseAPI {
|
|
|
3456
3582
|
* @throws {RequiredError}
|
|
3457
3583
|
* @memberof PayeeLocationsApi
|
|
3458
3584
|
*/
|
|
3459
|
-
getPayeeLocationById(budget_id: string, payee_location_id: string, options?: any): Promise<PayeeLocationResponse
|
|
3585
|
+
getPayeeLocationById(budget_id: string, payee_location_id: string, options?: any): Promise<PayeeLocationResponse & {
|
|
3586
|
+
rateLimit: string | null;
|
|
3587
|
+
}>;
|
|
3460
3588
|
/**
|
|
3461
3589
|
* Returns all payee locations
|
|
3462
3590
|
* @summary List payee locations
|
|
@@ -3465,7 +3593,9 @@ export declare class PayeeLocationsApi extends BaseAPI {
|
|
|
3465
3593
|
* @throws {RequiredError}
|
|
3466
3594
|
* @memberof PayeeLocationsApi
|
|
3467
3595
|
*/
|
|
3468
|
-
getPayeeLocations(budget_id: string, options?: any): Promise<PayeeLocationsResponse
|
|
3596
|
+
getPayeeLocations(budget_id: string, options?: any): Promise<PayeeLocationsResponse & {
|
|
3597
|
+
rateLimit: string | null;
|
|
3598
|
+
}>;
|
|
3469
3599
|
/**
|
|
3470
3600
|
* Returns all payee locations for a specified payee
|
|
3471
3601
|
* @summary List locations for a payee
|
|
@@ -3475,7 +3605,9 @@ export declare class PayeeLocationsApi extends BaseAPI {
|
|
|
3475
3605
|
* @throws {RequiredError}
|
|
3476
3606
|
* @memberof PayeeLocationsApi
|
|
3477
3607
|
*/
|
|
3478
|
-
getPayeeLocationsByPayee(budget_id: string, payee_id: string, options?: any): Promise<PayeeLocationsResponse
|
|
3608
|
+
getPayeeLocationsByPayee(budget_id: string, payee_id: string, options?: any): Promise<PayeeLocationsResponse & {
|
|
3609
|
+
rateLimit: string | null;
|
|
3610
|
+
}>;
|
|
3479
3611
|
}
|
|
3480
3612
|
/**
|
|
3481
3613
|
* PayeesApi - fetch parameter creator
|
|
@@ -3514,7 +3646,9 @@ export declare const PayeesApiFp: (configuration: Configuration) => {
|
|
|
3514
3646
|
* @param {*} [options] - Override http request options.
|
|
3515
3647
|
* @throws {RequiredError}
|
|
3516
3648
|
*/
|
|
3517
|
-
getPayeeById(budget_id: string, payee_id: string, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<PayeeResponse
|
|
3649
|
+
getPayeeById(budget_id: string, payee_id: string, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<PayeeResponse & {
|
|
3650
|
+
rateLimit: string | null;
|
|
3651
|
+
}>;
|
|
3518
3652
|
/**
|
|
3519
3653
|
* Returns all payees
|
|
3520
3654
|
* @summary List payees
|
|
@@ -3523,7 +3657,9 @@ export declare const PayeesApiFp: (configuration: Configuration) => {
|
|
|
3523
3657
|
* @param {*} [options] - Override http request options.
|
|
3524
3658
|
* @throws {RequiredError}
|
|
3525
3659
|
*/
|
|
3526
|
-
getPayees(budget_id: string, last_knowledge_of_server?: number | undefined, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<PayeesResponse
|
|
3660
|
+
getPayees(budget_id: string, last_knowledge_of_server?: number | undefined, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<PayeesResponse & {
|
|
3661
|
+
rateLimit: string | null;
|
|
3662
|
+
}>;
|
|
3527
3663
|
};
|
|
3528
3664
|
/**
|
|
3529
3665
|
* PayeesApi - factory interface
|
|
@@ -3538,7 +3674,9 @@ export declare const PayeesApiFactory: (configuration: Configuration) => {
|
|
|
3538
3674
|
* @param {*} [options] - Override http request options.
|
|
3539
3675
|
* @throws {RequiredError}
|
|
3540
3676
|
*/
|
|
3541
|
-
getPayeeById(budget_id: string, payee_id: string, options?: any): Promise<PayeeResponse
|
|
3677
|
+
getPayeeById(budget_id: string, payee_id: string, options?: any): Promise<PayeeResponse & {
|
|
3678
|
+
rateLimit: string | null;
|
|
3679
|
+
}>;
|
|
3542
3680
|
/**
|
|
3543
3681
|
* Returns all payees
|
|
3544
3682
|
* @summary List payees
|
|
@@ -3547,7 +3685,9 @@ export declare const PayeesApiFactory: (configuration: Configuration) => {
|
|
|
3547
3685
|
* @param {*} [options] - Override http request options.
|
|
3548
3686
|
* @throws {RequiredError}
|
|
3549
3687
|
*/
|
|
3550
|
-
getPayees(budget_id: string, last_knowledge_of_server?: number | undefined, options?: any): Promise<PayeesResponse
|
|
3688
|
+
getPayees(budget_id: string, last_knowledge_of_server?: number | undefined, options?: any): Promise<PayeesResponse & {
|
|
3689
|
+
rateLimit: string | null;
|
|
3690
|
+
}>;
|
|
3551
3691
|
};
|
|
3552
3692
|
/**
|
|
3553
3693
|
* PayeesApi - object-oriented interface
|
|
@@ -3565,7 +3705,9 @@ export declare class PayeesApi extends BaseAPI {
|
|
|
3565
3705
|
* @throws {RequiredError}
|
|
3566
3706
|
* @memberof PayeesApi
|
|
3567
3707
|
*/
|
|
3568
|
-
getPayeeById(budget_id: string, payee_id: string, options?: any): Promise<PayeeResponse
|
|
3708
|
+
getPayeeById(budget_id: string, payee_id: string, options?: any): Promise<PayeeResponse & {
|
|
3709
|
+
rateLimit: string | null;
|
|
3710
|
+
}>;
|
|
3569
3711
|
/**
|
|
3570
3712
|
* Returns all payees
|
|
3571
3713
|
* @summary List payees
|
|
@@ -3575,7 +3717,9 @@ export declare class PayeesApi extends BaseAPI {
|
|
|
3575
3717
|
* @throws {RequiredError}
|
|
3576
3718
|
* @memberof PayeesApi
|
|
3577
3719
|
*/
|
|
3578
|
-
getPayees(budget_id: string, last_knowledge_of_server?: number, options?: any): Promise<PayeesResponse
|
|
3720
|
+
getPayees(budget_id: string, last_knowledge_of_server?: number, options?: any): Promise<PayeesResponse & {
|
|
3721
|
+
rateLimit: string | null;
|
|
3722
|
+
}>;
|
|
3579
3723
|
}
|
|
3580
3724
|
/**
|
|
3581
3725
|
* ScheduledTransactionsApi - fetch parameter creator
|
|
@@ -3614,7 +3758,9 @@ export declare const ScheduledTransactionsApiFp: (configuration: Configuration)
|
|
|
3614
3758
|
* @param {*} [options] - Override http request options.
|
|
3615
3759
|
* @throws {RequiredError}
|
|
3616
3760
|
*/
|
|
3617
|
-
getScheduledTransactionById(budget_id: string, scheduled_transaction_id: string, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<ScheduledTransactionResponse
|
|
3761
|
+
getScheduledTransactionById(budget_id: string, scheduled_transaction_id: string, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<ScheduledTransactionResponse & {
|
|
3762
|
+
rateLimit: string | null;
|
|
3763
|
+
}>;
|
|
3618
3764
|
/**
|
|
3619
3765
|
* Returns all scheduled transactions
|
|
3620
3766
|
* @summary List scheduled transactions
|
|
@@ -3623,7 +3769,9 @@ export declare const ScheduledTransactionsApiFp: (configuration: Configuration)
|
|
|
3623
3769
|
* @param {*} [options] - Override http request options.
|
|
3624
3770
|
* @throws {RequiredError}
|
|
3625
3771
|
*/
|
|
3626
|
-
getScheduledTransactions(budget_id: string, last_knowledge_of_server?: number | undefined, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<ScheduledTransactionsResponse
|
|
3772
|
+
getScheduledTransactions(budget_id: string, last_knowledge_of_server?: number | undefined, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<ScheduledTransactionsResponse & {
|
|
3773
|
+
rateLimit: string | null;
|
|
3774
|
+
}>;
|
|
3627
3775
|
};
|
|
3628
3776
|
/**
|
|
3629
3777
|
* ScheduledTransactionsApi - factory interface
|
|
@@ -3638,7 +3786,9 @@ export declare const ScheduledTransactionsApiFactory: (configuration: Configurat
|
|
|
3638
3786
|
* @param {*} [options] - Override http request options.
|
|
3639
3787
|
* @throws {RequiredError}
|
|
3640
3788
|
*/
|
|
3641
|
-
getScheduledTransactionById(budget_id: string, scheduled_transaction_id: string, options?: any): Promise<ScheduledTransactionResponse
|
|
3789
|
+
getScheduledTransactionById(budget_id: string, scheduled_transaction_id: string, options?: any): Promise<ScheduledTransactionResponse & {
|
|
3790
|
+
rateLimit: string | null;
|
|
3791
|
+
}>;
|
|
3642
3792
|
/**
|
|
3643
3793
|
* Returns all scheduled transactions
|
|
3644
3794
|
* @summary List scheduled transactions
|
|
@@ -3647,7 +3797,9 @@ export declare const ScheduledTransactionsApiFactory: (configuration: Configurat
|
|
|
3647
3797
|
* @param {*} [options] - Override http request options.
|
|
3648
3798
|
* @throws {RequiredError}
|
|
3649
3799
|
*/
|
|
3650
|
-
getScheduledTransactions(budget_id: string, last_knowledge_of_server?: number | undefined, options?: any): Promise<ScheduledTransactionsResponse
|
|
3800
|
+
getScheduledTransactions(budget_id: string, last_knowledge_of_server?: number | undefined, options?: any): Promise<ScheduledTransactionsResponse & {
|
|
3801
|
+
rateLimit: string | null;
|
|
3802
|
+
}>;
|
|
3651
3803
|
};
|
|
3652
3804
|
/**
|
|
3653
3805
|
* ScheduledTransactionsApi - object-oriented interface
|
|
@@ -3665,7 +3817,9 @@ export declare class ScheduledTransactionsApi extends BaseAPI {
|
|
|
3665
3817
|
* @throws {RequiredError}
|
|
3666
3818
|
* @memberof ScheduledTransactionsApi
|
|
3667
3819
|
*/
|
|
3668
|
-
getScheduledTransactionById(budget_id: string, scheduled_transaction_id: string, options?: any): Promise<ScheduledTransactionResponse
|
|
3820
|
+
getScheduledTransactionById(budget_id: string, scheduled_transaction_id: string, options?: any): Promise<ScheduledTransactionResponse & {
|
|
3821
|
+
rateLimit: string | null;
|
|
3822
|
+
}>;
|
|
3669
3823
|
/**
|
|
3670
3824
|
* Returns all scheduled transactions
|
|
3671
3825
|
* @summary List scheduled transactions
|
|
@@ -3675,7 +3829,9 @@ export declare class ScheduledTransactionsApi extends BaseAPI {
|
|
|
3675
3829
|
* @throws {RequiredError}
|
|
3676
3830
|
* @memberof ScheduledTransactionsApi
|
|
3677
3831
|
*/
|
|
3678
|
-
getScheduledTransactions(budget_id: string, last_knowledge_of_server?: number, options?: any): Promise<ScheduledTransactionsResponse
|
|
3832
|
+
getScheduledTransactions(budget_id: string, last_knowledge_of_server?: number, options?: any): Promise<ScheduledTransactionsResponse & {
|
|
3833
|
+
rateLimit: string | null;
|
|
3834
|
+
}>;
|
|
3679
3835
|
}
|
|
3680
3836
|
/**
|
|
3681
3837
|
* TransactionsApi - fetch parameter creator
|
|
@@ -3788,7 +3944,9 @@ export declare const TransactionsApiFp: (configuration: Configuration) => {
|
|
|
3788
3944
|
* @param {*} [options] - Override http request options.
|
|
3789
3945
|
* @throws {RequiredError}
|
|
3790
3946
|
*/
|
|
3791
|
-
createTransaction(budget_id: string, data: SaveTransactionsWrapper, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<SaveTransactionsResponse
|
|
3947
|
+
createTransaction(budget_id: string, data: SaveTransactionsWrapper, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<SaveTransactionsResponse & {
|
|
3948
|
+
rateLimit: string | null;
|
|
3949
|
+
}>;
|
|
3792
3950
|
/**
|
|
3793
3951
|
* Returns a single transaction
|
|
3794
3952
|
* @summary Single transaction
|
|
@@ -3797,7 +3955,9 @@ export declare const TransactionsApiFp: (configuration: Configuration) => {
|
|
|
3797
3955
|
* @param {*} [options] - Override http request options.
|
|
3798
3956
|
* @throws {RequiredError}
|
|
3799
3957
|
*/
|
|
3800
|
-
getTransactionById(budget_id: string, transaction_id: string, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<TransactionResponse
|
|
3958
|
+
getTransactionById(budget_id: string, transaction_id: string, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<TransactionResponse & {
|
|
3959
|
+
rateLimit: string | null;
|
|
3960
|
+
}>;
|
|
3801
3961
|
/**
|
|
3802
3962
|
* Returns budget transactions
|
|
3803
3963
|
* @summary List transactions
|
|
@@ -3808,7 +3968,9 @@ export declare const TransactionsApiFp: (configuration: Configuration) => {
|
|
|
3808
3968
|
* @param {*} [options] - Override http request options.
|
|
3809
3969
|
* @throws {RequiredError}
|
|
3810
3970
|
*/
|
|
3811
|
-
getTransactions(budget_id: string, since_date?: string | Date | undefined, type?: "uncategorized" | "unapproved" | undefined, last_knowledge_of_server?: number | undefined, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<TransactionsResponse
|
|
3971
|
+
getTransactions(budget_id: string, since_date?: string | Date | undefined, type?: "uncategorized" | "unapproved" | undefined, last_knowledge_of_server?: number | undefined, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<TransactionsResponse & {
|
|
3972
|
+
rateLimit: string | null;
|
|
3973
|
+
}>;
|
|
3812
3974
|
/**
|
|
3813
3975
|
* Returns all transactions for a specified account
|
|
3814
3976
|
* @summary List account transactions
|
|
@@ -3820,7 +3982,9 @@ export declare const TransactionsApiFp: (configuration: Configuration) => {
|
|
|
3820
3982
|
* @param {*} [options] - Override http request options.
|
|
3821
3983
|
* @throws {RequiredError}
|
|
3822
3984
|
*/
|
|
3823
|
-
getTransactionsByAccount(budget_id: string, account_id: string, since_date?: string | Date | undefined, type?: "uncategorized" | "unapproved" | undefined, last_knowledge_of_server?: number | undefined, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<TransactionsResponse
|
|
3985
|
+
getTransactionsByAccount(budget_id: string, account_id: string, since_date?: string | Date | undefined, type?: "uncategorized" | "unapproved" | undefined, last_knowledge_of_server?: number | undefined, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<TransactionsResponse & {
|
|
3986
|
+
rateLimit: string | null;
|
|
3987
|
+
}>;
|
|
3824
3988
|
/**
|
|
3825
3989
|
* Returns all transactions for a specified category
|
|
3826
3990
|
* @summary List category transactions
|
|
@@ -3832,7 +3996,9 @@ export declare const TransactionsApiFp: (configuration: Configuration) => {
|
|
|
3832
3996
|
* @param {*} [options] - Override http request options.
|
|
3833
3997
|
* @throws {RequiredError}
|
|
3834
3998
|
*/
|
|
3835
|
-
getTransactionsByCategory(budget_id: string, category_id: string, since_date?: string | Date | undefined, type?: "uncategorized" | "unapproved" | undefined, last_knowledge_of_server?: number | undefined, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<HybridTransactionsResponse
|
|
3999
|
+
getTransactionsByCategory(budget_id: string, category_id: string, since_date?: string | Date | undefined, type?: "uncategorized" | "unapproved" | undefined, last_knowledge_of_server?: number | undefined, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<HybridTransactionsResponse & {
|
|
4000
|
+
rateLimit: string | null;
|
|
4001
|
+
}>;
|
|
3836
4002
|
/**
|
|
3837
4003
|
* Returns all transactions for a specified payee
|
|
3838
4004
|
* @summary List payee transactions
|
|
@@ -3844,7 +4010,9 @@ export declare const TransactionsApiFp: (configuration: Configuration) => {
|
|
|
3844
4010
|
* @param {*} [options] - Override http request options.
|
|
3845
4011
|
* @throws {RequiredError}
|
|
3846
4012
|
*/
|
|
3847
|
-
getTransactionsByPayee(budget_id: string, payee_id: string, since_date?: string | Date | undefined, type?: "uncategorized" | "unapproved" | undefined, last_knowledge_of_server?: number | undefined, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<HybridTransactionsResponse
|
|
4013
|
+
getTransactionsByPayee(budget_id: string, payee_id: string, since_date?: string | Date | undefined, type?: "uncategorized" | "unapproved" | undefined, last_knowledge_of_server?: number | undefined, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<HybridTransactionsResponse & {
|
|
4014
|
+
rateLimit: string | null;
|
|
4015
|
+
}>;
|
|
3848
4016
|
/**
|
|
3849
4017
|
* Imports available transactions on all linked accounts for the given budget. Linked accounts allow transactions to be imported directly from a specified financial institution and this endpoint initiates that import. Sending a request to this endpoint is the equivalent of clicking \"Import\" on each account in the web application or tapping the \"New Transactions\" banner in the mobile applications. The response for this endpoint contains the transaction ids that have been imported.
|
|
3850
4018
|
* @summary Import transactions
|
|
@@ -3852,7 +4020,9 @@ export declare const TransactionsApiFp: (configuration: Configuration) => {
|
|
|
3852
4020
|
* @param {*} [options] - Override http request options.
|
|
3853
4021
|
* @throws {RequiredError}
|
|
3854
4022
|
*/
|
|
3855
|
-
importTransactions(budget_id: string, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<TransactionsImportResponse
|
|
4023
|
+
importTransactions(budget_id: string, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<TransactionsImportResponse & {
|
|
4024
|
+
rateLimit: string | null;
|
|
4025
|
+
}>;
|
|
3856
4026
|
/**
|
|
3857
4027
|
* Updates a single transaction
|
|
3858
4028
|
* @summary Updates an existing transaction
|
|
@@ -3862,7 +4032,9 @@ export declare const TransactionsApiFp: (configuration: Configuration) => {
|
|
|
3862
4032
|
* @param {*} [options] - Override http request options.
|
|
3863
4033
|
* @throws {RequiredError}
|
|
3864
4034
|
*/
|
|
3865
|
-
updateTransaction(budget_id: string, transaction_id: string, data: SaveTransactionWrapper, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<TransactionResponse
|
|
4035
|
+
updateTransaction(budget_id: string, transaction_id: string, data: SaveTransactionWrapper, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<TransactionResponse & {
|
|
4036
|
+
rateLimit: string | null;
|
|
4037
|
+
}>;
|
|
3866
4038
|
/**
|
|
3867
4039
|
* Updates multiple transactions, by `id` or `import_id`.
|
|
3868
4040
|
* @summary Update multiple transactions
|
|
@@ -3871,7 +4043,9 @@ export declare const TransactionsApiFp: (configuration: Configuration) => {
|
|
|
3871
4043
|
* @param {*} [options] - Override http request options.
|
|
3872
4044
|
* @throws {RequiredError}
|
|
3873
4045
|
*/
|
|
3874
|
-
updateTransactions(budget_id: string, data: UpdateTransactionsWrapper, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<SaveTransactionsResponse
|
|
4046
|
+
updateTransactions(budget_id: string, data: UpdateTransactionsWrapper, options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<SaveTransactionsResponse & {
|
|
4047
|
+
rateLimit: string | null;
|
|
4048
|
+
}>;
|
|
3875
4049
|
};
|
|
3876
4050
|
/**
|
|
3877
4051
|
* TransactionsApi - factory interface
|
|
@@ -3886,7 +4060,9 @@ export declare const TransactionsApiFactory: (configuration: Configuration) => {
|
|
|
3886
4060
|
* @param {*} [options] - Override http request options.
|
|
3887
4061
|
* @throws {RequiredError}
|
|
3888
4062
|
*/
|
|
3889
|
-
createTransaction(budget_id: string, data: SaveTransactionsWrapper, options?: any): Promise<SaveTransactionsResponse
|
|
4063
|
+
createTransaction(budget_id: string, data: SaveTransactionsWrapper, options?: any): Promise<SaveTransactionsResponse & {
|
|
4064
|
+
rateLimit: string | null;
|
|
4065
|
+
}>;
|
|
3890
4066
|
/**
|
|
3891
4067
|
* Returns a single transaction
|
|
3892
4068
|
* @summary Single transaction
|
|
@@ -3895,7 +4071,9 @@ export declare const TransactionsApiFactory: (configuration: Configuration) => {
|
|
|
3895
4071
|
* @param {*} [options] - Override http request options.
|
|
3896
4072
|
* @throws {RequiredError}
|
|
3897
4073
|
*/
|
|
3898
|
-
getTransactionById(budget_id: string, transaction_id: string, options?: any): Promise<TransactionResponse
|
|
4074
|
+
getTransactionById(budget_id: string, transaction_id: string, options?: any): Promise<TransactionResponse & {
|
|
4075
|
+
rateLimit: string | null;
|
|
4076
|
+
}>;
|
|
3899
4077
|
/**
|
|
3900
4078
|
* Returns budget transactions
|
|
3901
4079
|
* @summary List transactions
|
|
@@ -3906,7 +4084,9 @@ export declare const TransactionsApiFactory: (configuration: Configuration) => {
|
|
|
3906
4084
|
* @param {*} [options] - Override http request options.
|
|
3907
4085
|
* @throws {RequiredError}
|
|
3908
4086
|
*/
|
|
3909
|
-
getTransactions(budget_id: string, since_date?: string | Date | undefined, type?: "uncategorized" | "unapproved" | undefined, last_knowledge_of_server?: number | undefined, options?: any): Promise<TransactionsResponse
|
|
4087
|
+
getTransactions(budget_id: string, since_date?: string | Date | undefined, type?: "uncategorized" | "unapproved" | undefined, last_knowledge_of_server?: number | undefined, options?: any): Promise<TransactionsResponse & {
|
|
4088
|
+
rateLimit: string | null;
|
|
4089
|
+
}>;
|
|
3910
4090
|
/**
|
|
3911
4091
|
* Returns all transactions for a specified account
|
|
3912
4092
|
* @summary List account transactions
|
|
@@ -3918,7 +4098,9 @@ export declare const TransactionsApiFactory: (configuration: Configuration) => {
|
|
|
3918
4098
|
* @param {*} [options] - Override http request options.
|
|
3919
4099
|
* @throws {RequiredError}
|
|
3920
4100
|
*/
|
|
3921
|
-
getTransactionsByAccount(budget_id: string, account_id: string, since_date?: string | Date | undefined, type?: "uncategorized" | "unapproved" | undefined, last_knowledge_of_server?: number | undefined, options?: any): Promise<TransactionsResponse
|
|
4101
|
+
getTransactionsByAccount(budget_id: string, account_id: string, since_date?: string | Date | undefined, type?: "uncategorized" | "unapproved" | undefined, last_knowledge_of_server?: number | undefined, options?: any): Promise<TransactionsResponse & {
|
|
4102
|
+
rateLimit: string | null;
|
|
4103
|
+
}>;
|
|
3922
4104
|
/**
|
|
3923
4105
|
* Returns all transactions for a specified category
|
|
3924
4106
|
* @summary List category transactions
|
|
@@ -3930,7 +4112,9 @@ export declare const TransactionsApiFactory: (configuration: Configuration) => {
|
|
|
3930
4112
|
* @param {*} [options] - Override http request options.
|
|
3931
4113
|
* @throws {RequiredError}
|
|
3932
4114
|
*/
|
|
3933
|
-
getTransactionsByCategory(budget_id: string, category_id: string, since_date?: string | Date | undefined, type?: "uncategorized" | "unapproved" | undefined, last_knowledge_of_server?: number | undefined, options?: any): Promise<HybridTransactionsResponse
|
|
4115
|
+
getTransactionsByCategory(budget_id: string, category_id: string, since_date?: string | Date | undefined, type?: "uncategorized" | "unapproved" | undefined, last_knowledge_of_server?: number | undefined, options?: any): Promise<HybridTransactionsResponse & {
|
|
4116
|
+
rateLimit: string | null;
|
|
4117
|
+
}>;
|
|
3934
4118
|
/**
|
|
3935
4119
|
* Returns all transactions for a specified payee
|
|
3936
4120
|
* @summary List payee transactions
|
|
@@ -3942,7 +4126,9 @@ export declare const TransactionsApiFactory: (configuration: Configuration) => {
|
|
|
3942
4126
|
* @param {*} [options] - Override http request options.
|
|
3943
4127
|
* @throws {RequiredError}
|
|
3944
4128
|
*/
|
|
3945
|
-
getTransactionsByPayee(budget_id: string, payee_id: string, since_date?: string | Date | undefined, type?: "uncategorized" | "unapproved" | undefined, last_knowledge_of_server?: number | undefined, options?: any): Promise<HybridTransactionsResponse
|
|
4129
|
+
getTransactionsByPayee(budget_id: string, payee_id: string, since_date?: string | Date | undefined, type?: "uncategorized" | "unapproved" | undefined, last_knowledge_of_server?: number | undefined, options?: any): Promise<HybridTransactionsResponse & {
|
|
4130
|
+
rateLimit: string | null;
|
|
4131
|
+
}>;
|
|
3946
4132
|
/**
|
|
3947
4133
|
* Imports available transactions on all linked accounts for the given budget. Linked accounts allow transactions to be imported directly from a specified financial institution and this endpoint initiates that import. Sending a request to this endpoint is the equivalent of clicking \"Import\" on each account in the web application or tapping the \"New Transactions\" banner in the mobile applications. The response for this endpoint contains the transaction ids that have been imported.
|
|
3948
4134
|
* @summary Import transactions
|
|
@@ -3950,7 +4136,9 @@ export declare const TransactionsApiFactory: (configuration: Configuration) => {
|
|
|
3950
4136
|
* @param {*} [options] - Override http request options.
|
|
3951
4137
|
* @throws {RequiredError}
|
|
3952
4138
|
*/
|
|
3953
|
-
importTransactions(budget_id: string, options?: any): Promise<TransactionsImportResponse
|
|
4139
|
+
importTransactions(budget_id: string, options?: any): Promise<TransactionsImportResponse & {
|
|
4140
|
+
rateLimit: string | null;
|
|
4141
|
+
}>;
|
|
3954
4142
|
/**
|
|
3955
4143
|
* Updates a single transaction
|
|
3956
4144
|
* @summary Updates an existing transaction
|
|
@@ -3960,7 +4148,9 @@ export declare const TransactionsApiFactory: (configuration: Configuration) => {
|
|
|
3960
4148
|
* @param {*} [options] - Override http request options.
|
|
3961
4149
|
* @throws {RequiredError}
|
|
3962
4150
|
*/
|
|
3963
|
-
updateTransaction(budget_id: string, transaction_id: string, data: SaveTransactionWrapper, options?: any): Promise<TransactionResponse
|
|
4151
|
+
updateTransaction(budget_id: string, transaction_id: string, data: SaveTransactionWrapper, options?: any): Promise<TransactionResponse & {
|
|
4152
|
+
rateLimit: string | null;
|
|
4153
|
+
}>;
|
|
3964
4154
|
/**
|
|
3965
4155
|
* Updates multiple transactions, by `id` or `import_id`.
|
|
3966
4156
|
* @summary Update multiple transactions
|
|
@@ -3969,7 +4159,9 @@ export declare const TransactionsApiFactory: (configuration: Configuration) => {
|
|
|
3969
4159
|
* @param {*} [options] - Override http request options.
|
|
3970
4160
|
* @throws {RequiredError}
|
|
3971
4161
|
*/
|
|
3972
|
-
updateTransactions(budget_id: string, data: UpdateTransactionsWrapper, options?: any): Promise<SaveTransactionsResponse
|
|
4162
|
+
updateTransactions(budget_id: string, data: UpdateTransactionsWrapper, options?: any): Promise<SaveTransactionsResponse & {
|
|
4163
|
+
rateLimit: string | null;
|
|
4164
|
+
}>;
|
|
3973
4165
|
};
|
|
3974
4166
|
/**
|
|
3975
4167
|
* TransactionsApi - object-oriented interface
|
|
@@ -3987,7 +4179,9 @@ export declare class TransactionsApi extends BaseAPI {
|
|
|
3987
4179
|
* @throws {RequiredError}
|
|
3988
4180
|
* @memberof TransactionsApi
|
|
3989
4181
|
*/
|
|
3990
|
-
createTransaction(budget_id: string, data: SaveTransactionsWrapper, options?: any): Promise<SaveTransactionsResponse
|
|
4182
|
+
createTransaction(budget_id: string, data: SaveTransactionsWrapper, options?: any): Promise<SaveTransactionsResponse & {
|
|
4183
|
+
rateLimit: string | null;
|
|
4184
|
+
}>;
|
|
3991
4185
|
/**
|
|
3992
4186
|
* Returns a single transaction
|
|
3993
4187
|
* @summary Single transaction
|
|
@@ -3997,7 +4191,9 @@ export declare class TransactionsApi extends BaseAPI {
|
|
|
3997
4191
|
* @throws {RequiredError}
|
|
3998
4192
|
* @memberof TransactionsApi
|
|
3999
4193
|
*/
|
|
4000
|
-
getTransactionById(budget_id: string, transaction_id: string, options?: any): Promise<TransactionResponse
|
|
4194
|
+
getTransactionById(budget_id: string, transaction_id: string, options?: any): Promise<TransactionResponse & {
|
|
4195
|
+
rateLimit: string | null;
|
|
4196
|
+
}>;
|
|
4001
4197
|
/**
|
|
4002
4198
|
* Returns budget transactions
|
|
4003
4199
|
* @summary List transactions
|
|
@@ -4009,7 +4205,9 @@ export declare class TransactionsApi extends BaseAPI {
|
|
|
4009
4205
|
* @throws {RequiredError}
|
|
4010
4206
|
* @memberof TransactionsApi
|
|
4011
4207
|
*/
|
|
4012
|
-
getTransactions(budget_id: string, since_date?: Date | string, type?: 'uncategorized' | 'unapproved', last_knowledge_of_server?: number, options?: any): Promise<TransactionsResponse
|
|
4208
|
+
getTransactions(budget_id: string, since_date?: Date | string, type?: 'uncategorized' | 'unapproved', last_knowledge_of_server?: number, options?: any): Promise<TransactionsResponse & {
|
|
4209
|
+
rateLimit: string | null;
|
|
4210
|
+
}>;
|
|
4013
4211
|
/**
|
|
4014
4212
|
* Returns all transactions for a specified account
|
|
4015
4213
|
* @summary List account transactions
|
|
@@ -4022,7 +4220,9 @@ export declare class TransactionsApi extends BaseAPI {
|
|
|
4022
4220
|
* @throws {RequiredError}
|
|
4023
4221
|
* @memberof TransactionsApi
|
|
4024
4222
|
*/
|
|
4025
|
-
getTransactionsByAccount(budget_id: string, account_id: string, since_date?: Date | string, type?: 'uncategorized' | 'unapproved', last_knowledge_of_server?: number, options?: any): Promise<TransactionsResponse
|
|
4223
|
+
getTransactionsByAccount(budget_id: string, account_id: string, since_date?: Date | string, type?: 'uncategorized' | 'unapproved', last_knowledge_of_server?: number, options?: any): Promise<TransactionsResponse & {
|
|
4224
|
+
rateLimit: string | null;
|
|
4225
|
+
}>;
|
|
4026
4226
|
/**
|
|
4027
4227
|
* Returns all transactions for a specified category
|
|
4028
4228
|
* @summary List category transactions
|
|
@@ -4035,7 +4235,9 @@ export declare class TransactionsApi extends BaseAPI {
|
|
|
4035
4235
|
* @throws {RequiredError}
|
|
4036
4236
|
* @memberof TransactionsApi
|
|
4037
4237
|
*/
|
|
4038
|
-
getTransactionsByCategory(budget_id: string, category_id: string, since_date?: Date | string, type?: 'uncategorized' | 'unapproved', last_knowledge_of_server?: number, options?: any): Promise<HybridTransactionsResponse
|
|
4238
|
+
getTransactionsByCategory(budget_id: string, category_id: string, since_date?: Date | string, type?: 'uncategorized' | 'unapproved', last_knowledge_of_server?: number, options?: any): Promise<HybridTransactionsResponse & {
|
|
4239
|
+
rateLimit: string | null;
|
|
4240
|
+
}>;
|
|
4039
4241
|
/**
|
|
4040
4242
|
* Returns all transactions for a specified payee
|
|
4041
4243
|
* @summary List payee transactions
|
|
@@ -4048,7 +4250,9 @@ export declare class TransactionsApi extends BaseAPI {
|
|
|
4048
4250
|
* @throws {RequiredError}
|
|
4049
4251
|
* @memberof TransactionsApi
|
|
4050
4252
|
*/
|
|
4051
|
-
getTransactionsByPayee(budget_id: string, payee_id: string, since_date?: Date | string, type?: 'uncategorized' | 'unapproved', last_knowledge_of_server?: number, options?: any): Promise<HybridTransactionsResponse
|
|
4253
|
+
getTransactionsByPayee(budget_id: string, payee_id: string, since_date?: Date | string, type?: 'uncategorized' | 'unapproved', last_knowledge_of_server?: number, options?: any): Promise<HybridTransactionsResponse & {
|
|
4254
|
+
rateLimit: string | null;
|
|
4255
|
+
}>;
|
|
4052
4256
|
/**
|
|
4053
4257
|
* Imports available transactions on all linked accounts for the given budget. Linked accounts allow transactions to be imported directly from a specified financial institution and this endpoint initiates that import. Sending a request to this endpoint is the equivalent of clicking \"Import\" on each account in the web application or tapping the \"New Transactions\" banner in the mobile applications. The response for this endpoint contains the transaction ids that have been imported.
|
|
4054
4258
|
* @summary Import transactions
|
|
@@ -4057,7 +4261,9 @@ export declare class TransactionsApi extends BaseAPI {
|
|
|
4057
4261
|
* @throws {RequiredError}
|
|
4058
4262
|
* @memberof TransactionsApi
|
|
4059
4263
|
*/
|
|
4060
|
-
importTransactions(budget_id: string, options?: any): Promise<TransactionsImportResponse
|
|
4264
|
+
importTransactions(budget_id: string, options?: any): Promise<TransactionsImportResponse & {
|
|
4265
|
+
rateLimit: string | null;
|
|
4266
|
+
}>;
|
|
4061
4267
|
/**
|
|
4062
4268
|
* Updates a single transaction
|
|
4063
4269
|
* @summary Updates an existing transaction
|
|
@@ -4068,7 +4274,9 @@ export declare class TransactionsApi extends BaseAPI {
|
|
|
4068
4274
|
* @throws {RequiredError}
|
|
4069
4275
|
* @memberof TransactionsApi
|
|
4070
4276
|
*/
|
|
4071
|
-
updateTransaction(budget_id: string, transaction_id: string, data: SaveTransactionWrapper, options?: any): Promise<TransactionResponse
|
|
4277
|
+
updateTransaction(budget_id: string, transaction_id: string, data: SaveTransactionWrapper, options?: any): Promise<TransactionResponse & {
|
|
4278
|
+
rateLimit: string | null;
|
|
4279
|
+
}>;
|
|
4072
4280
|
/**
|
|
4073
4281
|
* Updates multiple transactions, by `id` or `import_id`.
|
|
4074
4282
|
* @summary Update multiple transactions
|
|
@@ -4078,7 +4286,9 @@ export declare class TransactionsApi extends BaseAPI {
|
|
|
4078
4286
|
* @throws {RequiredError}
|
|
4079
4287
|
* @memberof TransactionsApi
|
|
4080
4288
|
*/
|
|
4081
|
-
updateTransactions(budget_id: string, data: UpdateTransactionsWrapper, options?: any): Promise<SaveTransactionsResponse
|
|
4289
|
+
updateTransactions(budget_id: string, data: UpdateTransactionsWrapper, options?: any): Promise<SaveTransactionsResponse & {
|
|
4290
|
+
rateLimit: string | null;
|
|
4291
|
+
}>;
|
|
4082
4292
|
}
|
|
4083
4293
|
/**
|
|
4084
4294
|
* UserApi - fetch parameter creator
|
|
@@ -4104,7 +4314,9 @@ export declare const UserApiFp: (configuration: Configuration) => {
|
|
|
4104
4314
|
* @param {*} [options] - Override http request options.
|
|
4105
4315
|
* @throws {RequiredError}
|
|
4106
4316
|
*/
|
|
4107
|
-
getUser(options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<UserResponse
|
|
4317
|
+
getUser(options?: any): (fetchFunction?: FetchAPI | undefined) => Promise<UserResponse & {
|
|
4318
|
+
rateLimit: string | null;
|
|
4319
|
+
}>;
|
|
4108
4320
|
};
|
|
4109
4321
|
/**
|
|
4110
4322
|
* UserApi - factory interface
|
|
@@ -4117,7 +4329,9 @@ export declare const UserApiFactory: (configuration: Configuration) => {
|
|
|
4117
4329
|
* @param {*} [options] - Override http request options.
|
|
4118
4330
|
* @throws {RequiredError}
|
|
4119
4331
|
*/
|
|
4120
|
-
getUser(options?: any): Promise<UserResponse
|
|
4332
|
+
getUser(options?: any): Promise<UserResponse & {
|
|
4333
|
+
rateLimit: string | null;
|
|
4334
|
+
}>;
|
|
4121
4335
|
};
|
|
4122
4336
|
/**
|
|
4123
4337
|
* UserApi - object-oriented interface
|
|
@@ -4133,5 +4347,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
4133
4347
|
* @throws {RequiredError}
|
|
4134
4348
|
* @memberof UserApi
|
|
4135
4349
|
*/
|
|
4136
|
-
getUser(options?: any): Promise<UserResponse
|
|
4350
|
+
getUser(options?: any): Promise<UserResponse & {
|
|
4351
|
+
rateLimit: string | null;
|
|
4352
|
+
}>;
|
|
4137
4353
|
}
|