Homey SHS Self Hosted Server

Wait a minute, it’s a subscription service, Homey Self Hosted Server?

    createHomeySelfHostedServer: {
        path: "/homey/shs",
        method: "post",
        private: !0,
        parameters: {}
    },
    updateHomeySelfHostedServerSubscription: {
        path: "/homey/shs/{homeyId}/subscription",
        method: "put",
        private: !0,
        parameters: {
            homeyId: {
                in: "path",
                type: "string",
                required: !0
            },
            type: {
                type: "string",
                in: "body"
            },
            expiresAt: {
                type: "string",
                in: "body"
            }
        }
    },
    transferHomeySelfHostedServerLifetimeLicense: {
        path: "/homey/shs/{homeyId}/transfer-lifetime-license",
        method: "post",
        private: !0,
        parameters: {
            homeyId: {
                in: "path",
                type: "string",
                required: !0
            },
            newHomeyId: {
                type: "string",
                in: "body"
            }
        }
    },
    updateHomeySelfHostedServerCustomHostname: {
        path: "/homey/shs/{homeyId}/custom-hostname",
        method: "put",
        private: !0,
        parameters: {
            homeyId: {
                in: "path",
                type: "string",
                required: !0
            },
            customHostname: {
                type: "string",
                in: "body"
            }
        }
    },
    deleteHomeySelfHostedServerCustomHostname: {
        path: "/homey/shs/{homeyId}/custom-hostname",
        method: "delete",
        private: !0,
        parameters: {
            homeyId: {
                in: "path",
                type: "string",
                required: !0
            }
        }
    },
    subscriptionInactive: {
        title: "Subscription Expired",
        subtitle: "Please re-activate your Homey Self-Hosted Server subscription to continue."
    },
2 Likes