Home Reference Source

core/datastore/sync/sync-operation.js

// these must not be changed, for backwards compatibility
/**
 * @private
 */
export const SyncOperation = {
  Create: 'POST',
  Update: 'PUT',
  Delete: 'DELETE'
};