netsuite-soap 2025.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.envrc +9 -0
- data/.github/FUNDING.yml +1 -0
- data/.github/dependabot.yml +14 -0
- data/.github/workflows/codeql-analysis.yml +70 -0
- data/.github/workflows/main.yml +55 -0
- data/.github/workflows/publish.yml +53 -0
- data/.gitignore +23 -0
- data/.rspec +6 -0
- data/.ruby-version +1 -0
- data/.tool-versions +1 -0
- data/AGENTS.md +150 -0
- data/CLAUDE.md +111 -0
- data/DEVELOPMENT.md +34 -0
- data/Gemfile +10 -0
- data/HISTORY.md +171 -0
- data/LICENSE +22 -0
- data/README.md +87 -0
- data/Rakefile +130 -0
- data/docs/async.md +46 -0
- data/docs/configuration.md +88 -0
- data/docs/contributing.md +36 -0
- data/docs/usage.md +149 -0
- data/lib/netsuite/actions/abstract_action.rb +32 -0
- data/lib/netsuite/actions/add.rb +93 -0
- data/lib/netsuite/actions/async_add_list.rb +74 -0
- data/lib/netsuite/actions/async_delete_list.rb +40 -0
- data/lib/netsuite/actions/async_get_list.rb +46 -0
- data/lib/netsuite/actions/async_initialize_list.rb +85 -0
- data/lib/netsuite/actions/async_response.rb +52 -0
- data/lib/netsuite/actions/async_search.rb +36 -0
- data/lib/netsuite/actions/async_update_list.rb +53 -0
- data/lib/netsuite/actions/async_upsert_list.rb +53 -0
- data/lib/netsuite/actions/attach_file.rb +87 -0
- data/lib/netsuite/actions/check_async_status.rb +29 -0
- data/lib/netsuite/actions/delete.rb +102 -0
- data/lib/netsuite/actions/delete_list.rb +108 -0
- data/lib/netsuite/actions/get.rb +87 -0
- data/lib/netsuite/actions/get_all.rb +78 -0
- data/lib/netsuite/actions/get_async_result.rb +35 -0
- data/lib/netsuite/actions/get_deleted.rb +92 -0
- data/lib/netsuite/actions/get_list.rb +98 -0
- data/lib/netsuite/actions/get_select_value.rb +80 -0
- data/lib/netsuite/actions/initialize.rb +86 -0
- data/lib/netsuite/actions/search.rb +265 -0
- data/lib/netsuite/actions/update.rb +86 -0
- data/lib/netsuite/actions/update_list.rb +113 -0
- data/lib/netsuite/actions/upsert.rb +86 -0
- data/lib/netsuite/actions/upsert_list.rb +118 -0
- data/lib/netsuite/client.rb +19 -0
- data/lib/netsuite/configuration.rb +470 -0
- data/lib/netsuite/errors.rb +18 -0
- data/lib/netsuite/namespaces/act_sched.rb +11 -0
- data/lib/netsuite/namespaces/comm_general.rb +11 -0
- data/lib/netsuite/namespaces/file_cabinet.rb +11 -0
- data/lib/netsuite/namespaces/list_acct.rb +11 -0
- data/lib/netsuite/namespaces/list_emp.rb +12 -0
- data/lib/netsuite/namespaces/list_mkt.rb +12 -0
- data/lib/netsuite/namespaces/list_rel.rb +11 -0
- data/lib/netsuite/namespaces/list_support.rb +11 -0
- data/lib/netsuite/namespaces/list_website.rb +11 -0
- data/lib/netsuite/namespaces/platform_common.rb +11 -0
- data/lib/netsuite/namespaces/platform_core.rb +11 -0
- data/lib/netsuite/namespaces/setup_custom.rb +11 -0
- data/lib/netsuite/namespaces/tran_bank.rb +11 -0
- data/lib/netsuite/namespaces/tran_cust.rb +11 -0
- data/lib/netsuite/namespaces/tran_emp.rb +11 -0
- data/lib/netsuite/namespaces/tran_general.rb +11 -0
- data/lib/netsuite/namespaces/tran_invt.rb +11 -0
- data/lib/netsuite/namespaces/tran_purch.rb +11 -0
- data/lib/netsuite/namespaces/tran_sales.rb +11 -0
- data/lib/netsuite/passports/token.rb +55 -0
- data/lib/netsuite/passports/user.rb +25 -0
- data/lib/netsuite/records/account.rb +30 -0
- data/lib/netsuite/records/accounting_period.rb +25 -0
- data/lib/netsuite/records/address.rb +46 -0
- data/lib/netsuite/records/assembly_build.rb +39 -0
- data/lib/netsuite/records/assembly_component.rb +26 -0
- data/lib/netsuite/records/assembly_component_list.rb +12 -0
- data/lib/netsuite/records/assembly_item.rb +66 -0
- data/lib/netsuite/records/assembly_unbuild.rb +37 -0
- data/lib/netsuite/records/base_ref_list.rb +17 -0
- data/lib/netsuite/records/bill_address.rb +17 -0
- data/lib/netsuite/records/billing_schedule.rb +33 -0
- data/lib/netsuite/records/billing_schedule_milestone.rb +28 -0
- data/lib/netsuite/records/billing_schedule_milestone_list.rb +14 -0
- data/lib/netsuite/records/billing_schedule_recurrence.rb +28 -0
- data/lib/netsuite/records/billing_schedule_recurrence_list.rb +14 -0
- data/lib/netsuite/records/bin.rb +30 -0
- data/lib/netsuite/records/bin_number.rb +18 -0
- data/lib/netsuite/records/bin_number_list.rb +11 -0
- data/lib/netsuite/records/bin_transfer.rb +38 -0
- data/lib/netsuite/records/bin_transfer_inventory.rb +20 -0
- data/lib/netsuite/records/bin_transfer_inventory_list.rb +10 -0
- data/lib/netsuite/records/campaign.rb +28 -0
- data/lib/netsuite/records/cash_refund.rb +135 -0
- data/lib/netsuite/records/cash_refund_item.rb +32 -0
- data/lib/netsuite/records/cash_refund_item_list.rb +13 -0
- data/lib/netsuite/records/cash_sale.rb +51 -0
- data/lib/netsuite/records/cash_sale_item.rb +40 -0
- data/lib/netsuite/records/cash_sale_item_list.rb +13 -0
- data/lib/netsuite/records/classification.rb +30 -0
- data/lib/netsuite/records/contact.rb +44 -0
- data/lib/netsuite/records/contact_access_roles.rb +23 -0
- data/lib/netsuite/records/contact_access_roles_list.rb +9 -0
- data/lib/netsuite/records/contact_addressbook.rb +64 -0
- data/lib/netsuite/records/contact_addressbook_list.rb +11 -0
- data/lib/netsuite/records/contact_list.rb +49 -0
- data/lib/netsuite/records/contact_role.rb +23 -0
- data/lib/netsuite/records/cost_category.rb +28 -0
- data/lib/netsuite/records/credit_memo.rb +59 -0
- data/lib/netsuite/records/credit_memo_apply.rb +16 -0
- data/lib/netsuite/records/credit_memo_apply_list.rb +15 -0
- data/lib/netsuite/records/credit_memo_item.rb +34 -0
- data/lib/netsuite/records/credit_memo_item_list.rb +11 -0
- data/lib/netsuite/records/currency.rb +30 -0
- data/lib/netsuite/records/currency_rate.rb +34 -0
- data/lib/netsuite/records/custom_field.rb +23 -0
- data/lib/netsuite/records/custom_field_list.rb +186 -0
- data/lib/netsuite/records/custom_list.rb +27 -0
- data/lib/netsuite/records/custom_list_custom_value.rb +22 -0
- data/lib/netsuite/records/custom_list_custom_value_list.rb +13 -0
- data/lib/netsuite/records/custom_record.rb +56 -0
- data/lib/netsuite/records/custom_record_ref.rb +50 -0
- data/lib/netsuite/records/custom_record_type.rb +30 -0
- data/lib/netsuite/records/customer.rb +265 -0
- data/lib/netsuite/records/customer_addressbook.rb +64 -0
- data/lib/netsuite/records/customer_addressbook_list.rb +11 -0
- data/lib/netsuite/records/customer_category.rb +26 -0
- data/lib/netsuite/records/customer_credit_cards.rb +36 -0
- data/lib/netsuite/records/customer_credit_cards_list.rb +10 -0
- data/lib/netsuite/records/customer_currency.rb +28 -0
- data/lib/netsuite/records/customer_currency_list.rb +9 -0
- data/lib/netsuite/records/customer_deposit.rb +47 -0
- data/lib/netsuite/records/customer_deposit_apply.rb +17 -0
- data/lib/netsuite/records/customer_deposit_apply_list.rb +12 -0
- data/lib/netsuite/records/customer_partner.rb +24 -0
- data/lib/netsuite/records/customer_partners_list.rb +9 -0
- data/lib/netsuite/records/customer_payment.rb +56 -0
- data/lib/netsuite/records/customer_payment_apply.rb +17 -0
- data/lib/netsuite/records/customer_payment_apply_list.rb +12 -0
- data/lib/netsuite/records/customer_payment_credit.rb +17 -0
- data/lib/netsuite/records/customer_payment_credit_list.rb +12 -0
- data/lib/netsuite/records/customer_refund.rb +52 -0
- data/lib/netsuite/records/customer_refund_apply.rb +16 -0
- data/lib/netsuite/records/customer_refund_apply_list.rb +12 -0
- data/lib/netsuite/records/customer_refund_deposit.rb +16 -0
- data/lib/netsuite/records/customer_refund_deposit_list.rb +11 -0
- data/lib/netsuite/records/customer_sales_team.rb +24 -0
- data/lib/netsuite/records/customer_sales_team_list.rb +9 -0
- data/lib/netsuite/records/customer_status.rb +29 -0
- data/lib/netsuite/records/department.rb +27 -0
- data/lib/netsuite/records/deposit.rb +40 -0
- data/lib/netsuite/records/deposit_application.rb +64 -0
- data/lib/netsuite/records/deposit_cash_back.rb +42 -0
- data/lib/netsuite/records/deposit_cash_back_list.rb +9 -0
- data/lib/netsuite/records/deposit_other.rb +35 -0
- data/lib/netsuite/records/deposit_other_list.rb +9 -0
- data/lib/netsuite/records/deposit_payment.rb +48 -0
- data/lib/netsuite/records/deposit_payment_list.rb +14 -0
- data/lib/netsuite/records/description_item.rb +34 -0
- data/lib/netsuite/records/discount_item.rb +37 -0
- data/lib/netsuite/records/duration.rb +15 -0
- data/lib/netsuite/records/employee.rb +42 -0
- data/lib/netsuite/records/entity_custom_field.rb +53 -0
- data/lib/netsuite/records/estimate.rb +122 -0
- data/lib/netsuite/records/estimate_item.rb +47 -0
- data/lib/netsuite/records/estimate_item_list.rb +11 -0
- data/lib/netsuite/records/file.rb +31 -0
- data/lib/netsuite/records/folder.rb +26 -0
- data/lib/netsuite/records/gift_cert_redemption.rb +22 -0
- data/lib/netsuite/records/gift_cert_redemption_list.rb +11 -0
- data/lib/netsuite/records/gift_certificate.rb +30 -0
- data/lib/netsuite/records/gift_certificate_item.rb +84 -0
- data/lib/netsuite/records/inbound_shipment.rb +32 -0
- data/lib/netsuite/records/inbound_shipment_item.rb +39 -0
- data/lib/netsuite/records/inbound_shipment_item_list.rb +11 -0
- data/lib/netsuite/records/inter_company_journal_entry.rb +48 -0
- data/lib/netsuite/records/inter_company_journal_entry_line.rb +28 -0
- data/lib/netsuite/records/inter_company_journal_entry_line_list.rb +12 -0
- data/lib/netsuite/records/inventory_adjustment.rb +30 -0
- data/lib/netsuite/records/inventory_adjustment_inventory.rb +21 -0
- data/lib/netsuite/records/inventory_adjustment_inventory_list.rb +10 -0
- data/lib/netsuite/records/inventory_assignment.rb +24 -0
- data/lib/netsuite/records/inventory_assignment_list.rb +35 -0
- data/lib/netsuite/records/inventory_detail.rb +18 -0
- data/lib/netsuite/records/inventory_item.rb +341 -0
- data/lib/netsuite/records/inventory_number.rb +34 -0
- data/lib/netsuite/records/inventory_number_locations.rb +16 -0
- data/lib/netsuite/records/inventory_number_locations_list.rb +10 -0
- data/lib/netsuite/records/inventory_transfer.rb +30 -0
- data/lib/netsuite/records/inventory_transfer_inventory.rb +21 -0
- data/lib/netsuite/records/inventory_transfer_inventory_list.rb +10 -0
- data/lib/netsuite/records/invoice.rb +167 -0
- data/lib/netsuite/records/invoice_item.rb +46 -0
- data/lib/netsuite/records/invoice_item_list.rb +15 -0
- data/lib/netsuite/records/item_availability.rb +45 -0
- data/lib/netsuite/records/item_fulfillment.rb +62 -0
- data/lib/netsuite/records/item_fulfillment_item.rb +45 -0
- data/lib/netsuite/records/item_fulfillment_item_list.rb +14 -0
- data/lib/netsuite/records/item_fulfillment_package.rb +24 -0
- data/lib/netsuite/records/item_fulfillment_package_fed_ex.rb +28 -0
- data/lib/netsuite/records/item_fulfillment_package_fed_ex_list.rb +32 -0
- data/lib/netsuite/records/item_fulfillment_package_list.rb +37 -0
- data/lib/netsuite/records/item_fulfillment_package_ups.rb +27 -0
- data/lib/netsuite/records/item_fulfillment_package_ups_list.rb +32 -0
- data/lib/netsuite/records/item_fulfillment_package_usps.rb +26 -0
- data/lib/netsuite/records/item_fulfillment_package_usps_list.rb +32 -0
- data/lib/netsuite/records/item_group.rb +37 -0
- data/lib/netsuite/records/item_member.rb +26 -0
- data/lib/netsuite/records/item_member_list.rb +12 -0
- data/lib/netsuite/records/item_option_custom_field.rb +52 -0
- data/lib/netsuite/records/item_receipt.rb +46 -0
- data/lib/netsuite/records/item_receipt_item.rb +43 -0
- data/lib/netsuite/records/item_receipt_item_list.rb +11 -0
- data/lib/netsuite/records/item_vendor.rb +24 -0
- data/lib/netsuite/records/item_vendor_list.rb +11 -0
- data/lib/netsuite/records/job.rb +41 -0
- data/lib/netsuite/records/job_status.rb +25 -0
- data/lib/netsuite/records/journal_entry.rb +48 -0
- data/lib/netsuite/records/journal_entry_line.rb +27 -0
- data/lib/netsuite/records/journal_entry_line_list.rb +12 -0
- data/lib/netsuite/records/kit_item.rb +71 -0
- data/lib/netsuite/records/location.rb +40 -0
- data/lib/netsuite/records/locations_list.rb +15 -0
- data/lib/netsuite/records/lot_numbered_assembly_item.rb +64 -0
- data/lib/netsuite/records/lot_numbered_inventory_item.rb +260 -0
- data/lib/netsuite/records/matrix_option_list.rb +71 -0
- data/lib/netsuite/records/member_list.rb +10 -0
- data/lib/netsuite/records/message.rb +30 -0
- data/lib/netsuite/records/non_inventory_purchase_item.rb +52 -0
- data/lib/netsuite/records/non_inventory_resale_item.rb +189 -0
- data/lib/netsuite/records/non_inventory_sale_item.rb +165 -0
- data/lib/netsuite/records/note.rb +33 -0
- data/lib/netsuite/records/note_type.rb +27 -0
- data/lib/netsuite/records/null_field_list.rb +15 -0
- data/lib/netsuite/records/opportunity.rb +45 -0
- data/lib/netsuite/records/opportunity_item.rb +41 -0
- data/lib/netsuite/records/opportunity_item_list.rb +9 -0
- data/lib/netsuite/records/other_charge_sale_item.rb +73 -0
- data/lib/netsuite/records/partner.rb +35 -0
- data/lib/netsuite/records/payment_item.rb +36 -0
- data/lib/netsuite/records/payment_method.rb +28 -0
- data/lib/netsuite/records/payroll_item.rb +36 -0
- data/lib/netsuite/records/phone_call.rb +29 -0
- data/lib/netsuite/records/price.rb +17 -0
- data/lib/netsuite/records/price_level.rb +26 -0
- data/lib/netsuite/records/price_list.rb +9 -0
- data/lib/netsuite/records/pricing.rb +20 -0
- data/lib/netsuite/records/pricing_matrix.rb +11 -0
- data/lib/netsuite/records/promotion_code.rb +38 -0
- data/lib/netsuite/records/promotions.rb +26 -0
- data/lib/netsuite/records/promotions_list.rb +9 -0
- data/lib/netsuite/records/purchase_order.rb +52 -0
- data/lib/netsuite/records/purchase_order_item.rb +42 -0
- data/lib/netsuite/records/purchase_order_item_list.rb +11 -0
- data/lib/netsuite/records/record_ref.rb +38 -0
- data/lib/netsuite/records/record_ref_list.rb +22 -0
- data/lib/netsuite/records/return_authorization.rb +135 -0
- data/lib/netsuite/records/return_authorization_item.rb +43 -0
- data/lib/netsuite/records/return_authorization_item_list.rb +11 -0
- data/lib/netsuite/records/rev_rec_schedule.rb +32 -0
- data/lib/netsuite/records/rev_rec_template.rb +25 -0
- data/lib/netsuite/records/role_list.rb +24 -0
- data/lib/netsuite/records/roles.rb +17 -0
- data/lib/netsuite/records/sales_order.rb +61 -0
- data/lib/netsuite/records/sales_order_item.rb +49 -0
- data/lib/netsuite/records/sales_order_item_list.rb +11 -0
- data/lib/netsuite/records/sales_order_ship_group_list.rb +11 -0
- data/lib/netsuite/records/sales_role.rb +26 -0
- data/lib/netsuite/records/sales_tax_item.rb +34 -0
- data/lib/netsuite/records/serialized_assembly_item.rb +240 -0
- data/lib/netsuite/records/serialized_inventory_item.rb +248 -0
- data/lib/netsuite/records/serialized_inventory_item_location.rb +36 -0
- data/lib/netsuite/records/serialized_inventory_item_locations_list.rb +10 -0
- data/lib/netsuite/records/serialized_inventory_item_numbers.rb +15 -0
- data/lib/netsuite/records/serialized_inventory_item_numbers_list.rb +10 -0
- data/lib/netsuite/records/service_resale_item.rb +154 -0
- data/lib/netsuite/records/service_sale_item.rb +50 -0
- data/lib/netsuite/records/ship_address.rb +17 -0
- data/lib/netsuite/records/site_category.rb +33 -0
- data/lib/netsuite/records/subscription.rb +18 -0
- data/lib/netsuite/records/subscriptions_list.rb +10 -0
- data/lib/netsuite/records/subsidiary.rb +38 -0
- data/lib/netsuite/records/subtotal_item.rb +34 -0
- data/lib/netsuite/records/support_case.rb +32 -0
- data/lib/netsuite/records/support_case_type.rb +26 -0
- data/lib/netsuite/records/task.rb +31 -0
- data/lib/netsuite/records/tax_group.rb +35 -0
- data/lib/netsuite/records/tax_type.rb +22 -0
- data/lib/netsuite/records/term.rb +27 -0
- data/lib/netsuite/records/time_bill.rb +32 -0
- data/lib/netsuite/records/transaction_body_custom_field.rb +61 -0
- data/lib/netsuite/records/transaction_column_custom_field.rb +59 -0
- data/lib/netsuite/records/transaction_ship_group.rb +40 -0
- data/lib/netsuite/records/transfer_order.rb +45 -0
- data/lib/netsuite/records/transfer_order_item.rb +43 -0
- data/lib/netsuite/records/transfer_order_item_list.rb +11 -0
- data/lib/netsuite/records/translation.rb +17 -0
- data/lib/netsuite/records/translation_list.rb +11 -0
- data/lib/netsuite/records/units_type.rb +25 -0
- data/lib/netsuite/records/units_type_uom.rb +20 -0
- data/lib/netsuite/records/units_type_uom_list.rb +12 -0
- data/lib/netsuite/records/vendor.rb +46 -0
- data/lib/netsuite/records/vendor_bill.rb +53 -0
- data/lib/netsuite/records/vendor_bill_expense.rb +40 -0
- data/lib/netsuite/records/vendor_bill_expense_list.rb +13 -0
- data/lib/netsuite/records/vendor_bill_item.rb +46 -0
- data/lib/netsuite/records/vendor_bill_item_list.rb +12 -0
- data/lib/netsuite/records/vendor_category.rb +26 -0
- data/lib/netsuite/records/vendor_credit.rb +54 -0
- data/lib/netsuite/records/vendor_credit_apply.rb +18 -0
- data/lib/netsuite/records/vendor_credit_apply_list.rb +12 -0
- data/lib/netsuite/records/vendor_credit_expense.rb +31 -0
- data/lib/netsuite/records/vendor_credit_expense_list.rb +12 -0
- data/lib/netsuite/records/vendor_credit_item.rb +34 -0
- data/lib/netsuite/records/vendor_credit_item_list.rb +12 -0
- data/lib/netsuite/records/vendor_currency.rb +26 -0
- data/lib/netsuite/records/vendor_currency_list.rb +9 -0
- data/lib/netsuite/records/vendor_payment.rb +52 -0
- data/lib/netsuite/records/vendor_payment_apply.rb +16 -0
- data/lib/netsuite/records/vendor_payment_apply_list.rb +12 -0
- data/lib/netsuite/records/vendor_return_authorization.rb +30 -0
- data/lib/netsuite/records/vendor_return_authorization_item.rb +23 -0
- data/lib/netsuite/records/vendor_return_authorization_item_list.rb +12 -0
- data/lib/netsuite/records/work_order.rb +45 -0
- data/lib/netsuite/records/work_order_item.rb +30 -0
- data/lib/netsuite/records/work_order_item_list.rb +11 -0
- data/lib/netsuite/response.rb +20 -0
- data/lib/netsuite/rest/utilities/request.rb +62 -0
- data/lib/netsuite/rest/utilities/roles.rb +47 -0
- data/lib/netsuite/support/actions.rb +74 -0
- data/lib/netsuite/support/attributes.rb +22 -0
- data/lib/netsuite/support/country.rb +289 -0
- data/lib/netsuite/support/fields.rb +86 -0
- data/lib/netsuite/support/record_refs.rb +30 -0
- data/lib/netsuite/support/records.rb +89 -0
- data/lib/netsuite/support/requests.rb +56 -0
- data/lib/netsuite/support/search_result.rb +150 -0
- data/lib/netsuite/support/sublist.rb +71 -0
- data/lib/netsuite/utilities/data_center.rb +53 -0
- data/lib/netsuite/utilities/strings.rb +15 -0
- data/lib/netsuite/utilities.rb +324 -0
- data/lib/netsuite/version.rb +3 -0
- data/lib/netsuite.rb +348 -0
- data/netsuite.gemspec +30 -0
- data/spec/integration/soap_http_spec.rb +76 -0
- data/spec/netsuite/actions/add_spec.rb +155 -0
- data/spec/netsuite/actions/async_add_list_spec.rb +123 -0
- data/spec/netsuite/actions/async_delete_list_spec.rb +60 -0
- data/spec/netsuite/actions/async_get_list_spec.rb +78 -0
- data/spec/netsuite/actions/async_initialize_list_spec.rb +106 -0
- data/spec/netsuite/actions/async_lifecycle_spec.rb +51 -0
- data/spec/netsuite/actions/async_response_spec.rb +187 -0
- data/spec/netsuite/actions/async_search_spec.rb +27 -0
- data/spec/netsuite/actions/async_update_list_spec.rb +80 -0
- data/spec/netsuite/actions/async_upsert_list_spec.rb +157 -0
- data/spec/netsuite/actions/attach_file_spec.rb +59 -0
- data/spec/netsuite/actions/check_async_status_spec.rb +29 -0
- data/spec/netsuite/actions/delete_list_spec.rb +86 -0
- data/spec/netsuite/actions/delete_spec.rb +93 -0
- data/spec/netsuite/actions/get_all_spec.rb +100 -0
- data/spec/netsuite/actions/get_async_result_spec.rb +78 -0
- data/spec/netsuite/actions/get_deleted_spec.rb +60 -0
- data/spec/netsuite/actions/get_list_spec.rb +157 -0
- data/spec/netsuite/actions/get_select_value_spec.rb +43 -0
- data/spec/netsuite/actions/get_spec.rb +72 -0
- data/spec/netsuite/actions/initialize_spec.rb +34 -0
- data/spec/netsuite/actions/search_spec.rb +387 -0
- data/spec/netsuite/actions/update_list_spec.rb +107 -0
- data/spec/netsuite/actions/update_spec.rb +133 -0
- data/spec/netsuite/actions/upsert_list_spec.rb +112 -0
- data/spec/netsuite/actions/upsert_spec.rb +117 -0
- data/spec/netsuite/configuration_spec.rb +661 -0
- data/spec/netsuite/records/account_spec.rb +107 -0
- data/spec/netsuite/records/accounting_period_spec.rb +138 -0
- data/spec/netsuite/records/address_spec.rb +139 -0
- data/spec/netsuite/records/assembly_item_spec.rb +64 -0
- data/spec/netsuite/records/basic_record_spec.rb +128 -0
- data/spec/netsuite/records/bill_address_spec.rb +52 -0
- data/spec/netsuite/records/billing_schedule_milestone_list_spec.rb +24 -0
- data/spec/netsuite/records/billing_schedule_milestone_spec.rb +51 -0
- data/spec/netsuite/records/billing_schedule_recurrence_list_spec.rb +24 -0
- data/spec/netsuite/records/billing_schedule_recurrence_spec.rb +49 -0
- data/spec/netsuite/records/billing_schedule_spec.rb +164 -0
- data/spec/netsuite/records/bin_number_spec.rb +23 -0
- data/spec/netsuite/records/campaign_spec.rb +43 -0
- data/spec/netsuite/records/cash_refund_item_list_spec.rb +27 -0
- data/spec/netsuite/records/cash_refund_item_spec.rb +27 -0
- data/spec/netsuite/records/cash_refund_spec.rb +152 -0
- data/spec/netsuite/records/cash_sale_item_list_spec.rb +27 -0
- data/spec/netsuite/records/cash_sale_item_spec.rb +23 -0
- data/spec/netsuite/records/cash_sale_spec.rb +34 -0
- data/spec/netsuite/records/classification_spec.rb +77 -0
- data/spec/netsuite/records/cost_category_spec.rb +105 -0
- data/spec/netsuite/records/credit_memo_apply_list_spec.rb +27 -0
- data/spec/netsuite/records/credit_memo_apply_spec.rb +14 -0
- data/spec/netsuite/records/credit_memo_item_list_spec.rb +26 -0
- data/spec/netsuite/records/credit_memo_item_spec.rb +29 -0
- data/spec/netsuite/records/credit_memo_spec.rb +213 -0
- data/spec/netsuite/records/currency_rate_spec.rb +45 -0
- data/spec/netsuite/records/custom_field_list_spec.rb +276 -0
- data/spec/netsuite/records/custom_list_spec.rb +21 -0
- data/spec/netsuite/records/custom_record_spec.rb +125 -0
- data/spec/netsuite/records/custom_record_type_spec.rb +114 -0
- data/spec/netsuite/records/customer_addressbook_list_spec.rb +41 -0
- data/spec/netsuite/records/customer_addressbook_spec.rb +105 -0
- data/spec/netsuite/records/customer_credit_cards_list_spec.rb +23 -0
- data/spec/netsuite/records/customer_payment_apply_list_spec.rb +25 -0
- data/spec/netsuite/records/customer_payment_credit_list_spec.rb +26 -0
- data/spec/netsuite/records/customer_payment_spec.rb +168 -0
- data/spec/netsuite/records/customer_refund_apply_list_spec.rb +25 -0
- data/spec/netsuite/records/customer_refund_apply_spec.rb +14 -0
- data/spec/netsuite/records/customer_refund_deposit_list_spec.rb +25 -0
- data/spec/netsuite/records/customer_refund_deposit_spec.rb +14 -0
- data/spec/netsuite/records/customer_refund_spec.rb +205 -0
- data/spec/netsuite/records/customer_sales_team_list_spec.rb +41 -0
- data/spec/netsuite/records/customer_spec.rb +561 -0
- data/spec/netsuite/records/department_spec.rb +103 -0
- data/spec/netsuite/records/deposit_spec.rb +165 -0
- data/spec/netsuite/records/discount_item_spec.rb +125 -0
- data/spec/netsuite/records/duration_spec.rb +14 -0
- data/spec/netsuite/records/employee_spec.rb +148 -0
- data/spec/netsuite/records/entity_custom_field_spec.rb +34 -0
- data/spec/netsuite/records/estimate_item_list_spec.rb +26 -0
- data/spec/netsuite/records/estimate_item_spec.rb +35 -0
- data/spec/netsuite/records/estimate_spec.rb +274 -0
- data/spec/netsuite/records/file_spec.rb +11 -0
- data/spec/netsuite/records/folder_spec.rb +33 -0
- data/spec/netsuite/records/gift_cert_redemption_list_spec.rb +26 -0
- data/spec/netsuite/records/gift_cert_redemption_spec.rb +21 -0
- data/spec/netsuite/records/inter_company_journal_entry_line_list_spec.rb +26 -0
- data/spec/netsuite/records/inter_company_journal_entry_line_spec.rb +60 -0
- data/spec/netsuite/records/inter_company_journal_entry_spec.rb +156 -0
- data/spec/netsuite/records/inventory_assignment_list_spec.rb +59 -0
- data/spec/netsuite/records/inventory_assignment_spec.rb +21 -0
- data/spec/netsuite/records/inventory_detail_spec.rb +13 -0
- data/spec/netsuite/records/inventory_item_spec.rb +532 -0
- data/spec/netsuite/records/inventory_transfer_spec.rb +79 -0
- data/spec/netsuite/records/invoice_item_list_spec.rb +24 -0
- data/spec/netsuite/records/invoice_item_spec.rb +79 -0
- data/spec/netsuite/records/invoice_spec.rb +494 -0
- data/spec/netsuite/records/item_availability_spec.rb +59 -0
- data/spec/netsuite/records/item_fulfillment_package_fed_ex_list_spec.rb +27 -0
- data/spec/netsuite/records/item_fulfillment_package_list_spec.rb +27 -0
- data/spec/netsuite/records/item_fulfillment_package_ups_list_spec.rb +27 -0
- data/spec/netsuite/records/item_fulfillment_package_usps_list_spec.rb +27 -0
- data/spec/netsuite/records/item_fulfillment_spec.rb +49 -0
- data/spec/netsuite/records/item_group_spec.rb +117 -0
- data/spec/netsuite/records/item_member_list_spec.rb +26 -0
- data/spec/netsuite/records/item_option_custom_field_spec.rb +27 -0
- data/spec/netsuite/records/item_vendor_list_spec.rb +27 -0
- data/spec/netsuite/records/item_vendor_spec.rb +27 -0
- data/spec/netsuite/records/job_spec.rb +201 -0
- data/spec/netsuite/records/journal_entry_line_list_spec.rb +26 -0
- data/spec/netsuite/records/journal_entry_line_spec.rb +59 -0
- data/spec/netsuite/records/journal_entry_spec.rb +156 -0
- data/spec/netsuite/records/kit_item_spec.rb +117 -0
- data/spec/netsuite/records/location_spec.rb +51 -0
- data/spec/netsuite/records/lot_numbered_inventory_item_spec.rb +247 -0
- data/spec/netsuite/records/matrix_option_list_spec.rb +61 -0
- data/spec/netsuite/records/message_spec.rb +49 -0
- data/spec/netsuite/records/non_inventory_resale_item_spec.rb +300 -0
- data/spec/netsuite/records/non_inventory_sale_item_spec.rb +278 -0
- data/spec/netsuite/records/note_spec.rb +134 -0
- data/spec/netsuite/records/note_type_spec.rb +88 -0
- data/spec/netsuite/records/null_field_list_spec.rb +30 -0
- data/spec/netsuite/records/partner_spec.rb +143 -0
- data/spec/netsuite/records/payment_item_spec.rb +117 -0
- data/spec/netsuite/records/payment_method_spec.rb +49 -0
- data/spec/netsuite/records/phone_call_spec.rb +17 -0
- data/spec/netsuite/records/pomo_code_spec.rb +40 -0
- data/spec/netsuite/records/price_level_spec.rb +16 -0
- data/spec/netsuite/records/pricing_matrix_spec.rb +27 -0
- data/spec/netsuite/records/record_ref_spec.rb +87 -0
- data/spec/netsuite/records/return_authorization_item_list_spec.rb +26 -0
- data/spec/netsuite/records/return_authorization_item_spec.rb +31 -0
- data/spec/netsuite/records/return_authorization_spec.rb +62 -0
- data/spec/netsuite/records/rev_rec_template_spec.rb +39 -0
- data/spec/netsuite/records/sales_order_item_list_spec.rb +26 -0
- data/spec/netsuite/records/sales_order_item_spec.rb +36 -0
- data/spec/netsuite/records/sales_order_spec.rb +250 -0
- data/spec/netsuite/records/sales_tax_item_spec.rb +26 -0
- data/spec/netsuite/records/service_resale_item_spec.rb +239 -0
- data/spec/netsuite/records/service_sale_item_spec.rb +135 -0
- data/spec/netsuite/records/ship_address_spec.rb +36 -0
- data/spec/netsuite/records/site_category_spec.rb +51 -0
- data/spec/netsuite/records/subscription_spec.rb +37 -0
- data/spec/netsuite/records/subscriptions_list_spec.rb +19 -0
- data/spec/netsuite/records/subsidiary_spec.rb +25 -0
- data/spec/netsuite/records/support_case_spec.rb +157 -0
- data/spec/netsuite/records/support_case_type_spec.rb +22 -0
- data/spec/netsuite/records/tax_type_spec.rb +11 -0
- data/spec/netsuite/records/term_spec.rb +96 -0
- data/spec/netsuite/records/transaction_body_custom_field_spec.rb +32 -0
- data/spec/netsuite/records/transaction_column_custom_field_spec.rb +32 -0
- data/spec/netsuite/records/translation_list_spec.rb +34 -0
- data/spec/netsuite/records/translation_spec.rb +28 -0
- data/spec/netsuite/records/units_type_spec.rb +33 -0
- data/spec/netsuite/records/units_type_uom_list_spec.rb +23 -0
- data/spec/netsuite/records/units_type_uom_spec.rb +14 -0
- data/spec/netsuite/records/vendor_bill_expense_list_spec.rb +36 -0
- data/spec/netsuite/records/vendor_bill_expense_spec.rb +72 -0
- data/spec/netsuite/records/vendor_bill_item_list_spec.rb +36 -0
- data/spec/netsuite/records/vendor_bill_item_spec.rb +118 -0
- data/spec/netsuite/records/vendor_bill_spec.rb +187 -0
- data/spec/netsuite/records/vendor_credit_spec.rb +29 -0
- data/spec/netsuite/records/vendor_payment_apply_list_spec.rb +25 -0
- data/spec/netsuite/records/vendor_payment_apply_spec.rb +15 -0
- data/spec/netsuite/records/vendor_payment_spec.rb +164 -0
- data/spec/netsuite/records/vendor_spec.rb +145 -0
- data/spec/netsuite/records/work_order_item_list_spec.rb +26 -0
- data/spec/netsuite/records/work_order_item_spec.rb +45 -0
- data/spec/netsuite/records/work_order_spec.rb +92 -0
- data/spec/netsuite/response_spec.rb +34 -0
- data/spec/netsuite/support/fields_spec.rb +107 -0
- data/spec/netsuite/support/record_refs_spec.rb +14 -0
- data/spec/netsuite/support/records_spec.rb +60 -0
- data/spec/netsuite/support/refresh_spec.rb +28 -0
- data/spec/netsuite/support/requests_spec.rb +38 -0
- data/spec/netsuite/support/search_result_spec.rb +53 -0
- data/spec/netsuite/support/sublist_spec.rb +42 -0
- data/spec/netsuite/utilities/data_center_spec.rb +110 -0
- data/spec/netsuite/utilities/request_spec.rb +29 -0
- data/spec/netsuite/utilities/roles_spec.rb +145 -0
- data/spec/netsuite/utilities_spec.rb +140 -0
- data/spec/netsuite_spec.rb +41 -0
- data/spec/spec_helper.rb +50 -0
- data/spec/support/configuration.rb +23 -0
- data/spec/support/field_matcher.rb +21 -0
- data/spec/support/fixtures/add/add_customer.xml +16 -0
- data/spec/support/fixtures/add/add_file.xml +20 -0
- data/spec/support/fixtures/add/add_invoice.xml +20 -0
- data/spec/support/fixtures/add/add_invoice_error.xml +19 -0
- data/spec/support/fixtures/add/add_invoice_multiple_errors.xml +24 -0
- data/spec/support/fixtures/async_add_list/async_add_list_pending.xml +18 -0
- data/spec/support/fixtures/async_delete_list/async_delete_list_pending.xml +18 -0
- data/spec/support/fixtures/async_get_list/async_get_list_pending.xml +18 -0
- data/spec/support/fixtures/async_initialize_list/async_initialize_list_pending.xml +18 -0
- data/spec/support/fixtures/async_search/async_search_pending.xml +18 -0
- data/spec/support/fixtures/async_update_list/async_update_list_pending.xml +18 -0
- data/spec/support/fixtures/async_upsert_list/async_upsert_list_customers.xml +16 -0
- data/spec/support/fixtures/async_upsert_list/async_upsert_list_one_customer.xml +16 -0
- data/spec/support/fixtures/async_upsert_list/async_upsert_list_with_errors.xml +21 -0
- data/spec/support/fixtures/attach/attach_file_to_sales_order.xml +16 -0
- data/spec/support/fixtures/attach/attach_file_to_sales_order_error.xml +20 -0
- data/spec/support/fixtures/check_async_status/check_async_status_pending.xml +18 -0
- data/spec/support/fixtures/custom_fields/multi_select.xml +47 -0
- data/spec/support/fixtures/delete/delete_customer.xml +16 -0
- data/spec/support/fixtures/delete/delete_customer_error.xml +21 -0
- data/spec/support/fixtures/delete/delete_customer_multiple_errors.xml +25 -0
- data/spec/support/fixtures/delete_list/delete_list_customers.xml +26 -0
- data/spec/support/fixtures/delete_list/delete_list_customers_with_errors.xml +31 -0
- data/spec/support/fixtures/get/get_customer.xml +61 -0
- data/spec/support/fixtures/get/get_invoice.xml +101 -0
- data/spec/support/fixtures/get_all/get_all_currencies.xml +24 -0
- data/spec/support/fixtures/get_all/get_all_error.xml +15 -0
- data/spec/support/fixtures/get_async_result/get_async_result_finished.xml +22 -0
- data/spec/support/fixtures/get_async_result/get_async_result_upsert_list_finished.xml +26 -0
- data/spec/support/fixtures/get_async_result/get_async_result_write_list_multiple.xml +34 -0
- data/spec/support/fixtures/get_deleted/get_deleted_invoices.xml +38 -0
- data/spec/support/fixtures/get_item_availability/get_item_availability.xml +46 -0
- data/spec/support/fixtures/get_list/get_list_customer_error.xml +22 -0
- data/spec/support/fixtures/get_list/get_list_customers.xml +21 -0
- data/spec/support/fixtures/get_list/get_list_customers_multiple.xml +28 -0
- data/spec/support/fixtures/get_select_value/empty_result.xml +22 -0
- data/spec/support/fixtures/get_select_value/item_fulfillment_ship_method.xml +43 -0
- data/spec/support/fixtures/initialize/initialize_invoice_from_customer.xml +69 -0
- data/spec/support/fixtures/login/failure_concurrent_requests.xml +15 -0
- data/spec/support/fixtures/login/failure_invalid_credentials.xml +15 -0
- data/spec/support/fixtures/login/success.xml +35 -0
- data/spec/support/fixtures/search/basic_search_contact.xml +39 -0
- data/spec/support/fixtures/search/saved_search_customer.xml +54 -0
- data/spec/support/fixtures/search/saved_search_item.xml +55 -0
- data/spec/support/fixtures/search/saved_search_joined_custom_customer.xml +101 -0
- data/spec/support/fixtures/search/single_search_result.xml +46 -0
- data/spec/support/fixtures/soap/v2025_2_0/wsdl/netsuite.wsdl +2531 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/activities/scheduling.xsd +603 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/activities/schedulingTypes.xsd +198 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/documents/fileCabinet.xsd +159 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/documents/fileCabinetTypes.xsd +110 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/general/communication.xsd +210 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/general/communicationTypes.xsd +20 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/accounting.xsd +6768 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/accountingTypes.xsd +1043 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/employeeTypes.xsd +344 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/employees.xsd +518 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/marketing.xsd +528 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/marketingTypes.xsd +145 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/relationshipTypes.xsd +190 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/relationships.xsd +1658 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/supplyChain.xsd +282 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/supplyChainTypes.xsd +26 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/support.xsd +534 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/supportTypes.xsd +74 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/website.xsd +99 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/lists/websiteTypes.xsd +2 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/common.xsd +8411 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/commonTypes.xsd +1371 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/core.xsd +1096 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/coreTypes.xsd +877 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/faultTypes.xsd +1446 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/faults.xsd +82 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/platform/messages.xsd +664 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/setup/customization.xsd +1604 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/setup/customizationTypes.xsd +119 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/bank.xsd +212 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/bankTypes.xsd +2 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/customerTypes.xsd +99 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/customers.xsd +1131 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/demandPlanning.xsd +173 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/demandPlanningTypes.xsd +52 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/employeeTypes.xsd +10 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/employees.xsd +723 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/financial.xsd +88 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/financialTypes.xsd +9 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/general.xsd +364 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/inventory.xsd +780 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/inventoryTypes.xsd +49 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/purchaseTypes.xsd +44 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/purchases.xsd +986 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/saleTypes.xsd +754 -0
- data/spec/support/fixtures/soap/v2025_2_0/xsd/transactions/sales.xsd +2025 -0
- data/spec/support/fixtures/update/update_customer.xml +16 -0
- data/spec/support/fixtures/update/update_customer_error.xml +21 -0
- data/spec/support/fixtures/update/update_customer_multiple_errors.xml +25 -0
- data/spec/support/fixtures/update/update_invoice.xml +16 -0
- data/spec/support/fixtures/update_list/update_list_items.xml +22 -0
- data/spec/support/fixtures/update_list/update_list_one_item.xml +18 -0
- data/spec/support/fixtures/update_list/update_list_with_errors.xml +32 -0
- data/spec/support/fixtures/upsert/upsert_customer.xml +16 -0
- data/spec/support/fixtures/upsert/upsert_invoice.xml +16 -0
- data/spec/support/fixtures/upsert/upsert_invoice_error.xml +20 -0
- data/spec/support/fixtures/upsert/upsert_invoice_multiple_errors.xml +24 -0
- data/spec/support/fixtures/upsert_list/upsert_list_customers.xml +21 -0
- data/spec/support/fixtures/upsert_list/upsert_list_one_customer.xml +17 -0
- data/spec/support/fixtures/upsert_list/upsert_list_with_errors.xml +32 -0
- data/spec/support/read_only_field_matcher.rb +7 -0
- data/spec/support/record_ref_matcher.rb +25 -0
- data/spec/support/savon.rb +5 -0
- data/spec/support/search_only_field_matcher.rb +7 -0
- data/spec/support/webmock_soap_helper.rb +15 -0
- data/workflow.md +368 -0
- metadata +764 -0
metadata
ADDED
|
@@ -0,0 +1,764 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: netsuite-soap
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 2025.2.3
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Robert DeLanghe
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: savon
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: 2.3.0
|
|
19
|
+
- - "!="
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: 2.13.0
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
requirements:
|
|
26
|
+
- - ">="
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
version: 2.3.0
|
|
29
|
+
- - "!="
|
|
30
|
+
- !ruby/object:Gem::Version
|
|
31
|
+
version: 2.13.0
|
|
32
|
+
- !ruby/object:Gem::Dependency
|
|
33
|
+
name: rack
|
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - "<"
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: '4'
|
|
39
|
+
type: :runtime
|
|
40
|
+
prerelease: false
|
|
41
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
42
|
+
requirements:
|
|
43
|
+
- - "<"
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: '4'
|
|
46
|
+
- !ruby/object:Gem::Dependency
|
|
47
|
+
name: tzinfo
|
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
|
49
|
+
requirements:
|
|
50
|
+
- - "~>"
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: '2.0'
|
|
53
|
+
type: :runtime
|
|
54
|
+
prerelease: false
|
|
55
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
56
|
+
requirements:
|
|
57
|
+
- - "~>"
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: '2.0'
|
|
60
|
+
- !ruby/object:Gem::Dependency
|
|
61
|
+
name: rspec
|
|
62
|
+
requirement: !ruby/object:Gem::Requirement
|
|
63
|
+
requirements:
|
|
64
|
+
- - "~>"
|
|
65
|
+
- !ruby/object:Gem::Version
|
|
66
|
+
version: 3.13.0
|
|
67
|
+
type: :development
|
|
68
|
+
prerelease: false
|
|
69
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
70
|
+
requirements:
|
|
71
|
+
- - "~>"
|
|
72
|
+
- !ruby/object:Gem::Version
|
|
73
|
+
version: 3.13.0
|
|
74
|
+
- !ruby/object:Gem::Dependency
|
|
75
|
+
name: webmock
|
|
76
|
+
requirement: !ruby/object:Gem::Requirement
|
|
77
|
+
requirements:
|
|
78
|
+
- - "~>"
|
|
79
|
+
- !ruby/object:Gem::Version
|
|
80
|
+
version: '3.19'
|
|
81
|
+
type: :development
|
|
82
|
+
prerelease: false
|
|
83
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
84
|
+
requirements:
|
|
85
|
+
- - "~>"
|
|
86
|
+
- !ruby/object:Gem::Version
|
|
87
|
+
version: '3.19'
|
|
88
|
+
description: Ruby wrapper for the NetSuite SuiteTalk SOAP Web Services API (v2025.2).
|
|
89
|
+
Targets the final supported SOAP endpoint (removed 2028.2). Includes async bulk
|
|
90
|
+
operations (asyncAddList, asyncUpdateList, asyncUpsertList, asyncDeleteList, asyncGetList).
|
|
91
|
+
email:
|
|
92
|
+
- dev@robertdelanghe.com
|
|
93
|
+
executables: []
|
|
94
|
+
extensions: []
|
|
95
|
+
extra_rdoc_files: []
|
|
96
|
+
files:
|
|
97
|
+
- ".envrc"
|
|
98
|
+
- ".github/FUNDING.yml"
|
|
99
|
+
- ".github/dependabot.yml"
|
|
100
|
+
- ".github/workflows/codeql-analysis.yml"
|
|
101
|
+
- ".github/workflows/main.yml"
|
|
102
|
+
- ".github/workflows/publish.yml"
|
|
103
|
+
- ".gitignore"
|
|
104
|
+
- ".rspec"
|
|
105
|
+
- ".ruby-version"
|
|
106
|
+
- ".tool-versions"
|
|
107
|
+
- AGENTS.md
|
|
108
|
+
- CLAUDE.md
|
|
109
|
+
- DEVELOPMENT.md
|
|
110
|
+
- Gemfile
|
|
111
|
+
- HISTORY.md
|
|
112
|
+
- LICENSE
|
|
113
|
+
- README.md
|
|
114
|
+
- Rakefile
|
|
115
|
+
- docs/async.md
|
|
116
|
+
- docs/configuration.md
|
|
117
|
+
- docs/contributing.md
|
|
118
|
+
- docs/usage.md
|
|
119
|
+
- lib/netsuite.rb
|
|
120
|
+
- lib/netsuite/actions/abstract_action.rb
|
|
121
|
+
- lib/netsuite/actions/add.rb
|
|
122
|
+
- lib/netsuite/actions/async_add_list.rb
|
|
123
|
+
- lib/netsuite/actions/async_delete_list.rb
|
|
124
|
+
- lib/netsuite/actions/async_get_list.rb
|
|
125
|
+
- lib/netsuite/actions/async_initialize_list.rb
|
|
126
|
+
- lib/netsuite/actions/async_response.rb
|
|
127
|
+
- lib/netsuite/actions/async_search.rb
|
|
128
|
+
- lib/netsuite/actions/async_update_list.rb
|
|
129
|
+
- lib/netsuite/actions/async_upsert_list.rb
|
|
130
|
+
- lib/netsuite/actions/attach_file.rb
|
|
131
|
+
- lib/netsuite/actions/check_async_status.rb
|
|
132
|
+
- lib/netsuite/actions/delete.rb
|
|
133
|
+
- lib/netsuite/actions/delete_list.rb
|
|
134
|
+
- lib/netsuite/actions/get.rb
|
|
135
|
+
- lib/netsuite/actions/get_all.rb
|
|
136
|
+
- lib/netsuite/actions/get_async_result.rb
|
|
137
|
+
- lib/netsuite/actions/get_deleted.rb
|
|
138
|
+
- lib/netsuite/actions/get_list.rb
|
|
139
|
+
- lib/netsuite/actions/get_select_value.rb
|
|
140
|
+
- lib/netsuite/actions/initialize.rb
|
|
141
|
+
- lib/netsuite/actions/search.rb
|
|
142
|
+
- lib/netsuite/actions/update.rb
|
|
143
|
+
- lib/netsuite/actions/update_list.rb
|
|
144
|
+
- lib/netsuite/actions/upsert.rb
|
|
145
|
+
- lib/netsuite/actions/upsert_list.rb
|
|
146
|
+
- lib/netsuite/client.rb
|
|
147
|
+
- lib/netsuite/configuration.rb
|
|
148
|
+
- lib/netsuite/errors.rb
|
|
149
|
+
- lib/netsuite/namespaces/act_sched.rb
|
|
150
|
+
- lib/netsuite/namespaces/comm_general.rb
|
|
151
|
+
- lib/netsuite/namespaces/file_cabinet.rb
|
|
152
|
+
- lib/netsuite/namespaces/list_acct.rb
|
|
153
|
+
- lib/netsuite/namespaces/list_emp.rb
|
|
154
|
+
- lib/netsuite/namespaces/list_mkt.rb
|
|
155
|
+
- lib/netsuite/namespaces/list_rel.rb
|
|
156
|
+
- lib/netsuite/namespaces/list_support.rb
|
|
157
|
+
- lib/netsuite/namespaces/list_website.rb
|
|
158
|
+
- lib/netsuite/namespaces/platform_common.rb
|
|
159
|
+
- lib/netsuite/namespaces/platform_core.rb
|
|
160
|
+
- lib/netsuite/namespaces/setup_custom.rb
|
|
161
|
+
- lib/netsuite/namespaces/tran_bank.rb
|
|
162
|
+
- lib/netsuite/namespaces/tran_cust.rb
|
|
163
|
+
- lib/netsuite/namespaces/tran_emp.rb
|
|
164
|
+
- lib/netsuite/namespaces/tran_general.rb
|
|
165
|
+
- lib/netsuite/namespaces/tran_invt.rb
|
|
166
|
+
- lib/netsuite/namespaces/tran_purch.rb
|
|
167
|
+
- lib/netsuite/namespaces/tran_sales.rb
|
|
168
|
+
- lib/netsuite/passports/token.rb
|
|
169
|
+
- lib/netsuite/passports/user.rb
|
|
170
|
+
- lib/netsuite/records/account.rb
|
|
171
|
+
- lib/netsuite/records/accounting_period.rb
|
|
172
|
+
- lib/netsuite/records/address.rb
|
|
173
|
+
- lib/netsuite/records/assembly_build.rb
|
|
174
|
+
- lib/netsuite/records/assembly_component.rb
|
|
175
|
+
- lib/netsuite/records/assembly_component_list.rb
|
|
176
|
+
- lib/netsuite/records/assembly_item.rb
|
|
177
|
+
- lib/netsuite/records/assembly_unbuild.rb
|
|
178
|
+
- lib/netsuite/records/base_ref_list.rb
|
|
179
|
+
- lib/netsuite/records/bill_address.rb
|
|
180
|
+
- lib/netsuite/records/billing_schedule.rb
|
|
181
|
+
- lib/netsuite/records/billing_schedule_milestone.rb
|
|
182
|
+
- lib/netsuite/records/billing_schedule_milestone_list.rb
|
|
183
|
+
- lib/netsuite/records/billing_schedule_recurrence.rb
|
|
184
|
+
- lib/netsuite/records/billing_schedule_recurrence_list.rb
|
|
185
|
+
- lib/netsuite/records/bin.rb
|
|
186
|
+
- lib/netsuite/records/bin_number.rb
|
|
187
|
+
- lib/netsuite/records/bin_number_list.rb
|
|
188
|
+
- lib/netsuite/records/bin_transfer.rb
|
|
189
|
+
- lib/netsuite/records/bin_transfer_inventory.rb
|
|
190
|
+
- lib/netsuite/records/bin_transfer_inventory_list.rb
|
|
191
|
+
- lib/netsuite/records/campaign.rb
|
|
192
|
+
- lib/netsuite/records/cash_refund.rb
|
|
193
|
+
- lib/netsuite/records/cash_refund_item.rb
|
|
194
|
+
- lib/netsuite/records/cash_refund_item_list.rb
|
|
195
|
+
- lib/netsuite/records/cash_sale.rb
|
|
196
|
+
- lib/netsuite/records/cash_sale_item.rb
|
|
197
|
+
- lib/netsuite/records/cash_sale_item_list.rb
|
|
198
|
+
- lib/netsuite/records/classification.rb
|
|
199
|
+
- lib/netsuite/records/contact.rb
|
|
200
|
+
- lib/netsuite/records/contact_access_roles.rb
|
|
201
|
+
- lib/netsuite/records/contact_access_roles_list.rb
|
|
202
|
+
- lib/netsuite/records/contact_addressbook.rb
|
|
203
|
+
- lib/netsuite/records/contact_addressbook_list.rb
|
|
204
|
+
- lib/netsuite/records/contact_list.rb
|
|
205
|
+
- lib/netsuite/records/contact_role.rb
|
|
206
|
+
- lib/netsuite/records/cost_category.rb
|
|
207
|
+
- lib/netsuite/records/credit_memo.rb
|
|
208
|
+
- lib/netsuite/records/credit_memo_apply.rb
|
|
209
|
+
- lib/netsuite/records/credit_memo_apply_list.rb
|
|
210
|
+
- lib/netsuite/records/credit_memo_item.rb
|
|
211
|
+
- lib/netsuite/records/credit_memo_item_list.rb
|
|
212
|
+
- lib/netsuite/records/currency.rb
|
|
213
|
+
- lib/netsuite/records/currency_rate.rb
|
|
214
|
+
- lib/netsuite/records/custom_field.rb
|
|
215
|
+
- lib/netsuite/records/custom_field_list.rb
|
|
216
|
+
- lib/netsuite/records/custom_list.rb
|
|
217
|
+
- lib/netsuite/records/custom_list_custom_value.rb
|
|
218
|
+
- lib/netsuite/records/custom_list_custom_value_list.rb
|
|
219
|
+
- lib/netsuite/records/custom_record.rb
|
|
220
|
+
- lib/netsuite/records/custom_record_ref.rb
|
|
221
|
+
- lib/netsuite/records/custom_record_type.rb
|
|
222
|
+
- lib/netsuite/records/customer.rb
|
|
223
|
+
- lib/netsuite/records/customer_addressbook.rb
|
|
224
|
+
- lib/netsuite/records/customer_addressbook_list.rb
|
|
225
|
+
- lib/netsuite/records/customer_category.rb
|
|
226
|
+
- lib/netsuite/records/customer_credit_cards.rb
|
|
227
|
+
- lib/netsuite/records/customer_credit_cards_list.rb
|
|
228
|
+
- lib/netsuite/records/customer_currency.rb
|
|
229
|
+
- lib/netsuite/records/customer_currency_list.rb
|
|
230
|
+
- lib/netsuite/records/customer_deposit.rb
|
|
231
|
+
- lib/netsuite/records/customer_deposit_apply.rb
|
|
232
|
+
- lib/netsuite/records/customer_deposit_apply_list.rb
|
|
233
|
+
- lib/netsuite/records/customer_partner.rb
|
|
234
|
+
- lib/netsuite/records/customer_partners_list.rb
|
|
235
|
+
- lib/netsuite/records/customer_payment.rb
|
|
236
|
+
- lib/netsuite/records/customer_payment_apply.rb
|
|
237
|
+
- lib/netsuite/records/customer_payment_apply_list.rb
|
|
238
|
+
- lib/netsuite/records/customer_payment_credit.rb
|
|
239
|
+
- lib/netsuite/records/customer_payment_credit_list.rb
|
|
240
|
+
- lib/netsuite/records/customer_refund.rb
|
|
241
|
+
- lib/netsuite/records/customer_refund_apply.rb
|
|
242
|
+
- lib/netsuite/records/customer_refund_apply_list.rb
|
|
243
|
+
- lib/netsuite/records/customer_refund_deposit.rb
|
|
244
|
+
- lib/netsuite/records/customer_refund_deposit_list.rb
|
|
245
|
+
- lib/netsuite/records/customer_sales_team.rb
|
|
246
|
+
- lib/netsuite/records/customer_sales_team_list.rb
|
|
247
|
+
- lib/netsuite/records/customer_status.rb
|
|
248
|
+
- lib/netsuite/records/department.rb
|
|
249
|
+
- lib/netsuite/records/deposit.rb
|
|
250
|
+
- lib/netsuite/records/deposit_application.rb
|
|
251
|
+
- lib/netsuite/records/deposit_cash_back.rb
|
|
252
|
+
- lib/netsuite/records/deposit_cash_back_list.rb
|
|
253
|
+
- lib/netsuite/records/deposit_other.rb
|
|
254
|
+
- lib/netsuite/records/deposit_other_list.rb
|
|
255
|
+
- lib/netsuite/records/deposit_payment.rb
|
|
256
|
+
- lib/netsuite/records/deposit_payment_list.rb
|
|
257
|
+
- lib/netsuite/records/description_item.rb
|
|
258
|
+
- lib/netsuite/records/discount_item.rb
|
|
259
|
+
- lib/netsuite/records/duration.rb
|
|
260
|
+
- lib/netsuite/records/employee.rb
|
|
261
|
+
- lib/netsuite/records/entity_custom_field.rb
|
|
262
|
+
- lib/netsuite/records/estimate.rb
|
|
263
|
+
- lib/netsuite/records/estimate_item.rb
|
|
264
|
+
- lib/netsuite/records/estimate_item_list.rb
|
|
265
|
+
- lib/netsuite/records/file.rb
|
|
266
|
+
- lib/netsuite/records/folder.rb
|
|
267
|
+
- lib/netsuite/records/gift_cert_redemption.rb
|
|
268
|
+
- lib/netsuite/records/gift_cert_redemption_list.rb
|
|
269
|
+
- lib/netsuite/records/gift_certificate.rb
|
|
270
|
+
- lib/netsuite/records/gift_certificate_item.rb
|
|
271
|
+
- lib/netsuite/records/inbound_shipment.rb
|
|
272
|
+
- lib/netsuite/records/inbound_shipment_item.rb
|
|
273
|
+
- lib/netsuite/records/inbound_shipment_item_list.rb
|
|
274
|
+
- lib/netsuite/records/inter_company_journal_entry.rb
|
|
275
|
+
- lib/netsuite/records/inter_company_journal_entry_line.rb
|
|
276
|
+
- lib/netsuite/records/inter_company_journal_entry_line_list.rb
|
|
277
|
+
- lib/netsuite/records/inventory_adjustment.rb
|
|
278
|
+
- lib/netsuite/records/inventory_adjustment_inventory.rb
|
|
279
|
+
- lib/netsuite/records/inventory_adjustment_inventory_list.rb
|
|
280
|
+
- lib/netsuite/records/inventory_assignment.rb
|
|
281
|
+
- lib/netsuite/records/inventory_assignment_list.rb
|
|
282
|
+
- lib/netsuite/records/inventory_detail.rb
|
|
283
|
+
- lib/netsuite/records/inventory_item.rb
|
|
284
|
+
- lib/netsuite/records/inventory_number.rb
|
|
285
|
+
- lib/netsuite/records/inventory_number_locations.rb
|
|
286
|
+
- lib/netsuite/records/inventory_number_locations_list.rb
|
|
287
|
+
- lib/netsuite/records/inventory_transfer.rb
|
|
288
|
+
- lib/netsuite/records/inventory_transfer_inventory.rb
|
|
289
|
+
- lib/netsuite/records/inventory_transfer_inventory_list.rb
|
|
290
|
+
- lib/netsuite/records/invoice.rb
|
|
291
|
+
- lib/netsuite/records/invoice_item.rb
|
|
292
|
+
- lib/netsuite/records/invoice_item_list.rb
|
|
293
|
+
- lib/netsuite/records/item_availability.rb
|
|
294
|
+
- lib/netsuite/records/item_fulfillment.rb
|
|
295
|
+
- lib/netsuite/records/item_fulfillment_item.rb
|
|
296
|
+
- lib/netsuite/records/item_fulfillment_item_list.rb
|
|
297
|
+
- lib/netsuite/records/item_fulfillment_package.rb
|
|
298
|
+
- lib/netsuite/records/item_fulfillment_package_fed_ex.rb
|
|
299
|
+
- lib/netsuite/records/item_fulfillment_package_fed_ex_list.rb
|
|
300
|
+
- lib/netsuite/records/item_fulfillment_package_list.rb
|
|
301
|
+
- lib/netsuite/records/item_fulfillment_package_ups.rb
|
|
302
|
+
- lib/netsuite/records/item_fulfillment_package_ups_list.rb
|
|
303
|
+
- lib/netsuite/records/item_fulfillment_package_usps.rb
|
|
304
|
+
- lib/netsuite/records/item_fulfillment_package_usps_list.rb
|
|
305
|
+
- lib/netsuite/records/item_group.rb
|
|
306
|
+
- lib/netsuite/records/item_member.rb
|
|
307
|
+
- lib/netsuite/records/item_member_list.rb
|
|
308
|
+
- lib/netsuite/records/item_option_custom_field.rb
|
|
309
|
+
- lib/netsuite/records/item_receipt.rb
|
|
310
|
+
- lib/netsuite/records/item_receipt_item.rb
|
|
311
|
+
- lib/netsuite/records/item_receipt_item_list.rb
|
|
312
|
+
- lib/netsuite/records/item_vendor.rb
|
|
313
|
+
- lib/netsuite/records/item_vendor_list.rb
|
|
314
|
+
- lib/netsuite/records/job.rb
|
|
315
|
+
- lib/netsuite/records/job_status.rb
|
|
316
|
+
- lib/netsuite/records/journal_entry.rb
|
|
317
|
+
- lib/netsuite/records/journal_entry_line.rb
|
|
318
|
+
- lib/netsuite/records/journal_entry_line_list.rb
|
|
319
|
+
- lib/netsuite/records/kit_item.rb
|
|
320
|
+
- lib/netsuite/records/location.rb
|
|
321
|
+
- lib/netsuite/records/locations_list.rb
|
|
322
|
+
- lib/netsuite/records/lot_numbered_assembly_item.rb
|
|
323
|
+
- lib/netsuite/records/lot_numbered_inventory_item.rb
|
|
324
|
+
- lib/netsuite/records/matrix_option_list.rb
|
|
325
|
+
- lib/netsuite/records/member_list.rb
|
|
326
|
+
- lib/netsuite/records/message.rb
|
|
327
|
+
- lib/netsuite/records/non_inventory_purchase_item.rb
|
|
328
|
+
- lib/netsuite/records/non_inventory_resale_item.rb
|
|
329
|
+
- lib/netsuite/records/non_inventory_sale_item.rb
|
|
330
|
+
- lib/netsuite/records/note.rb
|
|
331
|
+
- lib/netsuite/records/note_type.rb
|
|
332
|
+
- lib/netsuite/records/null_field_list.rb
|
|
333
|
+
- lib/netsuite/records/opportunity.rb
|
|
334
|
+
- lib/netsuite/records/opportunity_item.rb
|
|
335
|
+
- lib/netsuite/records/opportunity_item_list.rb
|
|
336
|
+
- lib/netsuite/records/other_charge_sale_item.rb
|
|
337
|
+
- lib/netsuite/records/partner.rb
|
|
338
|
+
- lib/netsuite/records/payment_item.rb
|
|
339
|
+
- lib/netsuite/records/payment_method.rb
|
|
340
|
+
- lib/netsuite/records/payroll_item.rb
|
|
341
|
+
- lib/netsuite/records/phone_call.rb
|
|
342
|
+
- lib/netsuite/records/price.rb
|
|
343
|
+
- lib/netsuite/records/price_level.rb
|
|
344
|
+
- lib/netsuite/records/price_list.rb
|
|
345
|
+
- lib/netsuite/records/pricing.rb
|
|
346
|
+
- lib/netsuite/records/pricing_matrix.rb
|
|
347
|
+
- lib/netsuite/records/promotion_code.rb
|
|
348
|
+
- lib/netsuite/records/promotions.rb
|
|
349
|
+
- lib/netsuite/records/promotions_list.rb
|
|
350
|
+
- lib/netsuite/records/purchase_order.rb
|
|
351
|
+
- lib/netsuite/records/purchase_order_item.rb
|
|
352
|
+
- lib/netsuite/records/purchase_order_item_list.rb
|
|
353
|
+
- lib/netsuite/records/record_ref.rb
|
|
354
|
+
- lib/netsuite/records/record_ref_list.rb
|
|
355
|
+
- lib/netsuite/records/return_authorization.rb
|
|
356
|
+
- lib/netsuite/records/return_authorization_item.rb
|
|
357
|
+
- lib/netsuite/records/return_authorization_item_list.rb
|
|
358
|
+
- lib/netsuite/records/rev_rec_schedule.rb
|
|
359
|
+
- lib/netsuite/records/rev_rec_template.rb
|
|
360
|
+
- lib/netsuite/records/role_list.rb
|
|
361
|
+
- lib/netsuite/records/roles.rb
|
|
362
|
+
- lib/netsuite/records/sales_order.rb
|
|
363
|
+
- lib/netsuite/records/sales_order_item.rb
|
|
364
|
+
- lib/netsuite/records/sales_order_item_list.rb
|
|
365
|
+
- lib/netsuite/records/sales_order_ship_group_list.rb
|
|
366
|
+
- lib/netsuite/records/sales_role.rb
|
|
367
|
+
- lib/netsuite/records/sales_tax_item.rb
|
|
368
|
+
- lib/netsuite/records/serialized_assembly_item.rb
|
|
369
|
+
- lib/netsuite/records/serialized_inventory_item.rb
|
|
370
|
+
- lib/netsuite/records/serialized_inventory_item_location.rb
|
|
371
|
+
- lib/netsuite/records/serialized_inventory_item_locations_list.rb
|
|
372
|
+
- lib/netsuite/records/serialized_inventory_item_numbers.rb
|
|
373
|
+
- lib/netsuite/records/serialized_inventory_item_numbers_list.rb
|
|
374
|
+
- lib/netsuite/records/service_resale_item.rb
|
|
375
|
+
- lib/netsuite/records/service_sale_item.rb
|
|
376
|
+
- lib/netsuite/records/ship_address.rb
|
|
377
|
+
- lib/netsuite/records/site_category.rb
|
|
378
|
+
- lib/netsuite/records/subscription.rb
|
|
379
|
+
- lib/netsuite/records/subscriptions_list.rb
|
|
380
|
+
- lib/netsuite/records/subsidiary.rb
|
|
381
|
+
- lib/netsuite/records/subtotal_item.rb
|
|
382
|
+
- lib/netsuite/records/support_case.rb
|
|
383
|
+
- lib/netsuite/records/support_case_type.rb
|
|
384
|
+
- lib/netsuite/records/task.rb
|
|
385
|
+
- lib/netsuite/records/tax_group.rb
|
|
386
|
+
- lib/netsuite/records/tax_type.rb
|
|
387
|
+
- lib/netsuite/records/term.rb
|
|
388
|
+
- lib/netsuite/records/time_bill.rb
|
|
389
|
+
- lib/netsuite/records/transaction_body_custom_field.rb
|
|
390
|
+
- lib/netsuite/records/transaction_column_custom_field.rb
|
|
391
|
+
- lib/netsuite/records/transaction_ship_group.rb
|
|
392
|
+
- lib/netsuite/records/transfer_order.rb
|
|
393
|
+
- lib/netsuite/records/transfer_order_item.rb
|
|
394
|
+
- lib/netsuite/records/transfer_order_item_list.rb
|
|
395
|
+
- lib/netsuite/records/translation.rb
|
|
396
|
+
- lib/netsuite/records/translation_list.rb
|
|
397
|
+
- lib/netsuite/records/units_type.rb
|
|
398
|
+
- lib/netsuite/records/units_type_uom.rb
|
|
399
|
+
- lib/netsuite/records/units_type_uom_list.rb
|
|
400
|
+
- lib/netsuite/records/vendor.rb
|
|
401
|
+
- lib/netsuite/records/vendor_bill.rb
|
|
402
|
+
- lib/netsuite/records/vendor_bill_expense.rb
|
|
403
|
+
- lib/netsuite/records/vendor_bill_expense_list.rb
|
|
404
|
+
- lib/netsuite/records/vendor_bill_item.rb
|
|
405
|
+
- lib/netsuite/records/vendor_bill_item_list.rb
|
|
406
|
+
- lib/netsuite/records/vendor_category.rb
|
|
407
|
+
- lib/netsuite/records/vendor_credit.rb
|
|
408
|
+
- lib/netsuite/records/vendor_credit_apply.rb
|
|
409
|
+
- lib/netsuite/records/vendor_credit_apply_list.rb
|
|
410
|
+
- lib/netsuite/records/vendor_credit_expense.rb
|
|
411
|
+
- lib/netsuite/records/vendor_credit_expense_list.rb
|
|
412
|
+
- lib/netsuite/records/vendor_credit_item.rb
|
|
413
|
+
- lib/netsuite/records/vendor_credit_item_list.rb
|
|
414
|
+
- lib/netsuite/records/vendor_currency.rb
|
|
415
|
+
- lib/netsuite/records/vendor_currency_list.rb
|
|
416
|
+
- lib/netsuite/records/vendor_payment.rb
|
|
417
|
+
- lib/netsuite/records/vendor_payment_apply.rb
|
|
418
|
+
- lib/netsuite/records/vendor_payment_apply_list.rb
|
|
419
|
+
- lib/netsuite/records/vendor_return_authorization.rb
|
|
420
|
+
- lib/netsuite/records/vendor_return_authorization_item.rb
|
|
421
|
+
- lib/netsuite/records/vendor_return_authorization_item_list.rb
|
|
422
|
+
- lib/netsuite/records/work_order.rb
|
|
423
|
+
- lib/netsuite/records/work_order_item.rb
|
|
424
|
+
- lib/netsuite/records/work_order_item_list.rb
|
|
425
|
+
- lib/netsuite/response.rb
|
|
426
|
+
- lib/netsuite/rest/utilities/request.rb
|
|
427
|
+
- lib/netsuite/rest/utilities/roles.rb
|
|
428
|
+
- lib/netsuite/support/actions.rb
|
|
429
|
+
- lib/netsuite/support/attributes.rb
|
|
430
|
+
- lib/netsuite/support/country.rb
|
|
431
|
+
- lib/netsuite/support/fields.rb
|
|
432
|
+
- lib/netsuite/support/record_refs.rb
|
|
433
|
+
- lib/netsuite/support/records.rb
|
|
434
|
+
- lib/netsuite/support/requests.rb
|
|
435
|
+
- lib/netsuite/support/search_result.rb
|
|
436
|
+
- lib/netsuite/support/sublist.rb
|
|
437
|
+
- lib/netsuite/utilities.rb
|
|
438
|
+
- lib/netsuite/utilities/data_center.rb
|
|
439
|
+
- lib/netsuite/utilities/strings.rb
|
|
440
|
+
- lib/netsuite/version.rb
|
|
441
|
+
- netsuite.gemspec
|
|
442
|
+
- spec/integration/soap_http_spec.rb
|
|
443
|
+
- spec/netsuite/actions/add_spec.rb
|
|
444
|
+
- spec/netsuite/actions/async_add_list_spec.rb
|
|
445
|
+
- spec/netsuite/actions/async_delete_list_spec.rb
|
|
446
|
+
- spec/netsuite/actions/async_get_list_spec.rb
|
|
447
|
+
- spec/netsuite/actions/async_initialize_list_spec.rb
|
|
448
|
+
- spec/netsuite/actions/async_lifecycle_spec.rb
|
|
449
|
+
- spec/netsuite/actions/async_response_spec.rb
|
|
450
|
+
- spec/netsuite/actions/async_search_spec.rb
|
|
451
|
+
- spec/netsuite/actions/async_update_list_spec.rb
|
|
452
|
+
- spec/netsuite/actions/async_upsert_list_spec.rb
|
|
453
|
+
- spec/netsuite/actions/attach_file_spec.rb
|
|
454
|
+
- spec/netsuite/actions/check_async_status_spec.rb
|
|
455
|
+
- spec/netsuite/actions/delete_list_spec.rb
|
|
456
|
+
- spec/netsuite/actions/delete_spec.rb
|
|
457
|
+
- spec/netsuite/actions/get_all_spec.rb
|
|
458
|
+
- spec/netsuite/actions/get_async_result_spec.rb
|
|
459
|
+
- spec/netsuite/actions/get_deleted_spec.rb
|
|
460
|
+
- spec/netsuite/actions/get_list_spec.rb
|
|
461
|
+
- spec/netsuite/actions/get_select_value_spec.rb
|
|
462
|
+
- spec/netsuite/actions/get_spec.rb
|
|
463
|
+
- spec/netsuite/actions/initialize_spec.rb
|
|
464
|
+
- spec/netsuite/actions/search_spec.rb
|
|
465
|
+
- spec/netsuite/actions/update_list_spec.rb
|
|
466
|
+
- spec/netsuite/actions/update_spec.rb
|
|
467
|
+
- spec/netsuite/actions/upsert_list_spec.rb
|
|
468
|
+
- spec/netsuite/actions/upsert_spec.rb
|
|
469
|
+
- spec/netsuite/configuration_spec.rb
|
|
470
|
+
- spec/netsuite/records/account_spec.rb
|
|
471
|
+
- spec/netsuite/records/accounting_period_spec.rb
|
|
472
|
+
- spec/netsuite/records/address_spec.rb
|
|
473
|
+
- spec/netsuite/records/assembly_item_spec.rb
|
|
474
|
+
- spec/netsuite/records/basic_record_spec.rb
|
|
475
|
+
- spec/netsuite/records/bill_address_spec.rb
|
|
476
|
+
- spec/netsuite/records/billing_schedule_milestone_list_spec.rb
|
|
477
|
+
- spec/netsuite/records/billing_schedule_milestone_spec.rb
|
|
478
|
+
- spec/netsuite/records/billing_schedule_recurrence_list_spec.rb
|
|
479
|
+
- spec/netsuite/records/billing_schedule_recurrence_spec.rb
|
|
480
|
+
- spec/netsuite/records/billing_schedule_spec.rb
|
|
481
|
+
- spec/netsuite/records/bin_number_spec.rb
|
|
482
|
+
- spec/netsuite/records/campaign_spec.rb
|
|
483
|
+
- spec/netsuite/records/cash_refund_item_list_spec.rb
|
|
484
|
+
- spec/netsuite/records/cash_refund_item_spec.rb
|
|
485
|
+
- spec/netsuite/records/cash_refund_spec.rb
|
|
486
|
+
- spec/netsuite/records/cash_sale_item_list_spec.rb
|
|
487
|
+
- spec/netsuite/records/cash_sale_item_spec.rb
|
|
488
|
+
- spec/netsuite/records/cash_sale_spec.rb
|
|
489
|
+
- spec/netsuite/records/classification_spec.rb
|
|
490
|
+
- spec/netsuite/records/cost_category_spec.rb
|
|
491
|
+
- spec/netsuite/records/credit_memo_apply_list_spec.rb
|
|
492
|
+
- spec/netsuite/records/credit_memo_apply_spec.rb
|
|
493
|
+
- spec/netsuite/records/credit_memo_item_list_spec.rb
|
|
494
|
+
- spec/netsuite/records/credit_memo_item_spec.rb
|
|
495
|
+
- spec/netsuite/records/credit_memo_spec.rb
|
|
496
|
+
- spec/netsuite/records/currency_rate_spec.rb
|
|
497
|
+
- spec/netsuite/records/custom_field_list_spec.rb
|
|
498
|
+
- spec/netsuite/records/custom_list_spec.rb
|
|
499
|
+
- spec/netsuite/records/custom_record_spec.rb
|
|
500
|
+
- spec/netsuite/records/custom_record_type_spec.rb
|
|
501
|
+
- spec/netsuite/records/customer_addressbook_list_spec.rb
|
|
502
|
+
- spec/netsuite/records/customer_addressbook_spec.rb
|
|
503
|
+
- spec/netsuite/records/customer_credit_cards_list_spec.rb
|
|
504
|
+
- spec/netsuite/records/customer_payment_apply_list_spec.rb
|
|
505
|
+
- spec/netsuite/records/customer_payment_credit_list_spec.rb
|
|
506
|
+
- spec/netsuite/records/customer_payment_spec.rb
|
|
507
|
+
- spec/netsuite/records/customer_refund_apply_list_spec.rb
|
|
508
|
+
- spec/netsuite/records/customer_refund_apply_spec.rb
|
|
509
|
+
- spec/netsuite/records/customer_refund_deposit_list_spec.rb
|
|
510
|
+
- spec/netsuite/records/customer_refund_deposit_spec.rb
|
|
511
|
+
- spec/netsuite/records/customer_refund_spec.rb
|
|
512
|
+
- spec/netsuite/records/customer_sales_team_list_spec.rb
|
|
513
|
+
- spec/netsuite/records/customer_spec.rb
|
|
514
|
+
- spec/netsuite/records/department_spec.rb
|
|
515
|
+
- spec/netsuite/records/deposit_spec.rb
|
|
516
|
+
- spec/netsuite/records/discount_item_spec.rb
|
|
517
|
+
- spec/netsuite/records/duration_spec.rb
|
|
518
|
+
- spec/netsuite/records/employee_spec.rb
|
|
519
|
+
- spec/netsuite/records/entity_custom_field_spec.rb
|
|
520
|
+
- spec/netsuite/records/estimate_item_list_spec.rb
|
|
521
|
+
- spec/netsuite/records/estimate_item_spec.rb
|
|
522
|
+
- spec/netsuite/records/estimate_spec.rb
|
|
523
|
+
- spec/netsuite/records/file_spec.rb
|
|
524
|
+
- spec/netsuite/records/folder_spec.rb
|
|
525
|
+
- spec/netsuite/records/gift_cert_redemption_list_spec.rb
|
|
526
|
+
- spec/netsuite/records/gift_cert_redemption_spec.rb
|
|
527
|
+
- spec/netsuite/records/inter_company_journal_entry_line_list_spec.rb
|
|
528
|
+
- spec/netsuite/records/inter_company_journal_entry_line_spec.rb
|
|
529
|
+
- spec/netsuite/records/inter_company_journal_entry_spec.rb
|
|
530
|
+
- spec/netsuite/records/inventory_assignment_list_spec.rb
|
|
531
|
+
- spec/netsuite/records/inventory_assignment_spec.rb
|
|
532
|
+
- spec/netsuite/records/inventory_detail_spec.rb
|
|
533
|
+
- spec/netsuite/records/inventory_item_spec.rb
|
|
534
|
+
- spec/netsuite/records/inventory_transfer_spec.rb
|
|
535
|
+
- spec/netsuite/records/invoice_item_list_spec.rb
|
|
536
|
+
- spec/netsuite/records/invoice_item_spec.rb
|
|
537
|
+
- spec/netsuite/records/invoice_spec.rb
|
|
538
|
+
- spec/netsuite/records/item_availability_spec.rb
|
|
539
|
+
- spec/netsuite/records/item_fulfillment_package_fed_ex_list_spec.rb
|
|
540
|
+
- spec/netsuite/records/item_fulfillment_package_list_spec.rb
|
|
541
|
+
- spec/netsuite/records/item_fulfillment_package_ups_list_spec.rb
|
|
542
|
+
- spec/netsuite/records/item_fulfillment_package_usps_list_spec.rb
|
|
543
|
+
- spec/netsuite/records/item_fulfillment_spec.rb
|
|
544
|
+
- spec/netsuite/records/item_group_spec.rb
|
|
545
|
+
- spec/netsuite/records/item_member_list_spec.rb
|
|
546
|
+
- spec/netsuite/records/item_option_custom_field_spec.rb
|
|
547
|
+
- spec/netsuite/records/item_vendor_list_spec.rb
|
|
548
|
+
- spec/netsuite/records/item_vendor_spec.rb
|
|
549
|
+
- spec/netsuite/records/job_spec.rb
|
|
550
|
+
- spec/netsuite/records/journal_entry_line_list_spec.rb
|
|
551
|
+
- spec/netsuite/records/journal_entry_line_spec.rb
|
|
552
|
+
- spec/netsuite/records/journal_entry_spec.rb
|
|
553
|
+
- spec/netsuite/records/kit_item_spec.rb
|
|
554
|
+
- spec/netsuite/records/location_spec.rb
|
|
555
|
+
- spec/netsuite/records/lot_numbered_inventory_item_spec.rb
|
|
556
|
+
- spec/netsuite/records/matrix_option_list_spec.rb
|
|
557
|
+
- spec/netsuite/records/message_spec.rb
|
|
558
|
+
- spec/netsuite/records/non_inventory_resale_item_spec.rb
|
|
559
|
+
- spec/netsuite/records/non_inventory_sale_item_spec.rb
|
|
560
|
+
- spec/netsuite/records/note_spec.rb
|
|
561
|
+
- spec/netsuite/records/note_type_spec.rb
|
|
562
|
+
- spec/netsuite/records/null_field_list_spec.rb
|
|
563
|
+
- spec/netsuite/records/partner_spec.rb
|
|
564
|
+
- spec/netsuite/records/payment_item_spec.rb
|
|
565
|
+
- spec/netsuite/records/payment_method_spec.rb
|
|
566
|
+
- spec/netsuite/records/phone_call_spec.rb
|
|
567
|
+
- spec/netsuite/records/pomo_code_spec.rb
|
|
568
|
+
- spec/netsuite/records/price_level_spec.rb
|
|
569
|
+
- spec/netsuite/records/pricing_matrix_spec.rb
|
|
570
|
+
- spec/netsuite/records/record_ref_spec.rb
|
|
571
|
+
- spec/netsuite/records/return_authorization_item_list_spec.rb
|
|
572
|
+
- spec/netsuite/records/return_authorization_item_spec.rb
|
|
573
|
+
- spec/netsuite/records/return_authorization_spec.rb
|
|
574
|
+
- spec/netsuite/records/rev_rec_template_spec.rb
|
|
575
|
+
- spec/netsuite/records/sales_order_item_list_spec.rb
|
|
576
|
+
- spec/netsuite/records/sales_order_item_spec.rb
|
|
577
|
+
- spec/netsuite/records/sales_order_spec.rb
|
|
578
|
+
- spec/netsuite/records/sales_tax_item_spec.rb
|
|
579
|
+
- spec/netsuite/records/service_resale_item_spec.rb
|
|
580
|
+
- spec/netsuite/records/service_sale_item_spec.rb
|
|
581
|
+
- spec/netsuite/records/ship_address_spec.rb
|
|
582
|
+
- spec/netsuite/records/site_category_spec.rb
|
|
583
|
+
- spec/netsuite/records/subscription_spec.rb
|
|
584
|
+
- spec/netsuite/records/subscriptions_list_spec.rb
|
|
585
|
+
- spec/netsuite/records/subsidiary_spec.rb
|
|
586
|
+
- spec/netsuite/records/support_case_spec.rb
|
|
587
|
+
- spec/netsuite/records/support_case_type_spec.rb
|
|
588
|
+
- spec/netsuite/records/tax_type_spec.rb
|
|
589
|
+
- spec/netsuite/records/term_spec.rb
|
|
590
|
+
- spec/netsuite/records/transaction_body_custom_field_spec.rb
|
|
591
|
+
- spec/netsuite/records/transaction_column_custom_field_spec.rb
|
|
592
|
+
- spec/netsuite/records/translation_list_spec.rb
|
|
593
|
+
- spec/netsuite/records/translation_spec.rb
|
|
594
|
+
- spec/netsuite/records/units_type_spec.rb
|
|
595
|
+
- spec/netsuite/records/units_type_uom_list_spec.rb
|
|
596
|
+
- spec/netsuite/records/units_type_uom_spec.rb
|
|
597
|
+
- spec/netsuite/records/vendor_bill_expense_list_spec.rb
|
|
598
|
+
- spec/netsuite/records/vendor_bill_expense_spec.rb
|
|
599
|
+
- spec/netsuite/records/vendor_bill_item_list_spec.rb
|
|
600
|
+
- spec/netsuite/records/vendor_bill_item_spec.rb
|
|
601
|
+
- spec/netsuite/records/vendor_bill_spec.rb
|
|
602
|
+
- spec/netsuite/records/vendor_credit_spec.rb
|
|
603
|
+
- spec/netsuite/records/vendor_payment_apply_list_spec.rb
|
|
604
|
+
- spec/netsuite/records/vendor_payment_apply_spec.rb
|
|
605
|
+
- spec/netsuite/records/vendor_payment_spec.rb
|
|
606
|
+
- spec/netsuite/records/vendor_spec.rb
|
|
607
|
+
- spec/netsuite/records/work_order_item_list_spec.rb
|
|
608
|
+
- spec/netsuite/records/work_order_item_spec.rb
|
|
609
|
+
- spec/netsuite/records/work_order_spec.rb
|
|
610
|
+
- spec/netsuite/response_spec.rb
|
|
611
|
+
- spec/netsuite/support/fields_spec.rb
|
|
612
|
+
- spec/netsuite/support/record_refs_spec.rb
|
|
613
|
+
- spec/netsuite/support/records_spec.rb
|
|
614
|
+
- spec/netsuite/support/refresh_spec.rb
|
|
615
|
+
- spec/netsuite/support/requests_spec.rb
|
|
616
|
+
- spec/netsuite/support/search_result_spec.rb
|
|
617
|
+
- spec/netsuite/support/sublist_spec.rb
|
|
618
|
+
- spec/netsuite/utilities/data_center_spec.rb
|
|
619
|
+
- spec/netsuite/utilities/request_spec.rb
|
|
620
|
+
- spec/netsuite/utilities/roles_spec.rb
|
|
621
|
+
- spec/netsuite/utilities_spec.rb
|
|
622
|
+
- spec/netsuite_spec.rb
|
|
623
|
+
- spec/spec_helper.rb
|
|
624
|
+
- spec/support/configuration.rb
|
|
625
|
+
- spec/support/field_matcher.rb
|
|
626
|
+
- spec/support/fixtures/add/add_customer.xml
|
|
627
|
+
- spec/support/fixtures/add/add_file.xml
|
|
628
|
+
- spec/support/fixtures/add/add_invoice.xml
|
|
629
|
+
- spec/support/fixtures/add/add_invoice_error.xml
|
|
630
|
+
- spec/support/fixtures/add/add_invoice_multiple_errors.xml
|
|
631
|
+
- spec/support/fixtures/async_add_list/async_add_list_pending.xml
|
|
632
|
+
- spec/support/fixtures/async_delete_list/async_delete_list_pending.xml
|
|
633
|
+
- spec/support/fixtures/async_get_list/async_get_list_pending.xml
|
|
634
|
+
- spec/support/fixtures/async_initialize_list/async_initialize_list_pending.xml
|
|
635
|
+
- spec/support/fixtures/async_search/async_search_pending.xml
|
|
636
|
+
- spec/support/fixtures/async_update_list/async_update_list_pending.xml
|
|
637
|
+
- spec/support/fixtures/async_upsert_list/async_upsert_list_customers.xml
|
|
638
|
+
- spec/support/fixtures/async_upsert_list/async_upsert_list_one_customer.xml
|
|
639
|
+
- spec/support/fixtures/async_upsert_list/async_upsert_list_with_errors.xml
|
|
640
|
+
- spec/support/fixtures/attach/attach_file_to_sales_order.xml
|
|
641
|
+
- spec/support/fixtures/attach/attach_file_to_sales_order_error.xml
|
|
642
|
+
- spec/support/fixtures/check_async_status/check_async_status_pending.xml
|
|
643
|
+
- spec/support/fixtures/custom_fields/multi_select.xml
|
|
644
|
+
- spec/support/fixtures/delete/delete_customer.xml
|
|
645
|
+
- spec/support/fixtures/delete/delete_customer_error.xml
|
|
646
|
+
- spec/support/fixtures/delete/delete_customer_multiple_errors.xml
|
|
647
|
+
- spec/support/fixtures/delete_list/delete_list_customers.xml
|
|
648
|
+
- spec/support/fixtures/delete_list/delete_list_customers_with_errors.xml
|
|
649
|
+
- spec/support/fixtures/get/get_customer.xml
|
|
650
|
+
- spec/support/fixtures/get/get_invoice.xml
|
|
651
|
+
- spec/support/fixtures/get_all/get_all_currencies.xml
|
|
652
|
+
- spec/support/fixtures/get_all/get_all_error.xml
|
|
653
|
+
- spec/support/fixtures/get_async_result/get_async_result_finished.xml
|
|
654
|
+
- spec/support/fixtures/get_async_result/get_async_result_upsert_list_finished.xml
|
|
655
|
+
- spec/support/fixtures/get_async_result/get_async_result_write_list_multiple.xml
|
|
656
|
+
- spec/support/fixtures/get_deleted/get_deleted_invoices.xml
|
|
657
|
+
- spec/support/fixtures/get_item_availability/get_item_availability.xml
|
|
658
|
+
- spec/support/fixtures/get_list/get_list_customer_error.xml
|
|
659
|
+
- spec/support/fixtures/get_list/get_list_customers.xml
|
|
660
|
+
- spec/support/fixtures/get_list/get_list_customers_multiple.xml
|
|
661
|
+
- spec/support/fixtures/get_select_value/empty_result.xml
|
|
662
|
+
- spec/support/fixtures/get_select_value/item_fulfillment_ship_method.xml
|
|
663
|
+
- spec/support/fixtures/initialize/initialize_invoice_from_customer.xml
|
|
664
|
+
- spec/support/fixtures/login/failure_concurrent_requests.xml
|
|
665
|
+
- spec/support/fixtures/login/failure_invalid_credentials.xml
|
|
666
|
+
- spec/support/fixtures/login/success.xml
|
|
667
|
+
- spec/support/fixtures/search/basic_search_contact.xml
|
|
668
|
+
- spec/support/fixtures/search/saved_search_customer.xml
|
|
669
|
+
- spec/support/fixtures/search/saved_search_item.xml
|
|
670
|
+
- spec/support/fixtures/search/saved_search_joined_custom_customer.xml
|
|
671
|
+
- spec/support/fixtures/search/single_search_result.xml
|
|
672
|
+
- spec/support/fixtures/soap/v2025_2_0/wsdl/netsuite.wsdl
|
|
673
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/activities/scheduling.xsd
|
|
674
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/activities/schedulingTypes.xsd
|
|
675
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/documents/fileCabinet.xsd
|
|
676
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/documents/fileCabinetTypes.xsd
|
|
677
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/general/communication.xsd
|
|
678
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/general/communicationTypes.xsd
|
|
679
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/lists/accounting.xsd
|
|
680
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/lists/accountingTypes.xsd
|
|
681
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/lists/employeeTypes.xsd
|
|
682
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/lists/employees.xsd
|
|
683
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/lists/marketing.xsd
|
|
684
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/lists/marketingTypes.xsd
|
|
685
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/lists/relationshipTypes.xsd
|
|
686
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/lists/relationships.xsd
|
|
687
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/lists/supplyChain.xsd
|
|
688
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/lists/supplyChainTypes.xsd
|
|
689
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/lists/support.xsd
|
|
690
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/lists/supportTypes.xsd
|
|
691
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/lists/website.xsd
|
|
692
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/lists/websiteTypes.xsd
|
|
693
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/platform/common.xsd
|
|
694
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/platform/commonTypes.xsd
|
|
695
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/platform/core.xsd
|
|
696
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/platform/coreTypes.xsd
|
|
697
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/platform/faultTypes.xsd
|
|
698
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/platform/faults.xsd
|
|
699
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/platform/messages.xsd
|
|
700
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/setup/customization.xsd
|
|
701
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/setup/customizationTypes.xsd
|
|
702
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/transactions/bank.xsd
|
|
703
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/transactions/bankTypes.xsd
|
|
704
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/transactions/customerTypes.xsd
|
|
705
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/transactions/customers.xsd
|
|
706
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/transactions/demandPlanning.xsd
|
|
707
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/transactions/demandPlanningTypes.xsd
|
|
708
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/transactions/employeeTypes.xsd
|
|
709
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/transactions/employees.xsd
|
|
710
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/transactions/financial.xsd
|
|
711
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/transactions/financialTypes.xsd
|
|
712
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/transactions/general.xsd
|
|
713
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/transactions/inventory.xsd
|
|
714
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/transactions/inventoryTypes.xsd
|
|
715
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/transactions/purchaseTypes.xsd
|
|
716
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/transactions/purchases.xsd
|
|
717
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/transactions/saleTypes.xsd
|
|
718
|
+
- spec/support/fixtures/soap/v2025_2_0/xsd/transactions/sales.xsd
|
|
719
|
+
- spec/support/fixtures/update/update_customer.xml
|
|
720
|
+
- spec/support/fixtures/update/update_customer_error.xml
|
|
721
|
+
- spec/support/fixtures/update/update_customer_multiple_errors.xml
|
|
722
|
+
- spec/support/fixtures/update/update_invoice.xml
|
|
723
|
+
- spec/support/fixtures/update_list/update_list_items.xml
|
|
724
|
+
- spec/support/fixtures/update_list/update_list_one_item.xml
|
|
725
|
+
- spec/support/fixtures/update_list/update_list_with_errors.xml
|
|
726
|
+
- spec/support/fixtures/upsert/upsert_customer.xml
|
|
727
|
+
- spec/support/fixtures/upsert/upsert_invoice.xml
|
|
728
|
+
- spec/support/fixtures/upsert/upsert_invoice_error.xml
|
|
729
|
+
- spec/support/fixtures/upsert/upsert_invoice_multiple_errors.xml
|
|
730
|
+
- spec/support/fixtures/upsert_list/upsert_list_customers.xml
|
|
731
|
+
- spec/support/fixtures/upsert_list/upsert_list_one_customer.xml
|
|
732
|
+
- spec/support/fixtures/upsert_list/upsert_list_with_errors.xml
|
|
733
|
+
- spec/support/read_only_field_matcher.rb
|
|
734
|
+
- spec/support/record_ref_matcher.rb
|
|
735
|
+
- spec/support/savon.rb
|
|
736
|
+
- spec/support/search_only_field_matcher.rb
|
|
737
|
+
- spec/support/webmock_soap_helper.rb
|
|
738
|
+
- workflow.md
|
|
739
|
+
homepage: https://github.com/bdelanghe/netsuite
|
|
740
|
+
licenses:
|
|
741
|
+
- MIT
|
|
742
|
+
metadata:
|
|
743
|
+
changelog_uri: https://github.com/bdelanghe/netsuite/blob/main/HISTORY.md
|
|
744
|
+
mailing_list_uri: https://github.com/bdelanghe/netsuite/issues
|
|
745
|
+
rubygems_mfa_required: 'true'
|
|
746
|
+
github_repo: https://github.com/bdelanghe/netsuite
|
|
747
|
+
rdoc_options: []
|
|
748
|
+
require_paths:
|
|
749
|
+
- lib
|
|
750
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
751
|
+
requirements:
|
|
752
|
+
- - "~>"
|
|
753
|
+
- !ruby/object:Gem::Version
|
|
754
|
+
version: '3.4'
|
|
755
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
756
|
+
requirements:
|
|
757
|
+
- - ">="
|
|
758
|
+
- !ruby/object:Gem::Version
|
|
759
|
+
version: '0'
|
|
760
|
+
requirements: []
|
|
761
|
+
rubygems_version: 3.6.9
|
|
762
|
+
specification_version: 4
|
|
763
|
+
summary: NetSuite SuiteTalk SOAP v2025.2 wrapper with async list operations
|
|
764
|
+
test_files: []
|