├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── issue_template.md └── pull_request_template.md ├── CONTRIBUTING.md ├── Gruntfile.js ├── SUPPORT.md ├── apigen.neon ├── assets ├── css │ ├── admin │ │ ├── chosen │ │ │ ├── _base.scss │ │ │ ├── _colors.scss │ │ │ ├── _edd.scss │ │ │ ├── _multi.scss │ │ │ ├── _results.scss │ │ │ ├── _single.scss │ │ │ └── style.scss │ │ ├── customers │ │ │ ├── _details.scss │ │ │ └── style.scss │ │ ├── dashboard │ │ │ ├── _widget.scss │ │ │ └── style.scss │ │ ├── datepicker.scss │ │ ├── discounts │ │ │ ├── _add-edit.scss │ │ │ ├── _list-table.scss │ │ │ └── style.scss │ │ ├── downloads │ │ │ ├── _actions.scss │ │ │ ├── _duplicate.scss │ │ │ ├── _prices.scss │ │ │ ├── _product-files.scss │ │ │ ├── _repeatable_row.scss │ │ │ ├── _sections.scss │ │ │ ├── _settings.scss │ │ │ ├── _upload.scss │ │ │ └── style.scss │ │ ├── email-tags.scss │ │ ├── emails │ │ │ ├── _editor.scss │ │ │ ├── _logs.scss │ │ │ ├── _promo.scss │ │ │ ├── _table.scss │ │ │ └── style.scss │ │ ├── extension-manager.scss │ │ ├── extensions │ │ │ ├── _bar.scss │ │ │ ├── _body.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _features.scss │ │ │ ├── _group.scss │ │ │ ├── _images.scss │ │ │ ├── _installer.scss │ │ │ ├── _key.scss │ │ │ ├── _overlay.scss │ │ │ ├── _recommended.scss │ │ │ ├── _steps.scss │ │ │ ├── _variations.scss │ │ │ └── style.scss │ │ ├── forms │ │ │ ├── _form-fields.scss │ │ │ ├── _form-group.scss │ │ │ ├── _form-row.scss │ │ │ ├── _general.scss │ │ │ ├── _multicheck.scss │ │ │ ├── _select.scss │ │ │ └── style.scss │ │ ├── gateways │ │ │ ├── square.scss │ │ │ ├── stripe.scss │ │ │ └── style.scss │ │ ├── general │ │ │ ├── _admin.scss │ │ │ ├── _dialog.scss │ │ │ ├── _elements.scss │ │ │ ├── _grid.scss │ │ │ ├── _help-tip.scss │ │ │ ├── _item-header.scss │ │ │ ├── _item-tab-wrapper.scss │ │ │ ├── _progress-bar.scss │ │ │ ├── _sortable.scss │ │ │ ├── _status-badge.scss │ │ │ ├── _upgrade.scss │ │ │ └── style.scss │ │ ├── menu.scss │ │ ├── notifications │ │ │ └── style.scss │ │ ├── onboarding │ │ │ └── style.scss │ │ ├── orders │ │ │ ├── _customer.scss │ │ │ ├── _refunds-modal.scss │ │ │ └── style.scss │ │ ├── pass-handler.scss │ │ ├── pointers │ │ │ └── style.scss │ │ ├── promos │ │ │ ├── _about.scss │ │ │ ├── _flyout.scss │ │ │ ├── _overlay.scss │ │ │ ├── _popup.scss │ │ │ └── style.scss │ │ ├── reports │ │ │ ├── _export.scss │ │ │ ├── _filter.scss │ │ │ ├── _layout.scss │ │ │ ├── _mobile-link.scss │ │ │ ├── _tiles.scss │ │ │ ├── _to-from.scss │ │ │ ├── _tooltip.scss │ │ │ └── style.scss │ │ ├── sections │ │ │ ├── _dynamic.scss │ │ │ ├── _id.scss │ │ │ ├── _vertical.scss │ │ │ └── style.scss │ │ ├── settings │ │ │ ├── _gateways.scss │ │ │ ├── _licenses.scss │ │ │ ├── _subnav.scss │ │ │ └── style.scss │ │ ├── style.scss │ │ ├── tax-rates │ │ │ ├── _add.scss │ │ │ ├── _base.scss │ │ │ └── style.scss │ │ ├── tools │ │ │ └── style.scss │ │ └── upgrades │ │ │ └── _v3.scss │ ├── chosen-rtl.min.css │ ├── chosen.min.css │ ├── components │ │ ├── admin-nav.scss │ │ ├── editor-form.scss │ │ ├── editor-header.scss │ │ ├── toggle-button.scss │ │ └── toggle-checkbox.scss │ ├── edd-admin-chosen-rtl.min.css │ ├── edd-admin-chosen.min.css │ ├── edd-admin-datepicker-rtl.min.css │ ├── edd-admin-datepicker.min.css │ ├── edd-admin-email-tags-rtl.min.css │ ├── edd-admin-email-tags.min.css │ ├── edd-admin-emails-rtl.min.css │ ├── edd-admin-emails.min.css │ ├── edd-admin-extension-manager-rtl.min.css │ ├── edd-admin-extension-manager.min.css │ ├── edd-admin-menu-rtl.min.css │ ├── edd-admin-menu.min.css │ ├── edd-admin-notifications-rtl.min.css │ ├── edd-admin-notifications.min.css │ ├── edd-admin-onboarding-rtl.min.css │ ├── edd-admin-onboarding.min.css │ ├── edd-admin-pass-handler-rtl.min.css │ ├── edd-admin-pass-handler.min.css │ ├── edd-admin-pointers-rtl.min.css │ ├── edd-admin-pointers.min.css │ ├── edd-admin-rtl.min.css │ ├── edd-admin-tax-rates-rtl.min.css │ ├── edd-admin-tax-rates.min.css │ ├── edd-admin.min.css │ ├── edd-rtl.min.css │ ├── edd.min.css │ ├── frontend │ │ ├── checkout │ │ │ ├── _cart.scss │ │ │ ├── _form.scss │ │ │ ├── _vat.scss │ │ │ └── style.scss │ │ ├── gateways │ │ │ └── square.scss │ │ ├── stripe │ │ │ ├── card-elements.scss │ │ │ ├── frontend │ │ │ │ ├── modal.scss │ │ │ │ ├── payment-request-button.scss │ │ │ │ └── shared.scss │ │ │ └── payment-elements.scss │ │ └── style.scss │ ├── jquery-ui-fresh-rtl.min.css │ ├── jquery-ui-fresh.min.css │ ├── square-admin-rtl.min.css │ ├── square-admin.min.css │ ├── square-checkout-rtl.min.css │ ├── square-checkout.min.css │ ├── stripe-admin-rtl.min.css │ ├── stripe-admin.min.css │ ├── stripe-cardelements-rtl.min.css │ ├── stripe-cardelements.min.css │ ├── stripe-paymentelements-rtl.min.css │ ├── stripe-paymentelements.min.css │ ├── variables │ │ ├── _animations.scss │ │ ├── _colors.scss │ │ ├── _icons.scss │ │ └── _mixins.scss │ └── vendor │ │ ├── chosen-rtl.min.css │ │ ├── chosen.min.css │ │ ├── jquery-ui-fresh-rtl.min.css │ │ └── jquery-ui-fresh.min.css ├── images │ ├── admin-flyout-menu │ │ ├── edd-active.svg │ │ └── edd-default.svg │ ├── edd-cpt-2x.png │ ├── edd-cpt.png │ ├── edd-cross-hair.png │ ├── edd-icon-2x.png │ ├── edd-icon.png │ ├── edd-logo-pdf.png │ ├── edd-logo-white-2x.png │ ├── edd-logo.png │ ├── edd-logo.svg │ ├── edd-media.png │ ├── edd-peeking.png │ ├── icons │ │ ├── edd-blue-checkmark.svg │ │ ├── icon-arrow-down.png │ │ ├── icon-arrow-up.png │ │ ├── icon-automate.svg │ │ ├── icon-average.png │ │ ├── icon-bundle.svg │ │ ├── icon-chevron-down.svg │ │ ├── icon-edd-heart.svg │ │ ├── icon-email-marketing.svg │ │ ├── icon-gateways.svg │ │ ├── icon-gross.png │ │ ├── icon-install.svg │ │ ├── icon-lead-magnets.svg │ │ ├── icon-megaphone.png │ │ ├── icon-net.png │ │ ├── icon-new-customers.png │ │ ├── icon-settings.svg │ │ ├── icon-smiley.svg │ │ ├── icon-subscriptions.svg │ │ ├── icon-top-products.png │ │ └── iphone.png │ ├── loading.gif │ ├── logo-edd-dark.svg │ ├── media-button.png │ ├── onboarding │ │ ├── bob.jpg │ │ ├── joe.jpg │ │ ├── nicolas.jpg │ │ └── stripe-logo.svg │ ├── promo │ │ ├── about │ │ │ ├── configuring-caching.svg │ │ │ ├── getting-started-welcome.svg │ │ │ ├── how-to-install-activate.svg │ │ │ ├── introduction-to-edd.svg │ │ │ └── using-edd-blocks.svg │ │ ├── am-team.jpg │ │ ├── bfcm-header.svg │ │ ├── brands │ │ │ ├── plugin-affwp.png │ │ │ ├── plugin-aioseo.png │ │ │ ├── plugin-charitable.png │ │ │ ├── plugin-duplicator.png │ │ │ ├── plugin-edd.png │ │ │ ├── plugin-mi.png │ │ │ ├── plugin-om.png │ │ │ ├── plugin-pushengage.png │ │ │ ├── plugin-rp.png │ │ │ ├── plugin-sb-fb.png │ │ │ ├── plugin-sb-instagram.png │ │ │ ├── plugin-sb-twitter.png │ │ │ ├── plugin-sb-youtube.png │ │ │ ├── plugin-searchwp.png │ │ │ ├── plugin-seedprod.png │ │ │ ├── plugin-smtp.png │ │ │ ├── plugin-sugarcalendar.png │ │ │ ├── plugin-trustpulse.png │ │ │ ├── plugin-wp-simple-pay.png │ │ │ ├── plugin-wpcode.png │ │ │ └── plugin-wpf.png │ │ ├── edd-25-percent-off.png │ │ ├── featured-downloads-styling.png │ │ ├── icon-full.svg │ │ ├── icon-none.svg │ │ └── icon-partial.svg │ ├── screenshots │ │ ├── 17checkout.png │ │ ├── 17direct.png │ │ ├── 17quantities.png │ │ ├── 18-button-colors.png │ │ ├── 18cart-saving.png │ │ ├── 20-discount.png │ │ ├── 20-register-login.png │ │ ├── 20-sequential.png │ │ ├── 20-unlimited-downloads.png │ │ ├── 22-logs.png │ │ ├── 22-purchased-downloads.png │ │ ├── 22-purchased-downloads2.png │ │ ├── 22-quantity.png │ │ ├── 24-category-earnings.png │ │ ├── 24-checkout.png │ │ ├── 24-export.png │ │ ├── 26-customer.png │ │ ├── 26-import.png │ │ ├── 26-refund.png │ │ ├── bundles.png │ │ ├── customer-ui.png │ │ ├── edit-download.png │ │ ├── email-template-21.png │ │ ├── grid.png │ │ ├── order-details.png │ │ ├── product-earnings.png │ │ ├── product-tax.png │ │ ├── purchase-link.png │ │ └── tax-rates.png │ ├── ui-icons_21759b_256x240.png │ ├── ui-icons_333333_256x240.png │ ├── ui-icons_999999_256x240.png │ ├── ui-icons_cc0000_256x240.png │ └── xit.gif ├── js │ ├── admin │ │ ├── components │ │ │ ├── advanced-filters │ │ │ │ └── index.js │ │ │ ├── chosen │ │ │ │ └── index.js │ │ │ ├── conditionals │ │ │ │ ├── index.js │ │ │ │ └── requirements.js │ │ │ ├── date-picker │ │ │ │ └── index.js │ │ │ ├── dialog │ │ │ │ └── index.js │ │ │ ├── forms │ │ │ │ ├── amount-type-handler.js │ │ │ │ └── index.js │ │ │ ├── location │ │ │ │ └── index.js │ │ │ ├── navigation │ │ │ │ └── index.js │ │ │ ├── promos │ │ │ │ └── index.js │ │ │ ├── range-slider │ │ │ │ └── index.js │ │ │ ├── settings │ │ │ │ └── toggles.js │ │ │ ├── sortable-list │ │ │ │ └── index.js │ │ │ ├── taxonomies │ │ │ │ └── index.js │ │ │ ├── tooltips │ │ │ │ └── index.js │ │ │ ├── user-search │ │ │ │ └── index.js │ │ │ └── vertical-sections │ │ │ │ └── index.js │ │ ├── customers │ │ │ └── index.js │ │ ├── dashboard │ │ │ └── index.js │ │ ├── discounts │ │ │ ├── generator.js │ │ │ └── index.js │ │ ├── downloads │ │ │ ├── bulk-edit.js │ │ │ ├── copy.js │ │ │ ├── editor.js │ │ │ ├── files.js │ │ │ ├── index.js │ │ │ ├── move.js │ │ │ ├── pricing.js │ │ │ ├── requirements.js │ │ │ └── supports.js │ │ ├── emails │ │ │ ├── editor │ │ │ │ ├── index.js │ │ │ │ ├── listener.js │ │ │ │ ├── recipient.js │ │ │ │ ├── reset.js │ │ │ │ └── submit.js │ │ │ └── list-table │ │ │ │ ├── index.js │ │ │ │ ├── list-table.js │ │ │ │ ├── new-email.js │ │ │ │ └── status.js │ │ ├── flyout │ │ │ └── index.js │ │ ├── gateways │ │ │ └── square.js │ │ ├── index.js │ │ ├── notes │ │ │ └── index.js │ │ ├── notices │ │ │ └── index.js │ │ ├── notifications │ │ │ └── index.js │ │ ├── onboarding │ │ │ └── index.js │ │ ├── orders │ │ │ ├── index.js │ │ │ ├── list-table.js │ │ │ ├── order-details │ │ │ │ ├── address.js │ │ │ │ ├── customer.js │ │ │ │ ├── index.js │ │ │ │ └── receipt.js │ │ │ └── order-overview │ │ │ │ ├── _refund.js │ │ │ │ ├── collections │ │ │ │ ├── order-adjustments.js │ │ │ │ ├── order-items.js │ │ │ │ └── order-refunds.js │ │ │ │ ├── index.js │ │ │ │ ├── models │ │ │ │ ├── order-adjustment-discount.js │ │ │ │ ├── order-adjustment.js │ │ │ │ ├── order-item.js │ │ │ │ ├── order-refund.js │ │ │ │ └── state.js │ │ │ │ └── views │ │ │ │ ├── actions.js │ │ │ │ ├── copy-download-link.js │ │ │ │ ├── form-add-order-adjustment.js │ │ │ │ ├── form-add-order-discount.js │ │ │ │ ├── form-add-order-item.js │ │ │ │ ├── no-order-items.js │ │ │ │ ├── order-adjustment.js │ │ │ │ ├── order-adjustments.js │ │ │ │ ├── order-credits.js │ │ │ │ ├── order-discounts-fees.js │ │ │ │ ├── order-item.js │ │ │ │ ├── order-items.js │ │ │ │ ├── order-refund.js │ │ │ │ ├── order-refunds.js │ │ │ │ ├── order-subtotal.js │ │ │ │ ├── order-tax.js │ │ │ │ ├── order-total.js │ │ │ │ ├── overview.js │ │ │ │ └── summary.js │ │ ├── payments │ │ │ └── index.js │ │ ├── pointers │ │ │ └── index.js │ │ ├── reports │ │ │ ├── charts │ │ │ │ ├── index.js │ │ │ │ ├── line.js │ │ │ │ ├── pie.js │ │ │ │ └── utils.js │ │ │ ├── formatting.js │ │ │ └── index.js │ │ ├── settings │ │ │ ├── email-tags │ │ │ │ ├── index.js │ │ │ │ └── utils.js │ │ │ ├── extension-manager │ │ │ │ └── index.js │ │ │ ├── gateways │ │ │ │ └── paypal.js │ │ │ ├── index.js │ │ │ ├── licensing │ │ │ │ └── index.js │ │ │ ├── pass-handler │ │ │ │ └── index.js │ │ │ ├── recapture │ │ │ │ └── index.js │ │ │ └── tax-rates │ │ │ │ ├── collections │ │ │ │ └── tax-rates.js │ │ │ │ ├── index.js │ │ │ │ ├── models │ │ │ │ └── tax-rate.js │ │ │ │ └── views │ │ │ │ ├── bulk-actions.js │ │ │ │ ├── form-add-tax-rate.js │ │ │ │ ├── manager.js │ │ │ │ ├── region-field.js │ │ │ │ ├── table-footer.js │ │ │ │ ├── table-meta.js │ │ │ │ ├── table-row-empty.js │ │ │ │ ├── table-row.js │ │ │ │ ├── table-rows.js │ │ │ │ └── table.js │ │ ├── square.js │ │ ├── stripe │ │ │ ├── index.js │ │ │ ├── notices.js │ │ │ └── settings │ │ │ │ ├── index.js │ │ │ │ ├── payment-methods.js │ │ │ │ ├── requirements.js │ │ │ │ └── stripe-connect.js │ │ ├── tools │ │ │ ├── export │ │ │ │ └── index.js │ │ │ ├── import │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── labs │ │ │ │ └── index.js │ │ └── upgrades │ │ │ ├── index.js │ │ │ └── v3 │ │ │ └── index.js │ ├── alpine.min.js │ ├── captcha │ │ ├── captcha.js │ │ ├── recaptcha-handler.js │ │ └── turnstile-handler.js │ ├── edd-admin-customers.js │ ├── edd-admin-dashboard.js │ ├── edd-admin-discounts.js │ ├── edd-admin-downloads-editor.js │ ├── edd-admin-downloads.js │ ├── edd-admin-email-tags.js │ ├── edd-admin-emails-editor.js │ ├── edd-admin-emails-list-table.js │ ├── edd-admin-extension-manager.js │ ├── edd-admin-flyout.js │ ├── edd-admin-licensing.js │ ├── edd-admin-notes.js │ ├── edd-admin-notices.js │ ├── edd-admin-notifications.js │ ├── edd-admin-onboarding.js │ ├── edd-admin-orders.js │ ├── edd-admin-orders.js.map │ ├── edd-admin-pass-handler.js │ ├── edd-admin-payments.js │ ├── edd-admin-pointers.js │ ├── edd-admin-reports.js │ ├── edd-admin-settings.js │ ├── edd-admin-tax-rates.js │ ├── edd-admin-tax-rates.js.map │ ├── edd-admin-tools-export.js │ ├── edd-admin-tools-import.js │ ├── edd-admin-tools-labs.js │ ├── edd-admin-tools.js │ ├── edd-admin-upgrades.js │ ├── edd-admin.js │ ├── edd-ajax.js │ ├── edd-checkout-global.js │ ├── edd-modal.js │ ├── frontend │ │ ├── checkout │ │ │ ├── components │ │ │ │ ├── agree-to-terms │ │ │ │ │ └── index.js │ │ │ │ └── email │ │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── utils.js │ │ ├── edd-ajax.js │ │ ├── edd-modal.js │ │ ├── gateways │ │ │ ├── paypal.js │ │ │ ├── square │ │ │ │ ├── index.js │ │ │ │ ├── process.js │ │ │ │ └── square.js │ │ │ └── stripe │ │ │ │ ├── card-elements │ │ │ │ ├── index.js │ │ │ │ ├── intents │ │ │ │ │ └── index.js │ │ │ │ ├── payment-forms │ │ │ │ │ ├── buy-now │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── checkout │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── payment-form.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── payment-receipt │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── payment-form.js │ │ │ │ │ ├── payment-request │ │ │ │ │ │ ├── checkout.js │ │ │ │ │ │ ├── download.js │ │ │ │ │ │ └── index.js │ │ │ │ │ └── profile-editor │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── payment-form.js │ │ │ │ │ │ └── payment-method-actions.js │ │ │ │ └── payment-methods │ │ │ │ │ └── index.js │ │ │ │ ├── loader │ │ │ │ ├── card-elements.js │ │ │ │ └── payment-elements.js │ │ │ │ ├── payment-elements │ │ │ │ ├── contexts │ │ │ │ │ ├── buy-now.js │ │ │ │ │ ├── checkout.js │ │ │ │ │ ├── checkout │ │ │ │ │ │ └── form.js │ │ │ │ │ └── index.js │ │ │ │ └── index.js │ │ │ │ └── shared │ │ │ │ ├── index.js │ │ │ │ └── modal │ │ │ │ └── index.js │ │ └── user-verification.js │ ├── jquery.validate.min.js │ ├── packages │ │ ├── currency │ │ │ ├── src │ │ │ │ ├── index.js │ │ │ │ └── number.js │ │ │ └── test │ │ │ │ └── index.js │ │ └── edd-backbone │ │ │ └── src │ │ │ ├── base.js │ │ │ └── dialog.js │ ├── paypal-checkout.js │ ├── square-admin.js │ ├── square-checkout.js │ ├── stripe-admin.js │ ├── stripe-cardelements.js │ ├── stripe-notices.js │ ├── stripe-paymentelements.js │ ├── user-verification.js │ ├── utils │ │ ├── api-request.js │ │ ├── chosen.js │ │ ├── debug.js │ │ ├── dom.js │ │ ├── form.js │ │ ├── globals.js │ │ ├── index.js │ │ ├── intl-tel-input.js │ │ ├── jquery.js │ │ ├── notice.js │ │ ├── polyfill-closest.js │ │ ├── polyfill-includes.js │ │ ├── polyfill-object-entries.js │ │ └── polyfill-remove.js │ ├── vendor │ │ ├── chartjs.min.js │ │ ├── chosen.jquery.min.js │ │ ├── intl-tel-input │ │ │ ├── css │ │ │ │ └── intlTelInput.min.css │ │ │ ├── img │ │ │ │ ├── flags.webp │ │ │ │ ├── flags@2x.webp │ │ │ │ └── globe@2x.webp │ │ │ └── js │ │ │ │ └── intlTelInput.min.js │ │ ├── jquery.creditcardvalidator.min.js │ │ ├── jquery.flot.min.js │ │ ├── jquery.flot.pie.min.js │ │ ├── jquery.flot.time.min.js │ │ ├── jquery.payment.min.js │ │ ├── moment-timezone.min.js │ │ └── moment.min.js │ └── wp-polyfill.min.js └── sample-products-import.xml ├── bin ├── check-actions.sh ├── compat │ └── vendor │ │ └── codedungeon │ │ └── phpunit-result-printer │ │ └── src │ │ ├── Printer.php │ │ └── PrinterTrait8.php ├── install-wp-tests.sh ├── run-phpcs.sh ├── run-phpstan.sh ├── run-tests-internal-only.sh └── run-tests-local.sh ├── composer.json ├── composer.lock ├── docker-compose-phpunit.yml ├── easy-digital-downloads.php ├── i18n ├── countries-eu.php ├── countries.php ├── states-bd.php ├── states-bj.php ├── states-es.php ├── states-gb-legacy.php ├── states-gb.php ├── states-in.php ├── states-it.php ├── states-jp.php ├── states-np.php ├── states-th.php ├── states-tr.php ├── states-us.php └── states.php ├── includes ├── EDD_SL_Plugin_Updater.php ├── actions.php ├── adjustments │ ├── functions.php │ └── meta.php ├── admin │ ├── adjustments │ │ └── adjustment-functions.php │ ├── admin-actions.php │ ├── admin-bar.php │ ├── admin-deprecated-functions.php │ ├── admin-footer.php │ ├── admin-pages.php │ ├── class-api-keys-table.php │ ├── class-edd-heartbeat.php │ ├── class-edd-notices.php │ ├── customers │ │ ├── class-customer-addresses-table.php │ │ ├── class-customer-email-addresses-table.php │ │ ├── class-customer-table.php │ │ ├── customer-actions.php │ │ ├── customer-functions.php │ │ └── customers.php │ ├── dashboard-widgets.php │ ├── discounts │ │ ├── contextual-help.php │ │ ├── discount-actions.php │ │ └── discount-codes.php │ ├── downloads │ │ ├── contextual-help.php │ │ ├── dashboard-columns.php │ │ ├── metabox.php │ │ └── views │ │ │ ├── metabox-bundled-products.php │ │ │ └── metabox-files.php │ ├── emails │ │ └── email-summary │ │ │ └── class-edd-email-summary-admin.php │ ├── import │ │ ├── class-batch-import-downloads.php │ │ ├── class-batch-import-payments.php │ │ ├── class-batch-import.php │ │ ├── import-actions.php │ │ └── import-functions.php │ ├── notes │ │ ├── note-actions.php │ │ └── note-functions.php │ ├── payments │ │ ├── actions.php │ │ ├── add-order.php │ │ ├── class-payments-table.php │ │ ├── contextual-help.php │ │ ├── orders.php │ │ ├── payments-history.php │ │ ├── refunds.php │ │ ├── view-order-details.php │ │ └── view-refund.php │ ├── plugins.php │ ├── promos │ │ └── email-summary │ │ │ └── blurbs.json │ ├── reporting │ │ ├── class-api-requests-logs-list-table.php │ │ ├── class-base-logs-list-table.php │ │ ├── class-batch-export.php │ │ ├── class-categories-reports-table.php │ │ ├── class-download-reports-table.php │ │ ├── class-edd-graph.php │ │ ├── class-edd-pie-graph.php │ │ ├── class-export-customers.php │ │ ├── class-export-download-history.php │ │ ├── class-export-payments.php │ │ ├── class-export.php │ │ ├── class-file-downloads-logs-list-table.php │ │ ├── class-gateway-error-logs-list-table.php │ │ ├── class-gateways-reports-table.php │ │ ├── class-sales-logs-list-table.php │ │ ├── contextual-help.php │ │ ├── export │ │ │ ├── export-actions.php │ │ │ └── export-functions.php │ │ ├── graphing.php │ │ ├── logs.php │ │ ├── reports-callbacks.php │ │ ├── reports.php │ │ └── views │ │ │ ├── export-api-requests.php │ │ │ ├── export-customers.php │ │ │ ├── export-download-history.php │ │ │ ├── export-downloads.php │ │ │ ├── export-earnings-report.php │ │ │ ├── export-orders.php │ │ │ ├── export-sales-earnings.php │ │ │ ├── export-sales.php │ │ │ ├── export-taxed-customers.php │ │ │ └── export-taxed-orders.php │ ├── settings │ │ ├── contextual-help.php │ │ ├── display-settings.php │ │ ├── register-settings.php │ │ └── settings-compatibility.php │ ├── thickbox.php │ ├── tools.php │ ├── tools │ │ ├── class-edd-tools-recount-all-stats.php │ │ ├── class-edd-tools-recount-customer-stats.php │ │ ├── class-edd-tools-recount-download-stats.php │ │ ├── class-edd-tools-recount-single-customer-stats.php │ │ ├── class-edd-tools-recount-store-earnings.php │ │ ├── class-edd-tools-reset-stats.php │ │ ├── logs.php │ │ └── tools-actions.php │ ├── upgrades │ │ ├── classes │ │ │ └── class-file-download-log-migration.php │ │ ├── deprecated-upgrade-functions.php │ │ ├── downgrades.php │ │ ├── upgrade-functions.php │ │ ├── upgrades.php │ │ └── v3 │ │ │ └── upgrade-actions.php │ ├── upload-functions.php │ └── views │ │ ├── email-editor │ │ ├── actions.php │ │ ├── content.php │ │ ├── editor.php │ │ ├── header.php │ │ ├── heading.php │ │ ├── hidden.php │ │ ├── legacy.php │ │ ├── recipient.php │ │ ├── sender.php │ │ ├── status.php │ │ └── subject.php │ │ ├── notifications.php │ │ ├── tmpl-order-actions.php │ │ ├── tmpl-order-adjustment-discount.php │ │ ├── tmpl-order-adjustment.php │ │ ├── tmpl-order-copy-download-link.php │ │ ├── tmpl-order-form-add-order-adjustment.php │ │ ├── tmpl-order-form-add-order-discount.php │ │ ├── tmpl-order-form-add-order-item.php │ │ ├── tmpl-order-item.php │ │ ├── tmpl-order-no-items.php │ │ ├── tmpl-order-refund.php │ │ ├── tmpl-order-subtotal.php │ │ ├── tmpl-order-tax.php │ │ ├── tmpl-order-total.php │ │ ├── tmpl-tax-rates-table-bulk-actions.php │ │ ├── tmpl-tax-rates-table-dialog.php │ │ ├── tmpl-tax-rates-table-footer.php │ │ ├── tmpl-tax-rates-table-meta.php │ │ ├── tmpl-tax-rates-table-row-empty.php │ │ └── tmpl-tax-rates-table-row.php ├── ajax-functions.php ├── api │ ├── class-edd-api-v1.php │ ├── class-edd-api-v2.php │ └── class-edd-api.php ├── blocks │ ├── assets │ │ ├── css │ │ │ └── edd-blocks.css │ │ ├── images │ │ │ ├── cart.svg │ │ │ └── remove.svg │ │ └── js │ │ │ ├── cart.js │ │ │ ├── checkout-forms.js │ │ │ └── term-image.js │ ├── build │ │ ├── buy-button │ │ │ ├── block.json │ │ │ ├── index.asset.php │ │ │ ├── index.css │ │ │ ├── index.js │ │ │ └── style-index.css │ │ ├── cart │ │ │ ├── block.json │ │ │ ├── index.asset.php │ │ │ ├── index.css │ │ │ ├── index.js │ │ │ └── style-index.css │ │ ├── checkout │ │ │ ├── block.json │ │ │ ├── index.asset.php │ │ │ ├── index.css │ │ │ ├── index.js │ │ │ └── style-index.css │ │ ├── confirmation │ │ │ ├── block.json │ │ │ ├── index.asset.php │ │ │ ├── index.css │ │ │ ├── index.js │ │ │ └── style-index.css │ │ ├── downloads │ │ │ ├── block.json │ │ │ ├── index.asset.php │ │ │ ├── index.css │ │ │ ├── index.js │ │ │ └── style-index.css │ │ ├── login │ │ │ ├── block.json │ │ │ ├── index.asset.php │ │ │ ├── index.css │ │ │ ├── index.js │ │ │ └── style-index.css │ │ ├── order-history │ │ │ ├── block.json │ │ │ ├── index.asset.php │ │ │ ├── index.css │ │ │ ├── index.js │ │ │ └── style-index.css │ │ ├── receipt │ │ │ ├── block.json │ │ │ ├── index.asset.php │ │ │ ├── index.css │ │ │ ├── index.js │ │ │ └── style-index.css │ │ ├── register │ │ │ ├── block.json │ │ │ ├── index.asset.php │ │ │ ├── index.css │ │ │ ├── index.js │ │ │ └── style-index.css │ │ ├── terms │ │ │ ├── block.json │ │ │ ├── index.asset.php │ │ │ ├── index.css │ │ │ ├── index.js │ │ │ └── style-index.css │ │ └── user-downloads │ │ │ ├── block.json │ │ │ ├── index.asset.php │ │ │ ├── index.css │ │ │ ├── index.js │ │ │ └── style-index.css │ ├── composer.json │ ├── edd-blocks.php │ ├── includes │ │ ├── admin │ │ │ ├── functions.php │ │ │ ├── notices.php │ │ │ ├── recaptcha.php │ │ │ ├── scripts.php │ │ │ └── settings.php │ │ ├── checkout │ │ │ ├── ajax.php │ │ │ ├── checkout.php │ │ │ ├── forms.php │ │ │ ├── functions.php │ │ │ └── gateways.php │ │ ├── downloads │ │ │ ├── downloads.php │ │ │ ├── query.php │ │ │ └── rest.php │ │ ├── forms │ │ │ ├── forms.php │ │ │ └── recaptcha.php │ │ ├── functions.php │ │ ├── orders │ │ │ ├── functions.php │ │ │ └── orders.php │ │ ├── styles.php │ │ └── terms │ │ │ ├── images.php │ │ │ ├── query.php │ │ │ └── terms.php │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── buy-button │ │ │ ├── block.json │ │ │ ├── edit.js │ │ │ ├── editor.scss │ │ │ ├── index.js │ │ │ └── style.scss │ │ ├── cart │ │ │ ├── block.json │ │ │ ├── edit.js │ │ │ ├── editor.scss │ │ │ ├── index.js │ │ │ └── style.scss │ │ ├── checkout │ │ │ ├── block.json │ │ │ ├── edit.js │ │ │ ├── editor.scss │ │ │ ├── index.js │ │ │ └── style.scss │ │ ├── confirmation │ │ │ ├── block.json │ │ │ ├── edit.js │ │ │ ├── editor.scss │ │ │ ├── index.js │ │ │ ├── save.js │ │ │ └── style.scss │ │ ├── downloads │ │ │ ├── block.json │ │ │ ├── edit.js │ │ │ ├── editor.scss │ │ │ ├── index.js │ │ │ └── style.scss │ │ ├── login │ │ │ ├── block.json │ │ │ ├── edit.js │ │ │ ├── editor.scss │ │ │ ├── index.js │ │ │ └── style.scss │ │ ├── order-history │ │ │ ├── block.json │ │ │ ├── edit.js │ │ │ ├── editor.scss │ │ │ ├── index.js │ │ │ └── style.scss │ │ ├── receipt │ │ │ ├── block.json │ │ │ ├── edit.js │ │ │ ├── editor.scss │ │ │ ├── index.js │ │ │ ├── save.js │ │ │ └── style.scss │ │ ├── register │ │ │ ├── block.json │ │ │ ├── edit.js │ │ │ ├── editor.scss │ │ │ ├── index.js │ │ │ └── style.scss │ │ ├── scss │ │ │ ├── _buttons.scss │ │ │ ├── _buy-button.scss │ │ │ ├── _cart.scss │ │ │ ├── _edit.scss │ │ │ ├── _forms.scss │ │ │ ├── _general.scss │ │ │ ├── _new-download.scss │ │ │ ├── _receipt.scss │ │ │ ├── _row.scss │ │ │ └── _search.scss │ │ ├── terms │ │ │ ├── block.json │ │ │ ├── edit.js │ │ │ ├── editor.scss │ │ │ ├── index.js │ │ │ └── style.scss │ │ ├── user-downloads │ │ │ ├── block.json │ │ │ ├── edit.js │ │ │ ├── editor.scss │ │ │ ├── index.js │ │ │ └── style.scss │ │ └── utilities │ │ │ ├── block-alignment.js │ │ │ ├── buy-button-alignment.js │ │ │ ├── download-content.js │ │ │ ├── download-image-location.js │ │ │ ├── download-new.js │ │ │ ├── download-order-by.js │ │ │ ├── download-taxonomies.js │ │ │ ├── download-terms.js │ │ │ ├── downloads.js │ │ │ ├── icons.js │ │ │ ├── image-alignment.js │ │ │ ├── image-size.js │ │ │ ├── no-orders-placeholder.js │ │ │ ├── order.js │ │ │ ├── query-args.js │ │ │ └── users.js │ └── views │ │ ├── checkout │ │ ├── cart │ │ │ ├── cart-discounts.php │ │ │ ├── cart-fees.php │ │ │ ├── cart-footer-row.php │ │ │ ├── cart-item.php │ │ │ ├── cart-subtotal.php │ │ │ ├── cart-taxes.php │ │ │ ├── cart-total.php │ │ │ ├── cart.php │ │ │ └── mini.php │ │ ├── discount.php │ │ ├── logged-in.php │ │ └── purchase-form │ │ │ ├── credit-card.php │ │ │ ├── gateways.php │ │ │ ├── logged-in.php │ │ │ ├── login.php │ │ │ ├── personal-info.php │ │ │ └── register.php │ │ ├── downloads │ │ ├── content.php │ │ ├── downloads.php │ │ ├── footer.php │ │ ├── header.php │ │ ├── image.php │ │ └── pagination.php │ │ ├── forms │ │ ├── login.php │ │ ├── lost-password.php │ │ ├── registration.php │ │ └── reset-password.php │ │ ├── orders │ │ ├── credits.php │ │ ├── discounts.php │ │ ├── downloads.php │ │ ├── fees.php │ │ ├── guest.php │ │ ├── orders.php │ │ ├── pagination.php │ │ ├── pending.php │ │ ├── receipt-files.php │ │ ├── receipt-item.php │ │ ├── receipt-items.php │ │ └── totals.php │ │ ├── search.php │ │ └── terms.php ├── cart │ ├── actions.php │ ├── class-edd-cart.php │ ├── functions.php │ └── template.php ├── checkout │ ├── functions.php │ ├── pages.php │ └── template.php ├── class-easy-digital-downloads.php ├── class-edd-cache-helper.php ├── class-edd-cli.php ├── class-edd-customer-query.php ├── class-edd-customer.php ├── class-edd-db.php ├── class-edd-discount.php ├── class-edd-download.php ├── class-edd-license-handler.php ├── class-edd-register-meta.php ├── class-edd-roles.php ├── class-edd-stats.php ├── compat-functions.php ├── compat │ └── class-edd-payment-compat.php ├── component-functions.php ├── country-functions.php ├── currency │ └── functions.php ├── customer-functions.php ├── customers │ └── customer-actions.php ├── date-functions.php ├── deprecated-functions.php ├── deprecated-hooks.php ├── deprecated │ └── classes.php ├── discount-functions.php ├── download-functions.php ├── downloads │ └── recalculations.php ├── emails │ ├── email-summary │ │ ├── class-edd-email-summary-blurb.php │ │ ├── class-edd-email-summary.php │ │ ├── edd-email-summary-template.php │ │ └── template-parts │ │ │ ├── data-listing.php │ │ │ ├── email-styles.php │ │ │ ├── fee-info.php │ │ │ ├── header.php │ │ │ ├── preview-text.php │ │ │ ├── pro-tips.php │ │ │ ├── site-info.php │ │ │ └── top-products.php │ ├── functions.php │ ├── recapture.php │ ├── tags-inserter.php │ ├── tags.php │ └── template.php ├── error-tracking.php ├── extensions │ └── licensing-functions.php ├── formatting.php ├── gateways │ ├── actions.php │ ├── amazon-payments.php │ ├── functions.php │ ├── libs │ │ └── amazon │ │ │ ├── Client.php │ │ │ ├── HttpCurl.php │ │ │ ├── Interface.php │ │ │ ├── IpnHandler.php │ │ │ └── ResponseParser.php │ ├── manual.php │ ├── paypal-standard.php │ ├── paypal │ │ ├── admin │ │ │ ├── connect.php │ │ │ ├── notices.php │ │ │ ├── scripts.php │ │ │ └── settings.php │ │ ├── buy-now.php │ │ ├── checkout-actions.php │ │ ├── deprecated.php │ │ ├── functions.php │ │ ├── gateway-filters.php │ │ ├── integrations.php │ │ ├── ipn.php │ │ ├── paypal.php │ │ ├── refunds.php │ │ ├── scripts.php │ │ └── webhooks │ │ │ └── functions.php │ └── stripe │ │ ├── apple-developer-merchantid-domain-association │ │ ├── edd-stripe.php │ │ └── includes │ │ ├── admin │ │ ├── admin-actions.php │ │ ├── admin-filters.php │ │ ├── class-notices-registry.php │ │ ├── class-notices.php │ │ ├── notices.php │ │ ├── notices │ │ │ ├── edd-recurring-requirement.php │ │ │ └── edd-stripe-core.php │ │ ├── settings.php │ │ ├── settings │ │ │ └── stripe-connect.php │ │ ├── site-health.php │ │ └── upgrade-functions.php │ │ ├── card-actions.php │ │ ├── class-edd-stripe-rate-limiting.php │ │ ├── class-edd-stripe.php │ │ ├── compat.php │ │ ├── deprecated.php │ │ ├── elements │ │ ├── card-elements.php │ │ ├── functions.php │ │ └── payment-elements.php │ │ ├── emails.php │ │ ├── functions.php │ │ ├── gateway-actions.php │ │ ├── gateway-filters.php │ │ ├── i18n.php │ │ ├── integrations │ │ ├── edd-all-access.php │ │ ├── edd-auto-register.php │ │ └── wp-cli.php │ │ ├── payment-actions │ │ ├── card-elements-actions.php │ │ ├── functions.php │ │ └── payment-elements-actions.php │ │ ├── payment-methods │ │ ├── apple-pay.php │ │ ├── buy-now │ │ │ ├── ajax.php │ │ │ ├── checkout.php │ │ │ ├── functions.php │ │ │ ├── index.php │ │ │ ├── shortcode.php │ │ │ └── template.php │ │ └── payment-request │ │ │ ├── admin │ │ │ └── settings.php │ │ │ ├── ajax.php │ │ │ ├── checkout.php │ │ │ ├── functions.php │ │ │ ├── index.php │ │ │ ├── shortcode.php │ │ │ └── template.php │ │ ├── payment-receipt.php │ │ ├── scripts.php │ │ ├── template-functions.php │ │ └── utils │ │ ├── class-edd-stripe-mandates.php │ │ ├── class-registry.php │ │ ├── exceptions │ │ ├── class-attribute-not-found.php │ │ ├── class-gateway-exception.php │ │ ├── class-stripe-api-unmet-requirements.php │ │ └── class-stripe-object-not-found.php │ │ ├── interface-static-registry.php │ │ ├── modal.php │ │ └── regional-support │ │ ├── class-edd-stripe-region-base.php │ │ └── class-edd-stripe-region-in.php ├── install.php ├── interface-edd-exception.php ├── libraries │ ├── array2xml.php │ ├── browser.php │ ├── class-ArrayToXML.php │ └── class-persistent-dismissible.php ├── logs │ ├── api-request-log │ │ ├── functions.php │ │ └── meta.php │ ├── file-download-log │ │ ├── functions.php │ │ └── meta.php │ ├── functions.php │ └── log │ │ ├── functions.php │ │ └── meta.php ├── mime-types.php ├── misc-functions.php ├── notes │ ├── functions.php │ └── meta.php ├── orders │ └── functions │ │ ├── actions.php │ │ ├── addresses.php │ │ ├── adjustments.php │ │ ├── disputes.php │ │ ├── items.php │ │ ├── meta.php │ │ ├── orders.php │ │ ├── refunds.php │ │ ├── statuses.php │ │ ├── transactions.php │ │ ├── transitions.php │ │ ├── types.php │ │ └── ui.php ├── payments │ ├── actions.php │ ├── class-edd-payment.php │ ├── class-payment-stats.php │ ├── class-payments-query.php │ └── functions.php ├── plugin-compatibility.php ├── post-types.php ├── privacy-functions.php ├── process-download.php ├── process-purchase.php ├── query-filters.php ├── refund-functions.php ├── reports │ └── reports-functions.php ├── scripts.php ├── shortcodes.php ├── taxes │ └── functions.php ├── template-actions.php ├── template-functions.php ├── theme-compatibility.php ├── traits │ └── trait-refundable-item.php ├── upgrades │ └── functions.php ├── user-functions.php ├── users │ ├── login.php │ ├── lost-password.php │ └── register.php ├── utils │ └── class-tokenizer.php └── widgets.php ├── languages ├── README.md ├── easy-digital-downloads.pot └── index.php ├── libraries ├── Carbon │ ├── Doctrine │ │ ├── CarbonDoctrineType.php │ │ ├── CarbonImmutableType.php │ │ ├── CarbonType.php │ │ ├── CarbonTypeConverter.php │ │ ├── DateTimeDefaultPrecision.php │ │ ├── DateTimeImmutableType.php │ │ └── DateTimeType.php │ ├── LICENSE │ ├── bin │ │ ├── carbon │ │ └── carbon.bat │ ├── composer.json │ ├── extension.neon │ ├── lazy │ │ └── Carbon │ │ │ ├── MessageFormatter │ │ │ ├── MessageFormatterMapperStrongType.php │ │ │ └── MessageFormatterMapperWeakType.php │ │ │ ├── PHPStan │ │ │ ├── AbstractMacroBuiltin.php │ │ │ ├── AbstractMacroStatic.php │ │ │ ├── MacroStrongType.php │ │ │ └── MacroWeakType.php │ │ │ ├── TranslatorStrongType.php │ │ │ └── TranslatorWeakType.php │ ├── readme.md │ ├── sponsors.php │ └── src │ │ └── Carbon │ │ ├── AbstractTranslator.php │ │ ├── Carbon.php │ │ ├── CarbonConverterInterface.php │ │ ├── CarbonImmutable.php │ │ ├── CarbonInterface.php │ │ ├── CarbonInterval.php │ │ ├── CarbonPeriod.php │ │ ├── CarbonPeriodImmutable.php │ │ ├── CarbonTimeZone.php │ │ ├── Cli │ │ └── Invoker.php │ │ ├── Exceptions │ │ ├── BadComparisonUnitException.php │ │ ├── BadFluentConstructorException.php │ │ ├── BadFluentSetterException.php │ │ ├── BadMethodCallException.php │ │ ├── EndLessPeriodException.php │ │ ├── Exception.php │ │ ├── ImmutableException.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidCastException.php │ │ ├── InvalidDateException.php │ │ ├── InvalidFormatException.php │ │ ├── InvalidIntervalException.php │ │ ├── InvalidPeriodDateException.php │ │ ├── InvalidPeriodParameterException.php │ │ ├── InvalidTimeZoneException.php │ │ ├── InvalidTypeException.php │ │ ├── NotACarbonClassException.php │ │ ├── NotAPeriodException.php │ │ ├── NotLocaleAwareException.php │ │ ├── OutOfRangeException.php │ │ ├── ParseErrorException.php │ │ ├── RuntimeException.php │ │ ├── UnitException.php │ │ ├── UnitNotConfiguredException.php │ │ ├── UnknownGetterException.php │ │ ├── UnknownMethodException.php │ │ ├── UnknownSetterException.php │ │ ├── UnknownUnitException.php │ │ └── UnreachableException.php │ │ ├── Factory.php │ │ ├── FactoryImmutable.php │ │ ├── Lang │ │ ├── aa.php │ │ ├── aa_DJ.php │ │ ├── aa_ER.php │ │ ├── aa_ER@saaho.php │ │ ├── aa_ET.php │ │ ├── af.php │ │ ├── af_NA.php │ │ ├── af_ZA.php │ │ ├── agq.php │ │ ├── agr.php │ │ ├── agr_PE.php │ │ ├── ak.php │ │ ├── ak_GH.php │ │ ├── am.php │ │ ├── am_ET.php │ │ ├── an.php │ │ ├── an_ES.php │ │ ├── anp.php │ │ ├── anp_IN.php │ │ ├── ar.php │ │ ├── ar_AE.php │ │ ├── ar_BH.php │ │ ├── ar_DJ.php │ │ ├── ar_DZ.php │ │ ├── ar_EG.php │ │ ├── ar_EH.php │ │ ├── ar_ER.php │ │ ├── ar_IL.php │ │ ├── ar_IN.php │ │ ├── ar_IQ.php │ │ ├── ar_JO.php │ │ ├── ar_KM.php │ │ ├── ar_KW.php │ │ ├── ar_LB.php │ │ ├── ar_LY.php │ │ ├── ar_MA.php │ │ ├── ar_MR.php │ │ ├── ar_OM.php │ │ ├── ar_PS.php │ │ ├── ar_QA.php │ │ ├── ar_SA.php │ │ ├── ar_SD.php │ │ ├── ar_SO.php │ │ ├── ar_SS.php │ │ ├── ar_SY.php │ │ ├── ar_Shakl.php │ │ ├── ar_TD.php │ │ ├── ar_TN.php │ │ ├── ar_YE.php │ │ ├── as.php │ │ ├── as_IN.php │ │ ├── asa.php │ │ ├── ast.php │ │ ├── ast_ES.php │ │ ├── ayc.php │ │ ├── ayc_PE.php │ │ ├── az.php │ │ ├── az_AZ.php │ │ ├── az_Cyrl.php │ │ ├── az_IR.php │ │ ├── az_Latn.php │ │ ├── bas.php │ │ ├── be.php │ │ ├── be_BY.php │ │ ├── be_BY@latin.php │ │ ├── bem.php │ │ ├── bem_ZM.php │ │ ├── ber.php │ │ ├── ber_DZ.php │ │ ├── ber_MA.php │ │ ├── bez.php │ │ ├── bg.php │ │ ├── bg_BG.php │ │ ├── bhb.php │ │ ├── bhb_IN.php │ │ ├── bho.php │ │ ├── bho_IN.php │ │ ├── bi.php │ │ ├── bi_VU.php │ │ ├── bm.php │ │ ├── bn.php │ │ ├── bn_BD.php │ │ ├── bn_IN.php │ │ ├── bo.php │ │ ├── bo_CN.php │ │ ├── bo_IN.php │ │ ├── br.php │ │ ├── br_FR.php │ │ ├── brx.php │ │ ├── brx_IN.php │ │ ├── bs.php │ │ ├── bs_BA.php │ │ ├── bs_Cyrl.php │ │ ├── bs_Latn.php │ │ ├── byn.php │ │ ├── byn_ER.php │ │ ├── ca.php │ │ ├── ca_AD.php │ │ ├── ca_ES.php │ │ ├── ca_ES_Valencia.php │ │ ├── ca_FR.php │ │ ├── ca_IT.php │ │ ├── ccp.php │ │ ├── ccp_IN.php │ │ ├── ce.php │ │ ├── ce_RU.php │ │ ├── cgg.php │ │ ├── chr.php │ │ ├── chr_US.php │ │ ├── ckb.php │ │ ├── cmn.php │ │ ├── cmn_TW.php │ │ ├── crh.php │ │ ├── crh_UA.php │ │ ├── cs.php │ │ ├── cs_CZ.php │ │ ├── csb.php │ │ ├── csb_PL.php │ │ ├── cu.php │ │ ├── cv.php │ │ ├── cv_RU.php │ │ ├── cy.php │ │ ├── cy_GB.php │ │ ├── da.php │ │ ├── da_DK.php │ │ ├── da_GL.php │ │ ├── dav.php │ │ ├── de.php │ │ ├── de_AT.php │ │ ├── de_BE.php │ │ ├── de_CH.php │ │ ├── de_DE.php │ │ ├── de_IT.php │ │ ├── de_LI.php │ │ ├── de_LU.php │ │ ├── dje.php │ │ ├── doi.php │ │ ├── doi_IN.php │ │ ├── dsb.php │ │ ├── dsb_DE.php │ │ ├── dua.php │ │ ├── dv.php │ │ ├── dv_MV.php │ │ ├── dyo.php │ │ ├── dz.php │ │ ├── dz_BT.php │ │ ├── ebu.php │ │ ├── ee.php │ │ ├── ee_TG.php │ │ ├── el.php │ │ ├── el_CY.php │ │ ├── el_GR.php │ │ ├── en.php │ │ ├── en_001.php │ │ ├── en_150.php │ │ ├── en_AG.php │ │ ├── en_AI.php │ │ ├── en_AS.php │ │ ├── en_AT.php │ │ ├── en_AU.php │ │ ├── en_BB.php │ │ ├── en_BE.php │ │ ├── en_BI.php │ │ ├── en_BM.php │ │ ├── en_BS.php │ │ ├── en_BW.php │ │ ├── en_BZ.php │ │ ├── en_CA.php │ │ ├── en_CC.php │ │ ├── en_CH.php │ │ ├── en_CK.php │ │ ├── en_CM.php │ │ ├── en_CX.php │ │ ├── en_CY.php │ │ ├── en_DE.php │ │ ├── en_DG.php │ │ ├── en_DK.php │ │ ├── en_DM.php │ │ ├── en_ER.php │ │ ├── en_FI.php │ │ ├── en_FJ.php │ │ ├── en_FK.php │ │ ├── en_FM.php │ │ ├── en_GB.php │ │ ├── en_GD.php │ │ ├── en_GG.php │ │ ├── en_GH.php │ │ ├── en_GI.php │ │ ├── en_GM.php │ │ ├── en_GU.php │ │ ├── en_GY.php │ │ ├── en_HK.php │ │ ├── en_IE.php │ │ ├── en_IL.php │ │ ├── en_IM.php │ │ ├── en_IN.php │ │ ├── en_IO.php │ │ ├── en_ISO.php │ │ ├── en_JE.php │ │ ├── en_JM.php │ │ ├── en_KE.php │ │ ├── en_KI.php │ │ ├── en_KN.php │ │ ├── en_KY.php │ │ ├── en_LC.php │ │ ├── en_LR.php │ │ ├── en_LS.php │ │ ├── en_MG.php │ │ ├── en_MH.php │ │ ├── en_MO.php │ │ ├── en_MP.php │ │ ├── en_MS.php │ │ ├── en_MT.php │ │ ├── en_MU.php │ │ ├── en_MW.php │ │ ├── en_MY.php │ │ ├── en_NA.php │ │ ├── en_NF.php │ │ ├── en_NG.php │ │ ├── en_NL.php │ │ ├── en_NR.php │ │ ├── en_NU.php │ │ ├── en_NZ.php │ │ ├── en_PG.php │ │ ├── en_PH.php │ │ ├── en_PK.php │ │ ├── en_PN.php │ │ ├── en_PR.php │ │ ├── en_PW.php │ │ ├── en_RW.php │ │ ├── en_SB.php │ │ ├── en_SC.php │ │ ├── en_SD.php │ │ ├── en_SE.php │ │ ├── en_SG.php │ │ ├── en_SH.php │ │ ├── en_SI.php │ │ ├── en_SL.php │ │ ├── en_SS.php │ │ ├── en_SX.php │ │ ├── en_SZ.php │ │ ├── en_TC.php │ │ ├── en_TK.php │ │ ├── en_TO.php │ │ ├── en_TT.php │ │ ├── en_TV.php │ │ ├── en_TZ.php │ │ ├── en_UG.php │ │ ├── en_UM.php │ │ ├── en_US.php │ │ ├── en_US_Posix.php │ │ ├── en_VC.php │ │ ├── en_VG.php │ │ ├── en_VI.php │ │ ├── en_VU.php │ │ ├── en_WS.php │ │ ├── en_ZA.php │ │ ├── en_ZM.php │ │ ├── en_ZW.php │ │ ├── eo.php │ │ ├── es.php │ │ ├── es_419.php │ │ ├── es_AR.php │ │ ├── es_BO.php │ │ ├── es_BR.php │ │ ├── es_BZ.php │ │ ├── es_CL.php │ │ ├── es_CO.php │ │ ├── es_CR.php │ │ ├── es_CU.php │ │ ├── es_DO.php │ │ ├── es_EA.php │ │ ├── es_EC.php │ │ ├── es_ES.php │ │ ├── es_GQ.php │ │ ├── es_GT.php │ │ ├── es_HN.php │ │ ├── es_IC.php │ │ ├── es_MX.php │ │ ├── es_NI.php │ │ ├── es_PA.php │ │ ├── es_PE.php │ │ ├── es_PH.php │ │ ├── es_PR.php │ │ ├── es_PY.php │ │ ├── es_SV.php │ │ ├── es_US.php │ │ ├── es_UY.php │ │ ├── es_VE.php │ │ ├── et.php │ │ ├── et_EE.php │ │ ├── eu.php │ │ ├── eu_ES.php │ │ ├── ewo.php │ │ ├── fa.php │ │ ├── fa_AF.php │ │ ├── fa_IR.php │ │ ├── ff.php │ │ ├── ff_CM.php │ │ ├── ff_GN.php │ │ ├── ff_MR.php │ │ ├── ff_SN.php │ │ ├── fi.php │ │ ├── fi_FI.php │ │ ├── fil.php │ │ ├── fil_PH.php │ │ ├── fo.php │ │ ├── fo_DK.php │ │ ├── fo_FO.php │ │ ├── fr.php │ │ ├── fr_BE.php │ │ ├── fr_BF.php │ │ ├── fr_BI.php │ │ ├── fr_BJ.php │ │ ├── fr_BL.php │ │ ├── fr_CA.php │ │ ├── fr_CD.php │ │ ├── fr_CF.php │ │ ├── fr_CG.php │ │ ├── fr_CH.php │ │ ├── fr_CI.php │ │ ├── fr_CM.php │ │ ├── fr_DJ.php │ │ ├── fr_DZ.php │ │ ├── fr_FR.php │ │ ├── fr_GA.php │ │ ├── fr_GF.php │ │ ├── fr_GN.php │ │ ├── fr_GP.php │ │ ├── fr_GQ.php │ │ ├── fr_HT.php │ │ ├── fr_KM.php │ │ ├── fr_LU.php │ │ ├── fr_MA.php │ │ ├── fr_MC.php │ │ ├── fr_MF.php │ │ ├── fr_MG.php │ │ ├── fr_ML.php │ │ ├── fr_MQ.php │ │ ├── fr_MR.php │ │ ├── fr_MU.php │ │ ├── fr_NC.php │ │ ├── fr_NE.php │ │ ├── fr_PF.php │ │ ├── fr_PM.php │ │ ├── fr_RE.php │ │ ├── fr_RW.php │ │ ├── fr_SC.php │ │ ├── fr_SN.php │ │ ├── fr_SY.php │ │ ├── fr_TD.php │ │ ├── fr_TG.php │ │ ├── fr_TN.php │ │ ├── fr_VU.php │ │ ├── fr_WF.php │ │ ├── fr_YT.php │ │ ├── fur.php │ │ ├── fur_IT.php │ │ ├── fy.php │ │ ├── fy_DE.php │ │ ├── fy_NL.php │ │ ├── ga.php │ │ ├── ga_IE.php │ │ ├── gd.php │ │ ├── gd_GB.php │ │ ├── gez.php │ │ ├── gez_ER.php │ │ ├── gez_ET.php │ │ ├── gl.php │ │ ├── gl_ES.php │ │ ├── gom.php │ │ ├── gom_Latn.php │ │ ├── gsw.php │ │ ├── gsw_CH.php │ │ ├── gsw_FR.php │ │ ├── gsw_LI.php │ │ ├── gu.php │ │ ├── gu_IN.php │ │ ├── guz.php │ │ ├── gv.php │ │ ├── gv_GB.php │ │ ├── ha.php │ │ ├── ha_GH.php │ │ ├── ha_NE.php │ │ ├── ha_NG.php │ │ ├── hak.php │ │ ├── hak_TW.php │ │ ├── haw.php │ │ ├── he.php │ │ ├── he_IL.php │ │ ├── hi.php │ │ ├── hi_IN.php │ │ ├── hif.php │ │ ├── hif_FJ.php │ │ ├── hne.php │ │ ├── hne_IN.php │ │ ├── hr.php │ │ ├── hr_BA.php │ │ ├── hr_HR.php │ │ ├── hsb.php │ │ ├── hsb_DE.php │ │ ├── ht.php │ │ ├── ht_HT.php │ │ ├── hu.php │ │ ├── hu_HU.php │ │ ├── hy.php │ │ ├── hy_AM.php │ │ ├── i18n.php │ │ ├── ia.php │ │ ├── ia_FR.php │ │ ├── id.php │ │ ├── id_ID.php │ │ ├── ig.php │ │ ├── ig_NG.php │ │ ├── ii.php │ │ ├── ik.php │ │ ├── ik_CA.php │ │ ├── in.php │ │ ├── is.php │ │ ├── is_IS.php │ │ ├── it.php │ │ ├── it_CH.php │ │ ├── it_IT.php │ │ ├── it_SM.php │ │ ├── it_VA.php │ │ ├── iu.php │ │ ├── iu_CA.php │ │ ├── iw.php │ │ ├── ja.php │ │ ├── ja_JP.php │ │ ├── jgo.php │ │ ├── jmc.php │ │ ├── jv.php │ │ ├── ka.php │ │ ├── ka_GE.php │ │ ├── kab.php │ │ ├── kab_DZ.php │ │ ├── kam.php │ │ ├── kde.php │ │ ├── kea.php │ │ ├── khq.php │ │ ├── ki.php │ │ ├── kk.php │ │ ├── kk_KZ.php │ │ ├── kkj.php │ │ ├── kl.php │ │ ├── kl_GL.php │ │ ├── kln.php │ │ ├── km.php │ │ ├── km_KH.php │ │ ├── kn.php │ │ ├── kn_IN.php │ │ ├── ko.php │ │ ├── ko_KP.php │ │ ├── ko_KR.php │ │ ├── kok.php │ │ ├── kok_IN.php │ │ ├── ks.php │ │ ├── ks_IN.php │ │ ├── ks_IN@devanagari.php │ │ ├── ksb.php │ │ ├── ksf.php │ │ ├── ksh.php │ │ ├── ku.php │ │ ├── ku_TR.php │ │ ├── kw.php │ │ ├── kw_GB.php │ │ ├── ky.php │ │ ├── ky_KG.php │ │ ├── lag.php │ │ ├── lb.php │ │ ├── lb_LU.php │ │ ├── lg.php │ │ ├── lg_UG.php │ │ ├── li.php │ │ ├── li_NL.php │ │ ├── lij.php │ │ ├── lij_IT.php │ │ ├── lkt.php │ │ ├── ln.php │ │ ├── ln_AO.php │ │ ├── ln_CD.php │ │ ├── ln_CF.php │ │ ├── ln_CG.php │ │ ├── lo.php │ │ ├── lo_LA.php │ │ ├── lrc.php │ │ ├── lrc_IQ.php │ │ ├── lt.php │ │ ├── lt_LT.php │ │ ├── lu.php │ │ ├── luo.php │ │ ├── luy.php │ │ ├── lv.php │ │ ├── lv_LV.php │ │ ├── lzh.php │ │ ├── lzh_TW.php │ │ ├── mag.php │ │ ├── mag_IN.php │ │ ├── mai.php │ │ ├── mai_IN.php │ │ ├── mas.php │ │ ├── mas_TZ.php │ │ ├── mer.php │ │ ├── mfe.php │ │ ├── mfe_MU.php │ │ ├── mg.php │ │ ├── mg_MG.php │ │ ├── mgh.php │ │ ├── mgo.php │ │ ├── mhr.php │ │ ├── mhr_RU.php │ │ ├── mi.php │ │ ├── mi_NZ.php │ │ ├── miq.php │ │ ├── miq_NI.php │ │ ├── mjw.php │ │ ├── mjw_IN.php │ │ ├── mk.php │ │ ├── mk_MK.php │ │ ├── ml.php │ │ ├── ml_IN.php │ │ ├── mn.php │ │ ├── mn_MN.php │ │ ├── mni.php │ │ ├── mni_IN.php │ │ ├── mo.php │ │ ├── mr.php │ │ ├── mr_IN.php │ │ ├── ms.php │ │ ├── ms_BN.php │ │ ├── ms_MY.php │ │ ├── ms_SG.php │ │ ├── mt.php │ │ ├── mt_MT.php │ │ ├── mua.php │ │ ├── my.php │ │ ├── my_MM.php │ │ ├── mzn.php │ │ ├── nan.php │ │ ├── nan_TW.php │ │ ├── nan_TW@latin.php │ │ ├── naq.php │ │ ├── nb.php │ │ ├── nb_NO.php │ │ ├── nb_SJ.php │ │ ├── nd.php │ │ ├── nds.php │ │ ├── nds_DE.php │ │ ├── nds_NL.php │ │ ├── ne.php │ │ ├── ne_IN.php │ │ ├── ne_NP.php │ │ ├── nhn.php │ │ ├── nhn_MX.php │ │ ├── niu.php │ │ ├── niu_NU.php │ │ ├── nl.php │ │ ├── nl_AW.php │ │ ├── nl_BE.php │ │ ├── nl_BQ.php │ │ ├── nl_CW.php │ │ ├── nl_NL.php │ │ ├── nl_SR.php │ │ ├── nl_SX.php │ │ ├── nmg.php │ │ ├── nn.php │ │ ├── nn_NO.php │ │ ├── nnh.php │ │ ├── no.php │ │ ├── nr.php │ │ ├── nr_ZA.php │ │ ├── nso.php │ │ ├── nso_ZA.php │ │ ├── nus.php │ │ ├── nyn.php │ │ ├── oc.php │ │ ├── oc_FR.php │ │ ├── om.php │ │ ├── om_ET.php │ │ ├── om_KE.php │ │ ├── or.php │ │ ├── or_IN.php │ │ ├── os.php │ │ ├── os_RU.php │ │ ├── pa.php │ │ ├── pa_Arab.php │ │ ├── pa_Guru.php │ │ ├── pa_IN.php │ │ ├── pa_PK.php │ │ ├── pap.php │ │ ├── pap_AW.php │ │ ├── pap_CW.php │ │ ├── pl.php │ │ ├── pl_PL.php │ │ ├── prg.php │ │ ├── ps.php │ │ ├── ps_AF.php │ │ ├── pt.php │ │ ├── pt_AO.php │ │ ├── pt_BR.php │ │ ├── pt_CH.php │ │ ├── pt_CV.php │ │ ├── pt_GQ.php │ │ ├── pt_GW.php │ │ ├── pt_LU.php │ │ ├── pt_MO.php │ │ ├── pt_MZ.php │ │ ├── pt_PT.php │ │ ├── pt_ST.php │ │ ├── pt_TL.php │ │ ├── qu.php │ │ ├── qu_BO.php │ │ ├── qu_EC.php │ │ ├── quz.php │ │ ├── quz_PE.php │ │ ├── raj.php │ │ ├── raj_IN.php │ │ ├── rm.php │ │ ├── rn.php │ │ ├── ro.php │ │ ├── ro_MD.php │ │ ├── ro_RO.php │ │ ├── rof.php │ │ ├── ru.php │ │ ├── ru_BY.php │ │ ├── ru_KG.php │ │ ├── ru_KZ.php │ │ ├── ru_MD.php │ │ ├── ru_RU.php │ │ ├── ru_UA.php │ │ ├── rw.php │ │ ├── rw_RW.php │ │ ├── rwk.php │ │ ├── sa.php │ │ ├── sa_IN.php │ │ ├── sah.php │ │ ├── sah_RU.php │ │ ├── saq.php │ │ ├── sat.php │ │ ├── sat_IN.php │ │ ├── sbp.php │ │ ├── sc.php │ │ ├── sc_IT.php │ │ ├── sd.php │ │ ├── sd_IN.php │ │ ├── sd_IN@devanagari.php │ │ ├── se.php │ │ ├── se_FI.php │ │ ├── se_NO.php │ │ ├── se_SE.php │ │ ├── seh.php │ │ ├── ses.php │ │ ├── sg.php │ │ ├── sgs.php │ │ ├── sgs_LT.php │ │ ├── sh.php │ │ ├── shi.php │ │ ├── shi_Latn.php │ │ ├── shi_Tfng.php │ │ ├── shn.php │ │ ├── shn_MM.php │ │ ├── shs.php │ │ ├── shs_CA.php │ │ ├── si.php │ │ ├── si_LK.php │ │ ├── sid.php │ │ ├── sid_ET.php │ │ ├── sk.php │ │ ├── sk_SK.php │ │ ├── sl.php │ │ ├── sl_SI.php │ │ ├── sm.php │ │ ├── sm_WS.php │ │ ├── smn.php │ │ ├── sn.php │ │ ├── so.php │ │ ├── so_DJ.php │ │ ├── so_ET.php │ │ ├── so_KE.php │ │ ├── so_SO.php │ │ ├── sq.php │ │ ├── sq_AL.php │ │ ├── sq_MK.php │ │ ├── sq_XK.php │ │ ├── sr.php │ │ ├── sr_Cyrl.php │ │ ├── sr_Cyrl_BA.php │ │ ├── sr_Cyrl_ME.php │ │ ├── sr_Cyrl_XK.php │ │ ├── sr_Latn.php │ │ ├── sr_Latn_BA.php │ │ ├── sr_Latn_ME.php │ │ ├── sr_Latn_XK.php │ │ ├── sr_ME.php │ │ ├── sr_RS.php │ │ ├── sr_RS@latin.php │ │ ├── ss.php │ │ ├── ss_ZA.php │ │ ├── st.php │ │ ├── st_ZA.php │ │ ├── sv.php │ │ ├── sv_AX.php │ │ ├── sv_FI.php │ │ ├── sv_SE.php │ │ ├── sw.php │ │ ├── sw_CD.php │ │ ├── sw_KE.php │ │ ├── sw_TZ.php │ │ ├── sw_UG.php │ │ ├── szl.php │ │ ├── szl_PL.php │ │ ├── ta.php │ │ ├── ta_IN.php │ │ ├── ta_LK.php │ │ ├── ta_MY.php │ │ ├── ta_SG.php │ │ ├── tcy.php │ │ ├── tcy_IN.php │ │ ├── te.php │ │ ├── te_IN.php │ │ ├── teo.php │ │ ├── teo_KE.php │ │ ├── tet.php │ │ ├── tg.php │ │ ├── tg_TJ.php │ │ ├── th.php │ │ ├── th_TH.php │ │ ├── the.php │ │ ├── the_NP.php │ │ ├── ti.php │ │ ├── ti_ER.php │ │ ├── ti_ET.php │ │ ├── tig.php │ │ ├── tig_ER.php │ │ ├── tk.php │ │ ├── tk_TM.php │ │ ├── tl.php │ │ ├── tl_PH.php │ │ ├── tlh.php │ │ ├── tn.php │ │ ├── tn_ZA.php │ │ ├── to.php │ │ ├── to_TO.php │ │ ├── tpi.php │ │ ├── tpi_PG.php │ │ ├── tr.php │ │ ├── tr_CY.php │ │ ├── tr_TR.php │ │ ├── ts.php │ │ ├── ts_ZA.php │ │ ├── tt.php │ │ ├── tt_RU.php │ │ ├── tt_RU@iqtelif.php │ │ ├── twq.php │ │ ├── tzl.php │ │ ├── tzm.php │ │ ├── tzm_Latn.php │ │ ├── ug.php │ │ ├── ug_CN.php │ │ ├── uk.php │ │ ├── uk_UA.php │ │ ├── unm.php │ │ ├── unm_US.php │ │ ├── ur.php │ │ ├── ur_IN.php │ │ ├── ur_PK.php │ │ ├── uz.php │ │ ├── uz_Arab.php │ │ ├── uz_Cyrl.php │ │ ├── uz_Latn.php │ │ ├── uz_UZ.php │ │ ├── uz_UZ@cyrillic.php │ │ ├── vai.php │ │ ├── vai_Latn.php │ │ ├── vai_Vaii.php │ │ ├── ve.php │ │ ├── ve_ZA.php │ │ ├── vi.php │ │ ├── vi_VN.php │ │ ├── vo.php │ │ ├── vun.php │ │ ├── wa.php │ │ ├── wa_BE.php │ │ ├── wae.php │ │ ├── wae_CH.php │ │ ├── wal.php │ │ ├── wal_ET.php │ │ ├── wo.php │ │ ├── wo_SN.php │ │ ├── xh.php │ │ ├── xh_ZA.php │ │ ├── xog.php │ │ ├── yav.php │ │ ├── yi.php │ │ ├── yi_US.php │ │ ├── yo.php │ │ ├── yo_BJ.php │ │ ├── yo_NG.php │ │ ├── yue.php │ │ ├── yue_HK.php │ │ ├── yue_Hans.php │ │ ├── yue_Hant.php │ │ ├── yuw.php │ │ ├── yuw_PG.php │ │ ├── zgh.php │ │ ├── zh.php │ │ ├── zh_CN.php │ │ ├── zh_HK.php │ │ ├── zh_Hans.php │ │ ├── zh_Hans_HK.php │ │ ├── zh_Hans_MO.php │ │ ├── zh_Hans_SG.php │ │ ├── zh_Hant.php │ │ ├── zh_Hant_HK.php │ │ ├── zh_Hant_MO.php │ │ ├── zh_Hant_TW.php │ │ ├── zh_MO.php │ │ ├── zh_SG.php │ │ ├── zh_TW.php │ │ ├── zh_YUE.php │ │ ├── zu.php │ │ └── zu_ZA.php │ │ ├── Language.php │ │ ├── Laravel │ │ └── ServiceProvider.php │ │ ├── List │ │ ├── languages.php │ │ └── regions.php │ │ ├── MessageFormatter │ │ └── MessageFormatterMapper.php │ │ ├── PHPStan │ │ ├── AbstractMacro.php │ │ ├── Macro.php │ │ ├── MacroExtension.php │ │ └── MacroScanner.php │ │ ├── Traits │ │ ├── Boundaries.php │ │ ├── Cast.php │ │ ├── Comparison.php │ │ ├── Converter.php │ │ ├── Creator.php │ │ ├── Date.php │ │ ├── DeprecatedProperties.php │ │ ├── Difference.php │ │ ├── IntervalRounding.php │ │ ├── IntervalStep.php │ │ ├── Localization.php │ │ ├── Macro.php │ │ ├── MagicParameter.php │ │ ├── Mixin.php │ │ ├── Modifiers.php │ │ ├── Mutability.php │ │ ├── ObjectInitialisation.php │ │ ├── Options.php │ │ ├── Rounding.php │ │ ├── Serialization.php │ │ ├── Test.php │ │ ├── Timestamp.php │ │ ├── ToStringFormat.php │ │ ├── Units.php │ │ └── Week.php │ │ ├── Translator.php │ │ ├── TranslatorImmutable.php │ │ └── TranslatorStrongTypeInterface.php ├── Core │ ├── ApiCall.php │ ├── Authentication │ │ ├── Auth.php │ │ └── CoreAuth.php │ ├── Client.php │ ├── ClientBuilder.php │ ├── Exceptions │ │ └── AuthValidationException.php │ ├── Logger │ │ ├── ApiLogger.php │ │ ├── Configuration │ │ │ ├── BaseHttpLoggingConfiguration.php │ │ │ ├── LoggingConfiguration.php │ │ │ ├── RequestConfiguration.php │ │ │ └── ResponseConfiguration.php │ │ ├── ConsoleLogger.php │ │ ├── LoggerConstants.php │ │ └── NullApiLogger.php │ ├── Request │ │ ├── Parameters │ │ │ ├── AdditionalFormParams.php │ │ │ ├── AdditionalHeaderParams.php │ │ │ ├── AdditionalQueryParams.php │ │ │ ├── BodyParam.php │ │ │ ├── EncodedParam.php │ │ │ ├── FormParam.php │ │ │ ├── HeaderParam.php │ │ │ ├── MultipleParams.php │ │ │ ├── Parameter.php │ │ │ ├── QueryParam.php │ │ │ └── TemplateParam.php │ │ ├── Request.php │ │ └── RequestBuilder.php │ ├── Response │ │ ├── Context.php │ │ ├── ResponseError.php │ │ ├── ResponseHandler.php │ │ └── Types │ │ │ ├── DeserializableType.php │ │ │ ├── ErrorType.php │ │ │ ├── ResponseMultiType.php │ │ │ └── ResponseType.php │ ├── TestCase │ │ ├── BodyMatchers │ │ │ ├── BodyComparator.php │ │ │ ├── BodyMatcher.php │ │ │ ├── KeysAndValuesBodyMatcher.php │ │ │ ├── KeysBodyMatcher.php │ │ │ ├── NativeBodyMatcher.php │ │ │ └── RawBodyMatcher.php │ │ ├── CoreTestCase.php │ │ ├── HeadersMatcher.php │ │ ├── StatusCodeMatcher.php │ │ └── TestParam.php │ ├── Types │ │ ├── CallbackCatcher.php │ │ └── Sdk │ │ │ ├── CoreApiResponse.php │ │ │ ├── CoreCallback.php │ │ │ ├── CoreContext.php │ │ │ ├── CoreFileWrapper.php │ │ │ ├── CoreRequest.php │ │ │ └── CoreResponse.php │ └── Utils │ │ ├── CoreHelper.php │ │ ├── DateHelper.php │ │ ├── JsonHelper.php │ │ ├── XmlDeserializer.php │ │ └── XmlSerializer.php ├── CoreInterfaces │ ├── Core │ │ ├── Authentication │ │ │ ├── AuthGroup.php │ │ │ └── AuthInterface.php │ │ ├── ContextInterface.php │ │ ├── Format.php │ │ ├── Logger │ │ │ └── ApiLoggerInterface.php │ │ ├── Request │ │ │ ├── NonEmptyParamInterface.php │ │ │ ├── ParamInterface.php │ │ │ ├── RequestArraySerialization.php │ │ │ ├── RequestInterface.php │ │ │ ├── RequestMethod.php │ │ │ ├── RequestSetterInterface.php │ │ │ └── TypeValidatorInterface.php │ │ └── Response │ │ │ └── ResponseInterface.php │ ├── Http │ │ ├── HttpClientInterface.php │ │ ├── HttpConfigurations.php │ │ └── RetryOption.php │ └── Sdk │ │ ├── ConverterInterface.php │ │ └── ExceptionInterface.php ├── Psr │ ├── Clock │ │ └── ClockInterface.php │ └── Log │ │ ├── AbstractLogger.php │ │ ├── InvalidArgumentException.php │ │ ├── LogLevel.php │ │ ├── LoggerAwareInterface.php │ │ ├── LoggerAwareTrait.php │ │ ├── LoggerInterface.php │ │ ├── LoggerTrait.php │ │ └── NullLogger.php ├── Rs │ └── Json │ │ ├── Pointer.php │ │ └── Pointer │ │ ├── InvalidJsonException.php │ │ ├── InvalidPointerException.php │ │ ├── NonWalkableJsonException.php │ │ └── NonexistentValueReferencedException.php ├── Square │ ├── ApiHelper.php │ ├── Apis │ │ ├── ApplePayApi.php │ │ ├── BankAccountsApi.php │ │ ├── BaseApi.php │ │ ├── BookingCustomAttributesApi.php │ │ ├── BookingsApi.php │ │ ├── CardsApi.php │ │ ├── CashDrawersApi.php │ │ ├── CatalogApi.php │ │ ├── CheckoutApi.php │ │ ├── CustomerCustomAttributesApi.php │ │ ├── CustomerGroupsApi.php │ │ ├── CustomerSegmentsApi.php │ │ ├── CustomersApi.php │ │ ├── DevicesApi.php │ │ ├── DisputesApi.php │ │ ├── EmployeesApi.php │ │ ├── EventsApi.php │ │ ├── GiftCardActivitiesApi.php │ │ ├── GiftCardsApi.php │ │ ├── InventoryApi.php │ │ ├── InvoicesApi.php │ │ ├── LaborApi.php │ │ ├── LocationCustomAttributesApi.php │ │ ├── LocationsApi.php │ │ ├── LoyaltyApi.php │ │ ├── MerchantCustomAttributesApi.php │ │ ├── MerchantsApi.php │ │ ├── MobileAuthorizationApi.php │ │ ├── OAuthApi.php │ │ ├── OrderCustomAttributesApi.php │ │ ├── OrdersApi.php │ │ ├── PaymentsApi.php │ │ ├── PayoutsApi.php │ │ ├── RefundsApi.php │ │ ├── SitesApi.php │ │ ├── SnippetsApi.php │ │ ├── SubscriptionsApi.php │ │ ├── TeamApi.php │ │ ├── TerminalApi.php │ │ ├── TransactionsApi.php │ │ ├── V1TransactionsApi.php │ │ ├── VendorsApi.php │ │ └── WebhookSubscriptionsApi.php │ ├── Authentication │ │ ├── BearerAuthCredentialsBuilder.php │ │ └── BearerAuthManager.php │ ├── BearerAuthCredentials.php │ ├── ConfigurationDefaults.php │ ├── ConfigurationInterface.php │ ├── Environment.php │ ├── Exceptions │ │ └── ApiException.php │ ├── Http │ │ ├── ApiResponse.php │ │ ├── HttpCallBack.php │ │ ├── HttpContext.php │ │ ├── HttpMethod.php │ │ ├── HttpRequest.php │ │ └── HttpResponse.php │ ├── Models │ │ ├── ACHDetails.php │ │ ├── AcceptDisputeResponse.php │ │ ├── AcceptedPaymentMethods.php │ │ ├── AccumulateLoyaltyPointsRequest.php │ │ ├── AccumulateLoyaltyPointsResponse.php │ │ ├── ActionCancelReason.php │ │ ├── ActivityType.php │ │ ├── AddGroupToCustomerResponse.php │ │ ├── AdditionalRecipient.php │ │ ├── Address.php │ │ ├── AdjustLoyaltyPointsRequest.php │ │ ├── AdjustLoyaltyPointsResponse.php │ │ ├── AfterpayDetails.php │ │ ├── ApplicationDetails.php │ │ ├── ApplicationDetailsExternalSquareProduct.php │ │ ├── ApplicationType.php │ │ ├── AppointmentSegment.php │ │ ├── ArchivedState.php │ │ ├── Availability.php │ │ ├── BankAccount.php │ │ ├── BankAccountPaymentDetails.php │ │ ├── BankAccountStatus.php │ │ ├── BankAccountType.php │ │ ├── BatchChangeInventoryRequest.php │ │ ├── BatchChangeInventoryResponse.php │ │ ├── BatchDeleteCatalogObjectsRequest.php │ │ ├── BatchDeleteCatalogObjectsResponse.php │ │ ├── BatchRetrieveCatalogObjectsRequest.php │ │ ├── BatchRetrieveCatalogObjectsResponse.php │ │ ├── BatchRetrieveInventoryChangesRequest.php │ │ ├── BatchRetrieveInventoryChangesResponse.php │ │ ├── BatchRetrieveInventoryCountsRequest.php │ │ ├── BatchRetrieveInventoryCountsResponse.php │ │ ├── BatchRetrieveOrdersRequest.php │ │ ├── BatchRetrieveOrdersResponse.php │ │ ├── BatchUpsertCatalogObjectsRequest.php │ │ ├── BatchUpsertCatalogObjectsResponse.php │ │ ├── Booking.php │ │ ├── BookingBookingSource.php │ │ ├── BookingCreatorDetails.php │ │ ├── BookingCreatorDetailsCreatorType.php │ │ ├── BookingCustomAttributeDeleteRequest.php │ │ ├── BookingCustomAttributeDeleteResponse.php │ │ ├── BookingCustomAttributeUpsertRequest.php │ │ ├── BookingCustomAttributeUpsertResponse.php │ │ ├── BookingStatus.php │ │ ├── BreakType.php │ │ ├── Builders │ │ │ ├── ACHDetailsBuilder.php │ │ │ ├── AcceptDisputeResponseBuilder.php │ │ │ ├── AcceptedPaymentMethodsBuilder.php │ │ │ ├── AccumulateLoyaltyPointsRequestBuilder.php │ │ │ ├── AccumulateLoyaltyPointsResponseBuilder.php │ │ │ ├── AddGroupToCustomerResponseBuilder.php │ │ │ ├── AdditionalRecipientBuilder.php │ │ │ ├── AddressBuilder.php │ │ │ ├── AdjustLoyaltyPointsRequestBuilder.php │ │ │ ├── AdjustLoyaltyPointsResponseBuilder.php │ │ │ ├── AfterpayDetailsBuilder.php │ │ │ ├── ApplicationDetailsBuilder.php │ │ │ ├── AppointmentSegmentBuilder.php │ │ │ ├── AvailabilityBuilder.php │ │ │ ├── BankAccountBuilder.php │ │ │ ├── BankAccountPaymentDetailsBuilder.php │ │ │ ├── BatchChangeInventoryRequestBuilder.php │ │ │ ├── BatchChangeInventoryResponseBuilder.php │ │ │ ├── BatchDeleteCatalogObjectsRequestBuilder.php │ │ │ ├── BatchDeleteCatalogObjectsResponseBuilder.php │ │ │ ├── BatchRetrieveCatalogObjectsRequestBuilder.php │ │ │ ├── BatchRetrieveCatalogObjectsResponseBuilder.php │ │ │ ├── BatchRetrieveInventoryChangesRequestBuilder.php │ │ │ ├── BatchRetrieveInventoryChangesResponseBuilder.php │ │ │ ├── BatchRetrieveInventoryCountsRequestBuilder.php │ │ │ ├── BatchRetrieveInventoryCountsResponseBuilder.php │ │ │ ├── BatchRetrieveOrdersRequestBuilder.php │ │ │ ├── BatchRetrieveOrdersResponseBuilder.php │ │ │ ├── BatchUpsertCatalogObjectsRequestBuilder.php │ │ │ ├── BatchUpsertCatalogObjectsResponseBuilder.php │ │ │ ├── BookingBuilder.php │ │ │ ├── BookingCreatorDetailsBuilder.php │ │ │ ├── BookingCustomAttributeDeleteRequestBuilder.php │ │ │ ├── BookingCustomAttributeDeleteResponseBuilder.php │ │ │ ├── BookingCustomAttributeUpsertRequestBuilder.php │ │ │ ├── BookingCustomAttributeUpsertResponseBuilder.php │ │ │ ├── BreakTypeBuilder.php │ │ │ ├── BulkCreateCustomerDataBuilder.php │ │ │ ├── BulkCreateCustomersRequestBuilder.php │ │ │ ├── BulkCreateCustomersResponseBuilder.php │ │ │ ├── BulkCreateTeamMembersRequestBuilder.php │ │ │ ├── BulkCreateTeamMembersResponseBuilder.php │ │ │ ├── BulkCreateVendorsRequestBuilder.php │ │ │ ├── BulkCreateVendorsResponseBuilder.php │ │ │ ├── BulkDeleteBookingCustomAttributesRequestBuilder.php │ │ │ ├── BulkDeleteBookingCustomAttributesResponseBuilder.php │ │ │ ├── BulkDeleteCustomersRequestBuilder.php │ │ │ ├── BulkDeleteCustomersResponseBuilder.php │ │ │ ├── BulkDeleteLocationCustomAttributesRequestBuilder.php │ │ │ ├── BulkDeleteLocationCustomAttributesRequestLocationCustomAttributeDeleteRequestBuilder.php │ │ │ ├── BulkDeleteLocationCustomAttributesResponseBuilder.php │ │ │ ├── BulkDeleteLocationCustomAttributesResponseLocationCustomAttributeDeleteResponseBuilder.php │ │ │ ├── BulkDeleteMerchantCustomAttributesRequestBuilder.php │ │ │ ├── BulkDeleteMerchantCustomAttributesRequestMerchantCustomAttributeDeleteRequestBuilder.php │ │ │ ├── BulkDeleteMerchantCustomAttributesResponseBuilder.php │ │ │ ├── BulkDeleteMerchantCustomAttributesResponseMerchantCustomAttributeDeleteResponseBuilder.php │ │ │ ├── BulkDeleteOrderCustomAttributesRequestBuilder.php │ │ │ ├── BulkDeleteOrderCustomAttributesRequestDeleteCustomAttributeBuilder.php │ │ │ ├── BulkDeleteOrderCustomAttributesResponseBuilder.php │ │ │ ├── BulkRetrieveBookingsRequestBuilder.php │ │ │ ├── BulkRetrieveBookingsResponseBuilder.php │ │ │ ├── BulkRetrieveCustomersRequestBuilder.php │ │ │ ├── BulkRetrieveCustomersResponseBuilder.php │ │ │ ├── BulkRetrieveTeamMemberBookingProfilesRequestBuilder.php │ │ │ ├── BulkRetrieveTeamMemberBookingProfilesResponseBuilder.php │ │ │ ├── BulkRetrieveVendorsRequestBuilder.php │ │ │ ├── BulkRetrieveVendorsResponseBuilder.php │ │ │ ├── BulkSwapPlanRequestBuilder.php │ │ │ ├── BulkSwapPlanResponseBuilder.php │ │ │ ├── BulkUpdateCustomerDataBuilder.php │ │ │ ├── BulkUpdateCustomersRequestBuilder.php │ │ │ ├── BulkUpdateCustomersResponseBuilder.php │ │ │ ├── BulkUpdateTeamMembersRequestBuilder.php │ │ │ ├── BulkUpdateTeamMembersResponseBuilder.php │ │ │ ├── BulkUpdateVendorsRequestBuilder.php │ │ │ ├── BulkUpdateVendorsResponseBuilder.php │ │ │ ├── BulkUpsertBookingCustomAttributesRequestBuilder.php │ │ │ ├── BulkUpsertBookingCustomAttributesResponseBuilder.php │ │ │ ├── BulkUpsertCustomerCustomAttributesRequestBuilder.php │ │ │ ├── BulkUpsertCustomerCustomAttributesRequestCustomerCustomAttributeUpsertRequestBuilder.php │ │ │ ├── BulkUpsertCustomerCustomAttributesResponseBuilder.php │ │ │ ├── BulkUpsertCustomerCustomAttributesResponseCustomerCustomAttributeUpsertResponseBuilder.php │ │ │ ├── BulkUpsertLocationCustomAttributesRequestBuilder.php │ │ │ ├── BulkUpsertLocationCustomAttributesRequestLocationCustomAttributeUpsertRequestBuilder.php │ │ │ ├── BulkUpsertLocationCustomAttributesResponseBuilder.php │ │ │ ├── BulkUpsertLocationCustomAttributesResponseLocationCustomAttributeUpsertResponseBuilder.php │ │ │ ├── BulkUpsertMerchantCustomAttributesRequestBuilder.php │ │ │ ├── BulkUpsertMerchantCustomAttributesRequestMerchantCustomAttributeUpsertRequestBuilder.php │ │ │ ├── BulkUpsertMerchantCustomAttributesResponseBuilder.php │ │ │ ├── BulkUpsertMerchantCustomAttributesResponseMerchantCustomAttributeUpsertResponseBuilder.php │ │ │ ├── BulkUpsertOrderCustomAttributesRequestBuilder.php │ │ │ ├── BulkUpsertOrderCustomAttributesRequestUpsertCustomAttributeBuilder.php │ │ │ ├── BulkUpsertOrderCustomAttributesResponseBuilder.php │ │ │ ├── BusinessAppointmentSettingsBuilder.php │ │ │ ├── BusinessBookingProfileBuilder.php │ │ │ ├── BusinessHoursBuilder.php │ │ │ ├── BusinessHoursPeriodBuilder.php │ │ │ ├── BuyNowPayLaterDetailsBuilder.php │ │ │ ├── CalculateLoyaltyPointsRequestBuilder.php │ │ │ ├── CalculateLoyaltyPointsResponseBuilder.php │ │ │ ├── CalculateOrderRequestBuilder.php │ │ │ ├── CalculateOrderResponseBuilder.php │ │ │ ├── CancelBookingRequestBuilder.php │ │ │ ├── CancelBookingResponseBuilder.php │ │ │ ├── CancelInvoiceRequestBuilder.php │ │ │ ├── CancelInvoiceResponseBuilder.php │ │ │ ├── CancelLoyaltyPromotionResponseBuilder.php │ │ │ ├── CancelPaymentByIdempotencyKeyRequestBuilder.php │ │ │ ├── CancelPaymentByIdempotencyKeyResponseBuilder.php │ │ │ ├── CancelPaymentResponseBuilder.php │ │ │ ├── CancelSubscriptionResponseBuilder.php │ │ │ ├── CancelTerminalActionResponseBuilder.php │ │ │ ├── CancelTerminalCheckoutResponseBuilder.php │ │ │ ├── CancelTerminalRefundResponseBuilder.php │ │ │ ├── CaptureTransactionResponseBuilder.php │ │ │ ├── CardBuilder.php │ │ │ ├── CardPaymentDetailsBuilder.php │ │ │ ├── CardPaymentTimelineBuilder.php │ │ │ ├── CashAppDetailsBuilder.php │ │ │ ├── CashDrawerDeviceBuilder.php │ │ │ ├── CashDrawerShiftBuilder.php │ │ │ ├── CashDrawerShiftEventBuilder.php │ │ │ ├── CashDrawerShiftSummaryBuilder.php │ │ │ ├── CashPaymentDetailsBuilder.php │ │ │ ├── CatalogAvailabilityPeriodBuilder.php │ │ │ ├── CatalogCategoryBuilder.php │ │ │ ├── CatalogCustomAttributeDefinitionBuilder.php │ │ │ ├── CatalogCustomAttributeDefinitionNumberConfigBuilder.php │ │ │ ├── CatalogCustomAttributeDefinitionSelectionConfigBuilder.php │ │ │ ├── CatalogCustomAttributeDefinitionSelectionConfigCustomAttributeSelectionBuilder.php │ │ │ ├── CatalogCustomAttributeDefinitionStringConfigBuilder.php │ │ │ ├── CatalogCustomAttributeValueBuilder.php │ │ │ ├── CatalogDiscountBuilder.php │ │ │ ├── CatalogEcomSeoDataBuilder.php │ │ │ ├── CatalogIdMappingBuilder.php │ │ │ ├── CatalogImageBuilder.php │ │ │ ├── CatalogInfoResponseBuilder.php │ │ │ ├── CatalogInfoResponseLimitsBuilder.php │ │ │ ├── CatalogItemBuilder.php │ │ │ ├── CatalogItemFoodAndBeverageDetailsBuilder.php │ │ │ ├── CatalogItemFoodAndBeverageDetailsDietaryPreferenceBuilder.php │ │ │ ├── CatalogItemFoodAndBeverageDetailsIngredientBuilder.php │ │ │ ├── CatalogItemModifierListInfoBuilder.php │ │ │ ├── CatalogItemOptionBuilder.php │ │ │ ├── CatalogItemOptionForItemBuilder.php │ │ │ ├── CatalogItemOptionValueBuilder.php │ │ │ ├── CatalogItemOptionValueForItemVariationBuilder.php │ │ │ ├── CatalogItemVariationBuilder.php │ │ │ ├── CatalogMeasurementUnitBuilder.php │ │ │ ├── CatalogModifierBuilder.php │ │ │ ├── CatalogModifierListBuilder.php │ │ │ ├── CatalogModifierOverrideBuilder.php │ │ │ ├── CatalogObjectBatchBuilder.php │ │ │ ├── CatalogObjectBuilder.php │ │ │ ├── CatalogObjectCategoryBuilder.php │ │ │ ├── CatalogObjectReferenceBuilder.php │ │ │ ├── CatalogPricingRuleBuilder.php │ │ │ ├── CatalogProductSetBuilder.php │ │ │ ├── CatalogQueryBuilder.php │ │ │ ├── CatalogQueryExactBuilder.php │ │ │ ├── CatalogQueryItemVariationsForItemOptionValuesBuilder.php │ │ │ ├── CatalogQueryItemsForItemOptionsBuilder.php │ │ │ ├── CatalogQueryItemsForModifierListBuilder.php │ │ │ ├── CatalogQueryItemsForTaxBuilder.php │ │ │ ├── CatalogQueryPrefixBuilder.php │ │ │ ├── CatalogQueryRangeBuilder.php │ │ │ ├── CatalogQuerySetBuilder.php │ │ │ ├── CatalogQuerySortedAttributeBuilder.php │ │ │ ├── CatalogQueryTextBuilder.php │ │ │ ├── CatalogQuickAmountBuilder.php │ │ │ ├── CatalogQuickAmountsSettingsBuilder.php │ │ │ ├── CatalogStockConversionBuilder.php │ │ │ ├── CatalogSubscriptionPlanBuilder.php │ │ │ ├── CatalogSubscriptionPlanVariationBuilder.php │ │ │ ├── CatalogTaxBuilder.php │ │ │ ├── CatalogTimePeriodBuilder.php │ │ │ ├── CatalogV1IdBuilder.php │ │ │ ├── CategoryPathToRootNodeBuilder.php │ │ │ ├── ChangeBillingAnchorDateRequestBuilder.php │ │ │ ├── ChangeBillingAnchorDateResponseBuilder.php │ │ │ ├── ChargeRequestAdditionalRecipientBuilder.php │ │ │ ├── ChargeRequestBuilder.php │ │ │ ├── ChargeResponseBuilder.php │ │ │ ├── CheckoutBuilder.php │ │ │ ├── CheckoutLocationSettingsBrandingBuilder.php │ │ │ ├── CheckoutLocationSettingsBuilder.php │ │ │ ├── CheckoutLocationSettingsCouponsBuilder.php │ │ │ ├── CheckoutLocationSettingsPolicyBuilder.php │ │ │ ├── CheckoutLocationSettingsTippingBuilder.php │ │ │ ├── CheckoutMerchantSettingsBuilder.php │ │ │ ├── CheckoutMerchantSettingsPaymentMethodsAfterpayClearpayBuilder.php │ │ │ ├── CheckoutMerchantSettingsPaymentMethodsAfterpayClearpayEligibilityRangeBuilder.php │ │ │ ├── CheckoutMerchantSettingsPaymentMethodsBuilder.php │ │ │ ├── CheckoutMerchantSettingsPaymentMethodsPaymentMethodBuilder.php │ │ │ ├── CheckoutOptionsBuilder.php │ │ │ ├── ClearpayDetailsBuilder.php │ │ │ ├── CloneOrderRequestBuilder.php │ │ │ ├── CloneOrderResponseBuilder.php │ │ │ ├── CollectedDataBuilder.php │ │ │ ├── CompletePaymentRequestBuilder.php │ │ │ ├── CompletePaymentResponseBuilder.php │ │ │ ├── ComponentBuilder.php │ │ │ ├── ConfirmationDecisionBuilder.php │ │ │ ├── ConfirmationOptionsBuilder.php │ │ │ ├── CoordinatesBuilder.php │ │ │ ├── CreateBookingCustomAttributeDefinitionRequestBuilder.php │ │ │ ├── CreateBookingCustomAttributeDefinitionResponseBuilder.php │ │ │ ├── CreateBookingRequestBuilder.php │ │ │ ├── CreateBookingResponseBuilder.php │ │ │ ├── CreateBreakTypeRequestBuilder.php │ │ │ ├── CreateBreakTypeResponseBuilder.php │ │ │ ├── CreateCardRequestBuilder.php │ │ │ ├── CreateCardResponseBuilder.php │ │ │ ├── CreateCatalogImageRequestBuilder.php │ │ │ ├── CreateCatalogImageResponseBuilder.php │ │ │ ├── CreateCheckoutRequestBuilder.php │ │ │ ├── CreateCheckoutResponseBuilder.php │ │ │ ├── CreateCustomerCardRequestBuilder.php │ │ │ ├── CreateCustomerCardResponseBuilder.php │ │ │ ├── CreateCustomerCustomAttributeDefinitionRequestBuilder.php │ │ │ ├── CreateCustomerCustomAttributeDefinitionResponseBuilder.php │ │ │ ├── CreateCustomerGroupRequestBuilder.php │ │ │ ├── CreateCustomerGroupResponseBuilder.php │ │ │ ├── CreateCustomerRequestBuilder.php │ │ │ ├── CreateCustomerResponseBuilder.php │ │ │ ├── CreateDeviceCodeRequestBuilder.php │ │ │ ├── CreateDeviceCodeResponseBuilder.php │ │ │ ├── CreateDisputeEvidenceFileRequestBuilder.php │ │ │ ├── CreateDisputeEvidenceFileResponseBuilder.php │ │ │ ├── CreateDisputeEvidenceTextRequestBuilder.php │ │ │ ├── CreateDisputeEvidenceTextResponseBuilder.php │ │ │ ├── CreateGiftCardActivityRequestBuilder.php │ │ │ ├── CreateGiftCardActivityResponseBuilder.php │ │ │ ├── CreateGiftCardRequestBuilder.php │ │ │ ├── CreateGiftCardResponseBuilder.php │ │ │ ├── CreateInvoiceAttachmentRequestBuilder.php │ │ │ ├── CreateInvoiceAttachmentResponseBuilder.php │ │ │ ├── CreateInvoiceRequestBuilder.php │ │ │ ├── CreateInvoiceResponseBuilder.php │ │ │ ├── CreateJobRequestBuilder.php │ │ │ ├── CreateJobResponseBuilder.php │ │ │ ├── CreateLocationCustomAttributeDefinitionRequestBuilder.php │ │ │ ├── CreateLocationCustomAttributeDefinitionResponseBuilder.php │ │ │ ├── CreateLocationRequestBuilder.php │ │ │ ├── CreateLocationResponseBuilder.php │ │ │ ├── CreateLoyaltyAccountRequestBuilder.php │ │ │ ├── CreateLoyaltyAccountResponseBuilder.php │ │ │ ├── CreateLoyaltyPromotionRequestBuilder.php │ │ │ ├── CreateLoyaltyPromotionResponseBuilder.php │ │ │ ├── CreateLoyaltyRewardRequestBuilder.php │ │ │ ├── CreateLoyaltyRewardResponseBuilder.php │ │ │ ├── CreateMerchantCustomAttributeDefinitionRequestBuilder.php │ │ │ ├── CreateMerchantCustomAttributeDefinitionResponseBuilder.php │ │ │ ├── CreateMobileAuthorizationCodeRequestBuilder.php │ │ │ ├── CreateMobileAuthorizationCodeResponseBuilder.php │ │ │ ├── CreateOrderCustomAttributeDefinitionRequestBuilder.php │ │ │ ├── CreateOrderCustomAttributeDefinitionResponseBuilder.php │ │ │ ├── CreateOrderRequestBuilder.php │ │ │ ├── CreateOrderResponseBuilder.php │ │ │ ├── CreatePaymentLinkRequestBuilder.php │ │ │ ├── CreatePaymentLinkResponseBuilder.php │ │ │ ├── CreatePaymentRequestBuilder.php │ │ │ ├── CreatePaymentResponseBuilder.php │ │ │ ├── CreateRefundRequestBuilder.php │ │ │ ├── CreateRefundResponseBuilder.php │ │ │ ├── CreateShiftRequestBuilder.php │ │ │ ├── CreateShiftResponseBuilder.php │ │ │ ├── CreateSubscriptionRequestBuilder.php │ │ │ ├── CreateSubscriptionResponseBuilder.php │ │ │ ├── CreateTeamMemberRequestBuilder.php │ │ │ ├── CreateTeamMemberResponseBuilder.php │ │ │ ├── CreateTerminalActionRequestBuilder.php │ │ │ ├── CreateTerminalActionResponseBuilder.php │ │ │ ├── CreateTerminalCheckoutRequestBuilder.php │ │ │ ├── CreateTerminalCheckoutResponseBuilder.php │ │ │ ├── CreateTerminalRefundRequestBuilder.php │ │ │ ├── CreateTerminalRefundResponseBuilder.php │ │ │ ├── CreateVendorRequestBuilder.php │ │ │ ├── CreateVendorResponseBuilder.php │ │ │ ├── CreateWebhookSubscriptionRequestBuilder.php │ │ │ ├── CreateWebhookSubscriptionResponseBuilder.php │ │ │ ├── CustomAttributeBuilder.php │ │ │ ├── CustomAttributeDefinitionBuilder.php │ │ │ ├── CustomAttributeFilterBuilder.php │ │ │ ├── CustomFieldBuilder.php │ │ │ ├── CustomerAddressFilterBuilder.php │ │ │ ├── CustomerBuilder.php │ │ │ ├── CustomerCreationSourceFilterBuilder.php │ │ │ ├── CustomerCustomAttributeFilterBuilder.php │ │ │ ├── CustomerCustomAttributeFilterValueBuilder.php │ │ │ ├── CustomerCustomAttributeFiltersBuilder.php │ │ │ ├── CustomerDetailsBuilder.php │ │ │ ├── CustomerFilterBuilder.php │ │ │ ├── CustomerGroupBuilder.php │ │ │ ├── CustomerPreferencesBuilder.php │ │ │ ├── CustomerQueryBuilder.php │ │ │ ├── CustomerSegmentBuilder.php │ │ │ ├── CustomerSortBuilder.php │ │ │ ├── CustomerTaxIdsBuilder.php │ │ │ ├── CustomerTextFilterBuilder.php │ │ │ ├── DataCollectionOptionsBuilder.php │ │ │ ├── DateRangeBuilder.php │ │ │ ├── DeleteBookingCustomAttributeDefinitionResponseBuilder.php │ │ │ ├── DeleteBookingCustomAttributeResponseBuilder.php │ │ │ ├── DeleteBreakTypeResponseBuilder.php │ │ │ ├── DeleteCatalogObjectResponseBuilder.php │ │ │ ├── DeleteCustomerCardResponseBuilder.php │ │ │ ├── DeleteCustomerCustomAttributeDefinitionResponseBuilder.php │ │ │ ├── DeleteCustomerCustomAttributeResponseBuilder.php │ │ │ ├── DeleteCustomerGroupResponseBuilder.php │ │ │ ├── DeleteCustomerRequestBuilder.php │ │ │ ├── DeleteCustomerResponseBuilder.php │ │ │ ├── DeleteDisputeEvidenceResponseBuilder.php │ │ │ ├── DeleteInvoiceAttachmentResponseBuilder.php │ │ │ ├── DeleteInvoiceRequestBuilder.php │ │ │ ├── DeleteInvoiceResponseBuilder.php │ │ │ ├── DeleteLocationCustomAttributeDefinitionResponseBuilder.php │ │ │ ├── DeleteLocationCustomAttributeResponseBuilder.php │ │ │ ├── DeleteLoyaltyRewardResponseBuilder.php │ │ │ ├── DeleteMerchantCustomAttributeDefinitionResponseBuilder.php │ │ │ ├── DeleteMerchantCustomAttributeResponseBuilder.php │ │ │ ├── DeleteOrderCustomAttributeDefinitionResponseBuilder.php │ │ │ ├── DeleteOrderCustomAttributeResponseBuilder.php │ │ │ ├── DeletePaymentLinkResponseBuilder.php │ │ │ ├── DeleteShiftResponseBuilder.php │ │ │ ├── DeleteSnippetResponseBuilder.php │ │ │ ├── DeleteSubscriptionActionResponseBuilder.php │ │ │ ├── DeleteWebhookSubscriptionResponseBuilder.php │ │ │ ├── DeprecatedCreateDisputeEvidenceFileRequestBuilder.php │ │ │ ├── DeprecatedCreateDisputeEvidenceFileResponseBuilder.php │ │ │ ├── DeprecatedCreateDisputeEvidenceTextRequestBuilder.php │ │ │ ├── DeprecatedCreateDisputeEvidenceTextResponseBuilder.php │ │ │ ├── DestinationBuilder.php │ │ │ ├── DestinationDetailsBuilder.php │ │ │ ├── DestinationDetailsCardRefundDetailsBuilder.php │ │ │ ├── DestinationDetailsCashRefundDetailsBuilder.php │ │ │ ├── DestinationDetailsExternalRefundDetailsBuilder.php │ │ │ ├── DeviceAttributesBuilder.php │ │ │ ├── DeviceBuilder.php │ │ │ ├── DeviceCheckoutOptionsBuilder.php │ │ │ ├── DeviceCodeBuilder.php │ │ │ ├── DeviceComponentDetailsApplicationDetailsBuilder.php │ │ │ ├── DeviceComponentDetailsBatteryDetailsBuilder.php │ │ │ ├── DeviceComponentDetailsCardReaderDetailsBuilder.php │ │ │ ├── DeviceComponentDetailsEthernetDetailsBuilder.php │ │ │ ├── DeviceComponentDetailsMeasurementBuilder.php │ │ │ ├── DeviceComponentDetailsNetworkInterfaceDetailsBuilder.php │ │ │ ├── DeviceComponentDetailsWiFiDetailsBuilder.php │ │ │ ├── DeviceDetailsBuilder.php │ │ │ ├── DeviceMetadataBuilder.php │ │ │ ├── DeviceStatusBuilder.php │ │ │ ├── DigitalWalletDetailsBuilder.php │ │ │ ├── DisableCardResponseBuilder.php │ │ │ ├── DisableEventsResponseBuilder.php │ │ │ ├── DismissTerminalActionResponseBuilder.php │ │ │ ├── DismissTerminalCheckoutResponseBuilder.php │ │ │ ├── DismissTerminalRefundResponseBuilder.php │ │ │ ├── DisputeBuilder.php │ │ │ ├── DisputeEvidenceBuilder.php │ │ │ ├── DisputeEvidenceFileBuilder.php │ │ │ ├── DisputedPaymentBuilder.php │ │ │ ├── EmployeeBuilder.php │ │ │ ├── EmployeeWageBuilder.php │ │ │ ├── EnableEventsResponseBuilder.php │ │ │ ├── ErrorBuilder.php │ │ │ ├── EventBuilder.php │ │ │ ├── EventDataBuilder.php │ │ │ ├── EventMetadataBuilder.php │ │ │ ├── EventTypeMetadataBuilder.php │ │ │ ├── ExternalPaymentDetailsBuilder.php │ │ │ ├── FilterValueBuilder.php │ │ │ ├── FloatNumberRangeBuilder.php │ │ │ ├── FulfillmentBuilder.php │ │ │ ├── FulfillmentDeliveryDetailsBuilder.php │ │ │ ├── FulfillmentFulfillmentEntryBuilder.php │ │ │ ├── FulfillmentPickupDetailsBuilder.php │ │ │ ├── FulfillmentPickupDetailsCurbsidePickupDetailsBuilder.php │ │ │ ├── FulfillmentRecipientBuilder.php │ │ │ ├── FulfillmentShipmentDetailsBuilder.php │ │ │ ├── GetBankAccountByV1IdResponseBuilder.php │ │ │ ├── GetBankAccountResponseBuilder.php │ │ │ ├── GetBreakTypeResponseBuilder.php │ │ │ ├── GetDeviceCodeResponseBuilder.php │ │ │ ├── GetDeviceResponseBuilder.php │ │ │ ├── GetEmployeeWageResponseBuilder.php │ │ │ ├── GetInvoiceResponseBuilder.php │ │ │ ├── GetPaymentRefundResponseBuilder.php │ │ │ ├── GetPaymentResponseBuilder.php │ │ │ ├── GetPayoutResponseBuilder.php │ │ │ ├── GetShiftResponseBuilder.php │ │ │ ├── GetTeamMemberWageResponseBuilder.php │ │ │ ├── GetTerminalActionResponseBuilder.php │ │ │ ├── GetTerminalCheckoutResponseBuilder.php │ │ │ ├── GetTerminalRefundResponseBuilder.php │ │ │ ├── GiftCardActivityActivateBuilder.php │ │ │ ├── GiftCardActivityAdjustDecrementBuilder.php │ │ │ ├── GiftCardActivityAdjustIncrementBuilder.php │ │ │ ├── GiftCardActivityBlockBuilder.php │ │ │ ├── GiftCardActivityBuilder.php │ │ │ ├── GiftCardActivityClearBalanceBuilder.php │ │ │ ├── GiftCardActivityDeactivateBuilder.php │ │ │ ├── GiftCardActivityImportBuilder.php │ │ │ ├── GiftCardActivityImportReversalBuilder.php │ │ │ ├── GiftCardActivityLoadBuilder.php │ │ │ ├── GiftCardActivityRedeemBuilder.php │ │ │ ├── GiftCardActivityRefundBuilder.php │ │ │ ├── GiftCardActivityTransferBalanceFromBuilder.php │ │ │ ├── GiftCardActivityTransferBalanceToBuilder.php │ │ │ ├── GiftCardActivityUnblockBuilder.php │ │ │ ├── GiftCardActivityUnlinkedActivityRefundBuilder.php │ │ │ ├── GiftCardBuilder.php │ │ │ ├── InventoryAdjustmentBuilder.php │ │ │ ├── InventoryAdjustmentGroupBuilder.php │ │ │ ├── InventoryChangeBuilder.php │ │ │ ├── InventoryCountBuilder.php │ │ │ ├── InventoryPhysicalCountBuilder.php │ │ │ ├── InventoryTransferBuilder.php │ │ │ ├── InvoiceAcceptedPaymentMethodsBuilder.php │ │ │ ├── InvoiceAttachmentBuilder.php │ │ │ ├── InvoiceBuilder.php │ │ │ ├── InvoiceCustomFieldBuilder.php │ │ │ ├── InvoiceFilterBuilder.php │ │ │ ├── InvoicePaymentReminderBuilder.php │ │ │ ├── InvoicePaymentRequestBuilder.php │ │ │ ├── InvoiceQueryBuilder.php │ │ │ ├── InvoiceRecipientBuilder.php │ │ │ ├── InvoiceRecipientTaxIdsBuilder.php │ │ │ ├── InvoiceSortBuilder.php │ │ │ ├── ItemVariationLocationOverridesBuilder.php │ │ │ ├── JobAssignmentBuilder.php │ │ │ ├── JobBuilder.php │ │ │ ├── LinkCustomerToGiftCardRequestBuilder.php │ │ │ ├── LinkCustomerToGiftCardResponseBuilder.php │ │ │ ├── ListBankAccountsRequestBuilder.php │ │ │ ├── ListBankAccountsResponseBuilder.php │ │ │ ├── ListBookingCustomAttributeDefinitionsRequestBuilder.php │ │ │ ├── ListBookingCustomAttributeDefinitionsResponseBuilder.php │ │ │ ├── ListBookingCustomAttributesRequestBuilder.php │ │ │ ├── ListBookingCustomAttributesResponseBuilder.php │ │ │ ├── ListBookingsRequestBuilder.php │ │ │ ├── ListBookingsResponseBuilder.php │ │ │ ├── ListBreakTypesRequestBuilder.php │ │ │ ├── ListBreakTypesResponseBuilder.php │ │ │ ├── ListCardsRequestBuilder.php │ │ │ ├── ListCardsResponseBuilder.php │ │ │ ├── ListCashDrawerShiftEventsRequestBuilder.php │ │ │ ├── ListCashDrawerShiftEventsResponseBuilder.php │ │ │ ├── ListCashDrawerShiftsRequestBuilder.php │ │ │ ├── ListCashDrawerShiftsResponseBuilder.php │ │ │ ├── ListCatalogRequestBuilder.php │ │ │ ├── ListCatalogResponseBuilder.php │ │ │ ├── ListCustomerCustomAttributeDefinitionsRequestBuilder.php │ │ │ ├── ListCustomerCustomAttributeDefinitionsResponseBuilder.php │ │ │ ├── ListCustomerCustomAttributesRequestBuilder.php │ │ │ ├── ListCustomerCustomAttributesResponseBuilder.php │ │ │ ├── ListCustomerGroupsRequestBuilder.php │ │ │ ├── ListCustomerGroupsResponseBuilder.php │ │ │ ├── ListCustomerSegmentsRequestBuilder.php │ │ │ ├── ListCustomerSegmentsResponseBuilder.php │ │ │ ├── ListCustomersRequestBuilder.php │ │ │ ├── ListCustomersResponseBuilder.php │ │ │ ├── ListDeviceCodesRequestBuilder.php │ │ │ ├── ListDeviceCodesResponseBuilder.php │ │ │ ├── ListDevicesRequestBuilder.php │ │ │ ├── ListDevicesResponseBuilder.php │ │ │ ├── ListDisputeEvidenceRequestBuilder.php │ │ │ ├── ListDisputeEvidenceResponseBuilder.php │ │ │ ├── ListDisputesRequestBuilder.php │ │ │ ├── ListDisputesResponseBuilder.php │ │ │ ├── ListEmployeeWagesRequestBuilder.php │ │ │ ├── ListEmployeeWagesResponseBuilder.php │ │ │ ├── ListEmployeesRequestBuilder.php │ │ │ ├── ListEmployeesResponseBuilder.php │ │ │ ├── ListEventTypesRequestBuilder.php │ │ │ ├── ListEventTypesResponseBuilder.php │ │ │ ├── ListGiftCardActivitiesRequestBuilder.php │ │ │ ├── ListGiftCardActivitiesResponseBuilder.php │ │ │ ├── ListGiftCardsRequestBuilder.php │ │ │ ├── ListGiftCardsResponseBuilder.php │ │ │ ├── ListInvoicesRequestBuilder.php │ │ │ ├── ListInvoicesResponseBuilder.php │ │ │ ├── ListJobsRequestBuilder.php │ │ │ ├── ListJobsResponseBuilder.php │ │ │ ├── ListLocationBookingProfilesRequestBuilder.php │ │ │ ├── ListLocationBookingProfilesResponseBuilder.php │ │ │ ├── ListLocationCustomAttributeDefinitionsRequestBuilder.php │ │ │ ├── ListLocationCustomAttributeDefinitionsResponseBuilder.php │ │ │ ├── ListLocationCustomAttributesRequestBuilder.php │ │ │ ├── ListLocationCustomAttributesResponseBuilder.php │ │ │ ├── ListLocationsResponseBuilder.php │ │ │ ├── ListLoyaltyProgramsResponseBuilder.php │ │ │ ├── ListLoyaltyPromotionsRequestBuilder.php │ │ │ ├── ListLoyaltyPromotionsResponseBuilder.php │ │ │ ├── ListMerchantCustomAttributeDefinitionsRequestBuilder.php │ │ │ ├── ListMerchantCustomAttributeDefinitionsResponseBuilder.php │ │ │ ├── ListMerchantCustomAttributesRequestBuilder.php │ │ │ ├── ListMerchantCustomAttributesResponseBuilder.php │ │ │ ├── ListMerchantsRequestBuilder.php │ │ │ ├── ListMerchantsResponseBuilder.php │ │ │ ├── ListOrderCustomAttributeDefinitionsRequestBuilder.php │ │ │ ├── ListOrderCustomAttributeDefinitionsResponseBuilder.php │ │ │ ├── ListOrderCustomAttributesRequestBuilder.php │ │ │ ├── ListOrderCustomAttributesResponseBuilder.php │ │ │ ├── ListPaymentLinksRequestBuilder.php │ │ │ ├── ListPaymentLinksResponseBuilder.php │ │ │ ├── ListPaymentRefundsRequestBuilder.php │ │ │ ├── ListPaymentRefundsResponseBuilder.php │ │ │ ├── ListPaymentsRequestBuilder.php │ │ │ ├── ListPaymentsResponseBuilder.php │ │ │ ├── ListPayoutEntriesRequestBuilder.php │ │ │ ├── ListPayoutEntriesResponseBuilder.php │ │ │ ├── ListPayoutsRequestBuilder.php │ │ │ ├── ListPayoutsResponseBuilder.php │ │ │ ├── ListRefundsRequestBuilder.php │ │ │ ├── ListRefundsResponseBuilder.php │ │ │ ├── ListSitesResponseBuilder.php │ │ │ ├── ListSubscriptionEventsRequestBuilder.php │ │ │ ├── ListSubscriptionEventsResponseBuilder.php │ │ │ ├── ListTeamMemberBookingProfilesRequestBuilder.php │ │ │ ├── ListTeamMemberBookingProfilesResponseBuilder.php │ │ │ ├── ListTeamMemberWagesRequestBuilder.php │ │ │ ├── ListTeamMemberWagesResponseBuilder.php │ │ │ ├── ListTransactionsRequestBuilder.php │ │ │ ├── ListTransactionsResponseBuilder.php │ │ │ ├── ListWebhookEventTypesRequestBuilder.php │ │ │ ├── ListWebhookEventTypesResponseBuilder.php │ │ │ ├── ListWebhookSubscriptionsRequestBuilder.php │ │ │ ├── ListWebhookSubscriptionsResponseBuilder.php │ │ │ ├── ListWorkweekConfigsRequestBuilder.php │ │ │ ├── ListWorkweekConfigsResponseBuilder.php │ │ │ ├── LocationBookingProfileBuilder.php │ │ │ ├── LocationBuilder.php │ │ │ ├── LoyaltyAccountBuilder.php │ │ │ ├── LoyaltyAccountExpiringPointDeadlineBuilder.php │ │ │ ├── LoyaltyAccountMappingBuilder.php │ │ │ ├── LoyaltyEventAccumulatePointsBuilder.php │ │ │ ├── LoyaltyEventAccumulatePromotionPointsBuilder.php │ │ │ ├── LoyaltyEventAdjustPointsBuilder.php │ │ │ ├── LoyaltyEventBuilder.php │ │ │ ├── LoyaltyEventCreateRewardBuilder.php │ │ │ ├── LoyaltyEventDateTimeFilterBuilder.php │ │ │ ├── LoyaltyEventDeleteRewardBuilder.php │ │ │ ├── LoyaltyEventExpirePointsBuilder.php │ │ │ ├── LoyaltyEventFilterBuilder.php │ │ │ ├── LoyaltyEventLocationFilterBuilder.php │ │ │ ├── LoyaltyEventLoyaltyAccountFilterBuilder.php │ │ │ ├── LoyaltyEventOrderFilterBuilder.php │ │ │ ├── LoyaltyEventOtherBuilder.php │ │ │ ├── LoyaltyEventQueryBuilder.php │ │ │ ├── LoyaltyEventRedeemRewardBuilder.php │ │ │ ├── LoyaltyEventTypeFilterBuilder.php │ │ │ ├── LoyaltyProgramAccrualRuleBuilder.php │ │ │ ├── LoyaltyProgramAccrualRuleCategoryDataBuilder.php │ │ │ ├── LoyaltyProgramAccrualRuleItemVariationDataBuilder.php │ │ │ ├── LoyaltyProgramAccrualRuleSpendDataBuilder.php │ │ │ ├── LoyaltyProgramAccrualRuleVisitDataBuilder.php │ │ │ ├── LoyaltyProgramBuilder.php │ │ │ ├── LoyaltyProgramExpirationPolicyBuilder.php │ │ │ ├── LoyaltyProgramRewardDefinitionBuilder.php │ │ │ ├── LoyaltyProgramRewardTierBuilder.php │ │ │ ├── LoyaltyProgramTerminologyBuilder.php │ │ │ ├── LoyaltyPromotionAvailableTimeDataBuilder.php │ │ │ ├── LoyaltyPromotionBuilder.php │ │ │ ├── LoyaltyPromotionIncentiveBuilder.php │ │ │ ├── LoyaltyPromotionIncentivePointsAdditionDataBuilder.php │ │ │ ├── LoyaltyPromotionIncentivePointsMultiplierDataBuilder.php │ │ │ ├── LoyaltyPromotionTriggerLimitBuilder.php │ │ │ ├── LoyaltyRewardBuilder.php │ │ │ ├── MBreakBuilder.php │ │ │ ├── MeasurementUnitBuilder.php │ │ │ ├── MeasurementUnitCustomBuilder.php │ │ │ ├── MerchantBuilder.php │ │ │ ├── ModifierLocationOverridesBuilder.php │ │ │ ├── MoneyBuilder.php │ │ │ ├── ObtainTokenRequestBuilder.php │ │ │ ├── ObtainTokenResponseBuilder.php │ │ │ ├── OfflinePaymentDetailsBuilder.php │ │ │ ├── OrderBuilder.php │ │ │ ├── OrderCreatedBuilder.php │ │ │ ├── OrderCreatedObjectBuilder.php │ │ │ ├── OrderEntryBuilder.php │ │ │ ├── OrderFulfillmentBuilder.php │ │ │ ├── OrderFulfillmentDeliveryDetailsBuilder.php │ │ │ ├── OrderFulfillmentFulfillmentEntryBuilder.php │ │ │ ├── OrderFulfillmentPickupDetailsBuilder.php │ │ │ ├── OrderFulfillmentPickupDetailsCurbsidePickupDetailsBuilder.php │ │ │ ├── OrderFulfillmentRecipientBuilder.php │ │ │ ├── OrderFulfillmentShipmentDetailsBuilder.php │ │ │ ├── OrderFulfillmentUpdatedBuilder.php │ │ │ ├── OrderFulfillmentUpdatedObjectBuilder.php │ │ │ ├── OrderFulfillmentUpdatedUpdateBuilder.php │ │ │ ├── OrderLineItemAppliedDiscountBuilder.php │ │ │ ├── OrderLineItemAppliedServiceChargeBuilder.php │ │ │ ├── OrderLineItemAppliedTaxBuilder.php │ │ │ ├── OrderLineItemBuilder.php │ │ │ ├── OrderLineItemDiscountBuilder.php │ │ │ ├── OrderLineItemModifierBuilder.php │ │ │ ├── OrderLineItemPricingBlocklistsBlockedDiscountBuilder.php │ │ │ ├── OrderLineItemPricingBlocklistsBlockedTaxBuilder.php │ │ │ ├── OrderLineItemPricingBlocklistsBuilder.php │ │ │ ├── OrderLineItemTaxBuilder.php │ │ │ ├── OrderMoneyAmountsBuilder.php │ │ │ ├── OrderPricingOptionsBuilder.php │ │ │ ├── OrderQuantityUnitBuilder.php │ │ │ ├── OrderReturnBuilder.php │ │ │ ├── OrderReturnDiscountBuilder.php │ │ │ ├── OrderReturnLineItemBuilder.php │ │ │ ├── OrderReturnLineItemModifierBuilder.php │ │ │ ├── OrderReturnServiceChargeBuilder.php │ │ │ ├── OrderReturnTaxBuilder.php │ │ │ ├── OrderReturnTipBuilder.php │ │ │ ├── OrderRewardBuilder.php │ │ │ ├── OrderRoundingAdjustmentBuilder.php │ │ │ ├── OrderServiceChargeBuilder.php │ │ │ ├── OrderSourceBuilder.php │ │ │ ├── OrderUpdatedBuilder.php │ │ │ ├── OrderUpdatedObjectBuilder.php │ │ │ ├── PaginationCursorBuilder.php │ │ │ ├── PauseSubscriptionRequestBuilder.php │ │ │ ├── PauseSubscriptionResponseBuilder.php │ │ │ ├── PayOrderRequestBuilder.php │ │ │ ├── PayOrderResponseBuilder.php │ │ │ ├── PaymentBalanceActivityAppFeeRefundDetailBuilder.php │ │ │ ├── PaymentBalanceActivityAppFeeRevenueDetailBuilder.php │ │ │ ├── PaymentBalanceActivityAutomaticSavingsDetailBuilder.php │ │ │ ├── PaymentBalanceActivityAutomaticSavingsReversedDetailBuilder.php │ │ │ ├── PaymentBalanceActivityChargeDetailBuilder.php │ │ │ ├── PaymentBalanceActivityDepositFeeDetailBuilder.php │ │ │ ├── PaymentBalanceActivityDepositFeeReversedDetailBuilder.php │ │ │ ├── PaymentBalanceActivityDisputeDetailBuilder.php │ │ │ ├── PaymentBalanceActivityFeeDetailBuilder.php │ │ │ ├── PaymentBalanceActivityFreeProcessingDetailBuilder.php │ │ │ ├── PaymentBalanceActivityHoldAdjustmentDetailBuilder.php │ │ │ ├── PaymentBalanceActivityOpenDisputeDetailBuilder.php │ │ │ ├── PaymentBalanceActivityOtherAdjustmentDetailBuilder.php │ │ │ ├── PaymentBalanceActivityOtherDetailBuilder.php │ │ │ ├── PaymentBalanceActivityRefundDetailBuilder.php │ │ │ ├── PaymentBalanceActivityReleaseAdjustmentDetailBuilder.php │ │ │ ├── PaymentBalanceActivityReserveHoldDetailBuilder.php │ │ │ ├── PaymentBalanceActivityReserveReleaseDetailBuilder.php │ │ │ ├── PaymentBalanceActivitySquareCapitalPaymentDetailBuilder.php │ │ │ ├── PaymentBalanceActivitySquareCapitalReversedPaymentDetailBuilder.php │ │ │ ├── PaymentBalanceActivitySquarePayrollTransferDetailBuilder.php │ │ │ ├── PaymentBalanceActivitySquarePayrollTransferReversedDetailBuilder.php │ │ │ ├── PaymentBalanceActivityTaxOnFeeDetailBuilder.php │ │ │ ├── PaymentBalanceActivityThirdPartyFeeDetailBuilder.php │ │ │ ├── PaymentBalanceActivityThirdPartyFeeRefundDetailBuilder.php │ │ │ ├── PaymentBuilder.php │ │ │ ├── PaymentLinkBuilder.php │ │ │ ├── PaymentLinkRelatedResourcesBuilder.php │ │ │ ├── PaymentOptionsBuilder.php │ │ │ ├── PaymentRefundBuilder.php │ │ │ ├── PayoutBuilder.php │ │ │ ├── PayoutEntryBuilder.php │ │ │ ├── PayoutFeeBuilder.php │ │ │ ├── PhaseBuilder.php │ │ │ ├── PhaseInputBuilder.php │ │ │ ├── PrePopulatedDataBuilder.php │ │ │ ├── ProcessingFeeBuilder.php │ │ │ ├── PublishInvoiceRequestBuilder.php │ │ │ ├── PublishInvoiceResponseBuilder.php │ │ │ ├── QrCodeOptionsBuilder.php │ │ │ ├── QuantityRatioBuilder.php │ │ │ ├── QuickPayBuilder.php │ │ │ ├── RangeBuilder.php │ │ │ ├── ReceiptOptionsBuilder.php │ │ │ ├── RedeemLoyaltyRewardRequestBuilder.php │ │ │ ├── RedeemLoyaltyRewardResponseBuilder.php │ │ │ ├── RefundBuilder.php │ │ │ ├── RefundPaymentRequestBuilder.php │ │ │ ├── RefundPaymentResponseBuilder.php │ │ │ ├── RegisterDomainRequestBuilder.php │ │ │ ├── RegisterDomainResponseBuilder.php │ │ │ ├── RemoveGroupFromCustomerResponseBuilder.php │ │ │ ├── ResumeSubscriptionRequestBuilder.php │ │ │ ├── ResumeSubscriptionResponseBuilder.php │ │ │ ├── RetrieveBookingCustomAttributeDefinitionRequestBuilder.php │ │ │ ├── RetrieveBookingCustomAttributeDefinitionResponseBuilder.php │ │ │ ├── RetrieveBookingCustomAttributeRequestBuilder.php │ │ │ ├── RetrieveBookingCustomAttributeResponseBuilder.php │ │ │ ├── RetrieveBookingResponseBuilder.php │ │ │ ├── RetrieveBusinessBookingProfileResponseBuilder.php │ │ │ ├── RetrieveCardResponseBuilder.php │ │ │ ├── RetrieveCashDrawerShiftRequestBuilder.php │ │ │ ├── RetrieveCashDrawerShiftResponseBuilder.php │ │ │ ├── RetrieveCatalogObjectRequestBuilder.php │ │ │ ├── RetrieveCatalogObjectResponseBuilder.php │ │ │ ├── RetrieveCustomerCustomAttributeDefinitionRequestBuilder.php │ │ │ ├── RetrieveCustomerCustomAttributeDefinitionResponseBuilder.php │ │ │ ├── RetrieveCustomerCustomAttributeRequestBuilder.php │ │ │ ├── RetrieveCustomerCustomAttributeResponseBuilder.php │ │ │ ├── RetrieveCustomerGroupResponseBuilder.php │ │ │ ├── RetrieveCustomerResponseBuilder.php │ │ │ ├── RetrieveCustomerSegmentResponseBuilder.php │ │ │ ├── RetrieveDisputeEvidenceResponseBuilder.php │ │ │ ├── RetrieveDisputeResponseBuilder.php │ │ │ ├── RetrieveEmployeeResponseBuilder.php │ │ │ ├── RetrieveGiftCardFromGANRequestBuilder.php │ │ │ ├── RetrieveGiftCardFromGANResponseBuilder.php │ │ │ ├── RetrieveGiftCardFromNonceRequestBuilder.php │ │ │ ├── RetrieveGiftCardFromNonceResponseBuilder.php │ │ │ ├── RetrieveGiftCardResponseBuilder.php │ │ │ ├── RetrieveInventoryAdjustmentResponseBuilder.php │ │ │ ├── RetrieveInventoryChangesRequestBuilder.php │ │ │ ├── RetrieveInventoryChangesResponseBuilder.php │ │ │ ├── RetrieveInventoryCountRequestBuilder.php │ │ │ ├── RetrieveInventoryCountResponseBuilder.php │ │ │ ├── RetrieveInventoryPhysicalCountResponseBuilder.php │ │ │ ├── RetrieveInventoryTransferResponseBuilder.php │ │ │ ├── RetrieveJobResponseBuilder.php │ │ │ ├── RetrieveLocationBookingProfileResponseBuilder.php │ │ │ ├── RetrieveLocationCustomAttributeDefinitionRequestBuilder.php │ │ │ ├── RetrieveLocationCustomAttributeDefinitionResponseBuilder.php │ │ │ ├── RetrieveLocationCustomAttributeRequestBuilder.php │ │ │ ├── RetrieveLocationCustomAttributeResponseBuilder.php │ │ │ ├── RetrieveLocationResponseBuilder.php │ │ │ ├── RetrieveLocationSettingsResponseBuilder.php │ │ │ ├── RetrieveLoyaltyAccountResponseBuilder.php │ │ │ ├── RetrieveLoyaltyProgramResponseBuilder.php │ │ │ ├── RetrieveLoyaltyPromotionResponseBuilder.php │ │ │ ├── RetrieveLoyaltyRewardResponseBuilder.php │ │ │ ├── RetrieveMerchantCustomAttributeDefinitionRequestBuilder.php │ │ │ ├── RetrieveMerchantCustomAttributeDefinitionResponseBuilder.php │ │ │ ├── RetrieveMerchantCustomAttributeRequestBuilder.php │ │ │ ├── RetrieveMerchantCustomAttributeResponseBuilder.php │ │ │ ├── RetrieveMerchantResponseBuilder.php │ │ │ ├── RetrieveMerchantSettingsResponseBuilder.php │ │ │ ├── RetrieveOrderCustomAttributeDefinitionRequestBuilder.php │ │ │ ├── RetrieveOrderCustomAttributeDefinitionResponseBuilder.php │ │ │ ├── RetrieveOrderCustomAttributeRequestBuilder.php │ │ │ ├── RetrieveOrderCustomAttributeResponseBuilder.php │ │ │ ├── RetrieveOrderResponseBuilder.php │ │ │ ├── RetrievePaymentLinkResponseBuilder.php │ │ │ ├── RetrieveSnippetResponseBuilder.php │ │ │ ├── RetrieveSubscriptionRequestBuilder.php │ │ │ ├── RetrieveSubscriptionResponseBuilder.php │ │ │ ├── RetrieveTeamMemberBookingProfileResponseBuilder.php │ │ │ ├── RetrieveTeamMemberResponseBuilder.php │ │ │ ├── RetrieveTokenStatusResponseBuilder.php │ │ │ ├── RetrieveTransactionResponseBuilder.php │ │ │ ├── RetrieveVendorResponseBuilder.php │ │ │ ├── RetrieveWageSettingResponseBuilder.php │ │ │ ├── RetrieveWebhookSubscriptionResponseBuilder.php │ │ │ ├── RevokeTokenRequestBuilder.php │ │ │ ├── RevokeTokenResponseBuilder.php │ │ │ ├── RiskEvaluationBuilder.php │ │ │ ├── SaveCardOptionsBuilder.php │ │ │ ├── SearchAvailabilityFilterBuilder.php │ │ │ ├── SearchAvailabilityQueryBuilder.php │ │ │ ├── SearchAvailabilityRequestBuilder.php │ │ │ ├── SearchAvailabilityResponseBuilder.php │ │ │ ├── SearchCatalogItemsRequestBuilder.php │ │ │ ├── SearchCatalogItemsResponseBuilder.php │ │ │ ├── SearchCatalogObjectsRequestBuilder.php │ │ │ ├── SearchCatalogObjectsResponseBuilder.php │ │ │ ├── SearchCustomersRequestBuilder.php │ │ │ ├── SearchCustomersResponseBuilder.php │ │ │ ├── SearchEventsFilterBuilder.php │ │ │ ├── SearchEventsQueryBuilder.php │ │ │ ├── SearchEventsRequestBuilder.php │ │ │ ├── SearchEventsResponseBuilder.php │ │ │ ├── SearchEventsSortBuilder.php │ │ │ ├── SearchInvoicesRequestBuilder.php │ │ │ ├── SearchInvoicesResponseBuilder.php │ │ │ ├── SearchLoyaltyAccountsRequestBuilder.php │ │ │ ├── SearchLoyaltyAccountsRequestLoyaltyAccountQueryBuilder.php │ │ │ ├── SearchLoyaltyAccountsResponseBuilder.php │ │ │ ├── SearchLoyaltyEventsRequestBuilder.php │ │ │ ├── SearchLoyaltyEventsResponseBuilder.php │ │ │ ├── SearchLoyaltyRewardsRequestBuilder.php │ │ │ ├── SearchLoyaltyRewardsRequestLoyaltyRewardQueryBuilder.php │ │ │ ├── SearchLoyaltyRewardsResponseBuilder.php │ │ │ ├── SearchOrdersCustomerFilterBuilder.php │ │ │ ├── SearchOrdersDateTimeFilterBuilder.php │ │ │ ├── SearchOrdersFilterBuilder.php │ │ │ ├── SearchOrdersFulfillmentFilterBuilder.php │ │ │ ├── SearchOrdersQueryBuilder.php │ │ │ ├── SearchOrdersRequestBuilder.php │ │ │ ├── SearchOrdersResponseBuilder.php │ │ │ ├── SearchOrdersSortBuilder.php │ │ │ ├── SearchOrdersSourceFilterBuilder.php │ │ │ ├── SearchOrdersStateFilterBuilder.php │ │ │ ├── SearchShiftsRequestBuilder.php │ │ │ ├── SearchShiftsResponseBuilder.php │ │ │ ├── SearchSubscriptionsFilterBuilder.php │ │ │ ├── SearchSubscriptionsQueryBuilder.php │ │ │ ├── SearchSubscriptionsRequestBuilder.php │ │ │ ├── SearchSubscriptionsResponseBuilder.php │ │ │ ├── SearchTeamMembersFilterBuilder.php │ │ │ ├── SearchTeamMembersQueryBuilder.php │ │ │ ├── SearchTeamMembersRequestBuilder.php │ │ │ ├── SearchTeamMembersResponseBuilder.php │ │ │ ├── SearchTerminalActionsRequestBuilder.php │ │ │ ├── SearchTerminalActionsResponseBuilder.php │ │ │ ├── SearchTerminalCheckoutsRequestBuilder.php │ │ │ ├── SearchTerminalCheckoutsResponseBuilder.php │ │ │ ├── SearchTerminalRefundsRequestBuilder.php │ │ │ ├── SearchTerminalRefundsResponseBuilder.php │ │ │ ├── SearchVendorsRequestBuilder.php │ │ │ ├── SearchVendorsRequestFilterBuilder.php │ │ │ ├── SearchVendorsRequestSortBuilder.php │ │ │ ├── SearchVendorsResponseBuilder.php │ │ │ ├── SegmentFilterBuilder.php │ │ │ ├── SelectOptionBuilder.php │ │ │ ├── SelectOptionsBuilder.php │ │ │ ├── ShiftBuilder.php │ │ │ ├── ShiftFilterBuilder.php │ │ │ ├── ShiftQueryBuilder.php │ │ │ ├── ShiftSortBuilder.php │ │ │ ├── ShiftWageBuilder.php │ │ │ ├── ShiftWorkdayBuilder.php │ │ │ ├── ShippingFeeBuilder.php │ │ │ ├── SignatureImageBuilder.php │ │ │ ├── SignatureOptionsBuilder.php │ │ │ ├── SiteBuilder.php │ │ │ ├── SnippetBuilder.php │ │ │ ├── SnippetResponseBuilder.php │ │ │ ├── SourceApplicationBuilder.php │ │ │ ├── SquareAccountDetailsBuilder.php │ │ │ ├── StandardUnitDescriptionBuilder.php │ │ │ ├── StandardUnitDescriptionGroupBuilder.php │ │ │ ├── SubmitEvidenceResponseBuilder.php │ │ │ ├── SubscriptionActionBuilder.php │ │ │ ├── SubscriptionBuilder.php │ │ │ ├── SubscriptionEventBuilder.php │ │ │ ├── SubscriptionEventInfoBuilder.php │ │ │ ├── SubscriptionPhaseBuilder.php │ │ │ ├── SubscriptionPricingBuilder.php │ │ │ ├── SubscriptionSourceBuilder.php │ │ │ ├── SubscriptionTestResultBuilder.php │ │ │ ├── SwapPlanRequestBuilder.php │ │ │ ├── SwapPlanResponseBuilder.php │ │ │ ├── TaxIdsBuilder.php │ │ │ ├── TeamMemberAssignedLocationsBuilder.php │ │ │ ├── TeamMemberBookingProfileBuilder.php │ │ │ ├── TeamMemberBuilder.php │ │ │ ├── TeamMemberWageBuilder.php │ │ │ ├── TenderBankAccountDetailsBuilder.php │ │ │ ├── TenderBuilder.php │ │ │ ├── TenderBuyNowPayLaterDetailsBuilder.php │ │ │ ├── TenderCardDetailsBuilder.php │ │ │ ├── TenderCashDetailsBuilder.php │ │ │ ├── TenderSquareAccountDetailsBuilder.php │ │ │ ├── TerminalActionBuilder.php │ │ │ ├── TerminalActionQueryBuilder.php │ │ │ ├── TerminalActionQueryFilterBuilder.php │ │ │ ├── TerminalActionQuerySortBuilder.php │ │ │ ├── TerminalCheckoutBuilder.php │ │ │ ├── TerminalCheckoutQueryBuilder.php │ │ │ ├── TerminalCheckoutQueryFilterBuilder.php │ │ │ ├── TerminalCheckoutQuerySortBuilder.php │ │ │ ├── TerminalRefundBuilder.php │ │ │ ├── TerminalRefundQueryBuilder.php │ │ │ ├── TerminalRefundQueryFilterBuilder.php │ │ │ ├── TerminalRefundQuerySortBuilder.php │ │ │ ├── TestWebhookSubscriptionRequestBuilder.php │ │ │ ├── TestWebhookSubscriptionResponseBuilder.php │ │ │ ├── TimeRangeBuilder.php │ │ │ ├── TipSettingsBuilder.php │ │ │ ├── TransactionBuilder.php │ │ │ ├── UnlinkCustomerFromGiftCardRequestBuilder.php │ │ │ ├── UnlinkCustomerFromGiftCardResponseBuilder.php │ │ │ ├── UpdateBookingCustomAttributeDefinitionRequestBuilder.php │ │ │ ├── UpdateBookingCustomAttributeDefinitionResponseBuilder.php │ │ │ ├── UpdateBookingRequestBuilder.php │ │ │ ├── UpdateBookingResponseBuilder.php │ │ │ ├── UpdateBreakTypeRequestBuilder.php │ │ │ ├── UpdateBreakTypeResponseBuilder.php │ │ │ ├── UpdateCatalogImageRequestBuilder.php │ │ │ ├── UpdateCatalogImageResponseBuilder.php │ │ │ ├── UpdateCustomerCustomAttributeDefinitionRequestBuilder.php │ │ │ ├── UpdateCustomerCustomAttributeDefinitionResponseBuilder.php │ │ │ ├── UpdateCustomerGroupRequestBuilder.php │ │ │ ├── UpdateCustomerGroupResponseBuilder.php │ │ │ ├── UpdateCustomerRequestBuilder.php │ │ │ ├── UpdateCustomerResponseBuilder.php │ │ │ ├── UpdateInvoiceRequestBuilder.php │ │ │ ├── UpdateInvoiceResponseBuilder.php │ │ │ ├── UpdateItemModifierListsRequestBuilder.php │ │ │ ├── UpdateItemModifierListsResponseBuilder.php │ │ │ ├── UpdateItemTaxesRequestBuilder.php │ │ │ ├── UpdateItemTaxesResponseBuilder.php │ │ │ ├── UpdateJobRequestBuilder.php │ │ │ ├── UpdateJobResponseBuilder.php │ │ │ ├── UpdateLocationCustomAttributeDefinitionRequestBuilder.php │ │ │ ├── UpdateLocationCustomAttributeDefinitionResponseBuilder.php │ │ │ ├── UpdateLocationRequestBuilder.php │ │ │ ├── UpdateLocationResponseBuilder.php │ │ │ ├── UpdateLocationSettingsRequestBuilder.php │ │ │ ├── UpdateLocationSettingsResponseBuilder.php │ │ │ ├── UpdateMerchantCustomAttributeDefinitionRequestBuilder.php │ │ │ ├── UpdateMerchantCustomAttributeDefinitionResponseBuilder.php │ │ │ ├── UpdateMerchantSettingsRequestBuilder.php │ │ │ ├── UpdateMerchantSettingsResponseBuilder.php │ │ │ ├── UpdateOrderCustomAttributeDefinitionRequestBuilder.php │ │ │ ├── UpdateOrderCustomAttributeDefinitionResponseBuilder.php │ │ │ ├── UpdateOrderRequestBuilder.php │ │ │ ├── UpdateOrderResponseBuilder.php │ │ │ ├── UpdatePaymentLinkRequestBuilder.php │ │ │ ├── UpdatePaymentLinkResponseBuilder.php │ │ │ ├── UpdatePaymentRequestBuilder.php │ │ │ ├── UpdatePaymentResponseBuilder.php │ │ │ ├── UpdateShiftRequestBuilder.php │ │ │ ├── UpdateShiftResponseBuilder.php │ │ │ ├── UpdateSubscriptionRequestBuilder.php │ │ │ ├── UpdateSubscriptionResponseBuilder.php │ │ │ ├── UpdateTeamMemberRequestBuilder.php │ │ │ ├── UpdateTeamMemberResponseBuilder.php │ │ │ ├── UpdateVendorRequestBuilder.php │ │ │ ├── UpdateVendorResponseBuilder.php │ │ │ ├── UpdateWageSettingRequestBuilder.php │ │ │ ├── UpdateWageSettingResponseBuilder.php │ │ │ ├── UpdateWebhookSubscriptionRequestBuilder.php │ │ │ ├── UpdateWebhookSubscriptionResponseBuilder.php │ │ │ ├── UpdateWebhookSubscriptionSignatureKeyRequestBuilder.php │ │ │ ├── UpdateWebhookSubscriptionSignatureKeyResponseBuilder.php │ │ │ ├── UpdateWorkweekConfigRequestBuilder.php │ │ │ ├── UpdateWorkweekConfigResponseBuilder.php │ │ │ ├── UpsertBookingCustomAttributeRequestBuilder.php │ │ │ ├── UpsertBookingCustomAttributeResponseBuilder.php │ │ │ ├── UpsertCatalogObjectRequestBuilder.php │ │ │ ├── UpsertCatalogObjectResponseBuilder.php │ │ │ ├── UpsertCustomerCustomAttributeRequestBuilder.php │ │ │ ├── UpsertCustomerCustomAttributeResponseBuilder.php │ │ │ ├── UpsertLocationCustomAttributeRequestBuilder.php │ │ │ ├── UpsertLocationCustomAttributeResponseBuilder.php │ │ │ ├── UpsertMerchantCustomAttributeRequestBuilder.php │ │ │ ├── UpsertMerchantCustomAttributeResponseBuilder.php │ │ │ ├── UpsertOrderCustomAttributeRequestBuilder.php │ │ │ ├── UpsertOrderCustomAttributeResponseBuilder.php │ │ │ ├── UpsertSnippetRequestBuilder.php │ │ │ ├── UpsertSnippetResponseBuilder.php │ │ │ ├── V1DeviceBuilder.php │ │ │ ├── V1ListOrdersRequestBuilder.php │ │ │ ├── V1ListOrdersResponseBuilder.php │ │ │ ├── V1MoneyBuilder.php │ │ │ ├── V1OrderBuilder.php │ │ │ ├── V1OrderHistoryEntryBuilder.php │ │ │ ├── V1PhoneNumberBuilder.php │ │ │ ├── V1TenderBuilder.php │ │ │ ├── V1UpdateOrderRequestBuilder.php │ │ │ ├── VendorBuilder.php │ │ │ ├── VendorContactBuilder.php │ │ │ ├── VoidTransactionResponseBuilder.php │ │ │ ├── WageSettingBuilder.php │ │ │ ├── WebhookSubscriptionBuilder.php │ │ │ └── WorkweekConfigBuilder.php │ │ ├── BulkCreateCustomerData.php │ │ ├── BulkCreateCustomersRequest.php │ │ ├── BulkCreateCustomersResponse.php │ │ ├── BulkCreateTeamMembersRequest.php │ │ ├── BulkCreateTeamMembersResponse.php │ │ ├── BulkCreateVendorsRequest.php │ │ ├── BulkCreateVendorsResponse.php │ │ ├── BulkDeleteBookingCustomAttributesRequest.php │ │ ├── BulkDeleteBookingCustomAttributesResponse.php │ │ ├── BulkDeleteCustomersRequest.php │ │ ├── BulkDeleteCustomersResponse.php │ │ ├── BulkDeleteLocationCustomAttributesRequest.php │ │ ├── BulkDeleteLocationCustomAttributesRequestLocationCustomAttributeDeleteRequest.php │ │ ├── BulkDeleteLocationCustomAttributesResponse.php │ │ ├── BulkDeleteLocationCustomAttributesResponseLocationCustomAttributeDeleteResponse.php │ │ ├── BulkDeleteMerchantCustomAttributesRequest.php │ │ ├── BulkDeleteMerchantCustomAttributesRequestMerchantCustomAttributeDeleteRequest.php │ │ ├── BulkDeleteMerchantCustomAttributesResponse.php │ │ ├── BulkDeleteMerchantCustomAttributesResponseMerchantCustomAttributeDeleteResponse.php │ │ ├── BulkDeleteOrderCustomAttributesRequest.php │ │ ├── BulkDeleteOrderCustomAttributesRequestDeleteCustomAttribute.php │ │ ├── BulkDeleteOrderCustomAttributesResponse.php │ │ ├── BulkRetrieveBookingsRequest.php │ │ ├── BulkRetrieveBookingsResponse.php │ │ ├── BulkRetrieveCustomersRequest.php │ │ ├── BulkRetrieveCustomersResponse.php │ │ ├── BulkRetrieveTeamMemberBookingProfilesRequest.php │ │ ├── BulkRetrieveTeamMemberBookingProfilesResponse.php │ │ ├── BulkRetrieveVendorsRequest.php │ │ ├── BulkRetrieveVendorsResponse.php │ │ ├── BulkSwapPlanRequest.php │ │ ├── BulkSwapPlanResponse.php │ │ ├── BulkUpdateCustomerData.php │ │ ├── BulkUpdateCustomersRequest.php │ │ ├── BulkUpdateCustomersResponse.php │ │ ├── BulkUpdateTeamMembersRequest.php │ │ ├── BulkUpdateTeamMembersResponse.php │ │ ├── BulkUpdateVendorsRequest.php │ │ ├── BulkUpdateVendorsResponse.php │ │ ├── BulkUpsertBookingCustomAttributesRequest.php │ │ ├── BulkUpsertBookingCustomAttributesResponse.php │ │ ├── BulkUpsertCustomerCustomAttributesRequest.php │ │ ├── BulkUpsertCustomerCustomAttributesRequestCustomerCustomAttributeUpsertRequest.php │ │ ├── BulkUpsertCustomerCustomAttributesResponse.php │ │ ├── BulkUpsertCustomerCustomAttributesResponseCustomerCustomAttributeUpsertResponse.php │ │ ├── BulkUpsertLocationCustomAttributesRequest.php │ │ ├── BulkUpsertLocationCustomAttributesRequestLocationCustomAttributeUpsertRequest.php │ │ ├── BulkUpsertLocationCustomAttributesResponse.php │ │ ├── BulkUpsertLocationCustomAttributesResponseLocationCustomAttributeUpsertResponse.php │ │ ├── BulkUpsertMerchantCustomAttributesRequest.php │ │ ├── BulkUpsertMerchantCustomAttributesRequestMerchantCustomAttributeUpsertRequest.php │ │ ├── BulkUpsertMerchantCustomAttributesResponse.php │ │ ├── BulkUpsertMerchantCustomAttributesResponseMerchantCustomAttributeUpsertResponse.php │ │ ├── BulkUpsertOrderCustomAttributesRequest.php │ │ ├── BulkUpsertOrderCustomAttributesRequestUpsertCustomAttribute.php │ │ ├── BulkUpsertOrderCustomAttributesResponse.php │ │ ├── BusinessAppointmentSettings.php │ │ ├── BusinessAppointmentSettingsAlignmentTime.php │ │ ├── BusinessAppointmentSettingsBookingLocationType.php │ │ ├── BusinessAppointmentSettingsCancellationPolicy.php │ │ ├── BusinessAppointmentSettingsMaxAppointmentsPerDayLimitType.php │ │ ├── BusinessBookingProfile.php │ │ ├── BusinessBookingProfileBookingPolicy.php │ │ ├── BusinessBookingProfileCustomerTimezoneChoice.php │ │ ├── BusinessHours.php │ │ ├── BusinessHoursPeriod.php │ │ ├── BuyNowPayLaterDetails.php │ │ ├── CalculateLoyaltyPointsRequest.php │ │ ├── CalculateLoyaltyPointsResponse.php │ │ ├── CalculateOrderRequest.php │ │ ├── CalculateOrderResponse.php │ │ ├── CancelBookingRequest.php │ │ ├── CancelBookingResponse.php │ │ ├── CancelInvoiceRequest.php │ │ ├── CancelInvoiceResponse.php │ │ ├── CancelLoyaltyPromotionResponse.php │ │ ├── CancelPaymentByIdempotencyKeyRequest.php │ │ ├── CancelPaymentByIdempotencyKeyResponse.php │ │ ├── CancelPaymentResponse.php │ │ ├── CancelSubscriptionResponse.php │ │ ├── CancelTerminalActionResponse.php │ │ ├── CancelTerminalCheckoutResponse.php │ │ ├── CancelTerminalRefundResponse.php │ │ ├── CaptureTransactionResponse.php │ │ ├── Card.php │ │ ├── CardBrand.php │ │ ├── CardCoBrand.php │ │ ├── CardPaymentDetails.php │ │ ├── CardPaymentTimeline.php │ │ ├── CardPrepaidType.php │ │ ├── CardType.php │ │ ├── CashAppDetails.php │ │ ├── CashDrawerDevice.php │ │ ├── CashDrawerEventType.php │ │ ├── CashDrawerShift.php │ │ ├── CashDrawerShiftEvent.php │ │ ├── CashDrawerShiftState.php │ │ ├── CashDrawerShiftSummary.php │ │ ├── CashPaymentDetails.php │ │ ├── CatalogAvailabilityPeriod.php │ │ ├── CatalogCategory.php │ │ ├── CatalogCategoryType.php │ │ ├── CatalogCustomAttributeDefinition.php │ │ ├── CatalogCustomAttributeDefinitionAppVisibility.php │ │ ├── CatalogCustomAttributeDefinitionNumberConfig.php │ │ ├── CatalogCustomAttributeDefinitionSelectionConfig.php │ │ ├── CatalogCustomAttributeDefinitionSelectionConfigCustomAttributeSelection.php │ │ ├── CatalogCustomAttributeDefinitionSellerVisibility.php │ │ ├── CatalogCustomAttributeDefinitionStringConfig.php │ │ ├── CatalogCustomAttributeDefinitionType.php │ │ ├── CatalogCustomAttributeValue.php │ │ ├── CatalogDiscount.php │ │ ├── CatalogDiscountModifyTaxBasis.php │ │ ├── CatalogDiscountType.php │ │ ├── CatalogEcomSeoData.php │ │ ├── CatalogIdMapping.php │ │ ├── CatalogImage.php │ │ ├── CatalogInfoResponse.php │ │ ├── CatalogInfoResponseLimits.php │ │ ├── CatalogItem.php │ │ ├── CatalogItemFoodAndBeverageDetails.php │ │ ├── CatalogItemFoodAndBeverageDetailsDietaryPreference.php │ │ ├── CatalogItemFoodAndBeverageDetailsDietaryPreferenceStandardDietaryPreference.php │ │ ├── CatalogItemFoodAndBeverageDetailsDietaryPreferenceType.php │ │ ├── CatalogItemFoodAndBeverageDetailsIngredient.php │ │ ├── CatalogItemFoodAndBeverageDetailsIngredientStandardIngredient.php │ │ ├── CatalogItemModifierListInfo.php │ │ ├── CatalogItemOption.php │ │ ├── CatalogItemOptionForItem.php │ │ ├── CatalogItemOptionValue.php │ │ ├── CatalogItemOptionValueForItemVariation.php │ │ ├── CatalogItemProductType.php │ │ ├── CatalogItemVariation.php │ │ ├── CatalogMeasurementUnit.php │ │ ├── CatalogModifier.php │ │ ├── CatalogModifierList.php │ │ ├── CatalogModifierListModifierType.php │ │ ├── CatalogModifierListSelectionType.php │ │ ├── CatalogModifierOverride.php │ │ ├── CatalogObject.php │ │ ├── CatalogObjectBatch.php │ │ ├── CatalogObjectCategory.php │ │ ├── CatalogObjectReference.php │ │ ├── CatalogObjectType.php │ │ ├── CatalogPricingRule.php │ │ ├── CatalogPricingType.php │ │ ├── CatalogProductSet.php │ │ ├── CatalogQuery.php │ │ ├── CatalogQueryExact.php │ │ ├── CatalogQueryItemVariationsForItemOptionValues.php │ │ ├── CatalogQueryItemsForItemOptions.php │ │ ├── CatalogQueryItemsForModifierList.php │ │ ├── CatalogQueryItemsForTax.php │ │ ├── CatalogQueryPrefix.php │ │ ├── CatalogQueryRange.php │ │ ├── CatalogQuerySet.php │ │ ├── CatalogQuerySortedAttribute.php │ │ ├── CatalogQueryText.php │ │ ├── CatalogQuickAmount.php │ │ ├── CatalogQuickAmountType.php │ │ ├── CatalogQuickAmountsSettings.php │ │ ├── CatalogQuickAmountsSettingsOption.php │ │ ├── CatalogStockConversion.php │ │ ├── CatalogSubscriptionPlan.php │ │ ├── CatalogSubscriptionPlanVariation.php │ │ ├── CatalogTax.php │ │ ├── CatalogTimePeriod.php │ │ ├── CatalogV1Id.php │ │ ├── CategoryPathToRootNode.php │ │ ├── ChangeBillingAnchorDateRequest.php │ │ ├── ChangeBillingAnchorDateResponse.php │ │ ├── ChangeTiming.php │ │ ├── ChargeRequest.php │ │ ├── ChargeRequestAdditionalRecipient.php │ │ ├── ChargeResponse.php │ │ ├── Checkout.php │ │ ├── CheckoutLocationSettings.php │ │ ├── CheckoutLocationSettingsBranding.php │ │ ├── CheckoutLocationSettingsBrandingButtonShape.php │ │ ├── CheckoutLocationSettingsBrandingHeaderType.php │ │ ├── CheckoutLocationSettingsCoupons.php │ │ ├── CheckoutLocationSettingsPolicy.php │ │ ├── CheckoutLocationSettingsTipping.php │ │ ├── CheckoutMerchantSettings.php │ │ ├── CheckoutMerchantSettingsPaymentMethods.php │ │ ├── CheckoutMerchantSettingsPaymentMethodsAfterpayClearpay.php │ │ ├── CheckoutMerchantSettingsPaymentMethodsAfterpayClearpayEligibilityRange.php │ │ ├── CheckoutMerchantSettingsPaymentMethodsPaymentMethod.php │ │ ├── CheckoutOptions.php │ │ ├── CheckoutOptionsPaymentType.php │ │ ├── ClearpayDetails.php │ │ ├── CloneOrderRequest.php │ │ ├── CloneOrderResponse.php │ │ ├── CollectedData.php │ │ ├── CompletePaymentRequest.php │ │ ├── CompletePaymentResponse.php │ │ ├── Component.php │ │ ├── ComponentComponentType.php │ │ ├── ConfirmationDecision.php │ │ ├── ConfirmationOptions.php │ │ ├── Coordinates.php │ │ ├── Country.php │ │ ├── CreateBookingCustomAttributeDefinitionRequest.php │ │ ├── CreateBookingCustomAttributeDefinitionResponse.php │ │ ├── CreateBookingRequest.php │ │ ├── CreateBookingResponse.php │ │ ├── CreateBreakTypeRequest.php │ │ ├── CreateBreakTypeResponse.php │ │ ├── CreateCardRequest.php │ │ ├── CreateCardResponse.php │ │ ├── CreateCatalogImageRequest.php │ │ ├── CreateCatalogImageResponse.php │ │ ├── CreateCheckoutRequest.php │ │ ├── CreateCheckoutResponse.php │ │ ├── CreateCustomerCardRequest.php │ │ ├── CreateCustomerCardResponse.php │ │ ├── CreateCustomerCustomAttributeDefinitionRequest.php │ │ ├── CreateCustomerCustomAttributeDefinitionResponse.php │ │ ├── CreateCustomerGroupRequest.php │ │ ├── CreateCustomerGroupResponse.php │ │ ├── CreateCustomerRequest.php │ │ ├── CreateCustomerResponse.php │ │ ├── CreateDeviceCodeRequest.php │ │ ├── CreateDeviceCodeResponse.php │ │ ├── CreateDisputeEvidenceFileRequest.php │ │ ├── CreateDisputeEvidenceFileResponse.php │ │ ├── CreateDisputeEvidenceTextRequest.php │ │ ├── CreateDisputeEvidenceTextResponse.php │ │ ├── CreateGiftCardActivityRequest.php │ │ ├── CreateGiftCardActivityResponse.php │ │ ├── CreateGiftCardRequest.php │ │ ├── CreateGiftCardResponse.php │ │ ├── CreateInvoiceAttachmentRequest.php │ │ ├── CreateInvoiceAttachmentResponse.php │ │ ├── CreateInvoiceRequest.php │ │ ├── CreateInvoiceResponse.php │ │ ├── CreateJobRequest.php │ │ ├── CreateJobResponse.php │ │ ├── CreateLocationCustomAttributeDefinitionRequest.php │ │ ├── CreateLocationCustomAttributeDefinitionResponse.php │ │ ├── CreateLocationRequest.php │ │ ├── CreateLocationResponse.php │ │ ├── CreateLoyaltyAccountRequest.php │ │ ├── CreateLoyaltyAccountResponse.php │ │ ├── CreateLoyaltyPromotionRequest.php │ │ ├── CreateLoyaltyPromotionResponse.php │ │ ├── CreateLoyaltyRewardRequest.php │ │ ├── CreateLoyaltyRewardResponse.php │ │ ├── CreateMerchantCustomAttributeDefinitionRequest.php │ │ ├── CreateMerchantCustomAttributeDefinitionResponse.php │ │ ├── CreateMobileAuthorizationCodeRequest.php │ │ ├── CreateMobileAuthorizationCodeResponse.php │ │ ├── CreateOrderCustomAttributeDefinitionRequest.php │ │ ├── CreateOrderCustomAttributeDefinitionResponse.php │ │ ├── CreateOrderRequest.php │ │ ├── CreateOrderResponse.php │ │ ├── CreatePaymentLinkRequest.php │ │ ├── CreatePaymentLinkResponse.php │ │ ├── CreatePaymentRequest.php │ │ ├── CreatePaymentResponse.php │ │ ├── CreateRefundRequest.php │ │ ├── CreateRefundResponse.php │ │ ├── CreateShiftRequest.php │ │ ├── CreateShiftResponse.php │ │ ├── CreateSubscriptionRequest.php │ │ ├── CreateSubscriptionResponse.php │ │ ├── CreateTeamMemberRequest.php │ │ ├── CreateTeamMemberResponse.php │ │ ├── CreateTerminalActionRequest.php │ │ ├── CreateTerminalActionResponse.php │ │ ├── CreateTerminalCheckoutRequest.php │ │ ├── CreateTerminalCheckoutResponse.php │ │ ├── CreateTerminalRefundRequest.php │ │ ├── CreateTerminalRefundResponse.php │ │ ├── CreateVendorRequest.php │ │ ├── CreateVendorResponse.php │ │ ├── CreateWebhookSubscriptionRequest.php │ │ ├── CreateWebhookSubscriptionResponse.php │ │ ├── Currency.php │ │ ├── CustomAttribute.php │ │ ├── CustomAttributeDefinition.php │ │ ├── CustomAttributeDefinitionVisibility.php │ │ ├── CustomAttributeFilter.php │ │ ├── CustomField.php │ │ ├── Customer.php │ │ ├── CustomerAddressFilter.php │ │ ├── CustomerCreationSource.php │ │ ├── CustomerCreationSourceFilter.php │ │ ├── CustomerCustomAttributeFilter.php │ │ ├── CustomerCustomAttributeFilterValue.php │ │ ├── CustomerCustomAttributeFilters.php │ │ ├── CustomerDetails.php │ │ ├── CustomerFilter.php │ │ ├── CustomerGroup.php │ │ ├── CustomerInclusionExclusion.php │ │ ├── CustomerPreferences.php │ │ ├── CustomerQuery.php │ │ ├── CustomerSegment.php │ │ ├── CustomerSort.php │ │ ├── CustomerSortField.php │ │ ├── CustomerTaxIds.php │ │ ├── CustomerTextFilter.php │ │ ├── DataCollectionOptions.php │ │ ├── DataCollectionOptionsInputType.php │ │ ├── DateRange.php │ │ ├── DayOfWeek.php │ │ ├── DeleteBookingCustomAttributeDefinitionResponse.php │ │ ├── DeleteBookingCustomAttributeResponse.php │ │ ├── DeleteBreakTypeResponse.php │ │ ├── DeleteCatalogObjectResponse.php │ │ ├── DeleteCustomerCardResponse.php │ │ ├── DeleteCustomerCustomAttributeDefinitionResponse.php │ │ ├── DeleteCustomerCustomAttributeResponse.php │ │ ├── DeleteCustomerGroupResponse.php │ │ ├── DeleteCustomerRequest.php │ │ ├── DeleteCustomerResponse.php │ │ ├── DeleteDisputeEvidenceResponse.php │ │ ├── DeleteInvoiceAttachmentResponse.php │ │ ├── DeleteInvoiceRequest.php │ │ ├── DeleteInvoiceResponse.php │ │ ├── DeleteLocationCustomAttributeDefinitionResponse.php │ │ ├── DeleteLocationCustomAttributeResponse.php │ │ ├── DeleteLoyaltyRewardResponse.php │ │ ├── DeleteMerchantCustomAttributeDefinitionResponse.php │ │ ├── DeleteMerchantCustomAttributeResponse.php │ │ ├── DeleteOrderCustomAttributeDefinitionResponse.php │ │ ├── DeleteOrderCustomAttributeResponse.php │ │ ├── DeletePaymentLinkResponse.php │ │ ├── DeleteShiftResponse.php │ │ ├── DeleteSnippetResponse.php │ │ ├── DeleteSubscriptionActionResponse.php │ │ ├── DeleteWebhookSubscriptionResponse.php │ │ ├── DeprecatedCreateDisputeEvidenceFileRequest.php │ │ ├── DeprecatedCreateDisputeEvidenceFileResponse.php │ │ ├── DeprecatedCreateDisputeEvidenceTextRequest.php │ │ ├── DeprecatedCreateDisputeEvidenceTextResponse.php │ │ ├── Destination.php │ │ ├── DestinationDetails.php │ │ ├── DestinationDetailsCardRefundDetails.php │ │ ├── DestinationDetailsCashRefundDetails.php │ │ ├── DestinationDetailsExternalRefundDetails.php │ │ ├── DestinationType.php │ │ ├── Device.php │ │ ├── DeviceAttributes.php │ │ ├── DeviceAttributesDeviceType.php │ │ ├── DeviceCheckoutOptions.php │ │ ├── DeviceCode.php │ │ ├── DeviceCodeStatus.php │ │ ├── DeviceComponentDetailsApplicationDetails.php │ │ ├── DeviceComponentDetailsBatteryDetails.php │ │ ├── DeviceComponentDetailsCardReaderDetails.php │ │ ├── DeviceComponentDetailsEthernetDetails.php │ │ ├── DeviceComponentDetailsExternalPower.php │ │ ├── DeviceComponentDetailsMeasurement.php │ │ ├── DeviceComponentDetailsNetworkInterfaceDetails.php │ │ ├── DeviceComponentDetailsWiFiDetails.php │ │ ├── DeviceDetails.php │ │ ├── DeviceMetadata.php │ │ ├── DeviceStatus.php │ │ ├── DeviceStatusCategory.php │ │ ├── DigitalWalletDetails.php │ │ ├── DisableCardResponse.php │ │ ├── DisableEventsResponse.php │ │ ├── DismissTerminalActionResponse.php │ │ ├── DismissTerminalCheckoutResponse.php │ │ ├── DismissTerminalRefundResponse.php │ │ ├── Dispute.php │ │ ├── DisputeEvidence.php │ │ ├── DisputeEvidenceFile.php │ │ ├── DisputeEvidenceType.php │ │ ├── DisputeReason.php │ │ ├── DisputeState.php │ │ ├── DisputedPayment.php │ │ ├── EcomVisibility.php │ │ ├── Employee.php │ │ ├── EmployeeStatus.php │ │ ├── EmployeeWage.php │ │ ├── EnableEventsResponse.php │ │ ├── Error.php │ │ ├── ErrorCategory.php │ │ ├── ErrorCode.php │ │ ├── Event.php │ │ ├── EventData.php │ │ ├── EventMetadata.php │ │ ├── EventTypeMetadata.php │ │ ├── ExcludeStrategy.php │ │ ├── ExternalPaymentDetails.php │ │ ├── FilterValue.php │ │ ├── FloatNumberRange.php │ │ ├── Fulfillment.php │ │ ├── FulfillmentDeliveryDetails.php │ │ ├── FulfillmentDeliveryDetailsOrderFulfillmentDeliveryDetailsScheduleType.php │ │ ├── FulfillmentFulfillmentEntry.php │ │ ├── FulfillmentFulfillmentLineItemApplication.php │ │ ├── FulfillmentPickupDetails.php │ │ ├── FulfillmentPickupDetailsCurbsidePickupDetails.php │ │ ├── FulfillmentPickupDetailsScheduleType.php │ │ ├── FulfillmentRecipient.php │ │ ├── FulfillmentShipmentDetails.php │ │ ├── FulfillmentState.php │ │ ├── FulfillmentType.php │ │ ├── GetBankAccountByV1IdResponse.php │ │ ├── GetBankAccountResponse.php │ │ ├── GetBreakTypeResponse.php │ │ ├── GetDeviceCodeResponse.php │ │ ├── GetDeviceResponse.php │ │ ├── GetEmployeeWageResponse.php │ │ ├── GetInvoiceResponse.php │ │ ├── GetPaymentRefundResponse.php │ │ ├── GetPaymentResponse.php │ │ ├── GetPayoutResponse.php │ │ ├── GetShiftResponse.php │ │ ├── GetTeamMemberWageResponse.php │ │ ├── GetTerminalActionResponse.php │ │ ├── GetTerminalCheckoutResponse.php │ │ ├── GetTerminalRefundResponse.php │ │ ├── GiftCard.php │ │ ├── GiftCardActivity.php │ │ ├── GiftCardActivityActivate.php │ │ ├── GiftCardActivityAdjustDecrement.php │ │ ├── GiftCardActivityAdjustDecrementReason.php │ │ ├── GiftCardActivityAdjustIncrement.php │ │ ├── GiftCardActivityAdjustIncrementReason.php │ │ ├── GiftCardActivityBlock.php │ │ ├── GiftCardActivityBlockReason.php │ │ ├── GiftCardActivityClearBalance.php │ │ ├── GiftCardActivityClearBalanceReason.php │ │ ├── GiftCardActivityDeactivate.php │ │ ├── GiftCardActivityDeactivateReason.php │ │ ├── GiftCardActivityImport.php │ │ ├── GiftCardActivityImportReversal.php │ │ ├── GiftCardActivityLoad.php │ │ ├── GiftCardActivityRedeem.php │ │ ├── GiftCardActivityRedeemStatus.php │ │ ├── GiftCardActivityRefund.php │ │ ├── GiftCardActivityTransferBalanceFrom.php │ │ ├── GiftCardActivityTransferBalanceTo.php │ │ ├── GiftCardActivityType.php │ │ ├── GiftCardActivityUnblock.php │ │ ├── GiftCardActivityUnblockReason.php │ │ ├── GiftCardActivityUnlinkedActivityRefund.php │ │ ├── GiftCardGANSource.php │ │ ├── GiftCardStatus.php │ │ ├── GiftCardType.php │ │ ├── InventoryAdjustment.php │ │ ├── InventoryAdjustmentGroup.php │ │ ├── InventoryAlertType.php │ │ ├── InventoryChange.php │ │ ├── InventoryChangeType.php │ │ ├── InventoryCount.php │ │ ├── InventoryPhysicalCount.php │ │ ├── InventoryState.php │ │ ├── InventoryTransfer.php │ │ ├── Invoice.php │ │ ├── InvoiceAcceptedPaymentMethods.php │ │ ├── InvoiceAttachment.php │ │ ├── InvoiceAutomaticPaymentSource.php │ │ ├── InvoiceCustomField.php │ │ ├── InvoiceCustomFieldPlacement.php │ │ ├── InvoiceDeliveryMethod.php │ │ ├── InvoiceFilter.php │ │ ├── InvoicePaymentReminder.php │ │ ├── InvoicePaymentReminderStatus.php │ │ ├── InvoicePaymentRequest.php │ │ ├── InvoiceQuery.php │ │ ├── InvoiceRecipient.php │ │ ├── InvoiceRecipientTaxIds.php │ │ ├── InvoiceRequestMethod.php │ │ ├── InvoiceRequestType.php │ │ ├── InvoiceSort.php │ │ ├── InvoiceSortField.php │ │ ├── InvoiceStatus.php │ │ ├── ItemVariationLocationOverrides.php │ │ ├── Job.php │ │ ├── JobAssignment.php │ │ ├── JobAssignmentPayType.php │ │ ├── LinkCustomerToGiftCardRequest.php │ │ ├── LinkCustomerToGiftCardResponse.php │ │ ├── ListBankAccountsRequest.php │ │ ├── ListBankAccountsResponse.php │ │ ├── ListBookingCustomAttributeDefinitionsRequest.php │ │ ├── ListBookingCustomAttributeDefinitionsResponse.php │ │ ├── ListBookingCustomAttributesRequest.php │ │ ├── ListBookingCustomAttributesResponse.php │ │ ├── ListBookingsRequest.php │ │ ├── ListBookingsResponse.php │ │ ├── ListBreakTypesRequest.php │ │ ├── ListBreakTypesResponse.php │ │ ├── ListCardsRequest.php │ │ ├── ListCardsResponse.php │ │ ├── ListCashDrawerShiftEventsRequest.php │ │ ├── ListCashDrawerShiftEventsResponse.php │ │ ├── ListCashDrawerShiftsRequest.php │ │ ├── ListCashDrawerShiftsResponse.php │ │ ├── ListCatalogRequest.php │ │ ├── ListCatalogResponse.php │ │ ├── ListCustomerCustomAttributeDefinitionsRequest.php │ │ ├── ListCustomerCustomAttributeDefinitionsResponse.php │ │ ├── ListCustomerCustomAttributesRequest.php │ │ ├── ListCustomerCustomAttributesResponse.php │ │ ├── ListCustomerGroupsRequest.php │ │ ├── ListCustomerGroupsResponse.php │ │ ├── ListCustomerSegmentsRequest.php │ │ ├── ListCustomerSegmentsResponse.php │ │ ├── ListCustomersRequest.php │ │ ├── ListCustomersResponse.php │ │ ├── ListDeviceCodesRequest.php │ │ ├── ListDeviceCodesResponse.php │ │ ├── ListDevicesRequest.php │ │ ├── ListDevicesResponse.php │ │ ├── ListDisputeEvidenceRequest.php │ │ ├── ListDisputeEvidenceResponse.php │ │ ├── ListDisputesRequest.php │ │ ├── ListDisputesResponse.php │ │ ├── ListEmployeeWagesRequest.php │ │ ├── ListEmployeeWagesResponse.php │ │ ├── ListEmployeesRequest.php │ │ ├── ListEmployeesResponse.php │ │ ├── ListEventTypesRequest.php │ │ ├── ListEventTypesResponse.php │ │ ├── ListGiftCardActivitiesRequest.php │ │ ├── ListGiftCardActivitiesResponse.php │ │ ├── ListGiftCardsRequest.php │ │ ├── ListGiftCardsResponse.php │ │ ├── ListInvoicesRequest.php │ │ ├── ListInvoicesResponse.php │ │ ├── ListJobsRequest.php │ │ ├── ListJobsResponse.php │ │ ├── ListLocationBookingProfilesRequest.php │ │ ├── ListLocationBookingProfilesResponse.php │ │ ├── ListLocationCustomAttributeDefinitionsRequest.php │ │ ├── ListLocationCustomAttributeDefinitionsResponse.php │ │ ├── ListLocationCustomAttributesRequest.php │ │ ├── ListLocationCustomAttributesResponse.php │ │ ├── ListLocationsResponse.php │ │ ├── ListLoyaltyProgramsResponse.php │ │ ├── ListLoyaltyPromotionsRequest.php │ │ ├── ListLoyaltyPromotionsResponse.php │ │ ├── ListMerchantCustomAttributeDefinitionsRequest.php │ │ ├── ListMerchantCustomAttributeDefinitionsResponse.php │ │ ├── ListMerchantCustomAttributesRequest.php │ │ ├── ListMerchantCustomAttributesResponse.php │ │ ├── ListMerchantsRequest.php │ │ ├── ListMerchantsResponse.php │ │ ├── ListOrderCustomAttributeDefinitionsRequest.php │ │ ├── ListOrderCustomAttributeDefinitionsResponse.php │ │ ├── ListOrderCustomAttributesRequest.php │ │ ├── ListOrderCustomAttributesResponse.php │ │ ├── ListPaymentLinksRequest.php │ │ ├── ListPaymentLinksResponse.php │ │ ├── ListPaymentRefundsRequest.php │ │ ├── ListPaymentRefundsResponse.php │ │ ├── ListPaymentsRequest.php │ │ ├── ListPaymentsResponse.php │ │ ├── ListPayoutEntriesRequest.php │ │ ├── ListPayoutEntriesResponse.php │ │ ├── ListPayoutsRequest.php │ │ ├── ListPayoutsResponse.php │ │ ├── ListRefundsRequest.php │ │ ├── ListRefundsResponse.php │ │ ├── ListSitesResponse.php │ │ ├── ListSubscriptionEventsRequest.php │ │ ├── ListSubscriptionEventsResponse.php │ │ ├── ListTeamMemberBookingProfilesRequest.php │ │ ├── ListTeamMemberBookingProfilesResponse.php │ │ ├── ListTeamMemberWagesRequest.php │ │ ├── ListTeamMemberWagesResponse.php │ │ ├── ListTransactionsRequest.php │ │ ├── ListTransactionsResponse.php │ │ ├── ListWebhookEventTypesRequest.php │ │ ├── ListWebhookEventTypesResponse.php │ │ ├── ListWebhookSubscriptionsRequest.php │ │ ├── ListWebhookSubscriptionsResponse.php │ │ ├── ListWorkweekConfigsRequest.php │ │ ├── ListWorkweekConfigsResponse.php │ │ ├── Location.php │ │ ├── LocationBookingProfile.php │ │ ├── LocationCapability.php │ │ ├── LocationStatus.php │ │ ├── LocationType.php │ │ ├── LoyaltyAccount.php │ │ ├── LoyaltyAccountExpiringPointDeadline.php │ │ ├── LoyaltyAccountMapping.php │ │ ├── LoyaltyAccountMappingType.php │ │ ├── LoyaltyEvent.php │ │ ├── LoyaltyEventAccumulatePoints.php │ │ ├── LoyaltyEventAccumulatePromotionPoints.php │ │ ├── LoyaltyEventAdjustPoints.php │ │ ├── LoyaltyEventCreateReward.php │ │ ├── LoyaltyEventDateTimeFilter.php │ │ ├── LoyaltyEventDeleteReward.php │ │ ├── LoyaltyEventExpirePoints.php │ │ ├── LoyaltyEventFilter.php │ │ ├── LoyaltyEventLocationFilter.php │ │ ├── LoyaltyEventLoyaltyAccountFilter.php │ │ ├── LoyaltyEventOrderFilter.php │ │ ├── LoyaltyEventOther.php │ │ ├── LoyaltyEventQuery.php │ │ ├── LoyaltyEventRedeemReward.php │ │ ├── LoyaltyEventSource.php │ │ ├── LoyaltyEventType.php │ │ ├── LoyaltyEventTypeFilter.php │ │ ├── LoyaltyProgram.php │ │ ├── LoyaltyProgramAccrualRule.php │ │ ├── LoyaltyProgramAccrualRuleCategoryData.php │ │ ├── LoyaltyProgramAccrualRuleItemVariationData.php │ │ ├── LoyaltyProgramAccrualRuleSpendData.php │ │ ├── LoyaltyProgramAccrualRuleTaxMode.php │ │ ├── LoyaltyProgramAccrualRuleType.php │ │ ├── LoyaltyProgramAccrualRuleVisitData.php │ │ ├── LoyaltyProgramExpirationPolicy.php │ │ ├── LoyaltyProgramRewardDefinition.php │ │ ├── LoyaltyProgramRewardDefinitionScope.php │ │ ├── LoyaltyProgramRewardDefinitionType.php │ │ ├── LoyaltyProgramRewardTier.php │ │ ├── LoyaltyProgramStatus.php │ │ ├── LoyaltyProgramTerminology.php │ │ ├── LoyaltyPromotion.php │ │ ├── LoyaltyPromotionAvailableTimeData.php │ │ ├── LoyaltyPromotionIncentive.php │ │ ├── LoyaltyPromotionIncentivePointsAdditionData.php │ │ ├── LoyaltyPromotionIncentivePointsMultiplierData.php │ │ ├── LoyaltyPromotionIncentiveType.php │ │ ├── LoyaltyPromotionStatus.php │ │ ├── LoyaltyPromotionTriggerLimit.php │ │ ├── LoyaltyPromotionTriggerLimitInterval.php │ │ ├── LoyaltyReward.php │ │ ├── LoyaltyRewardStatus.php │ │ ├── MBreak.php │ │ ├── MeasurementUnit.php │ │ ├── MeasurementUnitArea.php │ │ ├── MeasurementUnitCustom.php │ │ ├── MeasurementUnitGeneric.php │ │ ├── MeasurementUnitLength.php │ │ ├── MeasurementUnitTime.php │ │ ├── MeasurementUnitUnitType.php │ │ ├── MeasurementUnitVolume.php │ │ ├── MeasurementUnitWeight.php │ │ ├── Merchant.php │ │ ├── MerchantStatus.php │ │ ├── ModifierLocationOverrides.php │ │ ├── Money.php │ │ ├── ObtainTokenRequest.php │ │ ├── ObtainTokenResponse.php │ │ ├── OfflinePaymentDetails.php │ │ ├── Order.php │ │ ├── OrderCreated.php │ │ ├── OrderCreatedObject.php │ │ ├── OrderEntry.php │ │ ├── OrderFulfillment.php │ │ ├── OrderFulfillmentDeliveryDetails.php │ │ ├── OrderFulfillmentDeliveryDetailsScheduleType.php │ │ ├── OrderFulfillmentFulfillmentEntry.php │ │ ├── OrderFulfillmentFulfillmentLineItemApplication.php │ │ ├── OrderFulfillmentPickupDetails.php │ │ ├── OrderFulfillmentPickupDetailsCurbsidePickupDetails.php │ │ ├── OrderFulfillmentPickupDetailsScheduleType.php │ │ ├── OrderFulfillmentRecipient.php │ │ ├── OrderFulfillmentShipmentDetails.php │ │ ├── OrderFulfillmentState.php │ │ ├── OrderFulfillmentType.php │ │ ├── OrderFulfillmentUpdated.php │ │ ├── OrderFulfillmentUpdatedObject.php │ │ ├── OrderFulfillmentUpdatedUpdate.php │ │ ├── OrderLineItem.php │ │ ├── OrderLineItemAppliedDiscount.php │ │ ├── OrderLineItemAppliedServiceCharge.php │ │ ├── OrderLineItemAppliedTax.php │ │ ├── OrderLineItemDiscount.php │ │ ├── OrderLineItemDiscountScope.php │ │ ├── OrderLineItemDiscountType.php │ │ ├── OrderLineItemItemType.php │ │ ├── OrderLineItemModifier.php │ │ ├── OrderLineItemPricingBlocklists.php │ │ ├── OrderLineItemPricingBlocklistsBlockedDiscount.php │ │ ├── OrderLineItemPricingBlocklistsBlockedTax.php │ │ ├── OrderLineItemTax.php │ │ ├── OrderLineItemTaxScope.php │ │ ├── OrderLineItemTaxType.php │ │ ├── OrderMoneyAmounts.php │ │ ├── OrderPricingOptions.php │ │ ├── OrderQuantityUnit.php │ │ ├── OrderReturn.php │ │ ├── OrderReturnDiscount.php │ │ ├── OrderReturnLineItem.php │ │ ├── OrderReturnLineItemModifier.php │ │ ├── OrderReturnServiceCharge.php │ │ ├── OrderReturnTax.php │ │ ├── OrderReturnTip.php │ │ ├── OrderReward.php │ │ ├── OrderRoundingAdjustment.php │ │ ├── OrderServiceCharge.php │ │ ├── OrderServiceChargeCalculationPhase.php │ │ ├── OrderServiceChargeScope.php │ │ ├── OrderServiceChargeTreatmentType.php │ │ ├── OrderServiceChargeType.php │ │ ├── OrderSource.php │ │ ├── OrderState.php │ │ ├── OrderUpdated.php │ │ ├── OrderUpdatedObject.php │ │ ├── PaginationCursor.php │ │ ├── PauseSubscriptionRequest.php │ │ ├── PauseSubscriptionResponse.php │ │ ├── PayOrderRequest.php │ │ ├── PayOrderResponse.php │ │ ├── Payment.php │ │ ├── PaymentBalanceActivityAppFeeRefundDetail.php │ │ ├── PaymentBalanceActivityAppFeeRevenueDetail.php │ │ ├── PaymentBalanceActivityAutomaticSavingsDetail.php │ │ ├── PaymentBalanceActivityAutomaticSavingsReversedDetail.php │ │ ├── PaymentBalanceActivityChargeDetail.php │ │ ├── PaymentBalanceActivityDepositFeeDetail.php │ │ ├── PaymentBalanceActivityDepositFeeReversedDetail.php │ │ ├── PaymentBalanceActivityDisputeDetail.php │ │ ├── PaymentBalanceActivityFeeDetail.php │ │ ├── PaymentBalanceActivityFreeProcessingDetail.php │ │ ├── PaymentBalanceActivityHoldAdjustmentDetail.php │ │ ├── PaymentBalanceActivityOpenDisputeDetail.php │ │ ├── PaymentBalanceActivityOtherAdjustmentDetail.php │ │ ├── PaymentBalanceActivityOtherDetail.php │ │ ├── PaymentBalanceActivityRefundDetail.php │ │ ├── PaymentBalanceActivityReleaseAdjustmentDetail.php │ │ ├── PaymentBalanceActivityReserveHoldDetail.php │ │ ├── PaymentBalanceActivityReserveReleaseDetail.php │ │ ├── PaymentBalanceActivitySquareCapitalPaymentDetail.php │ │ ├── PaymentBalanceActivitySquareCapitalReversedPaymentDetail.php │ │ ├── PaymentBalanceActivitySquarePayrollTransferDetail.php │ │ ├── PaymentBalanceActivitySquarePayrollTransferReversedDetail.php │ │ ├── PaymentBalanceActivityTaxOnFeeDetail.php │ │ ├── PaymentBalanceActivityThirdPartyFeeDetail.php │ │ ├── PaymentBalanceActivityThirdPartyFeeRefundDetail.php │ │ ├── PaymentLink.php │ │ ├── PaymentLinkRelatedResources.php │ │ ├── PaymentOptions.php │ │ ├── PaymentOptionsDelayAction.php │ │ ├── PaymentRefund.php │ │ ├── PaymentSortField.php │ │ ├── Payout.php │ │ ├── PayoutEntry.php │ │ ├── PayoutFee.php │ │ ├── PayoutFeeType.php │ │ ├── PayoutStatus.php │ │ ├── PayoutType.php │ │ ├── Phase.php │ │ ├── PhaseInput.php │ │ ├── PrePopulatedData.php │ │ ├── ProcessingFee.php │ │ ├── Product.php │ │ ├── ProductType.php │ │ ├── PublishInvoiceRequest.php │ │ ├── PublishInvoiceResponse.php │ │ ├── QrCodeOptions.php │ │ ├── QuantityRatio.php │ │ ├── QuickPay.php │ │ ├── Range.php │ │ ├── ReceiptOptions.php │ │ ├── RedeemLoyaltyRewardRequest.php │ │ ├── RedeemLoyaltyRewardResponse.php │ │ ├── Refund.php │ │ ├── RefundPaymentRequest.php │ │ ├── RefundPaymentResponse.php │ │ ├── RefundStatus.php │ │ ├── RegisterDomainRequest.php │ │ ├── RegisterDomainResponse.php │ │ ├── RegisterDomainResponseStatus.php │ │ ├── RemoveGroupFromCustomerResponse.php │ │ ├── ResumeSubscriptionRequest.php │ │ ├── ResumeSubscriptionResponse.php │ │ ├── RetrieveBookingCustomAttributeDefinitionRequest.php │ │ ├── RetrieveBookingCustomAttributeDefinitionResponse.php │ │ ├── RetrieveBookingCustomAttributeRequest.php │ │ ├── RetrieveBookingCustomAttributeResponse.php │ │ ├── RetrieveBookingResponse.php │ │ ├── RetrieveBusinessBookingProfileResponse.php │ │ ├── RetrieveCardResponse.php │ │ ├── RetrieveCashDrawerShiftRequest.php │ │ ├── RetrieveCashDrawerShiftResponse.php │ │ ├── RetrieveCatalogObjectRequest.php │ │ ├── RetrieveCatalogObjectResponse.php │ │ ├── RetrieveCustomerCustomAttributeDefinitionRequest.php │ │ ├── RetrieveCustomerCustomAttributeDefinitionResponse.php │ │ ├── RetrieveCustomerCustomAttributeRequest.php │ │ ├── RetrieveCustomerCustomAttributeResponse.php │ │ ├── RetrieveCustomerGroupResponse.php │ │ ├── RetrieveCustomerResponse.php │ │ ├── RetrieveCustomerSegmentResponse.php │ │ ├── RetrieveDisputeEvidenceResponse.php │ │ ├── RetrieveDisputeResponse.php │ │ ├── RetrieveEmployeeResponse.php │ │ ├── RetrieveGiftCardFromGANRequest.php │ │ ├── RetrieveGiftCardFromGANResponse.php │ │ ├── RetrieveGiftCardFromNonceRequest.php │ │ ├── RetrieveGiftCardFromNonceResponse.php │ │ ├── RetrieveGiftCardResponse.php │ │ ├── RetrieveInventoryAdjustmentResponse.php │ │ ├── RetrieveInventoryChangesRequest.php │ │ ├── RetrieveInventoryChangesResponse.php │ │ ├── RetrieveInventoryCountRequest.php │ │ ├── RetrieveInventoryCountResponse.php │ │ ├── RetrieveInventoryPhysicalCountResponse.php │ │ ├── RetrieveInventoryTransferResponse.php │ │ ├── RetrieveJobResponse.php │ │ ├── RetrieveLocationBookingProfileResponse.php │ │ ├── RetrieveLocationCustomAttributeDefinitionRequest.php │ │ ├── RetrieveLocationCustomAttributeDefinitionResponse.php │ │ ├── RetrieveLocationCustomAttributeRequest.php │ │ ├── RetrieveLocationCustomAttributeResponse.php │ │ ├── RetrieveLocationResponse.php │ │ ├── RetrieveLocationSettingsResponse.php │ │ ├── RetrieveLoyaltyAccountResponse.php │ │ ├── RetrieveLoyaltyProgramResponse.php │ │ ├── RetrieveLoyaltyPromotionResponse.php │ │ ├── RetrieveLoyaltyRewardResponse.php │ │ ├── RetrieveMerchantCustomAttributeDefinitionRequest.php │ │ ├── RetrieveMerchantCustomAttributeDefinitionResponse.php │ │ ├── RetrieveMerchantCustomAttributeRequest.php │ │ ├── RetrieveMerchantCustomAttributeResponse.php │ │ ├── RetrieveMerchantResponse.php │ │ ├── RetrieveMerchantSettingsResponse.php │ │ ├── RetrieveOrderCustomAttributeDefinitionRequest.php │ │ ├── RetrieveOrderCustomAttributeDefinitionResponse.php │ │ ├── RetrieveOrderCustomAttributeRequest.php │ │ ├── RetrieveOrderCustomAttributeResponse.php │ │ ├── RetrieveOrderResponse.php │ │ ├── RetrievePaymentLinkResponse.php │ │ ├── RetrieveSnippetResponse.php │ │ ├── RetrieveSubscriptionRequest.php │ │ ├── RetrieveSubscriptionResponse.php │ │ ├── RetrieveTeamMemberBookingProfileResponse.php │ │ ├── RetrieveTeamMemberResponse.php │ │ ├── RetrieveTokenStatusResponse.php │ │ ├── RetrieveTransactionResponse.php │ │ ├── RetrieveVendorResponse.php │ │ ├── RetrieveWageSettingResponse.php │ │ ├── RetrieveWebhookSubscriptionResponse.php │ │ ├── RevokeTokenRequest.php │ │ ├── RevokeTokenResponse.php │ │ ├── RiskEvaluation.php │ │ ├── RiskEvaluationRiskLevel.php │ │ ├── SaveCardOptions.php │ │ ├── SearchAvailabilityFilter.php │ │ ├── SearchAvailabilityQuery.php │ │ ├── SearchAvailabilityRequest.php │ │ ├── SearchAvailabilityResponse.php │ │ ├── SearchCatalogItemsRequest.php │ │ ├── SearchCatalogItemsRequestStockLevel.php │ │ ├── SearchCatalogItemsResponse.php │ │ ├── SearchCatalogObjectsRequest.php │ │ ├── SearchCatalogObjectsResponse.php │ │ ├── SearchCustomersRequest.php │ │ ├── SearchCustomersResponse.php │ │ ├── SearchEventsFilter.php │ │ ├── SearchEventsQuery.php │ │ ├── SearchEventsRequest.php │ │ ├── SearchEventsResponse.php │ │ ├── SearchEventsSort.php │ │ ├── SearchEventsSortField.php │ │ ├── SearchInvoicesRequest.php │ │ ├── SearchInvoicesResponse.php │ │ ├── SearchLoyaltyAccountsRequest.php │ │ ├── SearchLoyaltyAccountsRequestLoyaltyAccountQuery.php │ │ ├── SearchLoyaltyAccountsResponse.php │ │ ├── SearchLoyaltyEventsRequest.php │ │ ├── SearchLoyaltyEventsResponse.php │ │ ├── SearchLoyaltyRewardsRequest.php │ │ ├── SearchLoyaltyRewardsRequestLoyaltyRewardQuery.php │ │ ├── SearchLoyaltyRewardsResponse.php │ │ ├── SearchOrdersCustomerFilter.php │ │ ├── SearchOrdersDateTimeFilter.php │ │ ├── SearchOrdersFilter.php │ │ ├── SearchOrdersFulfillmentFilter.php │ │ ├── SearchOrdersQuery.php │ │ ├── SearchOrdersRequest.php │ │ ├── SearchOrdersResponse.php │ │ ├── SearchOrdersSort.php │ │ ├── SearchOrdersSortField.php │ │ ├── SearchOrdersSourceFilter.php │ │ ├── SearchOrdersStateFilter.php │ │ ├── SearchShiftsRequest.php │ │ ├── SearchShiftsResponse.php │ │ ├── SearchSubscriptionsFilter.php │ │ ├── SearchSubscriptionsQuery.php │ │ ├── SearchSubscriptionsRequest.php │ │ ├── SearchSubscriptionsResponse.php │ │ ├── SearchTeamMembersFilter.php │ │ ├── SearchTeamMembersQuery.php │ │ ├── SearchTeamMembersRequest.php │ │ ├── SearchTeamMembersResponse.php │ │ ├── SearchTerminalActionsRequest.php │ │ ├── SearchTerminalActionsResponse.php │ │ ├── SearchTerminalCheckoutsRequest.php │ │ ├── SearchTerminalCheckoutsResponse.php │ │ ├── SearchTerminalRefundsRequest.php │ │ ├── SearchTerminalRefundsResponse.php │ │ ├── SearchVendorsRequest.php │ │ ├── SearchVendorsRequestFilter.php │ │ ├── SearchVendorsRequestSort.php │ │ ├── SearchVendorsRequestSortField.php │ │ ├── SearchVendorsResponse.php │ │ ├── SegmentFilter.php │ │ ├── SelectOption.php │ │ ├── SelectOptions.php │ │ ├── Shift.php │ │ ├── ShiftFilter.php │ │ ├── ShiftFilterStatus.php │ │ ├── ShiftQuery.php │ │ ├── ShiftSort.php │ │ ├── ShiftSortField.php │ │ ├── ShiftStatus.php │ │ ├── ShiftWage.php │ │ ├── ShiftWorkday.php │ │ ├── ShiftWorkdayMatcher.php │ │ ├── ShippingFee.php │ │ ├── SignatureImage.php │ │ ├── SignatureOptions.php │ │ ├── Site.php │ │ ├── Snippet.php │ │ ├── SnippetResponse.php │ │ ├── SortOrder.php │ │ ├── SourceApplication.php │ │ ├── SquareAccountDetails.php │ │ ├── StandardUnitDescription.php │ │ ├── StandardUnitDescriptionGroup.php │ │ ├── SubmitEvidenceResponse.php │ │ ├── Subscription.php │ │ ├── SubscriptionAction.php │ │ ├── SubscriptionActionType.php │ │ ├── SubscriptionCadence.php │ │ ├── SubscriptionEvent.php │ │ ├── SubscriptionEventInfo.php │ │ ├── SubscriptionEventInfoCode.php │ │ ├── SubscriptionEventSubscriptionEventType.php │ │ ├── SubscriptionPhase.php │ │ ├── SubscriptionPricing.php │ │ ├── SubscriptionPricingType.php │ │ ├── SubscriptionSource.php │ │ ├── SubscriptionStatus.php │ │ ├── SubscriptionTestResult.php │ │ ├── SwapPlanRequest.php │ │ ├── SwapPlanResponse.php │ │ ├── TaxCalculationPhase.php │ │ ├── TaxIds.php │ │ ├── TaxInclusionType.php │ │ ├── TeamMember.php │ │ ├── TeamMemberAssignedLocations.php │ │ ├── TeamMemberAssignedLocationsAssignmentType.php │ │ ├── TeamMemberBookingProfile.php │ │ ├── TeamMemberInvitationStatus.php │ │ ├── TeamMemberStatus.php │ │ ├── TeamMemberWage.php │ │ ├── Tender.php │ │ ├── TenderBankAccountDetails.php │ │ ├── TenderBankAccountDetailsStatus.php │ │ ├── TenderBuyNowPayLaterDetails.php │ │ ├── TenderBuyNowPayLaterDetailsBrand.php │ │ ├── TenderBuyNowPayLaterDetailsStatus.php │ │ ├── TenderCardDetails.php │ │ ├── TenderCardDetailsEntryMethod.php │ │ ├── TenderCardDetailsStatus.php │ │ ├── TenderCashDetails.php │ │ ├── TenderSquareAccountDetails.php │ │ ├── TenderSquareAccountDetailsStatus.php │ │ ├── TenderType.php │ │ ├── TerminalAction.php │ │ ├── TerminalActionActionType.php │ │ ├── TerminalActionQuery.php │ │ ├── TerminalActionQueryFilter.php │ │ ├── TerminalActionQuerySort.php │ │ ├── TerminalCheckout.php │ │ ├── TerminalCheckoutQuery.php │ │ ├── TerminalCheckoutQueryFilter.php │ │ ├── TerminalCheckoutQuerySort.php │ │ ├── TerminalRefund.php │ │ ├── TerminalRefundQuery.php │ │ ├── TerminalRefundQueryFilter.php │ │ ├── TerminalRefundQuerySort.php │ │ ├── TestWebhookSubscriptionRequest.php │ │ ├── TestWebhookSubscriptionResponse.php │ │ ├── TimeRange.php │ │ ├── TipSettings.php │ │ ├── Transaction.php │ │ ├── TransactionProduct.php │ │ ├── TransactionType.php │ │ ├── UnlinkCustomerFromGiftCardRequest.php │ │ ├── UnlinkCustomerFromGiftCardResponse.php │ │ ├── UpdateBookingCustomAttributeDefinitionRequest.php │ │ ├── UpdateBookingCustomAttributeDefinitionResponse.php │ │ ├── UpdateBookingRequest.php │ │ ├── UpdateBookingResponse.php │ │ ├── UpdateBreakTypeRequest.php │ │ ├── UpdateBreakTypeResponse.php │ │ ├── UpdateCatalogImageRequest.php │ │ ├── UpdateCatalogImageResponse.php │ │ ├── UpdateCustomerCustomAttributeDefinitionRequest.php │ │ ├── UpdateCustomerCustomAttributeDefinitionResponse.php │ │ ├── UpdateCustomerGroupRequest.php │ │ ├── UpdateCustomerGroupResponse.php │ │ ├── UpdateCustomerRequest.php │ │ ├── UpdateCustomerResponse.php │ │ ├── UpdateInvoiceRequest.php │ │ ├── UpdateInvoiceResponse.php │ │ ├── UpdateItemModifierListsRequest.php │ │ ├── UpdateItemModifierListsResponse.php │ │ ├── UpdateItemTaxesRequest.php │ │ ├── UpdateItemTaxesResponse.php │ │ ├── UpdateJobRequest.php │ │ ├── UpdateJobResponse.php │ │ ├── UpdateLocationCustomAttributeDefinitionRequest.php │ │ ├── UpdateLocationCustomAttributeDefinitionResponse.php │ │ ├── UpdateLocationRequest.php │ │ ├── UpdateLocationResponse.php │ │ ├── UpdateLocationSettingsRequest.php │ │ ├── UpdateLocationSettingsResponse.php │ │ ├── UpdateMerchantCustomAttributeDefinitionRequest.php │ │ ├── UpdateMerchantCustomAttributeDefinitionResponse.php │ │ ├── UpdateMerchantSettingsRequest.php │ │ ├── UpdateMerchantSettingsResponse.php │ │ ├── UpdateOrderCustomAttributeDefinitionRequest.php │ │ ├── UpdateOrderCustomAttributeDefinitionResponse.php │ │ ├── UpdateOrderRequest.php │ │ ├── UpdateOrderResponse.php │ │ ├── UpdatePaymentLinkRequest.php │ │ ├── UpdatePaymentLinkResponse.php │ │ ├── UpdatePaymentRequest.php │ │ ├── UpdatePaymentResponse.php │ │ ├── UpdateShiftRequest.php │ │ ├── UpdateShiftResponse.php │ │ ├── UpdateSubscriptionRequest.php │ │ ├── UpdateSubscriptionResponse.php │ │ ├── UpdateTeamMemberRequest.php │ │ ├── UpdateTeamMemberResponse.php │ │ ├── UpdateVendorRequest.php │ │ ├── UpdateVendorResponse.php │ │ ├── UpdateWageSettingRequest.php │ │ ├── UpdateWageSettingResponse.php │ │ ├── UpdateWebhookSubscriptionRequest.php │ │ ├── UpdateWebhookSubscriptionResponse.php │ │ ├── UpdateWebhookSubscriptionSignatureKeyRequest.php │ │ ├── UpdateWebhookSubscriptionSignatureKeyResponse.php │ │ ├── UpdateWorkweekConfigRequest.php │ │ ├── UpdateWorkweekConfigResponse.php │ │ ├── UpsertBookingCustomAttributeRequest.php │ │ ├── UpsertBookingCustomAttributeResponse.php │ │ ├── UpsertCatalogObjectRequest.php │ │ ├── UpsertCatalogObjectResponse.php │ │ ├── UpsertCustomerCustomAttributeRequest.php │ │ ├── UpsertCustomerCustomAttributeResponse.php │ │ ├── UpsertLocationCustomAttributeRequest.php │ │ ├── UpsertLocationCustomAttributeResponse.php │ │ ├── UpsertMerchantCustomAttributeRequest.php │ │ ├── UpsertMerchantCustomAttributeResponse.php │ │ ├── UpsertOrderCustomAttributeRequest.php │ │ ├── UpsertOrderCustomAttributeResponse.php │ │ ├── UpsertSnippetRequest.php │ │ ├── UpsertSnippetResponse.php │ │ ├── V1Device.php │ │ ├── V1ListOrdersRequest.php │ │ ├── V1ListOrdersResponse.php │ │ ├── V1Money.php │ │ ├── V1Order.php │ │ ├── V1OrderHistoryEntry.php │ │ ├── V1OrderHistoryEntryAction.php │ │ ├── V1OrderState.php │ │ ├── V1PhoneNumber.php │ │ ├── V1Tender.php │ │ ├── V1TenderCardBrand.php │ │ ├── V1TenderEntryMethod.php │ │ ├── V1TenderType.php │ │ ├── V1UpdateOrderRequest.php │ │ ├── V1UpdateOrderRequestAction.php │ │ ├── Vendor.php │ │ ├── VendorContact.php │ │ ├── VendorStatus.php │ │ ├── VisibilityFilter.php │ │ ├── VoidTransactionResponse.php │ │ ├── WageSetting.php │ │ ├── WebhookSubscription.php │ │ ├── Weekday.php │ │ └── WorkweekConfig.php │ ├── Server.php │ ├── SquareClient.php │ ├── SquareClientBuilder.php │ └── Utils │ │ ├── CompatibilityConverter.php │ │ ├── FileWrapper.php │ │ └── WebhooksHelper.php ├── Stripe │ ├── CHANGELOG.md │ ├── LICENSE │ ├── OPENAPI_VERSION │ ├── README.md │ ├── VERSION │ ├── composer.json │ ├── data │ │ └── ca-certificates.crt │ ├── init.php │ └── lib │ │ ├── Account.php │ │ ├── AccountLink.php │ │ ├── AccountSession.php │ │ ├── ApiOperations │ │ ├── All.php │ │ ├── Create.php │ │ ├── Delete.php │ │ ├── NestedResource.php │ │ ├── Request.php │ │ ├── Retrieve.php │ │ ├── Search.php │ │ ├── SingletonRetrieve.php │ │ └── Update.php │ │ ├── ApiRequestor.php │ │ ├── ApiResource.php │ │ ├── ApiResponse.php │ │ ├── ApplePayDomain.php │ │ ├── Application.php │ │ ├── ApplicationFee.php │ │ ├── ApplicationFeeRefund.php │ │ ├── Apps │ │ └── Secret.php │ │ ├── Balance.php │ │ ├── BalanceTransaction.php │ │ ├── BankAccount.php │ │ ├── BaseStripeClient.php │ │ ├── BaseStripeClientInterface.php │ │ ├── Billing │ │ ├── Alert.php │ │ ├── AlertTriggered.php │ │ ├── Meter.php │ │ ├── MeterEvent.php │ │ ├── MeterEventAdjustment.php │ │ └── MeterEventSummary.php │ │ ├── BillingPortal │ │ ├── Configuration.php │ │ └── Session.php │ │ ├── Capability.php │ │ ├── Card.php │ │ ├── CashBalance.php │ │ ├── Charge.php │ │ ├── Checkout │ │ └── Session.php │ │ ├── Climate │ │ ├── Order.php │ │ ├── Product.php │ │ └── Supplier.php │ │ ├── Collection.php │ │ ├── ConfirmationToken.php │ │ ├── ConnectCollectionTransfer.php │ │ ├── CountrySpec.php │ │ ├── Coupon.php │ │ ├── CreditNote.php │ │ ├── CreditNoteLineItem.php │ │ ├── Customer.php │ │ ├── CustomerBalanceTransaction.php │ │ ├── CustomerCashBalanceTransaction.php │ │ ├── CustomerSession.php │ │ ├── Discount.php │ │ ├── Dispute.php │ │ ├── Entitlements │ │ ├── ActiveEntitlement.php │ │ ├── ActiveEntitlementSummary.php │ │ └── Feature.php │ │ ├── EphemeralKey.php │ │ ├── ErrorObject.php │ │ ├── Event.php │ │ ├── Exception │ │ ├── ApiConnectionException.php │ │ ├── ApiErrorException.php │ │ ├── AuthenticationException.php │ │ ├── BadMethodCallException.php │ │ ├── CardException.php │ │ ├── ExceptionInterface.php │ │ ├── IdempotencyException.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidRequestException.php │ │ ├── OAuth │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidClientException.php │ │ │ ├── InvalidGrantException.php │ │ │ ├── InvalidRequestException.php │ │ │ ├── InvalidScopeException.php │ │ │ ├── OAuthErrorException.php │ │ │ ├── UnknownOAuthErrorException.php │ │ │ ├── UnsupportedGrantTypeException.php │ │ │ └── UnsupportedResponseTypeException.php │ │ ├── PermissionException.php │ │ ├── RateLimitException.php │ │ ├── SignatureVerificationException.php │ │ ├── UnexpectedValueException.php │ │ └── UnknownApiErrorException.php │ │ ├── ExchangeRate.php │ │ ├── File.php │ │ ├── FileLink.php │ │ ├── FinancialConnections │ │ ├── Account.php │ │ ├── AccountOwner.php │ │ ├── AccountOwnership.php │ │ ├── Session.php │ │ └── Transaction.php │ │ ├── Forwarding │ │ └── Request.php │ │ ├── FundingInstructions.php │ │ ├── HttpClient │ │ ├── ClientInterface.php │ │ ├── CurlClient.php │ │ └── StreamingClientInterface.php │ │ ├── Identity │ │ ├── VerificationReport.php │ │ └── VerificationSession.php │ │ ├── Invoice.php │ │ ├── InvoiceItem.php │ │ ├── InvoiceLineItem.php │ │ ├── InvoiceRenderingTemplate.php │ │ ├── Issuing │ │ ├── Authorization.php │ │ ├── Card.php │ │ ├── CardDetails.php │ │ ├── Cardholder.php │ │ ├── Dispute.php │ │ ├── PersonalizationDesign.php │ │ ├── PhysicalBundle.php │ │ ├── Token.php │ │ └── Transaction.php │ │ ├── LineItem.php │ │ ├── LoginLink.php │ │ ├── Mandate.php │ │ ├── OAuth.php │ │ ├── OAuthErrorObject.php │ │ ├── PaymentIntent.php │ │ ├── PaymentLink.php │ │ ├── PaymentMethod.php │ │ ├── PaymentMethodConfiguration.php │ │ ├── PaymentMethodDomain.php │ │ ├── Payout.php │ │ ├── Person.php │ │ ├── Plan.php │ │ ├── Price.php │ │ ├── Product.php │ │ ├── ProductFeature.php │ │ ├── PromotionCode.php │ │ ├── Quote.php │ │ ├── Radar │ │ ├── EarlyFraudWarning.php │ │ ├── ValueList.php │ │ └── ValueListItem.php │ │ ├── RecipientTransfer.php │ │ ├── Refund.php │ │ ├── Reporting │ │ ├── ReportRun.php │ │ └── ReportType.php │ │ ├── RequestTelemetry.php │ │ ├── ReserveTransaction.php │ │ ├── Review.php │ │ ├── SearchResult.php │ │ ├── Service │ │ ├── AbstractService.php │ │ ├── AbstractServiceFactory.php │ │ ├── AccountLinkService.php │ │ ├── AccountService.php │ │ ├── AccountSessionService.php │ │ ├── ApplePayDomainService.php │ │ ├── ApplicationFeeService.php │ │ ├── Apps │ │ │ ├── AppsServiceFactory.php │ │ │ └── SecretService.php │ │ ├── BalanceService.php │ │ ├── BalanceTransactionService.php │ │ ├── Billing │ │ │ ├── AlertService.php │ │ │ ├── BillingServiceFactory.php │ │ │ ├── MeterEventAdjustmentService.php │ │ │ ├── MeterEventService.php │ │ │ └── MeterService.php │ │ ├── BillingPortal │ │ │ ├── BillingPortalServiceFactory.php │ │ │ ├── ConfigurationService.php │ │ │ └── SessionService.php │ │ ├── ChargeService.php │ │ ├── Checkout │ │ │ ├── CheckoutServiceFactory.php │ │ │ └── SessionService.php │ │ ├── Climate │ │ │ ├── ClimateServiceFactory.php │ │ │ ├── OrderService.php │ │ │ ├── ProductService.php │ │ │ └── SupplierService.php │ │ ├── ConfirmationTokenService.php │ │ ├── CoreServiceFactory.php │ │ ├── CountrySpecService.php │ │ ├── CouponService.php │ │ ├── CreditNoteService.php │ │ ├── CustomerService.php │ │ ├── CustomerSessionService.php │ │ ├── DisputeService.php │ │ ├── Entitlements │ │ │ ├── ActiveEntitlementService.php │ │ │ ├── EntitlementsServiceFactory.php │ │ │ └── FeatureService.php │ │ ├── EphemeralKeyService.php │ │ ├── EventService.php │ │ ├── ExchangeRateService.php │ │ ├── FileLinkService.php │ │ ├── FileService.php │ │ ├── FinancialConnections │ │ │ ├── AccountService.php │ │ │ ├── FinancialConnectionsServiceFactory.php │ │ │ ├── SessionService.php │ │ │ └── TransactionService.php │ │ ├── Forwarding │ │ │ ├── ForwardingServiceFactory.php │ │ │ └── RequestService.php │ │ ├── Identity │ │ │ ├── IdentityServiceFactory.php │ │ │ ├── VerificationReportService.php │ │ │ └── VerificationSessionService.php │ │ ├── InvoiceItemService.php │ │ ├── InvoiceRenderingTemplateService.php │ │ ├── InvoiceService.php │ │ ├── Issuing │ │ │ ├── AuthorizationService.php │ │ │ ├── CardService.php │ │ │ ├── CardholderService.php │ │ │ ├── DisputeService.php │ │ │ ├── IssuingServiceFactory.php │ │ │ ├── PersonalizationDesignService.php │ │ │ ├── PhysicalBundleService.php │ │ │ ├── TokenService.php │ │ │ └── TransactionService.php │ │ ├── MandateService.php │ │ ├── OAuthService.php │ │ ├── PaymentIntentService.php │ │ ├── PaymentLinkService.php │ │ ├── PaymentMethodConfigurationService.php │ │ ├── PaymentMethodDomainService.php │ │ ├── PaymentMethodService.php │ │ ├── PayoutService.php │ │ ├── PlanService.php │ │ ├── PriceService.php │ │ ├── ProductService.php │ │ ├── PromotionCodeService.php │ │ ├── QuoteService.php │ │ ├── Radar │ │ │ ├── EarlyFraudWarningService.php │ │ │ ├── RadarServiceFactory.php │ │ │ ├── ValueListItemService.php │ │ │ └── ValueListService.php │ │ ├── RefundService.php │ │ ├── Reporting │ │ │ ├── ReportRunService.php │ │ │ ├── ReportTypeService.php │ │ │ └── ReportingServiceFactory.php │ │ ├── ReviewService.php │ │ ├── SetupAttemptService.php │ │ ├── SetupIntentService.php │ │ ├── ShippingRateService.php │ │ ├── Sigma │ │ │ ├── ScheduledQueryRunService.php │ │ │ └── SigmaServiceFactory.php │ │ ├── SourceService.php │ │ ├── SubscriptionItemService.php │ │ ├── SubscriptionScheduleService.php │ │ ├── SubscriptionService.php │ │ ├── Tax │ │ │ ├── CalculationService.php │ │ │ ├── RegistrationService.php │ │ │ ├── SettingsService.php │ │ │ ├── TaxServiceFactory.php │ │ │ └── TransactionService.php │ │ ├── TaxCodeService.php │ │ ├── TaxIdService.php │ │ ├── TaxRateService.php │ │ ├── Terminal │ │ │ ├── ConfigurationService.php │ │ │ ├── ConnectionTokenService.php │ │ │ ├── LocationService.php │ │ │ ├── ReaderService.php │ │ │ └── TerminalServiceFactory.php │ │ ├── TestHelpers │ │ │ ├── ConfirmationTokenService.php │ │ │ ├── CustomerService.php │ │ │ ├── Issuing │ │ │ │ ├── AuthorizationService.php │ │ │ │ ├── CardService.php │ │ │ │ ├── IssuingServiceFactory.php │ │ │ │ ├── PersonalizationDesignService.php │ │ │ │ └── TransactionService.php │ │ │ ├── RefundService.php │ │ │ ├── Terminal │ │ │ │ ├── ReaderService.php │ │ │ │ └── TerminalServiceFactory.php │ │ │ ├── TestClockService.php │ │ │ ├── TestHelpersServiceFactory.php │ │ │ └── Treasury │ │ │ │ ├── InboundTransferService.php │ │ │ │ ├── OutboundPaymentService.php │ │ │ │ ├── OutboundTransferService.php │ │ │ │ ├── ReceivedCreditService.php │ │ │ │ ├── ReceivedDebitService.php │ │ │ │ └── TreasuryServiceFactory.php │ │ ├── TokenService.php │ │ ├── TopupService.php │ │ ├── TransferService.php │ │ ├── Treasury │ │ │ ├── CreditReversalService.php │ │ │ ├── DebitReversalService.php │ │ │ ├── FinancialAccountService.php │ │ │ ├── InboundTransferService.php │ │ │ ├── OutboundPaymentService.php │ │ │ ├── OutboundTransferService.php │ │ │ ├── ReceivedCreditService.php │ │ │ ├── ReceivedDebitService.php │ │ │ ├── TransactionEntryService.php │ │ │ ├── TransactionService.php │ │ │ └── TreasuryServiceFactory.php │ │ └── WebhookEndpointService.php │ │ ├── SetupAttempt.php │ │ ├── SetupIntent.php │ │ ├── ShippingRate.php │ │ ├── Sigma │ │ └── ScheduledQueryRun.php │ │ ├── SingletonApiResource.php │ │ ├── Source.php │ │ ├── SourceMandateNotification.php │ │ ├── SourceTransaction.php │ │ ├── Stripe.php │ │ ├── StripeClient.php │ │ ├── StripeClientInterface.php │ │ ├── StripeObject.php │ │ ├── StripeStreamingClientInterface.php │ │ ├── Subscription.php │ │ ├── SubscriptionItem.php │ │ ├── SubscriptionSchedule.php │ │ ├── Tax │ │ ├── Calculation.php │ │ ├── CalculationLineItem.php │ │ ├── Registration.php │ │ ├── Settings.php │ │ ├── Transaction.php │ │ └── TransactionLineItem.php │ │ ├── TaxCode.php │ │ ├── TaxDeductedAtSource.php │ │ ├── TaxId.php │ │ ├── TaxRate.php │ │ ├── Terminal │ │ ├── Configuration.php │ │ ├── ConnectionToken.php │ │ ├── Location.php │ │ └── Reader.php │ │ ├── TestHelpers │ │ └── TestClock.php │ │ ├── Token.php │ │ ├── Topup.php │ │ ├── Transfer.php │ │ ├── TransferReversal.php │ │ ├── Treasury │ │ ├── CreditReversal.php │ │ ├── DebitReversal.php │ │ ├── FinancialAccount.php │ │ ├── FinancialAccountFeatures.php │ │ ├── InboundTransfer.php │ │ ├── OutboundPayment.php │ │ ├── OutboundTransfer.php │ │ ├── ReceivedCredit.php │ │ ├── ReceivedDebit.php │ │ ├── Transaction.php │ │ └── TransactionEntry.php │ │ ├── UsageRecord.php │ │ ├── UsageRecordSummary.php │ │ ├── Util │ │ ├── ApiVersion.php │ │ ├── CaseInsensitiveArray.php │ │ ├── DefaultLogger.php │ │ ├── LoggerInterface.php │ │ ├── ObjectTypes.php │ │ ├── RandomGenerator.php │ │ ├── RequestOptions.php │ │ ├── Set.php │ │ └── Util.php │ │ ├── Webhook.php │ │ ├── WebhookEndpoint.php │ │ └── WebhookSignature.php ├── Symfony │ ├── Component │ │ └── Translation │ │ │ ├── CHANGELOG.md │ │ │ ├── Catalogue │ │ │ ├── AbstractOperation.php │ │ │ ├── MergeOperation.php │ │ │ ├── OperationInterface.php │ │ │ └── TargetOperation.php │ │ │ ├── CatalogueMetadataAwareInterface.php │ │ │ ├── Command │ │ │ ├── TranslationPullCommand.php │ │ │ ├── TranslationPushCommand.php │ │ │ ├── TranslationTrait.php │ │ │ └── XliffLintCommand.php │ │ │ ├── DataCollector │ │ │ └── TranslationDataCollector.php │ │ │ ├── DataCollectorTranslator.php │ │ │ ├── DependencyInjection │ │ │ ├── DataCollectorTranslatorPass.php │ │ │ ├── LoggingTranslatorPass.php │ │ │ ├── TranslationDumperPass.php │ │ │ ├── TranslationExtractorPass.php │ │ │ ├── TranslatorPass.php │ │ │ └── TranslatorPathsPass.php │ │ │ ├── Dumper │ │ │ ├── CsvFileDumper.php │ │ │ ├── DumperInterface.php │ │ │ ├── FileDumper.php │ │ │ ├── IcuResFileDumper.php │ │ │ ├── IniFileDumper.php │ │ │ ├── JsonFileDumper.php │ │ │ ├── MoFileDumper.php │ │ │ ├── PhpFileDumper.php │ │ │ ├── PoFileDumper.php │ │ │ ├── QtFileDumper.php │ │ │ ├── XliffFileDumper.php │ │ │ └── YamlFileDumper.php │ │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── IncompleteDsnException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidResourceException.php │ │ │ ├── LogicException.php │ │ │ ├── MissingRequiredOptionException.php │ │ │ ├── NotFoundResourceException.php │ │ │ ├── ProviderException.php │ │ │ ├── ProviderExceptionInterface.php │ │ │ ├── RuntimeException.php │ │ │ └── UnsupportedSchemeException.php │ │ │ ├── Extractor │ │ │ ├── AbstractFileExtractor.php │ │ │ ├── ChainExtractor.php │ │ │ ├── ExtractorInterface.php │ │ │ ├── PhpAstExtractor.php │ │ │ ├── PhpExtractor.php │ │ │ ├── PhpStringTokenParser.php │ │ │ └── Visitor │ │ │ │ ├── AbstractVisitor.php │ │ │ │ ├── ConstraintVisitor.php │ │ │ │ ├── TransMethodVisitor.php │ │ │ │ └── TranslatableMessageVisitor.php │ │ │ ├── Formatter │ │ │ ├── IntlFormatter.php │ │ │ ├── IntlFormatterInterface.php │ │ │ ├── MessageFormatter.php │ │ │ └── MessageFormatterInterface.php │ │ │ ├── IdentityTranslator.php │ │ │ ├── LICENSE │ │ │ ├── Loader │ │ │ ├── ArrayLoader.php │ │ │ ├── CsvFileLoader.php │ │ │ ├── FileLoader.php │ │ │ ├── IcuDatFileLoader.php │ │ │ ├── IcuResFileLoader.php │ │ │ ├── IniFileLoader.php │ │ │ ├── JsonFileLoader.php │ │ │ ├── LoaderInterface.php │ │ │ ├── MoFileLoader.php │ │ │ ├── PhpFileLoader.php │ │ │ ├── PoFileLoader.php │ │ │ ├── QtFileLoader.php │ │ │ ├── XliffFileLoader.php │ │ │ └── YamlFileLoader.php │ │ │ ├── LocaleSwitcher.php │ │ │ ├── LoggingTranslator.php │ │ │ ├── MessageCatalogue.php │ │ │ ├── MessageCatalogueInterface.php │ │ │ ├── MetadataAwareInterface.php │ │ │ ├── Provider │ │ │ ├── AbstractProviderFactory.php │ │ │ ├── Dsn.php │ │ │ ├── FilteringProvider.php │ │ │ ├── NullProvider.php │ │ │ ├── NullProviderFactory.php │ │ │ ├── ProviderFactoryInterface.php │ │ │ ├── ProviderInterface.php │ │ │ ├── TranslationProviderCollection.php │ │ │ └── TranslationProviderCollectionFactory.php │ │ │ ├── PseudoLocalizationTranslator.php │ │ │ ├── README.md │ │ │ ├── Reader │ │ │ ├── TranslationReader.php │ │ │ └── TranslationReaderInterface.php │ │ │ ├── Resources │ │ │ ├── bin │ │ │ │ └── translation-status.php │ │ │ ├── data │ │ │ │ └── parents.json │ │ │ ├── functions.php │ │ │ └── schemas │ │ │ │ ├── xliff-core-1.2-transitional.xsd │ │ │ │ ├── xliff-core-2.0.xsd │ │ │ │ └── xml.xsd │ │ │ ├── Test │ │ │ ├── ProviderFactoryTestCase.php │ │ │ └── ProviderTestCase.php │ │ │ ├── TranslatableMessage.php │ │ │ ├── Translator.php │ │ │ ├── TranslatorBag.php │ │ │ ├── TranslatorBagInterface.php │ │ │ ├── Util │ │ │ ├── ArrayConverter.php │ │ │ └── XliffUtils.php │ │ │ ├── Writer │ │ │ ├── TranslationWriter.php │ │ │ └── TranslationWriterInterface.php │ │ │ └── composer.json │ ├── Contracts │ │ └── Translation │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── LocaleAwareInterface.php │ │ │ ├── README.md │ │ │ ├── Test │ │ │ └── TranslatorTest.php │ │ │ ├── TranslatableInterface.php │ │ │ ├── TranslatorInterface.php │ │ │ ├── TranslatorTrait.php │ │ │ └── composer.json │ └── Polyfill │ │ └── Mbstring │ │ ├── LICENSE │ │ ├── Mbstring.php │ │ ├── README.md │ │ ├── Resources │ │ └── unidata │ │ │ ├── caseFolding.php │ │ │ ├── lowerCase.php │ │ │ ├── titleCaseRegexp.php │ │ │ └── upperCase.php │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json ├── Unirest │ ├── Configuration.php │ ├── HttpClient.php │ ├── Request │ │ ├── Body.php │ │ └── Request.php │ └── Response.php └── apimatic │ └── jsonmapper │ ├── AnyOfValidationException.php │ ├── JsonMapper.php │ ├── JsonMapperException.php │ ├── OneOfValidationException.php │ └── TypeCombination.php ├── license.txt ├── package.json ├── phpcs.xml.dist ├── phpunit-printer.yml ├── phpunit.xml ├── readme.md ├── readme.txt ├── src ├── API │ ├── WP │ │ └── Attachments.php │ └── v3 │ │ ├── Endpoint.php │ │ └── Notifications.php ├── Adjustments │ └── Adjustment.php ├── Admin │ ├── Assets │ │ ├── Localization.php │ │ ├── Scripts.php │ │ └── Styles.php │ ├── Customers │ │ └── Emails.php │ ├── Discounts │ │ ├── Editor │ │ │ ├── Amount.php │ │ │ ├── Categories.php │ │ │ ├── Code.php │ │ │ ├── Excluded.php │ │ │ ├── Expiration.php │ │ │ ├── Form.php │ │ │ ├── Header.php │ │ │ ├── Hidden.php │ │ │ ├── MaxUses.php │ │ │ ├── Minimum.php │ │ │ ├── Name.php │ │ │ ├── Notes.php │ │ │ ├── Products.php │ │ │ ├── Start.php │ │ │ ├── Status.php │ │ │ └── UseOnce.php │ │ ├── Generate.php │ │ ├── ListTable.php │ │ ├── Manager.php │ │ └── Screen.php │ ├── Downloads │ │ ├── Editor │ │ │ ├── Details.php │ │ │ ├── Files.php │ │ │ ├── Notes.php │ │ │ ├── Section.php │ │ │ ├── Sections.php │ │ │ ├── Settings.php │ │ │ └── VariablePrices.php │ │ ├── Filters.php │ │ ├── Meta.php │ │ ├── Metabox.php │ │ └── Metaboxes │ │ │ ├── Details.php │ │ │ ├── Metabox.php │ │ │ └── Stats.php │ ├── Emails │ │ ├── ListTable.php │ │ ├── LogsTable.php │ │ ├── Manager.php │ │ ├── Messages.php │ │ ├── Reset.php │ │ └── Screen.php │ ├── Exports │ │ ├── Exporters │ │ │ ├── APIRequests.php │ │ │ ├── Customers.php │ │ │ ├── DownloadHistory.php │ │ │ ├── Downloads.php │ │ │ ├── Earnings.php │ │ │ ├── Exporter.php │ │ │ ├── Orders.php │ │ │ ├── ProductSales.php │ │ │ ├── SalesEarnings.php │ │ │ ├── TaxedCustomers.php │ │ │ ├── TaxedOrders.php │ │ │ └── Traits │ │ │ │ └── TempData.php │ │ ├── Legacy │ │ │ ├── BatchExport.php │ │ │ └── Export.php │ │ ├── Loader.php │ │ └── Registry.php │ ├── Extensions │ │ ├── Card.php │ │ ├── DownloadURL.php │ │ ├── Emails.php │ │ ├── Extension.php │ │ ├── ExtensionPage.php │ │ ├── Extension_Manager.php │ │ ├── ExtensionsAPI.php │ │ ├── Legacy.php │ │ ├── Legacy │ │ │ ├── AutoRegister.php │ │ │ └── EUVAT.php │ │ ├── Menu.php │ │ ├── ProductData.php │ │ └── Traits │ │ │ ├── Buttons.php │ │ │ └── Emails.php │ ├── Forms │ │ ├── Field.php │ │ └── Handler.php │ ├── Installers │ │ ├── Install_Skin.php │ │ ├── PluginSilentUpgrader.php │ │ └── PluginSilentUpgraderSkin.php │ ├── List_Table.php │ ├── Menu │ │ ├── Header.php │ │ ├── LinkClass.php │ │ ├── Pages.php │ │ └── SecondaryNavigation.php │ ├── Notifications │ │ ├── GBLegacy.php │ │ ├── Loader.php │ │ └── Notification.php │ ├── Onboarding │ │ ├── Ajax.php │ │ ├── Helpers.php │ │ ├── Notice.php │ │ ├── Steps │ │ │ ├── BusinessInfo.php │ │ │ ├── ConfigureEmails.php │ │ │ ├── PaymentMethods.php │ │ │ ├── Products.php │ │ │ ├── Step.php │ │ │ └── Tools.php │ │ ├── Tools.php │ │ └── Wizard.php │ ├── Order_Sections.php │ ├── PassHandler │ │ ├── Actions.php │ │ ├── Ajax.php │ │ ├── Handler.php │ │ └── Settings.php │ ├── Pass_Manager.php │ ├── Pointers.php │ ├── Promos │ │ ├── About.php │ │ ├── Footer │ │ │ ├── FlyoutMenu.php │ │ │ ├── Links.php │ │ │ ├── Loader.php │ │ │ ├── Review.php │ │ │ └── Version.php │ │ ├── Notices │ │ │ ├── Emails.php │ │ │ ├── EmptyCartBehavior.php │ │ │ ├── Five_Star_Review_Dashboard.php │ │ │ ├── Five_Star_Review_Settings.php │ │ │ ├── License_Upgrade_Notice.php │ │ │ ├── Lite.php │ │ │ ├── Notice.php │ │ │ ├── PriceChanges.php │ │ │ ├── Recurring.php │ │ │ ├── SquareWebhooksModal.php │ │ │ └── VATHandling.php │ │ └── PromoHandler.php │ ├── Refund_Items_Table.php │ ├── Reports_Sections.php │ ├── Sections.php │ ├── Sections │ │ └── Section.php │ ├── Settings │ │ ├── Ajax │ │ │ └── Toggle.php │ │ ├── EmailMarketing.php │ │ ├── EmptyCartBehavior.php │ │ ├── Invoices.php │ │ ├── Pointers.php │ │ ├── Recurring.php │ │ ├── Register.php │ │ ├── Reviews.php │ │ ├── Sanitize.php │ │ ├── Sanitize │ │ │ └── Tabs │ │ │ │ ├── Gateways │ │ │ │ ├── Accounting.php │ │ │ │ ├── Checkout.php │ │ │ │ ├── EddStripe.php │ │ │ │ └── Main.php │ │ │ │ ├── General │ │ │ │ └── Currency.php │ │ │ │ ├── Misc │ │ │ │ └── FileDownloads.php │ │ │ │ ├── Section.php │ │ │ │ ├── Tab.php │ │ │ │ └── Taxes │ │ │ │ ├── Main.php │ │ │ │ └── Rates.php │ │ ├── Screen.php │ │ ├── Tabs │ │ │ ├── Emails.php │ │ │ ├── Extensions.php │ │ │ ├── Gateways.php │ │ │ ├── General.php │ │ │ ├── Licenses.php │ │ │ ├── Marketing.php │ │ │ ├── Misc.php │ │ │ ├── Privacy.php │ │ │ ├── Tab.php │ │ │ └── Taxes.php │ │ ├── Traits │ │ │ ├── AjaxToggle.php │ │ │ └── Helpers.php │ │ ├── WPConsent.php │ │ └── WP_SMTP.php │ ├── SiteHealth │ │ ├── Cron.php │ │ ├── Direct.php │ │ ├── Gateways.php │ │ ├── General.php │ │ ├── Information.php │ │ ├── Licenses.php │ │ ├── Pages.php │ │ ├── Sessions.php │ │ ├── Tables.php │ │ ├── Taxes.php │ │ ├── Templates.php │ │ ├── Test.php │ │ └── Tests.php │ ├── Styles.php │ ├── Tools │ │ ├── DebugLog.php │ │ ├── Labs.php │ │ ├── Loader.php │ │ ├── Screen.php │ │ └── Traits │ │ │ └── Profilers.php │ ├── Upgrades │ │ └── v3 │ │ │ ├── Base.php │ │ │ ├── Customer_Addresses.php │ │ │ ├── Customer_Email_Addresses.php │ │ │ ├── Customer_Notes.php │ │ │ ├── Data_Migrator.php │ │ │ ├── Discounts.php │ │ │ ├── Logs.php │ │ │ ├── Order_Notes.php │ │ │ ├── Orders.php │ │ │ ├── Remove_Legacy_Data.php │ │ │ └── Tax_Rates.php │ └── Utils │ │ └── Page.php ├── Assets │ ├── Checkout.php │ ├── Localization.php │ └── Styles.php ├── Base_Object.php ├── Blocks │ ├── Checkout │ │ ├── Attributes.php │ │ └── Elements │ │ │ ├── Cart.php │ │ │ ├── PaymentDetails.php │ │ │ ├── PersonalInfo.php │ │ │ ├── PurchaseForm.php │ │ │ └── UserDetails.php │ ├── Loader.php │ └── Utility.php ├── CLI │ └── Migration │ │ ├── CustomerEmails.php │ │ └── Discounts.php ├── Captcha │ ├── Providers │ │ ├── Provider.php │ │ ├── ProviderInterface.php │ │ ├── Recaptcha.php │ │ └── Turnstile.php │ ├── Utility.php │ └── Validate.php ├── Checkout │ ├── Address.php │ ├── AutoRegister.php │ ├── Errors.php │ ├── Loader.php │ └── Validator.php ├── Compat │ ├── Base.php │ ├── Customer.php │ ├── CustomerMeta.php │ ├── Discount.php │ ├── Discount_Query.php │ ├── Log.php │ ├── Payment.php │ ├── Tax.php │ └── Template.php ├── Compatibility │ ├── Hosts │ │ ├── Host.php │ │ ├── Pantheon.php │ │ └── WPEngine.php │ ├── Loader.php │ ├── Plugins │ │ ├── Plugin.php │ │ ├── UserSwitching.php │ │ └── Wordfence.php │ └── WP │ │ └── Performance.php ├── Component.php ├── Core.php ├── Cron │ ├── Components │ │ ├── Cart.php │ │ ├── Component.php │ │ ├── EmailSummaries.php │ │ ├── EmailSummariesBlurbs.php │ │ ├── Exports.php │ │ ├── NewUser.php │ │ ├── Notifications.php │ │ ├── Orders.php │ │ ├── Passes.php │ │ ├── Sessions.php │ │ ├── Store.php │ │ └── Stripe.php │ ├── Events │ │ ├── DailyEvents.php │ │ ├── Event.php │ │ ├── SessionCleanup.php │ │ ├── SingleEvent.php │ │ ├── StripeRateLimitingCleanup.php │ │ └── WeeklyEvents.php │ ├── Loader.php │ ├── Schedules │ │ ├── Schedule.php │ │ └── SessionCleanup.php │ └── Traits │ │ ├── Clear.php │ │ └── NextScheduled.php ├── Currency │ ├── Currency.php │ └── Money_Formatter.php ├── Customers │ ├── Customer_Address.php │ ├── Customer_Email_Address.php │ └── Recalculations.php ├── Database │ ├── Base.php │ ├── Column.php │ ├── Components.php │ ├── NotificationsDB.php │ ├── Queries │ │ ├── Adjustment.php │ │ ├── Compare.php │ │ ├── Customer.php │ │ ├── Customer_Address.php │ │ ├── Customer_Email_Address.php │ │ ├── Date.php │ │ ├── Email.php │ │ ├── Log.php │ │ ├── LogEmail.php │ │ ├── Log_Api_Request.php │ │ ├── Log_File_Download.php │ │ ├── Meta.php │ │ ├── Note.php │ │ ├── Notification.php │ │ ├── Order.php │ │ ├── Order_Address.php │ │ ├── Order_Adjustment.php │ │ ├── Order_Item.php │ │ ├── Order_Transaction.php │ │ ├── Session.php │ │ └── TaxRate.php │ ├── Query.php │ ├── Row.php │ ├── Rows │ │ ├── Adjustment.php │ │ ├── Customer.php │ │ ├── Customer_Address.php │ │ ├── Customer_Email_Address.php │ │ ├── Email.php │ │ ├── Log.php │ │ ├── Log_Api_Request.php │ │ ├── Log_File_Download.php │ │ ├── Note.php │ │ ├── Notification.php │ │ ├── Order.php │ │ ├── Order_Address.php │ │ ├── Order_Adjustment.php │ │ ├── Order_Item.php │ │ └── Order_Transaction.php │ ├── Schema.php │ ├── Schemas │ │ ├── Adjustments.php │ │ ├── Customer_Addresses.php │ │ ├── Customer_Email_Addresses.php │ │ ├── Customers.php │ │ ├── Emails.php │ │ ├── Logs.php │ │ ├── LogsEmails.php │ │ ├── Logs_Api_Requests.php │ │ ├── Logs_File_Downloads.php │ │ ├── Notes.php │ │ ├── Notifications.php │ │ ├── Order_Addresses.php │ │ ├── Order_Adjustments.php │ │ ├── Order_Items.php │ │ ├── Order_Transactions.php │ │ ├── Orders.php │ │ ├── Sessions.php │ │ └── TaxRates.php │ ├── Table.php │ └── Tables │ │ ├── Adjustment_Meta.php │ │ ├── Adjustments.php │ │ ├── Customer_Addresses.php │ │ ├── Customer_Email_Addresses.php │ │ ├── Customer_Meta.php │ │ ├── Customers.php │ │ ├── EmailMeta.php │ │ ├── Emails.php │ │ ├── Log_Meta.php │ │ ├── Logs.php │ │ ├── LogsEmailMeta.php │ │ ├── LogsEmails.php │ │ ├── Logs_Api_Request_Meta.php │ │ ├── Logs_Api_Requests.php │ │ ├── Logs_File_Download_Meta.php │ │ ├── Logs_File_Downloads.php │ │ ├── Note_Meta.php │ │ ├── Notes.php │ │ ├── Notifications.php │ │ ├── Order_Addresses.php │ │ ├── Order_Adjustment_Meta.php │ │ ├── Order_Adjustments.php │ │ ├── Order_Item_Meta.php │ │ ├── Order_Items.php │ │ ├── Order_Meta.php │ │ ├── Order_Transactions.php │ │ ├── Orders.php │ │ ├── Sessions.php │ │ └── TaxRates.php ├── Deprecated │ └── EmptyClass.php ├── Discounts │ ├── ItemAmount.php │ └── Search.php ├── Downloads │ ├── Process.php │ ├── Query.php │ ├── Recalculations.php │ ├── Search.php │ ├── Service.php │ └── Services.php ├── Elementor │ ├── Loader.php │ ├── Subscribers │ │ ├── Checkout.php │ │ └── Widget.php │ ├── Utils │ │ └── Page.php │ └── Widgets │ │ ├── Base.php │ │ ├── Checkout.php │ │ ├── Config │ │ ├── Base.php │ │ ├── Checkout.php │ │ ├── Checkout │ │ │ ├── Cart.php │ │ │ ├── General.php │ │ │ ├── Styles │ │ │ │ ├── Buttons.php │ │ │ │ ├── Cart.php │ │ │ │ ├── FormElements.php │ │ │ │ ├── FormSections.php │ │ │ │ ├── General.php │ │ │ │ └── Sections.php │ │ │ └── Titles.php │ │ └── Traits │ │ │ ├── Controls.php │ │ │ ├── Groups.php │ │ │ └── Options.php │ │ ├── Controls │ │ └── Registry.php │ │ └── Traits │ │ └── ConfigurableControls.php ├── Emails │ ├── Base.php │ ├── Email.php │ ├── Handler.php │ ├── Legacy.php │ ├── Loader.php │ ├── LogEmail.php │ ├── Registry.php │ ├── Tags │ │ ├── Handler.php │ │ ├── Registry.php │ │ └── Render.php │ ├── Templates │ │ ├── AdminOrderNotice.php │ │ ├── AdminOrderRefund.php │ │ ├── EmailTemplate.php │ │ ├── NewUser.php │ │ ├── NewUserAdmin.php │ │ ├── OrderReceipt.php │ │ ├── OrderRefund.php │ │ ├── PasswordReset.php │ │ ├── Previews │ │ │ └── Data.php │ │ ├── Registry.php │ │ ├── StripeEarlyFraudWarning.php │ │ ├── TemplateInterface.php │ │ ├── Traits │ │ │ ├── Actions.php │ │ │ ├── Legacy.php │ │ │ └── Previews.php │ │ └── UserVerification.php │ ├── Traits │ │ ├── Orders.php │ │ └── Preview.php │ ├── Triggers.php │ └── Types │ │ ├── AdminOrderNotice.php │ │ ├── AdminOrderRefund.php │ │ ├── Email.php │ │ ├── LegacyPaymentFilters.php │ │ ├── NewUser.php │ │ ├── NewUserAdmin.php │ │ ├── OrderReceipt.php │ │ ├── OrderRefund.php │ │ ├── StripeEarlyFraudWarning.php │ │ └── UserVerification.php ├── EventManagement │ ├── EventManager.php │ ├── MiniManager.php │ ├── PluginAPIManager.php │ ├── Subscriber.php │ ├── SubscriberInterface.php │ └── Subscribers.php ├── Extensions │ ├── ExtensionRegistry.php │ ├── Handler.php │ └── Updater.php ├── Fees │ └── Handler.php ├── Forms │ ├── Checkout │ │ ├── Address.php │ │ ├── Address2.php │ │ ├── City.php │ │ ├── Country.php │ │ ├── Field.php │ │ ├── PersonalInfo │ │ │ ├── Email.php │ │ │ ├── Field.php │ │ │ ├── FirstName.php │ │ │ └── LastName.php │ │ ├── Phone.php │ │ ├── PostalCode.php │ │ ├── Registry.php │ │ └── State.php │ ├── Fields │ │ ├── Field.php │ │ └── FieldInterface.php │ ├── Handler.php │ ├── Login │ │ ├── Password.php │ │ ├── Remember.php │ │ └── Username.php │ └── Register │ │ ├── Email.php │ │ ├── Password.php │ │ ├── PasswordConfirm.php │ │ ├── Username.php │ │ └── Weak.php ├── Gateways │ ├── Gateway.php │ ├── PayPal │ │ ├── API.php │ │ ├── AccountStatusValidator.php │ │ ├── Exceptions │ │ │ ├── API_Exception.php │ │ │ ├── Authentication_Exception.php │ │ │ ├── Gateway_Exception.php │ │ │ ├── InvalidMerchantDetails.php │ │ │ └── MissingMerchantDetails.php │ │ ├── Gateway.php │ │ ├── IPN.php │ │ ├── MerchantAccount.php │ │ ├── Token.php │ │ └── Webhooks │ │ │ ├── Events │ │ │ ├── Customer_Dispute_Created.php │ │ │ ├── Payment_Capture_Completed.php │ │ │ ├── Payment_Capture_Denied.php │ │ │ ├── Payment_Capture_Refunded.php │ │ │ └── Webhook_Event.php │ │ │ ├── Webhook_Handler.php │ │ │ └── Webhook_Validator.php │ ├── PayPalStandard │ │ └── Gateway.php │ ├── Registry.php │ ├── Square │ │ ├── Admin │ │ │ ├── Orders │ │ │ │ └── Refunds.php │ │ │ └── Settings │ │ │ │ ├── Register.php │ │ │ │ └── Render.php │ │ ├── ApplicationFee.php │ │ ├── Checkout │ │ │ ├── Form.php │ │ │ ├── Process.php │ │ │ └── Transactions │ │ │ │ ├── Single.php │ │ │ │ ├── Subscription.php │ │ │ │ └── Transaction.php │ │ ├── Connection.php │ │ ├── Gateway.php │ │ ├── Helpers │ │ │ ├── Address.php │ │ │ ├── Api.php │ │ │ ├── Compat.php │ │ │ ├── Currency.php │ │ │ ├── Customer.php │ │ │ ├── Errors.php │ │ │ ├── Mode.php │ │ │ ├── Order.php │ │ │ ├── Payment.php │ │ │ └── Setting.php │ │ └── Webhooks │ │ │ ├── Events │ │ │ ├── CustomerCreated.php │ │ │ ├── CustomerDeleted.php │ │ │ ├── DisputeCreated.php │ │ │ ├── Event.php │ │ │ ├── LocationCreated.php │ │ │ ├── LocationUpdated.php │ │ │ ├── OrderUpdated.php │ │ │ └── RefundUpdated.php │ │ │ ├── Listener.php │ │ │ └── Manager.php │ ├── StoreGateway │ │ └── Gateway.php │ └── Stripe │ │ ├── API.php │ │ ├── Admin │ │ ├── Connect.php │ │ ├── LicenseManager.php │ │ └── Settings.php │ │ ├── ApplicationFee.php │ │ ├── Checkout │ │ ├── Address.php │ │ ├── Complete.php │ │ ├── Confirmation.php │ │ ├── Form.php │ │ ├── Order.php │ │ ├── Recurring.php │ │ └── Traits │ │ │ └── Recurring.php │ │ ├── Connect.php │ │ ├── Gateway.php │ │ ├── Intents.php │ │ ├── License.php │ │ ├── PaymentIntents │ │ ├── AmountDetails.php │ │ ├── Builder.php │ │ └── LineItems │ │ │ ├── Builder.php │ │ │ ├── Formatter.php │ │ │ ├── Item.php │ │ │ └── PaymentMethodOptions.php │ │ ├── PaymentMethods.php │ │ ├── PaymentMethods │ │ ├── AchDebit.php │ │ ├── AcssDebit.php │ │ ├── Affirm.php │ │ ├── Alipay.php │ │ ├── AmazonPay.php │ │ ├── ApplePay.php │ │ ├── BacsDebit.php │ │ ├── Bancontact.php │ │ ├── Card.php │ │ ├── CartesBancaires.php │ │ ├── Cashapp.php │ │ ├── Eps.php │ │ ├── Fpx.php │ │ ├── Giropay.php │ │ ├── GooglePay.php │ │ ├── Grabpay.php │ │ ├── Ideal.php │ │ ├── Klarna.php │ │ ├── Link.php │ │ ├── Method.php │ │ ├── P24.php │ │ ├── RevolutPay.php │ │ ├── SepaDebit.php │ │ ├── Sofort.php │ │ ├── Twint.php │ │ ├── UsBankAccount.php │ │ └── WechatPay.php │ │ ├── StatementDescriptor.php │ │ └── Webhooks │ │ ├── Events │ │ ├── ChargeDisputeCreated.php │ │ ├── ChargeFailed.php │ │ ├── ChargeRefunded.php │ │ ├── ChargeSucceeded.php │ │ ├── Event.php │ │ ├── InvoiceCreated.php │ │ ├── RadarEarlyFraudWarningCreated.php │ │ ├── ReviewClosed.php │ │ ├── ReviewOpened.php │ │ └── Traits │ │ │ ├── Mode.php │ │ │ └── Order.php │ │ └── Listener.php ├── Globals │ ├── Loader.php │ └── Polyfills │ │ ├── AutoRegister.php │ │ ├── PHP.php │ │ └── WordPress.php ├── HTML │ ├── Base.php │ ├── CategorySelect.php │ ├── Checkbox.php │ ├── CheckboxToggle.php │ ├── CountrySelect.php │ ├── DiscountSelect.php │ ├── Elements.php │ ├── FromTo.php │ ├── Multicheck.php │ ├── Number.php │ ├── Phone.php │ ├── ProductSelect.php │ ├── Region.php │ ├── RegionSelect.php │ ├── Select.php │ ├── Text.php │ ├── Textarea.php │ ├── TimelineTooltip.php │ ├── Tooltip.php │ ├── Traits │ │ └── ShopStates.php │ └── Upload.php ├── Integrations │ ├── Elementor.php │ ├── Integration.php │ ├── Registry.php │ └── WPCode.php ├── Licensing │ ├── API.php │ ├── Ajax.php │ ├── License.php │ ├── Messages.php │ ├── Settings.php │ └── Traits │ │ └── Controls.php ├── Lite │ ├── Admin │ │ ├── Menu.php │ │ ├── PassHandler │ │ │ ├── Connect.php │ │ │ └── Pointer.php │ │ └── Promos │ │ │ ├── Notices │ │ │ └── FeaturedDownloads.php │ │ │ └── PromoHandler.php │ └── Core.php ├── Logging.php ├── Logs │ ├── Api_Request_Log.php │ ├── File_Download_Log.php │ └── Log.php ├── Models │ ├── Download.php │ └── Notification.php ├── Notes │ └── Note.php ├── Orders │ ├── DeferredActions.php │ ├── Number.php │ ├── Order.php │ ├── Order_Address.php │ ├── Order_Adjustment.php │ ├── Order_Item.php │ ├── Order_Transaction.php │ └── Refunds │ │ ├── Number.php │ │ └── Validator.php ├── Profiler │ ├── Cart.php │ ├── Profiler.php │ └── Traits │ │ ├── Log.php │ │ ├── Settings.php │ │ └── Timing.php ├── Reports │ ├── Abstracts │ │ └── MultiGraph.php │ ├── Data │ │ ├── Base_Object.php │ │ ├── Chart_Endpoint.php │ │ ├── Charts │ │ │ └── v2 │ │ │ │ ├── Bar_Dataset.php │ │ │ │ ├── Dataset.php │ │ │ │ ├── Line_Dataset.php │ │ │ │ ├── Manifest.php │ │ │ │ └── Pie_Dataset.php │ │ ├── Customers │ │ │ ├── Most_Valuable_Customers_List_Table.php │ │ │ └── Top_Five_Customers_List_Table.php │ │ ├── Discounts │ │ │ └── Top_Five_Discounts_List_Table.php │ │ ├── Downloads │ │ │ ├── Earnings_By_Taxonomy_List_Table.php │ │ │ └── Top_Selling_Downloads_List_Table.php │ │ ├── Endpoint.php │ │ ├── Endpoint_Registry.php │ │ ├── Endpoint_View_Registry.php │ │ ├── File_Downloads │ │ │ └── Top_Five_Most_Downloaded_List_Table.php │ │ ├── Gateways │ │ │ └── StripePaymentMethods.php │ │ ├── Payment_Gateways │ │ │ └── Gateway_Stats.php │ │ ├── Report.php │ │ ├── Report_Registry.php │ │ ├── Table_Endpoint.php │ │ ├── Taxes │ │ │ └── Tax_Collected_By_Location.php │ │ └── Tile_Endpoint.php │ ├── Endpoints │ │ ├── Charts │ │ │ ├── Customers.php │ │ │ ├── Discounts.php │ │ │ ├── DownloadEarnings.php │ │ │ ├── DownloadSales.php │ │ │ ├── Earnings.php │ │ │ ├── FileDownloads.php │ │ │ ├── GatewayEarnings.php │ │ │ ├── GatewaySales.php │ │ │ ├── Graph.php │ │ │ ├── RefundRevenue.php │ │ │ ├── Refunds.php │ │ │ └── Sales.php │ │ ├── Endpoint.php │ │ ├── Pies │ │ │ ├── DownloadEarningsByVariations.php │ │ │ ├── DownloadSalesByVariations.php │ │ │ ├── GatewayEarnings.php │ │ │ ├── GatewaySales.php │ │ │ ├── Pie.php │ │ │ └── Traits │ │ │ │ └── DownloadVariations.php │ │ ├── Tables │ │ │ ├── EarningsByTaxonomy.php │ │ │ ├── GatewayStats.php │ │ │ ├── MostValuableCustomers.php │ │ │ ├── StripePaymentMethods.php │ │ │ ├── Table.php │ │ │ ├── TaxCollectedByLocation.php │ │ │ ├── TopFiveCustomers.php │ │ │ ├── TopFiveDiscounts.php │ │ │ ├── TopFiveMostDownloaded.php │ │ │ └── TopSellingDownloads.php │ │ ├── Tiles │ │ │ ├── Average.php │ │ │ ├── AverageRefundAmount.php │ │ │ ├── AverageRefundTime.php │ │ │ ├── AverageSalesEarnings.php │ │ │ ├── CustomerAverage.php │ │ │ ├── CustomerAverageOrders.php │ │ │ ├── CustomerGrowth.php │ │ │ ├── DiscountAverage.php │ │ │ ├── DiscountPopular.php │ │ │ ├── DiscountRatio.php │ │ │ ├── DiscountSavings.php │ │ │ ├── DiscountUsage.php │ │ │ ├── DiscountsUsed.php │ │ │ ├── DownloadSalesEarnings.php │ │ │ ├── Earnings.php │ │ │ ├── FileDownloads.php │ │ │ ├── FileDownloadsCustomer.php │ │ │ ├── FileDownloadsOrder.php │ │ │ ├── FileDownloadsProduct.php │ │ │ ├── FullyRefundedOrderCount.php │ │ │ ├── FullyRefundedOrderItemCount.php │ │ │ ├── GatewayAverage.php │ │ │ ├── GatewayEarnings.php │ │ │ ├── GatewayRefunds.php │ │ │ ├── GatewaySales.php │ │ │ ├── MostValuableDownload.php │ │ │ ├── RefundAmount.php │ │ │ ├── RefundCount.php │ │ │ ├── RefundRate.php │ │ │ ├── RefundedAmount.php │ │ │ ├── Sales.php │ │ │ ├── TaxCollected.php │ │ │ ├── TaxCollectedLocation.php │ │ │ └── Tile.php │ │ └── Traits │ │ │ └── Colors.php │ ├── Exceptions │ │ ├── Invalid_Parameter.php │ │ ├── Invalid_View.php │ │ └── Invalid_View_Parameter.php │ ├── Init.php │ └── Registry.php ├── RequirementsCheck.php ├── Sessions │ ├── Cart.php │ ├── Customer.php │ ├── Handler.php │ ├── Managers │ │ ├── Database.php │ │ ├── Manager.php │ │ ├── PHP.php │ │ └── Traits │ │ │ └── Query.php │ ├── PurchaseData.php │ ├── Session.php │ └── Traits │ │ ├── Cookie.php │ │ └── Legacy.php ├── Settings │ ├── Sanitize │ │ └── Types │ │ │ ├── RichEditor.php │ │ │ ├── Text.php │ │ │ └── Type.php │ └── Setting.php ├── Stats.php ├── Stats │ └── Traits │ │ ├── Dates.php │ │ ├── Format.php │ │ ├── Helpers.php │ │ ├── Query.php │ │ └── Relative.php ├── Structured_Data.php ├── Taxes │ └── Rate.php ├── Telemetry │ ├── Data.php │ ├── Environment.php │ ├── Integrations.php │ ├── Licenses.php │ ├── Orders.php │ ├── Products.php │ ├── Settings.php │ ├── Stats.php │ ├── Tracking.php │ └── Traits │ │ └── Anonymize.php ├── Upgrades │ ├── Adjustments │ │ └── DiscountsStartEnd.php │ ├── Background │ │ ├── TaxRates.php │ │ ├── Upgrade.php │ │ └── UpgradeInterface.php │ ├── Emails │ │ └── Registration.php │ ├── Loader.php │ ├── Orders │ │ └── MigrateAfterActionsDate.php │ └── Utilities │ │ └── MigrationCheck.php ├── Users │ └── Verification.php ├── Utilities.php └── Utils │ ├── Address.php │ ├── Colors.php │ ├── Convert.php │ ├── Cookies.php │ ├── Countries.php │ ├── Data │ └── Serializer.php │ ├── Date.php │ ├── EnvironmentChecker.php │ ├── Error_Logger_Interface.php │ ├── Exception.php │ ├── Exceptions │ ├── Attribute_Not_Found.php │ ├── Invalid_Argument.php │ └── Invalid_Parameter.php │ ├── FileSystem.php │ ├── ListHandler.php │ ├── Modal.php │ ├── NotificationImporter.php │ ├── ProgressBar.php │ ├── RESTChecker.php │ ├── Registry.php │ ├── RemoteRequest.php │ ├── Request.php │ ├── Static_Registry.php │ ├── StatusBadge.php │ ├── Traits │ └── PrioritySortable.php │ └── Transient.php ├── templates ├── account-pending.php ├── checkout_cart.php ├── emails │ ├── body-default.php │ ├── body.php │ ├── footer-default.php │ ├── footer.php │ ├── header-default.php │ └── header.php ├── fonts │ ├── check.svg │ └── lock.svg ├── history-downloads.php ├── history-purchases.php ├── images │ ├── icons │ │ └── iphone.png │ ├── loading.gif │ ├── tick.png │ └── xit.gif ├── payment-processing.php ├── shortcode-content-cart-button.php ├── shortcode-content-excerpt.php ├── shortcode-content-full.php ├── shortcode-content-image.php ├── shortcode-content-price.php ├── shortcode-content-title.php ├── shortcode-download.php ├── shortcode-login.php ├── shortcode-profile-editor.php ├── shortcode-receipt.php ├── shortcode-register.php ├── stripe-success.php ├── widget-cart-checkout.php ├── widget-cart-empty.php ├── widget-cart-item.php └── widget-cart.php ├── tests ├── README.md ├── admin │ └── tests-pages.php ├── ajax.php ├── api │ ├── tests-keys-list-table.php │ └── tests-user-keys.php ├── blocks │ ├── tests-orders.php │ └── tests-registration.php ├── bootstrap.php ├── captcha │ ├── tests-captcha-providers.php │ ├── tests-captcha-utility.php │ └── tests-captcha-validate.php ├── checkout │ ├── tests-address.php │ ├── tests-agreement.php │ ├── tests-auto-register.php │ ├── tests-checkout-errors.php │ ├── tests-checkout-validator.php │ ├── tests-checkout.php │ ├── tests-fields.php │ ├── tests-geoip.php │ ├── tests-personal-info.php │ ├── tests-pro-address.php │ └── tests-purchase-form-user.php ├── compatibility │ ├── tests-user-switching.php │ └── tests-wordfence.php ├── customers │ ├── tests-customer-addresses.php │ ├── tests-customer-email-addresses.php │ ├── tests-customer-meta.php │ ├── tests-customer-stats.php │ ├── tests-customers-db.php │ ├── tests-customers-views.php │ └── tests-customers.php ├── dates │ ├── tests-date-functions.php │ └── tests-date-utilities.php ├── discounts │ ├── tests-discount-categories.php │ ├── tests-discount-meta.php │ ├── tests-discount-statuses.php │ ├── tests-discounts-db.php │ ├── tests-discounts-uses.php │ ├── tests-discounts.php │ ├── tests-generator.php │ ├── tests-has-active-discounts.php │ ├── tests-item-amounts.php │ └── tests-shortcodes.php ├── downloads │ ├── process │ │ ├── tests-complete.php │ │ ├── tests-misc.php │ │ ├── tests-on-hold.php │ │ ├── tests-partially-refunded.php │ │ ├── tests-pending.php │ │ ├── tests-refunded.php │ │ └── tests-revoked.php │ ├── tests-download-functions.php │ ├── tests-download-limit.php │ ├── tests-download-sales-earnings.php │ ├── tests-download-search.php │ ├── tests-download-validation.php │ ├── tests-downloads-queries.php │ ├── tests-downloads-service.php │ └── tests-downloads.php ├── emails │ ├── tests-actions.php │ ├── tests-admin-order-notice-template.php │ ├── tests-admin-order-notice.php │ ├── tests-admin-order-refund.php │ ├── tests-base.php │ ├── tests-list-table.php │ ├── tests-manager.php │ ├── tests-new-user-admin.php │ ├── tests-new-user.php │ ├── tests-order-receipt.php │ ├── tests-order-refund.php │ ├── tests-password-reset.php │ ├── tests-registry.php │ ├── tests-tags.php │ └── tests-user-verification.php ├── exports │ ├── tests-api-requests.php │ └── tests-general.php ├── fees │ ├── tests-fees-orders.php │ └── tests-fees.php ├── forms │ └── tests-checkout-address.php ├── gateways │ ├── square │ │ └── helpers │ │ │ ├── tests-address.php │ │ │ └── tests-currency.php │ ├── tests-gateways.php │ ├── tests-paypal.php │ └── tests-registry.php ├── helpers │ ├── Licenses.php │ ├── class-helper-discount.php │ ├── class-helper-download.php │ ├── class-helper-payment.php │ ├── class-process-download.php │ ├── shims.php │ └── stubs │ │ ├── user-switching.php │ │ └── wordfence.php ├── html │ ├── tests-html-elements.php │ ├── tests-number.php │ ├── tests-product-dropdown.php │ ├── tests-region.php │ ├── tests-select.php │ ├── tests-tooltip-timeline.php │ └── tests-tooltip.php ├── integrations │ ├── tests-elementor.php │ ├── tests-integration-interface.php │ └── tests-integration-registry-basic.php ├── jest │ └── jest.config.js ├── licensing │ ├── tests-license-messages.php │ └── tests-licenses.php ├── logs │ ├── tests-api-request-log-meta.php │ ├── tests-api-request-logs.php │ ├── tests-debug-log.php │ ├── tests-file-download-log-meta.php │ ├── tests-file-download-logs.php │ ├── tests-log-meta.php │ └── tests-logs.php ├── notes │ ├── tests-note-meta.php │ ├── tests-notes-db.php │ └── tests-notes.php ├── notifications │ ├── tests-notification-api.php │ ├── tests-notification-db.php │ ├── tests-notification-importer.php │ ├── tests-notification-model.php │ └── tests-notifications-local.php ├── orders │ ├── tests-edd-payment.php │ ├── tests-order-addresses.php │ ├── tests-order-adjustment-meta.php │ ├── tests-order-adjustments.php │ ├── tests-order-item-meta.php │ ├── tests-order-items.php │ ├── tests-order-meta.php │ ├── tests-order-recovery.php │ ├── tests-order-status.php │ ├── tests-order-transactions.php │ ├── tests-orders.php │ ├── tests-payments-back-compat.php │ ├── tests-payments-compat.php │ ├── tests-payments.php │ ├── tests-refunds.php │ ├── tests-stats.php │ └── tests-trash.php ├── phpunit │ ├── class-ajax-unittestcase.php │ ├── class-edd-unittestcase.php │ ├── factories │ │ ├── class-edd-factory-for-api-request-logs.php │ │ ├── class-edd-factory-for-customer-addresses.php │ │ ├── class-edd-factory-for-customer-email-addresses.php │ │ ├── class-edd-factory-for-customers.php │ │ ├── class-edd-factory-for-discounts.php │ │ ├── class-edd-factory-for-email-logs.php │ │ ├── class-edd-factory-for-file-download-logs.php │ │ ├── class-edd-factory-for-logs.php │ │ ├── class-edd-factory-for-notes.php │ │ ├── class-edd-factory-for-order-addresses.php │ │ ├── class-edd-factory-for-order-adjustments.php │ │ ├── class-edd-factory-for-order-items.php │ │ ├── class-edd-factory-for-order-transactions.php │ │ ├── class-edd-factory-for-orders.php │ │ └── class-edd-factory.php │ └── factory.php ├── privacy │ ├── tests-anonymization.php │ └── tests-masking.php ├── reports │ ├── data │ │ ├── charts │ │ │ └── v2 │ │ │ │ ├── tests-bar-dataset.php │ │ │ │ ├── tests-dateset.php │ │ │ │ ├── tests-line-dataset.php │ │ │ │ ├── tests-manifest.php │ │ │ │ └── tests-pie-dataset.php │ │ ├── tests-base-object.php │ │ ├── tests-chart-endpoint.php │ │ ├── tests-endpoint-registry.php │ │ ├── tests-endpoint-view-registry.php │ │ ├── tests-endpoint.php │ │ ├── tests-report.php │ │ ├── tests-reports-registry.php │ │ ├── tests-table-endpoint.php │ │ └── tests-tile-endpoint.php │ ├── tests-endpoints.php │ ├── tests-init.php │ ├── tests-registry.php │ └── tests-reports-functions.php ├── sessions │ ├── tests-cookie.php │ ├── tests-deprecated.php │ ├── tests-handler.php │ └── tests-purchase-data.php ├── settings │ ├── sanitize │ │ └── tabs │ │ │ ├── gateways │ │ │ ├── tests-accounting.php │ │ │ ├── tests-checkout.php │ │ │ └── tests-main.php │ │ │ ├── general │ │ │ └── tests-currency.php │ │ │ ├── misc │ │ │ └── tests-file-downloads.php │ │ │ └── taxes │ │ │ ├── tests-rates.php │ │ │ └── tests-vat.php │ ├── tests-callbacks.php │ ├── tests-registration.php │ └── tests-setting.php ├── sitehealth │ ├── tests-cron.php │ ├── tests-direct.php │ ├── tests-information.php │ └── tests-sessions.php ├── stripe │ ├── admin │ │ ├── tests-license-manager.php │ │ ├── tests-notices-registry.php │ │ └── tests-notices.php │ ├── tests-application-fee.php │ ├── tests-filters.php │ ├── tests-functions.php │ ├── tests-payment-elements.php │ ├── tests-rate-limiting.php │ ├── tests-regional-support.php │ ├── tests-statement-descriptors.php │ ├── tests-stripe-api.php │ ├── tests-stripe-line-items.php │ └── tests-stripe-payment-intents.php ├── taxes │ ├── tests-services.php │ ├── tests-tax-rates-compat.php │ ├── tests-tax-rates.php │ ├── tests-tax.php │ ├── tests-validator.php │ └── tests-vat-utility.php ├── tests-api.php ├── tests-cart-performance.php ├── tests-cart-sessions.php ├── tests-cart.php ├── tests-countries.php ├── tests-easy-digital-downloads.php ├── tests-errors.php ├── tests-filters.php ├── tests-formatting.php ├── tests-install.php ├── tests-languages.php ├── tests-license-upgrade-notice.php ├── tests-logging.php ├── tests-migration.php ├── tests-mime.php ├── tests-misc.php ├── tests-pass-manager.php ├── tests-plugin-compatibility.php ├── tests-polyfills.php ├── tests-post-type-labels.php ├── tests-post-types.php ├── tests-query-filters.php ├── tests-register-meta.php ├── tests-registry.php ├── tests-roles.php ├── tests-scripts.php ├── tests-shortcodes.php ├── tests-stats.php ├── tests-structured-data.php ├── tests-telemetry.php ├── tests-template.php ├── tests-templates.php ├── tests-theme-compatibility.php ├── tests-tokenizer.php ├── tests-upgrades.php ├── tests-url.php ├── tests-utilities.php ├── tests-widgets.php ├── users │ ├── tests-login-register.php │ ├── tests-profile.php │ ├── tests-user-functions.php │ └── tests-verification.php └── utils │ ├── tests-colors.php │ ├── tests-environment-checker.php │ ├── tests-filesystem.php │ ├── tests-list-handler.php │ └── tests-serializer.php ├── uninstall.php ├── vendor ├── autoload.php ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ └── installed.php └── symfony │ ├── deprecation-contracts │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── function.php │ └── polyfill-php80 │ ├── LICENSE │ ├── Php80.php │ ├── PhpToken.php │ ├── README.md │ ├── Resources │ └── stubs │ │ ├── Attribute.php │ │ ├── PhpToken.php │ │ ├── Stringable.php │ │ ├── UnhandledMatchError.php │ │ └── ValueError.php │ ├── bootstrap.php │ └── composer.json └── webpack.config.js /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /apigen.neon: -------------------------------------------------------------------------------- 1 | source: 2 | - ./ 3 | 4 | destination: codex 5 | -------------------------------------------------------------------------------- /assets/css/admin/chosen/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/admin/chosen/_base.scss -------------------------------------------------------------------------------- /assets/css/admin/chosen/_edd.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/admin/chosen/_edd.scss -------------------------------------------------------------------------------- /assets/css/admin/chosen/_multi.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/admin/chosen/_multi.scss -------------------------------------------------------------------------------- /assets/css/admin/chosen/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/admin/chosen/style.scss -------------------------------------------------------------------------------- /assets/css/admin/customers/style.scss: -------------------------------------------------------------------------------- 1 | @import "details"; 2 | -------------------------------------------------------------------------------- /assets/css/admin/datepicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/admin/datepicker.scss -------------------------------------------------------------------------------- /assets/css/admin/email-tags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/admin/email-tags.scss -------------------------------------------------------------------------------- /assets/css/admin/emails/_logs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/admin/emails/_logs.scss -------------------------------------------------------------------------------- /assets/css/admin/emails/_promo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/admin/emails/_promo.scss -------------------------------------------------------------------------------- /assets/css/admin/emails/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/admin/emails/_table.scss -------------------------------------------------------------------------------- /assets/css/admin/emails/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/admin/emails/style.scss -------------------------------------------------------------------------------- /assets/css/admin/forms/_select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/admin/forms/_select.scss -------------------------------------------------------------------------------- /assets/css/admin/forms/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/admin/forms/style.scss -------------------------------------------------------------------------------- /assets/css/admin/general/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/admin/general/_grid.scss -------------------------------------------------------------------------------- /assets/css/admin/general/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/admin/general/style.scss -------------------------------------------------------------------------------- /assets/css/admin/menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/admin/menu.scss -------------------------------------------------------------------------------- /assets/css/admin/orders/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/admin/orders/style.scss -------------------------------------------------------------------------------- /assets/css/admin/pass-handler.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/admin/pass-handler.scss -------------------------------------------------------------------------------- /assets/css/admin/promos/_about.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/admin/promos/_about.scss -------------------------------------------------------------------------------- /assets/css/admin/promos/_popup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/admin/promos/_popup.scss -------------------------------------------------------------------------------- /assets/css/admin/promos/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/admin/promos/style.scss -------------------------------------------------------------------------------- /assets/css/admin/reports/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/admin/reports/style.scss -------------------------------------------------------------------------------- /assets/css/admin/sections/_id.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/admin/sections/_id.scss -------------------------------------------------------------------------------- /assets/css/admin/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/admin/style.scss -------------------------------------------------------------------------------- /assets/css/admin/tools/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/admin/tools/style.scss -------------------------------------------------------------------------------- /assets/css/admin/upgrades/_v3.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/admin/upgrades/_v3.scss -------------------------------------------------------------------------------- /assets/css/chosen-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/chosen-rtl.min.css -------------------------------------------------------------------------------- /assets/css/chosen.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/chosen.min.css -------------------------------------------------------------------------------- /assets/css/edd-admin-chosen.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/edd-admin-chosen.min.css -------------------------------------------------------------------------------- /assets/css/edd-admin-emails.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/edd-admin-emails.min.css -------------------------------------------------------------------------------- /assets/css/edd-admin-menu.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/edd-admin-menu.min.css -------------------------------------------------------------------------------- /assets/css/edd-admin-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/edd-admin-rtl.min.css -------------------------------------------------------------------------------- /assets/css/edd-admin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/edd-admin.min.css -------------------------------------------------------------------------------- /assets/css/edd-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/edd-rtl.min.css -------------------------------------------------------------------------------- /assets/css/edd.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/edd.min.css -------------------------------------------------------------------------------- /assets/css/frontend/stripe/frontend/shared.scss: -------------------------------------------------------------------------------- 1 | #edd-stripe-card-errors:not(:empty) { 2 | margin: 20px 0 0; 3 | } -------------------------------------------------------------------------------- /assets/css/frontend/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/frontend/style.scss -------------------------------------------------------------------------------- /assets/css/jquery-ui-fresh.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/jquery-ui-fresh.min.css -------------------------------------------------------------------------------- /assets/css/square-admin-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/square-admin-rtl.min.css -------------------------------------------------------------------------------- /assets/css/square-admin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/square-admin.min.css -------------------------------------------------------------------------------- /assets/css/square-checkout.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/square-checkout.min.css -------------------------------------------------------------------------------- /assets/css/stripe-admin-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/stripe-admin-rtl.min.css -------------------------------------------------------------------------------- /assets/css/stripe-admin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/stripe-admin.min.css -------------------------------------------------------------------------------- /assets/css/variables/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/variables/_colors.scss -------------------------------------------------------------------------------- /assets/css/variables/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/variables/_icons.scss -------------------------------------------------------------------------------- /assets/css/variables/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/variables/_mixins.scss -------------------------------------------------------------------------------- /assets/css/vendor/chosen.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/css/vendor/chosen.min.css -------------------------------------------------------------------------------- /assets/images/edd-cpt-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/edd-cpt-2x.png -------------------------------------------------------------------------------- /assets/images/edd-cpt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/edd-cpt.png -------------------------------------------------------------------------------- /assets/images/edd-cross-hair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/edd-cross-hair.png -------------------------------------------------------------------------------- /assets/images/edd-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/edd-icon-2x.png -------------------------------------------------------------------------------- /assets/images/edd-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/edd-icon.png -------------------------------------------------------------------------------- /assets/images/edd-logo-pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/edd-logo-pdf.png -------------------------------------------------------------------------------- /assets/images/edd-logo-white-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/edd-logo-white-2x.png -------------------------------------------------------------------------------- /assets/images/edd-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/edd-logo.png -------------------------------------------------------------------------------- /assets/images/edd-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/edd-logo.svg -------------------------------------------------------------------------------- /assets/images/edd-media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/edd-media.png -------------------------------------------------------------------------------- /assets/images/edd-peeking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/edd-peeking.png -------------------------------------------------------------------------------- /assets/images/icons/icon-bundle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/icons/icon-bundle.svg -------------------------------------------------------------------------------- /assets/images/icons/icon-gross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/icons/icon-gross.png -------------------------------------------------------------------------------- /assets/images/icons/icon-net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/icons/icon-net.png -------------------------------------------------------------------------------- /assets/images/icons/icon-smiley.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/icons/icon-smiley.svg -------------------------------------------------------------------------------- /assets/images/icons/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/icons/iphone.png -------------------------------------------------------------------------------- /assets/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/loading.gif -------------------------------------------------------------------------------- /assets/images/logo-edd-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/logo-edd-dark.svg -------------------------------------------------------------------------------- /assets/images/media-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/media-button.png -------------------------------------------------------------------------------- /assets/images/onboarding/bob.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/onboarding/bob.jpg -------------------------------------------------------------------------------- /assets/images/onboarding/joe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/onboarding/joe.jpg -------------------------------------------------------------------------------- /assets/images/promo/am-team.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/promo/am-team.jpg -------------------------------------------------------------------------------- /assets/images/promo/bfcm-header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/promo/bfcm-header.svg -------------------------------------------------------------------------------- /assets/images/promo/icon-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/promo/icon-full.svg -------------------------------------------------------------------------------- /assets/images/promo/icon-none.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/promo/icon-none.svg -------------------------------------------------------------------------------- /assets/images/screenshots/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/screenshots/grid.png -------------------------------------------------------------------------------- /assets/images/xit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/images/xit.gif -------------------------------------------------------------------------------- /assets/js/admin/components/conditionals/index.js: -------------------------------------------------------------------------------- 1 | import './requirements'; 2 | -------------------------------------------------------------------------------- /assets/js/admin/customers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/admin/customers/index.js -------------------------------------------------------------------------------- /assets/js/admin/downloads/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/admin/downloads/copy.js -------------------------------------------------------------------------------- /assets/js/admin/downloads/move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/admin/downloads/move.js -------------------------------------------------------------------------------- /assets/js/admin/flyout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/admin/flyout/index.js -------------------------------------------------------------------------------- /assets/js/admin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/admin/index.js -------------------------------------------------------------------------------- /assets/js/admin/notes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/admin/notes/index.js -------------------------------------------------------------------------------- /assets/js/admin/notices/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/admin/notices/index.js -------------------------------------------------------------------------------- /assets/js/admin/orders/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/admin/orders/index.js -------------------------------------------------------------------------------- /assets/js/admin/payments/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/admin/payments/index.js -------------------------------------------------------------------------------- /assets/js/admin/pointers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/admin/pointers/index.js -------------------------------------------------------------------------------- /assets/js/admin/reports/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/admin/reports/index.js -------------------------------------------------------------------------------- /assets/js/admin/settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/admin/settings/index.js -------------------------------------------------------------------------------- /assets/js/admin/square.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/admin/square.js -------------------------------------------------------------------------------- /assets/js/admin/stripe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/admin/stripe/index.js -------------------------------------------------------------------------------- /assets/js/admin/stripe/notices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/admin/stripe/notices.js -------------------------------------------------------------------------------- /assets/js/admin/tools/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/admin/tools/index.js -------------------------------------------------------------------------------- /assets/js/admin/upgrades/index.js: -------------------------------------------------------------------------------- 1 | import './v3'; 2 | -------------------------------------------------------------------------------- /assets/js/alpine.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/alpine.min.js -------------------------------------------------------------------------------- /assets/js/captcha/captcha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/captcha/captcha.js -------------------------------------------------------------------------------- /assets/js/edd-admin-customers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/edd-admin-customers.js -------------------------------------------------------------------------------- /assets/js/edd-admin-dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/edd-admin-dashboard.js -------------------------------------------------------------------------------- /assets/js/edd-admin-discounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/edd-admin-discounts.js -------------------------------------------------------------------------------- /assets/js/edd-admin-downloads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/edd-admin-downloads.js -------------------------------------------------------------------------------- /assets/js/edd-admin-email-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/edd-admin-email-tags.js -------------------------------------------------------------------------------- /assets/js/edd-admin-flyout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/edd-admin-flyout.js -------------------------------------------------------------------------------- /assets/js/edd-admin-licensing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/edd-admin-licensing.js -------------------------------------------------------------------------------- /assets/js/edd-admin-notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/edd-admin-notes.js -------------------------------------------------------------------------------- /assets/js/edd-admin-notices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/edd-admin-notices.js -------------------------------------------------------------------------------- /assets/js/edd-admin-onboarding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/edd-admin-onboarding.js -------------------------------------------------------------------------------- /assets/js/edd-admin-orders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/edd-admin-orders.js -------------------------------------------------------------------------------- /assets/js/edd-admin-orders.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/edd-admin-orders.js.map -------------------------------------------------------------------------------- /assets/js/edd-admin-payments.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/edd-admin-pointers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/edd-admin-pointers.js -------------------------------------------------------------------------------- /assets/js/edd-admin-reports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/edd-admin-reports.js -------------------------------------------------------------------------------- /assets/js/edd-admin-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/edd-admin-settings.js -------------------------------------------------------------------------------- /assets/js/edd-admin-tax-rates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/edd-admin-tax-rates.js -------------------------------------------------------------------------------- /assets/js/edd-admin-tools-labs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/edd-admin-tools-labs.js -------------------------------------------------------------------------------- /assets/js/edd-admin-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/edd-admin-tools.js -------------------------------------------------------------------------------- /assets/js/edd-admin-upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/edd-admin-upgrades.js -------------------------------------------------------------------------------- /assets/js/edd-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/edd-admin.js -------------------------------------------------------------------------------- /assets/js/edd-ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/edd-ajax.js -------------------------------------------------------------------------------- /assets/js/edd-checkout-global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/edd-checkout-global.js -------------------------------------------------------------------------------- /assets/js/edd-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/edd-modal.js -------------------------------------------------------------------------------- /assets/js/frontend/edd-ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/frontend/edd-ajax.js -------------------------------------------------------------------------------- /assets/js/frontend/edd-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/frontend/edd-modal.js -------------------------------------------------------------------------------- /assets/js/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/jquery.validate.min.js -------------------------------------------------------------------------------- /assets/js/paypal-checkout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/paypal-checkout.js -------------------------------------------------------------------------------- /assets/js/square-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/square-admin.js -------------------------------------------------------------------------------- /assets/js/square-checkout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/square-checkout.js -------------------------------------------------------------------------------- /assets/js/stripe-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/stripe-admin.js -------------------------------------------------------------------------------- /assets/js/stripe-cardelements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/stripe-cardelements.js -------------------------------------------------------------------------------- /assets/js/stripe-notices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/stripe-notices.js -------------------------------------------------------------------------------- /assets/js/user-verification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/user-verification.js -------------------------------------------------------------------------------- /assets/js/utils/api-request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/utils/api-request.js -------------------------------------------------------------------------------- /assets/js/utils/chosen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/utils/chosen.js -------------------------------------------------------------------------------- /assets/js/utils/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/utils/debug.js -------------------------------------------------------------------------------- /assets/js/utils/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/utils/dom.js -------------------------------------------------------------------------------- /assets/js/utils/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/utils/form.js -------------------------------------------------------------------------------- /assets/js/utils/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/utils/globals.js -------------------------------------------------------------------------------- /assets/js/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/utils/index.js -------------------------------------------------------------------------------- /assets/js/utils/intl-tel-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/utils/intl-tel-input.js -------------------------------------------------------------------------------- /assets/js/utils/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/utils/jquery.js -------------------------------------------------------------------------------- /assets/js/utils/notice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/utils/notice.js -------------------------------------------------------------------------------- /assets/js/vendor/chartjs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/vendor/chartjs.min.js -------------------------------------------------------------------------------- /assets/js/vendor/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/vendor/moment.min.js -------------------------------------------------------------------------------- /assets/js/wp-polyfill.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/js/wp-polyfill.min.js -------------------------------------------------------------------------------- /assets/sample-products-import.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/assets/sample-products-import.xml -------------------------------------------------------------------------------- /bin/check-actions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/bin/check-actions.sh -------------------------------------------------------------------------------- /bin/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/bin/install-wp-tests.sh -------------------------------------------------------------------------------- /bin/run-phpcs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/bin/run-phpcs.sh -------------------------------------------------------------------------------- /bin/run-phpstan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/bin/run-phpstan.sh -------------------------------------------------------------------------------- /bin/run-tests-internal-only.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/bin/run-tests-internal-only.sh -------------------------------------------------------------------------------- /bin/run-tests-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/bin/run-tests-local.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/composer.lock -------------------------------------------------------------------------------- /docker-compose-phpunit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/docker-compose-phpunit.yml -------------------------------------------------------------------------------- /easy-digital-downloads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/easy-digital-downloads.php -------------------------------------------------------------------------------- /i18n/countries-eu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/i18n/countries-eu.php -------------------------------------------------------------------------------- /i18n/countries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/i18n/countries.php -------------------------------------------------------------------------------- /i18n/states-bd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/i18n/states-bd.php -------------------------------------------------------------------------------- /i18n/states-bj.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/i18n/states-bj.php -------------------------------------------------------------------------------- /i18n/states-es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/i18n/states-es.php -------------------------------------------------------------------------------- /i18n/states-gb-legacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/i18n/states-gb-legacy.php -------------------------------------------------------------------------------- /i18n/states-gb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/i18n/states-gb.php -------------------------------------------------------------------------------- /i18n/states-in.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/i18n/states-in.php -------------------------------------------------------------------------------- /i18n/states-it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/i18n/states-it.php -------------------------------------------------------------------------------- /i18n/states-jp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/i18n/states-jp.php -------------------------------------------------------------------------------- /i18n/states-np.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/i18n/states-np.php -------------------------------------------------------------------------------- /i18n/states-th.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/i18n/states-th.php -------------------------------------------------------------------------------- /i18n/states-tr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/i18n/states-tr.php -------------------------------------------------------------------------------- /i18n/states-us.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/i18n/states-us.php -------------------------------------------------------------------------------- /i18n/states.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/i18n/states.php -------------------------------------------------------------------------------- /includes/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/actions.php -------------------------------------------------------------------------------- /includes/adjustments/meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/adjustments/meta.php -------------------------------------------------------------------------------- /includes/admin/admin-actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/admin/admin-actions.php -------------------------------------------------------------------------------- /includes/admin/admin-bar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/admin/admin-bar.php -------------------------------------------------------------------------------- /includes/admin/admin-footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/admin/admin-footer.php -------------------------------------------------------------------------------- /includes/admin/admin-pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/admin/admin-pages.php -------------------------------------------------------------------------------- /includes/admin/plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/admin/plugins.php -------------------------------------------------------------------------------- /includes/admin/reporting/logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/admin/reporting/logs.php -------------------------------------------------------------------------------- /includes/admin/thickbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/admin/thickbox.php -------------------------------------------------------------------------------- /includes/admin/tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/admin/tools.php -------------------------------------------------------------------------------- /includes/admin/tools/logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/admin/tools/logs.php -------------------------------------------------------------------------------- /includes/ajax-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/ajax-functions.php -------------------------------------------------------------------------------- /includes/api/class-edd-api-v1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/api/class-edd-api-v1.php -------------------------------------------------------------------------------- /includes/api/class-edd-api-v2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/api/class-edd-api-v2.php -------------------------------------------------------------------------------- /includes/api/class-edd-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/api/class-edd-api.php -------------------------------------------------------------------------------- /includes/blocks/assets/js/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/blocks/assets/js/cart.js -------------------------------------------------------------------------------- /includes/blocks/build/terms/index.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /includes/blocks/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/blocks/composer.json -------------------------------------------------------------------------------- /includes/blocks/edd-blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/blocks/edd-blocks.php -------------------------------------------------------------------------------- /includes/blocks/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/blocks/package-lock.json -------------------------------------------------------------------------------- /includes/blocks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/blocks/package.json -------------------------------------------------------------------------------- /includes/blocks/src/buy-button/style.scss: -------------------------------------------------------------------------------- 1 | @import "../scss/buy-button"; 2 | -------------------------------------------------------------------------------- /includes/blocks/src/cart/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/blocks/src/cart/edit.js -------------------------------------------------------------------------------- /includes/blocks/src/cart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/blocks/src/cart/index.js -------------------------------------------------------------------------------- /includes/blocks/src/login/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/blocks/src/login/edit.js -------------------------------------------------------------------------------- /includes/blocks/src/terms/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/blocks/src/terms/edit.js -------------------------------------------------------------------------------- /includes/blocks/src/terms/editor.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/blocks/views/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/blocks/views/search.php -------------------------------------------------------------------------------- /includes/blocks/views/terms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/blocks/views/terms.php -------------------------------------------------------------------------------- /includes/cart/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/cart/actions.php -------------------------------------------------------------------------------- /includes/cart/class-edd-cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/cart/class-edd-cart.php -------------------------------------------------------------------------------- /includes/cart/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/cart/functions.php -------------------------------------------------------------------------------- /includes/cart/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/cart/template.php -------------------------------------------------------------------------------- /includes/checkout/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/checkout/functions.php -------------------------------------------------------------------------------- /includes/checkout/pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/checkout/pages.php -------------------------------------------------------------------------------- /includes/checkout/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/checkout/template.php -------------------------------------------------------------------------------- /includes/class-edd-cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/class-edd-cli.php -------------------------------------------------------------------------------- /includes/class-edd-customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/class-edd-customer.php -------------------------------------------------------------------------------- /includes/class-edd-db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/class-edd-db.php -------------------------------------------------------------------------------- /includes/class-edd-discount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/class-edd-discount.php -------------------------------------------------------------------------------- /includes/class-edd-download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/class-edd-download.php -------------------------------------------------------------------------------- /includes/class-edd-roles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/class-edd-roles.php -------------------------------------------------------------------------------- /includes/class-edd-stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/class-edd-stats.php -------------------------------------------------------------------------------- /includes/compat-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/compat-functions.php -------------------------------------------------------------------------------- /includes/component-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/component-functions.php -------------------------------------------------------------------------------- /includes/country-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/country-functions.php -------------------------------------------------------------------------------- /includes/currency/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/currency/functions.php -------------------------------------------------------------------------------- /includes/customer-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/customer-functions.php -------------------------------------------------------------------------------- /includes/date-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/date-functions.php -------------------------------------------------------------------------------- /includes/deprecated-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/deprecated-functions.php -------------------------------------------------------------------------------- /includes/deprecated-hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/deprecated-hooks.php -------------------------------------------------------------------------------- /includes/deprecated/classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/deprecated/classes.php -------------------------------------------------------------------------------- /includes/discount-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/discount-functions.php -------------------------------------------------------------------------------- /includes/download-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/download-functions.php -------------------------------------------------------------------------------- /includes/emails/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/emails/functions.php -------------------------------------------------------------------------------- /includes/emails/recapture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/emails/recapture.php -------------------------------------------------------------------------------- /includes/emails/tags-inserter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/emails/tags-inserter.php -------------------------------------------------------------------------------- /includes/emails/tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/emails/tags.php -------------------------------------------------------------------------------- /includes/emails/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/emails/template.php -------------------------------------------------------------------------------- /includes/error-tracking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/error-tracking.php -------------------------------------------------------------------------------- /includes/formatting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/formatting.php -------------------------------------------------------------------------------- /includes/gateways/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/gateways/actions.php -------------------------------------------------------------------------------- /includes/gateways/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/gateways/functions.php -------------------------------------------------------------------------------- /includes/gateways/manual.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/gateways/manual.php -------------------------------------------------------------------------------- /includes/gateways/paypal/ipn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/gateways/paypal/ipn.php -------------------------------------------------------------------------------- /includes/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/install.php -------------------------------------------------------------------------------- /includes/libraries/array2xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/libraries/array2xml.php -------------------------------------------------------------------------------- /includes/libraries/browser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/libraries/browser.php -------------------------------------------------------------------------------- /includes/logs/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/logs/functions.php -------------------------------------------------------------------------------- /includes/logs/log/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/logs/log/functions.php -------------------------------------------------------------------------------- /includes/logs/log/meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/logs/log/meta.php -------------------------------------------------------------------------------- /includes/mime-types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/mime-types.php -------------------------------------------------------------------------------- /includes/misc-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/misc-functions.php -------------------------------------------------------------------------------- /includes/notes/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/notes/functions.php -------------------------------------------------------------------------------- /includes/notes/meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/notes/meta.php -------------------------------------------------------------------------------- /includes/orders/functions/ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/orders/functions/ui.php -------------------------------------------------------------------------------- /includes/payments/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/payments/actions.php -------------------------------------------------------------------------------- /includes/payments/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/payments/functions.php -------------------------------------------------------------------------------- /includes/plugin-compatibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/plugin-compatibility.php -------------------------------------------------------------------------------- /includes/post-types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/post-types.php -------------------------------------------------------------------------------- /includes/privacy-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/privacy-functions.php -------------------------------------------------------------------------------- /includes/process-download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/process-download.php -------------------------------------------------------------------------------- /includes/process-purchase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/process-purchase.php -------------------------------------------------------------------------------- /includes/query-filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/query-filters.php -------------------------------------------------------------------------------- /includes/refund-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/refund-functions.php -------------------------------------------------------------------------------- /includes/scripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/scripts.php -------------------------------------------------------------------------------- /includes/shortcodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/shortcodes.php -------------------------------------------------------------------------------- /includes/taxes/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/taxes/functions.php -------------------------------------------------------------------------------- /includes/template-actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/template-actions.php -------------------------------------------------------------------------------- /includes/template-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/template-functions.php -------------------------------------------------------------------------------- /includes/theme-compatibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/theme-compatibility.php -------------------------------------------------------------------------------- /includes/upgrades/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/upgrades/functions.php -------------------------------------------------------------------------------- /includes/user-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/user-functions.php -------------------------------------------------------------------------------- /includes/users/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/users/login.php -------------------------------------------------------------------------------- /includes/users/lost-password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/users/lost-password.php -------------------------------------------------------------------------------- /includes/users/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/users/register.php -------------------------------------------------------------------------------- /includes/widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/includes/widgets.php -------------------------------------------------------------------------------- /languages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/languages/README.md -------------------------------------------------------------------------------- /languages/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/languages/index.php -------------------------------------------------------------------------------- /libraries/Carbon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Carbon/LICENSE -------------------------------------------------------------------------------- /libraries/Carbon/bin/carbon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Carbon/bin/carbon -------------------------------------------------------------------------------- /libraries/Carbon/bin/carbon.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Carbon/bin/carbon.bat -------------------------------------------------------------------------------- /libraries/Carbon/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Carbon/composer.json -------------------------------------------------------------------------------- /libraries/Carbon/extension.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Carbon/extension.neon -------------------------------------------------------------------------------- /libraries/Carbon/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Carbon/readme.md -------------------------------------------------------------------------------- /libraries/Carbon/sponsors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Carbon/sponsors.php -------------------------------------------------------------------------------- /libraries/Core/ApiCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Core/ApiCall.php -------------------------------------------------------------------------------- /libraries/Core/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Core/Client.php -------------------------------------------------------------------------------- /libraries/Core/ClientBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Core/ClientBuilder.php -------------------------------------------------------------------------------- /libraries/Psr/Log/LogLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Psr/Log/LogLevel.php -------------------------------------------------------------------------------- /libraries/Psr/Log/LoggerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Psr/Log/LoggerTrait.php -------------------------------------------------------------------------------- /libraries/Psr/Log/NullLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Psr/Log/NullLogger.php -------------------------------------------------------------------------------- /libraries/Rs/Json/Pointer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Rs/Json/Pointer.php -------------------------------------------------------------------------------- /libraries/Square/ApiHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Square/ApiHelper.php -------------------------------------------------------------------------------- /libraries/Square/Apis/BaseApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Square/Apis/BaseApi.php -------------------------------------------------------------------------------- /libraries/Square/Apis/TeamApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Square/Apis/TeamApi.php -------------------------------------------------------------------------------- /libraries/Square/Environment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Square/Environment.php -------------------------------------------------------------------------------- /libraries/Square/Models/Card.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Square/Models/Card.php -------------------------------------------------------------------------------- /libraries/Square/Models/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Square/Models/Error.php -------------------------------------------------------------------------------- /libraries/Square/Models/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Square/Models/Event.php -------------------------------------------------------------------------------- /libraries/Square/Models/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Square/Models/Job.php -------------------------------------------------------------------------------- /libraries/Square/Models/Money.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Square/Models/Money.php -------------------------------------------------------------------------------- /libraries/Square/Models/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Square/Models/Order.php -------------------------------------------------------------------------------- /libraries/Square/Models/Phase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Square/Models/Phase.php -------------------------------------------------------------------------------- /libraries/Square/Models/Range.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Square/Models/Range.php -------------------------------------------------------------------------------- /libraries/Square/Models/Shift.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Square/Models/Shift.php -------------------------------------------------------------------------------- /libraries/Square/Models/Site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Square/Models/Site.php -------------------------------------------------------------------------------- /libraries/Square/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Square/Server.php -------------------------------------------------------------------------------- /libraries/Square/SquareClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Square/SquareClient.php -------------------------------------------------------------------------------- /libraries/Stripe/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/CHANGELOG.md -------------------------------------------------------------------------------- /libraries/Stripe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/LICENSE -------------------------------------------------------------------------------- /libraries/Stripe/OPENAPI_VERSION: -------------------------------------------------------------------------------- 1 | v1267 -------------------------------------------------------------------------------- /libraries/Stripe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/README.md -------------------------------------------------------------------------------- /libraries/Stripe/VERSION: -------------------------------------------------------------------------------- 1 | 15.10.0 2 | -------------------------------------------------------------------------------- /libraries/Stripe/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/composer.json -------------------------------------------------------------------------------- /libraries/Stripe/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/init.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/Account.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/Balance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/Balance.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/Card.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/Card.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/Charge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/Charge.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/Coupon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/Coupon.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/Customer.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/Discount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/Discount.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/Dispute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/Dispute.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/Event.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/File.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/FileLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/FileLink.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/Invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/Invoice.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/LineItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/LineItem.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/Mandate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/Mandate.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/OAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/OAuth.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/Payout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/Payout.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/Person.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/Person.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/Plan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/Plan.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/Price.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/Price.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/Product.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/Quote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/Quote.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/Refund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/Refund.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/Review.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/Review.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/Source.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/Stripe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/Stripe.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/TaxCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/TaxCode.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/TaxId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/TaxId.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/TaxRate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/TaxRate.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/Token.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/Topup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/Topup.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/Transfer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/Transfer.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/Util/Set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/Util/Set.php -------------------------------------------------------------------------------- /libraries/Stripe/lib/Webhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Stripe/lib/Webhook.php -------------------------------------------------------------------------------- /libraries/Unirest/HttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Unirest/HttpClient.php -------------------------------------------------------------------------------- /libraries/Unirest/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/libraries/Unirest/Response.php -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/package.json -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpunit-printer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/phpunit-printer.yml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/readme.md -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/readme.txt -------------------------------------------------------------------------------- /src/API/WP/Attachments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/API/WP/Attachments.php -------------------------------------------------------------------------------- /src/API/v3/Endpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/API/v3/Endpoint.php -------------------------------------------------------------------------------- /src/API/v3/Notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/API/v3/Notifications.php -------------------------------------------------------------------------------- /src/Adjustments/Adjustment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Adjustments/Adjustment.php -------------------------------------------------------------------------------- /src/Admin/Assets/Localization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Assets/Localization.php -------------------------------------------------------------------------------- /src/Admin/Assets/Scripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Assets/Scripts.php -------------------------------------------------------------------------------- /src/Admin/Assets/Styles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Assets/Styles.php -------------------------------------------------------------------------------- /src/Admin/Customers/Emails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Customers/Emails.php -------------------------------------------------------------------------------- /src/Admin/Discounts/Generate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Discounts/Generate.php -------------------------------------------------------------------------------- /src/Admin/Discounts/ListTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Discounts/ListTable.php -------------------------------------------------------------------------------- /src/Admin/Discounts/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Discounts/Manager.php -------------------------------------------------------------------------------- /src/Admin/Discounts/Screen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Discounts/Screen.php -------------------------------------------------------------------------------- /src/Admin/Downloads/Filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Downloads/Filters.php -------------------------------------------------------------------------------- /src/Admin/Downloads/Meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Downloads/Meta.php -------------------------------------------------------------------------------- /src/Admin/Downloads/Metabox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Downloads/Metabox.php -------------------------------------------------------------------------------- /src/Admin/Emails/ListTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Emails/ListTable.php -------------------------------------------------------------------------------- /src/Admin/Emails/LogsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Emails/LogsTable.php -------------------------------------------------------------------------------- /src/Admin/Emails/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Emails/Manager.php -------------------------------------------------------------------------------- /src/Admin/Emails/Messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Emails/Messages.php -------------------------------------------------------------------------------- /src/Admin/Emails/Reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Emails/Reset.php -------------------------------------------------------------------------------- /src/Admin/Emails/Screen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Emails/Screen.php -------------------------------------------------------------------------------- /src/Admin/Exports/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Exports/Loader.php -------------------------------------------------------------------------------- /src/Admin/Exports/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Exports/Registry.php -------------------------------------------------------------------------------- /src/Admin/Extensions/Card.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Extensions/Card.php -------------------------------------------------------------------------------- /src/Admin/Extensions/Emails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Extensions/Emails.php -------------------------------------------------------------------------------- /src/Admin/Extensions/Legacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Extensions/Legacy.php -------------------------------------------------------------------------------- /src/Admin/Extensions/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Extensions/Menu.php -------------------------------------------------------------------------------- /src/Admin/Forms/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Forms/Field.php -------------------------------------------------------------------------------- /src/Admin/Forms/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Forms/Handler.php -------------------------------------------------------------------------------- /src/Admin/List_Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/List_Table.php -------------------------------------------------------------------------------- /src/Admin/Menu/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Menu/Header.php -------------------------------------------------------------------------------- /src/Admin/Menu/LinkClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Menu/LinkClass.php -------------------------------------------------------------------------------- /src/Admin/Menu/Pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Menu/Pages.php -------------------------------------------------------------------------------- /src/Admin/Onboarding/Ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Onboarding/Ajax.php -------------------------------------------------------------------------------- /src/Admin/Onboarding/Helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Onboarding/Helpers.php -------------------------------------------------------------------------------- /src/Admin/Onboarding/Notice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Onboarding/Notice.php -------------------------------------------------------------------------------- /src/Admin/Onboarding/Tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Onboarding/Tools.php -------------------------------------------------------------------------------- /src/Admin/Onboarding/Wizard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Onboarding/Wizard.php -------------------------------------------------------------------------------- /src/Admin/Order_Sections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Order_Sections.php -------------------------------------------------------------------------------- /src/Admin/PassHandler/Actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/PassHandler/Actions.php -------------------------------------------------------------------------------- /src/Admin/PassHandler/Ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/PassHandler/Ajax.php -------------------------------------------------------------------------------- /src/Admin/PassHandler/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/PassHandler/Handler.php -------------------------------------------------------------------------------- /src/Admin/Pass_Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Pass_Manager.php -------------------------------------------------------------------------------- /src/Admin/Pointers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Pointers.php -------------------------------------------------------------------------------- /src/Admin/Promos/About.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Promos/About.php -------------------------------------------------------------------------------- /src/Admin/Promos/Footer/Links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Promos/Footer/Links.php -------------------------------------------------------------------------------- /src/Admin/Promos/Notices/Lite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Promos/Notices/Lite.php -------------------------------------------------------------------------------- /src/Admin/Promos/PromoHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Promos/PromoHandler.php -------------------------------------------------------------------------------- /src/Admin/Refund_Items_Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Refund_Items_Table.php -------------------------------------------------------------------------------- /src/Admin/Reports_Sections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Reports_Sections.php -------------------------------------------------------------------------------- /src/Admin/Sections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Sections.php -------------------------------------------------------------------------------- /src/Admin/Sections/Section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Sections/Section.php -------------------------------------------------------------------------------- /src/Admin/Settings/Invoices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Settings/Invoices.php -------------------------------------------------------------------------------- /src/Admin/Settings/Pointers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Settings/Pointers.php -------------------------------------------------------------------------------- /src/Admin/Settings/Recurring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Settings/Recurring.php -------------------------------------------------------------------------------- /src/Admin/Settings/Register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Settings/Register.php -------------------------------------------------------------------------------- /src/Admin/Settings/Reviews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Settings/Reviews.php -------------------------------------------------------------------------------- /src/Admin/Settings/Sanitize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Settings/Sanitize.php -------------------------------------------------------------------------------- /src/Admin/Settings/Screen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Settings/Screen.php -------------------------------------------------------------------------------- /src/Admin/Settings/Tabs/Misc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Settings/Tabs/Misc.php -------------------------------------------------------------------------------- /src/Admin/Settings/Tabs/Tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Settings/Tabs/Tab.php -------------------------------------------------------------------------------- /src/Admin/Settings/Tabs/Taxes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Settings/Tabs/Taxes.php -------------------------------------------------------------------------------- /src/Admin/Settings/WPConsent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Settings/WPConsent.php -------------------------------------------------------------------------------- /src/Admin/Settings/WP_SMTP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Settings/WP_SMTP.php -------------------------------------------------------------------------------- /src/Admin/SiteHealth/Cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/SiteHealth/Cron.php -------------------------------------------------------------------------------- /src/Admin/SiteHealth/Direct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/SiteHealth/Direct.php -------------------------------------------------------------------------------- /src/Admin/SiteHealth/Gateways.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/SiteHealth/Gateways.php -------------------------------------------------------------------------------- /src/Admin/SiteHealth/General.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/SiteHealth/General.php -------------------------------------------------------------------------------- /src/Admin/SiteHealth/Licenses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/SiteHealth/Licenses.php -------------------------------------------------------------------------------- /src/Admin/SiteHealth/Pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/SiteHealth/Pages.php -------------------------------------------------------------------------------- /src/Admin/SiteHealth/Sessions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/SiteHealth/Sessions.php -------------------------------------------------------------------------------- /src/Admin/SiteHealth/Tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/SiteHealth/Tables.php -------------------------------------------------------------------------------- /src/Admin/SiteHealth/Taxes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/SiteHealth/Taxes.php -------------------------------------------------------------------------------- /src/Admin/SiteHealth/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/SiteHealth/Test.php -------------------------------------------------------------------------------- /src/Admin/SiteHealth/Tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/SiteHealth/Tests.php -------------------------------------------------------------------------------- /src/Admin/Styles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Styles.php -------------------------------------------------------------------------------- /src/Admin/Tools/DebugLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Tools/DebugLog.php -------------------------------------------------------------------------------- /src/Admin/Tools/Labs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Tools/Labs.php -------------------------------------------------------------------------------- /src/Admin/Tools/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Tools/Loader.php -------------------------------------------------------------------------------- /src/Admin/Tools/Screen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Tools/Screen.php -------------------------------------------------------------------------------- /src/Admin/Upgrades/v3/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Upgrades/v3/Base.php -------------------------------------------------------------------------------- /src/Admin/Upgrades/v3/Logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Upgrades/v3/Logs.php -------------------------------------------------------------------------------- /src/Admin/Upgrades/v3/Orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Upgrades/v3/Orders.php -------------------------------------------------------------------------------- /src/Admin/Utils/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Admin/Utils/Page.php -------------------------------------------------------------------------------- /src/Assets/Checkout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Assets/Checkout.php -------------------------------------------------------------------------------- /src/Assets/Localization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Assets/Localization.php -------------------------------------------------------------------------------- /src/Assets/Styles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Assets/Styles.php -------------------------------------------------------------------------------- /src/Base_Object.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Base_Object.php -------------------------------------------------------------------------------- /src/Blocks/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Blocks/Loader.php -------------------------------------------------------------------------------- /src/Blocks/Utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Blocks/Utility.php -------------------------------------------------------------------------------- /src/CLI/Migration/Discounts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/CLI/Migration/Discounts.php -------------------------------------------------------------------------------- /src/Captcha/Utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Captcha/Utility.php -------------------------------------------------------------------------------- /src/Captcha/Validate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Captcha/Validate.php -------------------------------------------------------------------------------- /src/Checkout/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Checkout/Address.php -------------------------------------------------------------------------------- /src/Checkout/AutoRegister.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Checkout/AutoRegister.php -------------------------------------------------------------------------------- /src/Checkout/Errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Checkout/Errors.php -------------------------------------------------------------------------------- /src/Checkout/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Checkout/Loader.php -------------------------------------------------------------------------------- /src/Checkout/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Checkout/Validator.php -------------------------------------------------------------------------------- /src/Compat/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Compat/Base.php -------------------------------------------------------------------------------- /src/Compat/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Compat/Customer.php -------------------------------------------------------------------------------- /src/Compat/CustomerMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Compat/CustomerMeta.php -------------------------------------------------------------------------------- /src/Compat/Discount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Compat/Discount.php -------------------------------------------------------------------------------- /src/Compat/Discount_Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Compat/Discount_Query.php -------------------------------------------------------------------------------- /src/Compat/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Compat/Log.php -------------------------------------------------------------------------------- /src/Compat/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Compat/Payment.php -------------------------------------------------------------------------------- /src/Compat/Tax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Compat/Tax.php -------------------------------------------------------------------------------- /src/Compat/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Compat/Template.php -------------------------------------------------------------------------------- /src/Compatibility/Hosts/Host.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Compatibility/Hosts/Host.php -------------------------------------------------------------------------------- /src/Compatibility/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Compatibility/Loader.php -------------------------------------------------------------------------------- /src/Component.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Component.php -------------------------------------------------------------------------------- /src/Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Core.php -------------------------------------------------------------------------------- /src/Cron/Components/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Cron/Components/Cart.php -------------------------------------------------------------------------------- /src/Cron/Components/Component.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Cron/Components/Component.php -------------------------------------------------------------------------------- /src/Cron/Components/Exports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Cron/Components/Exports.php -------------------------------------------------------------------------------- /src/Cron/Components/NewUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Cron/Components/NewUser.php -------------------------------------------------------------------------------- /src/Cron/Components/Orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Cron/Components/Orders.php -------------------------------------------------------------------------------- /src/Cron/Components/Passes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Cron/Components/Passes.php -------------------------------------------------------------------------------- /src/Cron/Components/Sessions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Cron/Components/Sessions.php -------------------------------------------------------------------------------- /src/Cron/Components/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Cron/Components/Store.php -------------------------------------------------------------------------------- /src/Cron/Components/Stripe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Cron/Components/Stripe.php -------------------------------------------------------------------------------- /src/Cron/Events/DailyEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Cron/Events/DailyEvents.php -------------------------------------------------------------------------------- /src/Cron/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Cron/Events/Event.php -------------------------------------------------------------------------------- /src/Cron/Events/SingleEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Cron/Events/SingleEvent.php -------------------------------------------------------------------------------- /src/Cron/Events/WeeklyEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Cron/Events/WeeklyEvents.php -------------------------------------------------------------------------------- /src/Cron/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Cron/Loader.php -------------------------------------------------------------------------------- /src/Cron/Schedules/Schedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Cron/Schedules/Schedule.php -------------------------------------------------------------------------------- /src/Cron/Traits/Clear.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Cron/Traits/Clear.php -------------------------------------------------------------------------------- /src/Cron/Traits/NextScheduled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Cron/Traits/NextScheduled.php -------------------------------------------------------------------------------- /src/Currency/Currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Currency/Currency.php -------------------------------------------------------------------------------- /src/Currency/Money_Formatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Currency/Money_Formatter.php -------------------------------------------------------------------------------- /src/Customers/Recalculations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Customers/Recalculations.php -------------------------------------------------------------------------------- /src/Database/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Base.php -------------------------------------------------------------------------------- /src/Database/Column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Column.php -------------------------------------------------------------------------------- /src/Database/Components.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Components.php -------------------------------------------------------------------------------- /src/Database/NotificationsDB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/NotificationsDB.php -------------------------------------------------------------------------------- /src/Database/Queries/Compare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Queries/Compare.php -------------------------------------------------------------------------------- /src/Database/Queries/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Queries/Customer.php -------------------------------------------------------------------------------- /src/Database/Queries/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Queries/Date.php -------------------------------------------------------------------------------- /src/Database/Queries/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Queries/Email.php -------------------------------------------------------------------------------- /src/Database/Queries/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Queries/Log.php -------------------------------------------------------------------------------- /src/Database/Queries/LogEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Queries/LogEmail.php -------------------------------------------------------------------------------- /src/Database/Queries/Meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Queries/Meta.php -------------------------------------------------------------------------------- /src/Database/Queries/Note.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Queries/Note.php -------------------------------------------------------------------------------- /src/Database/Queries/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Queries/Order.php -------------------------------------------------------------------------------- /src/Database/Queries/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Queries/Session.php -------------------------------------------------------------------------------- /src/Database/Queries/TaxRate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Queries/TaxRate.php -------------------------------------------------------------------------------- /src/Database/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Query.php -------------------------------------------------------------------------------- /src/Database/Row.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Row.php -------------------------------------------------------------------------------- /src/Database/Rows/Adjustment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Rows/Adjustment.php -------------------------------------------------------------------------------- /src/Database/Rows/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Rows/Customer.php -------------------------------------------------------------------------------- /src/Database/Rows/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Rows/Email.php -------------------------------------------------------------------------------- /src/Database/Rows/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Rows/Log.php -------------------------------------------------------------------------------- /src/Database/Rows/Note.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Rows/Note.php -------------------------------------------------------------------------------- /src/Database/Rows/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Rows/Order.php -------------------------------------------------------------------------------- /src/Database/Rows/Order_Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Rows/Order_Item.php -------------------------------------------------------------------------------- /src/Database/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Schema.php -------------------------------------------------------------------------------- /src/Database/Schemas/Emails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Schemas/Emails.php -------------------------------------------------------------------------------- /src/Database/Schemas/Logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Schemas/Logs.php -------------------------------------------------------------------------------- /src/Database/Schemas/Notes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Schemas/Notes.php -------------------------------------------------------------------------------- /src/Database/Schemas/Orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Schemas/Orders.php -------------------------------------------------------------------------------- /src/Database/Schemas/Sessions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Schemas/Sessions.php -------------------------------------------------------------------------------- /src/Database/Schemas/TaxRates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Schemas/TaxRates.php -------------------------------------------------------------------------------- /src/Database/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Table.php -------------------------------------------------------------------------------- /src/Database/Tables/Customers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Tables/Customers.php -------------------------------------------------------------------------------- /src/Database/Tables/EmailMeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Tables/EmailMeta.php -------------------------------------------------------------------------------- /src/Database/Tables/Emails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Tables/Emails.php -------------------------------------------------------------------------------- /src/Database/Tables/Log_Meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Tables/Log_Meta.php -------------------------------------------------------------------------------- /src/Database/Tables/Logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Tables/Logs.php -------------------------------------------------------------------------------- /src/Database/Tables/Note_Meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Tables/Note_Meta.php -------------------------------------------------------------------------------- /src/Database/Tables/Notes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Tables/Notes.php -------------------------------------------------------------------------------- /src/Database/Tables/Orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Tables/Orders.php -------------------------------------------------------------------------------- /src/Database/Tables/Sessions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Tables/Sessions.php -------------------------------------------------------------------------------- /src/Database/Tables/TaxRates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Database/Tables/TaxRates.php -------------------------------------------------------------------------------- /src/Deprecated/EmptyClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Deprecated/EmptyClass.php -------------------------------------------------------------------------------- /src/Discounts/ItemAmount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Discounts/ItemAmount.php -------------------------------------------------------------------------------- /src/Discounts/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Discounts/Search.php -------------------------------------------------------------------------------- /src/Downloads/Process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Downloads/Process.php -------------------------------------------------------------------------------- /src/Downloads/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Downloads/Query.php -------------------------------------------------------------------------------- /src/Downloads/Recalculations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Downloads/Recalculations.php -------------------------------------------------------------------------------- /src/Downloads/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Downloads/Search.php -------------------------------------------------------------------------------- /src/Downloads/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Downloads/Service.php -------------------------------------------------------------------------------- /src/Downloads/Services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Downloads/Services.php -------------------------------------------------------------------------------- /src/Elementor/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Elementor/Loader.php -------------------------------------------------------------------------------- /src/Elementor/Utils/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Elementor/Utils/Page.php -------------------------------------------------------------------------------- /src/Elementor/Widgets/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Elementor/Widgets/Base.php -------------------------------------------------------------------------------- /src/Emails/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Emails/Base.php -------------------------------------------------------------------------------- /src/Emails/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Emails/Email.php -------------------------------------------------------------------------------- /src/Emails/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Emails/Handler.php -------------------------------------------------------------------------------- /src/Emails/Legacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Emails/Legacy.php -------------------------------------------------------------------------------- /src/Emails/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Emails/Loader.php -------------------------------------------------------------------------------- /src/Emails/LogEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Emails/LogEmail.php -------------------------------------------------------------------------------- /src/Emails/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Emails/Registry.php -------------------------------------------------------------------------------- /src/Emails/Tags/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Emails/Tags/Handler.php -------------------------------------------------------------------------------- /src/Emails/Tags/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Emails/Tags/Registry.php -------------------------------------------------------------------------------- /src/Emails/Tags/Render.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Emails/Tags/Render.php -------------------------------------------------------------------------------- /src/Emails/Templates/NewUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Emails/Templates/NewUser.php -------------------------------------------------------------------------------- /src/Emails/Templates/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Emails/Templates/Registry.php -------------------------------------------------------------------------------- /src/Emails/Traits/Orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Emails/Traits/Orders.php -------------------------------------------------------------------------------- /src/Emails/Traits/Preview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Emails/Traits/Preview.php -------------------------------------------------------------------------------- /src/Emails/Triggers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Emails/Triggers.php -------------------------------------------------------------------------------- /src/Emails/Types/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Emails/Types/Email.php -------------------------------------------------------------------------------- /src/Emails/Types/NewUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Emails/Types/NewUser.php -------------------------------------------------------------------------------- /src/Emails/Types/NewUserAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Emails/Types/NewUserAdmin.php -------------------------------------------------------------------------------- /src/Emails/Types/OrderReceipt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Emails/Types/OrderReceipt.php -------------------------------------------------------------------------------- /src/Emails/Types/OrderRefund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Emails/Types/OrderRefund.php -------------------------------------------------------------------------------- /src/Extensions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Extensions/Handler.php -------------------------------------------------------------------------------- /src/Extensions/Updater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Extensions/Updater.php -------------------------------------------------------------------------------- /src/Fees/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Fees/Handler.php -------------------------------------------------------------------------------- /src/Forms/Checkout/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Forms/Checkout/Address.php -------------------------------------------------------------------------------- /src/Forms/Checkout/Address2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Forms/Checkout/Address2.php -------------------------------------------------------------------------------- /src/Forms/Checkout/City.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Forms/Checkout/City.php -------------------------------------------------------------------------------- /src/Forms/Checkout/Country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Forms/Checkout/Country.php -------------------------------------------------------------------------------- /src/Forms/Checkout/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Forms/Checkout/Field.php -------------------------------------------------------------------------------- /src/Forms/Checkout/Phone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Forms/Checkout/Phone.php -------------------------------------------------------------------------------- /src/Forms/Checkout/PostalCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Forms/Checkout/PostalCode.php -------------------------------------------------------------------------------- /src/Forms/Checkout/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Forms/Checkout/Registry.php -------------------------------------------------------------------------------- /src/Forms/Checkout/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Forms/Checkout/State.php -------------------------------------------------------------------------------- /src/Forms/Fields/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Forms/Fields/Field.php -------------------------------------------------------------------------------- /src/Forms/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Forms/Handler.php -------------------------------------------------------------------------------- /src/Forms/Login/Password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Forms/Login/Password.php -------------------------------------------------------------------------------- /src/Forms/Login/Remember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Forms/Login/Remember.php -------------------------------------------------------------------------------- /src/Forms/Login/Username.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Forms/Login/Username.php -------------------------------------------------------------------------------- /src/Forms/Register/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Forms/Register/Email.php -------------------------------------------------------------------------------- /src/Forms/Register/Password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Forms/Register/Password.php -------------------------------------------------------------------------------- /src/Forms/Register/Username.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Forms/Register/Username.php -------------------------------------------------------------------------------- /src/Forms/Register/Weak.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Forms/Register/Weak.php -------------------------------------------------------------------------------- /src/Gateways/Gateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Gateways/Gateway.php -------------------------------------------------------------------------------- /src/Gateways/PayPal/API.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Gateways/PayPal/API.php -------------------------------------------------------------------------------- /src/Gateways/PayPal/Gateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Gateways/PayPal/Gateway.php -------------------------------------------------------------------------------- /src/Gateways/PayPal/IPN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Gateways/PayPal/IPN.php -------------------------------------------------------------------------------- /src/Gateways/PayPal/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Gateways/PayPal/Token.php -------------------------------------------------------------------------------- /src/Gateways/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Gateways/Registry.php -------------------------------------------------------------------------------- /src/Gateways/Square/Gateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Gateways/Square/Gateway.php -------------------------------------------------------------------------------- /src/Gateways/Stripe/API.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Gateways/Stripe/API.php -------------------------------------------------------------------------------- /src/Gateways/Stripe/Connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Gateways/Stripe/Connect.php -------------------------------------------------------------------------------- /src/Gateways/Stripe/Gateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Gateways/Stripe/Gateway.php -------------------------------------------------------------------------------- /src/Gateways/Stripe/Intents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Gateways/Stripe/Intents.php -------------------------------------------------------------------------------- /src/Gateways/Stripe/License.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Gateways/Stripe/License.php -------------------------------------------------------------------------------- /src/Globals/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Globals/Loader.php -------------------------------------------------------------------------------- /src/Globals/Polyfills/PHP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Globals/Polyfills/PHP.php -------------------------------------------------------------------------------- /src/HTML/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/HTML/Base.php -------------------------------------------------------------------------------- /src/HTML/CategorySelect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/HTML/CategorySelect.php -------------------------------------------------------------------------------- /src/HTML/Checkbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/HTML/Checkbox.php -------------------------------------------------------------------------------- /src/HTML/CheckboxToggle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/HTML/CheckboxToggle.php -------------------------------------------------------------------------------- /src/HTML/CountrySelect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/HTML/CountrySelect.php -------------------------------------------------------------------------------- /src/HTML/DiscountSelect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/HTML/DiscountSelect.php -------------------------------------------------------------------------------- /src/HTML/Elements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/HTML/Elements.php -------------------------------------------------------------------------------- /src/HTML/FromTo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/HTML/FromTo.php -------------------------------------------------------------------------------- /src/HTML/Multicheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/HTML/Multicheck.php -------------------------------------------------------------------------------- /src/HTML/Number.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/HTML/Number.php -------------------------------------------------------------------------------- /src/HTML/Phone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/HTML/Phone.php -------------------------------------------------------------------------------- /src/HTML/ProductSelect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/HTML/ProductSelect.php -------------------------------------------------------------------------------- /src/HTML/Region.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/HTML/Region.php -------------------------------------------------------------------------------- /src/HTML/RegionSelect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/HTML/RegionSelect.php -------------------------------------------------------------------------------- /src/HTML/Select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/HTML/Select.php -------------------------------------------------------------------------------- /src/HTML/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/HTML/Text.php -------------------------------------------------------------------------------- /src/HTML/Textarea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/HTML/Textarea.php -------------------------------------------------------------------------------- /src/HTML/TimelineTooltip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/HTML/TimelineTooltip.php -------------------------------------------------------------------------------- /src/HTML/Tooltip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/HTML/Tooltip.php -------------------------------------------------------------------------------- /src/HTML/Traits/ShopStates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/HTML/Traits/ShopStates.php -------------------------------------------------------------------------------- /src/HTML/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/HTML/Upload.php -------------------------------------------------------------------------------- /src/Integrations/Elementor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Integrations/Elementor.php -------------------------------------------------------------------------------- /src/Integrations/Integration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Integrations/Integration.php -------------------------------------------------------------------------------- /src/Integrations/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Integrations/Registry.php -------------------------------------------------------------------------------- /src/Integrations/WPCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Integrations/WPCode.php -------------------------------------------------------------------------------- /src/Licensing/API.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Licensing/API.php -------------------------------------------------------------------------------- /src/Licensing/Ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Licensing/Ajax.php -------------------------------------------------------------------------------- /src/Licensing/License.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Licensing/License.php -------------------------------------------------------------------------------- /src/Licensing/Messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Licensing/Messages.php -------------------------------------------------------------------------------- /src/Licensing/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Licensing/Settings.php -------------------------------------------------------------------------------- /src/Licensing/Traits/Controls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Licensing/Traits/Controls.php -------------------------------------------------------------------------------- /src/Lite/Admin/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Lite/Admin/Menu.php -------------------------------------------------------------------------------- /src/Lite/Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Lite/Core.php -------------------------------------------------------------------------------- /src/Logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Logging.php -------------------------------------------------------------------------------- /src/Logs/Api_Request_Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Logs/Api_Request_Log.php -------------------------------------------------------------------------------- /src/Logs/File_Download_Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Logs/File_Download_Log.php -------------------------------------------------------------------------------- /src/Logs/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Logs/Log.php -------------------------------------------------------------------------------- /src/Models/Download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Models/Download.php -------------------------------------------------------------------------------- /src/Models/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Models/Notification.php -------------------------------------------------------------------------------- /src/Notes/Note.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Notes/Note.php -------------------------------------------------------------------------------- /src/Orders/DeferredActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Orders/DeferredActions.php -------------------------------------------------------------------------------- /src/Orders/Number.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Orders/Number.php -------------------------------------------------------------------------------- /src/Orders/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Orders/Order.php -------------------------------------------------------------------------------- /src/Orders/Order_Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Orders/Order_Address.php -------------------------------------------------------------------------------- /src/Orders/Order_Adjustment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Orders/Order_Adjustment.php -------------------------------------------------------------------------------- /src/Orders/Order_Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Orders/Order_Item.php -------------------------------------------------------------------------------- /src/Orders/Order_Transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Orders/Order_Transaction.php -------------------------------------------------------------------------------- /src/Orders/Refunds/Number.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Orders/Refunds/Number.php -------------------------------------------------------------------------------- /src/Orders/Refunds/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Orders/Refunds/Validator.php -------------------------------------------------------------------------------- /src/Profiler/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Profiler/Cart.php -------------------------------------------------------------------------------- /src/Profiler/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Profiler/Profiler.php -------------------------------------------------------------------------------- /src/Profiler/Traits/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Profiler/Traits/Log.php -------------------------------------------------------------------------------- /src/Profiler/Traits/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Profiler/Traits/Settings.php -------------------------------------------------------------------------------- /src/Profiler/Traits/Timing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Profiler/Traits/Timing.php -------------------------------------------------------------------------------- /src/Reports/Data/Base_Object.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Reports/Data/Base_Object.php -------------------------------------------------------------------------------- /src/Reports/Data/Endpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Reports/Data/Endpoint.php -------------------------------------------------------------------------------- /src/Reports/Data/Report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Reports/Data/Report.php -------------------------------------------------------------------------------- /src/Reports/Init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Reports/Init.php -------------------------------------------------------------------------------- /src/Reports/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Reports/Registry.php -------------------------------------------------------------------------------- /src/RequirementsCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/RequirementsCheck.php -------------------------------------------------------------------------------- /src/Sessions/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Sessions/Cart.php -------------------------------------------------------------------------------- /src/Sessions/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Sessions/Customer.php -------------------------------------------------------------------------------- /src/Sessions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Sessions/Handler.php -------------------------------------------------------------------------------- /src/Sessions/Managers/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Sessions/Managers/Manager.php -------------------------------------------------------------------------------- /src/Sessions/Managers/PHP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Sessions/Managers/PHP.php -------------------------------------------------------------------------------- /src/Sessions/PurchaseData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Sessions/PurchaseData.php -------------------------------------------------------------------------------- /src/Sessions/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Sessions/Session.php -------------------------------------------------------------------------------- /src/Sessions/Traits/Cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Sessions/Traits/Cookie.php -------------------------------------------------------------------------------- /src/Sessions/Traits/Legacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Sessions/Traits/Legacy.php -------------------------------------------------------------------------------- /src/Settings/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Settings/Setting.php -------------------------------------------------------------------------------- /src/Stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Stats.php -------------------------------------------------------------------------------- /src/Stats/Traits/Dates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Stats/Traits/Dates.php -------------------------------------------------------------------------------- /src/Stats/Traits/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Stats/Traits/Format.php -------------------------------------------------------------------------------- /src/Stats/Traits/Helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Stats/Traits/Helpers.php -------------------------------------------------------------------------------- /src/Stats/Traits/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Stats/Traits/Query.php -------------------------------------------------------------------------------- /src/Stats/Traits/Relative.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Stats/Traits/Relative.php -------------------------------------------------------------------------------- /src/Structured_Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Structured_Data.php -------------------------------------------------------------------------------- /src/Taxes/Rate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Taxes/Rate.php -------------------------------------------------------------------------------- /src/Telemetry/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Telemetry/Data.php -------------------------------------------------------------------------------- /src/Telemetry/Environment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Telemetry/Environment.php -------------------------------------------------------------------------------- /src/Telemetry/Integrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Telemetry/Integrations.php -------------------------------------------------------------------------------- /src/Telemetry/Licenses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Telemetry/Licenses.php -------------------------------------------------------------------------------- /src/Telemetry/Orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Telemetry/Orders.php -------------------------------------------------------------------------------- /src/Telemetry/Products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Telemetry/Products.php -------------------------------------------------------------------------------- /src/Telemetry/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Telemetry/Settings.php -------------------------------------------------------------------------------- /src/Telemetry/Stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Telemetry/Stats.php -------------------------------------------------------------------------------- /src/Telemetry/Tracking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Telemetry/Tracking.php -------------------------------------------------------------------------------- /src/Upgrades/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Upgrades/Loader.php -------------------------------------------------------------------------------- /src/Users/Verification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Users/Verification.php -------------------------------------------------------------------------------- /src/Utilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Utilities.php -------------------------------------------------------------------------------- /src/Utils/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Utils/Address.php -------------------------------------------------------------------------------- /src/Utils/Colors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Utils/Colors.php -------------------------------------------------------------------------------- /src/Utils/Convert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Utils/Convert.php -------------------------------------------------------------------------------- /src/Utils/Cookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Utils/Cookies.php -------------------------------------------------------------------------------- /src/Utils/Countries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Utils/Countries.php -------------------------------------------------------------------------------- /src/Utils/Data/Serializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Utils/Data/Serializer.php -------------------------------------------------------------------------------- /src/Utils/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Utils/Date.php -------------------------------------------------------------------------------- /src/Utils/EnvironmentChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Utils/EnvironmentChecker.php -------------------------------------------------------------------------------- /src/Utils/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Utils/Exception.php -------------------------------------------------------------------------------- /src/Utils/FileSystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Utils/FileSystem.php -------------------------------------------------------------------------------- /src/Utils/ListHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Utils/ListHandler.php -------------------------------------------------------------------------------- /src/Utils/Modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Utils/Modal.php -------------------------------------------------------------------------------- /src/Utils/ProgressBar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Utils/ProgressBar.php -------------------------------------------------------------------------------- /src/Utils/RESTChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Utils/RESTChecker.php -------------------------------------------------------------------------------- /src/Utils/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Utils/Registry.php -------------------------------------------------------------------------------- /src/Utils/RemoteRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Utils/RemoteRequest.php -------------------------------------------------------------------------------- /src/Utils/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Utils/Request.php -------------------------------------------------------------------------------- /src/Utils/Static_Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Utils/Static_Registry.php -------------------------------------------------------------------------------- /src/Utils/StatusBadge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Utils/StatusBadge.php -------------------------------------------------------------------------------- /src/Utils/Transient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/src/Utils/Transient.php -------------------------------------------------------------------------------- /templates/account-pending.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/templates/account-pending.php -------------------------------------------------------------------------------- /templates/checkout_cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/templates/checkout_cart.php -------------------------------------------------------------------------------- /templates/emails/body-default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/templates/emails/body-default.php -------------------------------------------------------------------------------- /templates/emails/body.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/templates/emails/body.php -------------------------------------------------------------------------------- /templates/emails/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/templates/emails/footer.php -------------------------------------------------------------------------------- /templates/emails/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/templates/emails/header.php -------------------------------------------------------------------------------- /templates/fonts/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/templates/fonts/check.svg -------------------------------------------------------------------------------- /templates/fonts/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/templates/fonts/lock.svg -------------------------------------------------------------------------------- /templates/history-downloads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/templates/history-downloads.php -------------------------------------------------------------------------------- /templates/history-purchases.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/templates/history-purchases.php -------------------------------------------------------------------------------- /templates/images/icons/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/templates/images/icons/iphone.png -------------------------------------------------------------------------------- /templates/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/templates/images/loading.gif -------------------------------------------------------------------------------- /templates/images/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/templates/images/tick.png -------------------------------------------------------------------------------- /templates/images/xit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/templates/images/xit.gif -------------------------------------------------------------------------------- /templates/payment-processing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/templates/payment-processing.php -------------------------------------------------------------------------------- /templates/shortcode-download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/templates/shortcode-download.php -------------------------------------------------------------------------------- /templates/shortcode-login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/templates/shortcode-login.php -------------------------------------------------------------------------------- /templates/shortcode-receipt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/templates/shortcode-receipt.php -------------------------------------------------------------------------------- /templates/shortcode-register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/templates/shortcode-register.php -------------------------------------------------------------------------------- /templates/stripe-success.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/templates/stripe-success.php -------------------------------------------------------------------------------- /templates/widget-cart-empty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/templates/widget-cart-empty.php -------------------------------------------------------------------------------- /templates/widget-cart-item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/templates/widget-cart-item.php -------------------------------------------------------------------------------- /templates/widget-cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/templates/widget-cart.php -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/admin/tests-pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/admin/tests-pages.php -------------------------------------------------------------------------------- /tests/ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/ajax.php -------------------------------------------------------------------------------- /tests/api/tests-user-keys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/api/tests-user-keys.php -------------------------------------------------------------------------------- /tests/blocks/tests-orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/blocks/tests-orders.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/checkout/tests-address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/checkout/tests-address.php -------------------------------------------------------------------------------- /tests/checkout/tests-checkout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/checkout/tests-checkout.php -------------------------------------------------------------------------------- /tests/checkout/tests-fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/checkout/tests-fields.php -------------------------------------------------------------------------------- /tests/checkout/tests-geoip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/checkout/tests-geoip.php -------------------------------------------------------------------------------- /tests/emails/tests-actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/emails/tests-actions.php -------------------------------------------------------------------------------- /tests/emails/tests-base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/emails/tests-base.php -------------------------------------------------------------------------------- /tests/emails/tests-list-table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/emails/tests-list-table.php -------------------------------------------------------------------------------- /tests/emails/tests-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/emails/tests-manager.php -------------------------------------------------------------------------------- /tests/emails/tests-new-user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/emails/tests-new-user.php -------------------------------------------------------------------------------- /tests/emails/tests-registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/emails/tests-registry.php -------------------------------------------------------------------------------- /tests/emails/tests-tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/emails/tests-tags.php -------------------------------------------------------------------------------- /tests/exports/tests-general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/exports/tests-general.php -------------------------------------------------------------------------------- /tests/fees/tests-fees-orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/fees/tests-fees-orders.php -------------------------------------------------------------------------------- /tests/fees/tests-fees.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/fees/tests-fees.php -------------------------------------------------------------------------------- /tests/gateways/tests-gateways.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/gateways/tests-gateways.php -------------------------------------------------------------------------------- /tests/gateways/tests-paypal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/gateways/tests-paypal.php -------------------------------------------------------------------------------- /tests/gateways/tests-registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/gateways/tests-registry.php -------------------------------------------------------------------------------- /tests/helpers/Licenses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/helpers/Licenses.php -------------------------------------------------------------------------------- /tests/helpers/shims.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/helpers/shims.php -------------------------------------------------------------------------------- /tests/helpers/stubs/wordfence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/helpers/stubs/wordfence.php -------------------------------------------------------------------------------- /tests/html/tests-number.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/html/tests-number.php -------------------------------------------------------------------------------- /tests/html/tests-region.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/html/tests-region.php -------------------------------------------------------------------------------- /tests/html/tests-select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/html/tests-select.php -------------------------------------------------------------------------------- /tests/html/tests-tooltip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/html/tests-tooltip.php -------------------------------------------------------------------------------- /tests/jest/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/jest/jest.config.js -------------------------------------------------------------------------------- /tests/logs/tests-debug-log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/logs/tests-debug-log.php -------------------------------------------------------------------------------- /tests/logs/tests-log-meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/logs/tests-log-meta.php -------------------------------------------------------------------------------- /tests/logs/tests-logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/logs/tests-logs.php -------------------------------------------------------------------------------- /tests/notes/tests-note-meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/notes/tests-note-meta.php -------------------------------------------------------------------------------- /tests/notes/tests-notes-db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/notes/tests-notes-db.php -------------------------------------------------------------------------------- /tests/notes/tests-notes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/notes/tests-notes.php -------------------------------------------------------------------------------- /tests/orders/tests-order-meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/orders/tests-order-meta.php -------------------------------------------------------------------------------- /tests/orders/tests-orders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/orders/tests-orders.php -------------------------------------------------------------------------------- /tests/orders/tests-payments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/orders/tests-payments.php -------------------------------------------------------------------------------- /tests/orders/tests-refunds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/orders/tests-refunds.php -------------------------------------------------------------------------------- /tests/orders/tests-stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/orders/tests-stats.php -------------------------------------------------------------------------------- /tests/orders/tests-trash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/orders/tests-trash.php -------------------------------------------------------------------------------- /tests/phpunit/factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/phpunit/factory.php -------------------------------------------------------------------------------- /tests/privacy/tests-masking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/privacy/tests-masking.php -------------------------------------------------------------------------------- /tests/reports/tests-endpoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/reports/tests-endpoints.php -------------------------------------------------------------------------------- /tests/reports/tests-init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/reports/tests-init.php -------------------------------------------------------------------------------- /tests/reports/tests-registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/reports/tests-registry.php -------------------------------------------------------------------------------- /tests/sessions/tests-cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/sessions/tests-cookie.php -------------------------------------------------------------------------------- /tests/sessions/tests-handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/sessions/tests-handler.php -------------------------------------------------------------------------------- /tests/settings/tests-setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/settings/tests-setting.php -------------------------------------------------------------------------------- /tests/sitehealth/tests-cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/sitehealth/tests-cron.php -------------------------------------------------------------------------------- /tests/sitehealth/tests-direct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/sitehealth/tests-direct.php -------------------------------------------------------------------------------- /tests/stripe/tests-filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/stripe/tests-filters.php -------------------------------------------------------------------------------- /tests/stripe/tests-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/stripe/tests-functions.php -------------------------------------------------------------------------------- /tests/stripe/tests-stripe-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/stripe/tests-stripe-api.php -------------------------------------------------------------------------------- /tests/taxes/tests-services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/taxes/tests-services.php -------------------------------------------------------------------------------- /tests/taxes/tests-tax-rates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/taxes/tests-tax-rates.php -------------------------------------------------------------------------------- /tests/taxes/tests-tax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/taxes/tests-tax.php -------------------------------------------------------------------------------- /tests/taxes/tests-validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/taxes/tests-validator.php -------------------------------------------------------------------------------- /tests/taxes/tests-vat-utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/taxes/tests-vat-utility.php -------------------------------------------------------------------------------- /tests/tests-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-api.php -------------------------------------------------------------------------------- /tests/tests-cart-performance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-cart-performance.php -------------------------------------------------------------------------------- /tests/tests-cart-sessions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-cart-sessions.php -------------------------------------------------------------------------------- /tests/tests-cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-cart.php -------------------------------------------------------------------------------- /tests/tests-countries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-countries.php -------------------------------------------------------------------------------- /tests/tests-errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-errors.php -------------------------------------------------------------------------------- /tests/tests-filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-filters.php -------------------------------------------------------------------------------- /tests/tests-formatting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-formatting.php -------------------------------------------------------------------------------- /tests/tests-install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-install.php -------------------------------------------------------------------------------- /tests/tests-languages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-languages.php -------------------------------------------------------------------------------- /tests/tests-logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-logging.php -------------------------------------------------------------------------------- /tests/tests-migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-migration.php -------------------------------------------------------------------------------- /tests/tests-mime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-mime.php -------------------------------------------------------------------------------- /tests/tests-misc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-misc.php -------------------------------------------------------------------------------- /tests/tests-pass-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-pass-manager.php -------------------------------------------------------------------------------- /tests/tests-polyfills.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-polyfills.php -------------------------------------------------------------------------------- /tests/tests-post-type-labels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-post-type-labels.php -------------------------------------------------------------------------------- /tests/tests-post-types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-post-types.php -------------------------------------------------------------------------------- /tests/tests-query-filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-query-filters.php -------------------------------------------------------------------------------- /tests/tests-register-meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-register-meta.php -------------------------------------------------------------------------------- /tests/tests-registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-registry.php -------------------------------------------------------------------------------- /tests/tests-roles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-roles.php -------------------------------------------------------------------------------- /tests/tests-scripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-scripts.php -------------------------------------------------------------------------------- /tests/tests-shortcodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-shortcodes.php -------------------------------------------------------------------------------- /tests/tests-stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-stats.php -------------------------------------------------------------------------------- /tests/tests-structured-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-structured-data.php -------------------------------------------------------------------------------- /tests/tests-telemetry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-telemetry.php -------------------------------------------------------------------------------- /tests/tests-template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-template.php -------------------------------------------------------------------------------- /tests/tests-templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-templates.php -------------------------------------------------------------------------------- /tests/tests-tokenizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-tokenizer.php -------------------------------------------------------------------------------- /tests/tests-upgrades.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-upgrades.php -------------------------------------------------------------------------------- /tests/tests-url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-url.php -------------------------------------------------------------------------------- /tests/tests-utilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-utilities.php -------------------------------------------------------------------------------- /tests/tests-widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/tests-widgets.php -------------------------------------------------------------------------------- /tests/users/tests-profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/users/tests-profile.php -------------------------------------------------------------------------------- /tests/utils/tests-colors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/utils/tests-colors.php -------------------------------------------------------------------------------- /tests/utils/tests-filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/utils/tests-filesystem.php -------------------------------------------------------------------------------- /tests/utils/tests-serializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/tests/utils/tests-serializer.php -------------------------------------------------------------------------------- /uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/uninstall.php -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/vendor/composer/installed.php -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/easy-digital-downloads/HEAD/webpack.config.js --------------------------------------------------------------------------------