Sharing static card to G+ circles

We have a little nodejs app pushing a static card into the timeline through the Mirror API.

Once received, a Glass user is going to share the card with his or her Google+ circles. It worked quite well until, I think, the XE18.3 update, when the 'Share' Glass menu suddenly stopped showing G+ Circles as an option to share the card with.

Was this a planned modification to the API, and if so, what is considered now a recommended workflow to share a static card with G+ Circles? Or am I just doing something wrong?

Here is a little snipped how the card is created:

$c.google.auth(user.google_tokenRefresh, function (err, token) {
    if (err)
        return console.log("ERROR #3 in tracks.add at 'get access_token from google' : " + JSON.stringify(err));

    require('/node/node_modules/request').post({
        url : 'https://www.googleapis.com/upload/mirror/v1/timeline',
        qs : {
            uploadType : 'multipart'
        },
        headers : {
            'Authorization' : 'Bearer ' + token.access_token
        },
        multipart : [{
                'Content-Type' : 'application/json; charset=UTF-8',
                'body' : JSON.stringify({
                    menuItems : [{
                            action : 'SHARE'
                        }, {
                            action : 'DELETE'
                        }
                    ]
                })
            }, {
                'Content-Type' : 'image/png',
                'body' : buffer
            }
        ]
    }, function (err, resp, rdata2) {
        console.log(rdata2);
    });
});

Thanks!

I think we figured this out: the root of the problem was in the bug #33 (https://code.google.com/p/google-glass-api/issues/detail?id=33&colspec=ID%20Type%20Status%20Priority%20Owner%20Component%20Summary) when a post-processed picture pushed into the timeline through Mirror API does not get published into G+ due to a bug somewhere in Glass code. Since we did not have in that static card anything else (like a text for example) but a picture, the content was not considered valid to share to G+ Circles.