Skip to content

Commit

Permalink
Merge pull request #6 from skbkontur/partyTypeProvider
Browse files Browse the repository at this point in the history
add Provider party type
  • Loading branch information
AndrewKostousov authored Jun 14, 2020
2 parents 0cbfab0 + 5b84654 commit df20fa1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# История изменений

## v1.6 - 2020.06.15
- В `enum PartyType` добавлено значение `Provider`, обозначающее тип организации Провайдер.

## v1.5 - 2020.05.31
- Добавлено свойство `IsTest` в `InternalPartyInfo`. Обозначает, что организация является тестовой.

Expand Down
5 changes: 3 additions & 2 deletions EdiApi.Client/Types/Parties/PartyType.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
namespace SkbKontur.EdiApi.Client.Types.Parties
namespace SkbKontur.EdiApi.Client.Types.Parties
{
public enum PartyType
{
Unknown,
Supplier,
Buyer,
Distributor
Distributor,
Provider
}
}
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
"version": "1.5",
"version": "1.6",
"assemblyVersion": {
"precision": "build"
},
Expand Down

0 comments on commit df20fa1

Please sign in to comment.