Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmd/delete-all.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ import (

func NewDeleteAllCommand(parentCmd *cobra.Command) func() {

var pageLength uint16 = 25
var pageLength uint16 = 100

resetFunc := func() {
pageLength = 25
pageLength = 100
}

var deleteAll = &cobra.Command{
Expand Down
10 changes: 5 additions & 5 deletions external/id/idable_attributes.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package id

type IdableAttributes struct {
Id string `yaml:"id"`
Slug string `yaml:"slug,omitempty"`
Sku string `yaml:"sku,omitempty"`
Code string `yaml:"code,omitempty"`
ExternalRef string `yaml:"external_ref,omitempty"`
Id string `yaml:"id" json:"id"`
Slug string `yaml:"slug,omitempty" json:"slug,omitempty"`
Sku string `yaml:"sku,omitempty" json:"sku,omitempty"`
Code string `yaml:"code,omitempty" json:"code,omitempty"`
ExternalRef string `yaml:"external_ref,omitempty" json:"external_ref,omitempty"`
}
Loading