-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtygo.yaml
More file actions
45 lines (44 loc) · 1.36 KB
/
tygo.yaml
File metadata and controls
45 lines (44 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
packages:
- path: "github.com/zenfulcode/commercify/internal/domain/dto"
output_path: "web/types/dtos.ts"
indent: " "
type_mappings:
time.Time: "string"
uuid.UUID: "string"
decimal.Decimal: "string"
frontmatter: |
// Generated types for Commercify API
// Do not edit this file directly
- path: "github.com/zenfulcode/commercify/internal/interfaces/api/contracts"
output_path: "web/types/contracts.ts"
indent: " "
type_mappings:
uuid.UUID: "string"
decimal.Decimal: "string"
time.Time: "string"
dto.CategoryDTO: "CategoryDTO"
dto.ProductDTO: "ProductDTO"
dto.ProductVariantDTO: "ProductVariantDTO"
dto.CartItemDTO: "CartItemDTO"
dto.CheckoutDTO: "CheckoutDTO"
dto.OrderDTO: "OrderDTO"
dto.AddressDTO: "AddressDTO"
dto.ShippingOptionDTO: "ShippingOptionDTO"
dto.PaymentMethodDTO: "PaymentMethodDTO"
dto.UserDTO: "UserDTO"
dto.CardDetailsDTO: "CardDetailsDTO"
dto.OrderStatus: "OrderStatus"
dto.OrderSummaryDTO: "OrderSummaryDTO"
frontmatter: |
// Generated types for Commercify API
// Do not edit this file directly
import type {
AddressDTO,
CardDetailsDTO,
CheckoutDTO,
OrderDTO,
OrderSummaryDTO,
OrderStatus,
ShippingOptionDTO,
UserDTO,
} from "./dtos";