We released White Server version 1.72.6 and White Server Agent version 2.10.3.9 dated April 1st, 2025.

  1. In the Aggregators section we added an Analytics tab. The report enables segmentation of aggregators by license type, number and types of requests
  2. We supported changing table numbers via the PatchOrder method

    Example request:

    {
    
        "taskType": "PatchOrder",
    
        "params": {
    
            "sync": {
    
                "objectId": "000000000",
    
                "timeout": 120
    
            },
    
            "orderGuid": "0bf84cf5-754c-4b60-9aa7-ef6b33d02be9",
    
            "fields":[
    
                { "name": "TableCode", "value": "2"}                   
    
            ]
    
        }
    
    }
    CODE
  3. We supported modifying booking intervals using the PatchOrder method

    Example request:

    {
    
        "taskType": "PatchOrder",
    
        "params": {
    
            "sync": {
    
                "objectId": "000000000",
    
                "timeout": 120
    
            },
    
            "orderGuid": "0bf84cf5-754c-4b60-9aa7-ef6b33d02be9",
    
            "fields":[
    
                { "name": "Booking", "value": "2025-08-09T14:52:28 16:50"}           
    
            ]
    
        }
    
    }
    CODE
  4. We enabled passing hall layout information in the GetRestaurantInfo method

    Example request:

    {
    
        "taskResponse": {
    
            "restaurant": {
    
                "guid": "fc1bbb36-4d7f-4ef9-80c2-33b78adbdb6a",
    
                "name": "Restaurant Name",
    
                "halls": [
    
                    {
    
                        "guid": "e8e2b0f2-974d-4461-bf02-0258f91769cc",
    
                        "name": "test hall layout",
    
                        "width": 400,
    
                        "height": 300,
    
                        "tables": [
    
                            {
    
                                "guid": "58aa3d61-e0e0-4abc-92f4-eae75e17b43e",
    
                                "code": 246,
    
                                "name": "2",
    
                                "seatsCount": 10,
    
                                "position": {
    
                                    "top": 97,
    
                                    "left": 301
    
                                }
    
                           },
    
                   ]
    
            }
    
        },
    
        "responseCommon": {
    
            "taskGuid": "0aaf7e4b-5875-468b-ae15-ca631fad4460",
    
            "taskType": "GetRestaurantInfo",
    
            "objectId": 000000000,
    
            "agentGuid": "d564619a-50c3-3d87-0816-de67ed9c8e18"
    
        }
    
    }
    CODE

     

  5. We optimized the employee directory query retrieval. In the agent configurator, automatic event reception Employee can now be turned on/off. By default, automatic event transmission is disabled. Events will only be sent upon modifications made in the personnel directory.