Skip to content
This repository was archived by the owner on Jul 24, 2023. It is now read-only.

Commit ad532e2

Browse files
authored
Merge pull request #82 from freee/auto-generated
2.25.0
2 parents d4a7168 + 19c3286 commit ad532e2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+899
-527
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 2.25.0
2+
リリース日時 2023-03-02 07:33:39
3+
対象差分
4+
https://github.com/freee/freee-api-schema/releases/tag/v0.0.112
5+
6+
## 2.25.0
7+
リリース日時 2023-03-02 07:31:17
8+
対象差分
9+
https://github.com/freee/freee-api-schema/releases/tag/v0.0.112
10+
111
## 2.24.0
212
リリース日時 2023-02-09 08:25:33
313
対象差分

src/Freee.Accounting/Api/AccountItemsApi.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public interface IAccountItemsApiSync : IApiAccessor
6565
/// <returns>ApiResponse of Object(void)</returns>
6666
ApiResponse<Object> DestroyAccountItemWithHttpInfo(int id, int companyId);
6767
/// <summary>
68-
/// 勘定科目の詳細情報の取得
68+
/// 勘定科目の取得
6969
/// </summary>
7070
/// <exception cref="Freee.Accounting.Client.ApiException">Thrown when fails to make API call</exception>
7171
/// <param name="companyId">事業所ID</param>
@@ -74,7 +74,7 @@ public interface IAccountItemsApiSync : IApiAccessor
7474
AccountItemResponse GetAccountItem(int companyId, int id);
7575

7676
/// <summary>
77-
/// 勘定科目の詳細情報の取得
77+
/// 勘定科目の取得
7878
/// </summary>
7979
/// <remarks>
8080
///
@@ -182,7 +182,7 @@ public interface IAccountItemsApiAsync : IApiAccessor
182182
/// <returns>Task of ApiResponse</returns>
183183
System.Threading.Tasks.Task<ApiResponse<Object>> DestroyAccountItemWithHttpInfoAsync(int id, int companyId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
184184
/// <summary>
185-
/// 勘定科目の詳細情報の取得
185+
/// 勘定科目の取得
186186
/// </summary>
187187
/// <remarks>
188188
///
@@ -195,7 +195,7 @@ public interface IAccountItemsApiAsync : IApiAccessor
195195
System.Threading.Tasks.Task<AccountItemResponse> GetAccountItemAsync(int companyId, int id, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
196196

197197
/// <summary>
198-
/// 勘定科目の詳細情報の取得
198+
/// 勘定科目の取得
199199
/// </summary>
200200
/// <remarks>
201201
///
@@ -665,7 +665,7 @@ public Freee.Accounting.Client.ApiResponse<Object> DestroyAccountItemWithHttpInf
665665
}
666666

667667
/// <summary>
668-
/// 勘定科目の詳細情報の取得
668+
/// 勘定科目の取得
669669
/// </summary>
670670
/// <exception cref="Freee.Accounting.Client.ApiException">Thrown when fails to make API call</exception>
671671
/// <param name="companyId">事業所ID</param>
@@ -678,7 +678,7 @@ public AccountItemResponse GetAccountItem(int companyId, int id)
678678
}
679679

680680
/// <summary>
681-
/// 勘定科目の詳細情報の取得
681+
/// 勘定科目の取得
682682
/// </summary>
683683
/// <exception cref="Freee.Accounting.Client.ApiException">Thrown when fails to make API call</exception>
684684
/// <param name="companyId">事業所ID</param>
@@ -733,7 +733,7 @@ public Freee.Accounting.Client.ApiResponse<AccountItemResponse> GetAccountItemWi
733733
}
734734

735735
/// <summary>
736-
/// 勘定科目の詳細情報の取得
736+
/// 勘定科目の取得
737737
/// </summary>
738738
/// <exception cref="Freee.Accounting.Client.ApiException">Thrown when fails to make API call</exception>
739739
/// <param name="companyId">事業所ID</param>
@@ -747,7 +747,7 @@ public Freee.Accounting.Client.ApiResponse<AccountItemResponse> GetAccountItemWi
747747
}
748748

749749
/// <summary>
750-
/// 勘定科目の詳細情報の取得
750+
/// 勘定科目の取得
751751
/// </summary>
752752
/// <exception cref="Freee.Accounting.Client.ApiException">Thrown when fails to make API call</exception>
753753
/// <param name="companyId">事業所ID</param>

src/Freee.Accounting/Api/ApprovalRequestsApi.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public interface IApprovalRequestsApiSync : IApiAccessor
123123
/// <returns>ApiResponse of ApprovalRequestFormIndexResponse</returns>
124124
ApiResponse<ApprovalRequestFormIndexResponse> GetApprovalRequestFormsWithHttpInfo(int companyId);
125125
/// <summary>
126-
/// 各種申請の一覧
126+
/// 各種申請一覧の取得
127127
/// </summary>
128128
/// <exception cref="Freee.Accounting.Client.ApiException">Thrown when fails to make API call</exception>
129129
/// <param name="companyId">事業所ID</param>
@@ -143,7 +143,7 @@ public interface IApprovalRequestsApiSync : IApiAccessor
143143
ApprovalRequestsIndexResponse GetApprovalRequests(int companyId, string status = default(string), int? applicationNumber = default(int?), string title = default(string), int? formId = default(int?), string startApplicationDate = default(string), string endApplicationDate = default(string), int? applicantId = default(int?), long? minAmount = default(long?), long? maxAmount = default(long?), int? approverId = default(int?), int? offset = default(int?), int? limit = default(int?));
144144

145145
/// <summary>
146-
/// 各種申請の一覧
146+
/// 各種申請一覧の取得
147147
/// </summary>
148148
/// <remarks>
149149
///
@@ -335,7 +335,7 @@ public interface IApprovalRequestsApiAsync : IApiAccessor
335335
/// <returns>Task of ApiResponse (ApprovalRequestFormIndexResponse)</returns>
336336
System.Threading.Tasks.Task<ApiResponse<ApprovalRequestFormIndexResponse>> GetApprovalRequestFormsWithHttpInfoAsync(int companyId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
337337
/// <summary>
338-
/// 各種申請の一覧
338+
/// 各種申請一覧の取得
339339
/// </summary>
340340
/// <remarks>
341341
///
@@ -359,7 +359,7 @@ public interface IApprovalRequestsApiAsync : IApiAccessor
359359
System.Threading.Tasks.Task<ApprovalRequestsIndexResponse> GetApprovalRequestsAsync(int companyId, string status = default(string), int? applicationNumber = default(int?), string title = default(string), int? formId = default(int?), string startApplicationDate = default(string), string endApplicationDate = default(string), int? applicantId = default(int?), long? minAmount = default(long?), long? maxAmount = default(long?), int? approverId = default(int?), int? offset = default(int?), int? limit = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
360360

361361
/// <summary>
362-
/// 各種申請の一覧
362+
/// 各種申請一覧の取得
363363
/// </summary>
364364
/// <remarks>
365365
///
@@ -1242,7 +1242,7 @@ public Freee.Accounting.Client.ApiResponse<ApprovalRequestFormIndexResponse> Get
12421242
}
12431243

12441244
/// <summary>
1245-
/// 各種申請の一覧
1245+
/// 各種申請一覧の取得
12461246
/// </summary>
12471247
/// <exception cref="Freee.Accounting.Client.ApiException">Thrown when fails to make API call</exception>
12481248
/// <param name="companyId">事業所ID</param>
@@ -1266,7 +1266,7 @@ public Freee.Accounting.Client.ApiResponse<ApprovalRequestFormIndexResponse> Get
12661266
}
12671267

12681268
/// <summary>
1269-
/// 各種申請の一覧
1269+
/// 各種申請一覧の取得
12701270
/// </summary>
12711271
/// <exception cref="Freee.Accounting.Client.ApiException">Thrown when fails to make API call</exception>
12721272
/// <param name="companyId">事業所ID</param>
@@ -1379,7 +1379,7 @@ public Freee.Accounting.Client.ApiResponse<ApprovalRequestFormIndexResponse> Get
13791379
}
13801380

13811381
/// <summary>
1382-
/// 各種申請の一覧
1382+
/// 各種申請一覧の取得
13831383
/// </summary>
13841384
/// <exception cref="Freee.Accounting.Client.ApiException">Thrown when fails to make API call</exception>
13851385
/// <param name="companyId">事業所ID</param>
@@ -1404,7 +1404,7 @@ public Freee.Accounting.Client.ApiResponse<ApprovalRequestFormIndexResponse> Get
14041404
}
14051405

14061406
/// <summary>
1407-
/// 各種申請の一覧
1407+
/// 各種申請一覧の取得
14081408
/// </summary>
14091409
/// <exception cref="Freee.Accounting.Client.ApiException">Thrown when fails to make API call</exception>
14101410
/// <param name="companyId">事業所ID</param>

src/Freee.Accounting/Api/CompaniesApi.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public interface ICompaniesApiSync : IApiAccessor
4343
/// <returns>ApiResponse of CompanyIndexResponse</returns>
4444
ApiResponse<CompanyIndexResponse> GetCompaniesWithHttpInfo();
4545
/// <summary>
46-
/// 事業所の詳細情報の取得
46+
/// 事業所の取得
4747
/// </summary>
4848
/// <exception cref="Freee.Accounting.Client.ApiException">Thrown when fails to make API call</exception>
4949
/// <param name="id">事業所ID</param>
@@ -59,7 +59,7 @@ public interface ICompaniesApiSync : IApiAccessor
5959
CompanyResponse GetCompany(int id, bool? details = default(bool?), bool? accountItems = default(bool?), bool? taxes = default(bool?), bool? items = default(bool?), bool? partners = default(bool?), bool? sections = default(bool?), bool? tags = default(bool?), bool? walletables = default(bool?));
6060

6161
/// <summary>
62-
/// 事業所の詳細情報の取得
62+
/// 事業所の取得
6363
/// </summary>
6464
/// <remarks>
6565
///
@@ -107,7 +107,7 @@ public interface ICompaniesApiAsync : IApiAccessor
107107
/// <returns>Task of ApiResponse (CompanyIndexResponse)</returns>
108108
System.Threading.Tasks.Task<ApiResponse<CompanyIndexResponse>> GetCompaniesWithHttpInfoAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
109109
/// <summary>
110-
/// 事業所の詳細情報の取得
110+
/// 事業所の取得
111111
/// </summary>
112112
/// <remarks>
113113
///
@@ -127,7 +127,7 @@ public interface ICompaniesApiAsync : IApiAccessor
127127
System.Threading.Tasks.Task<CompanyResponse> GetCompanyAsync(int id, bool? details = default(bool?), bool? accountItems = default(bool?), bool? taxes = default(bool?), bool? items = default(bool?), bool? partners = default(bool?), bool? sections = default(bool?), bool? tags = default(bool?), bool? walletables = default(bool?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
128128

129129
/// <summary>
130-
/// 事業所の詳細情報の取得
130+
/// 事業所の取得
131131
/// </summary>
132132
/// <remarks>
133133
///
@@ -394,7 +394,7 @@ public Freee.Accounting.Client.ApiResponse<CompanyIndexResponse> GetCompaniesWit
394394
}
395395

396396
/// <summary>
397-
/// 事業所の詳細情報の取得
397+
/// 事業所の取得
398398
/// </summary>
399399
/// <exception cref="Freee.Accounting.Client.ApiException">Thrown when fails to make API call</exception>
400400
/// <param name="id">事業所ID</param>
@@ -414,7 +414,7 @@ public Freee.Accounting.Client.ApiResponse<CompanyIndexResponse> GetCompaniesWit
414414
}
415415

416416
/// <summary>
417-
/// 事業所の詳細情報の取得
417+
/// 事業所の取得
418418
/// </summary>
419419
/// <exception cref="Freee.Accounting.Client.ApiException">Thrown when fails to make API call</exception>
420420
/// <param name="id">事業所ID</param>
@@ -507,7 +507,7 @@ public Freee.Accounting.Client.ApiResponse<CompanyIndexResponse> GetCompaniesWit
507507
}
508508

509509
/// <summary>
510-
/// 事業所の詳細情報の取得
510+
/// 事業所の取得
511511
/// </summary>
512512
/// <exception cref="Freee.Accounting.Client.ApiException">Thrown when fails to make API call</exception>
513513
/// <param name="id">事業所ID</param>
@@ -528,7 +528,7 @@ public Freee.Accounting.Client.ApiResponse<CompanyIndexResponse> GetCompaniesWit
528528
}
529529

530530
/// <summary>
531-
/// 事業所の詳細情報の取得
531+
/// 事業所の取得
532532
/// </summary>
533533
/// <exception cref="Freee.Accounting.Client.ApiException">Thrown when fails to make API call</exception>
534534
/// <param name="id">事業所ID</param>

0 commit comments

Comments
 (0)