Skip to content

Commit

Permalink
PT-8487: Add Description field to MemberAddressType (#20)
Browse files Browse the repository at this point in the history
* PT-8487 Step 4. Update Xapi

* Add field in InputMemberAddressType
  • Loading branch information
Andalexshap authored Aug 2, 2022
1 parent f4a21b4 commit 0c9638a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ public InputMemberAddressType()
Field(x => x.RegionName, true).Description("Region name");
Field(x => x.Zip, true).Description("Zip");
Field(x => x.OuterId, true).Description("Outer id");
Field(x => x.Description, true).Description("Description");
Field<IntGraphType>(nameof(Address.AddressType));
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ public MemberAddressType()
Field(x => x.RegionName, nullable: true).Description("Region name");
Field(x => x.Zip, nullable: true).Description("Zip");
Field(x => x.OuterId, nullable: true).Description("Outer id");
Field(x => x.Description, nullable: true).Description("Description");
Field<IntGraphType>(nameof(Address.AddressType), resolve: context => (int)context.Source.AddressType);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@
<PackageReference Include="MediatR" Version="8.0.1" />
<PackageReference Include="MediatR.Extensions.Microsoft.DependencyInjection" Version="8.0.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
<PackageReference Include="VirtoCommerce.CustomerModule.Core" Version="3.207.0" />
<PackageReference Include="VirtoCommerce.CustomerModule.Core" Version="3.209.0" />
<PackageReference Include="VirtoCommerce.ExperienceApiModule.Core" Version="3.200.0" />
<PackageReference Include="VirtoCommerce.MarketingModule.Core" Version="3.200.0" />
<PackageReference Include="VirtoCommerce.Platform.Core" Version="3.200.0" />
<PackageReference Include="VirtoCommerce.Platform.Data" Version="3.200.0" />
<PackageReference Include="VirtoCommerce.PricingModule.Core" Version="3.200.0" />
<PackageReference Include="VirtoCommerce.StoreModule.Core" Version="3.200.0" />
<PackageReference Include="VirtoCommerce.CoreModule.Core" Version="3.200.0" />
<PackageReference Include="VirtoCommerce.CoreModule.Core" Version="3.203.0" />
</ItemGroup>

</Project>

0 comments on commit 0c9638a

Please sign in to comment.