├── .changeset ├── README.md └── config.json ├── .editorconfig ├── .env.template ├── .eslintignore ├── .eslintrc.js ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── renovate.json └── workflows │ ├── main.yml │ ├── pull-request.yml │ └── release.yml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg └── pre-commit ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.js ├── codegen.core.yml ├── codegen.ctp.yml ├── codegen.mc.yml ├── codegen.settings.yml ├── commitlint.config.js ├── docs ├── architecture-decisions │ ├── 0001-record-architecture-decisions.md │ └── 0002-draft-model-structure.md ├── contributing │ └── test-data-models-overview.md └── guidelines │ ├── creating-new-model.md │ ├── migrating-existing-model.md │ └── writing-changesets.md ├── generators ├── CHANGELOG.md ├── README.md ├── package.json └── src │ ├── index.ts │ ├── new-test-model │ ├── new-test-model.generator.ts │ └── templates │ │ ├── index.ts │ │ └── model │ │ ├── builders.spec.tpl │ │ ├── builders.tpl │ │ ├── fields-config.tpl │ │ ├── index.tpl │ │ ├── presets │ │ ├── example-preset │ │ │ ├── example-preset.spec.tpl │ │ │ └── example-preset.tpl │ │ └── index.tpl │ │ └── types.tpl │ └── types.ts ├── global.d.ts ├── jest-custom-matchers.js ├── jest-runner-eslint.config.js ├── jest.eslint.config.js ├── jest.prettier.config.js ├── jest.test.config.js ├── lint-staged.config.js ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── schemas ├── core.json ├── ctp.json ├── mc.json └── settings.json ├── scripts ├── postinstall.sh └── transform-imports.mjs ├── setup-test-framework.js ├── standalone ├── CHANGELOG.md ├── LICENSE ├── README.md ├── associate-role │ └── package.json ├── attribute-group │ └── package.json ├── business-unit │ └── package.json ├── cart-discount │ └── package.json ├── cart │ └── package.json ├── category │ └── package.json ├── channel │ └── package.json ├── commons │ └── package.json ├── core │ ├── package.json │ └── test-utils │ │ └── package.json ├── custom-application │ └── package.json ├── custom-fields │ └── package.json ├── custom-object │ └── package.json ├── custom-view │ └── package.json ├── customer-group │ └── package.json ├── customer │ └── package.json ├── customers-search-list-my-view │ └── package.json ├── discount-code │ └── package.json ├── discount-group │ └── package.json ├── discounts-custom-view │ └── package.json ├── filter-values │ └── package.json ├── graphql-types │ └── package.json ├── inventory-entry │ └── package.json ├── my-view │ └── package.json ├── oauth-client │ └── package.json ├── order │ └── package.json ├── organization-extension │ └── package.json ├── organization │ └── package.json ├── package.json ├── payment │ └── package.json ├── platform-limits │ └── package.json ├── product-discount │ └── package.json ├── product-projection │ └── package.json ├── product-selection │ └── package.json ├── product-tailoring │ └── package.json ├── product-type │ └── package.json ├── product │ └── package.json ├── project-extension │ └── package.json ├── project │ └── package.json ├── quote-request │ └── package.json ├── quote │ └── package.json ├── recurring-order │ └── package.json ├── review │ └── package.json ├── shipping-method │ └── package.json ├── shopping-list │ └── package.json ├── src │ ├── associate-role.ts │ ├── attribute-group.ts │ ├── business-unit.ts │ ├── cart-discount.ts │ ├── cart.ts │ ├── category.ts │ ├── channel.ts │ ├── commons.ts │ ├── core │ │ ├── @jackfranklin │ │ │ └── test-data-bot │ │ │ │ ├── README.md │ │ │ │ ├── index.spec.ts │ │ │ │ └── index.ts │ │ ├── builder.spec.ts │ │ ├── builder.ts │ │ ├── generator.ts │ │ ├── helpers.spec.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── test-utils.ts │ │ ├── transformer.ts │ │ ├── transforms.spec.ts │ │ └── types.ts │ ├── custom-application.ts │ ├── custom-fields.ts │ ├── custom-object.ts │ ├── custom-view.ts │ ├── customer-group.ts │ ├── customer.ts │ ├── customers-search-list-my-view.ts │ ├── discount-code.ts │ ├── discount-group.ts │ ├── discounts-custom-view.ts │ ├── filter-values.ts │ ├── graphql-types │ │ ├── generated │ │ │ ├── .gitattributes │ │ │ ├── core.ts │ │ │ ├── ctp.ts │ │ │ ├── mc.ts │ │ │ └── settings.ts │ │ └── index.ts │ ├── index.ts │ ├── inventory-entry.ts │ ├── models │ │ ├── associate-role │ │ │ ├── associate-role-draft │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ └── presets │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ ├── empty.ts │ │ │ │ │ └── index.ts │ │ │ ├── builders.spec.ts │ │ │ ├── builders.ts │ │ │ ├── constants.ts │ │ │ ├── fields-config.ts │ │ │ ├── index.ts │ │ │ ├── presets │ │ │ │ ├── index.ts │ │ │ │ ├── with-all-business-unit-permissions.ts │ │ │ │ ├── with-all-cart-permissions.ts │ │ │ │ ├── with-all-order-permissions.ts │ │ │ │ ├── with-all-quote-permissions.ts │ │ │ │ ├── with-all-quote-request-permissions.ts │ │ │ │ ├── with-my-cart-permissions.ts │ │ │ │ ├── with-my-order-permissions.ts │ │ │ │ ├── with-my-quote-permissions.ts │ │ │ │ └── with-my-quote-request-permissions.ts │ │ │ └── types.ts │ │ ├── attribute-group │ │ │ ├── attribute-group │ │ │ │ ├── attribute-group-draft │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── attribute-reference │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ └── index.ts │ │ ├── business-unit │ │ │ ├── associate-role-assignment │ │ │ │ ├── associate-role-assignment-draft │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── transformers.ts │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── associate │ │ │ │ ├── associate-draft │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── transformers.ts │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── company │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── company-draft │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── transformers.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── division │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── division-draft │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── transformers.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ └── index.ts │ │ ├── cart │ │ │ ├── cart-discount │ │ │ │ ├── cart-discount-custom-line-items-target │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── cart-discount-custom-line-items-target-draft │ │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ │ ├── builders.ts │ │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── presets │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── cart-discount-line-items-target │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── cart-discount-line-items-target-draft │ │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ │ ├── builder.ts │ │ │ │ │ │ ├── generator.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── presets │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── transformers.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── transformers.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── cart-discount-multi-buy-custom-line-items-target │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── cart-discount-multi-buy-custom-line-items-target-draft │ │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ │ ├── builders.ts │ │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── presets │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── cart-discount-multi-buy-line-items-target │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── cart-discount-multi-buy-line-items-target-draft │ │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ │ ├── builder.ts │ │ │ │ │ │ ├── generator.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── presets │ │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── transformers.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── transformers.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── cart-discount-pattern-target │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── src │ │ │ │ │ │ └── cart-discount-pattern-target-draft │ │ │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ │ │ ├── builders.ts │ │ │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── presets │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── cart-discount-shipping-cost-target │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── cart-discount-shipping-cost-target-draft │ │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ │ ├── builder.ts │ │ │ │ │ │ ├── generator.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── presets │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── transformers.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── transformers.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── cart-discount-target │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── cart-discount-total-price-target │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── cart-discount-total-price-target-draft │ │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ │ ├── builders.ts │ │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── presets │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── cart-discount-value-absolute │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── cart-discount-value-absolute-draft │ │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ │ ├── builder.ts │ │ │ │ │ │ ├── generator.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── presets │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── transformers.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── transformers.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── cart-discount-value-fixed │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── cart-discount-value-fixed-draft │ │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ │ ├── builder.ts │ │ │ │ │ │ ├── generator.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── presets │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── transformers.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── transformers.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── cart-discount-value-gift-line-item │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── cart-discount-value-gift-line-item-draft │ │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ │ ├── builder.ts │ │ │ │ │ │ ├── generator.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── presets │ │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── transformers.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── transformers.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── cart-discount-value-relative │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── cart-discount-value-relative-draft │ │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ │ ├── builder.ts │ │ │ │ │ │ ├── generator.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── presets │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── transformers.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── transformers.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── cart-discount │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── cart-discount-draft │ │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ │ ├── builder.ts │ │ │ │ │ │ ├── generator.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── presets │ │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── transformers.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── transformers.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── count-on-custom-line-item-units │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── src │ │ │ │ │ │ └── count-on-custom-line-item-units-draft │ │ │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ │ │ ├── builders.ts │ │ │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── presets │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── count-on-line-item-units │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── src │ │ │ │ │ │ └── count-on-line-item-units-draft │ │ │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ │ │ ├── builders.ts │ │ │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── presets │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ └── types.ts │ │ │ │ └── index.ts │ │ │ └── cart │ │ │ │ ├── cart │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── cart-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ ├── change-history-data │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── with-custom-line-item.spec.ts │ │ │ │ │ │ └── with-custom-line-item.ts │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ │ ├── custom-line-item │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── custom-line-item-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── field-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ ├── change-history-data │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── with-usd-currency-code.spec.ts │ │ │ │ │ │ └── with-usd-currency-code.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── field-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ │ ├── direct-discount │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── direct-discount-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ │ ├── discount-code-info │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ │ ├── discount-on-total-price │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ │ ├── discounted-line-item-portion │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── discounted-line-item-portion-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ └── with-all-fields │ │ │ │ │ │ ├── with-all-fields.spec.ts │ │ │ │ │ │ └── with-all-fields.ts │ │ │ │ └── types.ts │ │ │ │ ├── discounted-line-item-price-for-quantity │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ │ ├── discounted-line-item-price │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ └── with-all-fields │ │ │ │ │ │ ├── with-all-fields.spec.ts │ │ │ │ │ │ └── with-all-fields.ts │ │ │ │ └── types.ts │ │ │ │ ├── discounted-total-price-portion │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ │ ├── index.ts │ │ │ │ ├── item-shipping-details │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── item-shipping-details-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ │ ├── item-shipping-target │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ │ ├── item-state │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ │ ├── line-item │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── field-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── line-item-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── field-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ └── with-all-fields │ │ │ │ │ │ ├── with-all-fields.spec.ts │ │ │ │ │ │ └── with-all-fields.ts │ │ │ │ └── types.ts │ │ │ │ ├── method-tax-rate │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ └── with-all-fields │ │ │ │ │ │ ├── with-all-fields.spec.ts │ │ │ │ │ │ └── with-all-fields.ts │ │ │ │ └── types.ts │ │ │ │ ├── method-taxed-price │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ └── with-all-fields │ │ │ │ │ │ ├── with-all-fields.spec.ts │ │ │ │ │ │ └── with-all-fields.ts │ │ │ │ └── types.ts │ │ │ │ ├── shipping-info │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ └── with-all-fields │ │ │ │ │ │ ├── with-all-fields-presets.spec.ts │ │ │ │ │ │ └── with-all-fields-presets.ts │ │ │ │ └── types.ts │ │ │ │ ├── shipping │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── shipping-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ │ ├── tax-portion │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── tax-portion-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ │ ├── taxed-item-price │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ └── with-all-fields │ │ │ │ │ │ ├── with-all-fields-presets.spec.ts │ │ │ │ │ │ └── with-all-fields-presets.ts │ │ │ │ └── types.ts │ │ │ │ └── taxed-price │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ ├── index.ts │ │ │ │ └── with-currency │ │ │ │ │ ├── with-currency.spec.ts │ │ │ │ │ └── with-currency.ts │ │ │ │ └── types.ts │ │ ├── category │ │ │ ├── category-search │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── with-parent-and-ancestors.spec.ts │ │ │ │ │ ├── with-parent-and-ancestors.ts │ │ │ │ │ ├── with-parent.spec.ts │ │ │ │ │ └── with-parent.ts │ │ │ │ └── types.ts │ │ │ ├── category │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── category-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ ├── change-history-data │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── with-no-parent.spec.ts │ │ │ │ │ │ └── with-no-parent.ts │ │ │ │ │ │ ├── empty │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ └── empty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ └── index.ts │ │ ├── channel │ │ │ ├── builder.spec.ts │ │ │ ├── builders.ts │ │ │ ├── channel-draft │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ └── presets │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ ├── empty.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── with-geolcation-only.spec.ts │ │ │ │ │ ├── with-geolocation-only.ts │ │ │ │ │ ├── with-inventory-supply-and-product-distribution-roles-no-address.ts │ │ │ │ │ ├── with-inventory-supply-and-product-distribution-roles.spec.ts │ │ │ │ │ ├── with-inventory-supply-and-product-distribution-roles.ts │ │ │ │ │ ├── with-inventory-supply-role-no-address.spec.ts │ │ │ │ │ ├── with-inventory-supply-role-no-address.ts │ │ │ │ │ ├── with-inventory-supply-role.spec.ts │ │ │ │ │ ├── with-inventory-supply-role.ts │ │ │ │ │ ├── with-product-distribution-role.spec.ts │ │ │ │ │ └── with-product-distribution-role.ts │ │ │ ├── constants.ts │ │ │ ├── fields-config.ts │ │ │ ├── index.ts │ │ │ ├── presets │ │ │ │ ├── clothes-store.spec.ts │ │ │ │ ├── clothes-store.ts │ │ │ │ ├── food-store.spec.ts │ │ │ │ ├── food-store.ts │ │ │ │ └── index.ts │ │ │ └── types.ts │ │ ├── commons │ │ │ ├── address │ │ │ │ ├── address-draft │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ ├── change-history-data │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── with-country-us-no-state.spec.ts │ │ │ │ │ │ │ ├── with-country-us-no-state.ts │ │ │ │ │ │ │ ├── with-country-us.spec.ts │ │ │ │ │ │ │ └── with-country-us.ts │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── transformers.ts │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── base-money │ │ │ │ ├── base-money-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── with-cent-precision │ │ │ │ │ │ ├── with-cent-precision.spec.ts │ │ │ │ │ │ └── with-cent-precision.ts │ │ │ │ │ │ └── with-high-precision │ │ │ │ │ │ ├── with-high-precision.spec.ts │ │ │ │ │ │ └── with-high-precision.ts │ │ │ │ └── types.ts │ │ │ ├── cent-precision-money │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── cent-precision-money-draft │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── transformers.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── client-logging │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── discounted-line-item-portion │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── discounted-line-item-portion-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── discounted-line-item-price │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── geometry │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── high-precision-money │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── high-precision-money-draft │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── transformers.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── index.ts │ │ │ ├── key-reference │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── key-reference-draft │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ ├── associate-role-reference.spec.ts │ │ │ │ │ │ ├── associate-role-reference.ts │ │ │ │ │ │ ├── business-unit-reference.spec.ts │ │ │ │ │ │ ├── business-unit-reference.ts │ │ │ │ │ │ ├── cart-reference.spec.ts │ │ │ │ │ │ ├── cart-reference.ts │ │ │ │ │ │ ├── category-reference.spec.ts │ │ │ │ │ │ ├── category-reference.ts │ │ │ │ │ │ ├── channel-reference.spec.ts │ │ │ │ │ │ ├── channel-reference.ts │ │ │ │ │ │ ├── customer-group-reference.spec.ts │ │ │ │ │ │ ├── customer-group-reference.ts │ │ │ │ │ │ ├── customer-reference.spec.ts │ │ │ │ │ │ ├── customer-reference.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── product-selection-reference.spec.ts │ │ │ │ │ │ ├── product-selection-reference.ts │ │ │ │ │ │ ├── product-type-reference.spec.ts │ │ │ │ │ │ ├── product-type-reference.ts │ │ │ │ │ │ ├── quote-reference.spec.ts │ │ │ │ │ │ ├── quote-reference.ts │ │ │ │ │ │ ├── quote-request-reference.spec.ts │ │ │ │ │ │ ├── quote-request-reference.ts │ │ │ │ │ │ ├── shipping-method-reference.spec.ts │ │ │ │ │ │ ├── shipping-method-reference.ts │ │ │ │ │ │ ├── staged-quote-reference.spec.ts │ │ │ │ │ │ ├── staged-quote-reference.ts │ │ │ │ │ │ ├── store-reference.spec.ts │ │ │ │ │ │ ├── store-reference.ts │ │ │ │ │ │ ├── tax-category-reference.spec.ts │ │ │ │ │ │ ├── tax-category-reference.ts │ │ │ │ │ │ ├── zone-reference.spec.ts │ │ │ │ │ │ └── zone-reference.ts │ │ │ │ │ └── transformers.ts │ │ │ │ ├── presets │ │ │ │ │ ├── associate-role-reference.spec.ts │ │ │ │ │ ├── associate-role-reference.ts │ │ │ │ │ ├── business-unit-reference.spec.ts │ │ │ │ │ ├── business-unit-reference.ts │ │ │ │ │ ├── category-reference.spec.ts │ │ │ │ │ ├── category-reference.ts │ │ │ │ │ ├── channel-reference.spec.ts │ │ │ │ │ ├── channel-reference.ts │ │ │ │ │ ├── customer-group-reference.spec.ts │ │ │ │ │ ├── customer-group-reference.ts │ │ │ │ │ ├── customer-reference.spec.ts │ │ │ │ │ ├── customer-reference.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── product-type-reference.spec.ts │ │ │ │ │ ├── product-type-reference.ts │ │ │ │ │ ├── shipping-method-reference.spec.ts │ │ │ │ │ ├── shipping-method-reference.ts │ │ │ │ │ ├── store-reference.spec.ts │ │ │ │ │ ├── store-reference.ts │ │ │ │ │ ├── tax-category-reference.spec.ts │ │ │ │ │ ├── tax-category-reference.ts │ │ │ │ │ ├── zone-reference.spec.ts │ │ │ │ │ └── zone-reference.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── localized-field │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── localized-string │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── helpers.spec.ts │ │ │ │ ├── helpers.ts │ │ │ │ ├── index.ts │ │ │ │ ├── localized-string-draft │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── helpers.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── of-slugs.spec.ts │ │ │ │ │ │ └── of-slugs.ts │ │ │ │ │ └── transformers.ts │ │ │ │ ├── presets │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ ├── empty.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── of-slugs.spec.ts │ │ │ │ │ └── of-slugs.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── money │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── money-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ ├── change-history-data │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── with-usd-currency-code.spec.ts │ │ │ │ │ │ └── with-usd-currency-code.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── with-cent.ts │ │ │ │ │ │ └── with-currency.ts │ │ │ │ ├── presets │ │ │ │ │ ├── change-history-data │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── with-usd-currency-code.spec.ts │ │ │ │ │ │ └── with-usd-currency-code.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── with-cent.ts │ │ │ │ │ └── with-currency.ts │ │ │ │ └── types.ts │ │ │ ├── price-tier │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── price-tier-draft │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── transformers.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── price │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── price-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── minimal.spec.ts │ │ │ │ │ │ ├── minimal.ts │ │ │ │ │ │ ├── with-value.spec.ts │ │ │ │ │ │ └── with-value.ts │ │ │ │ └── types.ts │ │ │ └── reference │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ ├── _shared │ │ │ │ │ ├── reference-presets-builder.spec.ts │ │ │ │ │ └── reference-presets-builder.ts │ │ │ │ ├── associate-role-reference.ts │ │ │ │ ├── attribute-group-reference.ts │ │ │ │ ├── business-unit-reference.ts │ │ │ │ ├── cart-discount-reference.ts │ │ │ │ ├── cart-reference.ts │ │ │ │ ├── category-reference.ts │ │ │ │ ├── channel-reference.ts │ │ │ │ ├── customer-group-reference.ts │ │ │ │ ├── customer-reference.ts │ │ │ │ ├── direct-discount-reference.ts │ │ │ │ ├── discount-code-reference.ts │ │ │ │ ├── extension-reference.ts │ │ │ │ ├── index.ts │ │ │ │ ├── inventory-entry-reference.ts │ │ │ │ ├── key-value-document-reference.ts │ │ │ │ ├── order-edit-reference.ts │ │ │ │ ├── order-reference.ts │ │ │ │ ├── payment-reference.ts │ │ │ │ ├── product-discount-reference.ts │ │ │ │ ├── product-price-reference.ts │ │ │ │ ├── product-reference.ts │ │ │ │ ├── product-selection-reference.ts │ │ │ │ ├── product-type-reference.ts │ │ │ │ ├── quote-reference.ts │ │ │ │ ├── quote-request-reference.ts │ │ │ │ ├── review-reference.ts │ │ │ │ ├── shipping-method-reference.ts │ │ │ │ ├── shopping-list-reference.ts │ │ │ │ ├── staged-quote-reference.ts │ │ │ │ ├── standalone-price-reference.ts │ │ │ │ ├── state-reference.ts │ │ │ │ ├── store-reference.ts │ │ │ │ ├── subscription-reference.ts │ │ │ │ ├── tax-category-reference.ts │ │ │ │ ├── type-reference.ts │ │ │ │ └── zone-reference.ts │ │ │ │ ├── reference-draft │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ └── presets │ │ │ │ │ ├── _shared │ │ │ │ │ ├── reference-draft-presets-builder.spec.ts │ │ │ │ │ └── reference-draft-presets-builder.ts │ │ │ │ │ ├── associate-role-draft-reference.ts │ │ │ │ │ ├── attribute-group-draft-reference.ts │ │ │ │ │ ├── business-unit-draft-reference.ts │ │ │ │ │ ├── cart-discount-draft-reference.ts │ │ │ │ │ ├── cart-draft-reference.ts │ │ │ │ │ ├── category-draft-reference.ts │ │ │ │ │ ├── channel-draft-reference.ts │ │ │ │ │ ├── customer-draft-reference.ts │ │ │ │ │ ├── customer-group-draft-draft-reference.ts │ │ │ │ │ ├── direct-discount-draft-reference.ts │ │ │ │ │ ├── discount-code-draft-reference.ts │ │ │ │ │ ├── extension-draft-reference.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── inventory-entry-draft-reference.ts │ │ │ │ │ ├── key-value-document-draft-reference.ts │ │ │ │ │ ├── order-draft-reference.ts │ │ │ │ │ ├── order-edit-draft-reference.ts │ │ │ │ │ ├── payment-draft-reference.ts │ │ │ │ │ ├── product-discount-draft-reference.ts │ │ │ │ │ ├── product-draft-reference.ts │ │ │ │ │ ├── product-price-draft-reference.ts │ │ │ │ │ ├── product-selection-draft-reference.ts │ │ │ │ │ ├── product-type-draft-reference.ts │ │ │ │ │ ├── quote-draft-reference.ts │ │ │ │ │ ├── quote-request-draft-reference.ts │ │ │ │ │ ├── review-draft-reference.ts │ │ │ │ │ ├── shipping-method-draft-reference.ts │ │ │ │ │ ├── shopping-list-draft-reference.ts │ │ │ │ │ ├── staged-quote-draft-reference.ts │ │ │ │ │ ├── standalone-price-draft-reference.ts │ │ │ │ │ ├── state-draft-reference.ts │ │ │ │ │ ├── store-draft-reference.ts │ │ │ │ │ ├── subscription-draft-reference.ts │ │ │ │ │ ├── tax-category-draft-reference.ts │ │ │ │ │ ├── type-draft-reference.ts │ │ │ │ │ └── zone-draft-reference.ts │ │ │ │ └── types.ts │ │ ├── custom-fields │ │ │ ├── custom-fields │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── custom-fields-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── with-all-field-types.spec.ts │ │ │ │ │ │ ├── with-all-field-types.ts │ │ │ │ │ │ ├── with-string-field.spec.ts │ │ │ │ │ │ └── with-string-field.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── with-all-field-types.spec.ts │ │ │ │ │ ├── with-all-field-types.ts │ │ │ │ │ ├── with-string-field.spec.ts │ │ │ │ │ └── with-string-field.ts │ │ │ │ └── types.ts │ │ │ ├── index.ts │ │ │ └── raw-custom-field │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ ├── custom-object │ │ │ ├── builder.spec.ts │ │ │ ├── builder.ts │ │ │ ├── custom-object-draft │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── transformers.ts │ │ │ ├── generator.ts │ │ │ ├── index.ts │ │ │ ├── presets │ │ │ │ └── index.ts │ │ │ ├── transformers.ts │ │ │ └── types.ts │ │ ├── customer │ │ │ ├── customer-group │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── customer-group-draft │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── transformers.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── customer │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── customer-draft │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ ├── change-history-data │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── us-based-with-no-state.spec.ts │ │ │ │ │ │ │ ├── us-based-with-no-state.ts │ │ │ │ │ │ │ ├── with-no-dob.spec.ts │ │ │ │ │ │ │ └── with-no-dob.ts │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── transformers.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ └── customers-search-list-my-view │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ ├── customization │ │ │ ├── custom-application │ │ │ │ ├── custom-application-deployment-preview │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── custom-application-installation-permission │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── manage-only-permissions.ts │ │ │ │ │ │ ├── presets.spec.ts │ │ │ │ │ │ └── view-only-permissions.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── custom-application-installation │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── custom-application-menu-link │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── custom-application-menu-link-draft │ │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ │ ├── builders.ts │ │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── presets │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── custom-application-permission │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── custom-application-permission-draft │ │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ │ ├── builders.ts │ │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── presets │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── manage-only-permissions-draft.ts │ │ │ │ │ │ │ ├── presets.spec.ts │ │ │ │ │ │ │ └── view-only-permissions-draft.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── manage-only-permissions.ts │ │ │ │ │ │ ├── presets.spec.ts │ │ │ │ │ │ └── view-only-permissions.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── custom-application-submenu-link │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── custom-application-submenu-link-draft │ │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ │ ├── builders.ts │ │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── presets │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── custom-application │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── custom-application-draft │ │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ │ ├── builders.ts │ │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── presets │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── with-all-fields │ │ │ │ │ │ │ ├── with-all-fields-preset.spec.ts │ │ │ │ │ │ │ └── with-all-fields-preset.ts │ │ │ │ │ └── types.ts │ │ │ │ └── index.ts │ │ │ └── custom-view │ │ │ │ ├── custom-view-installation-permission │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── manage-only-permissions.ts │ │ │ │ │ ├── presets.spec.ts │ │ │ │ │ └── view-only-permissions.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ │ ├── custom-view-installation │ │ │ │ ├── custom-view-installation │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── transformers.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── index.ts │ │ │ │ ├── restricted-custom-view-installation-for-organization │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── transformers.ts │ │ │ │ │ └── types.ts │ │ │ │ └── types.ts │ │ │ │ ├── custom-view-permission-draft │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── manage-only-permissions.ts │ │ │ │ │ ├── presets.spec.ts │ │ │ │ │ └── view-only-permissions.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ │ ├── custom-view-permission │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── manage-only-permissions.ts │ │ │ │ │ ├── presets.spec.ts │ │ │ │ │ └── view-only-permissions.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ │ ├── custom-view-type-settings-for-custom-panel │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ │ ├── custom-view │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── custom-view-draft │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── transformers.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ │ └── index.ts │ │ ├── discount │ │ │ ├── discount-code │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── discount-code-draft │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── transformers.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ └── discount-group │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── discount-group-draft │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ └── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ ├── discounts-custom-view │ │ │ ├── builder.spec.ts │ │ │ ├── builder.ts │ │ │ ├── discounts-custom-view-input │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── transformers.ts │ │ │ ├── generator.ts │ │ │ ├── index.ts │ │ │ ├── presets │ │ │ │ └── index.ts │ │ │ ├── transformers.ts │ │ │ └── types.ts │ │ ├── filter-values │ │ │ ├── builder.spec.ts │ │ │ ├── builder.ts │ │ │ ├── generator.ts │ │ │ ├── index.ts │ │ │ ├── presets │ │ │ │ └── index.ts │ │ │ ├── transformers.ts │ │ │ └── types.ts │ │ ├── inventory-entry │ │ │ ├── builders.spec.ts │ │ │ ├── builders.ts │ │ │ ├── fields-config.ts │ │ │ ├── index.ts │ │ │ ├── inventory-entry-draft │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── change-history-data │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── with-no-supply-channel.spec.ts │ │ │ │ │ │ └── with-no-supply-channel.ts │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ ├── empty.ts │ │ │ │ │ └── index.ts │ │ │ │ └── transformers.ts │ │ │ ├── presets │ │ │ │ └── index.ts │ │ │ └── types.ts │ │ ├── my-view │ │ │ ├── business-units-list-view │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── dashboard-view │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── index.ts │ │ │ ├── my-view-nested-table │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── my-view-sort │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── my-view-table │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── order-detail-view │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── orders-list-view │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── pim-search-list-view │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── quotes-list-view │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ └── variant-prices-list-view │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ ├── oauth-client │ │ │ ├── index.ts │ │ │ ├── oauth-client │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── oauth-scope │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ └── project-permission │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ ├── order │ │ │ ├── delivery-item │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── delivery │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── index.ts │ │ │ ├── line-item-return-item │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── order │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── order-from-cart-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── order-from-quote-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── parcel-measurements │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── parcel │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── with-all-fields.spec.ts │ │ │ │ │ └── with-all-fields.ts │ │ │ │ └── types.ts │ │ │ ├── payment-info │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── return-info │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── sync-info │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ └── tracking-data │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ ├── organization │ │ │ ├── organization-extension │ │ │ │ ├── contact-information │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── index.ts │ │ │ │ ├── oidc-sso-config │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── oidc-sso-config-draft │ │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ │ ├── builders.ts │ │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── presets │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── types.ts │ │ │ │ └── organization-extension │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ └── with-all-fields │ │ │ │ │ │ ├── with-all-fields-preset.spec.ts │ │ │ │ │ │ └── with-all-fields-preset.ts │ │ │ │ │ └── types.ts │ │ │ └── organization │ │ │ │ ├── index.ts │ │ │ │ ├── mc-organization │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ │ ├── organization │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ │ └── team │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ ├── payment │ │ │ ├── index.ts │ │ │ ├── payment-method-info │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── payment-method-info-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── payment-status │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── payment-status-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── payment │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── payment-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ ├── change-history-data │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── with-usd-currency-code.spec.ts │ │ │ │ │ │ └── with-usd-currency-code.ts │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ └── transaction │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ └── index.ts │ │ │ │ ├── transaction-draft │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ └── presets │ │ │ │ │ ├── change-history-data │ │ │ │ │ ├── with-usd-currency-code.spec.ts │ │ │ │ │ └── with-usd-currency-code.ts │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ ├── empty.ts │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ ├── platform-limits │ │ │ ├── business-units │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ └── with-limit.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── cart-discounts │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ └── with-limit-and-current.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── carts │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ └── with-limit-and-current.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── customer-groups │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ └── with-limit-and-current.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── customers │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ └── with-limit-and-current.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── general │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ └── with-all-platform-limits.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── index.ts │ │ │ ├── limit-with-current │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── with-exceeded.ts │ │ │ │ │ ├── with-non-exceeded.ts │ │ │ │ │ ├── with-undefined.ts │ │ │ │ │ └── with-warning-exceeded.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── limit │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── product-discounts │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ └── with-limit-and-current.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── shipping-methods │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ └── with-limit-and-current.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── shopping-lists │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ └── with-limit-and-current.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── stores │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ └── with-limit-and-current.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── tax-categories │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ └── with-limit-and-current.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ └── zones │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ ├── index.ts │ │ │ │ └── with-limit-and-current.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ ├── product-type │ │ │ ├── attribute-boolean-type │ │ │ │ ├── attribute-boolean-type-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── attribute-date-time-type │ │ │ │ ├── attribute-date-time-type-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── attribute-date-type │ │ │ │ ├── attribute-date-type-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── attribute-definition │ │ │ │ ├── attribute-definition-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── country-of-origin-attribute-definition.spec.ts │ │ │ │ │ ├── country-of-origin-attribute-definition.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── number-attribute-definition.spec.ts │ │ │ │ │ ├── number-attribute-definition.ts │ │ │ │ │ ├── size-attribute-definition.spec.ts │ │ │ │ │ └── size-attribute-definition.ts │ │ │ │ └── types.ts │ │ │ ├── attribute-enum-type │ │ │ │ ├── attribute-enum-type-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── all-sizes-enum.spec.ts │ │ │ │ │ ├── all-sizes-enum.ts │ │ │ │ │ ├── big-sizes-enum.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── small-sizes-enum.ts │ │ │ │ └── types.ts │ │ │ ├── attribute-localizable-text-type │ │ │ │ ├── attribute-localized-text-type-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── attribute-localized-enum-type │ │ │ │ ├── attribute-localized-enum-type-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── all-sizes-preset.spec.ts │ │ │ │ │ ├── all-sizes-preset.ts │ │ │ │ │ ├── big-sizes-preset.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── small-sizes-preset.ts │ │ │ │ └── types.ts │ │ │ ├── attribute-localized-enum-value │ │ │ │ ├── attribute-localized-enum-value-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ └── sizes-presets.spec.ts │ │ │ │ └── types.ts │ │ │ ├── attribute-money-type │ │ │ │ ├── attribute-money-type-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── attribute-nested-type │ │ │ │ ├── attribute-nested-type-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── attribute-number-type │ │ │ │ ├── attribute-number-type-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── attribute-plain-enum-value │ │ │ │ ├── attribute-plain-enum-value-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── attribute-reference-type │ │ │ │ ├── attribute-reference-type-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── attribute-set-type │ │ │ │ ├── attribute-set-type-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── attribute-text-type │ │ │ │ ├── attribute-text-type-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── attribute-time-type │ │ │ │ ├── attribute-time-type-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── index.ts │ │ │ └── product-type │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ ├── index.ts │ │ │ │ ├── milk.spec.ts │ │ │ │ ├── milk.ts │ │ │ │ ├── tshirt.spec.ts │ │ │ │ └── tshirt.ts │ │ │ │ ├── product-type-draft │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ └── presets │ │ │ │ │ ├── change-history-data │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── with-no-attributes.spec.ts │ │ │ │ │ └── with-no-attributes.ts │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ ├── empty.ts │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ ├── product │ │ │ ├── product-discount │ │ │ │ ├── discounted-price │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── discounted-price-draft │ │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ │ ├── builders.ts │ │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── presets │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── index.ts │ │ │ │ ├── product-discount-value-absolute │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── product-discount-value-absolute-draft │ │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ │ ├── builder.ts │ │ │ │ │ │ ├── generator.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── presets │ │ │ │ │ │ │ ├── change-history-data │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── with-usd-currency-code.spec.ts │ │ │ │ │ │ │ │ └── with-usd-currency-code.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── transformers.ts │ │ │ │ │ ├── transformers.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── product-discount-value-external │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── product-discount-value-external-draft │ │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ │ ├── builder.ts │ │ │ │ │ │ ├── generator.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── presets │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── transformers.ts │ │ │ │ │ ├── transformers.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── product-discount-value-relative │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── product-discount-value-relative-draft │ │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ │ ├── builder.ts │ │ │ │ │ │ ├── generator.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── presets │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── transformers.ts │ │ │ │ │ ├── transformers.ts │ │ │ │ │ └── types.ts │ │ │ │ └── product-discount │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ │ ├── product-discount-draft │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ ├── change-history-data │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── with-predicate.spec.ts │ │ │ │ │ │ │ └── with-predicate.ts │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── transformers.ts │ │ │ │ │ ├── transformers.ts │ │ │ │ │ └── types.ts │ │ │ ├── product-projection │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── happy-cow-milk.spec.ts │ │ │ │ │ ├── happy-cow-milk.ts │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── product-selection │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── product-of-selection │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── product-selection-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── product-tailoring │ │ │ │ ├── index.ts │ │ │ │ ├── product-tailoring-attribute │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── product-tailoring-data │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── product-tailoring-data-draft │ │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ │ ├── builders.ts │ │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── presets │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── product-tailoring │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ ├── index.spec.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── types.ts │ │ │ │ └── product-variant-tailoring │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ │ └── types.ts │ │ │ └── product │ │ │ │ ├── attribute │ │ │ │ ├── attribute-draft │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── transformers.ts │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ │ ├── image-dimensions │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── image-dimensions-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── with-large-size │ │ │ │ │ │ ├── with-large-size.spec.ts │ │ │ │ │ │ └── with-large-size.ts │ │ │ │ │ │ ├── with-medium-size │ │ │ │ │ │ ├── with-medium-size.spec.ts │ │ │ │ │ │ └── with-medium-size.ts │ │ │ │ │ │ ├── with-small-size │ │ │ │ │ │ ├── with-small-size.spec.ts │ │ │ │ │ │ └── with-small-size.ts │ │ │ │ │ │ ├── with-thumb-size │ │ │ │ │ │ ├── with-thumb-size.spec.ts │ │ │ │ │ │ └── with-thumb-size.ts │ │ │ │ │ │ └── with-zoom-size │ │ │ │ │ │ ├── with-zoom-size.spec.ts │ │ │ │ │ │ └── with-zoom-size.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── with-large-size │ │ │ │ │ │ ├── with-large-size.spec.ts │ │ │ │ │ │ └── with-large-size.ts │ │ │ │ │ ├── with-medium-size │ │ │ │ │ │ ├── with-medium-size.spec.ts │ │ │ │ │ │ └── with-medium-size.ts │ │ │ │ │ ├── with-small-size │ │ │ │ │ │ ├── with-small-size.spec.ts │ │ │ │ │ │ └── with-small-size.ts │ │ │ │ │ ├── with-thumb-size │ │ │ │ │ │ ├── with-thumb-size.spec.ts │ │ │ │ │ │ └── with-thumb-size.ts │ │ │ │ │ └── with-zoom-size │ │ │ │ │ │ ├── with-zoom-size.spec.ts │ │ │ │ │ │ └── with-zoom-size.ts │ │ │ │ └── types.ts │ │ │ │ ├── image │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── image-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── commercetools-api-platform.spec.ts │ │ │ │ │ ├── commercetools-api-platform.ts │ │ │ │ │ ├── commercetools-pos-aem.spec.ts │ │ │ │ │ ├── commercetools-pos-aem.ts │ │ │ │ │ ├── empty.ts │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ │ ├── index.ts │ │ │ │ ├── product-catalog-data │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── boring-generic-milk-product-catalog-data.ts │ │ │ │ │ ├── happy-cow-milk-product-catalog-data.ts │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ │ ├── product-data │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── category-order-hint │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── boring-generic-milk-product-data.spec.ts │ │ │ │ │ ├── boring-generic-milk-product-data.ts │ │ │ │ │ ├── happy-cow-milk-product-data.spec.ts │ │ │ │ │ ├── happy-cow-milk-product-data.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── search-keyword │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── search-keywords │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── types.ts │ │ │ │ └── types.ts │ │ │ │ ├── product-variant-availability │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ │ ├── product-variant │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── boring-generic-milk-master-variant.spec.ts │ │ │ │ │ ├── boring-generic-milk-master-variant.ts │ │ │ │ │ ├── happy-cow-milk-master-variant.spec.ts │ │ │ │ │ ├── happy-cow-milk-master-variant.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── with-boolean-attribute-preset.spec.ts │ │ │ │ │ └── with-boolean-attribute-preset.ts │ │ │ │ ├── product-variant-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── with-one-image.ts │ │ │ │ │ │ ├── with-prices.ts │ │ │ │ │ │ └── with-two-images.ts │ │ │ │ └── types.ts │ │ │ │ ├── product │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── boring-generic-milk.spec.ts │ │ │ │ │ ├── boring-generic-milk.ts │ │ │ │ │ ├── happy-cow-milk.spec.ts │ │ │ │ │ ├── happy-cow-milk.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── product-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── transformers.ts │ │ │ │ └── types.ts │ │ │ │ └── selection-of-product │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ ├── index.ts │ │ │ │ └── with-product-selection-only │ │ │ │ │ ├── with-product-selection-only.spec.ts │ │ │ │ │ └── with-product-selection-only.ts │ │ │ │ └── types.ts │ │ ├── project │ │ │ ├── project-extension │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── category-recommendation-settings │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── category-recommendation-settings-draft │ │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ │ ├── builder.ts │ │ │ │ │ │ ├── generator.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── presets │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── transformers.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── transformers.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── image-regex │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── image-regex-draft │ │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ │ ├── builder.ts │ │ │ │ │ │ ├── generator.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── presets │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── transformers.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── transformers.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── sample-data-import │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── transformers.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ └── project │ │ │ │ ├── index.ts │ │ │ │ ├── mc-project │ │ │ │ ├── all-permissions-for-all-applications │ │ │ │ │ ├── applied-menu-visibilities │ │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ │ ├── builder.ts │ │ │ │ │ │ ├── generator.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── presets │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── transformers.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── transformers.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── applied-action-right │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── transformers.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── applied-data-fence │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── transformers.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── applied-permission │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── transformers.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── mc-project-draft │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── transformers.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── project-expiry │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── transformers.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── project-suspension │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── transformers.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ │ └── project │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── messages-configuration │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ │ ├── presets │ │ │ │ └── index.ts │ │ │ │ ├── project-draft │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── transformers.ts │ │ │ │ └── types.ts │ │ ├── quote │ │ │ ├── quote-request │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── quote-request-draft │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── transformers.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── quote │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── quote-draft │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── transformers.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ └── staged-quote │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ └── index.ts │ │ │ │ ├── staged-quote-draft │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ ├── empty.ts │ │ │ │ │ └── index.ts │ │ │ │ └── transformers.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ ├── recurring-order │ │ │ ├── counter │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── counter-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── day-of-month-schedule │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── day-of-month-schedule-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ ├── day-of-month-schedule-input │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── index.ts │ │ │ ├── recurrence-policy │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── recurrence-policy-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ ├── recurrence-policy-schedule-input │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── types.ts │ │ │ │ └── types.ts │ │ │ ├── recurring-order │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── recurring-order-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ └── standard-schedule │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ └── index.ts │ │ │ │ ├── standard-schedule-draft │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ └── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── standard-schedule-input │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ └── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ ├── review │ │ │ ├── builder.spec.ts │ │ │ ├── builder.ts │ │ │ ├── generator.ts │ │ │ ├── index.ts │ │ │ ├── presets │ │ │ │ └── index.ts │ │ │ ├── review-draft │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── change-history-data │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── with-ranking-greater-than-one.spec.ts │ │ │ │ │ │ └── with-ranking-greater-than-one.ts │ │ │ │ │ └── index.ts │ │ │ │ └── transformers.ts │ │ │ ├── transformers.ts │ │ │ └── types.ts │ │ ├── shipping-method │ │ │ ├── index.ts │ │ │ ├── shipping-method │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── shipping-method-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ ├── change-history-data │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── with-us-zone-rate.spec.ts │ │ │ │ │ │ └── with-us-zone-rate.ts │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── shipping-rate │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── shipping-rate-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ ├── change-history-data │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── with-usd-currency.spec.ts │ │ │ │ │ │ └── with-usd-currency.ts │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── shipping-rate-price-tier │ │ │ │ │ ├── cart-classification │ │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ │ ├── builders.ts │ │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── cart-score │ │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ │ ├── builders.ts │ │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── cart-value │ │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ │ ├── builders.ts │ │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ └── zone-rate │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ └── index.ts │ │ │ │ ├── types.ts │ │ │ │ └── zone-rate-draft │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ └── presets │ │ │ │ ├── change-history-data │ │ │ │ ├── index.ts │ │ │ │ ├── with-usd-shipping-rate.spec.ts │ │ │ │ └── with-usd-shipping-rate.ts │ │ │ │ └── index.ts │ │ ├── shopping-list │ │ │ ├── index.ts │ │ │ ├── shopping-list-line-item │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── shopping-list-line-item-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ ├── shopping-list │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── with-all-fields.spec.ts │ │ │ │ │ └── with-all-fields.ts │ │ │ │ ├── shopping-list-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ └── text-line-item │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ └── index.ts │ │ │ │ ├── text-line-item-draft │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ └── presets │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ ├── standalone-price │ │ │ ├── builder.spec.ts │ │ │ ├── builder.ts │ │ │ ├── generator.ts │ │ │ ├── index.ts │ │ │ ├── presets │ │ │ │ └── index.ts │ │ │ ├── staged-price-draft │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── staged-standalone-price │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── standalone-price-draft │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ ├── empty.ts │ │ │ │ │ ├── full.spec.ts │ │ │ │ │ ├── full.ts │ │ │ │ │ └── index.ts │ │ │ │ └── transformers.ts │ │ │ ├── transformers.ts │ │ │ └── types.ts │ │ ├── state │ │ │ ├── builders.spec.ts │ │ │ ├── builders.ts │ │ │ ├── constants.ts │ │ │ ├── fields-config.ts │ │ │ ├── index.ts │ │ │ ├── presets │ │ │ │ ├── index.ts │ │ │ │ ├── packed.spec.ts │ │ │ │ ├── packed.ts │ │ │ │ ├── shipped.spec.ts │ │ │ │ └── shipped.ts │ │ │ ├── state-draft │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ └── presets │ │ │ │ │ ├── change-history-data │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── with-type-line-item-state.spec.ts │ │ │ │ │ └── with-type-line-item-state.ts │ │ │ │ │ └── index.ts │ │ │ └── types.ts │ │ ├── store │ │ │ ├── index.ts │ │ │ ├── product-selection-setting │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── product-selection-setting-draft │ │ │ │ │ ├── builders.spec.ts │ │ │ │ │ ├── builders.ts │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── presets │ │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ │ └── store │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ └── index.ts │ │ │ │ ├── store-draft │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ └── presets │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ ├── empty.ts │ │ │ │ │ └── index.ts │ │ │ │ └── types.ts │ │ ├── tax-category │ │ │ ├── index.ts │ │ │ ├── tax-category │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── tax-category-draft │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ ├── change-history-data │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── with-tax-rate-country-us-no-state-included-in-price.spec.ts │ │ │ │ │ │ │ ├── with-tax-rate-country-us-no-state-included-in-price.ts │ │ │ │ │ │ │ ├── with-tax-rate-country-us-no-state.spec.ts │ │ │ │ │ │ │ └── with-tax-rate-country-us-no-state.ts │ │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ │ ├── empty.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── transformers.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ └── tax-rate │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ ├── index.ts │ │ │ │ └── with-all-fields │ │ │ │ │ ├── with-all-fields-preset.spec.ts │ │ │ │ │ └── with-all-fields-preset.ts │ │ │ │ ├── tax-rate-draft │ │ │ │ ├── builders.spec.ts │ │ │ │ ├── builders.ts │ │ │ │ ├── fields-config.ts │ │ │ │ ├── index.ts │ │ │ │ └── presets │ │ │ │ │ ├── change-history-data │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── with-country-code-us-no-state-included-in-price.spec.ts │ │ │ │ │ ├── with-country-code-us-no-state-included-in-price.ts │ │ │ │ │ ├── with-country-code-us-no-state.spec.ts │ │ │ │ │ └── with-country-code-us-no-state.ts │ │ │ │ │ ├── empty │ │ │ │ │ ├── empty.spec.ts │ │ │ │ │ └── empty.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── with-all-fields │ │ │ │ │ ├── with-all-fields.spec.ts │ │ │ │ │ └── with-all-fields.ts │ │ │ │ └── types.ts │ │ ├── type │ │ │ ├── custom-field-boolean-type │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── custom-field-date-time-type │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── custom-field-date-type │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── custom-field-enum-type │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── custom-field-enum-value │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── custom-field-localized-enum-type │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── custom-field-localized-enum-value │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── custom-field-localized-stringtype │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── custom-field-money-type │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── custom-field-number-type │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── custom-field-reference-type │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── custom-field-set-type │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── custom-field-string-type │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── custom-field-time-type │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── enum-value │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── field-definition │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── field-type │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ ├── index.ts │ │ │ ├── localized-enum-value │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ └── type │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── presets │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ ├── type-draft │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ └── transformers.ts │ │ │ │ └── types.ts │ │ ├── user │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ ├── mc-user │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── id-token-user-info │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── transformers.ts │ │ │ │ ├── index.ts │ │ │ │ ├── mc-user-draft │ │ │ │ │ ├── builder.spec.ts │ │ │ │ │ ├── builder.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── presets │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── transformers.ts │ │ │ │ ├── presets │ │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ └── types.ts │ │ │ └── user │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ └── index.ts │ │ │ │ ├── transformers.ts │ │ │ │ ├── types.ts │ │ │ │ └── user-draft │ │ │ │ ├── builder.spec.ts │ │ │ │ ├── builder.ts │ │ │ │ ├── generator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── presets │ │ │ │ └── index.ts │ │ │ │ └── transformers.ts │ │ └── zone │ │ │ ├── index.ts │ │ │ ├── location │ │ │ ├── builder.spec.ts │ │ │ ├── builders.ts │ │ │ ├── fields-config.ts │ │ │ ├── index.ts │ │ │ ├── presets │ │ │ │ ├── change-history-data │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── with-country-us-no-state.spec.ts │ │ │ │ │ └── with-country-us-no-state.ts │ │ │ │ ├── index.ts │ │ │ │ └── with-all-fields │ │ │ │ │ ├── with-all-fields.spec.ts │ │ │ │ │ └── with-all-fields.ts │ │ │ └── types.ts │ │ │ └── zone │ │ │ ├── builders.spec.ts │ │ │ ├── builders.ts │ │ │ ├── fields-config.ts │ │ │ ├── index.ts │ │ │ ├── presets │ │ │ └── index.ts │ │ │ ├── types.ts │ │ │ └── zone-draft │ │ │ ├── builders.spec.ts │ │ │ ├── builders.ts │ │ │ ├── fields-config.ts │ │ │ ├── generator.ts │ │ │ ├── index.ts │ │ │ ├── presets │ │ │ ├── empty.spec.ts │ │ │ ├── empty.ts │ │ │ └── index.ts │ │ │ └── transformers.ts │ ├── my-view.ts │ ├── oauth-client.ts │ ├── order.ts │ ├── organization-extension.ts │ ├── organization.ts │ ├── payment.ts │ ├── platform-limits.ts │ ├── product-discount.ts │ ├── product-projection.ts │ ├── product-selection.ts │ ├── product-tailoring.ts │ ├── product-type.ts │ ├── product.ts │ ├── project-extension.ts │ ├── project.ts │ ├── quote-request.ts │ ├── quote.ts │ ├── recurring-order.ts │ ├── review.ts │ ├── shipping-method.ts │ ├── shopping-list.ts │ ├── staged-quote.ts │ ├── standalone-price.ts │ ├── state.ts │ ├── store.ts │ ├── tax-category.ts │ ├── type.ts │ ├── user.ts │ ├── utils │ │ ├── create-related-dates.ts │ │ ├── index.ts │ │ ├── slugify.ts │ │ └── test-utils.ts │ └── zone.ts ├── staged-quote │ └── package.json ├── standalone-price │ └── package.json ├── state │ └── package.json ├── store │ └── package.json ├── tax-category │ └── package.json ├── type │ └── package.json ├── user │ └── package.json ├── utils │ └── package.json └── zone │ └── package.json ├── tsconfig.json └── types-post-processor.mjs /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/.env.template -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | pnpm commitlint --edit $1 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | pnpm lint-staged 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/babel.config.js -------------------------------------------------------------------------------- /codegen.core.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/codegen.core.yml -------------------------------------------------------------------------------- /codegen.ctp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/codegen.ctp.yml -------------------------------------------------------------------------------- /codegen.mc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/codegen.mc.yml -------------------------------------------------------------------------------- /codegen.settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/codegen.settings.yml -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /docs/architecture-decisions/0002-draft-model-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/docs/architecture-decisions/0002-draft-model-structure.md -------------------------------------------------------------------------------- /docs/contributing/test-data-models-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/docs/contributing/test-data-models-overview.md -------------------------------------------------------------------------------- /docs/guidelines/creating-new-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/docs/guidelines/creating-new-model.md -------------------------------------------------------------------------------- /docs/guidelines/migrating-existing-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/docs/guidelines/migrating-existing-model.md -------------------------------------------------------------------------------- /docs/guidelines/writing-changesets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/docs/guidelines/writing-changesets.md -------------------------------------------------------------------------------- /generators/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/generators/CHANGELOG.md -------------------------------------------------------------------------------- /generators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/generators/README.md -------------------------------------------------------------------------------- /generators/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/generators/package.json -------------------------------------------------------------------------------- /generators/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/generators/src/index.ts -------------------------------------------------------------------------------- /generators/src/new-test-model/new-test-model.generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/generators/src/new-test-model/new-test-model.generator.ts -------------------------------------------------------------------------------- /generators/src/new-test-model/templates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/generators/src/new-test-model/templates/index.ts -------------------------------------------------------------------------------- /generators/src/new-test-model/templates/model/builders.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/generators/src/new-test-model/templates/model/builders.tpl -------------------------------------------------------------------------------- /generators/src/new-test-model/templates/model/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/generators/src/new-test-model/templates/model/index.tpl -------------------------------------------------------------------------------- /generators/src/new-test-model/templates/model/types.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/generators/src/new-test-model/templates/model/types.tpl -------------------------------------------------------------------------------- /generators/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/generators/src/types.ts -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- 1 | import 'jest-extended'; 2 | -------------------------------------------------------------------------------- /jest-custom-matchers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/jest-custom-matchers.js -------------------------------------------------------------------------------- /jest-runner-eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/jest-runner-eslint.config.js -------------------------------------------------------------------------------- /jest.eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/jest.eslint.config.js -------------------------------------------------------------------------------- /jest.prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/jest.prettier.config.js -------------------------------------------------------------------------------- /jest.test.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/jest.test.config.js -------------------------------------------------------------------------------- /lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/lint-staged.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /schemas/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/schemas/core.json -------------------------------------------------------------------------------- /schemas/ctp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/schemas/ctp.json -------------------------------------------------------------------------------- /schemas/mc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/schemas/mc.json -------------------------------------------------------------------------------- /schemas/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/schemas/settings.json -------------------------------------------------------------------------------- /scripts/postinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/scripts/postinstall.sh -------------------------------------------------------------------------------- /scripts/transform-imports.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/scripts/transform-imports.mjs -------------------------------------------------------------------------------- /setup-test-framework.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/setup-test-framework.js -------------------------------------------------------------------------------- /standalone/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/CHANGELOG.md -------------------------------------------------------------------------------- /standalone/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/LICENSE -------------------------------------------------------------------------------- /standalone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/README.md -------------------------------------------------------------------------------- /standalone/associate-role/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/associate-role/package.json -------------------------------------------------------------------------------- /standalone/attribute-group/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/attribute-group/package.json -------------------------------------------------------------------------------- /standalone/business-unit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/business-unit/package.json -------------------------------------------------------------------------------- /standalone/cart-discount/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/cart-discount/package.json -------------------------------------------------------------------------------- /standalone/cart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/cart/package.json -------------------------------------------------------------------------------- /standalone/category/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/category/package.json -------------------------------------------------------------------------------- /standalone/channel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/channel/package.json -------------------------------------------------------------------------------- /standalone/commons/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/commons/package.json -------------------------------------------------------------------------------- /standalone/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/core/package.json -------------------------------------------------------------------------------- /standalone/core/test-utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/core/test-utils/package.json -------------------------------------------------------------------------------- /standalone/custom-application/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/custom-application/package.json -------------------------------------------------------------------------------- /standalone/custom-fields/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/custom-fields/package.json -------------------------------------------------------------------------------- /standalone/custom-object/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/custom-object/package.json -------------------------------------------------------------------------------- /standalone/custom-view/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/custom-view/package.json -------------------------------------------------------------------------------- /standalone/customer-group/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/customer-group/package.json -------------------------------------------------------------------------------- /standalone/customer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/customer/package.json -------------------------------------------------------------------------------- /standalone/customers-search-list-my-view/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/customers-search-list-my-view/package.json -------------------------------------------------------------------------------- /standalone/discount-code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/discount-code/package.json -------------------------------------------------------------------------------- /standalone/discount-group/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/discount-group/package.json -------------------------------------------------------------------------------- /standalone/discounts-custom-view/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/discounts-custom-view/package.json -------------------------------------------------------------------------------- /standalone/filter-values/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/filter-values/package.json -------------------------------------------------------------------------------- /standalone/graphql-types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/graphql-types/package.json -------------------------------------------------------------------------------- /standalone/inventory-entry/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/inventory-entry/package.json -------------------------------------------------------------------------------- /standalone/my-view/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/my-view/package.json -------------------------------------------------------------------------------- /standalone/oauth-client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/oauth-client/package.json -------------------------------------------------------------------------------- /standalone/order/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/order/package.json -------------------------------------------------------------------------------- /standalone/organization-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/organization-extension/package.json -------------------------------------------------------------------------------- /standalone/organization/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/organization/package.json -------------------------------------------------------------------------------- /standalone/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/package.json -------------------------------------------------------------------------------- /standalone/payment/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/payment/package.json -------------------------------------------------------------------------------- /standalone/platform-limits/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/platform-limits/package.json -------------------------------------------------------------------------------- /standalone/product-discount/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/product-discount/package.json -------------------------------------------------------------------------------- /standalone/product-projection/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/product-projection/package.json -------------------------------------------------------------------------------- /standalone/product-selection/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/product-selection/package.json -------------------------------------------------------------------------------- /standalone/product-tailoring/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/product-tailoring/package.json -------------------------------------------------------------------------------- /standalone/product-type/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/product-type/package.json -------------------------------------------------------------------------------- /standalone/product/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/product/package.json -------------------------------------------------------------------------------- /standalone/project-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/project-extension/package.json -------------------------------------------------------------------------------- /standalone/project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/project/package.json -------------------------------------------------------------------------------- /standalone/quote-request/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/quote-request/package.json -------------------------------------------------------------------------------- /standalone/quote/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/quote/package.json -------------------------------------------------------------------------------- /standalone/recurring-order/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/recurring-order/package.json -------------------------------------------------------------------------------- /standalone/review/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/review/package.json -------------------------------------------------------------------------------- /standalone/shipping-method/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/shipping-method/package.json -------------------------------------------------------------------------------- /standalone/shopping-list/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/shopping-list/package.json -------------------------------------------------------------------------------- /standalone/src/associate-role.ts: -------------------------------------------------------------------------------- 1 | export * from './models/associate-role'; 2 | -------------------------------------------------------------------------------- /standalone/src/attribute-group.ts: -------------------------------------------------------------------------------- 1 | export * from './models/attribute-group'; 2 | -------------------------------------------------------------------------------- /standalone/src/business-unit.ts: -------------------------------------------------------------------------------- 1 | export * from './models/business-unit'; 2 | -------------------------------------------------------------------------------- /standalone/src/cart-discount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/cart-discount.ts -------------------------------------------------------------------------------- /standalone/src/cart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/cart.ts -------------------------------------------------------------------------------- /standalone/src/category.ts: -------------------------------------------------------------------------------- 1 | export * from './models/category'; 2 | -------------------------------------------------------------------------------- /standalone/src/channel.ts: -------------------------------------------------------------------------------- 1 | export * from './models/channel'; 2 | -------------------------------------------------------------------------------- /standalone/src/commons.ts: -------------------------------------------------------------------------------- 1 | export * from './models/commons'; 2 | -------------------------------------------------------------------------------- /standalone/src/core/@jackfranklin/test-data-bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/core/@jackfranklin/test-data-bot/README.md -------------------------------------------------------------------------------- /standalone/src/core/@jackfranklin/test-data-bot/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/core/@jackfranklin/test-data-bot/index.ts -------------------------------------------------------------------------------- /standalone/src/core/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/core/builder.spec.ts -------------------------------------------------------------------------------- /standalone/src/core/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/core/builder.ts -------------------------------------------------------------------------------- /standalone/src/core/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/core/generator.ts -------------------------------------------------------------------------------- /standalone/src/core/helpers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/core/helpers.spec.ts -------------------------------------------------------------------------------- /standalone/src/core/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/core/helpers.ts -------------------------------------------------------------------------------- /standalone/src/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/core/index.ts -------------------------------------------------------------------------------- /standalone/src/core/test-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/core/test-utils.ts -------------------------------------------------------------------------------- /standalone/src/core/transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/core/transformer.ts -------------------------------------------------------------------------------- /standalone/src/core/transforms.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/core/transforms.spec.ts -------------------------------------------------------------------------------- /standalone/src/core/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/core/types.ts -------------------------------------------------------------------------------- /standalone/src/custom-application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/custom-application.ts -------------------------------------------------------------------------------- /standalone/src/custom-fields.ts: -------------------------------------------------------------------------------- 1 | export * from './models/custom-fields'; 2 | -------------------------------------------------------------------------------- /standalone/src/custom-object.ts: -------------------------------------------------------------------------------- 1 | export * from './models/custom-object'; 2 | -------------------------------------------------------------------------------- /standalone/src/custom-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/custom-view.ts -------------------------------------------------------------------------------- /standalone/src/customer-group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/customer-group.ts -------------------------------------------------------------------------------- /standalone/src/customer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/customer.ts -------------------------------------------------------------------------------- /standalone/src/customers-search-list-my-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/customers-search-list-my-view.ts -------------------------------------------------------------------------------- /standalone/src/discount-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/discount-code.ts -------------------------------------------------------------------------------- /standalone/src/discount-group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/discount-group.ts -------------------------------------------------------------------------------- /standalone/src/discounts-custom-view.ts: -------------------------------------------------------------------------------- 1 | export * from './models/discounts-custom-view'; 2 | -------------------------------------------------------------------------------- /standalone/src/filter-values.ts: -------------------------------------------------------------------------------- 1 | export * from './models/filter-values'; 2 | -------------------------------------------------------------------------------- /standalone/src/graphql-types/generated/.gitattributes: -------------------------------------------------------------------------------- 1 | *.* linguist-generated=true -------------------------------------------------------------------------------- /standalone/src/graphql-types/generated/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/graphql-types/generated/core.ts -------------------------------------------------------------------------------- /standalone/src/graphql-types/generated/ctp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/graphql-types/generated/ctp.ts -------------------------------------------------------------------------------- /standalone/src/graphql-types/generated/mc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/graphql-types/generated/mc.ts -------------------------------------------------------------------------------- /standalone/src/graphql-types/generated/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/graphql-types/generated/settings.ts -------------------------------------------------------------------------------- /standalone/src/graphql-types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/graphql-types/index.ts -------------------------------------------------------------------------------- /standalone/src/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/inventory-entry.ts: -------------------------------------------------------------------------------- 1 | export * from './models/inventory-entry'; 2 | -------------------------------------------------------------------------------- /standalone/src/models/associate-role/builders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/associate-role/builders.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/associate-role/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/associate-role/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/associate-role/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/associate-role/constants.ts -------------------------------------------------------------------------------- /standalone/src/models/associate-role/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/associate-role/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/associate-role/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/associate-role/index.ts -------------------------------------------------------------------------------- /standalone/src/models/associate-role/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/associate-role/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/associate-role/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/associate-role/types.ts -------------------------------------------------------------------------------- /standalone/src/models/attribute-group/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/attribute-group/index.ts -------------------------------------------------------------------------------- /standalone/src/models/business-unit/associate/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/business-unit/associate/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/business-unit/associate/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/business-unit/associate/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/business-unit/associate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/business-unit/associate/index.ts -------------------------------------------------------------------------------- /standalone/src/models/business-unit/associate/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/business-unit/associate/types.ts -------------------------------------------------------------------------------- /standalone/src/models/business-unit/company/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/business-unit/company/builder.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/business-unit/company/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/business-unit/company/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/business-unit/company/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/business-unit/company/constants.ts -------------------------------------------------------------------------------- /standalone/src/models/business-unit/company/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/business-unit/company/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/business-unit/company/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/business-unit/company/index.ts -------------------------------------------------------------------------------- /standalone/src/models/business-unit/company/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/business-unit/company/transformers.ts -------------------------------------------------------------------------------- /standalone/src/models/business-unit/company/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/business-unit/company/types.ts -------------------------------------------------------------------------------- /standalone/src/models/business-unit/division/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/business-unit/division/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/business-unit/division/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/business-unit/division/constants.ts -------------------------------------------------------------------------------- /standalone/src/models/business-unit/division/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/business-unit/division/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/business-unit/division/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/business-unit/division/index.ts -------------------------------------------------------------------------------- /standalone/src/models/business-unit/division/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/business-unit/division/types.ts -------------------------------------------------------------------------------- /standalone/src/models/business-unit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/business-unit/index.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart-discount/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart-discount/index.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/cart/builders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/cart/builders.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/cart/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/cart/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/cart/cart-draft/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/cart/cart-draft/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/cart/cart-draft/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/cart/cart-draft/index.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/cart/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/cart/constants.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/cart/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/cart/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/cart/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/cart/index.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/cart/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/cart/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/cart/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/cart/types.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/custom-line-item/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/custom-line-item/index.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/custom-line-item/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/custom-line-item/types.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/direct-discount/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/direct-discount/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/direct-discount/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/direct-discount/index.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/direct-discount/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/direct-discount/types.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/discount-code-info/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/discount-code-info/index.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/discount-code-info/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/discount-code-info/types.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/index.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/item-state/builders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/item-state/builders.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/item-state/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/item-state/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/item-state/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/item-state/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/item-state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/item-state/index.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/item-state/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/item-state/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/item-state/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/item-state/types.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/line-item/builders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/line-item/builders.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/line-item/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/line-item/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/line-item/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/line-item/constants.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/line-item/field-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/line-item/field-config.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/line-item/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/line-item/index.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/line-item/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/line-item/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/line-item/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/line-item/types.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/method-tax-rate/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/method-tax-rate/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/method-tax-rate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/method-tax-rate/index.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/method-tax-rate/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/method-tax-rate/types.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/method-taxed-price/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/method-taxed-price/index.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/method-taxed-price/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/method-taxed-price/types.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/shipping-info/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/shipping-info/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/shipping-info/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/shipping-info/index.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/shipping-info/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/shipping-info/types.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/shipping/builders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/shipping/builders.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/shipping/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/shipping/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/shipping/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/shipping/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/shipping/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/shipping/index.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/shipping/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/shipping/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/shipping/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/shipping/types.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/tax-portion/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/tax-portion/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/tax-portion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/tax-portion/index.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/tax-portion/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/tax-portion/types.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/taxed-item-price/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/taxed-item-price/index.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/taxed-item-price/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/taxed-item-price/types.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/taxed-price/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/taxed-price/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/taxed-price/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/taxed-price/index.ts -------------------------------------------------------------------------------- /standalone/src/models/cart/cart/taxed-price/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/cart/cart/taxed-price/types.ts -------------------------------------------------------------------------------- /standalone/src/models/category/category-search/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/category/category-search/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/category/category-search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/category/category-search/index.ts -------------------------------------------------------------------------------- /standalone/src/models/category/category-search/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/category/category-search/types.ts -------------------------------------------------------------------------------- /standalone/src/models/category/category/builders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/category/category/builders.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/category/category/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/category/category/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/category/category/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/category/category/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/category/category/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/category/category/index.ts -------------------------------------------------------------------------------- /standalone/src/models/category/category/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/category/category/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/category/category/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/category/category/types.ts -------------------------------------------------------------------------------- /standalone/src/models/category/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/category/index.ts -------------------------------------------------------------------------------- /standalone/src/models/channel/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/channel/builder.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/channel/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/channel/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/channel/channel-draft/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/channel/channel-draft/builder.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/channel/channel-draft/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/channel/channel-draft/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/channel/channel-draft/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/channel/channel-draft/index.ts -------------------------------------------------------------------------------- /standalone/src/models/channel/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/channel/constants.ts -------------------------------------------------------------------------------- /standalone/src/models/channel/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/channel/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/channel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/channel/index.ts -------------------------------------------------------------------------------- /standalone/src/models/channel/presets/clothes-store.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/channel/presets/clothes-store.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/channel/presets/clothes-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/channel/presets/clothes-store.ts -------------------------------------------------------------------------------- /standalone/src/models/channel/presets/food-store.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/channel/presets/food-store.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/channel/presets/food-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/channel/presets/food-store.ts -------------------------------------------------------------------------------- /standalone/src/models/channel/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/channel/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/channel/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/channel/types.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/address/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/address/builder.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/address/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/address/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/address/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/address/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/address/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/address/index.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/address/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/address/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/address/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/address/transformers.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/address/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/address/types.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/base-money/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/base-money/types.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/cent-precision-money/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/cent-precision-money/index.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/cent-precision-money/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/cent-precision-money/types.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/client-logging/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/client-logging/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/client-logging/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/client-logging/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/client-logging/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/client-logging/index.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/client-logging/presets/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/commons/client-logging/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/client-logging/types.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/geometry/builders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/geometry/builders.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/geometry/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/geometry/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/geometry/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/geometry/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/geometry/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/geometry/index.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/geometry/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/geometry/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/geometry/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/geometry/types.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/high-precision-money/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/high-precision-money/index.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/high-precision-money/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/high-precision-money/types.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/index.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/key-reference/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/key-reference/builder.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/key-reference/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/key-reference/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/key-reference/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/key-reference/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/key-reference/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/key-reference/index.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/key-reference/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/key-reference/transformers.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/key-reference/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/key-reference/types.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/localized-field/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/localized-field/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/localized-field/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/localized-field/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/localized-field/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/localized-field/index.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/localized-field/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/localized-field/types.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/localized-string/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/localized-string/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/localized-string/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/localized-string/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/localized-string/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/localized-string/helpers.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/localized-string/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/localized-string/index.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/localized-string/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/localized-string/types.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/money/builders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/money/builders.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/money/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/money/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/money/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/money/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/money/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/money/index.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/money/money-draft/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/money/money-draft/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/money/money-draft/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/money/money-draft/index.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/money/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/money/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/money/presets/with-cent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/money/presets/with-cent.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/money/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/money/types.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/price-tier/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/price-tier/builder.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/price-tier/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/price-tier/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/price-tier/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/price-tier/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/price-tier/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/price-tier/index.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/price-tier/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/price-tier/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/price-tier/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/price-tier/transformers.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/price-tier/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/price-tier/types.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/price/builders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/price/builders.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/price/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/price/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/price/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/price/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/price/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/price/index.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/price/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/price/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/price/price-draft/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/price/price-draft/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/price/price-draft/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/price/price-draft/index.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/price/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/price/types.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/reference/builders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/reference/builders.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/reference/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/reference/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/reference/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/reference/constants.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/reference/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/reference/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/reference/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/reference/index.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/reference/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/reference/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/commons/reference/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/commons/reference/types.ts -------------------------------------------------------------------------------- /standalone/src/models/custom-fields/custom-fields/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/custom-fields/custom-fields/index.ts -------------------------------------------------------------------------------- /standalone/src/models/custom-fields/custom-fields/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/custom-fields/custom-fields/types.ts -------------------------------------------------------------------------------- /standalone/src/models/custom-fields/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/custom-fields/index.ts -------------------------------------------------------------------------------- /standalone/src/models/custom-fields/raw-custom-field/presets/index.ts: -------------------------------------------------------------------------------- 1 | export const graphqlPresets = {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/custom-object/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/custom-object/builder.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/custom-object/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/custom-object/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/custom-object/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/custom-object/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/custom-object/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/custom-object/index.ts -------------------------------------------------------------------------------- /standalone/src/models/custom-object/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/custom-object/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/custom-object/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/custom-object/transformers.ts -------------------------------------------------------------------------------- /standalone/src/models/custom-object/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/custom-object/types.ts -------------------------------------------------------------------------------- /standalone/src/models/customer/customer-group/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/customer/customer-group/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/customer/customer-group/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/customer/customer-group/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/customer/customer-group/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/customer/customer-group/index.ts -------------------------------------------------------------------------------- /standalone/src/models/customer/customer-group/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/customer/customer-group/types.ts -------------------------------------------------------------------------------- /standalone/src/models/customer/customer/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/customer/customer/builder.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/customer/customer/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/customer/customer/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/customer/customer/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/customer/customer/constants.ts -------------------------------------------------------------------------------- /standalone/src/models/customer/customer/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/customer/customer/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/customer/customer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/customer/customer/index.ts -------------------------------------------------------------------------------- /standalone/src/models/customer/customer/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/customer/customer/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/customer/customer/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/customer/customer/transformers.ts -------------------------------------------------------------------------------- /standalone/src/models/customer/customer/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/customer/customer/types.ts -------------------------------------------------------------------------------- /standalone/src/models/customer/customers-search-list-my-view/presets/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/customization/custom-application/custom-application-deployment-preview/presets/index.ts: -------------------------------------------------------------------------------- 1 | export const graphqlPresets = {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/customization/custom-application/custom-application-installation/presets/index.ts: -------------------------------------------------------------------------------- 1 | export const graphqlPresets = {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/customization/custom-application/custom-application-menu-link/custom-application-menu-link-draft/presets/index.ts: -------------------------------------------------------------------------------- 1 | export const graphqlPresets = {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/customization/custom-application/custom-application-menu-link/presets/index.ts: -------------------------------------------------------------------------------- 1 | export const graphqlPresets = {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/customization/custom-application/custom-application-submenu-link/presets/index.ts: -------------------------------------------------------------------------------- 1 | export const graphqlPresets = {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/customization/custom-application/custom-application/custom-application-draft/presets/index.ts: -------------------------------------------------------------------------------- 1 | export const graphqlPresets = {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/customization/custom-view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/customization/custom-view/index.ts -------------------------------------------------------------------------------- /standalone/src/models/discount/discount-code/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/discount/discount-code/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/discount/discount-code/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/discount/discount-code/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/discount/discount-code/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/discount/discount-code/index.ts -------------------------------------------------------------------------------- /standalone/src/models/discount/discount-code/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/discount/discount-code/types.ts -------------------------------------------------------------------------------- /standalone/src/models/discount/discount-group/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/discount/discount-group/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/discount/discount-group/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/discount/discount-group/index.ts -------------------------------------------------------------------------------- /standalone/src/models/discount/discount-group/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/discount/discount-group/types.ts -------------------------------------------------------------------------------- /standalone/src/models/discounts-custom-view/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/discounts-custom-view/builder.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/discounts-custom-view/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/discounts-custom-view/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/discounts-custom-view/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/discounts-custom-view/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/discounts-custom-view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/discounts-custom-view/index.ts -------------------------------------------------------------------------------- /standalone/src/models/discounts-custom-view/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/discounts-custom-view/transformers.ts -------------------------------------------------------------------------------- /standalone/src/models/discounts-custom-view/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/discounts-custom-view/types.ts -------------------------------------------------------------------------------- /standalone/src/models/filter-values/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/filter-values/builder.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/filter-values/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/filter-values/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/filter-values/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/filter-values/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/filter-values/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/filter-values/index.ts -------------------------------------------------------------------------------- /standalone/src/models/filter-values/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/filter-values/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/filter-values/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/filter-values/transformers.ts -------------------------------------------------------------------------------- /standalone/src/models/filter-values/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/filter-values/types.ts -------------------------------------------------------------------------------- /standalone/src/models/inventory-entry/builders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/inventory-entry/builders.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/inventory-entry/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/inventory-entry/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/inventory-entry/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/inventory-entry/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/inventory-entry/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/inventory-entry/index.ts -------------------------------------------------------------------------------- /standalone/src/models/inventory-entry/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/inventory-entry/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/inventory-entry/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/inventory-entry/types.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/business-units-list-view/presets/index.ts: -------------------------------------------------------------------------------- 1 | export const graphqlPresets = {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/my-view/dashboard-view/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/my-view/dashboard-view/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/dashboard-view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/my-view/dashboard-view/index.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/dashboard-view/presets/index.ts: -------------------------------------------------------------------------------- 1 | export const graphqlPresets = {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/my-view/dashboard-view/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/my-view/dashboard-view/types.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/my-view/index.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/my-view-nested-table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/my-view/my-view-nested-table/index.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/my-view-nested-table/presets/index.ts: -------------------------------------------------------------------------------- 1 | export const graphqlPresets = {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/my-view/my-view-nested-table/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/my-view/my-view-nested-table/types.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/my-view-sort/builders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/my-view/my-view-sort/builders.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/my-view-sort/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/my-view/my-view-sort/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/my-view-sort/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/my-view/my-view-sort/constants.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/my-view-sort/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/my-view/my-view-sort/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/my-view-sort/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/my-view/my-view-sort/index.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/my-view-sort/presets/index.ts: -------------------------------------------------------------------------------- 1 | export const graphqlPresets = {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/my-view/my-view-sort/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/my-view/my-view-sort/types.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/my-view-table/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/my-view/my-view-table/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/my-view-table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/my-view/my-view-table/index.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/my-view-table/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/my-view/my-view-table/types.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/order-detail-view/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/my-view/order-detail-view/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/order-detail-view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/my-view/order-detail-view/index.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/order-detail-view/presets/index.ts: -------------------------------------------------------------------------------- 1 | export const graphqlPresets = {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/my-view/order-detail-view/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/my-view/order-detail-view/types.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/orders-list-view/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/my-view/orders-list-view/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/orders-list-view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/my-view/orders-list-view/index.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/orders-list-view/presets/index.ts: -------------------------------------------------------------------------------- 1 | export const graphqlPresets = {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/my-view/orders-list-view/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/my-view/orders-list-view/types.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/pim-search-list-view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/my-view/pim-search-list-view/index.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/pim-search-list-view/presets/index.ts: -------------------------------------------------------------------------------- 1 | export const graphqlPresets = {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/my-view/pim-search-list-view/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/my-view/pim-search-list-view/types.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/quotes-list-view/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/my-view/quotes-list-view/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/quotes-list-view/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/my-view/quotes-list-view/index.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/quotes-list-view/presets/index.ts: -------------------------------------------------------------------------------- 1 | export const graphqlPresets = {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/my-view/quotes-list-view/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/my-view/quotes-list-view/types.ts -------------------------------------------------------------------------------- /standalone/src/models/my-view/variant-prices-list-view/presets/index.ts: -------------------------------------------------------------------------------- 1 | export const graphqlPresets = {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/oauth-client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/oauth-client/index.ts -------------------------------------------------------------------------------- /standalone/src/models/oauth-client/oauth-client/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/oauth-client/oauth-client/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/oauth-client/oauth-client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/oauth-client/oauth-client/index.ts -------------------------------------------------------------------------------- /standalone/src/models/oauth-client/oauth-client/presets/index.ts: -------------------------------------------------------------------------------- 1 | export const graphqlPresets = {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/oauth-client/oauth-client/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/oauth-client/oauth-client/types.ts -------------------------------------------------------------------------------- /standalone/src/models/oauth-client/oauth-scope/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/oauth-client/oauth-scope/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/oauth-client/oauth-scope/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/oauth-client/oauth-scope/constants.ts -------------------------------------------------------------------------------- /standalone/src/models/oauth-client/oauth-scope/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/oauth-client/oauth-scope/index.ts -------------------------------------------------------------------------------- /standalone/src/models/oauth-client/oauth-scope/presets/index.ts: -------------------------------------------------------------------------------- 1 | export const graphqlPresets = {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/oauth-client/oauth-scope/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/oauth-client/oauth-scope/types.ts -------------------------------------------------------------------------------- /standalone/src/models/oauth-client/project-permission/presets/index.ts: -------------------------------------------------------------------------------- 1 | export const graphqlPresets = {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/order/delivery-item/builders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/delivery-item/builders.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/order/delivery-item/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/delivery-item/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/order/delivery-item/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/delivery-item/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/order/delivery-item/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/delivery-item/index.ts -------------------------------------------------------------------------------- /standalone/src/models/order/delivery-item/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/delivery-item/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/order/delivery-item/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/delivery-item/types.ts -------------------------------------------------------------------------------- /standalone/src/models/order/delivery/builders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/delivery/builders.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/order/delivery/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/delivery/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/order/delivery/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/delivery/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/order/delivery/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/delivery/index.ts -------------------------------------------------------------------------------- /standalone/src/models/order/delivery/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/delivery/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/order/delivery/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/delivery/types.ts -------------------------------------------------------------------------------- /standalone/src/models/order/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/index.ts -------------------------------------------------------------------------------- /standalone/src/models/order/line-item-return-item/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/line-item-return-item/index.ts -------------------------------------------------------------------------------- /standalone/src/models/order/line-item-return-item/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/line-item-return-item/types.ts -------------------------------------------------------------------------------- /standalone/src/models/order/order/builders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/order/builders.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/order/order/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/order/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/order/order/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/order/constants.ts -------------------------------------------------------------------------------- /standalone/src/models/order/order/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/order/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/order/order/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/order/index.ts -------------------------------------------------------------------------------- /standalone/src/models/order/order/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/order/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/order/order/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/order/types.ts -------------------------------------------------------------------------------- /standalone/src/models/order/parcel-measurements/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/parcel-measurements/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/order/parcel-measurements/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/parcel-measurements/index.ts -------------------------------------------------------------------------------- /standalone/src/models/order/parcel-measurements/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/parcel-measurements/types.ts -------------------------------------------------------------------------------- /standalone/src/models/order/parcel/builders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/parcel/builders.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/order/parcel/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/parcel/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/order/parcel/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/parcel/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/order/parcel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/parcel/index.ts -------------------------------------------------------------------------------- /standalone/src/models/order/parcel/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/parcel/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/order/parcel/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/parcel/types.ts -------------------------------------------------------------------------------- /standalone/src/models/order/payment-info/builders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/payment-info/builders.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/order/payment-info/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/payment-info/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/order/payment-info/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/payment-info/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/order/payment-info/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/payment-info/index.ts -------------------------------------------------------------------------------- /standalone/src/models/order/payment-info/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/payment-info/types.ts -------------------------------------------------------------------------------- /standalone/src/models/order/return-info/builders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/return-info/builders.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/order/return-info/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/return-info/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/order/return-info/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/return-info/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/order/return-info/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/return-info/index.ts -------------------------------------------------------------------------------- /standalone/src/models/order/return-info/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/return-info/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/order/return-info/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/return-info/types.ts -------------------------------------------------------------------------------- /standalone/src/models/order/sync-info/builders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/sync-info/builders.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/order/sync-info/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/sync-info/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/order/sync-info/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/sync-info/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/order/sync-info/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/sync-info/index.ts -------------------------------------------------------------------------------- /standalone/src/models/order/sync-info/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/sync-info/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/order/sync-info/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/sync-info/types.ts -------------------------------------------------------------------------------- /standalone/src/models/order/tracking-data/builders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/tracking-data/builders.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/order/tracking-data/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/tracking-data/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/order/tracking-data/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/tracking-data/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/order/tracking-data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/tracking-data/index.ts -------------------------------------------------------------------------------- /standalone/src/models/order/tracking-data/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/tracking-data/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/order/tracking-data/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/order/tracking-data/types.ts -------------------------------------------------------------------------------- /standalone/src/models/organization/organization/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/organization/organization/index.ts -------------------------------------------------------------------------------- /standalone/src/models/organization/organization/organization/presets/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/payment/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/payment/index.ts -------------------------------------------------------------------------------- /standalone/src/models/payment/payment-method-info/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/payment/payment-method-info/index.ts -------------------------------------------------------------------------------- /standalone/src/models/payment/payment-method-info/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/payment/payment-method-info/types.ts -------------------------------------------------------------------------------- /standalone/src/models/payment/payment-status/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/payment/payment-status/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/payment/payment-status/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/payment/payment-status/index.ts -------------------------------------------------------------------------------- /standalone/src/models/payment/payment-status/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/payment/payment-status/types.ts -------------------------------------------------------------------------------- /standalone/src/models/payment/payment/builders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/payment/payment/builders.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/payment/payment/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/payment/payment/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/payment/payment/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/payment/payment/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/payment/payment/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/payment/payment/index.ts -------------------------------------------------------------------------------- /standalone/src/models/payment/payment/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/payment/payment/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/payment/payment/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/payment/payment/types.ts -------------------------------------------------------------------------------- /standalone/src/models/payment/transaction/builders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/payment/transaction/builders.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/payment/transaction/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/payment/transaction/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/payment/transaction/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/payment/transaction/constants.ts -------------------------------------------------------------------------------- /standalone/src/models/payment/transaction/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/payment/transaction/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/payment/transaction/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/payment/transaction/index.ts -------------------------------------------------------------------------------- /standalone/src/models/payment/transaction/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/payment/transaction/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/payment/transaction/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/payment/transaction/types.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/carts/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/carts/builder.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/carts/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/carts/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/carts/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/carts/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/carts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/carts/index.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/carts/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/carts/transformers.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/carts/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/carts/types.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/customers/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/customers/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/customers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/customers/index.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/customers/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/customers/types.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/general/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/general/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/general/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/general/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/general/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/general/index.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/general/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/general/types.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/index.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/limit/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/limit/builder.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/limit/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/limit/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/limit/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/limit/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/limit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/limit/index.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/limit/presets/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/limit/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/limit/transformers.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/limit/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/limit/types.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/stores/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/stores/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/stores/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/stores/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/stores/index.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/stores/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/stores/types.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/zones/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/zones/builder.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/zones/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/zones/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/zones/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/zones/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/zones/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/zones/index.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/zones/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/zones/transformers.ts -------------------------------------------------------------------------------- /standalone/src/models/platform-limits/zones/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/platform-limits/zones/types.ts -------------------------------------------------------------------------------- /standalone/src/models/product-type/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/product-type/index.ts -------------------------------------------------------------------------------- /standalone/src/models/product-type/product-type/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/product-type/product-type/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/product-type/product-type/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/product-type/product-type/index.ts -------------------------------------------------------------------------------- /standalone/src/models/product-type/product-type/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/product-type/product-type/types.ts -------------------------------------------------------------------------------- /standalone/src/models/product/product-discount/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/product/product-discount/index.ts -------------------------------------------------------------------------------- /standalone/src/models/product/product-projection/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/product/product-projection/index.ts -------------------------------------------------------------------------------- /standalone/src/models/product/product-projection/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/product/product-projection/types.ts -------------------------------------------------------------------------------- /standalone/src/models/product/product-selection/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/product/product-selection/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/product/product-selection/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/product/product-selection/index.ts -------------------------------------------------------------------------------- /standalone/src/models/product/product-selection/product-of-selection/presets/index.ts: -------------------------------------------------------------------------------- 1 | export const graphqlPresets = {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/product/product-selection/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/product/product-selection/types.ts -------------------------------------------------------------------------------- /standalone/src/models/product/product-tailoring/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/product/product-tailoring/index.ts -------------------------------------------------------------------------------- /standalone/src/models/product/product/attribute/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/product/product/attribute/index.ts -------------------------------------------------------------------------------- /standalone/src/models/product/product/attribute/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/product/product/attribute/types.ts -------------------------------------------------------------------------------- /standalone/src/models/product/product/image/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/product/product/image/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/product/product/image/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/product/product/image/index.ts -------------------------------------------------------------------------------- /standalone/src/models/product/product/image/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/product/product/image/types.ts -------------------------------------------------------------------------------- /standalone/src/models/product/product/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/product/product/index.ts -------------------------------------------------------------------------------- /standalone/src/models/product/product/product/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/product/product/product/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/product/product/product/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/product/product/product/index.ts -------------------------------------------------------------------------------- /standalone/src/models/product/product/product/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/product/product/product/types.ts -------------------------------------------------------------------------------- /standalone/src/models/project/project-extension/category-recommendation-settings/category-recommendation-settings-draft/presets/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/project/project-extension/category-recommendation-settings/presets/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/project/project-extension/image-regex/image-regex-draft/presets/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/project/project-extension/image-regex/presets/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/project/project-extension/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/project/project-extension/index.ts -------------------------------------------------------------------------------- /standalone/src/models/project/project-extension/presets/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/project/project-extension/sample-data-import/presets/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/project/project-extension/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/project/project-extension/types.ts -------------------------------------------------------------------------------- /standalone/src/models/project/project/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/project/project/index.ts -------------------------------------------------------------------------------- /standalone/src/models/project/project/mc-project/all-permissions-for-all-applications/applied-menu-visibilities/presets/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/project/project/mc-project/all-permissions-for-all-applications/presets/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/project/project/mc-project/applied-action-right/presets/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/project/project/mc-project/applied-data-fence/presets/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/project/project/mc-project/applied-permission/presets/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/project/project/mc-project/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/project/project/mc-project/index.ts -------------------------------------------------------------------------------- /standalone/src/models/project/project/mc-project/mc-project-draft/presets/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/project/project/mc-project/presets/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/project/project/mc-project/project-expiry/presets/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/project/project/mc-project/project-suspension/presets/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/project/project/mc-project/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/project/project/mc-project/types.ts -------------------------------------------------------------------------------- /standalone/src/models/project/project/project/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/project/project/project/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/project/project/project/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/project/project/project/index.ts -------------------------------------------------------------------------------- /standalone/src/models/project/project/project/messages-configuration/presets/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/project/project/project/project-draft/presets/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/project/project/project/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/project/project/project/types.ts -------------------------------------------------------------------------------- /standalone/src/models/quote/quote-request/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/quote/quote-request/builder.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/quote/quote-request/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/quote/quote-request/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/quote/quote-request/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/quote/quote-request/constants.ts -------------------------------------------------------------------------------- /standalone/src/models/quote/quote-request/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/quote/quote-request/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/quote/quote-request/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/quote/quote-request/index.ts -------------------------------------------------------------------------------- /standalone/src/models/quote/quote-request/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/quote/quote-request/transformers.ts -------------------------------------------------------------------------------- /standalone/src/models/quote/quote-request/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/quote/quote-request/types.ts -------------------------------------------------------------------------------- /standalone/src/models/quote/quote/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/quote/quote/builder.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/quote/quote/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/quote/quote/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/quote/quote/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/quote/quote/constants.ts -------------------------------------------------------------------------------- /standalone/src/models/quote/quote/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/quote/quote/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/quote/quote/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/quote/quote/index.ts -------------------------------------------------------------------------------- /standalone/src/models/quote/quote/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/quote/quote/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/quote/quote/quote-draft/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/quote/quote/quote-draft/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/quote/quote/quote-draft/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/quote/quote/quote-draft/index.ts -------------------------------------------------------------------------------- /standalone/src/models/quote/quote/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/quote/quote/transformers.ts -------------------------------------------------------------------------------- /standalone/src/models/quote/quote/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/quote/quote/types.ts -------------------------------------------------------------------------------- /standalone/src/models/quote/staged-quote/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/quote/staged-quote/builder.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/quote/staged-quote/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/quote/staged-quote/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/quote/staged-quote/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/quote/staged-quote/constants.ts -------------------------------------------------------------------------------- /standalone/src/models/quote/staged-quote/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/quote/staged-quote/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/quote/staged-quote/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/quote/staged-quote/index.ts -------------------------------------------------------------------------------- /standalone/src/models/quote/staged-quote/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/quote/staged-quote/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/quote/staged-quote/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/quote/staged-quote/transformers.ts -------------------------------------------------------------------------------- /standalone/src/models/quote/staged-quote/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/quote/staged-quote/types.ts -------------------------------------------------------------------------------- /standalone/src/models/recurring-order/counter/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/recurring-order/counter/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/recurring-order/counter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/recurring-order/counter/index.ts -------------------------------------------------------------------------------- /standalone/src/models/recurring-order/counter/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/recurring-order/counter/types.ts -------------------------------------------------------------------------------- /standalone/src/models/recurring-order/day-of-month-schedule/day-of-month-schedule-draft/presets/index.ts: -------------------------------------------------------------------------------- 1 | export const restPresets = {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/recurring-order/day-of-month-schedule/day-of-month-schedule-input/presets/index.ts: -------------------------------------------------------------------------------- 1 | export const graphqlPresets = {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/recurring-order/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/recurring-order/index.ts -------------------------------------------------------------------------------- /standalone/src/models/recurring-order/standard-schedule/standard-schedule-draft/presets/index.ts: -------------------------------------------------------------------------------- 1 | export const restPresets = {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/review/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/review/builder.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/review/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/review/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/review/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/review/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/review/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/review/index.ts -------------------------------------------------------------------------------- /standalone/src/models/review/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/review/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/review/review-draft/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/review/review-draft/builder.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/review/review-draft/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/review/review-draft/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/review/review-draft/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/review/review-draft/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/review/review-draft/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/review/review-draft/index.ts -------------------------------------------------------------------------------- /standalone/src/models/review/review-draft/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/review/review-draft/transformers.ts -------------------------------------------------------------------------------- /standalone/src/models/review/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/review/transformers.ts -------------------------------------------------------------------------------- /standalone/src/models/review/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/review/types.ts -------------------------------------------------------------------------------- /standalone/src/models/shipping-method/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/shipping-method/index.ts -------------------------------------------------------------------------------- /standalone/src/models/shipping-method/zone-rate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/shipping-method/zone-rate/index.ts -------------------------------------------------------------------------------- /standalone/src/models/shipping-method/zone-rate/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/shipping-method/zone-rate/types.ts -------------------------------------------------------------------------------- /standalone/src/models/shopping-list/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/shopping-list/index.ts -------------------------------------------------------------------------------- /standalone/src/models/standalone-price/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/standalone-price/builder.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/standalone-price/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/standalone-price/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/standalone-price/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/standalone-price/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/standalone-price/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/standalone-price/index.ts -------------------------------------------------------------------------------- /standalone/src/models/standalone-price/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/standalone-price/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/standalone-price/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/standalone-price/transformers.ts -------------------------------------------------------------------------------- /standalone/src/models/standalone-price/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/standalone-price/types.ts -------------------------------------------------------------------------------- /standalone/src/models/state/builders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/state/builders.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/state/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/state/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/state/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/state/constants.ts -------------------------------------------------------------------------------- /standalone/src/models/state/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/state/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/state/index.ts -------------------------------------------------------------------------------- /standalone/src/models/state/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/state/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/state/presets/packed.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/state/presets/packed.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/state/presets/packed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/state/presets/packed.ts -------------------------------------------------------------------------------- /standalone/src/models/state/presets/shipped.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/state/presets/shipped.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/state/presets/shipped.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/state/presets/shipped.ts -------------------------------------------------------------------------------- /standalone/src/models/state/state-draft/builders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/state/state-draft/builders.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/state/state-draft/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/state/state-draft/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/state/state-draft/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/state/state-draft/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/state/state-draft/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/state/state-draft/index.ts -------------------------------------------------------------------------------- /standalone/src/models/state/state-draft/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/state/state-draft/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/state/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/state/types.ts -------------------------------------------------------------------------------- /standalone/src/models/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/store/index.ts -------------------------------------------------------------------------------- /standalone/src/models/store/store/builders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/store/store/builders.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/store/store/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/store/store/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/store/store/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/store/store/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/store/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/store/store/index.ts -------------------------------------------------------------------------------- /standalone/src/models/store/store/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/store/store/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/store/store/store-draft/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/store/store/store-draft/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/store/store/store-draft/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/store/store/store-draft/index.ts -------------------------------------------------------------------------------- /standalone/src/models/store/store/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/store/store/types.ts -------------------------------------------------------------------------------- /standalone/src/models/tax-category/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/tax-category/index.ts -------------------------------------------------------------------------------- /standalone/src/models/tax-category/tax-category/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/tax-category/tax-category/index.ts -------------------------------------------------------------------------------- /standalone/src/models/tax-category/tax-category/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/tax-category/tax-category/types.ts -------------------------------------------------------------------------------- /standalone/src/models/tax-category/tax-rate/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/tax-category/tax-rate/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/tax-category/tax-rate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/tax-category/tax-rate/index.ts -------------------------------------------------------------------------------- /standalone/src/models/tax-category/tax-rate/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/tax-category/tax-rate/types.ts -------------------------------------------------------------------------------- /standalone/src/models/type/custom-field-set-type/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/custom-field-set-type/index.ts -------------------------------------------------------------------------------- /standalone/src/models/type/custom-field-set-type/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/custom-field-set-type/types.ts -------------------------------------------------------------------------------- /standalone/src/models/type/enum-value/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/enum-value/builder.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/type/enum-value/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/enum-value/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/type/enum-value/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/enum-value/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/type/enum-value/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/enum-value/index.ts -------------------------------------------------------------------------------- /standalone/src/models/type/enum-value/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/enum-value/transformers.ts -------------------------------------------------------------------------------- /standalone/src/models/type/enum-value/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/enum-value/types.ts -------------------------------------------------------------------------------- /standalone/src/models/type/field-definition/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/field-definition/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/type/field-definition/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/field-definition/constants.ts -------------------------------------------------------------------------------- /standalone/src/models/type/field-definition/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/field-definition/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/type/field-definition/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/field-definition/index.ts -------------------------------------------------------------------------------- /standalone/src/models/type/field-definition/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/field-definition/types.ts -------------------------------------------------------------------------------- /standalone/src/models/type/field-type/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/field-type/builder.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/type/field-type/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/field-type/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/type/field-type/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/field-type/constants.ts -------------------------------------------------------------------------------- /standalone/src/models/type/field-type/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/field-type/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/type/field-type/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/field-type/index.ts -------------------------------------------------------------------------------- /standalone/src/models/type/field-type/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/field-type/transformers.ts -------------------------------------------------------------------------------- /standalone/src/models/type/field-type/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/field-type/types.ts -------------------------------------------------------------------------------- /standalone/src/models/type/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/index.ts -------------------------------------------------------------------------------- /standalone/src/models/type/localized-enum-value/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/localized-enum-value/index.ts -------------------------------------------------------------------------------- /standalone/src/models/type/localized-enum-value/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/localized-enum-value/types.ts -------------------------------------------------------------------------------- /standalone/src/models/type/type/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/type/builder.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/type/type/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/type/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/type/type/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/type/constants.ts -------------------------------------------------------------------------------- /standalone/src/models/type/type/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/type/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/type/type/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/type/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/type/type/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/type/transformers.ts -------------------------------------------------------------------------------- /standalone/src/models/type/type/type-draft/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/type/type-draft/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/type/type/type-draft/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/type/type-draft/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/type/type/type-draft/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/type/type-draft/index.ts -------------------------------------------------------------------------------- /standalone/src/models/type/type/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/type/type/types.ts -------------------------------------------------------------------------------- /standalone/src/models/user/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/user/constants.ts -------------------------------------------------------------------------------- /standalone/src/models/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/user/index.ts -------------------------------------------------------------------------------- /standalone/src/models/user/mc-user/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/user/mc-user/builder.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/user/mc-user/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/user/mc-user/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/user/mc-user/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/user/mc-user/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/user/mc-user/id-token-user-info/presets/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/user/mc-user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/user/mc-user/index.ts -------------------------------------------------------------------------------- /standalone/src/models/user/mc-user/mc-user-draft/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/user/mc-user/mc-user-draft/index.ts -------------------------------------------------------------------------------- /standalone/src/models/user/mc-user/mc-user-draft/presets/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/user/mc-user/presets/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/user/mc-user/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/user/mc-user/transformers.ts -------------------------------------------------------------------------------- /standalone/src/models/user/mc-user/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/user/mc-user/types.ts -------------------------------------------------------------------------------- /standalone/src/models/user/user/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/user/user/builder.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/user/user/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/user/user/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/user/user/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/user/user/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/user/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/user/user/index.ts -------------------------------------------------------------------------------- /standalone/src/models/user/user/presets/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/user/user/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/user/user/transformers.ts -------------------------------------------------------------------------------- /standalone/src/models/user/user/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/user/user/types.ts -------------------------------------------------------------------------------- /standalone/src/models/user/user/user-draft/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/user/user/user-draft/builder.ts -------------------------------------------------------------------------------- /standalone/src/models/user/user/user-draft/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/user/user/user-draft/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/user/user/user-draft/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/user/user/user-draft/index.ts -------------------------------------------------------------------------------- /standalone/src/models/user/user/user-draft/presets/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /standalone/src/models/zone/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/zone/index.ts -------------------------------------------------------------------------------- /standalone/src/models/zone/location/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/zone/location/builder.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/zone/location/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/zone/location/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/zone/location/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/zone/location/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/zone/location/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/zone/location/index.ts -------------------------------------------------------------------------------- /standalone/src/models/zone/location/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/zone/location/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/zone/location/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/zone/location/types.ts -------------------------------------------------------------------------------- /standalone/src/models/zone/zone/builders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/zone/zone/builders.spec.ts -------------------------------------------------------------------------------- /standalone/src/models/zone/zone/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/zone/zone/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/zone/zone/fields-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/zone/zone/fields-config.ts -------------------------------------------------------------------------------- /standalone/src/models/zone/zone/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/zone/zone/index.ts -------------------------------------------------------------------------------- /standalone/src/models/zone/zone/presets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/zone/zone/presets/index.ts -------------------------------------------------------------------------------- /standalone/src/models/zone/zone/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/zone/zone/types.ts -------------------------------------------------------------------------------- /standalone/src/models/zone/zone/zone-draft/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/zone/zone/zone-draft/builders.ts -------------------------------------------------------------------------------- /standalone/src/models/zone/zone/zone-draft/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/zone/zone/zone-draft/generator.ts -------------------------------------------------------------------------------- /standalone/src/models/zone/zone/zone-draft/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/models/zone/zone/zone-draft/index.ts -------------------------------------------------------------------------------- /standalone/src/my-view.ts: -------------------------------------------------------------------------------- 1 | export * from './models/my-view'; 2 | -------------------------------------------------------------------------------- /standalone/src/oauth-client.ts: -------------------------------------------------------------------------------- 1 | export * from './models/oauth-client'; 2 | -------------------------------------------------------------------------------- /standalone/src/order.ts: -------------------------------------------------------------------------------- 1 | export * from './models/order'; 2 | -------------------------------------------------------------------------------- /standalone/src/organization-extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/organization-extension.ts -------------------------------------------------------------------------------- /standalone/src/organization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/organization.ts -------------------------------------------------------------------------------- /standalone/src/payment.ts: -------------------------------------------------------------------------------- 1 | export * from './models/payment'; 2 | -------------------------------------------------------------------------------- /standalone/src/platform-limits.ts: -------------------------------------------------------------------------------- 1 | export * from './models/platform-limits'; 2 | -------------------------------------------------------------------------------- /standalone/src/product-discount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/product-discount.ts -------------------------------------------------------------------------------- /standalone/src/product-projection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/product-projection.ts -------------------------------------------------------------------------------- /standalone/src/product-selection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/product-selection.ts -------------------------------------------------------------------------------- /standalone/src/product-tailoring.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/product-tailoring.ts -------------------------------------------------------------------------------- /standalone/src/product-type.ts: -------------------------------------------------------------------------------- 1 | export * from './models/product-type'; 2 | -------------------------------------------------------------------------------- /standalone/src/product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/product.ts -------------------------------------------------------------------------------- /standalone/src/project-extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/project-extension.ts -------------------------------------------------------------------------------- /standalone/src/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/project.ts -------------------------------------------------------------------------------- /standalone/src/quote-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/quote-request.ts -------------------------------------------------------------------------------- /standalone/src/quote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/quote.ts -------------------------------------------------------------------------------- /standalone/src/recurring-order.ts: -------------------------------------------------------------------------------- 1 | export * from './models/recurring-order'; 2 | -------------------------------------------------------------------------------- /standalone/src/review.ts: -------------------------------------------------------------------------------- 1 | export * from './models/review'; 2 | -------------------------------------------------------------------------------- /standalone/src/shipping-method.ts: -------------------------------------------------------------------------------- 1 | export * from './models/shipping-method'; 2 | -------------------------------------------------------------------------------- /standalone/src/shopping-list.ts: -------------------------------------------------------------------------------- 1 | export * from './models/shopping-list'; 2 | -------------------------------------------------------------------------------- /standalone/src/staged-quote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/staged-quote.ts -------------------------------------------------------------------------------- /standalone/src/standalone-price.ts: -------------------------------------------------------------------------------- 1 | export * from './models/standalone-price'; 2 | -------------------------------------------------------------------------------- /standalone/src/state.ts: -------------------------------------------------------------------------------- 1 | export * from './models/state'; 2 | -------------------------------------------------------------------------------- /standalone/src/store.ts: -------------------------------------------------------------------------------- 1 | export * from './models/store'; 2 | -------------------------------------------------------------------------------- /standalone/src/tax-category.ts: -------------------------------------------------------------------------------- 1 | export * from './models/tax-category'; 2 | -------------------------------------------------------------------------------- /standalone/src/type.ts: -------------------------------------------------------------------------------- 1 | export * from './models/type'; 2 | -------------------------------------------------------------------------------- /standalone/src/user.ts: -------------------------------------------------------------------------------- 1 | export * from './models/user'; 2 | -------------------------------------------------------------------------------- /standalone/src/utils/create-related-dates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/utils/create-related-dates.ts -------------------------------------------------------------------------------- /standalone/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/utils/index.ts -------------------------------------------------------------------------------- /standalone/src/utils/slugify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/utils/slugify.ts -------------------------------------------------------------------------------- /standalone/src/utils/test-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/src/utils/test-utils.ts -------------------------------------------------------------------------------- /standalone/src/zone.ts: -------------------------------------------------------------------------------- 1 | export * from './models/zone'; 2 | -------------------------------------------------------------------------------- /standalone/staged-quote/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/staged-quote/package.json -------------------------------------------------------------------------------- /standalone/standalone-price/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/standalone-price/package.json -------------------------------------------------------------------------------- /standalone/state/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/state/package.json -------------------------------------------------------------------------------- /standalone/store/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/store/package.json -------------------------------------------------------------------------------- /standalone/tax-category/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/tax-category/package.json -------------------------------------------------------------------------------- /standalone/type/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/type/package.json -------------------------------------------------------------------------------- /standalone/user/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/user/package.json -------------------------------------------------------------------------------- /standalone/utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/utils/package.json -------------------------------------------------------------------------------- /standalone/zone/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/standalone/zone/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types-post-processor.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commercetools/test-data/HEAD/types-post-processor.mjs --------------------------------------------------------------------------------