@nodert-win10-cu/windows.applicationmodel.appointments.dataprovider
Version:
Use the Windows.ApplicationModel.Appointments.DataProvider UWP API directly from Node.js
316 lines (235 loc) • 9.82 kB
JavaScript
AppointmentDataProviderConnection = (function () {
var cls = function AppointmentDataProviderConnection() {
};
cls.prototype.start = function start() {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.addListener = function addListener(eventName, callback){}
cls.prototype.removeListener = function removeListener(eventName, callback){}
cls.prototype.on = function on(eventName, callback){}
cls.prototype.off = function off(eventName, callback){}
return cls;
}) ();
exports.AppointmentDataProviderConnection = AppointmentDataProviderConnection;
AppointmentCalendarSyncManagerSyncRequestEventArgs = (function () {
var cls = function AppointmentCalendarSyncManagerSyncRequestEventArgs() {
this.request = new AppointmentCalendarSyncManagerSyncRequest();
};
cls.prototype.getDeferral = function getDeferral() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="Object" />
/// </signature>
return new Object();
}
return cls;
}) ();
exports.AppointmentCalendarSyncManagerSyncRequestEventArgs = AppointmentCalendarSyncManagerSyncRequestEventArgs;
AppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs = (function () {
var cls = function AppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs() {
this.request = new AppointmentCalendarCreateOrUpdateAppointmentRequest();
};
cls.prototype.getDeferral = function getDeferral() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="Object" />
/// </signature>
return new Object();
}
return cls;
}) ();
exports.AppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs = AppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs;
AppointmentCalendarCancelMeetingRequestEventArgs = (function () {
var cls = function AppointmentCalendarCancelMeetingRequestEventArgs() {
this.request = new AppointmentCalendarCancelMeetingRequest();
};
cls.prototype.getDeferral = function getDeferral() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="Object" />
/// </signature>
return new Object();
}
return cls;
}) ();
exports.AppointmentCalendarCancelMeetingRequestEventArgs = AppointmentCalendarCancelMeetingRequestEventArgs;
AppointmentCalendarForwardMeetingRequestEventArgs = (function () {
var cls = function AppointmentCalendarForwardMeetingRequestEventArgs() {
this.request = new AppointmentCalendarForwardMeetingRequest();
};
cls.prototype.getDeferral = function getDeferral() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="Object" />
/// </signature>
return new Object();
}
return cls;
}) ();
exports.AppointmentCalendarForwardMeetingRequestEventArgs = AppointmentCalendarForwardMeetingRequestEventArgs;
AppointmentCalendarProposeNewTimeForMeetingRequestEventArgs = (function () {
var cls = function AppointmentCalendarProposeNewTimeForMeetingRequestEventArgs() {
this.request = new AppointmentCalendarProposeNewTimeForMeetingRequest();
};
cls.prototype.getDeferral = function getDeferral() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="Object" />
/// </signature>
return new Object();
}
return cls;
}) ();
exports.AppointmentCalendarProposeNewTimeForMeetingRequestEventArgs = AppointmentCalendarProposeNewTimeForMeetingRequestEventArgs;
AppointmentCalendarUpdateMeetingResponseRequestEventArgs = (function () {
var cls = function AppointmentCalendarUpdateMeetingResponseRequestEventArgs() {
this.request = new AppointmentCalendarUpdateMeetingResponseRequest();
};
cls.prototype.getDeferral = function getDeferral() {
/// <signature>
/// <summary>Function summary.</summary>
/// <returns type="Object" />
/// </signature>
return new Object();
}
return cls;
}) ();
exports.AppointmentCalendarUpdateMeetingResponseRequestEventArgs = AppointmentCalendarUpdateMeetingResponseRequestEventArgs;
AppointmentDataProviderTriggerDetails = (function () {
var cls = function AppointmentDataProviderTriggerDetails() {
this.connection = new AppointmentDataProviderConnection();
};
return cls;
}) ();
exports.AppointmentDataProviderTriggerDetails = AppointmentDataProviderTriggerDetails;
AppointmentCalendarSyncManagerSyncRequest = (function () {
var cls = function AppointmentCalendarSyncManagerSyncRequest() {
this.appointmentCalendarLocalId = new String();
};
cls.prototype.reportCompletedAsync = function reportCompletedAsync(callback) {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.reportFailedAsync = function reportFailedAsync(callback) {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
return cls;
}) ();
exports.AppointmentCalendarSyncManagerSyncRequest = AppointmentCalendarSyncManagerSyncRequest;
AppointmentCalendarCreateOrUpdateAppointmentRequest = (function () {
var cls = function AppointmentCalendarCreateOrUpdateAppointmentRequest() {
this.appointment = new Object();
this.appointmentCalendarLocalId = new String();
this.changedProperties = new Object();
this.notifyInvitees = new Boolean();
};
cls.prototype.reportCompletedAsync = function reportCompletedAsync(createdOrUpdatedAppointment, callback) {
/// <signature>
/// <summary>Function summary.</summary>
/// <param name="createdOrUpdatedAppointment" type="Object">A param.</param>
/// </signature>
}
cls.prototype.reportFailedAsync = function reportFailedAsync(callback) {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
return cls;
}) ();
exports.AppointmentCalendarCreateOrUpdateAppointmentRequest = AppointmentCalendarCreateOrUpdateAppointmentRequest;
AppointmentCalendarCancelMeetingRequest = (function () {
var cls = function AppointmentCalendarCancelMeetingRequest() {
this.appointmentCalendarLocalId = new String();
this.appointmentLocalId = new String();
this.appointmentOriginalStartTime = new Date();
this.comment = new String();
this.notifyInvitees = new Boolean();
this.subject = new String();
};
cls.prototype.reportCompletedAsync = function reportCompletedAsync(callback) {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.reportFailedAsync = function reportFailedAsync(callback) {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
return cls;
}) ();
exports.AppointmentCalendarCancelMeetingRequest = AppointmentCalendarCancelMeetingRequest;
AppointmentCalendarForwardMeetingRequest = (function () {
var cls = function AppointmentCalendarForwardMeetingRequest() {
this.appointmentCalendarLocalId = new String();
this.appointmentLocalId = new String();
this.appointmentOriginalStartTime = new Date();
this.comment = new String();
this.forwardHeader = new String();
this.invitees = new Object();
this.subject = new String();
};
cls.prototype.reportCompletedAsync = function reportCompletedAsync(callback) {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.reportFailedAsync = function reportFailedAsync(callback) {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
return cls;
}) ();
exports.AppointmentCalendarForwardMeetingRequest = AppointmentCalendarForwardMeetingRequest;
AppointmentCalendarProposeNewTimeForMeetingRequest = (function () {
var cls = function AppointmentCalendarProposeNewTimeForMeetingRequest() {
this.appointmentCalendarLocalId = new String();
this.appointmentLocalId = new String();
this.appointmentOriginalStartTime = new Date();
this.comment = new String();
this.newDuration = new Number();
this.newStartTime = new Date();
this.subject = new String();
};
cls.prototype.reportCompletedAsync = function reportCompletedAsync(callback) {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.reportFailedAsync = function reportFailedAsync(callback) {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
return cls;
}) ();
exports.AppointmentCalendarProposeNewTimeForMeetingRequest = AppointmentCalendarProposeNewTimeForMeetingRequest;
AppointmentCalendarUpdateMeetingResponseRequest = (function () {
var cls = function AppointmentCalendarUpdateMeetingResponseRequest() {
this.appointmentCalendarLocalId = new String();
this.appointmentLocalId = new String();
this.appointmentOriginalStartTime = new Date();
this.comment = new String();
this.response = new Number();
this.sendUpdate = new Boolean();
this.subject = new String();
};
cls.prototype.reportCompletedAsync = function reportCompletedAsync(callback) {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
cls.prototype.reportFailedAsync = function reportFailedAsync(callback) {
/// <signature>
/// <summary>Function summary.</summary>
/// </signature>
}
return cls;
}) ();
exports.AppointmentCalendarUpdateMeetingResponseRequest = AppointmentCalendarUpdateMeetingResponseRequest;