@@ -740,19 +740,16 @@ describe('QuickBooks tool and block boundaries', () => {
740740 it ( 'exposes the ten compact operations and unique subblock IDs' , ( ) => {
741741 const operation = QuickBooksBlock . subBlocks . find ( ( subBlock ) => subBlock . id === 'operation' )
742742 expect ( operation ?. options ) . toEqual ( [
743- { label : 'Company: Get Info' , id : 'quickbooks_get_company_info' } ,
744- { label : 'Master Data: Read' , id : 'quickbooks_read_master_data' } ,
745- { label : 'Customers: Create' , id : 'quickbooks_create_customer' } ,
746- { label : 'Customers: Update' , id : 'quickbooks_update_customer' } ,
747- { label : 'Vendors: Create' , id : 'quickbooks_create_vendor' } ,
748- { label : 'Vendors: Update' , id : 'quickbooks_update_vendor' } ,
749- { label : 'Items: Create' , id : 'quickbooks_create_item' } ,
750- { label : 'Items: Update' , id : 'quickbooks_update_item' } ,
751- {
752- label : 'Purchasing: List Purchase Orders' ,
753- id : 'quickbooks_list_purchase_orders' ,
754- } ,
755- { label : 'Payables: List Bills' , id : 'quickbooks_list_bills' } ,
743+ { label : 'Get Company Info' , id : 'quickbooks_get_company_info' } ,
744+ { label : 'Read Master Data' , id : 'quickbooks_read_master_data' } ,
745+ { label : 'Create Customer' , id : 'quickbooks_create_customer' } ,
746+ { label : 'Update Customer' , id : 'quickbooks_update_customer' } ,
747+ { label : 'Create Vendor' , id : 'quickbooks_create_vendor' } ,
748+ { label : 'Update Vendor' , id : 'quickbooks_update_vendor' } ,
749+ { label : 'Create Item' , id : 'quickbooks_create_item' } ,
750+ { label : 'Update Item' , id : 'quickbooks_update_item' } ,
751+ { label : 'List Purchase Orders' , id : 'quickbooks_list_purchase_orders' } ,
752+ { label : 'List Bills' , id : 'quickbooks_list_bills' } ,
756753 ] )
757754 const ids = QuickBooksBlock . subBlocks . map ( ( subBlock ) => subBlock . id )
758755 expect ( new Set ( ids ) . size ) . toBe ( ids . length )
0 commit comments