merchi_sdk_ts 0.0.1-a
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +13 -0
- package/.eslintrc.cjs +43 -0
- package/LICENSE +21 -0
- package/README.md +2 -0
- package/dist/constants/auto_assign_production_on_actions.js +7 -0
- package/dist/constants/call_to_actions.js +15 -0
- package/dist/constants/call_to_actions.test.js +4 -0
- package/dist/constants/discount_types.js +4 -0
- package/dist/constants/discount_types.test.js +4 -0
- package/dist/constants/domain_types.js +13 -0
- package/dist/constants/domain_types.test.js +4 -0
- package/dist/constants/errors.js +32 -0
- package/dist/constants/event_types.js +6 -0
- package/dist/constants/event_types.test.js +4 -0
- package/dist/constants/field_types.js +14 -0
- package/dist/constants/field_types.test.js +4 -0
- package/dist/constants/input_types.js +14 -0
- package/dist/constants/input_types.test.js +4 -0
- package/dist/constants/inventory_status.test.js +4 -0
- package/dist/constants/inventory_statuses.js +7 -0
- package/dist/constants/invoice_types.js +6 -0
- package/dist/constants/invoice_types.test.js +4 -0
- package/dist/constants/item_types.js +6 -0
- package/dist/constants/item_types.test.js +4 -0
- package/dist/constants/job/drafting_status.js +8 -0
- package/dist/constants/job/drafting_status.test.js +4 -0
- package/dist/constants/job/payment_status.js +8 -0
- package/dist/constants/job/payment_status.test.js +4 -0
- package/dist/constants/job/production_status.js +13 -0
- package/dist/constants/job/production_status.test.js +4 -0
- package/dist/constants/job/shipment_status.js +12 -0
- package/dist/constants/job/shipment_status.test.js +4 -0
- package/dist/constants/job/supply_chain_request_status.js +7 -0
- package/dist/constants/job/supply_chain_request_status.test.js +4 -0
- package/dist/constants/job_priorities.js +7 -0
- package/dist/constants/job_priorities.test.js +4 -0
- package/dist/constants/job_status.js +50 -0
- package/dist/constants/job_status.test.js +4 -0
- package/dist/constants/job_types.js +16 -0
- package/dist/constants/job_types.test.js +4 -0
- package/dist/constants/notification_sections.js +14 -0
- package/dist/constants/notification_sections.test.js +4 -0
- package/dist/constants/notification_types.js +98 -0
- package/dist/constants/notification_types.test.js +4 -0
- package/dist/constants/notification_urgencies.js +7 -0
- package/dist/constants/notification_urgencies.test.js +4 -0
- package/dist/constants/payment_types.js +11 -0
- package/dist/constants/payment_types.test.js +4 -0
- package/dist/constants/platform.js +5 -0
- package/dist/constants/platform.test.js +8 -0
- package/dist/constants/product_types.js +26 -0
- package/dist/constants/product_types.test.js +4 -0
- package/dist/constants/rights.js +6 -0
- package/dist/constants/rights.test.js +4 -0
- package/dist/constants/robots_meta_directives.js +1 -0
- package/dist/constants/robots_meta_directives.test.js +4 -0
- package/dist/constants/roles.js +25 -0
- package/dist/constants/roles.test.js +4 -0
- package/dist/constants/shipment_companies.js +19 -0
- package/dist/constants/shipment_companies.test.js +4 -0
- package/dist/constants/shipment_services.js +4 -0
- package/dist/constants/shipment_services.test.js +4 -0
- package/dist/constants/system_roles.js +4 -0
- package/dist/constants/system_roles.test.js +4 -0
- package/dist/constants/theme_foundations.js +7 -0
- package/dist/constants/theme_foundations.test.js +4 -0
- package/dist/constants/theme_status.js +6 -0
- package/dist/constants/theme_status.test.js +4 -0
- package/dist/constants/user_types.js +18 -0
- package/dist/constants/user_types.test.js +4 -0
- package/dist/constants/white_label_accessibilities.js +6 -0
- package/dist/constants/white_label_accessibilities.test.js +4 -0
- package/dist/cookie.js +16 -0
- package/dist/cookie.test.js +12 -0
- package/dist/entities/address.js +166 -0
- package/dist/entities/address.test.js +6 -0
- package/dist/entities/assignment.js +185 -0
- package/dist/entities/assignment.test.js +38 -0
- package/dist/entities/automatic_payment_relationship.js +77 -0
- package/dist/entities/automatic_payment_relationship.test.js +6 -0
- package/dist/entities/backup.js +44 -0
- package/dist/entities/backup.test.js +6 -0
- package/dist/entities/bank.js +116 -0
- package/dist/entities/bank.test.js +6 -0
- package/dist/entities/cart.js +203 -0
- package/dist/entities/cart.test.js +52 -0
- package/dist/entities/cart_item.js +153 -0
- package/dist/entities/cart_item.test.js +34 -0
- package/dist/entities/cart_shipment_group.js +62 -0
- package/dist/entities/cart_shipment_quote.js +85 -0
- package/dist/entities/category.js +92 -0
- package/dist/entities/category.test.js +52 -0
- package/dist/entities/company.js +648 -0
- package/dist/entities/company.test.js +6 -0
- package/dist/entities/company_invitation.js +82 -0
- package/dist/entities/company_invitation.test.js +6 -0
- package/dist/entities/component.js +209 -0
- package/dist/entities/component.test.js +12 -0
- package/dist/entities/component_tag.js +50 -0
- package/dist/entities/component_tag.test.js +6 -0
- package/dist/entities/component_version.js +80 -0
- package/dist/entities/component_version.test.js +6 -0
- package/dist/entities/country_tax.js +110 -0
- package/dist/entities/country_tax.test.js +11 -0
- package/dist/entities/discount.js +77 -0
- package/dist/entities/discount.test.js +20 -0
- package/dist/entities/discount_group.js +74 -0
- package/dist/entities/discount_group.test.js +6 -0
- package/dist/entities/domain.js +535 -0
- package/dist/entities/domain.test.js +75 -0
- package/dist/entities/domain_invitation.js +90 -0
- package/dist/entities/domain_invitation.test.js +6 -0
- package/dist/entities/domain_tag.js +100 -0
- package/dist/entities/domain_tag.test.js +6 -0
- package/dist/entities/draft.js +180 -0
- package/dist/entities/draft.test.js +39 -0
- package/dist/entities/draft_comment.js +132 -0
- package/dist/entities/draft_comment.test.js +6 -0
- package/dist/entities/draft_template.js +105 -0
- package/dist/entities/draft_template.test.js +6 -0
- package/dist/entities/email_address.js +68 -0
- package/dist/entities/email_address.test.js +6 -0
- package/dist/entities/email_counter.js +56 -0
- package/dist/entities/email_counter.test.js +6 -0
- package/dist/entities/enrolled_domain.js +85 -0
- package/dist/entities/enrolled_domain.test.js +6 -0
- package/dist/entities/exchange_rate.js +62 -0
- package/dist/entities/exchange_rate.test.js +6 -0
- package/dist/entities/file.js +383 -0
- package/dist/entities/file.test.js +38 -0
- package/dist/entities/internal_tag.js +120 -0
- package/dist/entities/internal_tag.test.js +6 -0
- package/dist/entities/inventory.js +120 -0
- package/dist/entities/inventory.test.js +26 -0
- package/dist/entities/inventory_unit_variation.js +64 -0
- package/dist/entities/inventory_unit_variation.test.js +6 -0
- package/dist/entities/invoice.js +420 -0
- package/dist/entities/invoice.test.js +39 -0
- package/dist/entities/item.js +102 -0
- package/dist/entities/item.test.js +17 -0
- package/dist/entities/job.js +744 -0
- package/dist/entities/job.test.js +103 -0
- package/dist/entities/job_comment.js +120 -0
- package/dist/entities/job_comment.test.js +6 -0
- package/dist/entities/matching_inventory.js +77 -0
- package/dist/entities/menu.js +78 -0
- package/dist/entities/menu.test.js +6 -0
- package/dist/entities/menu_item.js +76 -0
- package/dist/entities/menu_item.test.js +6 -0
- package/dist/entities/notification.js +234 -0
- package/dist/entities/notification.test.js +6 -0
- package/dist/entities/page.js +84 -0
- package/dist/entities/page.test.js +6 -0
- package/dist/entities/payment.js +141 -0
- package/dist/entities/payment.test.js +18 -0
- package/dist/entities/payment_device.js +87 -0
- package/dist/entities/payment_device.test.js +6 -0
- package/dist/entities/phone_number.js +98 -0
- package/dist/entities/phone_number.test.js +6 -0
- package/dist/entities/product.js +806 -0
- package/dist/entities/product.test.js +811 -0
- package/dist/entities/production_comment.js +120 -0
- package/dist/entities/production_comment.test.js +6 -0
- package/dist/entities/quote.js +208 -0
- package/dist/entities/quote.test.js +107 -0
- package/dist/entities/quote_item.js +121 -0
- package/dist/entities/quote_item.test.js +56 -0
- package/dist/entities/seo_domain_page.js +82 -0
- package/dist/entities/seo_domain_page.test.js +6 -0
- package/dist/entities/session.js +77 -0
- package/dist/entities/session.test.js +6 -0
- package/dist/entities/shipment.js +401 -0
- package/dist/entities/shipment.test.js +28 -0
- package/dist/entities/shipment_item.js +49 -0
- package/dist/entities/shipment_item.test.js +6 -0
- package/dist/entities/shipment_item_fulfillment.js +48 -0
- package/dist/entities/shipment_item_fulfillment.test.js +6 -0
- package/dist/entities/shipment_method.js +146 -0
- package/dist/entities/shipment_method.test.js +6 -0
- package/dist/entities/shipment_method_variation.js +104 -0
- package/dist/entities/shipment_method_variation.test.js +6 -0
- package/dist/entities/short_url.js +95 -0
- package/dist/entities/short_url.test.js +6 -0
- package/dist/entities/subscription_plan.js +172 -0
- package/dist/entities/subscription_plan.test.js +6 -0
- package/dist/entities/supply_domain.js +73 -0
- package/dist/entities/supply_domain.test.js +6 -0
- package/dist/entities/system_role.js +50 -0
- package/dist/entities/system_role.test.js +6 -0
- package/dist/entities/theme.js +614 -0
- package/dist/entities/theme.test.js +39 -0
- package/dist/entities/theme_css_setting.js +67 -0
- package/dist/entities/theme_css_setting.test.js +6 -0
- package/dist/entities/user.js +749 -0
- package/dist/entities/user.test.js +157 -0
- package/dist/entities/user_company.js +78 -0
- package/dist/entities/user_company.test.js +6 -0
- package/dist/entities/variation.js +147 -0
- package/dist/entities/variation.test.js +6 -0
- package/dist/entities/variation_field.js +313 -0
- package/dist/entities/variation_field.test.js +69 -0
- package/dist/entities/variation_fields_option.js +190 -0
- package/dist/entities/variation_fields_option.test.js +47 -0
- package/dist/entities/variation_option.js +129 -0
- package/dist/entities/variation_option.test.js +6 -0
- package/dist/entities/variations_group.js +111 -0
- package/dist/entities/variations_group.test.js +6 -0
- package/dist/entity.js +888 -0
- package/dist/merchi.js +259 -0
- package/dist/merchi.test.js +35 -0
- package/dist/request.js +132 -0
- package/dist/request.test.js +46 -0
- package/dist/test_util.js +19 -0
- package/dist/toasts.js +27 -0
- package/dist/toasts.test.js +46 -0
- package/dist/util/float.js +24 -0
- package/dist/util/query_string.js +11 -0
- package/dist/util/query_string.test.js +6 -0
- package/dist/util/validation.js +3 -0
- package/dist/util/validation.test.js +12 -0
- package/dist/uuid.js +8 -0
- package/dist/uuid.test.js +13 -0
- package/jest.config.js +17 -0
- package/package.json +44 -0
- package/src/constants/auto_assign_production_on_actions.ts +6 -0
- package/src/constants/call_to_actions.test.ts +5 -0
- package/src/constants/call_to_actions.ts +14 -0
- package/src/constants/discount_types.test.ts +5 -0
- package/src/constants/discount_types.ts +3 -0
- package/src/constants/domain_types.test.ts +5 -0
- package/src/constants/domain_types.ts +12 -0
- package/src/constants/errors.ts +32 -0
- package/src/constants/event_types.test.ts +5 -0
- package/src/constants/event_types.ts +5 -0
- package/src/constants/field_types.test.ts +5 -0
- package/src/constants/field_types.ts +13 -0
- package/src/constants/input_types.test.ts +5 -0
- package/src/constants/input_types.ts +13 -0
- package/src/constants/inventory_status.test.ts +5 -0
- package/src/constants/inventory_statuses.ts +6 -0
- package/src/constants/invoice_types.test.ts +5 -0
- package/src/constants/invoice_types.ts +5 -0
- package/src/constants/item_types.test.ts +5 -0
- package/src/constants/item_types.ts +5 -0
- package/src/constants/job/drafting_status.test.ts +5 -0
- package/src/constants/job/drafting_status.ts +7 -0
- package/src/constants/job/payment_status.test.ts +5 -0
- package/src/constants/job/payment_status.ts +7 -0
- package/src/constants/job/production_status.test.ts +5 -0
- package/src/constants/job/production_status.ts +12 -0
- package/src/constants/job/shipment_status.test.ts +5 -0
- package/src/constants/job/shipment_status.ts +11 -0
- package/src/constants/job/supply_chain_request_status.test.ts +5 -0
- package/src/constants/job/supply_chain_request_status.ts +6 -0
- package/src/constants/job_priorities.test.ts +5 -0
- package/src/constants/job_priorities.ts +6 -0
- package/src/constants/job_status.test.ts +5 -0
- package/src/constants/job_status.ts +49 -0
- package/src/constants/job_types.test.ts +5 -0
- package/src/constants/job_types.ts +15 -0
- package/src/constants/notification_sections.test.ts +5 -0
- package/src/constants/notification_sections.ts +13 -0
- package/src/constants/notification_types.test.ts +5 -0
- package/src/constants/notification_types.ts +97 -0
- package/src/constants/notification_urgencies.test.ts +5 -0
- package/src/constants/notification_urgencies.ts +7 -0
- package/src/constants/payment_types.test.ts +5 -0
- package/src/constants/payment_types.ts +10 -0
- package/src/constants/platform.test.ts +15 -0
- package/src/constants/platform.ts +6 -0
- package/src/constants/product_types.test.ts +6 -0
- package/src/constants/product_types.ts +25 -0
- package/src/constants/rights.test.ts +5 -0
- package/src/constants/rights.ts +5 -0
- package/src/constants/robots_meta_directives.test.ts +5 -0
- package/src/constants/robots_meta_directives.ts +11 -0
- package/src/constants/roles.test.ts +5 -0
- package/src/constants/roles.ts +38 -0
- package/src/constants/shipment_companies.test.ts +5 -0
- package/src/constants/shipment_companies.ts +18 -0
- package/src/constants/shipment_services.test.ts +5 -0
- package/src/constants/shipment_services.ts +3 -0
- package/src/constants/system_roles.test.ts +5 -0
- package/src/constants/system_roles.ts +3 -0
- package/src/constants/theme_foundations.test.ts +5 -0
- package/src/constants/theme_foundations.ts +6 -0
- package/src/constants/theme_status.test.ts +5 -0
- package/src/constants/theme_status.ts +5 -0
- package/src/constants/user_types.test.ts +5 -0
- package/src/constants/user_types.ts +17 -0
- package/src/constants/white_label_accessibilities.test.ts +5 -0
- package/src/constants/white_label_accessibilities.ts +6 -0
- package/src/cookie.test.ts +11 -0
- package/src/cookie.ts +16 -0
- package/src/entities/address.test.ts +7 -0
- package/src/entities/address.ts +65 -0
- package/src/entities/assignment.test.ts +39 -0
- package/src/entities/assignment.ts +92 -0
- package/src/entities/automatic_payment_relationship.test.ts +8 -0
- package/src/entities/automatic_payment_relationship.ts +26 -0
- package/src/entities/backup.test.ts +7 -0
- package/src/entities/backup.ts +14 -0
- package/src/entities/bank.test.ts +7 -0
- package/src/entities/bank.ts +45 -0
- package/src/entities/cart.test.ts +50 -0
- package/src/entities/cart.ts +89 -0
- package/src/entities/cart_item.test.ts +33 -0
- package/src/entities/cart_item.ts +77 -0
- package/src/entities/cart_shipment_group.ts +21 -0
- package/src/entities/cart_shipment_quote.ts +33 -0
- package/src/entities/category.test.ts +57 -0
- package/src/entities/category.ts +37 -0
- package/src/entities/company.test.ts +7 -0
- package/src/entities/company.ts +275 -0
- package/src/entities/company_invitation.test.ts +7 -0
- package/src/entities/company_invitation.ts +33 -0
- package/src/entities/component.test.ts +14 -0
- package/src/entities/component.ts +92 -0
- package/src/entities/component_tag.test.ts +7 -0
- package/src/entities/component_tag.ts +17 -0
- package/src/entities/component_version.test.ts +7 -0
- package/src/entities/component_version.ts +30 -0
- package/src/entities/country_tax.test.ts +13 -0
- package/src/entities/country_tax.ts +46 -0
- package/src/entities/discount.test.ts +18 -0
- package/src/entities/discount.ts +34 -0
- package/src/entities/discount_group.test.ts +7 -0
- package/src/entities/discount_group.ts +28 -0
- package/src/entities/domain.test.ts +79 -0
- package/src/entities/domain.ts +246 -0
- package/src/entities/domain_invitation.test.ts +7 -0
- package/src/entities/domain_invitation.ts +36 -0
- package/src/entities/domain_tag.test.ts +7 -0
- package/src/entities/domain_tag.ts +42 -0
- package/src/entities/draft.test.ts +43 -0
- package/src/entities/draft.ts +88 -0
- package/src/entities/draft_comment.test.ts +7 -0
- package/src/entities/draft_comment.ts +54 -0
- package/src/entities/draft_template.test.ts +7 -0
- package/src/entities/draft_template.ts +40 -0
- package/src/entities/email_address.test.ts +7 -0
- package/src/entities/email_address.ts +24 -0
- package/src/entities/email_counter.test.ts +7 -0
- package/src/entities/email_counter.ts +20 -0
- package/src/entities/enrolled_domain.test.ts +7 -0
- package/src/entities/enrolled_domain.ts +40 -0
- package/src/entities/exchange_rate.test.ts +7 -0
- package/src/entities/exchange_rate.ts +22 -0
- package/src/entities/file.test.ts +43 -0
- package/src/entities/file.ts +172 -0
- package/src/entities/internal_tag.test.ts +7 -0
- package/src/entities/internal_tag.ts +51 -0
- package/src/entities/inventory.test.ts +28 -0
- package/src/entities/inventory.ts +56 -0
- package/src/entities/inventory_unit_variation.test.ts +7 -0
- package/src/entities/inventory_unit_variation.ts +29 -0
- package/src/entities/invoice.test.ts +43 -0
- package/src/entities/invoice.ts +179 -0
- package/src/entities/item.test.ts +19 -0
- package/src/entities/item.ts +44 -0
- package/src/entities/job.test.ts +95 -0
- package/src/entities/job.ts +349 -0
- package/src/entities/job_comment.test.ts +7 -0
- package/src/entities/job_comment.ts +50 -0
- package/src/entities/matching_inventory.ts +29 -0
- package/src/entities/menu.test.ts +7 -0
- package/src/entities/menu.ts +30 -0
- package/src/entities/menu_item.test.ts +7 -0
- package/src/entities/menu_item.ts +29 -0
- package/src/entities/notification.test.ts +7 -0
- package/src/entities/notification.ts +99 -0
- package/src/entities/page.test.ts +7 -0
- package/src/entities/page.ts +32 -0
- package/src/entities/payment.test.ts +19 -0
- package/src/entities/payment.ts +65 -0
- package/src/entities/payment_device.test.ts +7 -0
- package/src/entities/payment_device.ts +30 -0
- package/src/entities/phone_number.test.ts +7 -0
- package/src/entities/phone_number.ts +36 -0
- package/src/entities/product.test.ts +750 -0
- package/src/entities/product.ts +427 -0
- package/src/entities/production_comment.test.ts +7 -0
- package/src/entities/production_comment.ts +50 -0
- package/src/entities/quote.test.ts +98 -0
- package/src/entities/quote.ts +140 -0
- package/src/entities/quote_item.test.ts +50 -0
- package/src/entities/quote_item.ts +71 -0
- package/src/entities/seo_domain_page.test.ts +7 -0
- package/src/entities/seo_domain_page.ts +33 -0
- package/src/entities/session.test.ts +7 -0
- package/src/entities/session.ts +28 -0
- package/src/entities/shipment.test.ts +24 -0
- package/src/entities/shipment.ts +185 -0
- package/src/entities/shipment_item.test.ts +7 -0
- package/src/entities/shipment_item.ts +15 -0
- package/src/entities/shipment_item_fulfillment.test.ts +8 -0
- package/src/entities/shipment_item_fulfillment.ts +15 -0
- package/src/entities/shipment_method.test.ts +7 -0
- package/src/entities/shipment_method.ts +61 -0
- package/src/entities/shipment_method_variation.test.ts +7 -0
- package/src/entities/shipment_method_variation.ts +39 -0
- package/src/entities/short_url.test.ts +7 -0
- package/src/entities/short_url.ts +36 -0
- package/src/entities/subscription_plan.test.ts +7 -0
- package/src/entities/subscription_plan.ts +73 -0
- package/src/entities/supply_domain.test.ts +7 -0
- package/src/entities/supply_domain.ts +27 -0
- package/src/entities/system_role.test.ts +7 -0
- package/src/entities/system_role.ts +17 -0
- package/src/entities/theme.test.ts +38 -0
- package/src/entities/theme.ts +267 -0
- package/src/entities/theme_css_setting.test.ts +7 -0
- package/src/entities/theme_css_setting.ts +23 -0
- package/src/entities/user.test.ts +154 -0
- package/src/entities/user.ts +394 -0
- package/src/entities/user_company.test.ts +7 -0
- package/src/entities/user_company.ts +27 -0
- package/src/entities/variation.test.ts +7 -0
- package/src/entities/variation.ts +61 -0
- package/src/entities/variation_field.test.ts +76 -0
- package/src/entities/variation_field.ts +169 -0
- package/src/entities/variation_fields_option.test.ts +46 -0
- package/src/entities/variation_fields_option.ts +95 -0
- package/src/entities/variation_option.test.ts +7 -0
- package/src/entities/variation_option.ts +52 -0
- package/src/entities/variations_group.test.ts +7 -0
- package/src/entities/variations_group.ts +41 -0
- package/src/entity.ts +1002 -0
- package/src/merchi.test.ts +25 -0
- package/src/merchi.ts +379 -0
- package/src/request.test.ts +43 -0
- package/src/request.ts +124 -0
- package/src/test_util.ts +18 -0
- package/src/toasts.test.ts +38 -0
- package/src/toasts.ts +34 -0
- package/src/util/float.ts +12 -0
- package/src/util/query_string.test.ts +7 -0
- package/src/util/query_string.ts +11 -0
- package/src/util/validation.test.ts +16 -0
- package/src/util/validation.ts +2 -0
- package/src/uuid.test.ts +15 -0
- package/src/uuid.ts +8 -0
- package/tsconfig.json +23 -0
- package/webpack.config.cjs +27 -0
|
@@ -0,0 +1,648 @@
|
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
var _dec, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _dec8, _dec9, _dec10, _dec11, _dec12, _dec13, _dec14, _dec15, _dec16, _dec17, _dec18, _dec19, _dec20, _dec21, _dec22, _dec23, _dec24, _dec25, _dec26, _dec27, _dec28, _dec29, _dec30, _dec31, _dec32, _dec33, _dec34, _dec35, _dec36, _dec37, _dec38, _dec39, _dec40, _dec41, _dec42, _dec43, _dec44, _dec45, _dec46, _dec47, _dec48, _dec49, _dec50, _dec51, _dec52, _dec53, _dec54, _dec55, _dec56, _dec57, _dec58, _dec59, _dec60, _dec61, _dec62, _dec63, _dec64, _dec65, _dec66, _dec67, _dec68, _dec69, _dec70, _dec71, _dec72, _dec73, _dec74, _dec75, _dec76, _dec77, _dec78, _dec79, _dec80, _dec81, _dec82, _dec83, _class, _descriptor, _descriptor2, _descriptor3, _descriptor4, _descriptor5, _descriptor6, _descriptor7, _descriptor8, _descriptor9, _descriptor10, _descriptor11, _descriptor12, _descriptor13, _descriptor14, _descriptor15, _descriptor16, _descriptor17, _descriptor18, _descriptor19, _descriptor20, _descriptor21, _descriptor22, _descriptor23, _descriptor24, _descriptor25, _descriptor26, _descriptor27, _descriptor28, _descriptor29, _descriptor30, _descriptor31, _descriptor32, _descriptor33, _descriptor34, _descriptor35, _descriptor36, _descriptor37, _descriptor38, _descriptor39, _descriptor40, _descriptor41, _descriptor42, _descriptor43, _descriptor44, _descriptor45, _descriptor46, _descriptor47, _descriptor48, _descriptor49, _descriptor50, _descriptor51, _descriptor52, _descriptor53, _descriptor54, _descriptor55, _descriptor56, _descriptor57, _descriptor58, _descriptor59, _descriptor60, _descriptor61, _descriptor62, _descriptor63, _descriptor64, _descriptor65, _descriptor66, _descriptor67, _descriptor68, _descriptor69, _descriptor70, _descriptor71, _descriptor72, _descriptor73, _descriptor74, _descriptor75, _descriptor76, _descriptor77, _descriptor78, _descriptor79, _descriptor80, _descriptor81, _descriptor82, _descriptor83, _Company;
|
|
3
|
+
function _initializerDefineProperty(target, property, descriptor, context) { if (!descriptor) return; Object.defineProperty(target, property, { enumerable: descriptor.enumerable, configurable: descriptor.configurable, writable: descriptor.writable, value: descriptor.initializer ? descriptor.initializer.call(context) : void 0 }); }
|
|
4
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
5
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
6
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
7
|
+
function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
8
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
9
|
+
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
10
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
11
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
12
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
13
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
14
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
15
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
16
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
17
|
+
function _applyDecoratedDescriptor(target, property, decorators, descriptor, context) { var desc = {}; Object.keys(descriptor).forEach(function (key) { desc[key] = descriptor[key]; }); desc.enumerable = !!desc.enumerable; desc.configurable = !!desc.configurable; if ('value' in desc || desc.initializer) { desc.writable = true; } desc = decorators.slice().reverse().reduce(function (desc, decorator) { return decorator(target, property, desc) || desc; }, desc); if (context && desc.initializer !== void 0) { desc.value = desc.initializer ? desc.initializer.call(context) : void 0; desc.initializer = undefined; } if (desc.initializer === void 0) { Object.defineProperty(target, property, desc); desc = null; } return desc; }
|
|
18
|
+
function _initializerWarningHelper(descriptor, context) { throw new Error('Decorating class property failed. Please ensure that ' + 'transform-class-properties is enabled and runs after the decorators transform.'); }
|
|
19
|
+
import { Entity } from '../entity';
|
|
20
|
+
import { MerchiFile } from './file';
|
|
21
|
+
import { SubscriptionPlan } from './subscription_plan';
|
|
22
|
+
export var Company = (_dec = Company.property({
|
|
23
|
+
type: Date
|
|
24
|
+
}), _dec2 = Company.property(), _dec3 = Company.property(), _dec4 = Company.property(), _dec5 = Company.property(), _dec6 = Company.property({
|
|
25
|
+
type: String
|
|
26
|
+
}), _dec7 = Company.property(), _dec8 = Company.property({
|
|
27
|
+
type: String
|
|
28
|
+
}), _dec9 = Company.property({
|
|
29
|
+
type: String
|
|
30
|
+
}), _dec10 = Company.property({
|
|
31
|
+
type: String
|
|
32
|
+
}), _dec11 = Company.property({
|
|
33
|
+
type: String
|
|
34
|
+
}), _dec12 = Company.property({
|
|
35
|
+
type: String
|
|
36
|
+
}), _dec13 = Company.property(), _dec14 = Company.property({
|
|
37
|
+
embeddedByDefault: false
|
|
38
|
+
}), _dec15 = Company.property(), _dec16 = Company.property({
|
|
39
|
+
type: String
|
|
40
|
+
}), _dec17 = Company.property(), _dec18 = Company.property({
|
|
41
|
+
type: String
|
|
42
|
+
}), _dec19 = Company.property({
|
|
43
|
+
type: String
|
|
44
|
+
}), _dec20 = Company.property({
|
|
45
|
+
type: String
|
|
46
|
+
}), _dec21 = Company.property({
|
|
47
|
+
type: String
|
|
48
|
+
}), _dec22 = Company.property({
|
|
49
|
+
type: String
|
|
50
|
+
}), _dec23 = Company.property({
|
|
51
|
+
type: String
|
|
52
|
+
}), _dec24 = Company.property({
|
|
53
|
+
type: String
|
|
54
|
+
}), _dec25 = Company.property(), _dec26 = Company.property(), _dec27 = Company.property({
|
|
55
|
+
type: Date
|
|
56
|
+
}), _dec28 = Company.property({
|
|
57
|
+
type: Date
|
|
58
|
+
}), _dec29 = Company.property({
|
|
59
|
+
type: 'User'
|
|
60
|
+
}), _dec30 = Company.property(), _dec31 = Company.property(), _dec32 = Company.property({
|
|
61
|
+
type: String
|
|
62
|
+
}), _dec33 = Company.property({
|
|
63
|
+
type: String
|
|
64
|
+
}), _dec34 = Company.property({
|
|
65
|
+
type: Date
|
|
66
|
+
}), _dec35 = Company.property(), _dec36 = Company.property({
|
|
67
|
+
type: String
|
|
68
|
+
}), _dec37 = Company.property({
|
|
69
|
+
type: String
|
|
70
|
+
}), _dec38 = Company.property({
|
|
71
|
+
type: String
|
|
72
|
+
}), _dec39 = Company.property({
|
|
73
|
+
type: String
|
|
74
|
+
}), _dec40 = Company.property({
|
|
75
|
+
type: String
|
|
76
|
+
}), _dec41 = Company.property({
|
|
77
|
+
type: String
|
|
78
|
+
}), _dec42 = Company.property(), _dec43 = Company.property(), _dec44 = Company.property(), _dec45 = Company.property(), _dec46 = Company.property(), _dec47 = Company.property(), _dec48 = Company.property(), _dec49 = Company.property({
|
|
79
|
+
type: String
|
|
80
|
+
}), _dec50 = Company.property({
|
|
81
|
+
type: String
|
|
82
|
+
}), _dec51 = Company.property(), _dec52 = Company.property(), _dec53 = Company.property(), _dec54 = Company.property(), _dec55 = Company.property(), _dec56 = Company.property({
|
|
83
|
+
arrayType: 'InternalTag'
|
|
84
|
+
}), _dec57 = Company.property({
|
|
85
|
+
type: MerchiFile
|
|
86
|
+
}), _dec58 = Company.property({
|
|
87
|
+
type: 'CountryTax'
|
|
88
|
+
}), _dec59 = Company.property({
|
|
89
|
+
arrayType: 'AutomaticPaymentRelationship'
|
|
90
|
+
}), _dec60 = Company.property({
|
|
91
|
+
arrayType: 'CountryTax'
|
|
92
|
+
}), _dec61 = Company.property({
|
|
93
|
+
arrayType: 'PaymentDevice'
|
|
94
|
+
}), _dec62 = Company.property({
|
|
95
|
+
type: SubscriptionPlan
|
|
96
|
+
}), _dec63 = Company.property({
|
|
97
|
+
arrayType: 'EmailAddress'
|
|
98
|
+
}), _dec64 = Company.property({
|
|
99
|
+
arrayType: 'PhoneNumber'
|
|
100
|
+
}), _dec65 = Company.property({
|
|
101
|
+
arrayType: 'PhoneNumber'
|
|
102
|
+
}), _dec66 = Company.property({
|
|
103
|
+
arrayType: 'Address'
|
|
104
|
+
}), _dec67 = Company.property({
|
|
105
|
+
arrayType: 'UserCompany'
|
|
106
|
+
}), _dec68 = Company.property({
|
|
107
|
+
arrayType: 'Shipment'
|
|
108
|
+
}), _dec69 = Company.property({
|
|
109
|
+
arrayType: 'Shipment'
|
|
110
|
+
}), _dec70 = Company.property({
|
|
111
|
+
arrayType: 'Product'
|
|
112
|
+
}), _dec71 = Company.property({
|
|
113
|
+
arrayType: 'Bank'
|
|
114
|
+
}), _dec72 = Company.property({
|
|
115
|
+
arrayType: 'UserCompany'
|
|
116
|
+
}), _dec73 = Company.property({
|
|
117
|
+
arrayType: 'CompanyInvitation'
|
|
118
|
+
}), _dec74 = Company.property({
|
|
119
|
+
arrayType: 'Job'
|
|
120
|
+
}), _dec75 = Company.property({
|
|
121
|
+
arrayType: 'Cart'
|
|
122
|
+
}), _dec76 = Company.property({
|
|
123
|
+
arrayType: 'Domain'
|
|
124
|
+
}), _dec77 = Company.property({
|
|
125
|
+
arrayType: 'Domain'
|
|
126
|
+
}), _dec78 = Company.property({
|
|
127
|
+
arrayType: 'EmailAddress'
|
|
128
|
+
}), _dec79 = Company.property({
|
|
129
|
+
arrayType: 'PhoneNumber'
|
|
130
|
+
}), _dec80 = Company.property({
|
|
131
|
+
arrayType: 'PhoneNumber'
|
|
132
|
+
}), _dec81 = Company.property({
|
|
133
|
+
arrayType: 'Invoice'
|
|
134
|
+
}), _dec82 = Company.property({
|
|
135
|
+
arrayType: 'Invoice'
|
|
136
|
+
}), _dec83 = Company.property({
|
|
137
|
+
arrayType: 'Address'
|
|
138
|
+
}), (_class = (_Company = /*#__PURE__*/function (_Entity) {
|
|
139
|
+
_inherits(Company, _Entity);
|
|
140
|
+
function Company() {
|
|
141
|
+
var _this;
|
|
142
|
+
_classCallCheck(this, Company);
|
|
143
|
+
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
144
|
+
args[_key] = arguments[_key];
|
|
145
|
+
}
|
|
146
|
+
_this = _callSuper(this, Company, [].concat(args));
|
|
147
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "archived", _descriptor, _assertThisInitialized(_this));
|
|
148
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "id", _descriptor2, _assertThisInitialized(_this));
|
|
149
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "name", _descriptor3, _assertThisInitialized(_this));
|
|
150
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "callToActions", _descriptor4, _assertThisInitialized(_this));
|
|
151
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "callToActionDetails", _descriptor5, _assertThisInitialized(_this));
|
|
152
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "website", _descriptor6, _assertThisInitialized(_this));
|
|
153
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "ownershipUnconfirmed", _descriptor7, _assertThisInitialized(_this));
|
|
154
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "taxNumber", _descriptor8, _assertThisInitialized(_this));
|
|
155
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "taxNumberType", _descriptor9, _assertThisInitialized(_this));
|
|
156
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "paypalAccount", _descriptor10, _assertThisInitialized(_this));
|
|
157
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "paypalPassword", _descriptor11, _assertThisInitialized(_this));
|
|
158
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "paypalSignature", _descriptor12, _assertThisInitialized(_this));
|
|
159
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "isPaypalValid", _descriptor13, _assertThisInitialized(_this));
|
|
160
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "isStripeAccountEnabled", _descriptor14, _assertThisInitialized(_this));
|
|
161
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "stripeAccountId", _descriptor15, _assertThisInitialized(_this));
|
|
162
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "stripeCustomerId", _descriptor16, _assertThisInitialized(_this));
|
|
163
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "sendleActive", _descriptor17, _assertThisInitialized(_this));
|
|
164
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "sendleApiKey", _descriptor18, _assertThisInitialized(_this));
|
|
165
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "sendleId", _descriptor19, _assertThisInitialized(_this));
|
|
166
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "unltdAiApiOrganizationId", _descriptor20, _assertThisInitialized(_this));
|
|
167
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "unltdAiApiSecretKey", _descriptor21, _assertThisInitialized(_this));
|
|
168
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "internalUseNotes", _descriptor22, _assertThisInitialized(_this));
|
|
169
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "internalUseAiContext", _descriptor23, _assertThisInitialized(_this));
|
|
170
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "aiContext", _descriptor24, _assertThisInitialized(_this));
|
|
171
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "isNew", _descriptor25, _assertThisInitialized(_this));
|
|
172
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "subscriptionOutstanding", _descriptor26, _assertThisInitialized(_this));
|
|
173
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "trialEndDate", _descriptor27, _assertThisInitialized(_this));
|
|
174
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "trialEndDateUpdated", _descriptor28, _assertThisInitialized(_this));
|
|
175
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "trialEndDateSetBy", _descriptor29, _assertThisInitialized(_this));
|
|
176
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "isBlocked", _descriptor30, _assertThisInitialized(_this));
|
|
177
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "isTesting", _descriptor31, _assertThisInitialized(_this));
|
|
178
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "squareAccessToken", _descriptor32, _assertThisInitialized(_this));
|
|
179
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "squareRefreshToken", _descriptor33, _assertThisInitialized(_this));
|
|
180
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "squareExpiresAt", _descriptor34, _assertThisInitialized(_this));
|
|
181
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "squareIsValid", _descriptor35, _assertThisInitialized(_this));
|
|
182
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "squareMerchantId", _descriptor36, _assertThisInitialized(_this));
|
|
183
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "squareWebLocationId", _descriptor37, _assertThisInitialized(_this));
|
|
184
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "stripePublishableTestKey", _descriptor38, _assertThisInitialized(_this));
|
|
185
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "stripeApiTestKey", _descriptor39, _assertThisInitialized(_this));
|
|
186
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "stripePublishableKey", _descriptor40, _assertThisInitialized(_this));
|
|
187
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "stripeApiKey", _descriptor41, _assertThisInitialized(_this));
|
|
188
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "stripeConnectDisabled", _descriptor42, _assertThisInitialized(_this));
|
|
189
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "isPayingCompany", _descriptor43, _assertThisInitialized(_this));
|
|
190
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "isStripeValid", _descriptor44, _assertThisInitialized(_this));
|
|
191
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "acceptSquare", _descriptor45, _assertThisInitialized(_this));
|
|
192
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "acceptStripe", _descriptor46, _assertThisInitialized(_this));
|
|
193
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "acceptPaypal", _descriptor47, _assertThisInitialized(_this));
|
|
194
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "acceptUtrust", _descriptor48, _assertThisInitialized(_this));
|
|
195
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "utrustApiKey", _descriptor49, _assertThisInitialized(_this));
|
|
196
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "utrustWebhookKey", _descriptor50, _assertThisInitialized(_this));
|
|
197
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "isUtrustValid", _descriptor51, _assertThisInitialized(_this));
|
|
198
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "acceptBankTransfer", _descriptor52, _assertThisInitialized(_this));
|
|
199
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "acceptPhonePayment", _descriptor53, _assertThisInitialized(_this));
|
|
200
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "defaultCurrency", _descriptor54, _assertThisInitialized(_this));
|
|
201
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "country", _descriptor55, _assertThisInitialized(_this));
|
|
202
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "internalTags", _descriptor56, _assertThisInitialized(_this));
|
|
203
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "logo", _descriptor57, _assertThisInitialized(_this));
|
|
204
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "defaultTaxType", _descriptor58, _assertThisInitialized(_this));
|
|
205
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "automaticPaymentRelationships", _descriptor59, _assertThisInitialized(_this));
|
|
206
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "taxTypes", _descriptor60, _assertThisInitialized(_this));
|
|
207
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "paymentDevices", _descriptor61, _assertThisInitialized(_this));
|
|
208
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "subscriptionPlan", _descriptor62, _assertThisInitialized(_this));
|
|
209
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "_emailAddresses", _descriptor63, _assertThisInitialized(_this));
|
|
210
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "_paymentPhoneNumbers", _descriptor64, _assertThisInitialized(_this));
|
|
211
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "_phoneNumbers", _descriptor65, _assertThisInitialized(_this));
|
|
212
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "_addresses", _descriptor66, _assertThisInitialized(_this));
|
|
213
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "_users", _descriptor67, _assertThisInitialized(_this));
|
|
214
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "shipmentsAsSender", _descriptor68, _assertThisInitialized(_this));
|
|
215
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "shipmentsAsReceiver", _descriptor69, _assertThisInitialized(_this));
|
|
216
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "savedProducts", _descriptor70, _assertThisInitialized(_this));
|
|
217
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "banks", _descriptor71, _assertThisInitialized(_this));
|
|
218
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "userCompanies", _descriptor72, _assertThisInitialized(_this));
|
|
219
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "companyInvitations", _descriptor73, _assertThisInitialized(_this));
|
|
220
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "appliedJobs", _descriptor74, _assertThisInitialized(_this));
|
|
221
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "carts", _descriptor75, _assertThisInitialized(_this));
|
|
222
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "domains", _descriptor76, _assertThisInitialized(_this));
|
|
223
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "accessibleDomainsAsClientCompany", _descriptor77, _assertThisInitialized(_this));
|
|
224
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "emailAddresses", _descriptor78, _assertThisInitialized(_this));
|
|
225
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "phoneNumbers", _descriptor79, _assertThisInitialized(_this));
|
|
226
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "paymentPhoneNumbers", _descriptor80, _assertThisInitialized(_this));
|
|
227
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "invoicesHas", _descriptor81, _assertThisInitialized(_this));
|
|
228
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "subscriptionInvoices", _descriptor82, _assertThisInitialized(_this));
|
|
229
|
+
_initializerDefineProperty(_assertThisInitialized(_this), "addresses", _descriptor83, _assertThisInitialized(_this));
|
|
230
|
+
return _this;
|
|
231
|
+
}
|
|
232
|
+
return _createClass(Company);
|
|
233
|
+
}(Entity), _defineProperty(_Company, "resourceName", 'companies'), _defineProperty(_Company, "singularName", 'company'), _defineProperty(_Company, "pluralName", 'companies'), _Company), (_descriptor = _applyDecoratedDescriptor(_class.prototype, "archived", [_dec], {
|
|
234
|
+
configurable: true,
|
|
235
|
+
enumerable: true,
|
|
236
|
+
writable: true,
|
|
237
|
+
initializer: null
|
|
238
|
+
}), _descriptor2 = _applyDecoratedDescriptor(_class.prototype, "id", [_dec2], {
|
|
239
|
+
configurable: true,
|
|
240
|
+
enumerable: true,
|
|
241
|
+
writable: true,
|
|
242
|
+
initializer: null
|
|
243
|
+
}), _descriptor3 = _applyDecoratedDescriptor(_class.prototype, "name", [_dec3], {
|
|
244
|
+
configurable: true,
|
|
245
|
+
enumerable: true,
|
|
246
|
+
writable: true,
|
|
247
|
+
initializer: null
|
|
248
|
+
}), _descriptor4 = _applyDecoratedDescriptor(_class.prototype, "callToActions", [_dec4], {
|
|
249
|
+
configurable: true,
|
|
250
|
+
enumerable: true,
|
|
251
|
+
writable: true,
|
|
252
|
+
initializer: null
|
|
253
|
+
}), _descriptor5 = _applyDecoratedDescriptor(_class.prototype, "callToActionDetails", [_dec5], {
|
|
254
|
+
configurable: true,
|
|
255
|
+
enumerable: true,
|
|
256
|
+
writable: true,
|
|
257
|
+
initializer: null
|
|
258
|
+
}), _descriptor6 = _applyDecoratedDescriptor(_class.prototype, "website", [_dec6], {
|
|
259
|
+
configurable: true,
|
|
260
|
+
enumerable: true,
|
|
261
|
+
writable: true,
|
|
262
|
+
initializer: null
|
|
263
|
+
}), _descriptor7 = _applyDecoratedDescriptor(_class.prototype, "ownershipUnconfirmed", [_dec7], {
|
|
264
|
+
configurable: true,
|
|
265
|
+
enumerable: true,
|
|
266
|
+
writable: true,
|
|
267
|
+
initializer: null
|
|
268
|
+
}), _descriptor8 = _applyDecoratedDescriptor(_class.prototype, "taxNumber", [_dec8], {
|
|
269
|
+
configurable: true,
|
|
270
|
+
enumerable: true,
|
|
271
|
+
writable: true,
|
|
272
|
+
initializer: null
|
|
273
|
+
}), _descriptor9 = _applyDecoratedDescriptor(_class.prototype, "taxNumberType", [_dec9], {
|
|
274
|
+
configurable: true,
|
|
275
|
+
enumerable: true,
|
|
276
|
+
writable: true,
|
|
277
|
+
initializer: null
|
|
278
|
+
}), _descriptor10 = _applyDecoratedDescriptor(_class.prototype, "paypalAccount", [_dec10], {
|
|
279
|
+
configurable: true,
|
|
280
|
+
enumerable: true,
|
|
281
|
+
writable: true,
|
|
282
|
+
initializer: null
|
|
283
|
+
}), _descriptor11 = _applyDecoratedDescriptor(_class.prototype, "paypalPassword", [_dec11], {
|
|
284
|
+
configurable: true,
|
|
285
|
+
enumerable: true,
|
|
286
|
+
writable: true,
|
|
287
|
+
initializer: null
|
|
288
|
+
}), _descriptor12 = _applyDecoratedDescriptor(_class.prototype, "paypalSignature", [_dec12], {
|
|
289
|
+
configurable: true,
|
|
290
|
+
enumerable: true,
|
|
291
|
+
writable: true,
|
|
292
|
+
initializer: null
|
|
293
|
+
}), _descriptor13 = _applyDecoratedDescriptor(_class.prototype, "isPaypalValid", [_dec13], {
|
|
294
|
+
configurable: true,
|
|
295
|
+
enumerable: true,
|
|
296
|
+
writable: true,
|
|
297
|
+
initializer: null
|
|
298
|
+
}), _descriptor14 = _applyDecoratedDescriptor(_class.prototype, "isStripeAccountEnabled", [_dec14], {
|
|
299
|
+
configurable: true,
|
|
300
|
+
enumerable: true,
|
|
301
|
+
writable: true,
|
|
302
|
+
initializer: null
|
|
303
|
+
}), _descriptor15 = _applyDecoratedDescriptor(_class.prototype, "stripeAccountId", [_dec15], {
|
|
304
|
+
configurable: true,
|
|
305
|
+
enumerable: true,
|
|
306
|
+
writable: true,
|
|
307
|
+
initializer: null
|
|
308
|
+
}), _descriptor16 = _applyDecoratedDescriptor(_class.prototype, "stripeCustomerId", [_dec16], {
|
|
309
|
+
configurable: true,
|
|
310
|
+
enumerable: true,
|
|
311
|
+
writable: true,
|
|
312
|
+
initializer: null
|
|
313
|
+
}), _descriptor17 = _applyDecoratedDescriptor(_class.prototype, "sendleActive", [_dec17], {
|
|
314
|
+
configurable: true,
|
|
315
|
+
enumerable: true,
|
|
316
|
+
writable: true,
|
|
317
|
+
initializer: null
|
|
318
|
+
}), _descriptor18 = _applyDecoratedDescriptor(_class.prototype, "sendleApiKey", [_dec18], {
|
|
319
|
+
configurable: true,
|
|
320
|
+
enumerable: true,
|
|
321
|
+
writable: true,
|
|
322
|
+
initializer: null
|
|
323
|
+
}), _descriptor19 = _applyDecoratedDescriptor(_class.prototype, "sendleId", [_dec19], {
|
|
324
|
+
configurable: true,
|
|
325
|
+
enumerable: true,
|
|
326
|
+
writable: true,
|
|
327
|
+
initializer: null
|
|
328
|
+
}), _descriptor20 = _applyDecoratedDescriptor(_class.prototype, "unltdAiApiOrganizationId", [_dec20], {
|
|
329
|
+
configurable: true,
|
|
330
|
+
enumerable: true,
|
|
331
|
+
writable: true,
|
|
332
|
+
initializer: null
|
|
333
|
+
}), _descriptor21 = _applyDecoratedDescriptor(_class.prototype, "unltdAiApiSecretKey", [_dec21], {
|
|
334
|
+
configurable: true,
|
|
335
|
+
enumerable: true,
|
|
336
|
+
writable: true,
|
|
337
|
+
initializer: null
|
|
338
|
+
}), _descriptor22 = _applyDecoratedDescriptor(_class.prototype, "internalUseNotes", [_dec22], {
|
|
339
|
+
configurable: true,
|
|
340
|
+
enumerable: true,
|
|
341
|
+
writable: true,
|
|
342
|
+
initializer: null
|
|
343
|
+
}), _descriptor23 = _applyDecoratedDescriptor(_class.prototype, "internalUseAiContext", [_dec23], {
|
|
344
|
+
configurable: true,
|
|
345
|
+
enumerable: true,
|
|
346
|
+
writable: true,
|
|
347
|
+
initializer: null
|
|
348
|
+
}), _descriptor24 = _applyDecoratedDescriptor(_class.prototype, "aiContext", [_dec24], {
|
|
349
|
+
configurable: true,
|
|
350
|
+
enumerable: true,
|
|
351
|
+
writable: true,
|
|
352
|
+
initializer: null
|
|
353
|
+
}), _descriptor25 = _applyDecoratedDescriptor(_class.prototype, "isNew", [_dec25], {
|
|
354
|
+
configurable: true,
|
|
355
|
+
enumerable: true,
|
|
356
|
+
writable: true,
|
|
357
|
+
initializer: null
|
|
358
|
+
}), _descriptor26 = _applyDecoratedDescriptor(_class.prototype, "subscriptionOutstanding", [_dec26], {
|
|
359
|
+
configurable: true,
|
|
360
|
+
enumerable: true,
|
|
361
|
+
writable: true,
|
|
362
|
+
initializer: null
|
|
363
|
+
}), _descriptor27 = _applyDecoratedDescriptor(_class.prototype, "trialEndDate", [_dec27], {
|
|
364
|
+
configurable: true,
|
|
365
|
+
enumerable: true,
|
|
366
|
+
writable: true,
|
|
367
|
+
initializer: null
|
|
368
|
+
}), _descriptor28 = _applyDecoratedDescriptor(_class.prototype, "trialEndDateUpdated", [_dec28], {
|
|
369
|
+
configurable: true,
|
|
370
|
+
enumerable: true,
|
|
371
|
+
writable: true,
|
|
372
|
+
initializer: null
|
|
373
|
+
}), _descriptor29 = _applyDecoratedDescriptor(_class.prototype, "trialEndDateSetBy", [_dec29], {
|
|
374
|
+
configurable: true,
|
|
375
|
+
enumerable: true,
|
|
376
|
+
writable: true,
|
|
377
|
+
initializer: null
|
|
378
|
+
}), _descriptor30 = _applyDecoratedDescriptor(_class.prototype, "isBlocked", [_dec30], {
|
|
379
|
+
configurable: true,
|
|
380
|
+
enumerable: true,
|
|
381
|
+
writable: true,
|
|
382
|
+
initializer: null
|
|
383
|
+
}), _descriptor31 = _applyDecoratedDescriptor(_class.prototype, "isTesting", [_dec31], {
|
|
384
|
+
configurable: true,
|
|
385
|
+
enumerable: true,
|
|
386
|
+
writable: true,
|
|
387
|
+
initializer: null
|
|
388
|
+
}), _descriptor32 = _applyDecoratedDescriptor(_class.prototype, "squareAccessToken", [_dec32], {
|
|
389
|
+
configurable: true,
|
|
390
|
+
enumerable: true,
|
|
391
|
+
writable: true,
|
|
392
|
+
initializer: null
|
|
393
|
+
}), _descriptor33 = _applyDecoratedDescriptor(_class.prototype, "squareRefreshToken", [_dec33], {
|
|
394
|
+
configurable: true,
|
|
395
|
+
enumerable: true,
|
|
396
|
+
writable: true,
|
|
397
|
+
initializer: null
|
|
398
|
+
}), _descriptor34 = _applyDecoratedDescriptor(_class.prototype, "squareExpiresAt", [_dec34], {
|
|
399
|
+
configurable: true,
|
|
400
|
+
enumerable: true,
|
|
401
|
+
writable: true,
|
|
402
|
+
initializer: null
|
|
403
|
+
}), _descriptor35 = _applyDecoratedDescriptor(_class.prototype, "squareIsValid", [_dec35], {
|
|
404
|
+
configurable: true,
|
|
405
|
+
enumerable: true,
|
|
406
|
+
writable: true,
|
|
407
|
+
initializer: null
|
|
408
|
+
}), _descriptor36 = _applyDecoratedDescriptor(_class.prototype, "squareMerchantId", [_dec36], {
|
|
409
|
+
configurable: true,
|
|
410
|
+
enumerable: true,
|
|
411
|
+
writable: true,
|
|
412
|
+
initializer: null
|
|
413
|
+
}), _descriptor37 = _applyDecoratedDescriptor(_class.prototype, "squareWebLocationId", [_dec37], {
|
|
414
|
+
configurable: true,
|
|
415
|
+
enumerable: true,
|
|
416
|
+
writable: true,
|
|
417
|
+
initializer: null
|
|
418
|
+
}), _descriptor38 = _applyDecoratedDescriptor(_class.prototype, "stripePublishableTestKey", [_dec38], {
|
|
419
|
+
configurable: true,
|
|
420
|
+
enumerable: true,
|
|
421
|
+
writable: true,
|
|
422
|
+
initializer: null
|
|
423
|
+
}), _descriptor39 = _applyDecoratedDescriptor(_class.prototype, "stripeApiTestKey", [_dec39], {
|
|
424
|
+
configurable: true,
|
|
425
|
+
enumerable: true,
|
|
426
|
+
writable: true,
|
|
427
|
+
initializer: null
|
|
428
|
+
}), _descriptor40 = _applyDecoratedDescriptor(_class.prototype, "stripePublishableKey", [_dec40], {
|
|
429
|
+
configurable: true,
|
|
430
|
+
enumerable: true,
|
|
431
|
+
writable: true,
|
|
432
|
+
initializer: null
|
|
433
|
+
}), _descriptor41 = _applyDecoratedDescriptor(_class.prototype, "stripeApiKey", [_dec41], {
|
|
434
|
+
configurable: true,
|
|
435
|
+
enumerable: true,
|
|
436
|
+
writable: true,
|
|
437
|
+
initializer: null
|
|
438
|
+
}), _descriptor42 = _applyDecoratedDescriptor(_class.prototype, "stripeConnectDisabled", [_dec42], {
|
|
439
|
+
configurable: true,
|
|
440
|
+
enumerable: true,
|
|
441
|
+
writable: true,
|
|
442
|
+
initializer: null
|
|
443
|
+
}), _descriptor43 = _applyDecoratedDescriptor(_class.prototype, "isPayingCompany", [_dec43], {
|
|
444
|
+
configurable: true,
|
|
445
|
+
enumerable: true,
|
|
446
|
+
writable: true,
|
|
447
|
+
initializer: null
|
|
448
|
+
}), _descriptor44 = _applyDecoratedDescriptor(_class.prototype, "isStripeValid", [_dec44], {
|
|
449
|
+
configurable: true,
|
|
450
|
+
enumerable: true,
|
|
451
|
+
writable: true,
|
|
452
|
+
initializer: null
|
|
453
|
+
}), _descriptor45 = _applyDecoratedDescriptor(_class.prototype, "acceptSquare", [_dec45], {
|
|
454
|
+
configurable: true,
|
|
455
|
+
enumerable: true,
|
|
456
|
+
writable: true,
|
|
457
|
+
initializer: null
|
|
458
|
+
}), _descriptor46 = _applyDecoratedDescriptor(_class.prototype, "acceptStripe", [_dec46], {
|
|
459
|
+
configurable: true,
|
|
460
|
+
enumerable: true,
|
|
461
|
+
writable: true,
|
|
462
|
+
initializer: null
|
|
463
|
+
}), _descriptor47 = _applyDecoratedDescriptor(_class.prototype, "acceptPaypal", [_dec47], {
|
|
464
|
+
configurable: true,
|
|
465
|
+
enumerable: true,
|
|
466
|
+
writable: true,
|
|
467
|
+
initializer: null
|
|
468
|
+
}), _descriptor48 = _applyDecoratedDescriptor(_class.prototype, "acceptUtrust", [_dec48], {
|
|
469
|
+
configurable: true,
|
|
470
|
+
enumerable: true,
|
|
471
|
+
writable: true,
|
|
472
|
+
initializer: null
|
|
473
|
+
}), _descriptor49 = _applyDecoratedDescriptor(_class.prototype, "utrustApiKey", [_dec49], {
|
|
474
|
+
configurable: true,
|
|
475
|
+
enumerable: true,
|
|
476
|
+
writable: true,
|
|
477
|
+
initializer: null
|
|
478
|
+
}), _descriptor50 = _applyDecoratedDescriptor(_class.prototype, "utrustWebhookKey", [_dec50], {
|
|
479
|
+
configurable: true,
|
|
480
|
+
enumerable: true,
|
|
481
|
+
writable: true,
|
|
482
|
+
initializer: null
|
|
483
|
+
}), _descriptor51 = _applyDecoratedDescriptor(_class.prototype, "isUtrustValid", [_dec51], {
|
|
484
|
+
configurable: true,
|
|
485
|
+
enumerable: true,
|
|
486
|
+
writable: true,
|
|
487
|
+
initializer: null
|
|
488
|
+
}), _descriptor52 = _applyDecoratedDescriptor(_class.prototype, "acceptBankTransfer", [_dec52], {
|
|
489
|
+
configurable: true,
|
|
490
|
+
enumerable: true,
|
|
491
|
+
writable: true,
|
|
492
|
+
initializer: null
|
|
493
|
+
}), _descriptor53 = _applyDecoratedDescriptor(_class.prototype, "acceptPhonePayment", [_dec53], {
|
|
494
|
+
configurable: true,
|
|
495
|
+
enumerable: true,
|
|
496
|
+
writable: true,
|
|
497
|
+
initializer: null
|
|
498
|
+
}), _descriptor54 = _applyDecoratedDescriptor(_class.prototype, "defaultCurrency", [_dec54], {
|
|
499
|
+
configurable: true,
|
|
500
|
+
enumerable: true,
|
|
501
|
+
writable: true,
|
|
502
|
+
initializer: null
|
|
503
|
+
}), _descriptor55 = _applyDecoratedDescriptor(_class.prototype, "country", [_dec55], {
|
|
504
|
+
configurable: true,
|
|
505
|
+
enumerable: true,
|
|
506
|
+
writable: true,
|
|
507
|
+
initializer: null
|
|
508
|
+
}), _descriptor56 = _applyDecoratedDescriptor(_class.prototype, "internalTags", [_dec56], {
|
|
509
|
+
configurable: true,
|
|
510
|
+
enumerable: true,
|
|
511
|
+
writable: true,
|
|
512
|
+
initializer: null
|
|
513
|
+
}), _descriptor57 = _applyDecoratedDescriptor(_class.prototype, "logo", [_dec57], {
|
|
514
|
+
configurable: true,
|
|
515
|
+
enumerable: true,
|
|
516
|
+
writable: true,
|
|
517
|
+
initializer: null
|
|
518
|
+
}), _descriptor58 = _applyDecoratedDescriptor(_class.prototype, "defaultTaxType", [_dec58], {
|
|
519
|
+
configurable: true,
|
|
520
|
+
enumerable: true,
|
|
521
|
+
writable: true,
|
|
522
|
+
initializer: null
|
|
523
|
+
}), _descriptor59 = _applyDecoratedDescriptor(_class.prototype, "automaticPaymentRelationships", [_dec59], {
|
|
524
|
+
configurable: true,
|
|
525
|
+
enumerable: true,
|
|
526
|
+
writable: true,
|
|
527
|
+
initializer: null
|
|
528
|
+
}), _descriptor60 = _applyDecoratedDescriptor(_class.prototype, "taxTypes", [_dec60], {
|
|
529
|
+
configurable: true,
|
|
530
|
+
enumerable: true,
|
|
531
|
+
writable: true,
|
|
532
|
+
initializer: null
|
|
533
|
+
}), _descriptor61 = _applyDecoratedDescriptor(_class.prototype, "paymentDevices", [_dec61], {
|
|
534
|
+
configurable: true,
|
|
535
|
+
enumerable: true,
|
|
536
|
+
writable: true,
|
|
537
|
+
initializer: null
|
|
538
|
+
}), _descriptor62 = _applyDecoratedDescriptor(_class.prototype, "subscriptionPlan", [_dec62], {
|
|
539
|
+
configurable: true,
|
|
540
|
+
enumerable: true,
|
|
541
|
+
writable: true,
|
|
542
|
+
initializer: null
|
|
543
|
+
}), _descriptor63 = _applyDecoratedDescriptor(_class.prototype, "_emailAddresses", [_dec63], {
|
|
544
|
+
configurable: true,
|
|
545
|
+
enumerable: true,
|
|
546
|
+
writable: true,
|
|
547
|
+
initializer: null
|
|
548
|
+
}), _descriptor64 = _applyDecoratedDescriptor(_class.prototype, "_paymentPhoneNumbers", [_dec64], {
|
|
549
|
+
configurable: true,
|
|
550
|
+
enumerable: true,
|
|
551
|
+
writable: true,
|
|
552
|
+
initializer: null
|
|
553
|
+
}), _descriptor65 = _applyDecoratedDescriptor(_class.prototype, "_phoneNumbers", [_dec65], {
|
|
554
|
+
configurable: true,
|
|
555
|
+
enumerable: true,
|
|
556
|
+
writable: true,
|
|
557
|
+
initializer: null
|
|
558
|
+
}), _descriptor66 = _applyDecoratedDescriptor(_class.prototype, "_addresses", [_dec66], {
|
|
559
|
+
configurable: true,
|
|
560
|
+
enumerable: true,
|
|
561
|
+
writable: true,
|
|
562
|
+
initializer: null
|
|
563
|
+
}), _descriptor67 = _applyDecoratedDescriptor(_class.prototype, "_users", [_dec67], {
|
|
564
|
+
configurable: true,
|
|
565
|
+
enumerable: true,
|
|
566
|
+
writable: true,
|
|
567
|
+
initializer: null
|
|
568
|
+
}), _descriptor68 = _applyDecoratedDescriptor(_class.prototype, "shipmentsAsSender", [_dec68], {
|
|
569
|
+
configurable: true,
|
|
570
|
+
enumerable: true,
|
|
571
|
+
writable: true,
|
|
572
|
+
initializer: null
|
|
573
|
+
}), _descriptor69 = _applyDecoratedDescriptor(_class.prototype, "shipmentsAsReceiver", [_dec69], {
|
|
574
|
+
configurable: true,
|
|
575
|
+
enumerable: true,
|
|
576
|
+
writable: true,
|
|
577
|
+
initializer: null
|
|
578
|
+
}), _descriptor70 = _applyDecoratedDescriptor(_class.prototype, "savedProducts", [_dec70], {
|
|
579
|
+
configurable: true,
|
|
580
|
+
enumerable: true,
|
|
581
|
+
writable: true,
|
|
582
|
+
initializer: null
|
|
583
|
+
}), _descriptor71 = _applyDecoratedDescriptor(_class.prototype, "banks", [_dec71], {
|
|
584
|
+
configurable: true,
|
|
585
|
+
enumerable: true,
|
|
586
|
+
writable: true,
|
|
587
|
+
initializer: null
|
|
588
|
+
}), _descriptor72 = _applyDecoratedDescriptor(_class.prototype, "userCompanies", [_dec72], {
|
|
589
|
+
configurable: true,
|
|
590
|
+
enumerable: true,
|
|
591
|
+
writable: true,
|
|
592
|
+
initializer: null
|
|
593
|
+
}), _descriptor73 = _applyDecoratedDescriptor(_class.prototype, "companyInvitations", [_dec73], {
|
|
594
|
+
configurable: true,
|
|
595
|
+
enumerable: true,
|
|
596
|
+
writable: true,
|
|
597
|
+
initializer: null
|
|
598
|
+
}), _descriptor74 = _applyDecoratedDescriptor(_class.prototype, "appliedJobs", [_dec74], {
|
|
599
|
+
configurable: true,
|
|
600
|
+
enumerable: true,
|
|
601
|
+
writable: true,
|
|
602
|
+
initializer: null
|
|
603
|
+
}), _descriptor75 = _applyDecoratedDescriptor(_class.prototype, "carts", [_dec75], {
|
|
604
|
+
configurable: true,
|
|
605
|
+
enumerable: true,
|
|
606
|
+
writable: true,
|
|
607
|
+
initializer: null
|
|
608
|
+
}), _descriptor76 = _applyDecoratedDescriptor(_class.prototype, "domains", [_dec76], {
|
|
609
|
+
configurable: true,
|
|
610
|
+
enumerable: true,
|
|
611
|
+
writable: true,
|
|
612
|
+
initializer: null
|
|
613
|
+
}), _descriptor77 = _applyDecoratedDescriptor(_class.prototype, "accessibleDomainsAsClientCompany", [_dec77], {
|
|
614
|
+
configurable: true,
|
|
615
|
+
enumerable: true,
|
|
616
|
+
writable: true,
|
|
617
|
+
initializer: null
|
|
618
|
+
}), _descriptor78 = _applyDecoratedDescriptor(_class.prototype, "emailAddresses", [_dec78], {
|
|
619
|
+
configurable: true,
|
|
620
|
+
enumerable: true,
|
|
621
|
+
writable: true,
|
|
622
|
+
initializer: null
|
|
623
|
+
}), _descriptor79 = _applyDecoratedDescriptor(_class.prototype, "phoneNumbers", [_dec79], {
|
|
624
|
+
configurable: true,
|
|
625
|
+
enumerable: true,
|
|
626
|
+
writable: true,
|
|
627
|
+
initializer: null
|
|
628
|
+
}), _descriptor80 = _applyDecoratedDescriptor(_class.prototype, "paymentPhoneNumbers", [_dec80], {
|
|
629
|
+
configurable: true,
|
|
630
|
+
enumerable: true,
|
|
631
|
+
writable: true,
|
|
632
|
+
initializer: null
|
|
633
|
+
}), _descriptor81 = _applyDecoratedDescriptor(_class.prototype, "invoicesHas", [_dec81], {
|
|
634
|
+
configurable: true,
|
|
635
|
+
enumerable: true,
|
|
636
|
+
writable: true,
|
|
637
|
+
initializer: null
|
|
638
|
+
}), _descriptor82 = _applyDecoratedDescriptor(_class.prototype, "subscriptionInvoices", [_dec82], {
|
|
639
|
+
configurable: true,
|
|
640
|
+
enumerable: true,
|
|
641
|
+
writable: true,
|
|
642
|
+
initializer: null
|
|
643
|
+
}), _descriptor83 = _applyDecoratedDescriptor(_class.prototype, "addresses", [_dec83], {
|
|
644
|
+
configurable: true,
|
|
645
|
+
enumerable: true,
|
|
646
|
+
writable: true,
|
|
647
|
+
initializer: null
|
|
648
|
+
})), _class));
|