├── .fernignore ├── .github └── workflows │ ├── ci.yml │ └── semgrep.yml ├── .gitignore ├── .mock ├── definition │ ├── accounting │ │ ├── __package__.yml │ │ ├── accountDetails.yml │ │ ├── accountToken.yml │ │ ├── accountingPeriods.yml │ │ ├── accounts.yml │ │ ├── addresses.yml │ │ ├── asyncPassthrough.yml │ │ ├── asyncTasks.yml │ │ ├── attachments.yml │ │ ├── auditTrail.yml │ │ ├── availableActions.yml │ │ ├── balanceSheets.yml │ │ ├── bankFeedAccounts.yml │ │ ├── bankFeedTransactions.yml │ │ ├── cashFlowStatements.yml │ │ ├── companyInfo.yml │ │ ├── contacts.yml │ │ ├── creditNotes.yml │ │ ├── deleteAccount.yml │ │ ├── employees.yml │ │ ├── expenses.yml │ │ ├── fieldMapping.yml │ │ ├── forceResync.yml │ │ ├── generalLedgerTransactions.yml │ │ ├── generateKey.yml │ │ ├── incomeStatements.yml │ │ ├── invoices.yml │ │ ├── issues.yml │ │ ├── items.yml │ │ ├── journalEntries.yml │ │ ├── linkToken.yml │ │ ├── linkedAccounts.yml │ │ ├── passthrough.yml │ │ ├── paymentMethods.yml │ │ ├── paymentTerms.yml │ │ ├── payments.yml │ │ ├── phoneNumbers.yml │ │ ├── projects.yml │ │ ├── purchaseOrders.yml │ │ ├── regenerateKey.yml │ │ ├── scopes.yml │ │ ├── syncStatus.yml │ │ ├── taxRates.yml │ │ ├── trackingCategories.yml │ │ ├── transactions.yml │ │ ├── vendorCredits.yml │ │ └── webhookReceivers.yml │ ├── api.yml │ ├── ats │ │ ├── __package__.yml │ │ ├── accountDetails.yml │ │ ├── accountToken.yml │ │ ├── activities.yml │ │ ├── applications.yml │ │ ├── asyncPassthrough.yml │ │ ├── attachments.yml │ │ ├── auditTrail.yml │ │ ├── availableActions.yml │ │ ├── candidates.yml │ │ ├── deleteAccount.yml │ │ ├── departments.yml │ │ ├── eeocs.yml │ │ ├── fieldMapping.yml │ │ ├── forceResync.yml │ │ ├── generateKey.yml │ │ ├── interviews.yml │ │ ├── issues.yml │ │ ├── jobInterviewStages.yml │ │ ├── jobPostings.yml │ │ ├── jobs.yml │ │ ├── linkToken.yml │ │ ├── linkedAccounts.yml │ │ ├── offers.yml │ │ ├── offices.yml │ │ ├── passthrough.yml │ │ ├── regenerateKey.yml │ │ ├── rejectReasons.yml │ │ ├── scopes.yml │ │ ├── scorecards.yml │ │ ├── syncStatus.yml │ │ ├── tags.yml │ │ ├── users.yml │ │ └── webhookReceivers.yml │ ├── crm │ │ ├── __package__.yml │ │ ├── accountDetails.yml │ │ ├── accountToken.yml │ │ ├── accounts.yml │ │ ├── associationTypes.yml │ │ ├── associations.yml │ │ ├── asyncPassthrough.yml │ │ ├── auditTrail.yml │ │ ├── availableActions.yml │ │ ├── contacts.yml │ │ ├── customObjectClasses.yml │ │ ├── customObjects.yml │ │ ├── deleteAccount.yml │ │ ├── engagementTypes.yml │ │ ├── engagements.yml │ │ ├── fieldMapping.yml │ │ ├── forceResync.yml │ │ ├── generateKey.yml │ │ ├── issues.yml │ │ ├── leads.yml │ │ ├── linkToken.yml │ │ ├── linkedAccounts.yml │ │ ├── notes.yml │ │ ├── opportunities.yml │ │ ├── passthrough.yml │ │ ├── regenerateKey.yml │ │ ├── scopes.yml │ │ ├── stages.yml │ │ ├── syncStatus.yml │ │ ├── tasks.yml │ │ ├── users.yml │ │ └── webhookReceivers.yml │ ├── filestorage │ │ ├── __package__.yml │ │ ├── accountDetails.yml │ │ ├── accountToken.yml │ │ ├── asyncPassthrough.yml │ │ ├── auditTrail.yml │ │ ├── availableActions.yml │ │ ├── deleteAccount.yml │ │ ├── drives.yml │ │ ├── fieldMapping.yml │ │ ├── files.yml │ │ ├── folders.yml │ │ ├── forceResync.yml │ │ ├── generateKey.yml │ │ ├── groups.yml │ │ ├── issues.yml │ │ ├── linkToken.yml │ │ ├── linkedAccounts.yml │ │ ├── passthrough.yml │ │ ├── regenerateKey.yml │ │ ├── scopes.yml │ │ ├── syncStatus.yml │ │ ├── users.yml │ │ └── webhookReceivers.yml │ ├── hris │ │ ├── __package__.yml │ │ ├── accountDetails.yml │ │ ├── accountToken.yml │ │ ├── asyncPassthrough.yml │ │ ├── auditTrail.yml │ │ ├── availableActions.yml │ │ ├── bankInfo.yml │ │ ├── benefits.yml │ │ ├── companies.yml │ │ ├── deleteAccount.yml │ │ ├── dependents.yml │ │ ├── employeePayrollRuns.yml │ │ ├── employees.yml │ │ ├── employerBenefits.yml │ │ ├── employments.yml │ │ ├── fieldMapping.yml │ │ ├── forceResync.yml │ │ ├── generateKey.yml │ │ ├── groups.yml │ │ ├── issues.yml │ │ ├── linkToken.yml │ │ ├── linkedAccounts.yml │ │ ├── locations.yml │ │ ├── passthrough.yml │ │ ├── payGroups.yml │ │ ├── payrollRuns.yml │ │ ├── regenerateKey.yml │ │ ├── scopes.yml │ │ ├── syncStatus.yml │ │ ├── teams.yml │ │ ├── timeOff.yml │ │ ├── timeOffBalances.yml │ │ ├── timesheetEntries.yml │ │ └── webhookReceivers.yml │ └── ticketing │ │ ├── __package__.yml │ │ ├── accountDetails.yml │ │ ├── accountToken.yml │ │ ├── accounts.yml │ │ ├── asyncPassthrough.yml │ │ ├── attachments.yml │ │ ├── auditTrail.yml │ │ ├── availableActions.yml │ │ ├── collections.yml │ │ ├── comments.yml │ │ ├── contacts.yml │ │ ├── deleteAccount.yml │ │ ├── fieldMapping.yml │ │ ├── forceResync.yml │ │ ├── generateKey.yml │ │ ├── issues.yml │ │ ├── linkToken.yml │ │ ├── linkedAccounts.yml │ │ ├── passthrough.yml │ │ ├── projects.yml │ │ ├── regenerateKey.yml │ │ ├── roles.yml │ │ ├── scopes.yml │ │ ├── syncStatus.yml │ │ ├── tags.yml │ │ ├── teams.yml │ │ ├── tickets.yml │ │ ├── users.yml │ │ └── webhookReceivers.yml └── fern.config.json ├── CODEOWNERS ├── LICENSE.md ├── README.md ├── poetry.lock ├── pyproject.toml ├── reference.md ├── requirements.txt ├── src └── merge │ ├── __init__.py │ ├── client.py │ ├── core │ ├── __init__.py │ ├── api_error.py │ ├── client_wrapper.py │ ├── datetime_utils.py │ ├── file.py │ ├── force_multipart.py │ ├── http_client.py │ ├── http_response.py │ ├── jsonable_encoder.py │ ├── pydantic_utilities.py │ ├── query_encoder.py │ ├── remove_none_from_dict.py │ ├── request_options.py │ ├── serialization.py │ └── unchecked_base_model.py │ ├── environment.py │ ├── py.typed │ ├── resources │ ├── __init__.py │ ├── accounting │ │ ├── __init__.py │ │ ├── client.py │ │ ├── raw_client.py │ │ ├── resources │ │ │ ├── __init__.py │ │ │ ├── account_details │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── account_token │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── accounting_periods │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── accounts │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── accounts_list_request_remote_fields.py │ │ │ │ │ ├── accounts_list_request_show_enum_origins.py │ │ │ │ │ ├── accounts_retrieve_request_remote_fields.py │ │ │ │ │ └── accounts_retrieve_request_show_enum_origins.py │ │ │ ├── addresses │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── async_passthrough │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── async_passthrough_retrieve_response.py │ │ │ ├── async_tasks │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── attachments │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── audit_trail │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── available_actions │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── balance_sheets │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── bank_feed_accounts │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── bank_feed_transactions │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── cash_flow_statements │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── company_info │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── company_info_list_request_expand.py │ │ │ │ │ └── company_info_retrieve_request_expand.py │ │ │ ├── contacts │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── contacts_list_request_expand.py │ │ │ │ │ └── contacts_retrieve_request_expand.py │ │ │ ├── credit_notes │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── credit_notes_list_request_expand.py │ │ │ │ │ ├── credit_notes_list_request_remote_fields.py │ │ │ │ │ ├── credit_notes_list_request_show_enum_origins.py │ │ │ │ │ ├── credit_notes_retrieve_request_expand.py │ │ │ │ │ ├── credit_notes_retrieve_request_remote_fields.py │ │ │ │ │ └── credit_notes_retrieve_request_show_enum_origins.py │ │ │ ├── delete_account │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── employees │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── expenses │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── expenses_list_request_expand.py │ │ │ │ │ └── expenses_retrieve_request_expand.py │ │ │ ├── field_mapping │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── force_resync │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── general_ledger_transactions │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── general_ledger_transactions_list_request_expand.py │ │ │ │ │ └── general_ledger_transactions_retrieve_request_expand.py │ │ │ ├── generate_key │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── income_statements │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── invoices │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── invoices_list_request_expand.py │ │ │ │ │ ├── invoices_list_request_status.py │ │ │ │ │ ├── invoices_list_request_type.py │ │ │ │ │ └── invoices_retrieve_request_expand.py │ │ │ ├── issues │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── issues_list_request_status.py │ │ │ ├── items │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── items_list_request_expand.py │ │ │ │ │ └── items_retrieve_request_expand.py │ │ │ ├── journal_entries │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── journal_entries_list_request_expand.py │ │ │ │ │ └── journal_entries_retrieve_request_expand.py │ │ │ ├── link_token │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── end_user_details_request_language.py │ │ │ ├── linked_accounts │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── linked_accounts_list_request_category.py │ │ │ ├── passthrough │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── payment_methods │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── payment_terms │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── payments │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── payments_list_request_expand.py │ │ │ │ │ └── payments_retrieve_request_expand.py │ │ │ ├── phone_numbers │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── projects │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── projects_list_request_expand.py │ │ │ │ │ └── projects_retrieve_request_expand.py │ │ │ ├── purchase_orders │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── purchase_orders_list_request_expand.py │ │ │ │ │ └── purchase_orders_retrieve_request_expand.py │ │ │ ├── regenerate_key │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── scopes │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── sync_status │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── tax_rates │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── tracking_categories │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── transactions │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── transactions_list_request_expand.py │ │ │ │ │ └── transactions_retrieve_request_expand.py │ │ │ ├── vendor_credits │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── vendor_credits_list_request_expand.py │ │ │ │ │ └── vendor_credits_retrieve_request_expand.py │ │ │ └── webhook_receivers │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ └── types │ │ │ ├── __init__.py │ │ │ ├── account.py │ │ │ ├── account_account_type.py │ │ │ ├── account_account_type_enum.py │ │ │ ├── account_classification.py │ │ │ ├── account_currency.py │ │ │ ├── account_details.py │ │ │ ├── account_details_and_actions.py │ │ │ ├── account_details_and_actions_category.py │ │ │ ├── account_details_and_actions_integration.py │ │ │ ├── account_details_and_actions_status.py │ │ │ ├── account_details_and_actions_status_enum.py │ │ │ ├── account_details_category.py │ │ │ ├── account_integration.py │ │ │ ├── account_request.py │ │ │ ├── account_request_account_type.py │ │ │ ├── account_request_classification.py │ │ │ ├── account_request_currency.py │ │ │ ├── account_request_status.py │ │ │ ├── account_response.py │ │ │ ├── account_status.py │ │ │ ├── account_status_enum.py │ │ │ ├── account_token.py │ │ │ ├── accounting_attachment.py │ │ │ ├── accounting_attachment_request.py │ │ │ ├── accounting_attachment_response.py │ │ │ ├── accounting_period.py │ │ │ ├── accounting_period_status.py │ │ │ ├── accounting_phone_number.py │ │ │ ├── accounting_phone_number_request.py │ │ │ ├── address.py │ │ │ ├── address_country.py │ │ │ ├── address_request.py │ │ │ ├── address_request_country.py │ │ │ ├── address_request_type.py │ │ │ ├── address_type.py │ │ │ ├── address_type_enum.py │ │ │ ├── advanced_metadata.py │ │ │ ├── async_passthrough_reciept.py │ │ │ ├── async_post_task.py │ │ │ ├── async_post_task_result.py │ │ │ ├── async_post_task_status.py │ │ │ ├── async_post_task_status_enum.py │ │ │ ├── audit_log_event.py │ │ │ ├── audit_log_event_event_type.py │ │ │ ├── audit_log_event_role.py │ │ │ ├── available_actions.py │ │ │ ├── balance_sheet.py │ │ │ ├── balance_sheet_company.py │ │ │ ├── balance_sheet_currency.py │ │ │ ├── bank_feed_account.py │ │ │ ├── bank_feed_account_account_type.py │ │ │ ├── bank_feed_account_account_type_enum.py │ │ │ ├── bank_feed_account_currency.py │ │ │ ├── bank_feed_account_feed_status.py │ │ │ ├── bank_feed_account_request.py │ │ │ ├── bank_feed_account_request_account_type.py │ │ │ ├── bank_feed_account_request_currency.py │ │ │ ├── bank_feed_account_request_feed_status.py │ │ │ ├── bank_feed_account_response.py │ │ │ ├── bank_feed_transaction.py │ │ │ ├── bank_feed_transaction_bank_feed_account.py │ │ │ ├── bank_feed_transaction_credit_or_debit.py │ │ │ ├── bank_feed_transaction_request_request.py │ │ │ ├── bank_feed_transaction_request_request_bank_feed_account.py │ │ │ ├── bank_feed_transaction_request_request_credit_or_debit.py │ │ │ ├── bank_feed_transaction_response.py │ │ │ ├── cash_flow_statement.py │ │ │ ├── cash_flow_statement_company.py │ │ │ ├── cash_flow_statement_currency.py │ │ │ ├── categories_enum.py │ │ │ ├── category_enum.py │ │ │ ├── category_type_enum.py │ │ │ ├── classification_enum.py │ │ │ ├── common_model_scope_api.py │ │ │ ├── common_model_scopes_body_request.py │ │ │ ├── company_info.py │ │ │ ├── company_info_currency.py │ │ │ ├── component_type_enum.py │ │ │ ├── contact.py │ │ │ ├── contact_addresses_item.py │ │ │ ├── contact_request.py │ │ │ ├── contact_request_addresses_item.py │ │ │ ├── contact_request_status.py │ │ │ ├── contact_response.py │ │ │ ├── contact_status.py │ │ │ ├── country_enum.py │ │ │ ├── credit_note.py │ │ │ ├── credit_note_accounting_period.py │ │ │ ├── credit_note_applied_payments_item.py │ │ │ ├── credit_note_apply_line_for_credit_note.py │ │ │ ├── credit_note_apply_line_for_credit_note_invoice.py │ │ │ ├── credit_note_apply_line_for_credit_note_request.py │ │ │ ├── credit_note_apply_line_for_credit_note_request_invoice.py │ │ │ ├── credit_note_apply_line_for_invoice.py │ │ │ ├── credit_note_apply_line_for_invoice_credit_note.py │ │ │ ├── credit_note_company.py │ │ │ ├── credit_note_contact.py │ │ │ ├── credit_note_currency.py │ │ │ ├── credit_note_line_item.py │ │ │ ├── credit_note_line_item_company.py │ │ │ ├── credit_note_line_item_contact.py │ │ │ ├── credit_note_line_item_item.py │ │ │ ├── credit_note_line_item_project.py │ │ │ ├── credit_note_line_item_request.py │ │ │ ├── credit_note_line_item_request_company.py │ │ │ ├── credit_note_line_item_request_contact.py │ │ │ ├── credit_note_line_item_request_item.py │ │ │ ├── credit_note_line_item_request_project.py │ │ │ ├── credit_note_payments_item.py │ │ │ ├── credit_note_request.py │ │ │ ├── credit_note_request_accounting_period.py │ │ │ ├── credit_note_request_applied_payments_item.py │ │ │ ├── credit_note_request_company.py │ │ │ ├── credit_note_request_contact.py │ │ │ ├── credit_note_request_currency.py │ │ │ ├── credit_note_request_line_items_item.py │ │ │ ├── credit_note_request_payments_item.py │ │ │ ├── credit_note_request_status.py │ │ │ ├── credit_note_request_tracking_categories_item.py │ │ │ ├── credit_note_response.py │ │ │ ├── credit_note_status.py │ │ │ ├── credit_note_status_enum.py │ │ │ ├── credit_note_tracking_categories_item.py │ │ │ ├── credit_or_debit_enum.py │ │ │ ├── currency_enum.py │ │ │ ├── data_passthrough_request.py │ │ │ ├── data_passthrough_request_method.py │ │ │ ├── debug_mode_log.py │ │ │ ├── debug_model_log_summary.py │ │ │ ├── employee.py │ │ │ ├── employee_company.py │ │ │ ├── employee_status.py │ │ │ ├── enabled_actions_enum.py │ │ │ ├── encoding_enum.py │ │ │ ├── error_validation_problem.py │ │ │ ├── event_type_enum.py │ │ │ ├── expense.py │ │ │ ├── expense_account.py │ │ │ ├── expense_accounting_period.py │ │ │ ├── expense_company.py │ │ │ ├── expense_contact.py │ │ │ ├── expense_currency.py │ │ │ ├── expense_employee.py │ │ │ ├── expense_line.py │ │ │ ├── expense_line_account.py │ │ │ ├── expense_line_contact.py │ │ │ ├── expense_line_currency.py │ │ │ ├── expense_line_employee.py │ │ │ ├── expense_line_item.py │ │ │ ├── expense_line_project.py │ │ │ ├── expense_line_request.py │ │ │ ├── expense_line_request_account.py │ │ │ ├── expense_line_request_contact.py │ │ │ ├── expense_line_request_currency.py │ │ │ ├── expense_line_request_employee.py │ │ │ ├── expense_line_request_item.py │ │ │ ├── expense_line_request_project.py │ │ │ ├── expense_line_request_tracking_categories_item.py │ │ │ ├── expense_line_request_tracking_category.py │ │ │ ├── expense_line_tracking_categories_item.py │ │ │ ├── expense_line_tracking_category.py │ │ │ ├── expense_request.py │ │ │ ├── expense_request_account.py │ │ │ ├── expense_request_accounting_period.py │ │ │ ├── expense_request_company.py │ │ │ ├── expense_request_contact.py │ │ │ ├── expense_request_currency.py │ │ │ ├── expense_request_employee.py │ │ │ ├── expense_request_tracking_categories_item.py │ │ │ ├── expense_response.py │ │ │ ├── expense_tracking_categories_item.py │ │ │ ├── external_target_field_api.py │ │ │ ├── external_target_field_api_response.py │ │ │ ├── feed_status_enum.py │ │ │ ├── field_format_enum.py │ │ │ ├── field_mapping_api_instance.py │ │ │ ├── field_mapping_api_instance_remote_field.py │ │ │ ├── field_mapping_api_instance_remote_field_remote_endpoint_info.py │ │ │ ├── field_mapping_api_instance_response.py │ │ │ ├── field_mapping_api_instance_target_field.py │ │ │ ├── field_mapping_instance_response.py │ │ │ ├── field_permission_deserializer.py │ │ │ ├── field_permission_deserializer_request.py │ │ │ ├── field_type_enum.py │ │ │ ├── general_ledger_transaction.py │ │ │ ├── general_ledger_transaction_accounting_period.py │ │ │ ├── general_ledger_transaction_company.py │ │ │ ├── general_ledger_transaction_general_ledger_transaction_lines_item.py │ │ │ ├── general_ledger_transaction_line.py │ │ │ ├── general_ledger_transaction_line_account.py │ │ │ ├── general_ledger_transaction_line_base_currency.py │ │ │ ├── general_ledger_transaction_line_company.py │ │ │ ├── general_ledger_transaction_line_contact.py │ │ │ ├── general_ledger_transaction_line_employee.py │ │ │ ├── general_ledger_transaction_line_item.py │ │ │ ├── general_ledger_transaction_line_project.py │ │ │ ├── general_ledger_transaction_line_tracking_categories_item.py │ │ │ ├── general_ledger_transaction_line_transaction_currency.py │ │ │ ├── general_ledger_transaction_tracking_categories_item.py │ │ │ ├── general_ledger_transaction_underlying_transaction_type.py │ │ │ ├── income_statement.py │ │ │ ├── income_statement_company.py │ │ │ ├── income_statement_currency.py │ │ │ ├── individual_common_model_scope_deserializer.py │ │ │ ├── individual_common_model_scope_deserializer_request.py │ │ │ ├── invoice.py │ │ │ ├── invoice_accounting_period.py │ │ │ ├── invoice_applied_credit_notes_item.py │ │ │ ├── invoice_applied_payments_item.py │ │ │ ├── invoice_applied_vendor_credits_item.py │ │ │ ├── invoice_company.py │ │ │ ├── invoice_contact.py │ │ │ ├── invoice_currency.py │ │ │ ├── invoice_employee.py │ │ │ ├── invoice_line_item.py │ │ │ ├── invoice_line_item_account.py │ │ │ ├── invoice_line_item_contact.py │ │ │ ├── invoice_line_item_currency.py │ │ │ ├── invoice_line_item_employee.py │ │ │ ├── invoice_line_item_item.py │ │ │ ├── invoice_line_item_project.py │ │ │ ├── invoice_line_item_request.py │ │ │ ├── invoice_line_item_request_account.py │ │ │ ├── invoice_line_item_request_contact.py │ │ │ ├── invoice_line_item_request_currency.py │ │ │ ├── invoice_line_item_request_employee.py │ │ │ ├── invoice_line_item_request_item.py │ │ │ ├── invoice_line_item_request_project.py │ │ │ ├── invoice_line_item_request_tracking_categories_item.py │ │ │ ├── invoice_line_item_request_tracking_category.py │ │ │ ├── invoice_line_item_tracking_categories_item.py │ │ │ ├── invoice_line_item_tracking_category.py │ │ │ ├── invoice_payment_term.py │ │ │ ├── invoice_payments_item.py │ │ │ ├── invoice_purchase_orders_item.py │ │ │ ├── invoice_request.py │ │ │ ├── invoice_request_company.py │ │ │ ├── invoice_request_contact.py │ │ │ ├── invoice_request_currency.py │ │ │ ├── invoice_request_employee.py │ │ │ ├── invoice_request_payment_term.py │ │ │ ├── invoice_request_payments_item.py │ │ │ ├── invoice_request_purchase_orders_item.py │ │ │ ├── invoice_request_status.py │ │ │ ├── invoice_request_tracking_categories_item.py │ │ │ ├── invoice_request_type.py │ │ │ ├── invoice_response.py │ │ │ ├── invoice_status.py │ │ │ ├── invoice_status_enum.py │ │ │ ├── invoice_tracking_categories_item.py │ │ │ ├── invoice_type.py │ │ │ ├── invoice_type_enum.py │ │ │ ├── issue.py │ │ │ ├── issue_status.py │ │ │ ├── issue_status_enum.py │ │ │ ├── item.py │ │ │ ├── item_company.py │ │ │ ├── item_format_enum.py │ │ │ ├── item_purchase_account.py │ │ │ ├── item_purchase_tax_rate.py │ │ │ ├── item_request_request.py │ │ │ ├── item_request_request_company.py │ │ │ ├── item_request_request_purchase_account.py │ │ │ ├── item_request_request_purchase_tax_rate.py │ │ │ ├── item_request_request_sales_account.py │ │ │ ├── item_request_request_sales_tax_rate.py │ │ │ ├── item_request_request_status.py │ │ │ ├── item_request_request_type.py │ │ │ ├── item_response.py │ │ │ ├── item_sales_account.py │ │ │ ├── item_sales_tax_rate.py │ │ │ ├── item_schema.py │ │ │ ├── item_status.py │ │ │ ├── item_type_enum.py │ │ │ ├── journal_entry.py │ │ │ ├── journal_entry_accounting_period.py │ │ │ ├── journal_entry_applied_payments_item.py │ │ │ ├── journal_entry_company.py │ │ │ ├── journal_entry_currency.py │ │ │ ├── journal_entry_payments_item.py │ │ │ ├── journal_entry_posting_status.py │ │ │ ├── journal_entry_request.py │ │ │ ├── journal_entry_request_company.py │ │ │ ├── journal_entry_request_currency.py │ │ │ ├── journal_entry_request_payments_item.py │ │ │ ├── journal_entry_request_posting_status.py │ │ │ ├── journal_entry_request_tracking_categories_item.py │ │ │ ├── journal_entry_response.py │ │ │ ├── journal_entry_tracking_categories_item.py │ │ │ ├── journal_line.py │ │ │ ├── journal_line_account.py │ │ │ ├── journal_line_currency.py │ │ │ ├── journal_line_project.py │ │ │ ├── journal_line_request.py │ │ │ ├── journal_line_request_account.py │ │ │ ├── journal_line_request_currency.py │ │ │ ├── journal_line_request_project.py │ │ │ ├── journal_line_request_tracking_categories_item.py │ │ │ ├── journal_line_request_tracking_category.py │ │ │ ├── journal_line_tracking_categories_item.py │ │ │ ├── journal_line_tracking_category.py │ │ │ ├── language_enum.py │ │ │ ├── last_sync_result_enum.py │ │ │ ├── link_token.py │ │ │ ├── linked_account_status.py │ │ │ ├── meta_response.py │ │ │ ├── method_enum.py │ │ │ ├── method_type_enum.py │ │ │ ├── model_operation.py │ │ │ ├── model_permission_deserializer.py │ │ │ ├── model_permission_deserializer_request.py │ │ │ ├── multipart_form_field_request.py │ │ │ ├── multipart_form_field_request_encoding.py │ │ │ ├── paginated_account_details_and_actions_list.py │ │ │ ├── paginated_account_list.py │ │ │ ├── paginated_accounting_attachment_list.py │ │ │ ├── paginated_accounting_period_list.py │ │ │ ├── paginated_audit_log_event_list.py │ │ │ ├── paginated_balance_sheet_list.py │ │ │ ├── paginated_bank_feed_account_list.py │ │ │ ├── paginated_bank_feed_transaction_list.py │ │ │ ├── paginated_cash_flow_statement_list.py │ │ │ ├── paginated_company_info_list.py │ │ │ ├── paginated_contact_list.py │ │ │ ├── paginated_credit_note_list.py │ │ │ ├── paginated_employee_list.py │ │ │ ├── paginated_expense_list.py │ │ │ ├── paginated_general_ledger_transaction_list.py │ │ │ ├── paginated_income_statement_list.py │ │ │ ├── paginated_invoice_list.py │ │ │ ├── paginated_issue_list.py │ │ │ ├── paginated_item_list.py │ │ │ ├── paginated_journal_entry_list.py │ │ │ ├── paginated_payment_list.py │ │ │ ├── paginated_payment_method_list.py │ │ │ ├── paginated_payment_term_list.py │ │ │ ├── paginated_project_list.py │ │ │ ├── paginated_purchase_order_list.py │ │ │ ├── paginated_remote_field_class_list.py │ │ │ ├── paginated_sync_status_list.py │ │ │ ├── paginated_tax_rate_list.py │ │ │ ├── paginated_tracking_category_list.py │ │ │ ├── paginated_transaction_list.py │ │ │ ├── paginated_vendor_credit_list.py │ │ │ ├── patched_item_request_request.py │ │ │ ├── patched_item_request_request_status.py │ │ │ ├── patched_item_request_request_type.py │ │ │ ├── patched_payment_request.py │ │ │ ├── patched_payment_request_account.py │ │ │ ├── patched_payment_request_accounting_period.py │ │ │ ├── patched_payment_request_applied_to_lines_item.py │ │ │ ├── patched_payment_request_company.py │ │ │ ├── patched_payment_request_contact.py │ │ │ ├── patched_payment_request_currency.py │ │ │ ├── patched_payment_request_payment_method.py │ │ │ ├── patched_payment_request_tracking_categories_item.py │ │ │ ├── patched_payment_request_type.py │ │ │ ├── payment.py │ │ │ ├── payment_account.py │ │ │ ├── payment_accounting_period.py │ │ │ ├── payment_applied_to_lines_item.py │ │ │ ├── payment_company.py │ │ │ ├── payment_contact.py │ │ │ ├── payment_currency.py │ │ │ ├── payment_line_item.py │ │ │ ├── payment_line_item_request.py │ │ │ ├── payment_method.py │ │ │ ├── payment_method_method_type.py │ │ │ ├── payment_payment_method.py │ │ │ ├── payment_request.py │ │ │ ├── payment_request_account.py │ │ │ ├── payment_request_accounting_period.py │ │ │ ├── payment_request_applied_to_lines_item.py │ │ │ ├── payment_request_company.py │ │ │ ├── payment_request_contact.py │ │ │ ├── payment_request_currency.py │ │ │ ├── payment_request_payment_method.py │ │ │ ├── payment_request_tracking_categories_item.py │ │ │ ├── payment_request_type.py │ │ │ ├── payment_response.py │ │ │ ├── payment_term.py │ │ │ ├── payment_term_company.py │ │ │ ├── payment_tracking_categories_item.py │ │ │ ├── payment_type.py │ │ │ ├── payment_type_enum.py │ │ │ ├── posting_status_enum.py │ │ │ ├── project.py │ │ │ ├── project_company.py │ │ │ ├── project_contact.py │ │ │ ├── purchase_order.py │ │ │ ├── purchase_order_accounting_period.py │ │ │ ├── purchase_order_company.py │ │ │ ├── purchase_order_currency.py │ │ │ ├── purchase_order_delivery_address.py │ │ │ ├── purchase_order_line_item.py │ │ │ ├── purchase_order_line_item_currency.py │ │ │ ├── purchase_order_line_item_item.py │ │ │ ├── purchase_order_line_item_request.py │ │ │ ├── purchase_order_line_item_request_currency.py │ │ │ ├── purchase_order_line_item_request_item.py │ │ │ ├── purchase_order_payment_term.py │ │ │ ├── purchase_order_request.py │ │ │ ├── purchase_order_request_company.py │ │ │ ├── purchase_order_request_currency.py │ │ │ ├── purchase_order_request_delivery_address.py │ │ │ ├── purchase_order_request_payment_term.py │ │ │ ├── purchase_order_request_status.py │ │ │ ├── purchase_order_request_tracking_categories_item.py │ │ │ ├── purchase_order_request_vendor.py │ │ │ ├── purchase_order_response.py │ │ │ ├── purchase_order_status.py │ │ │ ├── purchase_order_status_enum.py │ │ │ ├── purchase_order_tracking_categories_item.py │ │ │ ├── purchase_order_vendor.py │ │ │ ├── remote_data.py │ │ │ ├── remote_endpoint_info.py │ │ │ ├── remote_field.py │ │ │ ├── remote_field_api.py │ │ │ ├── remote_field_api_coverage.py │ │ │ ├── remote_field_api_response.py │ │ │ ├── remote_field_class.py │ │ │ ├── remote_field_remote_field_class.py │ │ │ ├── remote_field_request.py │ │ │ ├── remote_field_request_remote_field_class.py │ │ │ ├── remote_key.py │ │ │ ├── remote_response.py │ │ │ ├── report_item.py │ │ │ ├── request_format_enum.py │ │ │ ├── response_type_enum.py │ │ │ ├── role_enum.py │ │ │ ├── selective_sync_configurations_usage_enum.py │ │ │ ├── status_7_d_1_enum.py │ │ │ ├── status_895_enum.py │ │ │ ├── status_fd_5_enum.py │ │ │ ├── sync_status.py │ │ │ ├── sync_status_status.py │ │ │ ├── tax_component.py │ │ │ ├── tax_component_component_type.py │ │ │ ├── tax_rate.py │ │ │ ├── tax_rate_company.py │ │ │ ├── tax_rate_status.py │ │ │ ├── tax_rate_tax_components_item.py │ │ │ ├── tracking_category.py │ │ │ ├── tracking_category_category_type.py │ │ │ ├── tracking_category_company.py │ │ │ ├── tracking_category_status.py │ │ │ ├── transaction.py │ │ │ ├── transaction_account.py │ │ │ ├── transaction_accounting_period.py │ │ │ ├── transaction_contact.py │ │ │ ├── transaction_currency.py │ │ │ ├── transaction_currency_enum.py │ │ │ ├── transaction_line_item.py │ │ │ ├── transaction_line_item_currency.py │ │ │ ├── transaction_line_item_item.py │ │ │ ├── transaction_tracking_categories_item.py │ │ │ ├── type_2_bb_enum.py │ │ │ ├── underlying_transaction_type_enum.py │ │ │ ├── validation_problem_source.py │ │ │ ├── vendor_credit.py │ │ │ ├── vendor_credit_accounting_period.py │ │ │ ├── vendor_credit_apply_line_for_invoice.py │ │ │ ├── vendor_credit_apply_line_for_invoice_vendor_credit.py │ │ │ ├── vendor_credit_apply_line_for_vendor_credit.py │ │ │ ├── vendor_credit_apply_line_for_vendor_credit_invoice.py │ │ │ ├── vendor_credit_apply_line_for_vendor_credit_request.py │ │ │ ├── vendor_credit_apply_line_for_vendor_credit_request_invoice.py │ │ │ ├── vendor_credit_company.py │ │ │ ├── vendor_credit_currency.py │ │ │ ├── vendor_credit_line.py │ │ │ ├── vendor_credit_line_account.py │ │ │ ├── vendor_credit_line_contact.py │ │ │ ├── vendor_credit_line_project.py │ │ │ ├── vendor_credit_line_request.py │ │ │ ├── vendor_credit_line_request_account.py │ │ │ ├── vendor_credit_line_request_contact.py │ │ │ ├── vendor_credit_line_request_project.py │ │ │ ├── vendor_credit_request.py │ │ │ ├── vendor_credit_request_accounting_period.py │ │ │ ├── vendor_credit_request_company.py │ │ │ ├── vendor_credit_request_currency.py │ │ │ ├── vendor_credit_request_tracking_categories_item.py │ │ │ ├── vendor_credit_request_vendor.py │ │ │ ├── vendor_credit_response.py │ │ │ ├── vendor_credit_tracking_categories_item.py │ │ │ ├── vendor_credit_vendor.py │ │ │ ├── warning_validation_problem.py │ │ │ └── webhook_receiver.py │ ├── ats │ │ ├── __init__.py │ │ ├── client.py │ │ ├── raw_client.py │ │ ├── resources │ │ │ ├── __init__.py │ │ │ ├── account_details │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── account_token │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── activities │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── activities_list_request_remote_fields.py │ │ │ │ │ ├── activities_list_request_show_enum_origins.py │ │ │ │ │ ├── activities_retrieve_request_remote_fields.py │ │ │ │ │ └── activities_retrieve_request_show_enum_origins.py │ │ │ ├── applications │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── applications_list_request_expand.py │ │ │ │ │ └── applications_retrieve_request_expand.py │ │ │ ├── async_passthrough │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── async_passthrough_retrieve_response.py │ │ │ ├── attachments │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── audit_trail │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── available_actions │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── candidates │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── candidates_list_request_expand.py │ │ │ │ │ ├── candidates_retrieve_request_expand.py │ │ │ │ │ └── ignore_common_model_request_reason.py │ │ │ ├── delete_account │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── departments │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── eeocs │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── eeocs_list_request_remote_fields.py │ │ │ │ │ ├── eeocs_list_request_show_enum_origins.py │ │ │ │ │ ├── eeocs_retrieve_request_remote_fields.py │ │ │ │ │ └── eeocs_retrieve_request_show_enum_origins.py │ │ │ ├── field_mapping │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── force_resync │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── generate_key │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── interviews │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── interviews_list_request_expand.py │ │ │ │ │ └── interviews_retrieve_request_expand.py │ │ │ ├── issues │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── issues_list_request_status.py │ │ │ ├── job_interview_stages │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── job_postings │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── job_postings_list_request_status.py │ │ │ ├── jobs │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── jobs_list_request_expand.py │ │ │ │ │ ├── jobs_list_request_status.py │ │ │ │ │ ├── jobs_retrieve_request_expand.py │ │ │ │ │ └── jobs_screening_questions_list_request_expand.py │ │ │ ├── link_token │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── end_user_details_request_language.py │ │ │ ├── linked_accounts │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── linked_accounts_list_request_category.py │ │ │ ├── offers │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── offers_list_request_expand.py │ │ │ │ │ └── offers_retrieve_request_expand.py │ │ │ ├── offices │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── passthrough │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── regenerate_key │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── reject_reasons │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── scopes │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── scorecards │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── scorecards_list_request_expand.py │ │ │ │ │ └── scorecards_retrieve_request_expand.py │ │ │ ├── sync_status │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── tags │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── users │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ └── webhook_receivers │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ └── types │ │ │ ├── __init__.py │ │ │ ├── access_role_enum.py │ │ │ ├── account_details.py │ │ │ ├── account_details_and_actions.py │ │ │ ├── account_details_and_actions_category.py │ │ │ ├── account_details_and_actions_integration.py │ │ │ ├── account_details_and_actions_status.py │ │ │ ├── account_details_and_actions_status_enum.py │ │ │ ├── account_details_category.py │ │ │ ├── account_integration.py │ │ │ ├── account_token.py │ │ │ ├── activity.py │ │ │ ├── activity_activity_type.py │ │ │ ├── activity_request.py │ │ │ ├── activity_request_activity_type.py │ │ │ ├── activity_request_user.py │ │ │ ├── activity_request_visibility.py │ │ │ ├── activity_response.py │ │ │ ├── activity_type_enum.py │ │ │ ├── activity_user.py │ │ │ ├── activity_visibility.py │ │ │ ├── advanced_metadata.py │ │ │ ├── application.py │ │ │ ├── application_candidate.py │ │ │ ├── application_credited_to.py │ │ │ ├── application_current_stage.py │ │ │ ├── application_job.py │ │ │ ├── application_offers_item.py │ │ │ ├── application_reject_reason.py │ │ │ ├── application_request.py │ │ │ ├── application_request_candidate.py │ │ │ ├── application_request_credited_to.py │ │ │ ├── application_request_current_stage.py │ │ │ ├── application_request_job.py │ │ │ ├── application_request_offers_item.py │ │ │ ├── application_request_reject_reason.py │ │ │ ├── application_request_screening_question_answers_item.py │ │ │ ├── application_response.py │ │ │ ├── application_screening_question_answers_item.py │ │ │ ├── async_passthrough_reciept.py │ │ │ ├── attachment.py │ │ │ ├── attachment_attachment_type.py │ │ │ ├── attachment_request.py │ │ │ ├── attachment_request_attachment_type.py │ │ │ ├── attachment_response.py │ │ │ ├── attachment_type_enum.py │ │ │ ├── audit_log_event.py │ │ │ ├── audit_log_event_event_type.py │ │ │ ├── audit_log_event_role.py │ │ │ ├── available_actions.py │ │ │ ├── candidate.py │ │ │ ├── candidate_applications_item.py │ │ │ ├── candidate_attachments_item.py │ │ │ ├── candidate_request.py │ │ │ ├── candidate_request_applications_item.py │ │ │ ├── candidate_request_attachments_item.py │ │ │ ├── candidate_response.py │ │ │ ├── categories_enum.py │ │ │ ├── category_enum.py │ │ │ ├── common_model_scope_api.py │ │ │ ├── common_model_scopes_body_request.py │ │ │ ├── data_passthrough_request.py │ │ │ ├── debug_mode_log.py │ │ │ ├── debug_model_log_summary.py │ │ │ ├── department.py │ │ │ ├── disability_status_enum.py │ │ │ ├── eeoc.py │ │ │ ├── eeoc_candidate.py │ │ │ ├── eeoc_disability_status.py │ │ │ ├── eeoc_gender.py │ │ │ ├── eeoc_race.py │ │ │ ├── eeoc_veteran_status.py │ │ │ ├── email_address.py │ │ │ ├── email_address_email_address_type.py │ │ │ ├── email_address_request.py │ │ │ ├── email_address_request_email_address_type.py │ │ │ ├── email_address_type_enum.py │ │ │ ├── enabled_actions_enum.py │ │ │ ├── encoding_enum.py │ │ │ ├── error_validation_problem.py │ │ │ ├── event_type_enum.py │ │ │ ├── external_target_field_api.py │ │ │ ├── external_target_field_api_response.py │ │ │ ├── field_mapping_api_instance.py │ │ │ ├── field_mapping_api_instance_remote_field.py │ │ │ ├── field_mapping_api_instance_remote_field_remote_endpoint_info.py │ │ │ ├── field_mapping_api_instance_response.py │ │ │ ├── field_mapping_api_instance_target_field.py │ │ │ ├── field_mapping_instance_response.py │ │ │ ├── field_permission_deserializer.py │ │ │ ├── field_permission_deserializer_request.py │ │ │ ├── gender_enum.py │ │ │ ├── individual_common_model_scope_deserializer.py │ │ │ ├── individual_common_model_scope_deserializer_request.py │ │ │ ├── issue.py │ │ │ ├── issue_status.py │ │ │ ├── issue_status_enum.py │ │ │ ├── job.py │ │ │ ├── job_departments_item.py │ │ │ ├── job_hiring_managers_item.py │ │ │ ├── job_interview_stage.py │ │ │ ├── job_interview_stage_job.py │ │ │ ├── job_offices_item.py │ │ │ ├── job_posting.py │ │ │ ├── job_posting_job.py │ │ │ ├── job_posting_job_posting_urls_item.py │ │ │ ├── job_posting_status.py │ │ │ ├── job_posting_status_enum.py │ │ │ ├── job_recruiters_item.py │ │ │ ├── job_status.py │ │ │ ├── job_status_enum.py │ │ │ ├── job_type.py │ │ │ ├── job_type_enum.py │ │ │ ├── language_enum.py │ │ │ ├── last_sync_result_enum.py │ │ │ ├── link_token.py │ │ │ ├── linked_account_status.py │ │ │ ├── meta_response.py │ │ │ ├── method_enum.py │ │ │ ├── model_operation.py │ │ │ ├── model_permission_deserializer.py │ │ │ ├── model_permission_deserializer_request.py │ │ │ ├── multipart_form_field_request.py │ │ │ ├── multipart_form_field_request_encoding.py │ │ │ ├── offer.py │ │ │ ├── offer_application.py │ │ │ ├── offer_creator.py │ │ │ ├── offer_status.py │ │ │ ├── offer_status_enum.py │ │ │ ├── office.py │ │ │ ├── overall_recommendation_enum.py │ │ │ ├── paginated_account_details_and_actions_list.py │ │ │ ├── paginated_activity_list.py │ │ │ ├── paginated_application_list.py │ │ │ ├── paginated_attachment_list.py │ │ │ ├── paginated_audit_log_event_list.py │ │ │ ├── paginated_candidate_list.py │ │ │ ├── paginated_department_list.py │ │ │ ├── paginated_eeoc_list.py │ │ │ ├── paginated_issue_list.py │ │ │ ├── paginated_job_interview_stage_list.py │ │ │ ├── paginated_job_list.py │ │ │ ├── paginated_job_posting_list.py │ │ │ ├── paginated_offer_list.py │ │ │ ├── paginated_office_list.py │ │ │ ├── paginated_reject_reason_list.py │ │ │ ├── paginated_remote_user_list.py │ │ │ ├── paginated_scheduled_interview_list.py │ │ │ ├── paginated_scorecard_list.py │ │ │ ├── paginated_screening_question_list.py │ │ │ ├── paginated_sync_status_list.py │ │ │ ├── paginated_tag_list.py │ │ │ ├── patched_candidate_request.py │ │ │ ├── phone_number.py │ │ │ ├── phone_number_phone_number_type.py │ │ │ ├── phone_number_request.py │ │ │ ├── phone_number_request_phone_number_type.py │ │ │ ├── phone_number_type_enum.py │ │ │ ├── race_enum.py │ │ │ ├── reason_enum.py │ │ │ ├── reject_reason.py │ │ │ ├── remote_data.py │ │ │ ├── remote_endpoint_info.py │ │ │ ├── remote_field_api.py │ │ │ ├── remote_field_api_coverage.py │ │ │ ├── remote_field_api_response.py │ │ │ ├── remote_key.py │ │ │ ├── remote_response.py │ │ │ ├── remote_response_response_type.py │ │ │ ├── remote_user.py │ │ │ ├── remote_user_access_role.py │ │ │ ├── request_format_enum.py │ │ │ ├── response_type_enum.py │ │ │ ├── role_enum.py │ │ │ ├── scheduled_interview.py │ │ │ ├── scheduled_interview_application.py │ │ │ ├── scheduled_interview_interviewers_item.py │ │ │ ├── scheduled_interview_job_interview_stage.py │ │ │ ├── scheduled_interview_organizer.py │ │ │ ├── scheduled_interview_request.py │ │ │ ├── scheduled_interview_request_application.py │ │ │ ├── scheduled_interview_request_interviewers_item.py │ │ │ ├── scheduled_interview_request_job_interview_stage.py │ │ │ ├── scheduled_interview_request_organizer.py │ │ │ ├── scheduled_interview_request_status.py │ │ │ ├── scheduled_interview_response.py │ │ │ ├── scheduled_interview_status.py │ │ │ ├── scheduled_interview_status_enum.py │ │ │ ├── scorecard.py │ │ │ ├── scorecard_application.py │ │ │ ├── scorecard_interview.py │ │ │ ├── scorecard_interviewer.py │ │ │ ├── scorecard_overall_recommendation.py │ │ │ ├── screening_question.py │ │ │ ├── screening_question_answer.py │ │ │ ├── screening_question_answer_question.py │ │ │ ├── screening_question_answer_request.py │ │ │ ├── screening_question_answer_request_question.py │ │ │ ├── screening_question_job.py │ │ │ ├── screening_question_option.py │ │ │ ├── screening_question_type.py │ │ │ ├── screening_question_type_enum.py │ │ │ ├── selective_sync_configurations_usage_enum.py │ │ │ ├── status_fd_5_enum.py │ │ │ ├── sync_status.py │ │ │ ├── sync_status_last_sync_result.py │ │ │ ├── sync_status_status.py │ │ │ ├── tag.py │ │ │ ├── url.py │ │ │ ├── url_request.py │ │ │ ├── url_request_url_type.py │ │ │ ├── url_type_enum.py │ │ │ ├── url_url_type.py │ │ │ ├── validation_problem_source.py │ │ │ ├── veteran_status_enum.py │ │ │ ├── visibility_enum.py │ │ │ ├── warning_validation_problem.py │ │ │ └── webhook_receiver.py │ ├── crm │ │ ├── __init__.py │ │ ├── client.py │ │ ├── raw_client.py │ │ ├── resources │ │ │ ├── __init__.py │ │ │ ├── account_details │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── account_token │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── accounts │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── association_types │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── associations │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── async_passthrough │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── async_passthrough_retrieve_response.py │ │ │ ├── audit_trail │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── available_actions │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── contacts │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── contacts_list_request_expand.py │ │ │ │ │ └── contacts_retrieve_request_expand.py │ │ │ ├── custom_object_classes │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── custom_objects │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── delete_account │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── engagement_types │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── engagements │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── engagements_list_request_expand.py │ │ │ │ │ └── engagements_retrieve_request_expand.py │ │ │ ├── field_mapping │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── force_resync │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── generate_key │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── issues │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── issues_list_request_status.py │ │ │ ├── leads │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── leads_list_request_expand.py │ │ │ │ │ └── leads_retrieve_request_expand.py │ │ │ ├── link_token │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── end_user_details_request_language.py │ │ │ ├── linked_accounts │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── linked_accounts_list_request_category.py │ │ │ ├── notes │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── notes_list_request_expand.py │ │ │ │ │ └── notes_retrieve_request_expand.py │ │ │ ├── opportunities │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── opportunities_list_request_expand.py │ │ │ │ │ ├── opportunities_list_request_status.py │ │ │ │ │ └── opportunities_retrieve_request_expand.py │ │ │ ├── passthrough │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── regenerate_key │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── scopes │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── stages │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── sync_status │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── tasks │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── tasks_list_request_expand.py │ │ │ │ │ └── tasks_retrieve_request_expand.py │ │ │ ├── users │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ └── webhook_receivers │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ └── types │ │ │ ├── __init__.py │ │ │ ├── account.py │ │ │ ├── account_details.py │ │ │ ├── account_details_and_actions.py │ │ │ ├── account_details_and_actions_category.py │ │ │ ├── account_details_and_actions_integration.py │ │ │ ├── account_details_and_actions_status.py │ │ │ ├── account_details_and_actions_status_enum.py │ │ │ ├── account_details_category.py │ │ │ ├── account_integration.py │ │ │ ├── account_owner.py │ │ │ ├── account_request.py │ │ │ ├── account_request_owner.py │ │ │ ├── account_token.py │ │ │ ├── activity_type_enum.py │ │ │ ├── address.py │ │ │ ├── address_address_type.py │ │ │ ├── address_country.py │ │ │ ├── address_request.py │ │ │ ├── address_request_address_type.py │ │ │ ├── address_request_country.py │ │ │ ├── address_type_enum.py │ │ │ ├── advanced_metadata.py │ │ │ ├── association.py │ │ │ ├── association_association_type.py │ │ │ ├── association_sub_type.py │ │ │ ├── association_type.py │ │ │ ├── association_type_cardinality.py │ │ │ ├── association_type_request_request.py │ │ │ ├── async_passthrough_reciept.py │ │ │ ├── audit_log_event.py │ │ │ ├── audit_log_event_event_type.py │ │ │ ├── audit_log_event_role.py │ │ │ ├── available_actions.py │ │ │ ├── cardinality_enum.py │ │ │ ├── categories_enum.py │ │ │ ├── category_enum.py │ │ │ ├── common_model_scope_api.py │ │ │ ├── common_model_scopes_body_request.py │ │ │ ├── contact.py │ │ │ ├── contact_account.py │ │ │ ├── contact_owner.py │ │ │ ├── contact_request.py │ │ │ ├── contact_request_account.py │ │ │ ├── contact_request_owner.py │ │ │ ├── country_enum.py │ │ │ ├── crm_account_response.py │ │ │ ├── crm_association_type_response.py │ │ │ ├── crm_contact_response.py │ │ │ ├── crm_custom_object_response.py │ │ │ ├── custom_object.py │ │ │ ├── custom_object_class.py │ │ │ ├── custom_object_request.py │ │ │ ├── data_passthrough_request.py │ │ │ ├── debug_mode_log.py │ │ │ ├── debug_model_log_summary.py │ │ │ ├── direction_enum.py │ │ │ ├── email_address.py │ │ │ ├── email_address_request.py │ │ │ ├── enabled_actions_enum.py │ │ │ ├── encoding_enum.py │ │ │ ├── engagement.py │ │ │ ├── engagement_account.py │ │ │ ├── engagement_contacts_item.py │ │ │ ├── engagement_direction.py │ │ │ ├── engagement_engagement_type.py │ │ │ ├── engagement_owner.py │ │ │ ├── engagement_request.py │ │ │ ├── engagement_request_account.py │ │ │ ├── engagement_request_contacts_item.py │ │ │ ├── engagement_request_direction.py │ │ │ ├── engagement_request_engagement_type.py │ │ │ ├── engagement_request_owner.py │ │ │ ├── engagement_response.py │ │ │ ├── engagement_type.py │ │ │ ├── engagement_type_activity_type.py │ │ │ ├── error_validation_problem.py │ │ │ ├── event_type_enum.py │ │ │ ├── external_target_field_api.py │ │ │ ├── external_target_field_api_response.py │ │ │ ├── field_format_enum.py │ │ │ ├── field_mapping_api_instance.py │ │ │ ├── field_mapping_api_instance_remote_field.py │ │ │ ├── field_mapping_api_instance_remote_field_remote_endpoint_info.py │ │ │ ├── field_mapping_api_instance_response.py │ │ │ ├── field_mapping_api_instance_target_field.py │ │ │ ├── field_mapping_instance_response.py │ │ │ ├── field_permission_deserializer.py │ │ │ ├── field_permission_deserializer_request.py │ │ │ ├── field_type_enum.py │ │ │ ├── ignore_common_model_request.py │ │ │ ├── ignore_common_model_request_reason.py │ │ │ ├── individual_common_model_scope_deserializer.py │ │ │ ├── individual_common_model_scope_deserializer_request.py │ │ │ ├── issue.py │ │ │ ├── issue_status.py │ │ │ ├── issue_status_enum.py │ │ │ ├── item_format_enum.py │ │ │ ├── item_schema.py │ │ │ ├── item_type_enum.py │ │ │ ├── language_enum.py │ │ │ ├── last_sync_result_enum.py │ │ │ ├── lead.py │ │ │ ├── lead_converted_account.py │ │ │ ├── lead_converted_contact.py │ │ │ ├── lead_owner.py │ │ │ ├── lead_request.py │ │ │ ├── lead_request_converted_account.py │ │ │ ├── lead_request_converted_contact.py │ │ │ ├── lead_request_owner.py │ │ │ ├── lead_response.py │ │ │ ├── link_token.py │ │ │ ├── linked_account_status.py │ │ │ ├── meta_response.py │ │ │ ├── method_enum.py │ │ │ ├── model_operation.py │ │ │ ├── model_permission_deserializer.py │ │ │ ├── model_permission_deserializer_request.py │ │ │ ├── multipart_form_field_request.py │ │ │ ├── multipart_form_field_request_encoding.py │ │ │ ├── note.py │ │ │ ├── note_account.py │ │ │ ├── note_contact.py │ │ │ ├── note_opportunity.py │ │ │ ├── note_owner.py │ │ │ ├── note_request.py │ │ │ ├── note_request_account.py │ │ │ ├── note_request_contact.py │ │ │ ├── note_request_opportunity.py │ │ │ ├── note_request_owner.py │ │ │ ├── note_response.py │ │ │ ├── object_class_description_request.py │ │ │ ├── opportunity.py │ │ │ ├── opportunity_account.py │ │ │ ├── opportunity_owner.py │ │ │ ├── opportunity_request.py │ │ │ ├── opportunity_request_account.py │ │ │ ├── opportunity_request_owner.py │ │ │ ├── opportunity_request_stage.py │ │ │ ├── opportunity_request_status.py │ │ │ ├── opportunity_response.py │ │ │ ├── opportunity_stage.py │ │ │ ├── opportunity_status.py │ │ │ ├── opportunity_status_enum.py │ │ │ ├── origin_type_enum.py │ │ │ ├── paginated_account_details_and_actions_list.py │ │ │ ├── paginated_account_list.py │ │ │ ├── paginated_association_list.py │ │ │ ├── paginated_association_type_list.py │ │ │ ├── paginated_audit_log_event_list.py │ │ │ ├── paginated_contact_list.py │ │ │ ├── paginated_custom_object_class_list.py │ │ │ ├── paginated_custom_object_list.py │ │ │ ├── paginated_engagement_list.py │ │ │ ├── paginated_engagement_type_list.py │ │ │ ├── paginated_issue_list.py │ │ │ ├── paginated_lead_list.py │ │ │ ├── paginated_note_list.py │ │ │ ├── paginated_opportunity_list.py │ │ │ ├── paginated_remote_field_class_list.py │ │ │ ├── paginated_stage_list.py │ │ │ ├── paginated_sync_status_list.py │ │ │ ├── paginated_task_list.py │ │ │ ├── paginated_user_list.py │ │ │ ├── patched_account_request.py │ │ │ ├── patched_contact_request.py │ │ │ ├── patched_contact_request_owner.py │ │ │ ├── patched_engagement_request.py │ │ │ ├── patched_engagement_request_direction.py │ │ │ ├── patched_opportunity_request.py │ │ │ ├── patched_opportunity_request_status.py │ │ │ ├── patched_task_request.py │ │ │ ├── patched_task_request_status.py │ │ │ ├── phone_number.py │ │ │ ├── phone_number_request.py │ │ │ ├── reason_enum.py │ │ │ ├── remote_data.py │ │ │ ├── remote_endpoint_info.py │ │ │ ├── remote_field.py │ │ │ ├── remote_field_api.py │ │ │ ├── remote_field_api_coverage.py │ │ │ ├── remote_field_api_response.py │ │ │ ├── remote_field_class.py │ │ │ ├── remote_field_class_field_choices_item.py │ │ │ ├── remote_field_class_field_format.py │ │ │ ├── remote_field_class_field_type.py │ │ │ ├── remote_field_class_for_custom_object_class.py │ │ │ ├── remote_field_class_for_custom_object_class_field_choices_item.py │ │ │ ├── remote_field_class_for_custom_object_class_field_format.py │ │ │ ├── remote_field_class_for_custom_object_class_field_type.py │ │ │ ├── remote_field_class_for_custom_object_class_item_schema.py │ │ │ ├── remote_field_remote_field_class.py │ │ │ ├── remote_field_request.py │ │ │ ├── remote_field_request_remote_field_class.py │ │ │ ├── remote_key.py │ │ │ ├── remote_response.py │ │ │ ├── request_format_enum.py │ │ │ ├── response_type_enum.py │ │ │ ├── role_enum.py │ │ │ ├── selective_sync_configurations_usage_enum.py │ │ │ ├── stage.py │ │ │ ├── status_fd_5_enum.py │ │ │ ├── sync_status.py │ │ │ ├── sync_status_last_sync_result.py │ │ │ ├── sync_status_status.py │ │ │ ├── task.py │ │ │ ├── task_account.py │ │ │ ├── task_opportunity.py │ │ │ ├── task_owner.py │ │ │ ├── task_request.py │ │ │ ├── task_request_account.py │ │ │ ├── task_request_opportunity.py │ │ │ ├── task_request_owner.py │ │ │ ├── task_request_status.py │ │ │ ├── task_response.py │ │ │ ├── task_status.py │ │ │ ├── task_status_enum.py │ │ │ ├── user.py │ │ │ ├── validation_problem_source.py │ │ │ ├── warning_validation_problem.py │ │ │ └── webhook_receiver.py │ ├── filestorage │ │ ├── __init__.py │ │ ├── client.py │ │ ├── raw_client.py │ │ ├── resources │ │ │ ├── __init__.py │ │ │ ├── account_details │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── account_token │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── async_passthrough │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── async_passthrough_retrieve_response.py │ │ │ ├── audit_trail │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── available_actions │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── delete_account │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── drives │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── field_mapping │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── files │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── files_download_request_meta_list_request_order_by.py │ │ │ │ │ ├── files_list_request_expand.py │ │ │ │ │ ├── files_list_request_order_by.py │ │ │ │ │ └── files_retrieve_request_expand.py │ │ │ ├── folders │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── folders_list_request_expand.py │ │ │ │ │ └── folders_retrieve_request_expand.py │ │ │ ├── force_resync │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── generate_key │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── groups │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── issues │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── issues_list_request_status.py │ │ │ ├── link_token │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── linked_accounts │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── linked_accounts_list_request_category.py │ │ │ ├── passthrough │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── regenerate_key │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── scopes │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── sync_status │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── users │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ └── webhook_receivers │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ └── types │ │ │ ├── __init__.py │ │ │ ├── account_details.py │ │ │ ├── account_details_and_actions.py │ │ │ ├── account_details_and_actions_integration.py │ │ │ ├── account_details_and_actions_status_enum.py │ │ │ ├── account_integration.py │ │ │ ├── account_token.py │ │ │ ├── advanced_metadata.py │ │ │ ├── async_passthrough_reciept.py │ │ │ ├── audit_log_event.py │ │ │ ├── audit_log_event_event_type.py │ │ │ ├── audit_log_event_role.py │ │ │ ├── available_actions.py │ │ │ ├── categories_enum.py │ │ │ ├── category_enum.py │ │ │ ├── common_model_scope_api.py │ │ │ ├── common_model_scopes_body_request.py │ │ │ ├── data_passthrough_request.py │ │ │ ├── debug_mode_log.py │ │ │ ├── debug_model_log_summary.py │ │ │ ├── download_request_meta.py │ │ │ ├── drive.py │ │ │ ├── enabled_actions_enum.py │ │ │ ├── encoding_enum.py │ │ │ ├── error_validation_problem.py │ │ │ ├── event_type_enum.py │ │ │ ├── external_target_field_api.py │ │ │ ├── external_target_field_api_response.py │ │ │ ├── field_mapping_api_instance.py │ │ │ ├── field_mapping_api_instance_remote_field.py │ │ │ ├── field_mapping_api_instance_remote_field_remote_endpoint_info.py │ │ │ ├── field_mapping_api_instance_response.py │ │ │ ├── field_mapping_api_instance_target_field.py │ │ │ ├── field_mapping_instance_response.py │ │ │ ├── field_permission_deserializer.py │ │ │ ├── field_permission_deserializer_request.py │ │ │ ├── file.py │ │ │ ├── file_drive.py │ │ │ ├── file_folder.py │ │ │ ├── file_permissions.py │ │ │ ├── file_permissions_item.py │ │ │ ├── file_request.py │ │ │ ├── file_request_drive.py │ │ │ ├── file_request_folder.py │ │ │ ├── file_request_permissions.py │ │ │ ├── file_request_permissions_item.py │ │ │ ├── file_storage_file_response.py │ │ │ ├── file_storage_folder_response.py │ │ │ ├── folder.py │ │ │ ├── folder_drive.py │ │ │ ├── folder_parent_folder.py │ │ │ ├── folder_permissions.py │ │ │ ├── folder_permissions_item.py │ │ │ ├── folder_request.py │ │ │ ├── folder_request_drive.py │ │ │ ├── folder_request_parent_folder.py │ │ │ ├── folder_request_permissions.py │ │ │ ├── folder_request_permissions_item.py │ │ │ ├── group.py │ │ │ ├── group_child_groups_item.py │ │ │ ├── individual_common_model_scope_deserializer.py │ │ │ ├── individual_common_model_scope_deserializer_request.py │ │ │ ├── issue.py │ │ │ ├── issue_status.py │ │ │ ├── issue_status_enum.py │ │ │ ├── language_enum.py │ │ │ ├── last_sync_result_enum.py │ │ │ ├── link_token.py │ │ │ ├── linked_account_status.py │ │ │ ├── meta_response.py │ │ │ ├── method_enum.py │ │ │ ├── model_operation.py │ │ │ ├── model_permission_deserializer.py │ │ │ ├── model_permission_deserializer_request.py │ │ │ ├── multipart_form_field_request.py │ │ │ ├── multipart_form_field_request_encoding.py │ │ │ ├── paginated_account_details_and_actions_list.py │ │ │ ├── paginated_audit_log_event_list.py │ │ │ ├── paginated_download_request_meta_list.py │ │ │ ├── paginated_drive_list.py │ │ │ ├── paginated_file_list.py │ │ │ ├── paginated_folder_list.py │ │ │ ├── paginated_group_list.py │ │ │ ├── paginated_issue_list.py │ │ │ ├── paginated_sync_status_list.py │ │ │ ├── paginated_user_list.py │ │ │ ├── permission.py │ │ │ ├── permission_group.py │ │ │ ├── permission_request.py │ │ │ ├── permission_request_group.py │ │ │ ├── permission_request_roles_item.py │ │ │ ├── permission_request_type.py │ │ │ ├── permission_request_user.py │ │ │ ├── permission_roles_item.py │ │ │ ├── permission_type.py │ │ │ ├── permission_user.py │ │ │ ├── remote_data.py │ │ │ ├── remote_endpoint_info.py │ │ │ ├── remote_field_api.py │ │ │ ├── remote_field_api_coverage.py │ │ │ ├── remote_field_api_response.py │ │ │ ├── remote_key.py │ │ │ ├── remote_response.py │ │ │ ├── request_format_enum.py │ │ │ ├── response_type_enum.py │ │ │ ├── role_enum.py │ │ │ ├── roles_enum.py │ │ │ ├── selective_sync_configurations_usage_enum.py │ │ │ ├── status_fd_5_enum.py │ │ │ ├── sync_status.py │ │ │ ├── sync_status_last_sync_result.py │ │ │ ├── type_enum.py │ │ │ ├── user.py │ │ │ ├── validation_problem_source.py │ │ │ ├── warning_validation_problem.py │ │ │ └── webhook_receiver.py │ ├── hris │ │ ├── __init__.py │ │ ├── client.py │ │ ├── raw_client.py │ │ ├── resources │ │ │ ├── __init__.py │ │ │ ├── account_details │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── account_token │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── async_passthrough │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── async_passthrough_retrieve_response.py │ │ │ ├── audit_trail │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── available_actions │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── bank_info │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bank_info_list_request_account_type.py │ │ │ │ │ └── bank_info_list_request_order_by.py │ │ │ ├── benefits │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── companies │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── delete_account │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── dependents │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── employee_payroll_runs │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── employee_payroll_runs_list_request_expand.py │ │ │ │ │ └── employee_payroll_runs_retrieve_request_expand.py │ │ │ ├── employees │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── employees_list_request_employment_status.py │ │ │ │ │ ├── employees_list_request_expand.py │ │ │ │ │ ├── employees_list_request_remote_fields.py │ │ │ │ │ ├── employees_list_request_show_enum_origins.py │ │ │ │ │ ├── employees_retrieve_request_expand.py │ │ │ │ │ ├── employees_retrieve_request_remote_fields.py │ │ │ │ │ ├── employees_retrieve_request_show_enum_origins.py │ │ │ │ │ └── ignore_common_model_request_reason.py │ │ │ ├── employer_benefits │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── employments │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── employments_list_request_expand.py │ │ │ │ │ ├── employments_list_request_order_by.py │ │ │ │ │ ├── employments_list_request_remote_fields.py │ │ │ │ │ ├── employments_list_request_show_enum_origins.py │ │ │ │ │ ├── employments_retrieve_request_expand.py │ │ │ │ │ ├── employments_retrieve_request_remote_fields.py │ │ │ │ │ └── employments_retrieve_request_show_enum_origins.py │ │ │ ├── field_mapping │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── force_resync │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── generate_key │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── groups │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── issues │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── issues_list_request_status.py │ │ │ ├── link_token │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── end_user_details_request_language.py │ │ │ ├── linked_accounts │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── linked_accounts_list_request_category.py │ │ │ ├── locations │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── locations_list_request_location_type.py │ │ │ │ │ ├── locations_list_request_remote_fields.py │ │ │ │ │ ├── locations_list_request_show_enum_origins.py │ │ │ │ │ ├── locations_retrieve_request_remote_fields.py │ │ │ │ │ └── locations_retrieve_request_show_enum_origins.py │ │ │ ├── passthrough │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── pay_groups │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── payroll_runs │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── payroll_runs_list_request_remote_fields.py │ │ │ │ │ ├── payroll_runs_list_request_run_type.py │ │ │ │ │ ├── payroll_runs_list_request_show_enum_origins.py │ │ │ │ │ ├── payroll_runs_retrieve_request_remote_fields.py │ │ │ │ │ └── payroll_runs_retrieve_request_show_enum_origins.py │ │ │ ├── regenerate_key │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── scopes │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── sync_status │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── teams │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ │ ├── time_off │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── time_off_list_request_expand.py │ │ │ │ │ ├── time_off_list_request_remote_fields.py │ │ │ │ │ ├── time_off_list_request_request_type.py │ │ │ │ │ ├── time_off_list_request_show_enum_origins.py │ │ │ │ │ ├── time_off_list_request_status.py │ │ │ │ │ ├── time_off_retrieve_request_expand.py │ │ │ │ │ ├── time_off_retrieve_request_remote_fields.py │ │ │ │ │ └── time_off_retrieve_request_show_enum_origins.py │ │ │ ├── time_off_balances │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── time_off_balances_list_request_policy_type.py │ │ │ ├── timesheet_entries │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ ├── raw_client.py │ │ │ │ └── types │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── timesheet_entries_list_request_order_by.py │ │ │ └── webhook_receivers │ │ │ │ ├── __init__.py │ │ │ │ ├── client.py │ │ │ │ └── raw_client.py │ │ └── types │ │ │ ├── __init__.py │ │ │ ├── account_details.py │ │ │ ├── account_details_and_actions.py │ │ │ ├── account_details_and_actions_category.py │ │ │ ├── account_details_and_actions_integration.py │ │ │ ├── account_details_and_actions_status_enum.py │ │ │ ├── account_details_category.py │ │ │ ├── account_integration.py │ │ │ ├── account_token.py │ │ │ ├── account_type_enum.py │ │ │ ├── advanced_metadata.py │ │ │ ├── async_passthrough_reciept.py │ │ │ ├── audit_log_event.py │ │ │ ├── audit_log_event_event_type.py │ │ │ ├── audit_log_event_role.py │ │ │ ├── available_actions.py │ │ │ ├── bank_info.py │ │ │ ├── bank_info_account_type.py │ │ │ ├── bank_info_employee.py │ │ │ ├── benefit.py │ │ │ ├── benefit_employee.py │ │ │ ├── benefit_plan_type_enum.py │ │ │ ├── categories_enum.py │ │ │ ├── category_enum.py │ │ │ ├── common_model_scope_api.py │ │ │ ├── common_model_scopes_body_request.py │ │ │ ├── company.py │ │ │ ├── country_enum.py │ │ │ ├── data_passthrough_request.py │ │ │ ├── debug_mode_log.py │ │ │ ├── debug_model_log_summary.py │ │ │ ├── deduction.py │ │ │ ├── dependent.py │ │ │ ├── dependent_gender.py │ │ │ ├── dependent_relationship.py │ │ │ ├── earning.py │ │ │ ├── earning_type.py │ │ │ ├── earning_type_enum.py │ │ │ ├── employee.py │ │ │ ├── employee_company.py │ │ │ ├── employee_employment_status.py │ │ │ ├── employee_employments_item.py │ │ │ ├── employee_ethnicity.py │ │ │ ├── employee_gender.py │ │ │ ├── employee_groups_item.py │ │ │ ├── employee_home_location.py │ │ │ ├── employee_manager.py │ │ │ ├── employee_marital_status.py │ │ │ ├── employee_pay_group.py │ │ │ ├── employee_payroll_run.py │ │ │ ├── employee_payroll_run_employee.py │ │ │ ├── employee_payroll_run_payroll_run.py │ │ │ ├── employee_request.py │ │ │ ├── employee_request_company.py │ │ │ ├── employee_request_employment_status.py │ │ │ ├── employee_request_employments_item.py │ │ │ ├── employee_request_ethnicity.py │ │ │ ├── employee_request_gender.py │ │ │ ├── employee_request_groups_item.py │ │ │ ├── employee_request_home_location.py │ │ │ ├── employee_request_manager.py │ │ │ ├── employee_request_marital_status.py │ │ │ ├── employee_request_pay_group.py │ │ │ ├── employee_request_team.py │ │ │ ├── employee_request_work_location.py │ │ │ ├── employee_response.py │ │ │ ├── employee_team.py │ │ │ ├── employee_work_location.py │ │ │ ├── employer_benefit.py │ │ │ ├── employer_benefit_benefit_plan_type.py │ │ │ ├── employment.py │ │ │ ├── employment_employee.py │ │ │ ├── employment_employment_type.py │ │ │ ├── employment_flsa_status.py │ │ │ ├── employment_pay_currency.py │ │ │ ├── employment_pay_frequency.py │ │ │ ├── employment_pay_group.py │ │ │ ├── employment_pay_period.py │ │ │ ├── employment_status_enum.py │ │ │ ├── employment_type_enum.py │ │ │ ├── enabled_actions_enum.py │ │ │ ├── encoding_enum.py │ │ │ ├── error_validation_problem.py │ │ │ ├── ethnicity_enum.py │ │ │ ├── event_type_enum.py │ │ │ ├── external_target_field_api.py │ │ │ ├── external_target_field_api_response.py │ │ │ ├── field_mapping_api_instance.py │ │ │ ├── field_mapping_api_instance_remote_field.py │ │ │ ├── field_mapping_api_instance_remote_field_remote_endpoint_info.py │ │ │ ├── field_mapping_api_instance_response.py │ │ │ ├── field_mapping_api_instance_target_field.py │ │ │ ├── field_mapping_instance_response.py │ │ │ ├── field_permission_deserializer.py │ │ │ ├── field_permission_deserializer_request.py │ │ │ ├── flsa_status_enum.py │ │ │ ├── gender_enum.py │ │ │ ├── group.py │ │ │ ├── group_type.py │ │ │ ├── group_type_enum.py │ │ │ ├── individual_common_model_scope_deserializer.py │ │ │ ├── individual_common_model_scope_deserializer_request.py │ │ │ ├── issue.py │ │ │ ├── issue_status.py │ │ │ ├── issue_status_enum.py │ │ │ ├── language_enum.py │ │ │ ├── last_sync_result_enum.py │ │ │ ├── link_token.py │ │ │ ├── linked_account_status.py │ │ │ ├── location.py │ │ │ ├── location_country.py │ │ │ ├── location_location_type.py │ │ │ ├── location_type_enum.py │ │ │ ├── marital_status_enum.py │ │ │ ├── meta_response.py │ │ │ ├── method_enum.py │ │ │ ├── model_operation.py │ │ │ ├── model_permission_deserializer.py │ │ │ ├── model_permission_deserializer_request.py │ │ │ ├── multipart_form_field_request.py │ │ │ ├── multipart_form_field_request_encoding.py │ │ │ ├── paginated_account_details_and_actions_list.py │ │ │ ├── paginated_audit_log_event_list.py │ │ │ ├── paginated_bank_info_list.py │ │ │ ├── paginated_benefit_list.py │ │ │ ├── paginated_company_list.py │ │ │ ├── paginated_dependent_list.py │ │ │ ├── paginated_employee_list.py │ │ │ ├── paginated_employee_payroll_run_list.py │ │ │ ├── paginated_employer_benefit_list.py │ │ │ ├── paginated_employment_list.py │ │ │ ├── paginated_group_list.py │ │ │ ├── paginated_issue_list.py │ │ │ ├── paginated_location_list.py │ │ │ ├── paginated_pay_group_list.py │ │ │ ├── paginated_payroll_run_list.py │ │ │ ├── paginated_sync_status_list.py │ │ │ ├── paginated_team_list.py │ │ │ ├── paginated_time_off_balance_list.py │ │ │ ├── paginated_time_off_list.py │ │ │ ├── paginated_timesheet_entry_list.py │ │ │ ├── pay_currency_enum.py │ │ │ ├── pay_frequency_enum.py │ │ │ ├── pay_group.py │ │ │ ├── pay_period_enum.py │ │ │ ├── payroll_run.py │ │ │ ├── payroll_run_run_state.py │ │ │ ├── payroll_run_run_type.py │ │ │ ├── policy_type_enum.py │ │ │ ├── reason_enum.py │ │ │ ├── relationship_enum.py │ │ │ ├── remote_data.py │ │ │ ├── remote_endpoint_info.py │ │ │ ├── remote_field_api.py │ │ │ ├── remote_field_api_coverage.py │ │ │ ├── remote_field_api_response.py │ │ │ ├── remote_key.py │ │ │ ├── remote_response.py │ │ │ ├── remote_response_response_type.py │ │ │ ├── request_format_enum.py │ │ │ ├── request_type_enum.py │ │ │ ├── response_type_enum.py │ │ │ ├── role_enum.py │ │ │ ├── run_state_enum.py │ │ │ ├── run_type_enum.py │ │ │ ├── selective_sync_configurations_usage_enum.py │ │ │ ├── status_fd_5_enum.py │ │ │ ├── sync_status.py │ │ │ ├── sync_status_last_sync_result.py │ │ │ ├── tax.py │ │ │ ├── team.py │ │ │ ├── team_parent_team.py │ │ │ ├── time_off.py │ │ │ ├── time_off_approver.py │ │ │ ├── time_off_balance.py │ │ │ ├── time_off_balance_employee.py │ │ │ ├── time_off_balance_policy_type.py │ │ │ ├── time_off_employee.py │ │ │ ├── time_off_request.py │ │ │ ├── time_off_request_approver.py │ │ │ ├── time_off_request_employee.py │ │ │ ├── time_off_request_request_type.py │ │ │ ├── time_off_request_status.py │ │ │ ├── time_off_request_type.py │ │ │ ├── time_off_request_units.py │ │ │ ├── time_off_response.py │ │ │ ├── time_off_status.py │ │ │ ├── time_off_status_enum.py │ │ │ ├── time_off_units.py │ │ │ ├── timesheet_entry.py │ │ │ ├── timesheet_entry_employee.py │ │ │ ├── timesheet_entry_request.py │ │ │ ├── timesheet_entry_request_employee.py │ │ │ ├── timesheet_entry_response.py │ │ │ ├── units_enum.py │ │ │ ├── validation_problem_source.py │ │ │ ├── warning_validation_problem.py │ │ │ └── webhook_receiver.py │ └── ticketing │ │ ├── __init__.py │ │ ├── client.py │ │ ├── raw_client.py │ │ ├── resources │ │ ├── __init__.py │ │ ├── account_details │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ └── raw_client.py │ │ ├── account_token │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ └── raw_client.py │ │ ├── accounts │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ └── raw_client.py │ │ ├── async_passthrough │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── raw_client.py │ │ │ └── types │ │ │ │ ├── __init__.py │ │ │ │ └── async_passthrough_retrieve_response.py │ │ ├── attachments │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ └── raw_client.py │ │ ├── audit_trail │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ └── raw_client.py │ │ ├── available_actions │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ └── raw_client.py │ │ ├── collections │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── raw_client.py │ │ │ └── types │ │ │ │ ├── __init__.py │ │ │ │ └── collections_viewers_list_request_expand.py │ │ ├── comments │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── raw_client.py │ │ │ └── types │ │ │ │ ├── __init__.py │ │ │ │ ├── comments_list_request_expand.py │ │ │ │ └── comments_retrieve_request_expand.py │ │ ├── contacts │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ └── raw_client.py │ │ ├── delete_account │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ └── raw_client.py │ │ ├── field_mapping │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ └── raw_client.py │ │ ├── force_resync │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ └── raw_client.py │ │ ├── generate_key │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ └── raw_client.py │ │ ├── issues │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── raw_client.py │ │ │ └── types │ │ │ │ ├── __init__.py │ │ │ │ └── issues_list_request_status.py │ │ ├── link_token │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── raw_client.py │ │ │ └── types │ │ │ │ ├── __init__.py │ │ │ │ └── end_user_details_request_language.py │ │ ├── linked_accounts │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── raw_client.py │ │ │ └── types │ │ │ │ ├── __init__.py │ │ │ │ └── linked_accounts_list_request_category.py │ │ ├── passthrough │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ └── raw_client.py │ │ ├── projects │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── raw_client.py │ │ │ └── types │ │ │ │ ├── __init__.py │ │ │ │ └── projects_users_list_request_expand.py │ │ ├── regenerate_key │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ └── raw_client.py │ │ ├── roles │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ └── raw_client.py │ │ ├── scopes │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ └── raw_client.py │ │ ├── sync_status │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ └── raw_client.py │ │ ├── tags │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ └── raw_client.py │ │ ├── teams │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ └── raw_client.py │ │ ├── tickets │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── raw_client.py │ │ │ └── types │ │ │ │ ├── __init__.py │ │ │ │ ├── tickets_list_request_expand.py │ │ │ │ ├── tickets_list_request_priority.py │ │ │ │ ├── tickets_list_request_remote_fields.py │ │ │ │ ├── tickets_list_request_show_enum_origins.py │ │ │ │ ├── tickets_retrieve_request_expand.py │ │ │ │ ├── tickets_retrieve_request_remote_fields.py │ │ │ │ ├── tickets_retrieve_request_show_enum_origins.py │ │ │ │ └── tickets_viewers_list_request_expand.py │ │ ├── users │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── raw_client.py │ │ │ └── types │ │ │ │ ├── __init__.py │ │ │ │ ├── users_list_request_expand.py │ │ │ │ └── users_retrieve_request_expand.py │ │ └── webhook_receivers │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ └── raw_client.py │ │ └── types │ │ ├── __init__.py │ │ ├── account.py │ │ ├── account_details.py │ │ ├── account_details_and_actions.py │ │ ├── account_details_and_actions_category.py │ │ ├── account_details_and_actions_integration.py │ │ ├── account_details_and_actions_status.py │ │ ├── account_details_and_actions_status_enum.py │ │ ├── account_details_category.py │ │ ├── account_integration.py │ │ ├── account_token.py │ │ ├── advanced_metadata.py │ │ ├── async_passthrough_reciept.py │ │ ├── attachment.py │ │ ├── attachment_request.py │ │ ├── attachment_request_ticket.py │ │ ├── attachment_ticket.py │ │ ├── audit_log_event.py │ │ ├── audit_log_event_event_type.py │ │ ├── audit_log_event_role.py │ │ ├── available_actions.py │ │ ├── categories_enum.py │ │ ├── category_enum.py │ │ ├── collection.py │ │ ├── collection_access_level.py │ │ ├── collection_access_level_enum.py │ │ ├── collection_collection_type.py │ │ ├── collection_parent_collection.py │ │ ├── collection_type_enum.py │ │ ├── comment.py │ │ ├── comment_contact.py │ │ ├── comment_request.py │ │ ├── comment_request_contact.py │ │ ├── comment_request_ticket.py │ │ ├── comment_request_user.py │ │ ├── comment_response.py │ │ ├── comment_ticket.py │ │ ├── comment_user.py │ │ ├── common_model_scope_api.py │ │ ├── common_model_scopes_body_request.py │ │ ├── contact.py │ │ ├── contact_account.py │ │ ├── contact_request.py │ │ ├── contact_request_account.py │ │ ├── data_passthrough_request.py │ │ ├── debug_mode_log.py │ │ ├── debug_model_log_summary.py │ │ ├── enabled_actions_enum.py │ │ ├── encoding_enum.py │ │ ├── error_validation_problem.py │ │ ├── event_type_enum.py │ │ ├── external_target_field_api.py │ │ ├── external_target_field_api_response.py │ │ ├── field_format_enum.py │ │ ├── field_mapping_api_instance.py │ │ ├── field_mapping_api_instance_remote_field.py │ │ ├── field_mapping_api_instance_remote_field_remote_endpoint_info.py │ │ ├── field_mapping_api_instance_response.py │ │ ├── field_mapping_api_instance_target_field.py │ │ ├── field_mapping_instance_response.py │ │ ├── field_permission_deserializer.py │ │ ├── field_permission_deserializer_request.py │ │ ├── field_type_enum.py │ │ ├── individual_common_model_scope_deserializer.py │ │ ├── individual_common_model_scope_deserializer_request.py │ │ ├── issue.py │ │ ├── issue_status.py │ │ ├── issue_status_enum.py │ │ ├── item_format_enum.py │ │ ├── item_schema.py │ │ ├── item_type_enum.py │ │ ├── language_enum.py │ │ ├── last_sync_result_enum.py │ │ ├── link_token.py │ │ ├── linked_account_status.py │ │ ├── meta_response.py │ │ ├── method_enum.py │ │ ├── model_operation.py │ │ ├── model_permission_deserializer.py │ │ ├── model_permission_deserializer_request.py │ │ ├── multipart_form_field_request.py │ │ ├── multipart_form_field_request_encoding.py │ │ ├── paginated_account_details_and_actions_list.py │ │ ├── paginated_account_list.py │ │ ├── paginated_attachment_list.py │ │ ├── paginated_audit_log_event_list.py │ │ ├── paginated_collection_list.py │ │ ├── paginated_comment_list.py │ │ ├── paginated_contact_list.py │ │ ├── paginated_issue_list.py │ │ ├── paginated_project_list.py │ │ ├── paginated_remote_field_class_list.py │ │ ├── paginated_role_list.py │ │ ├── paginated_sync_status_list.py │ │ ├── paginated_tag_list.py │ │ ├── paginated_team_list.py │ │ ├── paginated_ticket_list.py │ │ ├── paginated_user_list.py │ │ ├── paginated_viewer_list.py │ │ ├── patched_ticket_request.py │ │ ├── patched_ticket_request_access_level.py │ │ ├── patched_ticket_request_priority.py │ │ ├── patched_ticket_request_status.py │ │ ├── priority_enum.py │ │ ├── project.py │ │ ├── remote_data.py │ │ ├── remote_endpoint_info.py │ │ ├── remote_field.py │ │ ├── remote_field_api.py │ │ ├── remote_field_api_coverage.py │ │ ├── remote_field_api_response.py │ │ ├── remote_field_class.py │ │ ├── remote_field_class_field_choices_item.py │ │ ├── remote_field_class_field_format.py │ │ ├── remote_field_class_field_type.py │ │ ├── remote_field_remote_field_class.py │ │ ├── remote_field_request.py │ │ ├── remote_field_request_remote_field_class.py │ │ ├── remote_key.py │ │ ├── remote_response.py │ │ ├── request_format_enum.py │ │ ├── response_type_enum.py │ │ ├── role.py │ │ ├── role_enum.py │ │ ├── role_ticket_access.py │ │ ├── role_ticket_actions_item.py │ │ ├── selective_sync_configurations_usage_enum.py │ │ ├── status_fd_5_enum.py │ │ ├── sync_status.py │ │ ├── sync_status_last_sync_result.py │ │ ├── tag.py │ │ ├── team.py │ │ ├── ticket.py │ │ ├── ticket_access_enum.py │ │ ├── ticket_access_level.py │ │ ├── ticket_access_level_enum.py │ │ ├── ticket_account.py │ │ ├── ticket_actions_enum.py │ │ ├── ticket_assigned_teams_item.py │ │ ├── ticket_assignees_item.py │ │ ├── ticket_attachments_item.py │ │ ├── ticket_collections_item.py │ │ ├── ticket_contact.py │ │ ├── ticket_creator.py │ │ ├── ticket_parent_ticket.py │ │ ├── ticket_priority.py │ │ ├── ticket_request.py │ │ ├── ticket_request_access_level.py │ │ ├── ticket_request_account.py │ │ ├── ticket_request_assigned_teams_item.py │ │ ├── ticket_request_assignees_item.py │ │ ├── ticket_request_attachments_item.py │ │ ├── ticket_request_collections_item.py │ │ ├── ticket_request_contact.py │ │ ├── ticket_request_creator.py │ │ ├── ticket_request_parent_ticket.py │ │ ├── ticket_request_priority.py │ │ ├── ticket_request_status.py │ │ ├── ticket_response.py │ │ ├── ticket_status.py │ │ ├── ticket_status_enum.py │ │ ├── ticketing_attachment_response.py │ │ ├── ticketing_contact_response.py │ │ ├── user.py │ │ ├── user_roles_item.py │ │ ├── user_teams_item.py │ │ ├── validation_problem_source.py │ │ ├── viewer.py │ │ ├── viewer_team.py │ │ ├── viewer_user.py │ │ ├── warning_validation_problem.py │ │ └── webhook_receiver.py │ └── version.py └── tests ├── custom └── test_client.py └── utils ├── __init__.py ├── assets └── models │ ├── __init__.py │ ├── circle.py │ ├── color.py │ ├── object_with_defaults.py │ ├── object_with_optional_field.py │ ├── shape.py │ ├── square.py │ └── undiscriminated_shape.py ├── test_http_client.py ├── test_query_encoding.py └── test_serialization.py /.gitignore: -------------------------------------------------------------------------------- 1 | .mypy_cache/ 2 | .ruff_cache/ 3 | __pycache__/ 4 | dist/ 5 | poetry.toml 6 | -------------------------------------------------------------------------------- /.mock/fern.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "organization" : "merge", 3 | "version" : "0.63.28" 4 | } -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @merge-api/approved-sdk-reviewers 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | httpx>=0.21.2 2 | pydantic>= 1.9.2 3 | pydantic-core>=2.18.2 4 | typing_extensions>= 4.0.0 5 | -------------------------------------------------------------------------------- /src/merge/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merge-api/merge-python-client/13ad40711492f21aef92464ac6aa4b5e38789ce5/src/merge/py.typed -------------------------------------------------------------------------------- /src/merge/resources/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from . import accounting, ats, crm, filestorage, hris, ticketing 6 | 7 | __all__ = ["accounting", "ats", "crm", "filestorage", "hris", "ticketing"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/account_details/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/account_token/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/accounting_periods/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/addresses/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/async_passthrough/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import AsyncPassthroughRetrieveResponse 6 | 7 | __all__ = ["AsyncPassthroughRetrieveResponse"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/async_tasks/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/attachments/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/audit_trail/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/available_actions/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/balance_sheets/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/bank_feed_accounts/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/bank_feed_transactions/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/cash_flow_statements/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/delete_account/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/employees/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/field_mapping/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/force_resync/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/generate_key/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/income_statements/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/issues/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import IssuesListRequestStatus 6 | 7 | __all__ = ["IssuesListRequestStatus"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/issues/types/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .issues_list_request_status import IssuesListRequestStatus 6 | 7 | __all__ = ["IssuesListRequestStatus"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/link_token/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import EndUserDetailsRequestLanguage 6 | 7 | __all__ = ["EndUserDetailsRequestLanguage"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/linked_accounts/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import LinkedAccountsListRequestCategory 6 | 7 | __all__ = ["LinkedAccountsListRequestCategory"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/passthrough/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/payment_methods/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/payment_terms/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/phone_numbers/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/regenerate_key/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/scopes/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/sync_status/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/tax_rates/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/tracking_categories/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/resources/webhook_receivers/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/account_account_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account_account_type_enum import AccountAccountTypeEnum 6 | 7 | AccountAccountType = typing.Union[AccountAccountTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/account_classification.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .classification_enum import ClassificationEnum 6 | 7 | AccountClassification = typing.Union[ClassificationEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/account_currency.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .transaction_currency_enum import TransactionCurrencyEnum 6 | 7 | AccountCurrency = typing.Union[TransactionCurrencyEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/account_details_and_actions_category.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .category_enum import CategoryEnum 6 | 7 | AccountDetailsAndActionsCategory = typing.Union[CategoryEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/account_details_category.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .category_enum import CategoryEnum 6 | 7 | AccountDetailsCategory = typing.Union[CategoryEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/account_request_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account_status_enum import AccountStatusEnum 6 | 7 | AccountRequestStatus = typing.Union[AccountStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/account_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account_status_enum import AccountStatusEnum 6 | 7 | AccountStatus = typing.Union[AccountStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/accounting_period_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .status_895_enum import Status895Enum 6 | 7 | AccountingPeriodStatus = typing.Union[Status895Enum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/address_country.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .country_enum import CountryEnum 6 | 7 | AddressCountry = typing.Union[CountryEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/address_request_country.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .country_enum import CountryEnum 6 | 7 | AddressRequestCountry = typing.Union[CountryEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/address_request_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .address_type_enum import AddressTypeEnum 6 | 7 | AddressRequestType = typing.Union[AddressTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/address_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .address_type_enum import AddressTypeEnum 6 | 7 | AddressType = typing.Union[AddressTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/audit_log_event_event_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .event_type_enum import EventTypeEnum 6 | 7 | AuditLogEventEventType = typing.Union[EventTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/audit_log_event_role.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .role_enum import RoleEnum 6 | 7 | AuditLogEventRole = typing.Union[RoleEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/balance_sheet_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | BalanceSheetCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/bank_feed_account_feed_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .feed_status_enum import FeedStatusEnum 6 | 7 | BankFeedAccountFeedStatus = typing.Union[FeedStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/cash_flow_statement_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | CashFlowStatementCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/company_info_currency.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .transaction_currency_enum import TransactionCurrencyEnum 6 | 7 | CompanyInfoCurrency = typing.Union[TransactionCurrencyEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/contact_addresses_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .address import Address 6 | 7 | ContactAddressesItem = typing.Union[str, Address] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/contact_request_addresses_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .address import Address 6 | 7 | ContactRequestAddressesItem = typing.Union[str, Address] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/contact_request_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .status_7_d_1_enum import Status7D1Enum 6 | 7 | ContactRequestStatus = typing.Union[Status7D1Enum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/contact_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .status_7_d_1_enum import Status7D1Enum 6 | 7 | ContactStatus = typing.Union[Status7D1Enum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/credit_note_accounting_period.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .accounting_period import AccountingPeriod 6 | 7 | CreditNoteAccountingPeriod = typing.Union[str, AccountingPeriod] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/credit_note_applied_payments_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .payment_line_item import PaymentLineItem 6 | 7 | CreditNoteAppliedPaymentsItem = typing.Union[str, PaymentLineItem] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/credit_note_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | CreditNoteCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/credit_note_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | CreditNoteContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/credit_note_currency.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .transaction_currency_enum import TransactionCurrencyEnum 6 | 7 | CreditNoteCurrency = typing.Union[TransactionCurrencyEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/credit_note_line_item_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | CreditNoteLineItemCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/credit_note_line_item_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | CreditNoteLineItemContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/credit_note_line_item_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .item import Item 6 | 7 | CreditNoteLineItemItem = typing.Union[str, Item] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/credit_note_line_item_project.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .project import Project 6 | 7 | CreditNoteLineItemProject = typing.Union[str, Project] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/credit_note_line_item_request_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | CreditNoteLineItemRequestCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/credit_note_line_item_request_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | CreditNoteLineItemRequestContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/credit_note_line_item_request_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .item import Item 6 | 7 | CreditNoteLineItemRequestItem = typing.Union[str, Item] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/credit_note_line_item_request_project.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | CreditNoteLineItemRequestProject = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/credit_note_payments_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .payment import Payment 6 | 7 | CreditNotePaymentsItem = typing.Union[str, Payment] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/credit_note_request_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | CreditNoteRequestCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/credit_note_request_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | CreditNoteRequestContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/credit_note_request_payments_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .payment import Payment 6 | 7 | CreditNoteRequestPaymentsItem = typing.Union[str, Payment] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/credit_note_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .credit_note_status_enum import CreditNoteStatusEnum 6 | 7 | CreditNoteStatus = typing.Union[CreditNoteStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/data_passthrough_request_method.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .method_enum import MethodEnum 6 | 7 | DataPassthroughRequestMethod = typing.Union[MethodEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/employee_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | EmployeeCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/employee_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .status_895_enum import Status895Enum 6 | 7 | EmployeeStatus = typing.Union[Status895Enum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/expense_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | ExpenseAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/expense_accounting_period.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .accounting_period import AccountingPeriod 6 | 7 | ExpenseAccountingPeriod = typing.Union[str, AccountingPeriod] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/expense_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | ExpenseCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/expense_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | ExpenseContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/expense_currency.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .transaction_currency_enum import TransactionCurrencyEnum 6 | 7 | ExpenseCurrency = typing.Union[TransactionCurrencyEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/expense_employee.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .employee import Employee 6 | 7 | ExpenseEmployee = typing.Union[str, Employee] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/expense_line_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | ExpenseLineAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/expense_line_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | ExpenseLineContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/expense_line_currency.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .transaction_currency_enum import TransactionCurrencyEnum 6 | 7 | ExpenseLineCurrency = typing.Union[TransactionCurrencyEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/expense_line_employee.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .employee import Employee 6 | 7 | ExpenseLineEmployee = typing.Union[str, Employee] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/expense_line_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .item import Item 6 | 7 | ExpenseLineItem = typing.Union[str, Item] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/expense_line_project.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .project import Project 6 | 7 | ExpenseLineProject = typing.Union[str, Project] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/expense_line_request_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | ExpenseLineRequestAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/expense_line_request_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | ExpenseLineRequestContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/expense_line_request_employee.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .employee import Employee 6 | 7 | ExpenseLineRequestEmployee = typing.Union[str, Employee] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/expense_line_request_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .item import Item 6 | 7 | ExpenseLineRequestItem = typing.Union[str, Item] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/expense_line_request_project.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | ExpenseLineRequestProject = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/expense_line_tracking_category.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .tracking_category import TrackingCategory 6 | 7 | ExpenseLineTrackingCategory = typing.Union[str, TrackingCategory] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/expense_request_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | ExpenseRequestAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/expense_request_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | ExpenseRequestCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/expense_request_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | ExpenseRequestContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/expense_request_employee.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .employee import Employee 6 | 7 | ExpenseRequestEmployee = typing.Union[str, Employee] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/expense_tracking_categories_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .tracking_category import TrackingCategory 6 | 7 | ExpenseTrackingCategoriesItem = typing.Union[str, TrackingCategory] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/general_ledger_transaction_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | GeneralLedgerTransactionCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/general_ledger_transaction_line_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | GeneralLedgerTransactionLineAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/general_ledger_transaction_line_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | GeneralLedgerTransactionLineCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/general_ledger_transaction_line_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | GeneralLedgerTransactionLineContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/general_ledger_transaction_line_employee.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .employee import Employee 6 | 7 | GeneralLedgerTransactionLineEmployee = typing.Union[str, Employee] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/general_ledger_transaction_line_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .item import Item 6 | 7 | GeneralLedgerTransactionLineItem = typing.Union[str, Item] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/general_ledger_transaction_line_project.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .project import Project 6 | 7 | GeneralLedgerTransactionLineProject = typing.Union[str, Project] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/income_statement_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | IncomeStatementCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_accounting_period.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .accounting_period import AccountingPeriod 6 | 7 | InvoiceAccountingPeriod = typing.Union[str, AccountingPeriod] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_applied_payments_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .payment_line_item import PaymentLineItem 6 | 7 | InvoiceAppliedPaymentsItem = typing.Union[str, PaymentLineItem] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | InvoiceCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | InvoiceContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_currency.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .transaction_currency_enum import TransactionCurrencyEnum 6 | 7 | InvoiceCurrency = typing.Union[TransactionCurrencyEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_employee.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .employee import Employee 6 | 7 | InvoiceEmployee = typing.Union[str, Employee] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_line_item_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | InvoiceLineItemAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_line_item_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | InvoiceLineItemContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_line_item_employee.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .employee import Employee 6 | 7 | InvoiceLineItemEmployee = typing.Union[str, Employee] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_line_item_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .item import Item 6 | 7 | InvoiceLineItemItem = typing.Union[str, Item] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_line_item_project.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .project import Project 6 | 7 | InvoiceLineItemProject = typing.Union[str, Project] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_line_item_request_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | InvoiceLineItemRequestAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_line_item_request_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | InvoiceLineItemRequestContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_line_item_request_employee.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .employee import Employee 6 | 7 | InvoiceLineItemRequestEmployee = typing.Union[str, Employee] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_line_item_request_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .item import Item 6 | 7 | InvoiceLineItemRequestItem = typing.Union[str, Item] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_line_item_request_project.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .project import Project 6 | 7 | InvoiceLineItemRequestProject = typing.Union[str, Project] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_payment_term.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .payment_term import PaymentTerm 6 | 7 | InvoicePaymentTerm = typing.Union[str, PaymentTerm] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_payments_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .payment import Payment 6 | 7 | InvoicePaymentsItem = typing.Union[str, Payment] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_purchase_orders_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .purchase_order import PurchaseOrder 6 | 7 | InvoicePurchaseOrdersItem = typing.Union[str, PurchaseOrder] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_request_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | InvoiceRequestCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_request_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | InvoiceRequestContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_request_employee.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .employee import Employee 6 | 7 | InvoiceRequestEmployee = typing.Union[str, Employee] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_request_payment_term.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .payment_term import PaymentTerm 6 | 7 | InvoiceRequestPaymentTerm = typing.Union[str, PaymentTerm] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_request_payments_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .payment import Payment 6 | 7 | InvoiceRequestPaymentsItem = typing.Union[str, Payment] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_request_purchase_orders_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .purchase_order import PurchaseOrder 6 | 7 | InvoiceRequestPurchaseOrdersItem = typing.Union[str, PurchaseOrder] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_request_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .invoice_status_enum import InvoiceStatusEnum 6 | 7 | InvoiceRequestStatus = typing.Union[InvoiceStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_request_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .invoice_type_enum import InvoiceTypeEnum 6 | 7 | InvoiceRequestType = typing.Union[InvoiceTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .invoice_status_enum import InvoiceStatusEnum 6 | 7 | InvoiceStatus = typing.Union[InvoiceStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/invoice_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .invoice_type_enum import InvoiceTypeEnum 6 | 7 | InvoiceType = typing.Union[InvoiceTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/issue_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .issue_status_enum import IssueStatusEnum 6 | 7 | IssueStatus = typing.Union[IssueStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/item_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | ItemCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/item_purchase_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | ItemPurchaseAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/item_purchase_tax_rate.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .tax_rate import TaxRate 6 | 7 | ItemPurchaseTaxRate = typing.Union[str, TaxRate] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/item_request_request_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | ItemRequestRequestCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/item_request_request_purchase_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | ItemRequestRequestPurchaseAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/item_request_request_purchase_tax_rate.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .tax_rate import TaxRate 6 | 7 | ItemRequestRequestPurchaseTaxRate = typing.Union[str, TaxRate] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/item_request_request_sales_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | ItemRequestRequestSalesAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/item_request_request_sales_tax_rate.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .tax_rate import TaxRate 6 | 7 | ItemRequestRequestSalesTaxRate = typing.Union[str, TaxRate] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/item_request_request_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .status_7_d_1_enum import Status7D1Enum 6 | 7 | ItemRequestRequestStatus = typing.Union[Status7D1Enum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/item_request_request_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .type_2_bb_enum import Type2BbEnum 6 | 7 | ItemRequestRequestType = typing.Union[Type2BbEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/item_sales_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | ItemSalesAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/item_sales_tax_rate.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .tax_rate import TaxRate 6 | 7 | ItemSalesTaxRate = typing.Union[str, TaxRate] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/item_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .status_7_d_1_enum import Status7D1Enum 6 | 7 | ItemStatus = typing.Union[Status7D1Enum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/journal_entry_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | JournalEntryCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/journal_entry_payments_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .payment import Payment 6 | 7 | JournalEntryPaymentsItem = typing.Union[str, Payment] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/journal_entry_posting_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .posting_status_enum import PostingStatusEnum 6 | 7 | JournalEntryPostingStatus = typing.Union[PostingStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/journal_entry_request_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | JournalEntryRequestCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/journal_entry_request_payments_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .payment import Payment 6 | 7 | JournalEntryRequestPaymentsItem = typing.Union[str, Payment] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/journal_line_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | JournalLineAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/journal_line_project.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .project import Project 6 | 7 | JournalLineProject = typing.Union[str, Project] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/journal_line_request_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | JournalLineRequestAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/journal_line_request_project.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .project import Project 6 | 7 | JournalLineRequestProject = typing.Union[str, Project] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/journal_line_tracking_category.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .tracking_category import TrackingCategory 6 | 7 | JournalLineTrackingCategory = typing.Union[str, TrackingCategory] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/patched_item_request_request_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .type_2_bb_enum import Type2BbEnum 6 | 7 | PatchedItemRequestRequestType = typing.Union[Type2BbEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/patched_payment_request_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | PatchedPaymentRequestAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/patched_payment_request_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | PatchedPaymentRequestCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/patched_payment_request_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | PatchedPaymentRequestContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/patched_payment_request_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .payment_type_enum import PaymentTypeEnum 6 | 7 | PatchedPaymentRequestType = typing.Union[PaymentTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/payment_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | PaymentAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/payment_accounting_period.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .accounting_period import AccountingPeriod 6 | 7 | PaymentAccountingPeriod = typing.Union[str, AccountingPeriod] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/payment_applied_to_lines_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .payment_line_item import PaymentLineItem 6 | 7 | PaymentAppliedToLinesItem = typing.Union[str, PaymentLineItem] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/payment_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | PaymentCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/payment_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | PaymentContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/payment_currency.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .transaction_currency_enum import TransactionCurrencyEnum 6 | 7 | PaymentCurrency = typing.Union[TransactionCurrencyEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/payment_method_method_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .method_type_enum import MethodTypeEnum 6 | 7 | PaymentMethodMethodType = typing.Union[MethodTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/payment_payment_method.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .payment_method import PaymentMethod 6 | 7 | PaymentPaymentMethod = typing.Union[str, PaymentMethod] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/payment_request_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | PaymentRequestAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/payment_request_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | PaymentRequestCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/payment_request_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | PaymentRequestContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/payment_request_payment_method.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .payment_method import PaymentMethod 6 | 7 | PaymentRequestPaymentMethod = typing.Union[str, PaymentMethod] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/payment_request_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .payment_type_enum import PaymentTypeEnum 6 | 7 | PaymentRequestType = typing.Union[PaymentTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/payment_term_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | PaymentTermCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/payment_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .payment_type_enum import PaymentTypeEnum 6 | 7 | PaymentType = typing.Union[PaymentTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/project_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | ProjectCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/project_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | ProjectContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/purchase_order_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | PurchaseOrderCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/purchase_order_delivery_address.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .address import Address 6 | 7 | PurchaseOrderDeliveryAddress = typing.Union[str, Address] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/purchase_order_line_item_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .item import Item 6 | 7 | PurchaseOrderLineItemItem = typing.Union[str, Item] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/purchase_order_line_item_request_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .item import Item 6 | 7 | PurchaseOrderLineItemRequestItem = typing.Union[str, Item] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/purchase_order_payment_term.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .payment_term import PaymentTerm 6 | 7 | PurchaseOrderPaymentTerm = typing.Union[str, PaymentTerm] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/purchase_order_request_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | PurchaseOrderRequestCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/purchase_order_request_delivery_address.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .address import Address 6 | 7 | PurchaseOrderRequestDeliveryAddress = typing.Union[str, Address] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/purchase_order_request_payment_term.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .payment_term import PaymentTerm 6 | 7 | PurchaseOrderRequestPaymentTerm = typing.Union[str, PaymentTerm] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/purchase_order_request_vendor.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | PurchaseOrderRequestVendor = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/purchase_order_vendor.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | PurchaseOrderVendor = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/remote_field_api_coverage.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | RemoteFieldApiCoverage = typing.Union[int, float] 6 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/sync_status_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .status_fd_5_enum import StatusFd5Enum 6 | 7 | SyncStatusStatus = typing.Union[StatusFd5Enum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/tax_component_component_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .component_type_enum import ComponentTypeEnum 6 | 7 | TaxComponentComponentType = typing.Union[ComponentTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/tax_rate_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | TaxRateCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/tax_rate_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .status_7_d_1_enum import Status7D1Enum 6 | 7 | TaxRateStatus = typing.Union[Status7D1Enum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/tax_rate_tax_components_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .tax_component import TaxComponent 6 | 7 | TaxRateTaxComponentsItem = typing.Union[str, TaxComponent] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/tracking_category_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | TrackingCategoryCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/tracking_category_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .status_7_d_1_enum import Status7D1Enum 6 | 7 | TrackingCategoryStatus = typing.Union[Status7D1Enum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/transaction_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | TransactionAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/transaction_accounting_period.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .accounting_period import AccountingPeriod 6 | 7 | TransactionAccountingPeriod = typing.Union[str, AccountingPeriod] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/transaction_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | TransactionContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/transaction_line_item_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .item import Item 6 | 7 | TransactionLineItemItem = typing.Union[str, Item] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/vendor_credit_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | VendorCreditCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/vendor_credit_line_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | VendorCreditLineAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/vendor_credit_line_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | VendorCreditLineContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/vendor_credit_line_project.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .project import Project 6 | 7 | VendorCreditLineProject = typing.Union[str, Project] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/vendor_credit_line_request_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | VendorCreditLineRequestAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/vendor_credit_line_request_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | VendorCreditLineRequestContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/vendor_credit_line_request_project.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .project import Project 6 | 7 | VendorCreditLineRequestProject = typing.Union[str, Project] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/vendor_credit_request_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company_info import CompanyInfo 6 | 7 | VendorCreditRequestCompany = typing.Union[str, CompanyInfo] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/vendor_credit_request_vendor.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | VendorCreditRequestVendor = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/accounting/types/vendor_credit_vendor.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | VendorCreditVendor = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/resources/account_details/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ats/resources/account_token/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ats/resources/async_passthrough/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import AsyncPassthroughRetrieveResponse 6 | 7 | __all__ = ["AsyncPassthroughRetrieveResponse"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/resources/attachments/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ats/resources/audit_trail/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ats/resources/available_actions/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ats/resources/delete_account/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ats/resources/departments/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ats/resources/field_mapping/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ats/resources/force_resync/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ats/resources/generate_key/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ats/resources/issues/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import IssuesListRequestStatus 6 | 7 | __all__ = ["IssuesListRequestStatus"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/resources/issues/types/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .issues_list_request_status import IssuesListRequestStatus 6 | 7 | __all__ = ["IssuesListRequestStatus"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/resources/job_interview_stages/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ats/resources/job_postings/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import JobPostingsListRequestStatus 6 | 7 | __all__ = ["JobPostingsListRequestStatus"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/resources/link_token/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import EndUserDetailsRequestLanguage 6 | 7 | __all__ = ["EndUserDetailsRequestLanguage"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/resources/linked_accounts/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import LinkedAccountsListRequestCategory 6 | 7 | __all__ = ["LinkedAccountsListRequestCategory"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/resources/offices/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ats/resources/passthrough/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ats/resources/regenerate_key/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ats/resources/reject_reasons/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ats/resources/scopes/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ats/resources/sync_status/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ats/resources/tags/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ats/resources/users/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ats/resources/webhook_receivers/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/account_details_and_actions_category.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .category_enum import CategoryEnum 6 | 7 | AccountDetailsAndActionsCategory = typing.Union[CategoryEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/account_details_category.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .category_enum import CategoryEnum 6 | 7 | AccountDetailsCategory = typing.Union[CategoryEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/activity_activity_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .activity_type_enum import ActivityTypeEnum 6 | 7 | ActivityActivityType = typing.Union[ActivityTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/activity_request_activity_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .activity_type_enum import ActivityTypeEnum 6 | 7 | ActivityRequestActivityType = typing.Union[ActivityTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/activity_request_user.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .remote_user import RemoteUser 6 | 7 | ActivityRequestUser = typing.Union[str, RemoteUser] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/activity_request_visibility.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .visibility_enum import VisibilityEnum 6 | 7 | ActivityRequestVisibility = typing.Union[VisibilityEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/activity_user.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .remote_user import RemoteUser 6 | 7 | ActivityUser = typing.Union[str, RemoteUser] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/activity_visibility.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .visibility_enum import VisibilityEnum 6 | 7 | ActivityVisibility = typing.Union[VisibilityEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/application_credited_to.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .remote_user import RemoteUser 6 | 7 | ApplicationCreditedTo = typing.Union[str, RemoteUser] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/application_current_stage.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .job_interview_stage import JobInterviewStage 6 | 7 | ApplicationCurrentStage = typing.Union[str, JobInterviewStage] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/application_job.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .job import Job 6 | 7 | ApplicationJob = typing.Union[str, Job] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/application_reject_reason.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .reject_reason import RejectReason 6 | 7 | ApplicationRejectReason = typing.Union[str, RejectReason] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/application_request_candidate.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .candidate import Candidate 6 | 7 | ApplicationRequestCandidate = typing.Union[str, Candidate] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/application_request_credited_to.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .remote_user import RemoteUser 6 | 7 | ApplicationRequestCreditedTo = typing.Union[str, RemoteUser] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/application_request_job.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .job import Job 6 | 7 | ApplicationRequestJob = typing.Union[str, Job] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/application_request_offers_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .offer import Offer 6 | 7 | ApplicationRequestOffersItem = typing.Union[str, Offer] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/application_request_reject_reason.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .reject_reason import RejectReason 6 | 7 | ApplicationRequestRejectReason = typing.Union[str, RejectReason] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/attachment_attachment_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .attachment_type_enum import AttachmentTypeEnum 6 | 7 | AttachmentAttachmentType = typing.Union[AttachmentTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/audit_log_event_event_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .event_type_enum import EventTypeEnum 6 | 7 | AuditLogEventEventType = typing.Union[EventTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/audit_log_event_role.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .role_enum import RoleEnum 6 | 7 | AuditLogEventRole = typing.Union[RoleEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/candidate_attachments_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .attachment import Attachment 6 | 7 | CandidateAttachmentsItem = typing.Union[str, Attachment] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/candidate_request_applications_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .application import Application 6 | 7 | CandidateRequestApplicationsItem = typing.Union[str, Application] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/candidate_request_attachments_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .attachment import Attachment 6 | 7 | CandidateRequestAttachmentsItem = typing.Union[str, Attachment] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/eeoc_candidate.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .candidate import Candidate 6 | 7 | EeocCandidate = typing.Union[str, Candidate] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/eeoc_disability_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .disability_status_enum import DisabilityStatusEnum 6 | 7 | EeocDisabilityStatus = typing.Union[DisabilityStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/eeoc_gender.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .gender_enum import GenderEnum 6 | 7 | EeocGender = typing.Union[GenderEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/eeoc_race.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .race_enum import RaceEnum 6 | 7 | EeocRace = typing.Union[RaceEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/eeoc_veteran_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .veteran_status_enum import VeteranStatusEnum 6 | 7 | EeocVeteranStatus = typing.Union[VeteranStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/issue_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .issue_status_enum import IssueStatusEnum 6 | 7 | IssueStatus = typing.Union[IssueStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/job_departments_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .department import Department 6 | 7 | JobDepartmentsItem = typing.Union[str, Department] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/job_hiring_managers_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .remote_user import RemoteUser 6 | 7 | JobHiringManagersItem = typing.Union[str, RemoteUser] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/job_interview_stage_job.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .job import Job 6 | 7 | JobInterviewStageJob = typing.Union[str, Job] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/job_offices_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .office import Office 6 | 7 | JobOfficesItem = typing.Union[str, Office] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/job_posting_job.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .job import Job 6 | 7 | JobPostingJob = typing.Union[str, Job] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/job_posting_job_posting_urls_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .url import Url 6 | 7 | JobPostingJobPostingUrlsItem = typing.Union[str, Url] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/job_posting_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .job_posting_status_enum import JobPostingStatusEnum 6 | 7 | JobPostingStatus = typing.Union[JobPostingStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/job_recruiters_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .remote_user import RemoteUser 6 | 7 | JobRecruitersItem = typing.Union[str, RemoteUser] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/job_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .job_status_enum import JobStatusEnum 6 | 7 | JobStatus = typing.Union[JobStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/job_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .job_type_enum import JobTypeEnum 6 | 7 | JobType = typing.Union[JobTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/multipart_form_field_request_encoding.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .encoding_enum import EncodingEnum 6 | 7 | MultipartFormFieldRequestEncoding = typing.Union[EncodingEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/offer_creator.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .remote_user import RemoteUser 6 | 7 | OfferCreator = typing.Union[str, RemoteUser] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/offer_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .offer_status_enum import OfferStatusEnum 6 | 7 | OfferStatus = typing.Union[OfferStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/remote_field_api_coverage.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | RemoteFieldApiCoverage = typing.Union[int, float] 6 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/remote_response_response_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .response_type_enum import ResponseTypeEnum 6 | 7 | RemoteResponseResponseType = typing.Union[ResponseTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/remote_user_access_role.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .access_role_enum import AccessRoleEnum 6 | 7 | RemoteUserAccessRole = typing.Union[AccessRoleEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/scheduled_interview_application.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .application import Application 6 | 7 | ScheduledInterviewApplication = typing.Union[str, Application] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/scheduled_interview_interviewers_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .remote_user import RemoteUser 6 | 7 | ScheduledInterviewInterviewersItem = typing.Union[str, RemoteUser] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/scheduled_interview_organizer.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .remote_user import RemoteUser 6 | 7 | ScheduledInterviewOrganizer = typing.Union[str, RemoteUser] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/scheduled_interview_request_application.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .application import Application 6 | 7 | ScheduledInterviewRequestApplication = typing.Union[str, Application] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/scheduled_interview_request_organizer.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .remote_user import RemoteUser 6 | 7 | ScheduledInterviewRequestOrganizer = typing.Union[str, RemoteUser] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/scorecard_application.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .application import Application 6 | 7 | ScorecardApplication = typing.Union[str, Application] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/scorecard_interview.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .scheduled_interview import ScheduledInterview 6 | 7 | ScorecardInterview = typing.Union[str, ScheduledInterview] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/scorecard_interviewer.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .remote_user import RemoteUser 6 | 7 | ScorecardInterviewer = typing.Union[str, RemoteUser] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/screening_question_job.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .job import Job 6 | 7 | ScreeningQuestionJob = typing.Union[str, Job] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/sync_status_last_sync_result.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .last_sync_result_enum import LastSyncResultEnum 6 | 7 | SyncStatusLastSyncResult = typing.Union[LastSyncResultEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/sync_status_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .status_fd_5_enum import StatusFd5Enum 6 | 7 | SyncStatusStatus = typing.Union[StatusFd5Enum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/url_request_url_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .url_type_enum import UrlTypeEnum 6 | 7 | UrlRequestUrlType = typing.Union[UrlTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ats/types/url_url_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .url_type_enum import UrlTypeEnum 6 | 7 | UrlUrlType = typing.Union[UrlTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/resources/account_details/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/crm/resources/account_token/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/crm/resources/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/crm/resources/association_types/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/crm/resources/associations/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/crm/resources/async_passthrough/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import AsyncPassthroughRetrieveResponse 6 | 7 | __all__ = ["AsyncPassthroughRetrieveResponse"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/resources/audit_trail/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/crm/resources/available_actions/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/crm/resources/custom_object_classes/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/crm/resources/custom_objects/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/crm/resources/delete_account/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/crm/resources/engagement_types/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/crm/resources/field_mapping/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/crm/resources/force_resync/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/crm/resources/generate_key/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/crm/resources/issues/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import IssuesListRequestStatus 6 | 7 | __all__ = ["IssuesListRequestStatus"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/resources/issues/types/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .issues_list_request_status import IssuesListRequestStatus 6 | 7 | __all__ = ["IssuesListRequestStatus"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/resources/link_token/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import EndUserDetailsRequestLanguage 6 | 7 | __all__ = ["EndUserDetailsRequestLanguage"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/resources/linked_accounts/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import LinkedAccountsListRequestCategory 6 | 7 | __all__ = ["LinkedAccountsListRequestCategory"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/resources/passthrough/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/crm/resources/regenerate_key/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/crm/resources/scopes/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/crm/resources/stages/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/crm/resources/sync_status/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/crm/resources/users/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/crm/resources/webhook_receivers/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/account_details_and_actions_category.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .category_enum import CategoryEnum 6 | 7 | AccountDetailsAndActionsCategory = typing.Union[CategoryEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/account_details_category.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .category_enum import CategoryEnum 6 | 7 | AccountDetailsCategory = typing.Union[CategoryEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/account_owner.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .user import User 6 | 7 | AccountOwner = typing.Union[str, User] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/account_request_owner.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .user import User 6 | 7 | AccountRequestOwner = typing.Union[str, User] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/address_address_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .address_type_enum import AddressTypeEnum 6 | 7 | AddressAddressType = typing.Union[AddressTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/address_country.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .country_enum import CountryEnum 6 | 7 | AddressCountry = typing.Union[CountryEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/address_request_address_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .address_type_enum import AddressTypeEnum 6 | 7 | AddressRequestAddressType = typing.Union[AddressTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/address_request_country.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .country_enum import CountryEnum 6 | 7 | AddressRequestCountry = typing.Union[CountryEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/association_association_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .association_type import AssociationType 6 | 7 | AssociationAssociationType = typing.Union[str, AssociationType] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/association_type_cardinality.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .cardinality_enum import CardinalityEnum 6 | 7 | AssociationTypeCardinality = typing.Union[CardinalityEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/audit_log_event_event_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .event_type_enum import EventTypeEnum 6 | 7 | AuditLogEventEventType = typing.Union[EventTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/audit_log_event_role.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .role_enum import RoleEnum 6 | 7 | AuditLogEventRole = typing.Union[RoleEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/contact_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | ContactAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/contact_owner.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .user import User 6 | 7 | ContactOwner = typing.Union[str, User] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/contact_request_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | ContactRequestAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/contact_request_owner.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .user import User 6 | 7 | ContactRequestOwner = typing.Union[str, User] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/engagement_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | EngagementAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/engagement_contacts_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | EngagementContactsItem = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/engagement_direction.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .direction_enum import DirectionEnum 6 | 7 | EngagementDirection = typing.Union[DirectionEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/engagement_engagement_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .engagement_type import EngagementType 6 | 7 | EngagementEngagementType = typing.Union[str, EngagementType] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/engagement_owner.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .user import User 6 | 7 | EngagementOwner = typing.Union[str, User] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/engagement_request_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | EngagementRequestAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/engagement_request_contacts_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | EngagementRequestContactsItem = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/engagement_request_direction.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .direction_enum import DirectionEnum 6 | 7 | EngagementRequestDirection = typing.Union[DirectionEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/engagement_request_engagement_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .engagement_type import EngagementType 6 | 7 | EngagementRequestEngagementType = typing.Union[str, EngagementType] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/engagement_request_owner.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .user import User 6 | 7 | EngagementRequestOwner = typing.Union[str, User] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/engagement_type_activity_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .activity_type_enum import ActivityTypeEnum 6 | 7 | EngagementTypeActivityType = typing.Union[ActivityTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/ignore_common_model_request_reason.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .reason_enum import ReasonEnum 6 | 7 | IgnoreCommonModelRequestReason = typing.Union[ReasonEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/issue_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .issue_status_enum import IssueStatusEnum 6 | 7 | IssueStatus = typing.Union[IssueStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/lead_converted_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | LeadConvertedAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/lead_converted_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | LeadConvertedContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/lead_owner.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .user import User 6 | 7 | LeadOwner = typing.Union[str, User] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/lead_request_converted_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | LeadRequestConvertedAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/lead_request_converted_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | LeadRequestConvertedContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/lead_request_owner.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .user import User 6 | 7 | LeadRequestOwner = typing.Union[str, User] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/multipart_form_field_request_encoding.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .encoding_enum import EncodingEnum 6 | 7 | MultipartFormFieldRequestEncoding = typing.Union[EncodingEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/note_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | NoteAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/note_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | NoteContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/note_opportunity.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .opportunity import Opportunity 6 | 7 | NoteOpportunity = typing.Union[str, Opportunity] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/note_owner.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .user import User 6 | 7 | NoteOwner = typing.Union[str, User] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/note_request_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | NoteRequestAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/note_request_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | NoteRequestContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/note_request_opportunity.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .opportunity import Opportunity 6 | 7 | NoteRequestOpportunity = typing.Union[str, Opportunity] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/note_request_owner.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .user import User 6 | 7 | NoteRequestOwner = typing.Union[str, User] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/opportunity_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | OpportunityAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/opportunity_owner.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .user import User 6 | 7 | OpportunityOwner = typing.Union[str, User] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/opportunity_request_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | OpportunityRequestAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/opportunity_request_owner.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .user import User 6 | 7 | OpportunityRequestOwner = typing.Union[str, User] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/opportunity_request_stage.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .stage import Stage 6 | 7 | OpportunityRequestStage = typing.Union[str, Stage] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/opportunity_stage.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .stage import Stage 6 | 7 | OpportunityStage = typing.Union[str, Stage] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/opportunity_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .opportunity_status_enum import OpportunityStatusEnum 6 | 7 | OpportunityStatus = typing.Union[OpportunityStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/patched_contact_request_owner.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .user import User 6 | 7 | PatchedContactRequestOwner = typing.Union[str, User] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/patched_engagement_request_direction.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .direction_enum import DirectionEnum 6 | 7 | PatchedEngagementRequestDirection = typing.Union[DirectionEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/patched_task_request_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .task_status_enum import TaskStatusEnum 6 | 7 | PatchedTaskRequestStatus = typing.Union[TaskStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/remote_field_api_coverage.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | RemoteFieldApiCoverage = typing.Union[int, float] 6 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/remote_field_class_field_format.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .field_format_enum import FieldFormatEnum 6 | 7 | RemoteFieldClassFieldFormat = typing.Union[FieldFormatEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/remote_field_class_field_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .field_type_enum import FieldTypeEnum 6 | 7 | RemoteFieldClassFieldType = typing.Union[FieldTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/remote_field_remote_field_class.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .remote_field_class import RemoteFieldClass 6 | 7 | RemoteFieldRemoteFieldClass = typing.Union[str, RemoteFieldClass] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/sync_status_last_sync_result.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .last_sync_result_enum import LastSyncResultEnum 6 | 7 | SyncStatusLastSyncResult = typing.Union[LastSyncResultEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/sync_status_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .status_fd_5_enum import StatusFd5Enum 6 | 7 | SyncStatusStatus = typing.Union[StatusFd5Enum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/task_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | TaskAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/task_opportunity.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .opportunity import Opportunity 6 | 7 | TaskOpportunity = typing.Union[str, Opportunity] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/task_owner.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .user import User 6 | 7 | TaskOwner = typing.Union[str, User] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/task_request_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | TaskRequestAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/task_request_opportunity.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .opportunity import Opportunity 6 | 7 | TaskRequestOpportunity = typing.Union[str, Opportunity] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/task_request_owner.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .user import User 6 | 7 | TaskRequestOwner = typing.Union[str, User] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/task_request_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .task_status_enum import TaskStatusEnum 6 | 7 | TaskRequestStatus = typing.Union[TaskStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/crm/types/task_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .task_status_enum import TaskStatusEnum 6 | 7 | TaskStatus = typing.Union[TaskStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/resources/account_details/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/resources/account_token/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/resources/async_passthrough/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import AsyncPassthroughRetrieveResponse 6 | 7 | __all__ = ["AsyncPassthroughRetrieveResponse"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/resources/audit_trail/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/resources/available_actions/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/resources/delete_account/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/resources/drives/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/resources/field_mapping/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/resources/force_resync/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/resources/generate_key/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/resources/groups/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/resources/issues/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import IssuesListRequestStatus 6 | 7 | __all__ = ["IssuesListRequestStatus"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/resources/issues/types/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .issues_list_request_status import IssuesListRequestStatus 6 | 7 | __all__ = ["IssuesListRequestStatus"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/resources/link_token/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/resources/linked_accounts/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import LinkedAccountsListRequestCategory 6 | 7 | __all__ = ["LinkedAccountsListRequestCategory"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/resources/passthrough/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/resources/regenerate_key/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/resources/scopes/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/resources/sync_status/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/resources/users/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/resources/webhook_receivers/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/types/audit_log_event_event_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .event_type_enum import EventTypeEnum 6 | 7 | AuditLogEventEventType = typing.Union[EventTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/types/audit_log_event_role.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .role_enum import RoleEnum 6 | 7 | AuditLogEventRole = typing.Union[RoleEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/types/file_drive.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .drive import Drive 6 | 7 | FileDrive = typing.Union[str, Drive] 8 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/types/file_folder.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .folder import Folder 6 | 7 | FileFolder = typing.Union[str, Folder] 8 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/types/file_permissions_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .permission import Permission 6 | 7 | FilePermissionsItem = typing.Union[str, Permission] 8 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/types/file_request_drive.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .drive import Drive 6 | 7 | FileRequestDrive = typing.Union[str, Drive] 8 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/types/file_request_folder.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .folder import Folder 6 | 7 | FileRequestFolder = typing.Union[str, Folder] 8 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/types/folder_drive.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .drive import Drive 6 | 7 | FolderDrive = typing.Union[str, Drive] 8 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/types/folder_permissions_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .permission import Permission 6 | 7 | FolderPermissionsItem = typing.Union[str, Permission] 8 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/types/folder_request_drive.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .drive import Drive 6 | 7 | FolderRequestDrive = typing.Union[str, Drive] 8 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/types/folder_request_parent_folder.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .folder import Folder 6 | 7 | FolderRequestParentFolder = typing.Union[str, Folder] 8 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/types/issue_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .issue_status_enum import IssueStatusEnum 6 | 7 | IssueStatus = typing.Union[IssueStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/types/permission_group.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .group import Group 6 | 7 | PermissionGroup = typing.Union[str, Group] 8 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/types/permission_request_group.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .group import Group 6 | 7 | PermissionRequestGroup = typing.Union[str, Group] 8 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/types/permission_request_roles_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .roles_enum import RolesEnum 6 | 7 | PermissionRequestRolesItem = typing.Union[RolesEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/types/permission_request_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .type_enum import TypeEnum 6 | 7 | PermissionRequestType = typing.Union[TypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/types/permission_request_user.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .user import User 6 | 7 | PermissionRequestUser = typing.Union[str, User] 8 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/types/permission_roles_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .roles_enum import RolesEnum 6 | 7 | PermissionRolesItem = typing.Union[RolesEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/types/permission_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .type_enum import TypeEnum 6 | 7 | PermissionType = typing.Union[TypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/types/permission_user.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .user import User 6 | 7 | PermissionUser = typing.Union[str, User] 8 | -------------------------------------------------------------------------------- /src/merge/resources/filestorage/types/remote_field_api_coverage.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | RemoteFieldApiCoverage = typing.Union[int, float] 6 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/account_details/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/account_token/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/async_passthrough/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import AsyncPassthroughRetrieveResponse 6 | 7 | __all__ = ["AsyncPassthroughRetrieveResponse"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/audit_trail/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/available_actions/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/benefits/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/companies/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/delete_account/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/dependents/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/employer_benefits/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/field_mapping/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/force_resync/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/generate_key/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/groups/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/issues/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import IssuesListRequestStatus 6 | 7 | __all__ = ["IssuesListRequestStatus"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/issues/types/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .issues_list_request_status import IssuesListRequestStatus 6 | 7 | __all__ = ["IssuesListRequestStatus"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/link_token/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import EndUserDetailsRequestLanguage 6 | 7 | __all__ = ["EndUserDetailsRequestLanguage"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/linked_accounts/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import LinkedAccountsListRequestCategory 6 | 7 | __all__ = ["LinkedAccountsListRequestCategory"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/passthrough/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/pay_groups/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/regenerate_key/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/scopes/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/sync_status/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/teams/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/time_off_balances/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import TimeOffBalancesListRequestPolicyType 6 | 7 | __all__ = ["TimeOffBalancesListRequestPolicyType"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/timesheet_entries/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import TimesheetEntriesListRequestOrderBy 6 | 7 | __all__ = ["TimesheetEntriesListRequestOrderBy"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/resources/webhook_receivers/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/account_details_and_actions_category.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .category_enum import CategoryEnum 6 | 7 | AccountDetailsAndActionsCategory = typing.Union[CategoryEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/account_details_category.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .category_enum import CategoryEnum 6 | 7 | AccountDetailsCategory = typing.Union[CategoryEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/audit_log_event_event_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .event_type_enum import EventTypeEnum 6 | 7 | AuditLogEventEventType = typing.Union[EventTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/audit_log_event_role.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .role_enum import RoleEnum 6 | 7 | AuditLogEventRole = typing.Union[RoleEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/bank_info_account_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account_type_enum import AccountTypeEnum 6 | 7 | BankInfoAccountType = typing.Union[AccountTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/bank_info_employee.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .employee import Employee 6 | 7 | BankInfoEmployee = typing.Union[str, Employee] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/benefit_employee.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .employee import Employee 6 | 7 | BenefitEmployee = typing.Union[str, Employee] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/dependent_gender.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .gender_enum import GenderEnum 6 | 7 | DependentGender = typing.Union[GenderEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/dependent_relationship.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .relationship_enum import RelationshipEnum 6 | 7 | DependentRelationship = typing.Union[RelationshipEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/earning_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .earning_type_enum import EarningTypeEnum 6 | 7 | EarningType = typing.Union[EarningTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employee_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company import Company 6 | 7 | EmployeeCompany = typing.Union[str, Company] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employee_employment_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .employment_status_enum import EmploymentStatusEnum 6 | 7 | EmployeeEmploymentStatus = typing.Union[EmploymentStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employee_ethnicity.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .ethnicity_enum import EthnicityEnum 6 | 7 | EmployeeEthnicity = typing.Union[EthnicityEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employee_gender.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .gender_enum import GenderEnum 6 | 7 | EmployeeGender = typing.Union[GenderEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employee_groups_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .group import Group 6 | 7 | EmployeeGroupsItem = typing.Union[str, Group] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employee_home_location.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .location import Location 6 | 7 | EmployeeHomeLocation = typing.Union[str, Location] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employee_marital_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .marital_status_enum import MaritalStatusEnum 6 | 7 | EmployeeMaritalStatus = typing.Union[MaritalStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employee_pay_group.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .pay_group import PayGroup 6 | 7 | EmployeePayGroup = typing.Union[str, PayGroup] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employee_payroll_run_employee.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .employee import Employee 6 | 7 | EmployeePayrollRunEmployee = typing.Union[str, Employee] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employee_payroll_run_payroll_run.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .payroll_run import PayrollRun 6 | 7 | EmployeePayrollRunPayrollRun = typing.Union[str, PayrollRun] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employee_request_company.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .company import Company 6 | 7 | EmployeeRequestCompany = typing.Union[str, Company] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employee_request_employments_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .employment import Employment 6 | 7 | EmployeeRequestEmploymentsItem = typing.Union[str, Employment] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employee_request_ethnicity.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .ethnicity_enum import EthnicityEnum 6 | 7 | EmployeeRequestEthnicity = typing.Union[EthnicityEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employee_request_gender.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .gender_enum import GenderEnum 6 | 7 | EmployeeRequestGender = typing.Union[GenderEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employee_request_groups_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .group import Group 6 | 7 | EmployeeRequestGroupsItem = typing.Union[str, Group] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employee_request_home_location.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .location import Location 6 | 7 | EmployeeRequestHomeLocation = typing.Union[str, Location] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employee_request_manager.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .employee import Employee 6 | 7 | EmployeeRequestManager = typing.Union[str, Employee] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employee_request_marital_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .marital_status_enum import MaritalStatusEnum 6 | 7 | EmployeeRequestMaritalStatus = typing.Union[MaritalStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employee_request_pay_group.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .pay_group import PayGroup 6 | 7 | EmployeeRequestPayGroup = typing.Union[str, PayGroup] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employee_request_team.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .team import Team 6 | 7 | EmployeeRequestTeam = typing.Union[str, Team] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employee_request_work_location.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .location import Location 6 | 7 | EmployeeRequestWorkLocation = typing.Union[str, Location] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employee_team.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .team import Team 6 | 7 | EmployeeTeam = typing.Union[str, Team] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employee_work_location.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .location import Location 6 | 7 | EmployeeWorkLocation = typing.Union[str, Location] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employment_employment_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .employment_type_enum import EmploymentTypeEnum 6 | 7 | EmploymentEmploymentType = typing.Union[EmploymentTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employment_flsa_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .flsa_status_enum import FlsaStatusEnum 6 | 7 | EmploymentFlsaStatus = typing.Union[FlsaStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employment_pay_currency.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .pay_currency_enum import PayCurrencyEnum 6 | 7 | EmploymentPayCurrency = typing.Union[PayCurrencyEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employment_pay_frequency.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .pay_frequency_enum import PayFrequencyEnum 6 | 7 | EmploymentPayFrequency = typing.Union[PayFrequencyEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employment_pay_group.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .pay_group import PayGroup 6 | 7 | EmploymentPayGroup = typing.Union[str, PayGroup] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/employment_pay_period.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .pay_period_enum import PayPeriodEnum 6 | 7 | EmploymentPayPeriod = typing.Union[PayPeriodEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/group_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .group_type_enum import GroupTypeEnum 6 | 7 | GroupType = typing.Union[GroupTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/issue_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .issue_status_enum import IssueStatusEnum 6 | 7 | IssueStatus = typing.Union[IssueStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/location_country.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .country_enum import CountryEnum 6 | 7 | LocationCountry = typing.Union[CountryEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/location_location_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .location_type_enum import LocationTypeEnum 6 | 7 | LocationLocationType = typing.Union[LocationTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/multipart_form_field_request_encoding.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .encoding_enum import EncodingEnum 6 | 7 | MultipartFormFieldRequestEncoding = typing.Union[EncodingEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/payroll_run_run_state.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .run_state_enum import RunStateEnum 6 | 7 | PayrollRunRunState = typing.Union[RunStateEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/payroll_run_run_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .run_type_enum import RunTypeEnum 6 | 7 | PayrollRunRunType = typing.Union[RunTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/remote_field_api_coverage.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | RemoteFieldApiCoverage = typing.Union[int, float] 6 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/remote_response_response_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .response_type_enum import ResponseTypeEnum 6 | 7 | RemoteResponseResponseType = typing.Union[ResponseTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/sync_status_last_sync_result.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .last_sync_result_enum import LastSyncResultEnum 6 | 7 | SyncStatusLastSyncResult = typing.Union[LastSyncResultEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/time_off_approver.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .employee import Employee 6 | 7 | TimeOffApprover = typing.Union[str, Employee] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/time_off_balance_employee.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .employee import Employee 6 | 7 | TimeOffBalanceEmployee = typing.Union[str, Employee] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/time_off_balance_policy_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .policy_type_enum import PolicyTypeEnum 6 | 7 | TimeOffBalancePolicyType = typing.Union[PolicyTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/time_off_employee.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .employee import Employee 6 | 7 | TimeOffEmployee = typing.Union[str, Employee] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/time_off_request_approver.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .employee import Employee 6 | 7 | TimeOffRequestApprover = typing.Union[str, Employee] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/time_off_request_employee.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .employee import Employee 6 | 7 | TimeOffRequestEmployee = typing.Union[str, Employee] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/time_off_request_request_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .request_type_enum import RequestTypeEnum 6 | 7 | TimeOffRequestRequestType = typing.Union[RequestTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/time_off_request_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .time_off_status_enum import TimeOffStatusEnum 6 | 7 | TimeOffRequestStatus = typing.Union[TimeOffStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/time_off_request_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .request_type_enum import RequestTypeEnum 6 | 7 | TimeOffRequestType = typing.Union[RequestTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/time_off_request_units.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .units_enum import UnitsEnum 6 | 7 | TimeOffRequestUnits = typing.Union[UnitsEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/time_off_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .time_off_status_enum import TimeOffStatusEnum 6 | 7 | TimeOffStatus = typing.Union[TimeOffStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/time_off_units.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .units_enum import UnitsEnum 6 | 7 | TimeOffUnits = typing.Union[UnitsEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/timesheet_entry_employee.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .employee import Employee 6 | 7 | TimesheetEntryEmployee = typing.Union[str, Employee] 8 | -------------------------------------------------------------------------------- /src/merge/resources/hris/types/timesheet_entry_request_employee.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .employee import Employee 6 | 7 | TimesheetEntryRequestEmployee = typing.Union[str, Employee] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/resources/account_details/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/resources/account_token/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/resources/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/resources/async_passthrough/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import AsyncPassthroughRetrieveResponse 6 | 7 | __all__ = ["AsyncPassthroughRetrieveResponse"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/resources/attachments/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/resources/audit_trail/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/resources/available_actions/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/resources/collections/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import CollectionsViewersListRequestExpand 6 | 7 | __all__ = ["CollectionsViewersListRequestExpand"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/resources/contacts/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/resources/delete_account/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/resources/field_mapping/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/resources/force_resync/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/resources/generate_key/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/resources/issues/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import IssuesListRequestStatus 6 | 7 | __all__ = ["IssuesListRequestStatus"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/resources/issues/types/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .issues_list_request_status import IssuesListRequestStatus 6 | 7 | __all__ = ["IssuesListRequestStatus"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/resources/link_token/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import EndUserDetailsRequestLanguage 6 | 7 | __all__ = ["EndUserDetailsRequestLanguage"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/resources/linked_accounts/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import LinkedAccountsListRequestCategory 6 | 7 | __all__ = ["LinkedAccountsListRequestCategory"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/resources/passthrough/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/resources/projects/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | from .types import ProjectsUsersListRequestExpand 6 | 7 | __all__ = ["ProjectsUsersListRequestExpand"] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/resources/regenerate_key/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/resources/roles/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/resources/scopes/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/resources/sync_status/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/resources/tags/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/resources/teams/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/resources/webhook_receivers/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # isort: skip_file 4 | 5 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/account_details_and_actions_category.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .category_enum import CategoryEnum 6 | 7 | AccountDetailsAndActionsCategory = typing.Union[CategoryEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/account_details_category.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .category_enum import CategoryEnum 6 | 7 | AccountDetailsCategory = typing.Union[CategoryEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/attachment_request_ticket.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .ticket import Ticket 6 | 7 | AttachmentRequestTicket = typing.Union[str, Ticket] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/audit_log_event_event_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .event_type_enum import EventTypeEnum 6 | 7 | AuditLogEventEventType = typing.Union[EventTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/audit_log_event_role.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .role_enum import RoleEnum 6 | 7 | AuditLogEventRole = typing.Union[RoleEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/collection_collection_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .collection_type_enum import CollectionTypeEnum 6 | 7 | CollectionCollectionType = typing.Union[CollectionTypeEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/comment_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | CommentContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/comment_request_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | CommentRequestContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/comment_request_ticket.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .ticket import Ticket 6 | 7 | CommentRequestTicket = typing.Union[str, Ticket] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/comment_request_user.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .user import User 6 | 7 | CommentRequestUser = typing.Union[str, User] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/comment_ticket.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .ticket import Ticket 6 | 7 | CommentTicket = typing.Union[str, Ticket] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/comment_user.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .user import User 6 | 7 | CommentUser = typing.Union[str, User] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/contact_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | ContactAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/contact_request_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | ContactRequestAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/issue_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .issue_status_enum import IssueStatusEnum 6 | 7 | IssueStatus = typing.Union[IssueStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/multipart_form_field_request_encoding.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .encoding_enum import EncodingEnum 6 | 7 | MultipartFormFieldRequestEncoding = typing.Union[EncodingEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/patched_ticket_request_priority.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .priority_enum import PriorityEnum 6 | 7 | PatchedTicketRequestPriority = typing.Union[PriorityEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/patched_ticket_request_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .ticket_status_enum import TicketStatusEnum 6 | 7 | PatchedTicketRequestStatus = typing.Union[TicketStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/remote_field_api_coverage.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | RemoteFieldApiCoverage = typing.Union[int, float] 6 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/remote_field_class_field_format.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .field_format_enum import FieldFormatEnum 6 | 7 | RemoteFieldClassFieldFormat = typing.Union[str, FieldFormatEnum] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/remote_field_class_field_type.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .field_type_enum import FieldTypeEnum 6 | 7 | RemoteFieldClassFieldType = typing.Union[str, FieldTypeEnum] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/role_ticket_access.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .ticket_access_enum import TicketAccessEnum 6 | 7 | RoleTicketAccess = typing.Union[str, TicketAccessEnum] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/role_ticket_actions_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .ticket_actions_enum import TicketActionsEnum 6 | 7 | RoleTicketActionsItem = typing.Union[str, TicketActionsEnum] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/ticket_access_level.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .ticket_access_level_enum import TicketAccessLevelEnum 6 | 7 | TicketAccessLevel = typing.Union[TicketAccessLevelEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/ticket_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | TicketAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/ticket_assigned_teams_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .team import Team 6 | 7 | TicketAssignedTeamsItem = typing.Union[str, Team] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/ticket_assignees_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .user import User 6 | 7 | TicketAssigneesItem = typing.Union[str, User] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/ticket_collections_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .collection import Collection 6 | 7 | TicketCollectionsItem = typing.Union[str, Collection] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/ticket_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | TicketContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/ticket_creator.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .user import User 6 | 7 | TicketCreator = typing.Union[str, User] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/ticket_priority.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .priority_enum import PriorityEnum 6 | 7 | TicketPriority = typing.Union[PriorityEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/ticket_request_account.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .account import Account 6 | 7 | TicketRequestAccount = typing.Union[str, Account] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/ticket_request_assigned_teams_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .team import Team 6 | 7 | TicketRequestAssignedTeamsItem = typing.Union[str, Team] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/ticket_request_assignees_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .user import User 6 | 7 | TicketRequestAssigneesItem = typing.Union[str, User] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/ticket_request_attachments_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .attachment import Attachment 6 | 7 | TicketRequestAttachmentsItem = typing.Union[str, Attachment] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/ticket_request_collections_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .collection import Collection 6 | 7 | TicketRequestCollectionsItem = typing.Union[str, Collection] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/ticket_request_contact.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .contact import Contact 6 | 7 | TicketRequestContact = typing.Union[str, Contact] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/ticket_request_creator.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .user import User 6 | 7 | TicketRequestCreator = typing.Union[str, User] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/ticket_request_parent_ticket.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .ticket import Ticket 6 | 7 | TicketRequestParentTicket = typing.Union[str, Ticket] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/ticket_request_priority.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .priority_enum import PriorityEnum 6 | 7 | TicketRequestPriority = typing.Union[PriorityEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/ticket_request_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .ticket_status_enum import TicketStatusEnum 6 | 7 | TicketRequestStatus = typing.Union[TicketStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/ticket_status.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .ticket_status_enum import TicketStatusEnum 6 | 7 | TicketStatus = typing.Union[TicketStatusEnum, str] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/user_roles_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .role import Role 6 | 7 | UserRolesItem = typing.Union[str, Role] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/user_teams_item.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .team import Team 6 | 7 | UserTeamsItem = typing.Union[str, Team] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/viewer_team.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .team import Team 6 | 7 | ViewerTeam = typing.Union[str, Team] 8 | -------------------------------------------------------------------------------- /src/merge/resources/ticketing/types/viewer_user.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | import typing 4 | 5 | from .user import User 6 | 7 | ViewerUser = typing.Union[str, User] 8 | -------------------------------------------------------------------------------- /src/merge/version.py: -------------------------------------------------------------------------------- 1 | from importlib import metadata 2 | 3 | __version__ = metadata.version("MergePythonClient") 4 | -------------------------------------------------------------------------------- /tests/custom/test_client.py: -------------------------------------------------------------------------------- 1 | import pytest 2 | 3 | 4 | # Get started with writing tests with pytest at https://docs.pytest.org 5 | @pytest.mark.skip(reason="Unimplemented") 6 | def test_client() -> None: 7 | assert True 8 | -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | -------------------------------------------------------------------------------- /tests/utils/assets/models/color.py: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by Fern from our API Definition. 2 | 3 | # This file was auto-generated by Fern from our API Definition. 4 | 5 | import typing 6 | 7 | Color = typing.Union[typing.Literal["red", "blue"], typing.Any] 8 | --------------------------------------------------------------------------------